@charset "utf-8";

/* ブレイクポイント600px */

/* common */

html {
  --14px: 0.875rem;
  --15px: 0.9375rem;
  --16px: 1rem;
  --17px: 1.0625rem;
  --18px: 1.125rem;
  --19px: 1.1875rem;
  --20px: 1.25rem;
  --21px: 1.3125rem;
  --24px: 1.5rem;
  --28px: 1.75rem;
  --32px: 2rem;
  --36px: 2.25rem;
  --48px: 3rem;
  --60px: 3.75rem;
}

body {
  font-family: 'Roboto', sans-serif;
  /*font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;*/
  font-weight: 400;
  font-style: normal;
  font-size: var(--16px);
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:active {
  text-decoration: underline;
}

.link_add1{
  background-color: #F4E64D;
  display: inline-block;
  margin: 5px;
  padding: 2px 5px;
  border: solid 1px #000;
}

.link_add1::after,.link_add2::after{
  content: "";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f35d";
  margin-left: 0.5em;
}

.link_add2{
  display: inline-block;
  margin: 5px;
  padding: 2px 5px;
  border: solid 1px #000;
}


.head-wrap-fixed {
  position: fixed;
  z-index: 5;
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.8);
}

@media screen and (max-width: 600px) {
  .head-wrap-fixed {
    display: block;
  }
}

.head-wrap {
  display: flex;
  justify-content: space-between;
  width: min(100%, 1200px);
}

.head-logo {
  width: 150px;
  height: auto;
  align-self: center;
}

@media screen and (max-width: 600px) {
  .head-logo {
    width: 200px;
  }
}

.head-nav-wrap {
  display: flex;
  flex: 1;
  justify-content: space-between;
  padding: 0 20px 0 30px;
  width: 100%;
}

@media screen and (max-width: 600px) {
  .head-nav-wrap {
    justify-content: flex-end;
  }
}

.hamburger-menu {
  display: none;
}

@media screen and (max-width: 600px) {
  .hamburger-menu {
    display: flex;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    height: 40px;
    width: 40px;
    align-self: center;
    margin: 0 10px;
    z-index: 10;
    position: relative;
  }

  .hamburger-menu__bar {
    background-color: #ff1500;
    height: 5px;
    width: 40px;
    position: absolute;
    transition: all 0.5s;
  }

  .hamburger-menu__bar:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }

  .hamburger-menu__bar:first-child {
    top: 0;
  }

  .hamburger-menu__bar:last-child {
    bottom: 0;
  }

  #js-hamburger-menu.active .hamburger-menu__bar {
    background-color: #fff;
    position: absolute;
  }

  #js-hamburger-menu.active .hamburger-menu__bar:first-child {
    transform: rotate(45deg);
    top: auto;
  }

  #js-hamburger-menu.active .hamburger-menu__bar:last-child {
    transform: rotate(-45deg);
    bottom: auto;
  }

  #js-hamburger-menu.active .hamburger-menu__bar:nth-child(2) {
    opacity: 0;
  }
}

.head-gnav {
  display: flex;
  font-family: "DotGothic16", sans-serif;
  font-size: var(--16px);
  letter-spacing: 0.1em;
  align-items: center;
}

.head-gnav li {
  margin-right: 20px;
}

@media screen and (max-width: 600px) {
  .head-gnav {
    background-color: rgba(255, 4, 4, 1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9;
    flex-direction: column;
    padding-top: 80px;
    text-align: center;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .head-gnav.open {
    opacity: 1;
    visibility: visible;
  }

  .head-gnav li {
    width: 100%;
    margin: 0;
  }

  .head-gnav li a {
    display: block;
    padding: 15px 0;
  }

}

.head-nav-sns {
  position: relative;
  display: grid;
  align-items: center;
  padding: 10px;
  background-color: #000;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.head-nav-sns li {
  font-size: var(--18px);
  color: #fff;
  text-align: center;
}

ul.head-nav-sns::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 35.25px 0 35.25px;
  border-color: #000000 transparent transparent transparent;
}

.commom-bg1 {
  background-color: #ff1500;
}

.commom-bg2 {
  background: repeat url("../img/bg_pattern.png");
}

.commom-bg3 {
  background-color: #eee;
}

.commom-bg4 {
  background: repeat url("../img/bg_soccer_court.jpg");
}

.commom-bg5 {
  background: repeat url("../img/bg_stadium.jpg");
}

.common-wrap1,
.common-wrap2,
.common-wrap3 {
  width: min(100%, 1200px);
  margin: 0 auto;
  position: relative;
}

.common-wrap1 {
  padding: 100px 0;
}

.common-wrap2 {
  padding: 150px 0;
}

.common-box1,
.common-box2,
.common-box3,
.common-box4 {
  background-color: #fff;
  border: 5px solid #000;
  position: relative;
}

.common-box1 {
  margin: 0 auto;
  width: 92%;
  padding: 100px 4% 80px;
  display: grid;
}

@media screen and (max-width: 600px) {
  .common-box1 {
    display: block;
  }
}


.common-box2 {
  margin: 0 4% 0 auto;
  width: 55%;
  min-width: 300px;
  padding: 0 0 50px;
}

.common-box3 {
  margin: 0 auto;
  width: 65%;
  min-width: 450px;
  padding: 50px 3.6% 80px;
}

@media screen and (max-width: 600px) {
  .common-box3 {
    width: 95%;
    min-width: auto;
  }
}

.common-box4 {
  width: 500px;
  padding: 60px;
}

/* h2吹き出し見出し */
.cnt-ttl1 {
  display: inline-block;
  font-family: "DotGothic16", sans-serif;
  font-size: var(--36px);
  font-weight: 400;
  letter-spacing: 5px;
  background: #F4E64D;
  position: absolute;
  padding: 0 55px;
  border: solid 4px #000;
  border-radius: 10px;
}

#topics .cnt-ttl1 {
  top: -35px;
  left: 30px;
}

#about .cnt-ttl1 {
  top: -40px;
  right: 30px;
}

#lecture .cnt-ttl1 {
  top: -35px;
  left: 30px;
}

#media .cnt-ttl1 {
  top: -38px;
  right: -15px;
}

#news .cnt-ttl1 {
  top: 50px;
  left: 10px;
}

#contact .cnt-ttl1 {
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
}


#affiliation .cnt-ttl1 {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}

#sponsor .cnt-ttl1 {
  top: 50px;
  left: 10px;
}

#supplier .cnt-ttl1 {
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}

#donation .cnt-ttl1 {
  top: 120px;
  left: 100px;
  z-index: 2;
}

.cnt-ttl1:before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-top: 13px solid #F4E64D;
  z-index: 2;
}

.cnt-ttl1:after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid #000;
  z-index: 1;
}

/* h3ボール見出し */
.icon1,
.icon1_w {
  font-size: var(--20px);
  position: relative;
  padding-left: 42px;
  margin-bottom: 60px;
}

.icon1::before,
.icon1_w::before {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: no-repeat center url(../img/icon_ball1.svg);
  background-size: contain;
  margin-right: 10px;
}

.icon1_w::before {
  filter: invert(88%) sepia(61%) saturate(0%) hue-rotate(229deg) brightness(107%) contrast(101%);
}

@media screen and (max-width: 600px) {
  #lecture .icon1 {
    margin-bottom: 20px;
  }
}


/* h3コントローラー見出し */
.icon2 {
  font-size: var(--20px);
  position: relative;
  padding-left: 42px;
  margin-bottom: 60px;
}

.icon2::before {
  content: '';
  position: absolute;
  width: 32px;
  height: 16px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: no-repeat center url(../img/icon_controller1.svg);
  background-size: contain;
  margin-right: 10px;
}

/* youtube埋め込み */
.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

/* ボタン1 */
.btn_contact1 {
  display: block;
  min-width: 300px;
  text-align: center;
  margin: 60px auto 0;
  padding: 20px 20px 30px;
  font-family: "DotGothic16", sans-serif;
  font-size: var(--24px);
  background-color: #89FF52;
  box-shadow:
    4px 0 black,
    /*右*/
    -4px 0 black,
    /*左*/
    0 -4px black,
    /*上*/
    0 4px black,
    /*下*/
    0 9px #8E8E8E,
    /*下の下*/
    inset -4px 0 #6BC741,
    /*内側影　右*/
    inset 0 -4px #6BC741;
  /*内側影　下*/
}


/* ページトップに戻るボタン */

/*リンクを右下に固定*/
#go-top {
  position: fixed;
  width: 40px;
  right: 5%;
  z-index: 2;
  font-size: 24px;
}

#go-top i {
  color: #fff;
  font-size: 36px;
}

#go-top i:nth-child(2) {
  color: #000;
  font-size: 40px;
  position: absolute;
  top: -6px;
}


/* index */
.index-head {
  background: linear-gradient(180deg, #fff 0%, #fff 33%, #ff1500 33%, #ff1500 100%);
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 600px) {
  .index-head {
    justify-content: start;
  }
}

.index-head::before {
  content: '';
  display: block;
  padding-top: clamp(440px, 57.29%, 687.5px);
}

@media screen and (max-width: 600px) {

  .index-head::before {
    padding-top: 100vh;
  }

}

.index-mv {
  position: relative;
  width: min(100%, 1200px);
  background-image: url(../img/mainvisual_pc.png);
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: right 80px;
}

@media screen and (max-width: 600px) {
  .index-mv {
    background-image: url(../img/mainvisual_sp.png);
    background-size: auto 80vh;
    background-position: 80px 80px;
  }
}


/*
.mv-wrap{
  position: absolute;
  top:  max(72px, 13%);
  right:0;
  width: clamp(600px, 78%, 937.5px);
}

@media screen and (max-width: 600px)  {
  .mv-wrap{
    width: 80%;
  }
}
*/

.index-mv h1 {
  position: absolute;
  top: 60%;
  left: 3.125%;
  width: 57.3%;
}

.index-mv h1 span {
  font-size: clamp(var(--18px), 2.8vw, var(--32px));
  color: #fff;
  display: inline-block;
  margin-top: 10px;
}

@media screen and (max-width: 600px) {
  .index-mv h1 {
    left: 5%;
    width: 90%;
  }

  .index-mv h1 span {
    font-size: clamp(var(--28px), 7vw, var(--32px));
  }
}

/* TOPICS */
#topics .common-box1 {
  display: block;
}

#topics dl {
  padding: 10px;
  margin-bottom: 30px;
  background-color: #eee;
  border: 1px solid rgb(207, 217, 222);
  padding: 10px;
  border-radius: 12px;
  height: 50vh;
  overflow: scroll;
}

#topics dl div {
  display: flex;
  margin: 10px 0;
}

#topics dl dt {
  margin: 0 20px 15px 0;
}

@media screen and (max-width: 600px) {
  #topics dl div {
    display: block;
    margin-bottom: 0;
  }

  #topics dl dt {
    margin-bottom: 15px;
  }

  #topics dl dd {
    margin-bottom: 30px;
  }
}

.x-timeline {
  height: 400px;
  overflow: auto;
}

#message {
  display: flex;
  justify-content: space-between;
}

#message p img {
  display: none;
}

#message a.btn {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

#message .mu {
  width: 23%;
  position: relative;
}

#message .mu img {
  width: 100%;
  height: auto;
}

#message .mu h3 {
  margin-bottom: 1em;
  font-size: 1.3rem;
  text-align: left;
  font-weight: normal;
}

#message .mu small {
  display: block;
}

/* ABOUT */

#about .common-wrap1 {
  padding: 100px 0 5%;
}

@media screen and (max-width: 600px) {
  #about .common-wrap1 {
    padding-bottom: 250px;
  }
}

#about .common-wrap1::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 913px;
  min-width: 300px;
  width: 47.6%;
  height: 100%;
  background: no-repeat url("../img/morita_img1_pc.png");
  background-size: contain;
  background-position: bottom;
  z-index: 1;
}

#about .common-box2 h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  background-color: #ff1500;
  padding: 10px;
  color: #000;
  padding: 40px 0 30px 15%;
  font-size: var(--24px);
  font-family: "DotGothic16", sans-serif;
}

#about .common-box2 h3 img {
  width: max(200px, 50%);
}

#about .common-box2 ul {
  width: 85%;
  max-height: 390px;
  overflow: auto;
  margin: 50px auto 0;
}

#about .common-box2 ul li {
  margin-bottom: 19px;
}

/* LECTURE */
#lecture .common-box1 {
  grid-template:
    "comment comment comment" 80px
    "results-lecture ... results-instructor" 1fr
    "btn_contact1 btn_contact1 btn_contact1"
    / 1fr 3% 1fr;
}

#lecture .comment {
  grid-area: comment;
}

@media screen and (max-width: 600px) {
  #lecture .common-box1 {
    display: block;
  }

  #lecture .comment {
    margin-bottom: 30px;
  }
}

.results-lecture {
  grid-area: results-lecture;
}

.results-instructor {
  grid-area: results-instructor;
}

#lecture .btn_contact1 {
  grid-area: btn_contact1;
}

.results-lecture ul {
  margin: 30px 0 30px 25px;
  list-style: disc;
}

.results-lecture li {
  margin-bottom: 15px;
}

.results-instructor li {
  display: flex;
  margin-bottom: 15px;
  align-items: start;
}

@media screen and (max-width: 600px) {
  .results-instructor li {
    flex-direction: column-reverse;
  }
}

.results-instructor li img {
  margin-right: 15px;
  width: 40%;
}

@media screen and (max-width: 600px) {
  .results-instructor li img {
    margin: 0 auto;
    width: 90%;
  }
}

.results-instructor li h4 {
  margin-bottom: 15px;
  font-weight: bold;
}

/* MEDIA */
#media .common-wrap2 {
  background-image: url(../img/morita_img3_pc.png), url(../img/morita_img2_pc.png);
  background-repeat: no-repeat, no-repeat;
  background-position: right 10% top 0, left 10% bottom;
  background-size: 18.2% auto, 18.2% auto;
}

@media screen and (max-width: 600px) {
  #media .common-wrap2 {
    background-size: 50% auto, 50% auto;
    background-position: right 10% top -40px, left 10% bottom -18%;
  }
}

#media .media_coverage div {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
  border-bottom: 1px solid #B9B9B9;
}

@media screen and (max-width: 600px) {
  #media .media_coverage div {
    flex-direction: column;
    gap: 15px;
  }
}

#media .media_coverage div dt {
  flex: 2;
  font-weight: normal;
}

#media .media_coverage div dd {
  flex: 1;
  font-size: var(--14px);
}

@media screen and (max-width: 600px) {
  #media .media_coverage div dd {
    text-align: right;
    padding-bottom: 5px;
  }
}

/* NEWS */
#news ul {
  padding: 0;
  width: 92%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}

@media screen and (max-width: 600px) {
  #news ul {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}

#news li {
  width: min(49%, 540px);
  ;
  height: auto;
}

@media screen and (max-width: 600px) {
  #news li {
    width: 95%;
  }
}

#news li .cont_ttl2 {
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}

#news li iframe {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: 100%;
}

/* フォーム */
.form-contact,
.form-confirm {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-contact input,
.form-contact textarea {
  outline: none;
  border: 3px solid black;
  padding: 5px;
  margin-bottom: 25px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.form-contact input {
  margin-bottom: 25px;
}

.form-contact textarea {
  height: calc(1.3em * 6);
}

.form-contact input:focus,
.form-contact textarea:focus {
  box-shadow: 0 0 7px #ff1500;
  border: 1px solid #ff1500;
}

form span {
  color: #ff1500;
}

.form-err {
  color: #ff1500;
  font-weight: bold;
}

/* モーダル */
.modal-wrapper {
  z-index: 30;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 60px 10px;
  text-align: center;
}

.modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s, visibility 0.4s;
}

.modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  vertical-align: middle;
  content: "";
}

.modal-wrapper .modal-window {
  box-sizing: border-box;
  display: inline-block;
  z-index: 20;
  position: relative;
  width: min(70%, 600px);
  padding: 30px;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  vertical-align: middle;
  border: var(--secondary-color) solid 3px;
  border-radius: 20px;
}

.modal-window form input {
  margin-bottom: 30px;
}

.modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
}

.modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 5px;
  right: 5px;
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
  text-indent: 0;
  background-color: #ff1500;
  border-radius: 50%;
}

/* AFFILIATION */

#affiliation .common-wrap2 {
  padding: 150px 10px;
}

#affiliation .icon1 {
  display: inline-block;
}

#affiliation ul {
  display: block;
  text-align: center;
}

@media screen and (max-width: 600px) {
  #affiliation ul {
    display: block;
    text-align: center;
  }
}

/* SPONSOR */

#sponsor .common-wrap2 {
  padding: 150px 10px;
}

#sponsor .icon1_w {
  display: inline-block;
  color: #fff;
}

#sponsor ul {
  display: flex;
  gap: 0 110px;
  flex-wrap: wrap;
}

@media screen and (max-width: 600px) {
  #sponsor ul {
    display: block;
    text-align: center;
  }
}

#sponsor ul li {
  margin: 0 10px 60px;
}

@media screen and (max-width: 600px) {
  #sponsor ul li:last-child {
    margin-bottom: 0;
  }

  #sponsor ul li.bn_tabio {
    margin-bottom: 60px;
  }

}

/* SUPPLIER */

#supplier .common-wrap2 {
  padding: 150px 10px;
}

#supplier .icon1 {
  display: inline-block;
}

#supplier ul {
  display: flex;
  justify-content: center;
  gap: 0 110px;
  flex-wrap: wrap;
}

@media screen and (max-width: 600px) {
  #supplier ul {
    display: block;
    text-align: center;
  }

  #supplier li {
    margin-bottom: 60px;
  }

  #supplier li:last-child {
    margin-bottom: 0;
  }
}


/* DONATION */
#donation .common-box1 {
  display: block;
  text-align: center;
}

#donation h3 {
  display: inline-block;
  margin-bottom: 30px;
}

#donation ul {
  display: flex;
  margin: 30px auto;
  gap: 0 10%;
}

#donation ul li {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 20px 0;
  padding: 20px;
  border: solid #f00 5px;
  font-weight: bold;
}

#donation p:last-of-type {
  text-align: center;
}

/* フッタ */
footer {
  background-color: #000000;
}

.foot-wrap {
  width: min(100%, 1200px);
  margin: 0 auto;
  text-align: center;
}

.foot-gnav-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 600px) {
  .foot-gnav-wrap {
    flex-direction: column;
    margin-bottom: 20px;
  }
}

.foot-logo {
  width: 216.92px;
  height: auto;
  margin: 20px;
}

.foot-gnav {
  display: flex;
  font-family: "DotGothic16", sans-serif;
  font-size: var(--16px);
  letter-spacing: 0.1em;
  color: #fff;
}

@media screen and (max-width: 600px) {
  .foot-gnav {
    flex-direction: column;
  }
}

.foot-gnav li {
  margin-right: 20px;
}

@media screen and (max-width: 600px) {
  .foot-gnav li {
    margin: 0 0 5px;
  }
}

.foot-nav-sns {
  display: flex;
  justify-content: center;
  color: #fff;
}

.foot-nav-sns li {
  font-size: var(--28px);
  color: #fff;
  text-align: center;
  margin: 3px 3px 10px;
}

.copyright {
  color: #858585;
}