@charset "UTF-8";
:root {
  --vpx-ratio: 1;
}

@media screen and (min-width: 769px) and (max-width: 1188.8888888889px) {
  :root {
    --vpx-ratio: calc(var(--viewport-width, 100vw) / 1188.8888888889px);
  }
}
@media screen and (max-width: 768px) {
  :root {
    --vpx-ratio: min(var(--viewport-ratio-375, calc(100vw / 375px)), 1.4814814815);
  }
}
:root {
  --header-h: 0px;
}

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

html {
  scroll-padding-top: calc(var(--header-h) * 1.3);
  scroll-behavior: smooth;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
button,
strong,
small,
li,
table,
th,
td,
dt,
dd,
label,
input,
textarea,
select,
legend,
address,
data,
time,
figcaption,
cite {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  color: #382C23;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0em;
  line-height: 1;
}

strong,
label,
small,
address,
time,
figcaption {
  display: block;
}

strong {
  font-weight: 700;
}

a {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

fieldset {
  display: contents;
  border: none;
}

input,
select {
  display: block;
  border: 1px solid #000;
  border-radius: 0;
  background: transparent;
  color: #000;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type=submit],
input[type=checkbox],
input[type=radio],
select {
  cursor: pointer;
}

button {
  display: block;
  border: none;
  background: transparent;
  cursor: pointer;
}

picture,
img,
svg,
video,
iframe {
  display: block;
  width: 100%;
  height: auto;
}

.slick-prev,
.slick-next {
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  aspect-ratio: 1/1;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
  font-size: 0;
  color: transparent;
  line-height: 0;
}

.slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 10px;
  text-align: center;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 10px;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.slick-dots li:only-child {
  display: none;
}
.slick-dots li button {
  width: 100%;
  aspect-ratio: 1/1;
  border: 0;
  outline: none;
  border-radius: 100%;
  background: #d9d9d9;
  cursor: pointer;
  font-size: 0;
  color: transparent;
  line-height: 0;
}
.slick-dots li.slick-active button {
  background: #000;
}

.l-container {
  width: 1070px;
  margin-inline: auto;
  zoom: 1;
}
@media screen and (max-width: 768px) {
  .l-container {
    width: 337.5px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1188.8888888889px) {
  .l-container {
    zoom: calc(100vw / 1188.8888888889px);
  }
}
@media screen and (min-width: 360px) and (max-width: 768px) {
  .l-container {
    zoom: min(var(--viewport-ratio-375, calc(100vw / 375px)), 1.4814814815);
  }
}

.l-container--wide {
  width: 1440px;
  margin-inline: auto;
  zoom: 1;
}
@media screen and (max-width: 768px) {
  .l-container--wide {
    width: 375px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1440px) {
  .l-container--wide {
    zoom: var(--viewport-ratio-1440, calc(100vw / 1440px));
  }
}
@media screen and (min-width: 360px) and (max-width: 768px) {
  .l-container--wide {
    zoom: var(--viewport-ratio-375, calc(100vw / 375px));
  }
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100px;
  padding-inline: calc(20px * var(--vpx-ratio));
  background: #fff;
}
.header__nav {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.header__lang {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding: 8px;
  border-bottom: 1px solid #979797;
}
.header__lang-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.header__lang-item:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1em;
  background: #979797;
  transform: rotate(30deg);
}
.header__lang a {
  font-size: 12px;
  color: #979797;
  font-weight: 300;
  transition: opacity 0.3s ease;
}
.header__lang a.gt-current-lang {
  text-decoration: underline;
}
.header__menu {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: calc(28px * var(--vpx-ratio));
  width: 95%;
  max-width: 1070px;
  min-height: 0;
  margin-inline: auto;
}
.header__menu .header__logo {
  display: flex;
  width: clamp(160px, 12.29vw, 177px);
}
.header__menu .header__logo-link {
  transition: opacity 0.3s ease;
}
.header__menu .header__logo-img {
  opacity: 1 !important;
  pointer-events: none;
}
.header__menu-list {
  display: grid;
  align-items: center;
  gap: calc(20px * var(--vpx-ratio));
  height: 100%;
}
.header__menu-group--left .header__menu-list {
  grid-template-columns: repeat(2, 1fr);
}
.header__menu-group--right .header__menu-list {
  grid-template-columns: repeat(3, 1fr);
}
.header__menu-link {
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: opacity 0.3s ease;
}
.header__menu-label {
  display: block;
  margin-bottom: 5px;
  font-size: clamp(13px, 0.97vw, 14px);
  color: #B29000;
  font-weight: 800;
}
.header__menu-sub {
  display: block;
  font-size: clamp(11px, 0.83vw, 12px);
  font-weight: 600;
}
.header__mobile {
  display: none;
}

@media screen and (max-width: 768px) {
  .header {
    height: calc(77px * var(--vpx-ratio));
    padding-inline: 0;
  }
  .header__mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    height: 100%;
    margin-inline: auto;
  }
  .header__logo {
    width: calc(220px * var(--vpx-ratio));
  }
  .header__toggle {
    position: relative;
    display: block;
    width: calc(44px * var(--vpx-ratio));
    aspect-ratio: 1/1;
  }
  .header__toggle-line {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: calc(4px * var(--vpx-ratio));
    background: #B29000;
    transition: all 0.35s ease-in-out;
  }
  .header__toggle-line:first-child {
    top: calc(50% - 9px * var(--vpx-ratio));
  }
  .header__toggle-line:nth-child(2) {
    top: 50%;
  }
  .header__toggle-line:last-child {
    top: calc(50% + 9px * var(--vpx-ratio));
  }
  .header.nav_open .header__toggle-line:first-child {
    top: 50%;
    transform: translate(-50%, -50%) rotate(315deg);
  }
  .header.nav_open .header__toggle-line:nth-child(2) {
    width: 0;
    top: 50%;
  }
  .header.nav_open .header__toggle-line:last-child {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-315deg);
  }
  .header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(-10px);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    row-gap: calc(20px * var(--vpx-ratio));
    width: 100%;
    height: auto;
    max-height: 0;
    background: #fff;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
  }
  .header.nav_open .header__nav {
    transform: translateY(0);
    max-height: calc(100dvh - var(--header-h));
    opacity: 1;
    overflow-y: auto;
  }
  .header__menu {
    flex: none;
    order: 0;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: calc(14px * var(--vpx-ratio));
    width: 90%;
    padding-top: calc(20px * var(--vpx-ratio));
  }
  .header__menu .header__logo {
    display: none;
  }
  .header__menu-list {
    display: grid;
    align-items: center;
    gap: calc(16px * var(--vpx-ratio));
    height: 100%;
  }
  .header__menu-group--left .header__menu-list, .header__menu-group--right .header__menu-list {
    grid-template-columns: 1fr;
  }
  .header__menu-label {
    margin-bottom: calc(5px * var(--vpx-ratio));
    font-size: calc(14px * var(--vpx-ratio));
  }
  .header__menu-sub {
    font-size: calc(14px * var(--vpx-ratio));
  }
  .header__lang {
    flex: none;
    order: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: calc(10px * var(--vpx-ratio));
    width: 90%;
    margin-inline: auto;
    padding: 0;
    padding-bottom: calc(30px * var(--vpx-ratio));
    border-bottom: none;
  }
  .header__lang-item {
    display: flex;
    justify-content: flex-start;
    -moz-column-gap: calc(10px * var(--vpx-ratio));
         column-gap: calc(10px * var(--vpx-ratio));
  }
  .header__lang-item:not(:last-child)::after {
    background: #B29000;
  }
  .header__lang a {
    font-size: calc(14px * var(--vpx-ratio));
    color: #B29000;
    font-weight: 400;
  }
}
@media (hover: hover) {
  .header__lang a:hover,
  .header__lang a:focus-visible {
    opacity: 0.6;
  }
  .header__logo-link:hover,
  .header__logo-link:focus-visible {
    opacity: 0.6;
  }
  .header__menu-link:hover,
  .header__menu-link:focus-visible {
    opacity: 0.6;
  }
}
.footer {
  width: 100%;
  background: url(../img/mtb/footer_bg_pc.jpg) no-repeat center/cover;
}
.footer__body {
  padding-block: 30px 15px;
}
.footer__logo {
  width: 230px;
  margin-bottom: 35px;
  margin-inline: auto;
  transition: opacity 0.3s ease;
}
.footer__logo img {
  opacity: 1 !important;
}
.footer__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__nav-item {
  min-width: 128px;
}
.footer__nav-link {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  transition: opacity 0.3s ease;
}
.footer__copyright {
  padding-block: 20px;
  font-size: 14px;
  color: #fff;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .footer {
    background: url(../img/mtb/footer_bg_sp.jpg) no-repeat center/cover;
  }
  .footer__logo {
    width: 155px;
    margin-bottom: 15px;
  }
  .footer__nav-list {
    display: flex;
    flex-direction: column;
    row-gap: 7px;
  }
  .footer__nav-item {
    min-width: auto;
  }
  .footer__nav-link {
    font-size: 13px;
  }
  .footer__copyright {
    padding-block: 10px;
    font-size: 13px;
  }
}
@media (hover: hover) {
  .footer__logo:hover,
  .footer__logo:focus-visible {
    opacity: 0.6;
  }
  .footer__nav-link:hover,
  .footer__nav-link:focus-visible {
    opacity: 0.6;
  }
}
.c-heading {
  width: 100%;
  margin-bottom: 55px;
  text-align: center;
}
.c-heading__lead {
  position: relative;
  display: inline-block;
  padding-inline: 75px;
  margin-bottom: 22px;
  margin-inline: auto;
  font-size: 20px;
  color: #B29000;
  font-weight: 800;
  line-height: 1.5;
  text-stroke: 5px #fff;
  -webkit-text-stroke: 5px #fff;
  paint-order: stroke;
}
.c-heading__lead::before, .c-heading__lead::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 61px;
  aspect-ratio: 61/6;
  background: radial-gradient(circle, #fff 0 3px, transparent 3.1px) 0 50%/6px 6px no-repeat, radial-gradient(circle, #fff 0 3px, transparent 3.1px) 11px 50%/6px 6px no-repeat, radial-gradient(circle, #fff 0 3px, transparent 3.1px) 22px 50%/6px 6px no-repeat, radial-gradient(circle, #fff 0 3px, transparent 3.1px) 33px 50%/6px 6px no-repeat, radial-gradient(circle, #fff 0 3px, transparent 3.1px) 44px 50%/6px 6px no-repeat, radial-gradient(circle, #fff 0 3px, transparent 3.1px) 55px 50%/6px 6px no-repeat;
  pointer-events: none;
}
.c-heading__lead::before {
  left: 0;
  transform: translate(-100%, -50%);
}
.c-heading__lead::after {
  right: 0;
  transform: translate(100%, -50%);
}
.c-heading__lead--gold {
  color: #fff;
  font-weight: 800;
  text-stroke: 5px #B29000;
  -webkit-text-stroke: 5px #B29000;
}
.c-heading__lead--gold::before, .c-heading__lead--gold::after {
  background: radial-gradient(circle, #b29000 0 3px, transparent 3.1px) 0 50%/6px 6px no-repeat, radial-gradient(circle, #b29000 0 3px, transparent 3.1px) 11px 50%/6px 6px no-repeat, radial-gradient(circle, #b29000 0 3px, transparent 3.1px) 22px 50%/6px 6px no-repeat, radial-gradient(circle, #b29000 0 3px, transparent 3.1px) 33px 50%/6px 6px no-repeat, radial-gradient(circle, #b29000 0 3px, transparent 3.1px) 44px 50%/6px 6px no-repeat, radial-gradient(circle, #b29000 0 3px, transparent 3.1px) 55px 50%/6px 6px no-repeat;
}
.c-heading__ttl {
  width: 100%;
  height: 37px;
  padding: 0;
}
.c-heading__ttl img {
  display: inline-block;
  width: auto;
  height: 100%;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .c-heading {
    margin-bottom: 25px;
  }
  .c-heading__lead {
    padding-inline: 26px;
    margin-bottom: 15px;
    font-size: 12px;
  }
  .c-heading__lead::before, .c-heading__lead::after {
    width: 39px;
    aspect-ratio: 39/6;
    background: radial-gradient(circle, #fff 0 3px, transparent 3.1px) 0 50%/6px 6px no-repeat, radial-gradient(circle, #fff 0 3px, transparent 3.1px) 11px 50%/6px 6px no-repeat, radial-gradient(circle, #fff 0 3px, transparent 3.1px) 22px 50%/6px 6px no-repeat, radial-gradient(circle, #fff 0 3px, transparent 3.1px) 33px 50%/6px 6px no-repeat;
  }
  .c-heading__lead--gold::before, .c-heading__lead--gold::after {
    background: radial-gradient(circle, #b29000 0 3px, transparent 3.1px) 0 50%/6px 6px no-repeat, radial-gradient(circle, #b29000 0 3px, transparent 3.1px) 11px 50%/6px 6px no-repeat, radial-gradient(circle, #b29000 0 3px, transparent 3.1px) 22px 50%/6px 6px no-repeat, radial-gradient(circle, #b29000 0 3px, transparent 3.1px) 33px 50%/6px 6px no-repeat;
  }
  .c-heading__ttl {
    height: 25px;
  }
}
@media screen and (max-width: 768px) {
  .u-show--pc {
    display: none !important;
  }
}
@media screen and (max-width: 500px) {
  .u-show--pc-tab {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .u-show--tab {
    display: none !important;
  }
}
@media screen and (max-width: 500px) {
  .u-show--tab {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .u-show--tab-sp {
    display: none !important;
  }
}
@media screen and (min-width: 500px) {
  .u-show--sp {
    display: none !important;
  }
}
body.is-fixed {
  overflow: hidden;
}

.mainVs {
  position: relative;
  width: 100%;
  height: calc(594px * var(--vpx-ratio));
  background: url(../img/mtb/mainVs_bg_pc.jpg) no-repeat center bottom/100% auto;
}
.mainVs .l-container {
  height: 100%;
}
.mainVs__body {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 53px;
       column-gap: 53px;
  width: 100%;
  height: 100%;
}
.mainVs__ttl {
  flex: 0 0 477px;
}
.mainVs__ttl img {
  pointer-events: none;
}
.mainVs__img {
  flex: 1;
}
.mainVs__img img {
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .mainVs {
    height: calc(510px * var(--vpx-ratio));
    background: url(../img/mtb/mainVs_bg_sp.jpg) no-repeat center bottom/auto 100%;
  }
  .mainVs__body {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    row-gap: 30px;
    padding-bottom: 20px;
  }
  .mainVs__ttl {
    flex: none;
    width: 91.5%;
  }
  .mainVs__ttl img {
    pointer-events: none;
  }
  .mainVs__img {
    flex: none;
    width: 100%;
  }
  .mainVs__img img {
    pointer-events: none;
  }
}
.about {
  position: relative;
  width: 100%;
  padding-block: 100px;
  background: url(../img/mtb/about_bg_pc.jpg) no-repeat center/cover;
  overflow: hidden;
}
.about > * {
  position: relative;
}
.about__body {
  text-align: center;
}
.about__ttl {
  margin-bottom: 30px;
  font-size: 20px;
  color: #fff;
  font-weight: 800;
  line-height: 1.35;
}
.about__txt {
  font-size: 16px;
  color: #fff;
  font-weight: 800;
  line-height: 2;
}
.about__deco {
  position: absolute;
  width: calc(1000px * var(--vpx-ratio));
  aspect-ratio: 1000/335;
  background: url(../img/mtb/about_deco.png) no-repeat center/cover;
  opacity: 0;
  clip-path: inset(0 0 0 100%);
  pointer-events: none;
  transition: clip-path 1.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}
.about__deco.is-show {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}
.about__deco:first-of-type {
  top: -12%;
  left: -4.7%;
  transform: rotate(-19deg);
  transition-delay: 0.15s;
}
.about__deco:last-of-type {
  bottom: -13%;
  right: -16.3%;
  transform: rotate(147deg);
  transition-delay: 0.35s;
}

@media screen and (max-width: 768px) {
  .about {
    padding-block: 75px;
    background: url(../img/mtb/about_bg_sp.jpg) no-repeat center/cover;
  }
  .about__ttl {
    margin-bottom: 25px;
    font-size: 16px;
  }
  .about__txt {
    font-size: 14px;
  }
  .about__deco {
    width: calc(400px * var(--vpx-ratio));
  }
  .about__deco:first-of-type {
    top: -3.5%;
    left: -27.7%;
  }
  .about__deco:last-of-type {
    bottom: -7.5%;
    right: -26%;
  }
}
.course {
  width: 100%;
  padding-block: 100px;
  background: radial-gradient(circle, #f7efce 0 1.5px, transparent 1.6px) 0 0/23px 23px #fff;
}
.course__lead {
  margin-bottom: 50px;
  font-size: 20px;
  font-weight: 800;
  line-height: 2;
  text-align: center;
}
.course__map {
  width: 75%;
  max-width: 800px;
  margin-bottom: 50px;
  margin-inline: auto;
}
.course__nav {
  margin-bottom: 80px;
}
.course__nav-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 25px;
       column-gap: 25px;
}
.course__nav-btn {
  position: relative;
  display: block;
  padding-block: 16px 30px;
  border-radius: 10px;
  font-size: 16px;
  color: #fff;
  font-weight: 800;
  text-align: center;
  transition: opacity 0.3s ease;
}
.course__nav-btn::before {
  content: "";
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translate(-50%, -50%) rotate(225deg);
  width: 7px;
  aspect-ratio: 1/1;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}
.course__nav {
  /* 初級コース ----- */
}
.course__nav-item--basic .course__nav-btn {
  background: #248D18;
}
.course__nav {
  /* 中級コース ----- */
}
.course__nav-item--middle .course__nav-btn {
  background: #007DEC;
}
.course__nav {
  /* その他 ----- */
}
.course__nav-item--other .course__nav-btn {
  background: #382C23;
}
.course__block {
  margin-bottom: 80px;
}
.course__ttl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 800;
}
.course__ttl img {
  flex: 0 0 37px;
}
.course__list {
  display: grid;
  row-gap: 50px;
}
.course__item-ttl {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px 15px;
  padding: 15px 20px;
  margin-bottom: 26px;
  box-sizing: border-box;
  font-size: 28px;
  color: #fff;
  font-weight: 800;
  line-height: 1.35;
}
.course__item-ttlGroup {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  -moz-column-gap: 15px;
       column-gap: 15px;
  width: 100%;
}
.course__item-num {
  flex: 0 0 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #fff;
  font-size: 24px;
  font-weight: 800;
}
.course__item-box {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.course__item-content {
  flex: 0 0 48.15%;
}
.course__item-txt {
  margin-bottom: 43px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}
.course__item-details {
  display: grid;
  row-gap: 14px;
}
.course__item-detail {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.course__item-term {
  flex: 0 0 23.3%;
  padding-block: 8px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}
.course__item-desc {
  font-size: 16px;
  font-weight: 600;
}
.course__item-img {
  flex: 1;
}
.course__item-img img {
  pointer-events: none;
}
.course {
  /* 初級コース ----- */
}
.course__block--basic .course__ttl,
.course__block--basic .course__item-num {
  color: #248D18;
}
.course__block--basic .course__item-ttl {
  background: #248D18;
}
.course__block--basic .course__item-term {
  background: #DCF8E4;
}
.course {
  /* 中級コース ----- */
}
.course__block--middle .course__ttl,
.course__block--middle .course__item-num {
  color: #007DEC;
}
.course__block--middle .course__item-ttl {
  background: #007DEC;
}
.course__block--middle .course__item-num {
  border-radius: 0;
}
.course__block--middle .course__item-term {
  background: #DFF7F8;
}
.course {
  /* その他 ----- */
}
.course__block--other .course__ttl,
.course__block--other .course__item-num {
  color: #382C23;
}
.course__block--other .course__item-ttl {
  background: #382C23;
}
.course__block--other .course__item-term {
  background: #FAEDC0;
}
.course__facilities {
  display: grid;
  row-gap: 45px;
  margin-bottom: 70px;
}
.course__facility-ttl {
  margin-bottom: 13px;
  font-size: 20px;
  font-weight: 800;
}
.course__facility-txt {
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
}
.course__operations {
  display: grid;
  row-gap: 45px;
}
.course__operation-ttl {
  margin-bottom: 20px;
  font-size: 28px;
  color: #B29000;
  font-weight: 800;
  text-align: center;
}
.course__operation-txt {
  font-size: 20px;
  font-weight: 800;
  line-height: 2;
  text-align: center;
}
.course__operation-notes {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.course__operation-note {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}
.course__operation-txt + .course__operation-notes {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 13px;
       column-gap: 13px;
  margin-top: 16px;
}
.course__operation-table {
  width: 100%;
  max-width: 505px;
  margin: 40px auto 20px;
  border-collapse: separate;
  border-spacing: 4px;
  table-layout: fixed;
  text-align: center;
}
.course__operation-table caption {
  padding-block: 20px;
  margin-bottom: 20px;
  background: #FAEDC0;
  font-size: 20px;
  color: #B29000;
  font-weight: 800;
  text-align: center;
}
.course__operation-table th,
.course__operation-table td {
  padding: 17px 8px;
  box-sizing: border-box;
  font-size: 20px;
  font-weight: 600;
  vertical-align: middle;
}
.course__operation-table small {
  display: inline;
  margin-left: 7px;
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  vertical-align: middle;
}
.course__operation-table thead th:not(:first-child),
.course__operation-table tbody th {
  background: #B29000;
  color: #fff;
}
.course__operation-table td {
  background: #FAEDC0;
}

@media screen and (max-width: 768px) {
  .course {
    padding-block: 50px;
  }
  .course__lead {
    margin-bottom: 25px;
    font-size: 14px;
  }
  .course__map {
    width: 100%;
    margin-bottom: 45px;
  }
  .course__nav {
    margin-bottom: 50px;
  }
  .course__nav-list {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
  .course__nav-btn {
    padding-block: 14px 30px;
  }
  .course__block {
    margin-bottom: 60px;
  }
  .course__ttl {
    margin-bottom: 20px;
    font-size: 24px;
  }
  .course__ttl img {
    flex: 0 0 30px;
  }
  .course__item-ttl {
    gap: 12px 10px;
    padding: 10px;
    margin-bottom: 20px;
    font-size: 20px;
  }
  .course__item-ttlGroup {
    display: flex;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .course__item-num {
    flex: 0 0 28px;
    font-size: 18px;
  }
  .course__item-box {
    display: flex;
    flex-direction: column-reverse;
    row-gap: 20px;
  }
  .course__item-content {
    flex: none;
  }
  .course__item-txt {
    margin-bottom: 37px;
    font-size: 14px;
  }
  .course__item-details {
    display: grid;
    row-gap: 15px;
  }
  .course__item-detail {
    display: flex;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .course__item-term {
    flex: 0 0 22.25%;
    padding-block: 8px;
    font-size: 14px;
  }
  .course__item-desc {
    font-size: 14px;
  }
  .course__item-img {
    flex: none;
  }
  .course__facilities {
    display: grid;
    row-gap: 30px;
    margin-bottom: 45px;
  }
  .course__facility-ttl {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .course__facility-txt {
    font-size: 14px;
  }
  .course__operations {
    display: grid;
    row-gap: 30px;
  }
  .course__operation-ttl {
    margin-bottom: 14px;
    font-size: 18px;
  }
  .course__operation-txt {
    font-size: 16px;
    text-align: start;
  }
  .course__operation-notes {
    width: 100%;
  }
  .course__operation-txt + .course__operation-notes {
    display: block;
  }
  .course__operation-table {
    border-spacing: 3px;
  }
  .course__operation-table caption {
    padding-block: 13px;
    margin-bottom: 15px;
    font-size: 18px;
  }
  .course__operation-table th,
  .course__operation-table td {
    padding: 10px 5px;
    font-size: 14px;
  }
  .course__operation-table small {
    margin-left: 0;
    font-size: 12px;
    line-height: 1.5;
  }
}
@media (hover: hover) {
  .course__nav-btn:hover,
  .course__nav-btn:focus-visible {
    opacity: 0.6;
  }
  .course__operation-btn:hover,
  .course__operation-btn:focus-visible {
    box-shadow: none;
  }
}
.rental {
  width: 100%;
}
.rental__wave {
  width: 100%;
  aspect-ratio: 1440/118.5;
  background: url(../img/mtb/rental_wave_pc.jpg) no-repeat center/cover;
}
.rental__main {
  padding-block: 100px 50px;
  background: #FAEDC0;
}
.rental__block + .rental__block {
  margin-top: 120px;
}
.rental__ttl {
  padding: 17px 60px;
  margin-bottom: 30px;
  font-size: 28px;
  color: #fff;
  font-weight: 800;
}
.rental__list {
  display: grid;
  row-gap: 30px;
  margin-bottom: 50px;
}
.rental__item {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  -moz-column-gap: 95px;
       column-gap: 95px;
  padding: 50px 60px;
  border-radius: 20px;
  background: #fff;
}
.rental__item-content {
  flex: 1;
}
.rental__item-ttl {
  margin-bottom: 23px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
}
.rental__item-txt {
  margin-bottom: 50px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}
.rental__item-details {
  display: grid;
  row-gap: 20px;
}
.rental__item-detail {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.rental__item-term {
  flex: 0 0 120px;
  padding-block: 10px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}
.rental__item-desc {
  flex: 1;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}
.rental__item-slider {
  flex: 0 0 380px;
  opacity: 0;
  visibility: hidden;
  overflow-x: hidden;
  overflow-y: visible;
  transition: opacity 0.3s ease, visibillity 0.3s ease;
}
.rental__item-slider.is-slick-ready {
  opacity: 1;
  visibility: visible;
}
.rental__item-slides {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}
.rental__item-img {
  width: 100%;
}
.rental__item-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
  padding-block: 5px;
  margin-top: 30px;
}
.rental__item-nav .slick-arrow {
  position: static;
  transform: none;
  width: 23px;
  aspect-ratio: 1/1;
  border-top: 6px solid;
  border-left: 6px solid;
}
.rental__item-nav .slick-prev {
  transform: rotate(-45deg);
}
.rental__item-nav .slick-next {
  transform: rotate(135deg);
}
.rental__item-nav .slick-dots {
  display: flex;
  gap: 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 0;
}
.rental__item-nav .slick-dots li {
  width: 12px;
}
.rental__subttl {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 27px;
  font-size: 20px;
  font-weight: 800;
}
.rental__subttl::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  transform: translateY(-50%);
  width: 1em;
  height: 2px;
}
.rental__price {
  margin-bottom: 67px;
}
.rental__price-table {
  width: 100%;
  max-width: 505px;
  margin-bottom: 27px;
  border-collapse: separate;
  border-spacing: 5px;
  table-layout: fixed;
  text-align: center;
}
.rental__price-table th,
.rental__price-table td {
  padding: 17px 8px;
  box-sizing: border-box;
  font-size: 20px;
  font-weight: 600;
  vertical-align: middle;
}
.rental__price-table small {
  display: inline;
  margin-left: 7px;
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  vertical-align: middle;
}
.rental__price-table thead th:not(:first-child),
.rental__price-table tbody th {
  color: #fff;
}
.rental__notes {
  margin-bottom: 40px;
}
.rental__note {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}
.rental__btn {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 800;
  transition: opacity 0.3s ease;
}
.rental__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%) rotate(45deg);
  width: 7px;
  aspect-ratio: 1/1;
  border-top: 2px solid;
  border-right: 2px solid;
}
.rental__set-list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.rental__set-item {
  width: min((100% - 150px) / 6, 150px);
}
.rental__set-name {
  margin-bottom: 7px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}
.rental__set-img {
  border-radius: 20px;
  pointer-events: none;
}
.rental__block--regular .rental__ttl {
  background: #B29000;
}
.rental__block--regular .rental__item-ttl {
  color: #B29000;
}
.rental__block--regular .rental__item-term {
  background: #FAEDC0;
}
.rental__block--regular .rental__item-nav .slick-arrow {
  border-color: #B29000;
}
.rental__block--regular .rental__item-nav .slick-dots li.slick-active button {
  background: #B29000;
}
.rental__block--regular .rental__subttl {
  color: #B29000;
}
.rental__block--regular .rental__subttl::before {
  background: #B29000;
}
.rental__block--regular .rental__price-table thead th:not(:first-child),
.rental__block--regular .rental__price-table tbody th {
  background: #B29000;
}
.rental__block--regular .rental__price-table td {
  background: #fff;
}
.rental__block--regular .rental__btn {
  color: #B29000;
}
.rental__block--regular .rental__btn::before {
  border-color: #B29000;
}
.rental__block--highend .rental__ttl {
  background: #382C23;
}
.rental__block--highend .rental__item-ttl {
  color: #382C23;
}
.rental__block--highend .rental__item-term {
  background: #E6DAD0;
}
.rental__block--highend .rental__item-nav .slick-arrow {
  border-color: #382C23;
}
.rental__block--highend .rental__item-nav .slick-dots li.slick-active button {
  background: #382C23;
}
.rental__block--highend .rental__subttl {
  color: #382C23;
}
.rental__block--highend .rental__subttl::before {
  background: #382C23;
}
.rental__block--highend .rental__price-table thead th:not(:first-child),
.rental__block--highend .rental__price-table tbody th {
  background: #382C23;
}
.rental__block--highend .rental__price-table td {
  background: #E6DAD0;
}
.rental__block--highend .rental__btn {
  color: #382C23;
}
.rental__block--highend .rental__btn::before {
  border-color: #382C23;
}
.rental__gallery {
  position: relative;
  padding-block: calc(100px * var(--vpx-ratio)) calc(75px * var(--vpx-ratio));
  background: url(../img/mtb/rental_gallery_bg_pc.jpg) no-repeat top center/cover;
  overflow: hidden;
}
.rental__gallery-slider {
  position: relative;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibillity 0.3s ease;
}
.rental__gallery-slider.is-slick-ready {
  opacity: 1;
  visibility: visible;
}
.rental__gallery-slide {
  padding-right: calc(50px * var(--vpx-ratio));
}
.rental__gallery-img {
  border-radius: calc(50px * var(--vpx-ratio));
  pointer-events: none;
}
.rental__gallery-slide:nth-child(3n+1) .rental__gallery-img {
  width: calc(350px * var(--vpx-ratio));
  margin-top: calc(45px * var(--vpx-ratio));
}
.rental__gallery-slide:nth-child(3n+2) .rental__gallery-img {
  width: calc(300px * var(--vpx-ratio));
  margin-top: calc(145px * var(--vpx-ratio));
}
.rental__gallery-slide:nth-child(3n) .rental__gallery-img {
  width: calc(250px * var(--vpx-ratio));
}
.rental__gallery-deco {
  position: absolute;
  z-index: 5;
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}
.rental__gallery-deco:first-of-type {
  top: 11.29%;
  left: 11.11%;
  width: calc(240.5px * var(--vpx-ratio));
  aspect-ratio: 240.5/119;
  animation: rental-gallery-cloud-01 10s ease-in-out infinite alternate;
  background-image: url(../img/mtb/rental_gallery_deco01.png);
}
.rental__gallery-deco:last-of-type {
  top: 4.83%;
  right: 19.44%;
  width: calc(161px * var(--vpx-ratio));
  aspect-ratio: 161/71;
  animation: rental-gallery-cloud-02 12s ease-in-out infinite alternate;
  background-image: url(../img/mtb/rental_gallery_deco02.png);
}

@media screen and (max-width: 768px) {
  .rental__wave {
    aspect-ratio: 375/31;
    background: url(../img/mtb/rental_wave_sp.jpg) no-repeat center/cover;
  }
  .rental__main {
    padding-block: 50px;
  }
  .rental__block + .rental__block {
    margin-top: 65px;
  }
  .rental__ttl {
    padding: 16px 20px;
    margin-bottom: 25px;
    font-size: 18px;
  }
  .rental__list {
    margin-bottom: 30px;
  }
  .rental__item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 35px;
    padding: 30px 20px;
    border-radius: 10px;
  }
  .rental__item-ttl {
    order: 0;
    width: 100%;
    margin-bottom: 20px;
    font-size: 18px;
  }
  .rental__item-slider {
    flex: none;
    order: 1;
    max-width: 297.5px;
  }
  .rental__item-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 30px;
         column-gap: 30px;
    padding-block: 4px;
    margin-top: 18px;
  }
  .rental__item-nav .slick-arrow {
    width: 17px;
    border-top: 3px solid;
    border-left: 3px solid;
  }
  .rental__item-nav .slick-dots {
    display: flex;
    gap: 15px;
  }
  .rental__item-nav .slick-dots li {
    width: 10px;
  }
  .rental__item-content {
    flex: none;
    order: 2;
  }
  .rental__item-txt {
    margin-bottom: 25px;
    font-size: 14px;
  }
  .rental__item-details {
    display: grid;
    row-gap: 15px;
  }
  .rental__item-detail {
    display: flex;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .rental__item-term {
    flex: 0 0 75px;
    padding-block: 6px;
    font-size: 14px;
  }
  .rental__item-desc {
    font-size: 14px;
  }
  .rental__subttl {
    margin-bottom: 14px;
    font-size: 18px;
  }
  .rental__subttl::before {
    top: 9px;
  }
  .rental__price {
    margin-bottom: 30px;
  }
  .rental__price-table {
    margin-bottom: 20px;
    border-spacing: 3px;
  }
  .rental__price-table th,
  .rental__price-table td {
    padding: 10px 5px;
    font-size: 14px;
  }
  .rental__price-table small {
    margin-left: 0;
    font-size: 12px;
    line-height: 1.5;
  }
  .rental__notes {
    margin-bottom: 25px;
  }
  .rental__btn {
    font-size: 16px;
  }
  .rental__btn::before {
    right: -13px;
    width: 5px;
  }
  .rental__set-list {
    display: flex;
    gap: 20px 8px;
  }
  .rental__set-item {
    width: min((100% - 16px) / 3, 210px);
  }
  .rental__set-name {
    margin-bottom: 5px;
    font-size: 13px;
  }
  .rental__set-img {
    width: 90%;
    margin-inline: auto;
    border-radius: 10px;
  }
  .rental__gallery {
    padding-block: calc(50px * var(--vpx-ratio)) calc(20px * var(--vpx-ratio));
    background: url(../img/mtb/rental_gallery_bg_sp.jpg) no-repeat top center/cover;
  }
  .rental__gallery-slide {
    padding-right: calc(25px * var(--vpx-ratio));
  }
  .rental__gallery-img {
    border-radius: calc(25px * var(--vpx-ratio));
  }
  .rental__gallery-slide:nth-child(3n+1) .rental__gallery-img {
    width: calc(175px * var(--vpx-ratio));
    margin-top: calc(23px * var(--vpx-ratio));
  }
  .rental__gallery-slide:nth-child(3n+2) .rental__gallery-img {
    width: calc(150px * var(--vpx-ratio));
    margin-top: calc(73px * var(--vpx-ratio));
  }
  .rental__gallery-slide:nth-child(3n) .rental__gallery-img {
    width: calc(125px * var(--vpx-ratio));
  }
  .rental__gallery-deco:first-of-type {
    top: 14.08%;
    left: -5.33%;
    width: calc(120px * var(--vpx-ratio));
  }
  .rental__gallery-deco:last-of-type {
    top: 6.03%;
    right: 5.33%;
    width: calc(80px * var(--vpx-ratio));
  }
}
@media (hover: hover) {
  .rental__btn:hover,
  .rental__btn:focus-visible {
    opacity: 0.6;
  }
}
@keyframes rental-wave-move {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
@keyframes rental-gallery-cloud-01 {
  0% {
    transform: translate3d(0, 0, 0);
  }
  28% {
    transform: translate3d(7%, -8%, 0);
  }
  63% {
    transform: translate3d(-6%, 6%, 0);
  }
  100% {
    transform: translate3d(5%, -5%, 0);
  }
}
@keyframes rental-gallery-cloud-02 {
  0% {
    transform: translate3d(0, 0, 0);
  }
  34% {
    transform: translate3d(-8%, 7%, 0);
  }
  72% {
    transform: translate3d(7%, -8%, 0);
  }
  100% {
    transform: translate3d(-5%, 5%, 0);
  }
}
.rule {
  width: 100%;
  padding-block: 100px;
  background: #fff;
}
.rule__list {
  display: grid;
  row-gap: 60px;
}
.rule__ttl {
  margin-bottom: 13px;
  font-size: 20px;
  color: #B29000;
  font-weight: 800;
  line-height: 1.35;
}
.rule__box {
  width: 100%;
  aspect-ratio: 1070/400;
  padding: 30px;
  border: 1px solid #979797;
  overflow-x: visible;
  overflow-y: scroll;
}
.rule__box > * + * {
  margin-top: 1em;
}
.rule__subttl + .rule__subttl, .rule__subttl + .rule__txt {
  margin-top: 0;
}
.rule__subttl, .rule__txt {
  font-size: 16px;
  line-height: 1.35;
}
.rule__subttl {
  font-weight: 800;
}
.rule__txt {
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .rule {
    padding-block: 50px;
  }
  .rule__list {
    display: grid;
    row-gap: 40px;
  }
  .rule__ttl {
    margin-bottom: 10px;
    font-size: 18px;
  }
  .rule__box {
    aspect-ratio: 375/300;
    padding: 15px;
  }
  .rule__subttl, .rule__txt {
    font-size: 14px;
  }
}
.access {
  width: 100%;
  padding-block: 100px;
  background: #FAEDC0;
}
.access__body {
  padding: 57px 80px;
  background: #fff;
}
.access__lead {
  margin-bottom: 23px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}
.access__map {
  width: 100%;
  aspect-ratio: 910/300;
  margin-bottom: 45px;
}
.access__btn {
  display: block;
  width: 100%;
  max-width: 347px;
  padding-block: 20px;
  margin-inline: auto;
  border: 2px solid #B39000;
  border-radius: 10px;
  background: #FFF36E;
  box-shadow: 0 2px 0 #B39000;
  font-size: 16px;
  color: #B39000;
  font-weight: 800;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

@media screen and (max-width: 768px) {
  .access {
    padding-block: 50px;
  }
  .access__body {
    padding: 27px 20px;
  }
  .access__map {
    aspect-ratio: 594/590;
    margin-bottom: 30px;
  }
  .access__btn {
    padding-block: 15px;
    border-radius: 5px;
    font-size: 16px;
  }
}
@media (hover: hover) {
  .access__btn:hover,
  .access__btn:focus-visible {
    box-shadow: none;
  }
}
/*# sourceMappingURL=style.css.map */
