@charset "utf-8";

/*==============================================
| 共通指定
==============================================*/
html {
  font-size: 62.5%;
}

body {
  background: #fff;
  font-family: 'Noto Sans JP', "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #111;
}

/* p {
  margin: 0;
} */

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

dl {
  margin: 0;
}

a,
a:hover {
  text-decoration: none;
  color: #111;
  transition: all .2s ease;
}

a img {
  transition: all .2s ease;
}

a:hover img {
  opacity: .7;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

/*==============================================
| レイアウト共通
==============================================*/
/* .wrapper-all {
  padding-bottom: 92px;
} */

.main-wrapper {
  overflow: hidden;
}

.contents-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.inner-narrow {
  max-width: 960px;
}

.common-sec {
  position: relative;
  padding: 60px 15px 80px 15px;
}

.sec-bottom-high {
  padding-bottom: 120px;
}

.sec-top-minus {
  margin-top: -60px;
  padding-top: 80px;
}

.sec-top-arch {
  position: relative;
  padding-top: 100px;
}

.sec-top-arch::before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  .sec-top-arch::before {
    height: 100px;
    background: url(../images/arch-top-highlights_sp.svg) no-repeat top center/contain;
  }
}

@media print,
(min-width: 768px) {
  .sec-top-arch::before {
    height: 220px;
    background: url(../images/arch-top-highlights.svg) no-repeat top center/cover;
  }
}

@media print,
(min-width: 1200px) {
  .common-sec {
    padding: 80px 15px 100px 15px;
  }

  .sec-bottom-high {
    padding-bottom: 220px;
  }

  .sec-top-minus {
    margin-top: -140px;
    padding-top: 120px;
  }

}

/*==============================================
| テキスト共通
==============================================*/
h2 {
  margin: 0 0 40px 0;
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  font-family: "Oswald", 'Noto Sans JP', "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

h2 span:not([class]) {
  display: block;
  text-transform: uppercase;
  font-size: 4.8rem;
  font-weight: 500;
  color: #2A4097;
}

@media print,
(min-width: 768px) {
  h2 {
    margin: 0 0 60px 0;
  }

  h2 span:not([class]) {
    font-size: 5.4rem;
  }
}

.bg-tasuki {
  display: inline-block;
  position: relative;
  padding: 30px 40px;
  min-width: 345px;
  color: #fff;
  background: url(../images/bg-title-highlights.svg) no-repeat center center/contain;
}


/*==============================================
| 最新情報
==============================================*/
.news-sec {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2A4097;
  /* background-image: repeating-linear-gradient(90deg, #1F2F84, #1F2F84 15px, transparent 15px, transparent 30px);
  background-position: center center; */
}

.top-news {
  background: #fff;
  border: 3px solid #fcc900;
  border-radius: 10px;
}

.top-news h2 {
  margin: 0;
  padding: 8px 15px;
  background: #fcc900;
  font-size: 1.6rem;
  color: #2A4097;
}

.update-info-list {
  position: relative;
  width: 100%;
  padding: 10px 15px;
  overflow-y: auto;
}

.update-info-list li {
  padding: 8px 0;
}

.update-info-list li:nth-child(n+2) {
  display: none;
  border-top: 1px solid #abb0c4;
}

.update-new {
  display: inline-block;
  padding: 0 8px;
  margin: 0 0 4px 10px;
  color: #fff;
  font-size: 1.4rem;
  border-radius: 100vh;
  font-weight: bold;
  background: #E2537E;
}

.update-info-list.view-more::before {
  content: "MORE ↓";
  display: block;
  font-size: 1.2rem;
  position: absolute;
  text-align: center;
  transition: all .2s ease;
}

.update-info-list.view-more.open::before {
  content: "↑";
}


@media screen and (max-width: 767px) {

  .top-news h2 {
    display: flex;
    align-items: baseline;
    text-align: left;
  }

  .top-news h2 span {
    padding: 0 10px 0 0;
    font-size: 3.2rem;
  }

  /* .update-info-list {
    max-height: 160px;
  } */
  .update-info-list li {
    font-size: 1.4rem;
  }

  .update-info-list.view-more {
    padding-bottom: calc(1.2em + 12px)
  }

  .update-info-list.view-more::before {
    padding: 6px 0;
    width: 100%;
    bottom: 0;
    left: 0;
    border-top: 1px solid #abb0c4;
  }

}

@media print,
(min-width: 768px) {
  .top-news {
    display: flex;
  }

  .top-news h2 {
    padding: 10px 20px;
  }

  .top-news h2 span {
    font-size: 3.6rem;
  }


  .update-info-list {
    padding: 10px 30px;
  }

  .update-info-list li {
    padding: 12px 0;
  }

  .update-info-list.view-more {
    padding-right: calc(1.2em + 12px)
  }

  .update-info-list.view-more::before {
    padding: 10px 6px;
    height: 100%;
    top: 0;
    right: 0;
  }

}

/*==============================================
| 特徴
==============================================*/
.highlights-sec {
  position: relative;
  background-color: #fcc900;
  background-image: repeating-linear-gradient(90deg, #FCBC00, #FCBC00 15px, transparent 15px, transparent 30px);
  background-position: center center;
  /* clip-path: ellipse(80% 50px at 50% 50px); */
}

.highlights-sec h2 {
  font-size: 1.6rem;
}

.highlights-sec h2 span:not([class]) {
  font-size: 6rem;
}

@media print,
(min-width: 768px) {
  .highlights-sec h2 span:not([class]) {
    font-size: 7.2rem;
  }
}

.fukidashi {
  margin: 0 0 60px 0;
  text-align: center;
}

.fukidashi span {
  display: inline-block;
  position: relative;
  padding: 15px;
  min-width: 345px;
  font-weight: bold;
  color: #2A4097;
  font-size: 2.4rem;
  line-height: 1.4;
  background: #fff;
  border-radius: 10px;
}

.fukidashi span::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 16px solid #fff;
  border-bottom: 0;
}

.tanoshimikata {
  max-width: 740px;
  margin: 30px auto;
}

@media print,
(min-width: 768px) {
  .fukidashi span {
    padding: 20px 30px;
    font-size: 3rem;
  }

  .tanoshimikata {
    margin: 60px auto;
    text-align: center;
  }
}

.tanoshimikata-list {
  margin: 60px 0 80px 0;
}

.tanoshimikata-list>div a {
  display: block;
  position: relative;
}

.tanoshimikata-list>div a img:nth-of-type(2) {
  padding: 0 15px;
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .tanoshimikata-list>div:nth-child(n+2) {
    margin: 140px 0 0 0;
  }
}

@media print,
(min-width: 768px) {
  .tanoshimikata-list {
    display: flex;
    justify-content: space-between;
  }

  .tanoshimikata-list>div {
    width: 44%;
  }

  .tanoshimikata-list>div a img:nth-of-type(2) {
    padding: 30px;
    max-width: 450px;
  }

}

.tanoshimikata-list .stand-by a {
  position: relative;
}

.tanoshimikata-list .stand-by a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .5);
  border-radius: 50%;
}

.tanoshimikata-list .stand-by a::after {
  content: "ただいま準備中です";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}

/*==============================================
| 競技種目
==============================================*/
.overview-bg {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
  z-index: -1;
}

.overview-bg::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/bg-overview.jpg) no-repeat top center / cover;
}

.overview-sec {
  background: linear-gradient(180deg, rgba(101, 154, 222, .4) 0%, rgba(145, 194, 243, .4) 100%);
}

.overview-sec h2 {
  margin: 0 0 60px 0;
  color: #fff;
}

.overview-outer>div:nth-child(n+2) {
  margin: 60px 0 0 0;
}

.overview-cont {
  position: relative;
  padding: 30px 15px;
  border-radius: 10px;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .overview-cont .md-flex .text-box {
    margin: 30px 0 0 0;
  }
}

@media print,
(min-width: 768px) {
  .overview-sec h2 {
    margin: 0 0 80px 0;
  }

  .overview-outer>div:nth-child(n+2) {
    margin: 80px 0 0 0;
  }

  .overview-cont .md-flex {
    display: flex;
    justify-content: space-between;
  }

  .overview-cont .md-flex>div {
    width: 48%;
  }

  .overview-cont .md-flex .img-box {
    order: 1;
  }
}

@media print,
(min-width: 1200px) {
  .overview-cont {
    padding: 40px;
  }
}

.overview-cont h3 {
  margin: 0 0 30px 0;
  padding: 0 0 8px 0;
  font-size: 2rem;
  font-weight: bold;
  color: #2A4097;
  border-bottom: 1px solid #2A4097;
}

.overview-cont h4 {
  position: relative;
  margin: 30px 0 12px 0;
  padding: 0 0 0 12px;
  font-size: 1.8rem;
  font-weight: bold;
}

.overview-cont h4::before {
  content: "";
  display: block;
  width: 6px;
  height: 18px;
  position: absolute;
  top: 2px;
  left: 0;
  background: #2A4097;
}

.overview-cont h4:first-child {
  margin-top: 10px;
}

.syumoku {
  font-weight: bold;
}

.syumoku span {
  font-size: 2.4rem;
}

.shikaku span,
.tokuten span,
.course span:not([class]) {
  font-size: 2rem;
  font-weight: bold;
}

.tokuten span {
  letter-spacing: -.03em;
}

.fee {
  font-weight: bold;
  font-size: 1.8rem;
}

.fee span {
  display: inline-block;
  padding: 0 8px;
  margin: 0 8px 0 0;
  background: #6574b0;
  color: #fff;
  font-size: 1.6rem;
  border-radius: 3px;
  text-align: center;
}

small {
  display: inline-block;
  padding: 0 0 0 1em;
  text-indent: -1em;
  font-size: 1.4rem;
}

.marker {
  background: linear-gradient(180deg, transparent 0%, transparent 70%, rgba(250, 201, 0, .6) 70%, rgba(252, 201, 0, .6) 100%);
}

.text-underline {
  text-decoration: underline;
}

.special-teams-cont {
  position: relative;
  padding-top: 30px;
  background: url(../images/bg-special.jpg) no-repeat center center/cover;
}

.special-teams-cont::before {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  position: absolute;
  top: -20px;
  right: -10px;
  background: url(../images/icon-bosyuu.svg) no-repeat center center/contain;
}

.special-teams-cont h3 span {
  display: inline-block;
  padding: 4px 16px;
  margin: 0 0 8px 0;
  border-radius: 100vh;
  font-size: 1.6rem;
  background: #2A4097;
  color: #fff;
}

.special-teams-point {
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .fee span {
    min-width: 96px;
  }

  .fee span:nth-of-type(n+2) {
    margin-top: 10px;
  }
}

@media print,
(min-width: 768px) {
  .overview-cont h3 {
    font-size: 2.4rem;
  }

  .fee {
    font-size: 2rem;
  }

  .fee span:nth-of-type(n+2) {
    margin-left: 20px;
  }

}

@media screen and (max-width: 1199px) {
  .special-teams-wrap>div:nth-child(2) {
    margin: 60px 0 0 0;
  }
}

@media print,
(min-width: 1200px) {
  .special-teams-wrap {
    display: flex;
    justify-content: space-between;
  }

  .special-teams-wrap>div {
    width: 49%;
  }

  .special-teams-cont {
    padding-left: 24px;
    padding-right: 24px;
  }

  .special-teams-cont .md-flex .img-box {
    width: 50%;
  }

  .special-teams-cont .md-flex .text-box {
    width: 46%;
  }
}

.course-map>div {
  margin: 40px auto 0 auto;
  /* max-width: 780px; */
}

/*==============================================
| 大会概要
==============================================*/
.details-inner>div:nth-of-type(n+2),
.entry-inner>div:nth-of-type(n+2) {
  margin: 60px 0 0 0;
}

.details-cont h3,
.entry-cont h3 {
  margin: 0 0 30px 0;
  padding: 0 0 8px 0;
  font-size: 2rem;
  font-weight: bold;
  color: #2A4097;
  border-bottom: 1px solid #2A4097;
}

@media print,
(min-width: 768px) {

  .details-cont h3,
  .entry-cont h3 {
    font-size: 2.4rem;
  }
}

.common-table {
  width: 100%;
  border-collapse: collapse;
}

.common-table th,
.common-table td {
  padding: 6px 10px;
  border: 1px solid #ccc
}

.common-table th {
  background: #f4f4f4;
  text-align: center;
  vertical-align: text-top;
}

@media screen and (max-width: 767px) {

  .common-table tr {
    border-top: 1px solid #ccc;
  }

  .common-table th,
  .common-table td {
    display: block;
  }

  .common-table th {
    border-top: none;
    border-bottom: none;
  }
}

@media print,
(min-width: 768px) {
  .common-table th {
    padding: 15px;
    width: 15%;
  }

  .common-table td {
    padding: 15px;
    width: 85%;
  }
}

a.text-link {
  color: #0182CF;
  text-decoration: underline;
}

/*==============================================
| エントリー
==============================================*/
.entry-sec {
  position: relative;
  background: linear-gradient(180deg, #fcc900 0%, #fef0b8 100%);
}

.entry-sec h2 {
  font-size: 1.6rem;
}

.kikan,
.houhou {
  font-weight: bold;
  font-size: 1.8rem;
}

.kikan span {
  font-size: 2.4rem;
}

.entry-button {
  margin: 30px auto;
  width: 100%;
  max-width: 680px;
}

.entry-button img {
  width: 100%;
}

@media print,
(min-width: 768px) {
  .kikan span {
    font-size: 2.8rem;
  }

  .houhou {
    font-size: 2.4rem;
  }

  .entry-button {
    margin: 40px auto;
  }
}

/*==============================================
| FAQ
==============================================*/
.faq-sec {
  background-color: #fcc900;
  background-image: repeating-linear-gradient(90deg, #FCBC00, #FCBC00 15px, transparent 15px, transparent 30px);
  background-position: center center;
}

.faq-sec h2 {
  font-size: 1.6rem;
}

.faq-sec h2 span {
  margin: 0 0 6px 0;
}

/*アコーディオン*/
.faq-list dt {
  position: relative;
  padding: 8px 36px 8px 10px;
  background: #2A4097;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

.faq-list dt::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 14px;
  right: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
  transition: all .3s ease;
}

.faq-list dd {
  display: none;
  padding: 10px;
  border: 2px solid #2A4097;
  background: #fff;
}

.faq-list dt:nth-of-type(n+2) {
  margin: 20px 0 0 0;
}

.faq-list dt.open::before {
  top: 16px;
  transform: rotate(-45deg);
}

@media print,
(min-width: 768px) {
  .faq-list dt {
    padding: 16px 60px 16px 30px;
    font-size: 1.8rem;
  }

  .faq-list dt:nth-of-type(n+2) {
    margin: 30px 0 0 0;
  }

  .faq-list dt::before {
    width: 16px;
    height: 16px;
    right: 30px;
    top: 20px;
  }

  .faq-list dt.open::before {
    top: 23px;
  }

  .faq-list dd {
    padding: 20px 30px;
  }
}

/*==============================================
| リンク
==============================================*/
.material-symbols-outlined {
  font-variation-settings:
    'FILL' 0,
    'wght' 300,
    'GRAD' 0,
    'opsz' 24
}

.external-link {
  position: relative;
  display: inline-block;
  padding: 0 0 0 1.4em;
}

.external-link::before {
  font-family: "Material Symbols Outlined";
  content: "\e89e";
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
}

/*==============================================
| リスト
==============================================*/
.common-list li {
  position: relative;
  padding: 0 0 0 1em;
}

.common-list li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 9px;
  left: 0;
  border-radius: 50%;
  background: #6574b0;
}

.common-list li:nth-child(n+2) {
  margin: 4px 0 0 0;
}

.caution-list li {
  padding: 0 0 0 1.2em;
  color: #D11515;
}

.caution-list li::before {
  content: "※";
  background: none;
  top: 0;
}

/*==============================================
| メインビジュアル
==============================================*/
.mv-sec {
  position: relative;
  text-align: center;
}

h1 {
  margin: 0;
}

.mv-sec img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .mv-sec {
    padding-top: 60px;
    background: #2A4097;
  }
}

/*==============================================
| ヘッダー
==============================================*/
header {
  position: relative;
  overflow: hidden;
  width: 100%;
  z-index: 99;
}

.header-menu {
  display: flex;
}

.lp-title img {
  max-width: 240px;
}

@media screen and (max-width: 767px) {
  .lp-title img {
    width: 180px;
  }
}

/*ハンバーガーメニュー*/
.hamburger {
  margin: 0 0 0 40px;
}

.hamburger div {
  position: relative;
  width: 40px;
  height: 40px;
}

.hamburger span {
  display: block;
  position: absolute;
  top: 4px;
  right: 0;
  width: 40px;
  height: 2px;
  background: #fff;
  border-radius: 100vh;
  transition: all .3s ease;
}

.hamburger span:nth-of-type(2) {
  top: 16px;
}

.hamburger span:nth-of-type(3) {
  top: 28px;
}

.hamburger {
  position: fixed;
  top: 0;
  right: 0;
  padding: 10px 15px;
  background: #2A4097;
  border-bottom-left-radius: 4px;
}

.hamburger.open span {
  right: 6px;
}

.hamburger.open span:first-of-type {
  transform: rotate(-45deg);
  transform-origin: top right;
}

.hamburger.open span:nth-of-type(2) {
  visibility: hidden;
  opacity: 0;
}

.hamburger.open span:nth-of-type(3) {
  top: 32px;
  transform: rotate(45deg);
  transform-origin: bottom right;
}

/*グロナビ*/
.g-nav-box {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  opacity: 0;
  padding: 80px 20px 15px 20px;
  background-image: linear-gradient(rgba(101, 154, 222, .4), rgba(145, 194, 243, .4)), url(../images/bg-overview.jpg);
  z-index: -1;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  overflow-y: scroll;
  transition: all .5s ease;
}

.g-nav-box.open {
  opacity: 1;
  visibility: visible;
}

.g-nav {
  margin: 0 0 20px 0;
  text-align: center;
}

.g-nav>ul li:nth-child(n+2) {
  margin: 10px 0 0 0;
}

.g-nav a {
  display: block;
  padding: 8px 0;
  font-weight: bold;
  color: #2A4097;
  font-size: 2rem;
}

.stand-by a {
  pointer-events: none !important;
}

@media print,
(min-width: 1200px) {
  .g-nav a span {
    font-size: 4rem;
  }
}

/*背景*/
.nav-bg {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: rgba(0, 0, 0, .4);
  display: none;
  -webkit-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
}

.nav-bg.open {
  display: block;
}

/*リンク*/
.lp-header-link li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1rem;
}

.lp-header-link li a:hover {
  color: #fff;
}

.lp-header-link li a img {
  display: block;
  margin: 0 0 2px 0;
}

@media screen and (max-width: 767px) {
  .lp-header-link {
    justify-content: space-around
  }
}

@media print,
(min-width: 768px) {
  .lp-header-link li {
    margin: 0 0 0 10px;
  }
}

/*==============================================
| フッター
==============================================*/
footer {
  padding: 30px 0 120px 0;
  background: #2A4097;
}

.footer-inner {
  padding: 0 15px;
  margin: 0 auto;
  max-width: 1200px;
}

.contact p {
  color: #fff;
}

.contact p:nth-child(n+2) {
  margin: 6px 0 0 0;
}

.contact p:first-child {
  display: inline-block;
  padding: 2px 10px;
  margin: 0 0 10px 0;
  border: 1px solid #333;
  border: 1px solid #fff;
}

.contact p:nth-child(2) {
  font-size: 1.6rem;
}

footer small {
  display: block;
  color: #fff;
  font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
  .footer-inner>div:nth-child(n+2) {
    margin: 30px 0 0 0;
  }

  .contact p {
    font-size: 1.4rem;
  }

  footer small {
    padding: 10px 0 0 0;
    text-align: center;
    border-top: 1px solid #fff;
  }
}

@media print,
(min-width: 768px) {
  footer {
    padding: 60px 0 180px 0;
  }

  .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
}

/*==============================================
| 固定ボタン
==============================================*/
.entry-fix-button {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  padding: 10px 15px;
  background: rgba(252, 201, 0, 1);
}

.entry-fix-button>div {
  max-width: 360px;
  margin: 0 auto;
}

.entry-fix-button>div a {
  display: block;
}

.entry-fix-button .fix-close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 16px;
  position: absolute;
  top: -16px;
  left: 12px;
  color: #707070;
  font-weight: bold;
  font-size: 1.2rem;
  /* border: 1px solid #A9BEBE; */
  border-radius: 4px 4px 0 0;
  background: rgba(252, 201, 0, 1);
  cursor: pointer;
}

@media print,
(min-width: 768px) {

  .entry-fix-button>div {
    max-width: 480px;
  }

  .entry-fix-button .fix-close {
    width: 40px;
    height: 100%;
    top: 0;
    left: 0;
    font-size: 1.4rem;
    border-right: 1px solid #707070;
    border-radius: 0;
    background: none;
  }
}

/*トップに戻るボタン*/
.button-top {
  position: fixed;
  bottom: 100px;
  right: 10px;
  z-index: 6;
}

.button-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  opacity: .9;
}

.button-top a img {
  width: 100%;
}

@media print,
(min-width: 1200px) {
  .button-top {
    right: 3%;
    bottom: 150px;
  }

  .button-top a {
    width: 60px;
    height: 60px;
  }

}

/*==============================================
| インビューアニメ
==============================================*/
.zoom-out {
  transform: translateY(40px) scale(1.2);
  opacity: 0;
  transition: all .8s .4s cubic-bezier(0.22, 1, 0.36, 1);
}

.zoom-out.viewon {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.fade-in-up {
  transform: translateY(40px);
  opacity: 0;
  transition: all .4s .2s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in-up.viewon {
  transform: translateY(0);
  opacity: 1;
}

.zoom-in-up {
  transform: translateY(40px) scale(0.8);
  opacity: 0;
  transition: all .6s .2s cubic-bezier(0.25, 1, 0.5, 1);
}

.zoom-in-up.viewon {
  transform: translateY(0) scale(1.0);
  opacity: 1;
}

.bounce.viewon {
  animation: bounce 1.6s ease-in-out forwards;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-30px);
  }

  60% {
    transform: translateY(-15px);
  }
}

/*==============================================
| 大会パートナー
==============================================*/
.partner-wrap>div:nth-child(n+2) {
  margin: 40px 0 0 0;
}

.partner-wrap>div:nth-last-child(2) {
  margin: 60px 0 0 0;
}

.partner-wrap h3 {
  margin: 0 0 20px 0;
  font-weight: normal;
  text-align: center;
}

.partner-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

.partner-list.standard li {
  width: 48%;
}

.partner-list.support li {
  width: 32%;
}

.shusai,
.kouen {
  text-align: center;
}

.shusai span {
  font-weight: bold;
  font-size: 2rem;
}

.kouen span {
  font-weight: bold;
}


@media screen and (max-width: 767px) {
  .partner-list.standard li:nth-child(odd) {
    margin-right: 1%;
  }

  .partner-list.standard li:nth-child(even) {
    margin-left: 1%;
  }

  .partner-list.support li:nth-child(2),
  .partner-list.support li:nth-child(5) {
    margin-left: 2%;
    margin-right: 2%;
  }

  .partner-list.standard li:nth-child(n+3) {
    margin-top: 15px;
  }

  .partner-list.support li:nth-child(n+4) {
    margin-top: 15px;
  }
}

@media print,
(min-width: 768px) {
  .partner-wrap>div:nth-child(n+2) {
    margin: 60px 0 0 0;
  }

  .partner-wrap>div:nth-last-child(2) {
    margin: 80px 0 0 0;
  }

  .partner-list.tokubetsu li {
    width: 50%;
    max-width: 480px;
  }

  .partner-list.standard li {
    width: 23%;
  }

  .partner-list.support li {
    width: 18%;
  }

  .partner-list.standard li,
  .partner-list.support li {
    margin-left: 1%;
    margin-right: 1%;
  }

  .partner-list.standard li:nth-child(n+5) {
    margin-top: 20px;
  }

  .partner-list.support li:nth-child(n+6) {
    margin-top: 20px;
  }

  .shusai span {
    font-size: 3.2rem;
  }

  .kouen span {
    font-size: 2.4rem;
  }

}

/*==============================================
| アクセス
==============================================*/
.access-sec {
  position: relative;
}

.access-wrap .text-box>div:nth-child(n+2) {
  margin: 30px 0 0 0;
}

.access-wrap h3 {
  margin: 0 0 20px 0;
  font-weight: bold;
  font-size: 1.8rem;
}

.access-wrap .common-list {
  margin: 10px 0;
}

.gmap-box>div {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.gmap-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.transportation-info>p:nth-of-type(n+2) {
  margin-top: 16px;
}

.note {
  margin: 20px 0 0 0;
  color: #CD0C22;
}

.note span {
  padding: 0 8px;
  background: #CD0C22;
  color: #fff;
  font-weight: bold;
  border-radius: 3px;
}

@media screen and (max-width: 767px) {
  .gmap-box {
    margin: 40px 0 0 0;
  }
}

@media print,
(min-width: 768px) {
  .access-wrap {
    display: flex;
    justify-content: space-between;
    margin: 60px 0 0 0;
  }

  .access-wrap>div {
    width: 48%;
  }

  .access-wrap .text-box {
    order: 1;
  }
}

/* ==============================
   Swiper 流れ続けるスライダー用
============================== */
.gallery-sec {
  padding-bottom: 120px;
  background-color: #fcc900;
  background-image: repeating-linear-gradient(90deg, #FCBC00, #FCBC00 15px, transparent 15px, transparent 30px);
  background-position: center center;
}

/* スライドの動き等速 */
.swiper-wrapper {
  transition-timing-function: linear;
}

/* 画像のサイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%;
}