@charset "UTF-8";

html{
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Verdana, sans-serif;
  font-size: 5vmin;
  overflow-y: scroll;
}

/* ヘッダー */
header {
  display: flex;
  position: fixed;
  background-color: red;
  text-align: center;
  line-height: 1em;
  font-weight: bold;
  padding: 0.5em 1em 0.5em 0.5em;
  height: 2em;
  width: calc(100% - 32px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
  top: 0;
  z-index: 3;
}

.main-title{
  color: white;
  filter: drop-shadow(2px 2px 2px black);
  text-decoration: none;
}

.member-title{
  font-weight: bold;
  color: white;
  filter: drop-shadow(2px 2px 2px black);
  text-decoration: none;
}

.sub-title{
  font-size: 0.8em;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

/* ハンバーガーメニュー */
.sp-menu {
  margin-left: auto;
  margin-top: -0.4em;
}

.sp-menu #open,
.sp-menu #close {
  font-size: 6em;
  cursor: pointer;
  margin-top: -0.25em;
}

.sp-menu #open.hide,
.sp-menu #close.hide {
  display: none;
}

.menu-title {
  font-size: 0.46em;
  margin: 0;
}

.overlay {
  position: fixed;
  top: 3em;
  right: 0;
  left: 0;
  background: rgba(255, 90, 60, 0.95);
  text-align: center;
  pointer-events: none;
  z-index: 2;
  transform: translateY(-100%);
  transition: .5s;
}

.overlay.show {
  pointer-events: auto;
  transform: translateY(0%);
}

.overlay #close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 32px;
  cursor: pointer;
}

.overlay ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.overlay li {
  border-bottom: 2px solid #ff0000;
}

.overlay li a{
  display: block;
  width: 100%;
  padding: 0.7em 0;
  text-decoration: none;
  text-align: center;
  color: white;
  -webkit-text-stroke: 0.5px #000000;
  text-shadow: 1px 1px 0 #000000,
               -1px 1px 0 #000000,
               1px -1px 0 #000000,
               -1px -1px 0 #000000,
               0 0 0.5em #000000;
}

.overlay.show li {
  transform: none;
}

.pc-menu,
.pc-menu-m {
  display: none;
}

/* トップページ */
.container1{
  width: 100%;
}

.container2{
  width: 100%;
}

.box{
  border: black;
  width: 100%;
}

.box a{
  text-align: center;
  width: 100%;
  display: block;
  font-weight: bold;
}

.box #title{
  background-color: red;
  color: white;
  height: 1.4em;
}

.box #twitter{
  height: 400px;
}

.box #title-twitter{
  background-color: #0f1419;
  color: white;
  height: 1.4em;
}

.box #title-twitter{
  background-color: #0f1419;
  color: white;
  height: 1.4em;
}

.box #title-instagram{
  background-color: #CF2E92;
  color: white;
  height: 1.4em;
}

.box #title-tiktok{
  background-color: #000000;
  color: white;
  height: 1.4em;
}

.box #sub-title{
  padding-top: 0.5em;
}

.box #sub-title-small{
  padding-top: 0.5em;
  font-size: 0.8em;
}

.box #date{
  font-weight: normal;
  font-size: 0.8em
}

.box dt{
  margin: 1em 0 0 0.5em;
}

.box dd{
  margin: 0.5em 0 1em 0.5em;
}

.top-news{
  font-size: 0.8em;
}

.line{
  background: linear-gradient(transparent 70%, #ff0000 70%);
}

.box #danshi{
  font-size: 0.6em;
  font-weight: normal;
}

/* フッター */
footer{
  position: fixed;
  width: 100%;
  height: 1.5em;
  left: 0;
  bottom: 0;
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.5);
  background-color: red;
  text-align: right;
  font-size: 0.6em;
  padding: 0.5em;
  color: white;
}

.member footer{
  background-color: #fc0;
  color: #000;
}

#only{
  float: left;
}

#copy{
  float: right;
}

/* スライドショー */
.slideshow{
  overflow: hidden;
  position: relative;
  width: 49.5vmax;
  height: 66vmin;
  margin: auto;
  text-align: right;
  font-size: 3vmin;
  color: #fff;
}

.slideshow img{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit:cover;
  opacity: 0;
  animation: slideAnime 20s ease infinite;
  margin: auto;
}

.slideshow span{
  position: absolute;
  z-index: 1;
  top: 90%;
  left: 0;
  width: 100%;
  font-size: 3vmin;
  opacity: 0;
  animation: slideAnime 20s ease infinite;
  text-shadow: 1px 1px 0 #000000,
               -1px 1px 0 #000000,
               1px -1px 0 #000000,
               -1px -1px 0 #000000,
               0 0 0.5em #000000;
}

.slide img:nth-of-type(1) { animation-delay: 0s }
.slide img:nth-of-type(2) { animation-delay: 5s }
.slide img:nth-of-type(3) { animation-delay: 10s }
.slide img:nth-of-type(4) { animation-delay: 15s }
.slide img:nth-of-type(5) { animation-delay: 20s }
.slide span:nth-of-type(1) { animation-delay: 0s }
.slide span:nth-of-type(2) { animation-delay: 5s }
.slide span:nth-of-type(3) { animation-delay: 10s }
.slide span:nth-of-type(4) { animation-delay: 15s }
.slide span:nth-of-type(5) { animation-delay: 20s }

@keyframes slideAnime{
  /* 0% { opacity: 0 }
  16% { opacity: 1 }
  33% { opacity: 1 }
  49% { opacity: 0 }
 100% { opacity: 0 } */
 0% { opacity: 0 }
 15%{ opacity: 1;}
 85%{ opacity: 1;}
 100%{ opacity: 0;}
}

.sp-image img{
  width: 90%;
  margin: 0.5em 1em 0 1em;
}

#non-slide{
  display: none;
}

/* ページ上部へ移動する矢印 */
.pagetop{
	color: #ffffff;
	background-color: rgba(0,0,0,0.3);
	text-decoration: none;
	display: none;
	position: fixed;
	bottom: 1em;
	right: 0.5em;
	font-size: 2em;
	width: 1.5em;
	height: 1.5em;
	line-height: 1.5em;
	border-radius: 1.5em;
	text-align: center;
	cursor: pointer;
}

.pagetop:hover{
	color: #ffffff!important;
	background-color: #ff6347;
	text-decoration: none;
}

/* 共通 */
.container-other{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 15vmin;
}

#slide-other{
  display: none;
}
.main-container{
  margin-bottom: 3em;
  width: 100%;
}
.main-container h1{
  margin:  0.5em 0.5em 0 0.5em;
  font-size: 7vmin;
  line-height: 1.2em;
}

.main-container h1::after{
  content: "";
  display: block;
  width: 75%;
  height: 10px;
  background: -webkit-linear-gradient(to right,#ff0000, #ffffff);
  background: linear-gradient(to right,#ff0000,#ffffff);
}

/* リンク */
.link dl{
  margin: 0;
}

.link dt{
  margin-top: 1em;
}

.link dd{
  margin: 0 0 1em 0;
}

.link-box{
  padding: 0 0 0 1em;
  border-bottom: 1px dashed #ff0000; 
  font-size: 0.8em;
}

.link h2{
  margin: 0.5em 0;
}

.link-title{
  text-decoration: none;
  border-bottom: 2px dotted #0000ff;
}

.link span{
  font-size: 0.6em;
}

.material-icons{
  font-size: 1em;
}

/* ニュース */
/* メンバー限定 */
.news-box,
.member-box{
  font-size: 1em;
  padding: 1em 0 1em 1em;
  border-bottom: 1px dashed #ff0000; 
}

.member-box a{
  text-decoration: none;
  border-bottom: 2px dotted #0000ff;
}

.container-news,
.container-member{
  display: flex;
  flex-direction: column;
  font-size: 0.8em;
}

.news dd,
.member dd{
  margin-left: 0;
  margin-top: 0.5em;
}

.category{
  border-style: solid;
  border-width: 1px;
  color:#000000;
  font-size: 60% ;
  border-radius: 5px 5px 5px 5px;
  padding: 1px 10px 1px 10px ;
  margin-left : 10px;
  margin-right: 0;
  vertical-align: 10%;
}

#cate1{
  border-color: #55f;
  background-color: #aaf;
}

#cate2{
  border-color: #f55;
  background-color: #faa;
}

#cate3{
  border-color: #f90;
  background-color: #fc0;
}

/* 成績 */
.result table{
  width: calc( 100% - 2em );
  margin: 1em 1em 0 1em;
  font-size: 0.8em;
}

.result-link dl{
  margin-left: 1em;
  font-size: 0.8em;
}

.result-link dt{
  margin-top: 0.5em;
}

.result-link dd{
  margin-left: 0;
}

.result h1{
  padding-top: 18vmin;
}

.result h1::after{
  width: 100%;
}

h1#b-league{
  font-size: 6vmin;
}

.official th,
.season th,
.playoffs th,
.opponents th,
.top-league th,
.fresh th,
.kyoto th,
.b-league th,
.shichi th,
.hanmei th{
  background-color: #ff5555;
  padding: 0.25em 0;
  color: #ffffff;
  font-weight: normal;
}

.official td,
.season td,
.playoffs td,
.opponents td,
.top-league td,
.fresh td,
.kyoto td,
.b-league td,
.shichi td,
.hanmei td{
  text-align: center;
  padding: 0.25em 0;
}

.official tr:nth-child(even),
.season tr:nth-child(even),
.playoffs tr:nth-child(even),
.opponents tr:nth-child(even),
.top-league tr:nth-child(even),
.fresh tr:nth-child(even),
.kyoto tr:nth-child(even),
.b-league tr:nth-child(even),
.shichi tr:nth-child(even),
.hanmei tr:nth-child(even){
  background-color: #fbb;
}

.official tr:nth-child(odd),
.season tr:nth-child(odd),
.playoffs tr:nth-child(odd),
.opponents tr:nth-child(odd),
.top-league tr:nth-child(odd),
.fresh tr:nth-child(odd),
.kyoto tr:nth-child(odd),
.b-league tr:nth-child(odd),
.shichi tr:nth-child(odd),
.hanmei tr:nth-child(odd){
  background-color: #fdd;
}

.official td:nth-child(1){
    width: 32%;
}

.official td:nth-child(2),
.official td:nth-child(3),
.official td:nth-child(4),
.official td:nth-child(5){
    width: 12%;
}

.official td:nth-child(6){
    width: 20%;
}

.official tr:nth-child(6){
  background-color: #ff5555;
  font-weight: bold;
  color: #ffffff;
}

.season td:nth-child(1),
.season td:nth-child(2){
    width: 12%;
}

.season td:nth-child(4),
.season td:nth-child(5),
.season td:nth-child(6),
.season td:nth-child(7){
    width: 9%;
}

.season td:nth-child(3){
    width: 17%;
}

.season td:nth-child(8){
    width: 23%;
}

.playoffs td:nth-child(1){
    width: 10%
}

.playoffs td:nth-child(2){
    width: 12%;
}

.playoffs td:nth-child(3){
    width: 24%;
}

.playoffs td:nth-child(4){
    width: 22%;
}

.playoffs td:nth-child(5){
    width: 10%;
}

.playoffs td:nth-child(6){
    width: 22%;
}

.opponents td:nth-child(1){
    width: 40%
}

.opponents td:nth-child(2),
.opponents td:nth-child(3),
.opponents td:nth-child(4),
.opponents td:nth-child(5){
    width: 10%;
}

.opponents td:nth-child(6){
    width: 20%;
}

.top-league td:nth-child(1){
  width: 12%;
}
.top-league td:nth-child(2),
.top-league td:nth-child(3){
  width: 18%;
}
.top-league td:nth-child(4),
.top-league td:nth-child(5){
  width: 26%;
}

.fresh td:nth-child(1){
    width: 12%;
}

.fresh td:nth-child(2){
  width: 18%;
}

.fresh td:nth-child(3){
    width: 26%;
}

.fresh td:nth-child(4),
.fresh td:nth-child(5){
    width: 22%;
}

.kyoto td:nth-child(1),
.kyoto td:nth-child(2),
.kyoto td:nth-child(3),
.kyoto td:nth-child(4),
.kyoto td:nth-child(5){
  width: 20%;
}

.b-league td:nth-child(1),
.b-league td:nth-child(2),
.b-league td:nth-child(3),
.b-league td:nth-child(4),
.b-league td:nth-child(5){
  width: 12%;
}

.b-league td:nth-child(6),
.b-league td:nth-child(7){
  width: 20%;
}

.shichi td:nth-child(1){
  width: 12%;
}

.shichi td:nth-child(2){
  width: 18%;
}

.shichi td:nth-child(3){
    width: 26%;
}

.shichi td:nth-child(4),
.shichi td:nth-child(5){
    width: 22%;
}

.hanmei td:nth-child(1){
  width: 12%;
}

.hanmei td:nth-child(2){
  width: 18%;
}

.hanmei td:nth-child(3){
    width: 25%;
}

.hanmei td:nth-child(4){
    width: 10%;
}
.hanmei td:nth-child(5){
    width: 35%;
}

.note td{
  text-align: left;
  background-color: #fff;
  font-size: 0.8em;
}

/*表彰*/
.award table{
  width: calc( 100% - 2em );
  margin: 1em 1em 0 1em;
  font-size: 0.8em;
}

.award th{
  background-color: #ff5555;
  padding: 0.25em 0;
  color: #ffffff;
  font-weight: normal;
}

.award td{
  text-align: center;
  padding: 0.25em 0;
}

.award tr:nth-child(even){
  background-color: #fbb;
}

.award tr:nth-child(odd){
  background-color: #fdd;
}

.award td:nth-child(1),
.award td:nth-child(3),
.award td:nth-child(5){
    width: 12%;
}
.award td:nth-child(2){
    width: 40%;
}

.award td:nth-child(4){
    width: 24%;
}

.note td{
  text-align: left;
  background-color: #fff;
  font-size: 0.8em;
}

/* 試合結果 */
.game-title{
  font-weight: bold;
  font-size: 1.2em;
}

.team-category{
  float: right;
  border-style: none;
  color:#fff;
  font-size: 80% ;
  border-radius: 20px 20px 20px 20px;
  padding: 5px 15px 5px 15px ;
  margin-left : 0;
  margin-right: 0;
  vertical-align: 0;
}

#c-team{
  background-color: #5c5;
}

#b-team{
  background-color: #55f;
}

#a-team{
  background-color: #f55;
}

#g-team{
  background-color: #d56;
}

.slogan{
  font-size: 1.5em;
  font-weight: bold;
  padding-top: 0.5em;
  text-align: center;
  color: #ffffff;
  -webkit-text-stroke: 0.5px #000000;
  text-shadow: 1px 1px 0 #000000,
  -1px 1px 0 #000000,
  1px -1px 0 #000000,
  -1px -1px 0 #000000,
  0 0 0.5em #000000;
}

.slogan-sub{
  font-size: 0.8em;
  -webkit-text-stroke: 0.5px #000000;
  text-shadow: 1px 1px 0 #000000,
  -1px 1px 0 #000000,
  1px -1px 0 #000000,
  -1px -1px 0 #000000,
  0 0 0.5em #000000;
}

.container-game{
  display: flex;
  flex-direction: column;
  font-size: 0.8em;
}

.game-box{
  box-sizing: border-box;
  width: 100%;
  padding: 1em 0.5em 1em 0.75em;
  border-bottom: 2px dashed #f00;
  vertical-align: middle;
}

.game-box table{
  border-spacing: 5px 5px;
  padding: 0 0 1em 0;
  width: 100%;
}

.game-box th{
  font-size: 0.8em;
  font-weight: normal;
}

.game-box td{
  text-align: center;
  padding: 0.5em 0;
}

.game-box td:nth-child(1){
  width: 35%;
}
.game-rank{
  width: 92%;
  border-bottom: 2px dashed #f00;
  padding: 1em 1em 0 1em;
}

.rank-table{
  box-sizing: border-box;
  width: 100%;
  padding: 1em;
  vertical-align: middle;
  margin: 0.5em auto 1em auto;
  border-collapse: collapse;
}

.rank-table th{
  font-weight: normal;
  font-size: 0.8em;
}

.rank-table td{
  padding: 0.1em 0;
  text-align: center;
  background-color: #ccc;
  border: 2px solid #ffffff;
}

.rank-table td:nth-child(1),
.rank-table td:nth-child(3),
.rank-table td:nth-child(4),
.rank-table td:nth-child(5),
.rank-table td:nth-child(6),
.rank-table td:nth-child(7){
  width: 11%;
}

.rank-table td:nth-child(2){
  width: 34%;
}

.osaka td{
  background-color: #f55;
  color: #fff;
}

.osakag td{
  background-color: #d56;
  color: #fff;
}

.border-bottom td{
  border-bottom: 4px solid #ff0;
}

.border-top td{
  border-top: 4px solid #ffff00;
}

/* ファイナルトーナメント */
.final{
  width: 100%;
  margin: auto;
}

.final table{
  border-collapse: collapse;
  line-height: 1.2em;
  width: 100%;
  margin-bottom: 1em;
}

.final td{
  background-color: transparent;
}

.final td:nth-child(n){
  width: 12.5%
}

.final tr:nth-child(2),
.final tr:nth-child(3),
.final tr:nth-child(4){
  font-size: 3vmin;
}

.final tr:nth-child(5){
  text-align: center;
}

.final tr:nth-child(6){
  font-size: 2vmin;
  text-align: center;
}

.td-4{
  border: 2px solid #000000;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
}

.td-1{
  border: 2px solid #000000;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
}

.td-14{
  border: 2px solid #000000;
  border-right-style: none;
  border-bottom-style: none;
}

.td-4r{
  border: 2px solid #ff0000;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
}

.td-1r{
  border: 2px solid #ff0000;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
}

.td-2r{
  border: 2px solid #ff0000;
  border-top-style: none;
  border-bottom-style: none;
  border-left-style: none;
}

.td-14r{
  border: 2px solid #ff0000;
  border-right-style: none;
  border-bottom-style: none;
}

.champion{
  color: #ff0000;
  font-size: 3vmin;
}

/*大学選手権トーナメント*/
.daigaku{
  width: 100%;
  margin: auto;
}

.daigaku table{
  border-collapse: collapse;
  line-height: 1.2em;
  width: 100%;
  margin-bottom: 1em;
}

.daigaku td{
  background-color: transparent;
}

.daigaku td:nth-child(1),
.daigaku td:nth-child(2),
.daigaku td:nth-child(3),
.daigaku td:nth-child(4){
  width: 11.25%
}
.daigaku td:nth-child(5),
.daigaku td:nth-child(6),
.daigaku td:nth-child(9),
.daigaku td:nth-child(10),
.daigaku td:nth-child(11){
  width: 7.5%;
}
.daigaku td:nth-child(7),
.daigaku td:nth-child(8){
  width: 3.75%;
}

.d-champ td:nth-child(1),
.d-champ td:nth-child(2){
  width: 11.25%
}

.d-champ td:nth-child(4),
.d-champ td:nth-child(5),
.d-champ td:nth-child(6){
  width: 7.5%;
}
  
.d-champ td:nth-child(3){
  width: 45%;
}

.d-name td:nth-child(1),
.d-name td:nth-child(2){
  width: 22.5%
}

.d-name td:nth-child(3),
.d-name td:nth-child(4),
.d-name td:nth-child(5){
  width: 15%
}

.daigaku tr:nth-child(1),
.daigaku tr:nth-child(2),
.daigaku tr:nth-child(3),
.daigaku tr:nth-child(4){
  font-size: 3vmin;
}

.daigaku tr:nth-child(6){
  text-align: center;
}

.daigaku tr:nth-child(7){
  font-size: 2vmin;
  text-align: center;
}

.dtd-4{
  border: 2px solid #000000;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
}

.dtd-1{
  border: 2px solid #000000;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
}

.dtd-14{
  border: 2px solid #000000;
  border-right-style: none;
  border-bottom-style: none;
}

.dtd-4r{
  border: 2px solid #ff0000;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
}

.dtd-1r{
  border: 2px solid #ff0000;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
}

.dtd-14r{
  border: 2px solid #ff0000;
  border-right-style: none;
  border-bottom-style: none;
}

.osaka1 tr:nth-child(1){
  background-color: #f55;
  color: #fff;
}

.osaka1 tr:nth-child(2){
  background-color: #ccc;
  color: #555;
}

.osaka2 tr:nth-child(1){
  background-color: #ccc;
  color: #555;
}

.osaka2 tr:nth-child(2){
  background-color: #f55;
  color: #fff;
}

.osaka3 tr:nth-child(1){
  background-color: #ccc;
  color: #555;
}

.osaka3 tr:nth-child(2){
  background-color: #d56;
  color: #fff;
}
#sum{
  font-weight: bold;
}

#score{
  border: 1px solid #000;
  font-size: 0.8em;
  padding: 4px;
}

/* 問い合わせ */
.contact-box{
  margin: 0 0.5em 0 0.5em;
}

.contact dd{
  margin: 0;
}

.contact-text{
	position: relative;
	margin: 1em 0 1em 0;
}

.contact-name{
    width: 60%;
}

.contact-grad{
    width: 50%;
}

.contact-mail{
    width: 80%;
}

.contact-text input[type=text],
.contact-text textarea{
  font-size: 1.2em;
  box-sizing: border-box;
	width: 100%;
	padding: 0.5em;
	transition: 0.3s;
	border: 1px solid #1b2538;
	border-radius: 4px;
	outline: none;
  padding-left: 2.5em;
}

.contact-text textarea{
  font-family: Verdana, sans-serif;
}

.contact-text input[type=text]:focus {
	border: 5px solid #da3c41;
}

.contact-text i {
	position: absolute;
  font-size: 1.2em;
  top:  0.7em;
  left: 0.5em;
	padding: 9px 8px;
	transition: 0.3s;
	color: #aaaaaa;
}

.contact-text input[type=text]:focus + i {
	color: #da3c41;
}

.contact-contents{
  width: 100%;
  height: 8em;
  font-size: 1.2em;
  padding: 0.5em;
  transition: 0.3s;
  border: 1px solid #1b2538;
	border-radius: 4px;
  outline: none;
  padding-left: 2.5em;
  line-height: 1.5em;
}

.contact-contents:focus {
	border: 3px solid #da3c41;
}

.contact dt{
  color: #ffffff;
  font-size: 0.5em;
}

.contact i{
  padding-top: 0.5em;
}

.contact-message{
  font-size: 4vmin;
  margin: 1em 0 0.5em 0;
}

.contact-image{
  margin-top: 3em;
}

.contact-image img{
  width: 100%;
}

.confirm{
  width: 100%;
}

.confirm td:nth-child(1){
  background-color: #ff8080;
  text-align: center;
  width: 25%;
  line-height: 1em;
  font-size: 0.8em;
  padding-left: 0.5em;
  padding-right: 0.5em;
}

.confirm td:nth-child(2){
  background-color: #fdd;
  width: 75%;
}

.confirm td{
  padding: 1em;
}

.submit{
  text-align: center;
}

.form_submit_button{
	margin-top: 0.5em;
  padding: 1em 2em;
  border-style: none;
  font-size: 1.2em;
  background-color: #f55;
}

.form_back_button{
	margin-top: 0.5em;
  padding: 1em 2em;
  border-style: none;
  font-size: 1.2em;
  background-color: #ff8080;
}

.form_submit_button:hover,
.form_back_button:hover{
  background-color: #f00;
}

/* 年度別成績 */
/* 背番号系譜 */
.record,
.number{
  text-align: center;
}

.record span{
  font-size: 0.8em;
}

.year-list,
.number-list{
  width: 90%;
  position: relative;
  display: inline-block;
  font-size: 0.7em;
}

.number ul{
  list-style-type: none;
  padding-left: 0;
}

.year-list::after,
.number-list::after{
  content: '';
  width: 1em;
  height: 1em;
  border: 0px;
  border-bottom: solid 3px #fff;
  border-right: solid 3px #fff;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 35%;
  right: 1.5em;
}

.select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  border: 0px;
  background: #f55;
  color: #fff;
  font-weight: bold;
  position: relative;
  padding-left: 2em;
  border-radius: 100px;
  margin-top: 4vmin;
  margin-bottom: 2vmin;
  height: 3em;
  font-size: 1.3em;
}

.select::-ms-expand {
  display: none;
}

.container-gene{
  font-size: 0.8em;
  text-align: center;
}

.container-gene table{
  margin-top: 0.5em;
  margin: auto;
  width: 95%;
}

.container-gene td{
  padding: 0.5em;
  background-color: #ffeeee;
  line-height: 1.2em;
  text-align: center;
}

.container-gene td:first-child{
  width: 5.5em;
  background-color: #ffbbbb;
}

/* 未来基金 */
/* 掲示板 */
.kikin,
.bbs{
  width: 100%;
}

.kikin h1::after
.bbs h1::after{
  width: 50%;
}

.other-window{
  margin: 0.5em 0 0 0;
  padding: 0.5em;
  display: inline;
  float: right;
  font-size: 3vmin;
  font-weight: normal;
  border: solid;
  text-decoration: none;
  line-height: 3.5vmin;
  border-radius: 10px;
  background-color: #fff;
}

.kikin iframe,
.bbs iframe{
  position:absolute;
  width:100%;
  height:calc( 100vmax - 7em );
  margin-top: 1em;
}

/* OB会規約 */
.rule{
  padding-top: 0.2em;
  font-size: 0.7em;
}

.rule dl{
  padding: 0 1em 0 1em;
}

.rule dt{
  margin: 0;
  padding: 1em 0 0 0;
  font-weight: bold;
}

.rule dd{
  margin: 0;
}

/* 沿革 */
.history-box{
  font-size: 0.7em;
  padding: 0;
}

.history table{
  margin-top: 0.5em;
  width: 100%;
}

.history td{
  padding: 0.5em;
  background-color: #ffeeee;
  line-height: 1.2em;
}
.history td:first-child{
  width: 5.5em;
  text-align: right;
  background-color: #ffbbbb;
}

.history-comment{
  font-size: 3vmin;
  color: #555555
}

.history img{
  max-width: 100%;
}

/* インタビュー */
.interview ul{
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  display: flex;
  flex-flow: row-reverse wrap;
  justify-content: space-around;
}

.interview li{
  flex: 0 0 19%;
}

.interview img{
  width: 30vmin;
}

.interview-box{
  padding: 1em 0 1em 0;
  border-bottom: 2px dashed #ff0000;
  width: 100%;
}

.interview-title1{
  font-size: 1em;
  font-weight: bold;
  line-height: 0em;
}

.interview-title2{
  font-size: 0.9em;
}

.interview-title3{
  font-size: 0.9em;
  text-decoration: none;
  border-bottom: 4px dotted #0000ff;
}

.interview-purpose{
  text-align: left;
  padding: 0 1em;
}

.interview-purpose a{
  font-size: 1.1em;
  font-weight: bold;
}

.interview-purpose p{
  font-size: 0.7em;
  margin: 0.5em 0 0 0;
}

.click{
  font-size: 0.75em;
}

.koukai{
  font-size: 0.75em;
}

/* 総会資料 */
.data ul{
  padding: 0 1em 0 1em;
  list-style: none;
}

.data-box{
    padding-bottom: 2em;
    border-bottom: 2px dashed #ff0000;
}

.data-box a:visited{
  color: #ff0000;
  border-bottom: 4px dotted #ff0000;
}

.data-box a:active{
  background-color: #ff0000;
  color: #ffffff;
  border-bottom: 4px dotted #ffffff;
}

.data-box li{
  text-align: center;
}

.data-box p{
  font-size: 0.8em;
  margin: 0.5em 0;
}

.data-box img{
  border: 1px #999999 solid;
}

.data-title{
  font-size: 0.8em;
  text-decoration: none;
  border-bottom: 4px dotted #0000ff;
}

.j01{
    width: 80vmin;
}

.j02{
    height: 80vmin;
}

/* 沿革 */
.history-box{
  margin: 0 0.5em;
}

.history-box table{
  width: 100%;
}

/* 関東在住OB懇親会 */
/* OB総会 */
.kanto-box ul,
.meeting-box ul{
  padding: 0 0.5em;
  list-style: none;
  text-align: center;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  font-size: 3vmin;
  line-height: 0.5;
}

.kanto-box li,
.meeting-box li{
  flex: 0 0 19%;
}

.kanto-box img,
.meeting-box img{
  padding-top: 1em;
  width: 45.5vmin;
  height: 34.125vmin;
}

.kanto-box ul::after,
.meeting-box ul::after{
  content: "";
  display: block;
  width: 45.5vmin;
}
/* 総会資料 */
.journal ul{
  padding: 0 1em 0 1em;
  list-style: none;
  text-align: center;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.journal li{
  flex: 0 0 19%;
}
.journal img{
  width: 44.5vmin;
}

.journal ul:after{
  content:"";
  display: block;
  width: 44.5vmin;
}

/* データ更新 */
.update-box{
  margin: 2em 1em;
}

.update-box input,
.update-box select{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0.25em 0;
  padding: 1em 0;
}

#single{
  width: 98%;
}

#double{
  width: 47.5%;
}

#update-date{
  width: 17.5%;
}

#update-title{
  width: 70%;
}

#update-category{
  width: 26%;
}

#update-team{
  width: 25%;
}

#update-score{
  width: 11.5%;
}

#update-button{
  margin: 1em 2em 0 2em;
  padding: 1em 3em;
}

/* 管理者 */
.update-box table{
  width: 100%;
  text-align: center;
}

.update-box td:nth-child(1){
  background-color: #fbb;
}

.update-box td:nth-child(2),
.update-box td:nth-child(3){
  background-color: #f55;
}

#delete tr:nth-child(2) td{
  background-color: #fee;
}

td#first {
  background-color: #fee;
  width: 65%;
  text-align: left;
  font-size: 3vmin;
}

a.admin{
  text-decoration: none;
}

a.admin:visited,
a.admin:link{
  color: #000;
}

form.reload{
  text-align: center;
}

@media (min-width: 1024px) {  
  /* トップページ */
  .pc-menu,
  .pc-menu-m {
    display: block;
    margin-left: auto;
    width: 65%;
  }

  .pc-menu ul,
  .pc-menu-m ul{
    list-style-type: none;
    margin: 0 0 0 -0.4em;
    padding: 0 2vmax 0 0;
    display: flex;
    justify-content: space-around;
  }

  .pc-menu li,
  .pc-menu-m li {
    display: block;
    position: relative;
    box-sizing: border-box;
    width: 8vmax;
    height: 2em;
    border: 1px solid rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.5);
  }

  #member li,
  #member a{
    width: 6.4vmax;
  }

  .pc-menu li::before{
    content: "";
    display: block;
    position: absolute;
    box-sizing: border-box;
    width: calc( 8vmax - 2px );
    height: calc( 2em - 10px );
    border-bottom: 5px solid white;
  }

  .pc-menu-m li::before{
    content: "";
    display: block;
    position: absolute;
    box-sizing: border-box;
    width: calc( 6.4vmax - 2px );
    height: calc( 2em - 10px );
    border-bottom: 5px solid white;
  }

  .pc-menu a,
  .pc-menu-m a {
    display: block;
    position: relative;
    box-sizing: inherit;
    line-height: calc( 4em - 5px );
    height: 3.6em;
    text-align: center;
    font-size: 0.4em;
    width: 8vmax;
    text-decoration: none;
    color: white;
    font-weight: normal;
    border-bottom: 5px solid black;
  }

  #double-header{
    padding-top: 0.5em;
    line-height: 1.1;
  }

  .pc-menu li:hover,
  .pc-menu-m li:hover {
    background-color: #ff8080;
  }

  .sp-menu {
    display: none;
  }

  main{
    font-size: 2.4vmin;
  }

  .top-news{
    font-size: 0.6em;
    overflow: hidden;
  }

  .top-container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 5px 5px;
    padding-left: 0.5em;
    padding-right: 0.5em;
  }

  .slideshow{
    top: 5.5em;
    grid-row: 1 / span 2;
    height: 74.5vmin;
  }

  .slideshow img{
    height: auto;
  }

  .slideshow span{
    top: 88%;
    text-shadow: none;
    color: #000;
    font-size: 2vmin;
  }

  @keyframes slideAnime{
    0% { opacity: 0 }
    15%{ opacity: 1;}
    85%{ opacity: 1;}
    100%{ opacity: 0;}
  }

  .sp-image img{
    display: none;
  }

  #non-slide{
    display: block;
  }

  .box{
    box-sizing: border-box;
    border-style: outset;
    border: 2px solid black;
    border-radius: 0 0 10px 10px;
    width: calc( ( 66vmax - 40px ) / 3 ) ;
    height: 36vmin;
    overflow-y: auto;
  }

  .box dt{
    padding: 1em 0 0 1em;
    margin: 0 0 0 0.5em;
  }

  .box dd{
    padding: 0.5em 0 0 1em;
    margin: 0.5em 0 0 0.5em;
  }

  #twitter{
    overflow-y: hidden;
  }

  .box-instagram,
  .box-tiktok{
    position: relative;
    top: 1.4em;
    border: none;
    z-index: -1;
  }

  .fixed-title{
    display: block;
    position: fixed;
    width: 21%;
  }

/* リンク */
  .container-other{
    display: flex;
    justify-content: left;
  }

  #slide-top{
    display: block;
    position: fixed;
    left: 0;
    width: 34%;
  }

  #slide-other{
    display: block;
    position: fixed;
    left: 0;
    width: 34%;
  }

  .main-container{
    display: block;
    position: relative;
    left: 34%;
    width: 66%;
    margin-top: 1em;
  }

  .sub-container{
    position: fixed;
    width: 34%;
    height: 77.5%;
  }

  .sub-container img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: block;
    width: 90%;
    text-align: center;
  }

  .main-container h1{
    margin-left: 0.56em;
    font-size: 5vmin;
  }

  .link-box{
    font-size: 1em;
  }

  .material-icons{
    font-size: 1em;
  }

  .container-news,
  .container-member{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    font-size: 1em;
  }

  .news-box,
  .member-box{
    font-size: 1em;
    width: 48.2%;
  }

  /* 成績 */
  .result{
    font-size: 1.2em;
  }

  .result-link{
    font-size: 1em;
  }

  #regular{
    font-size: 5vmin;
  }

  .result h1::after{
    width: 75%;
  }

  /* 表彰 */
  .award{
    font-size: 1.2em;
  }

  .award h1::after{
    width: 75%;
  }

  /* 試合結果 */
  .game h1{
    font-size: 1.875em;
  }

  .game-box{
    width: 50%;
    border-bottom: none;
  }

  .rank-table{
    width: 75%;
  }

  .final{
    width: 75%;
  }

  .daigaku{
    width: 75%;
  }

  .container-game{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    font-size: 1em;
  }

  .kikin iframe,
  .bbs iframe{
    height: 70vmin;
    margin-top: 2em;
    border: 0;
  }

  .other-window{
    margin-top: -0.5em;
  }

/* お問い合わせ */
  .contact i{
    margin-top: 0.5em;
  }

  .contact p{
    font-size: 2.5vmin;
  }

  .contact-image{
    display: none;
  }

  /* OB会規約 */
  .rule{
    font-size: 1em;
  }

  /* 沿革 */
  .history-box{
    font-size: 1em;
  }

  .history-comment{
    font-size: 0.8em;
  }

  /* インタビュー */
  .interview{
    font-size: 1.5em;
  }

  /* 総会資料 */
  .data-box p{
    font-size: 1.2em;
  }
  
  .data-title{
    font-size: 1.2em;
  }

  .journal ul{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
  }
  
  .journal li{
    flex: 0 0 19%;
  }

  .journal img{
    width: 23.5vmin;
  }

  .journal ul:after{
    content:"";
    display: block;
    width: 23.5vmin;
  }

  /* 年度別成績 */
  .select{
    margin-top: 1vmin;
    margin-bottom: 0;
  }
  .year-list{
    width: 40%;
  }

}