@charset "utf-8";

*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  font-size: 1.5rem;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  /* font-family: "M PLUS Rounded 1c", sans-serif; */
  color: #03572e;
  background-color: #fefefe;
  overflow-y: auto;
}

body.fixed {
  height: 100%;
  overflow-y: hidden;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

li {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all .3s ease-out;
}

a:hover {
  cursor: pointer;
}

h3 {
  text-align: center;
  font-size: 30px;
}

@media (max-width: 834px) {
h3 {
  font-size: 24px;
}
}

.en {
  font-family: 'Montserrat', sans-serif;
  /* font-family: "Quicksand", sans-serif; */
}

.tac {
  text-align: center;
}

.tae {
  text-align: end;
}

.br-sp {
  display: none;
}

.sp-show {
  display: none;
}

.tb-show {
  display: none;
}

.inner {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.pad {
  padding: 130px 0;
}

.pad02 {
  padding: 80px 0;
}

@media(max-width: 1359px) {
  .pad {
    padding: 7.5vw 0;
  }

  .pad02 {
    padding: 4.5vw 0;
  }
}

@media(max-width: 834px) {
  .pad {
    padding: 60px 0;
  }

  .pad02 {
    padding: 50px 0;
  }
}

@media(max-width: 500px) {
  .pad {
    padding: 50px 0;
  }

  .pad02 {
    padding: 40px 0;
  }
}

.btn {
  position: relative;
  display: block;
  width: 240px;
  border: 2px solid #00000028;
  border-radius: 60px;
  background-color: #a1c34990;
  text-align: center;
  padding: 20px 40px 20px 20px;
  margin: 0 auto;
}

.btn:hover {
  opacity: 0.8;
}

.btn::after {
  content: '';
  position: absolute;
  font-family: "Material Symbols Outlined";
  content: "\e5cc";
  font-size: 2rem;
  font-weight: 200;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
}

/* ------------------------------
　　　　      ヘッダー          
   ------------------------------ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 80px;
  color: #036938;
  background-color: #fffefe;
  padding: 10px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.header-inner a:hover {
  opacity: .6;
}

.header-logo__link,
.footer-team {
  display: flex;
  align-items: center;
  margin-right: 5px;
}

.header-logo__img-wrap {
  margin-top: 2px;
  margin-right: 10px;
}

.header-logo__img {
  height: auto;
  width: 56px;
}

.header-logo__txt {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 600;
  font-family: "Quicksand", sans-serif;
  font-family: 'Montserrat', sans-serif;
}

.header-menu__list {
  display: flex;
  align-items: center;
  gap: 0 25px;
}

.header-menu__item {}

.header-menu__item-link {
  font-size: 18px;
  font-weight: 500;
}

.header-sns__list {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-sns__item-icon {
  font-size: 28px;
  transition: all .3s ease-out;

}

.header-sns__item-icon-facebook {
  font-size: 25px;
}

.header-sns__item-link {
  display: block;
}

.header-sns__item-link:hover .header-sns__item-icon {
  transform: scale(0.9);
  opacity: .7;
  transition: all .3s ease-out;
}

.header-btn {
  display: none;
  position: fixed;
  z-index: 700;
  top: 25px;
  right: 40px;
  background: transparent;
  border: none;
}

.header-btn:hover {
  cursor: pointer;
}

.header-btn__ham {
  position: relative;
  width: 30px;
  height: 30px;
  overflow: hidden;
}

.header-btn__ham-bar {
  position: absolute;
  top: 30%;
  left: 10%;
  width: 100%;
  height: 1px;
  background-color: #03572e;
  transition: all .4s ease;
}

.header-btn:hover .header-btn__ham-bar {
  animation: btn-line .3s;
}

.header-btn:hover .header-btn__ham-bar:nth-of-type(2) {
  animation: btn-line .3s .1s;
}

@keyframes btn-line {
  0% {
    transform: translate(0);
  }

  90% {
    transform: translate(100%, 0);
  }

  100% {
    transform: translate(0);
  }
}

.header-btn__ham-bar:nth-of-type(1) {
  top: 33%;
}

.header-btn__ham-bar:nth-of-type(2) {
  top: 67%;
}

.header-btn.active .header-btn__ham-bar:nth-of-type(1) {
  top: 50%;
  transform: rotate(45deg);
}

.header-btn.active .header-btn__ham-bar:nth-of-type(2) {
  top: 50%;
  transform: rotate(-45deg);
}

/* タブレット */
@media (max-width: 834px) {

  .tb-show {
    display: block;
  }

  /* ハンバーガーメニュー ボタン　*/
  .header-btn {
    display: block;
  }

  .header-btn:hover {
    opacity: .7;
    transition: all .3s ease-out;
  }

  /* メニュー背景　レイヤー */
  .menu-back {
    position: fixed;
    z-index: 60;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #03693870;
    transition: all 0.5s;
    display: none;
  }

  .menu-back.active {
    display: block;
  }

  /* トグルメニュー リスト　*/
  .header-menu {
    position: fixed;
    z-index: 90;
    top: 80px;
    right: 0;
    width: 80vw;
    height: calc(100vh - 80px);
    background-color: #fffefe;

    display: flex;
    justify-content: center;
    overscroll-behavior: contain;
    padding-top: 10vh;

    transition: all 0.6s;
    transform: translateX(80vw);
  }

  .header-menu.active {
    display: flex;
    transform: translateX(0vw);
    transition: all 0.5s;
  }

  .header-menu__list {
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
  }

  .header-menu__item-link {
    font-size: 18px;
    font-weight: 500;
  }

  .header-sns__list {
    margin-top: 4px;
    margin-right: 50px;
  }

}

/* スマホ */
@media (max-width: 500px) {
  header {
    height: 60px;
  }

  .header-inner {
    width: 94%;
  }


  .br-sp {
    display: block;
  }

  .sp-hidden {
    display: none;
  }

  li.sp-show {
    border: none;
  }

  li.sp-show p {
    text-align: center;
  }

  .header-logo__link,
  .footer-team {
    margin-right: 0px;
  }

  .header-logo__link .header-logo__img-wrap {
    /* margin: 8px 10px 0px; */
  }

  .header-logo__img {
    height: auto;
    width: 36px;
  }

  .header-logo__link .header-logo__txt {
    font-size: 20px;
    width: fit-content;
    padding-top: 3px;
  }

  .header-btn {
    top: 20px;
    right: 19px;
  }

  .header-btn__ham {
    width: 27px;
    height: 25px;
  }

  .header-menu {
    top: 60px;
    height: calc(100vh - 60px);
  }
}


/* ------------------------------
　　　　     フッター
　　----------------------------- */
footer {
  background-color: #222;
  color: #fff;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo__link {
  transition: all .3s ease-out;
}

.footer-logo__link:hover {
  opacity: .7;
}

.footer-logo__img {
  width: 100px;
  margin: 0 auto;
}

.footer-logo__txt {
  text-align: center;
  margin-top: 20px;
}

.footer-menu__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 25px;
  margin-top: 30px;
}

.footer-menu__item {}

.footer-sns__list {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px auto 50px;
}

.footer-sns__item-icon-instagram {
  font-size: 25px;
}

.footer-sns__item-icon-facebook {
  font-size: 23px;
}

.privacypolicy {
  font-size: 13px;
  margin-bottom: 10px;
}

.icon-license {
  font-size: 11px;
}

.copyright {
  font-size: 13px;
  margin: 20px auto;
}

/* ------------------------------
　　　　   ページタイトルエリア
　　----------------------------- */
/* パンくずリスト */
.bread {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  font-size: 14px;
  color: #ebfbcb;
}

.bread-list {
  display: flex;
  align-items: center;
}

.bread-item:last-of-type {
  line-height: 1;
  font-weight: 400;
  border-left: 1px solid #ebfbcb;
  padding-left: 10px;
  margin-left: 10px;
}

.bread a:hover {
  opacity: 0.4;
}

.bread span {
  font-size: 18px;
}

@media (max-width: 834px) {
  .bread {
    bottom: 15px;
    font-size: 12px;
  }
}

/* ページタイトル */
.page-title {
  text-align: center;
  color: #fff;
}

.page-title-area {
  position: relative;
  height: 250px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#schedule .page-title-area {
  background-image: linear-gradient(#44444470, #44444470), url(../img/soccer-game-green-press.jpg);
  background-position: center;
}

.member-body .page-title-area {
  background-image: linear-gradient(#44444470, #44444470), url(../img/soccer-game-green-press.jpg);
  background-position: right top;
}

#about .page-title-area {
  background-image: linear-gradient(#33333370, #33333370), url(../img/soccer-field-goal-press-h500.jpg);
  background-position: top;
}

.message .page-title-area {
  background-image: linear-gradient(#33333380, #33333380), url(../img/soccer-field-goal-press-h500.jpg);
  background-position: bottom;
}

#partner .page-title-area {
  background-image: linear-gradient(#11111180, #11111180), url(../img/soccer-field-ball-press-h600.jpg);
  background-position: right center;
}

/* #contact .page-title-area {
  background-image: linear-gradient(#11111170, #11111170), url(../img/soccer-field-ball-press-h600.jpg);
  background-position: center top;
}

#privacy .page-title-area {
  background-image: linear-gradient(#11111170, #11111170), url(../img/soccer-field-ball-press-h600.jpg);
  background-position: center bottom;
} */

.page-title__jp {
  font-size: 40px;
}

.page-title__en {
  font-size: 17px;
}

@media(max-width: 834px) {
  .page-title-area {
    height: 200px;
  }

  .page-title__jp {
    font-size: 30px;
  }

  .page-title__en {
    font-size: 15px;
  }
}


/* ------------------------------
　　　　      main          
------------------------------ */
/* ヘッダー分 */
main {
  margin-top: 80px;
}

/* 背景カラー */
.back-color {
  background-color: #ebfbcb;
}

/* パートナー（index, partner) */


.top-partner__ttl {}

.top-partner__list {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}


/* ボタン(index, contact)　*/
.contact-button-area {
  text-align: center;
}

.contact-button {
  display: inline-block;
  background-color: #f4bf00;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  padding: 20px 70px 20px 50px;
  margin: 40px auto;
}

.contact-button:hover {
  opacity: 0.6;
}

.contact-button::after {
  display: inline-block;
  position: absolute;
  width: 20px;
  height: 23px;
  background: url(../img/icons8-arrow-gt-regular-50fff.png) no-repeat center center;
  background-size: 18px;
  content: "";
  margin-left: 15px;
}

/* --------------------------------------------------- */
/* タブレット */
@media (max-width: 960px) {

  /* フッターメニュー */
  .footer-menu ul {
    flex-direction: column;
    align-items: center;
  }

  .footer-menu ul li {
    margin: 10px;
  }

}

/* --------------------------------------------------- */
/* スマホ */
@media (max-width: 520px) {
  main {
    margin-top: 60px;
  }

  .copyright p {
    text-align: center;
  }

  .bread {
    bottom: 10px;
    margin-top: 0px;
  }

}