@charset "UTF-8";

:root {
  --color01: #000;
  --color02: #00a63c;
  --color03: #10aef4;
  --color04: #ed6d34;
  --color05: #e8380d;
  --color06: #fff100;
  --bg01: #fff4e5;
  --bg02: #002596;
  --bg03: #02a63c;
  --bg04: #62ccff;
  --bg05: rgba(0, 37, 150, 0.2);
  --bg06: #49494a;
  --font1: "游ゴシック", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic", "メイリオ", "Meiryo", "Noto Sans", "Noto Sans CJK JP", "system-ui", sans-serif;
  --spacing: 0.1em;
  --transition: all 0.5s ease;
  --opacity: 0.6;
  --menu-height: 52px;
}

/*----------------------------------
  共通
----------------------------------*/
a {
  transition: var(--transition);
  opacity: 1;
}

a:hover {
  opacity: var(--opacity);
}

body {
  font-family: var(--font1);
  position: relative;
}

.container {
  box-sizing: content-box;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  z-index: 2;
}

.content-title {
  color: #fff;
  font-size: clamp(10px, 3vw, 24px);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
}

.text-color__01 {
  color: var(--color02);
}

.text-color__02 {
  color: var(--color03);
}

.text-color__03 {
  color: var(--color04);
}

.text-color__04 {
  color: var(--color05);
}

.list-item {
  font-size: clamp(10px, 2.25vw, 18px);
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: 0;
  padding-left: 1em;
  position: relative;
}

.list-item::before {
  background-color: var(--color01);
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 0.1em;
  left: 0;
  height: 0.9em;
  width: 0.9em;
}

.shadow {
  -webkit-filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
}

summary {
  cursor: pointer;
  display: block;
  font-size: clamp(10px, 2.25vw, 18px);
  list-style-type: none;
  position: relative;
}

summary::-webkit-details-marker {
  display: none;
}

summary::before,
summary::after {
  background-color: #fff;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s ease;
  left: auto;
  right: 3.75%;
  height: 2px;
  width: 0.88em;
}

summary::before {
  transform: translateY(-50%);
}

summary::after {
  transform: translateY(-50%) rotate(-90deg);
}

details[open] summary::before,
details[open] summary::after {
  transform: translateY(-50%);
}

.accordion-sp summary::before,
.accordion-sp summary::after {
  display: none;
}

summary .content-title {
  font-size: clamp(10px, 2.25vw, 18px);
  padding-top: 0.61em;
  padding-bottom: 0.61em;
}

.sp {
  display: none;
}

/*----------------------------------
  header
----------------------------------*/
.header {
  align-items: center;
  background-color: #fff;
  border-bottom: solid 2px #21ac4d;
  display: flex;
  position: fixed;
  height: 72px;
  padding-inline: 20px;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}

.header-logo {
  max-width: 605px;
  width: 32.181%;
}

/*----------------------------------
  main
----------------------------------*/
/* mv */
.mv {
  overflow: hidden;
  padding-top: 72px;
  position: relative;
}

.mv-moive {
  position: absolute;
  top: 72px;
  left: 0;
  height: calc(100% - 72px);
  overflow: hidden;
  width: 100%;
  z-index: -1;
}

.mv-moive video {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  height: 100%;
  width: 100%;
}

.mv-header {
  overflow: hidden;
  position: relative;
}

.mv-note {
  padding-top: 1.25%;
  margin-left: 1.25%;
  width: 18.25%;
}

.mv-title {
  margin-top: 2.75%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 79.25%;
  z-index: 2;
}

.mv-item {
  margin-top: -4.625%;
  margin-left: auto;
  padding-bottom: 24.125%;
  width: 96.25%;
}

/* desc */
.desc {
  position: relative;
}

.desc::before {
  background-color: var(--bg01);
  content: "";
  position: absolute;
  top: clamp(10px, 20.25vw, 170px);
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.desc-duration {
  margin-top: -21.25%;
  margin-left: 5%;
}

.desc-duration__title {
  align-items: center;
  background-color: var(--bg02);
  border-radius: 0.937em;
  color: #fff;
  display: flex;
  justify-content: center;
  font-size: clamp(10px, 2vw, 16px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  height: 1.875em;
  padding-left: 0.875em;
  padding-right: 0.875em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.desc-duration__date {
  margin-top: 1.75%;
  width: 53.5%;
}

.desc-duration__point {
  margin-top: 4%;
  width: 57%;
}

.desc-reservation {
  align-items: center;
  background-color: var(--bg02);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  margin-top: 4.375%;
  padding: 3.125%;
}

.desc-reservation__text {
  color: #fff;
  font-size: clamp(10px, 3vw, 24px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.33;
}

.desc-reservation__btn {
  width: 33.333%;
}

/* courses */
.courses {
  background-color: var(--bg01);
}

.course-index {
  display: flex;
  justify-content: space-between;
  margin-top: 5%;
}

.course-index__item {
  width: 47.5%;
}

.course-item {
  border-radius: 10px;
  padding-bottom: 2.5%;
}

.course-title {
  background-color: #fff;
  border-radius: 10px 10px 0 0;
  border: 5px solid var(--color02);
  padding-top: 0.54em;
  padding-bottom: 0.54em;
}

.course-subtitle {
  display: inline-block;
  margin-right: 1em;
  width: 3.8em;
}

.course-desc {
  margin-top: 3%;
}

.course-desc__title {
  margin-left: auto;
  margin-right: auto;
  width: 68.75%;
}

.course-desc__text {
  color: #fff;
  font-size: clamp(10px, 2.5vw, 20px);
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
}

.course-condition {
  background-color: #fff;
  border-radius: 4px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1.25%;
  padding-left: 1.25%;
  padding-right: 2.5%;
  padding-bottom: 2.75%;
  position: relative;
  width: 90%;
}

.course-condition:not(:first-child) {
  margin-top: 11.25%;
}

.course-condition:not(:first-child)::before {
  aspect-ratio: 1 / 1;
  background-image: url(../images/plus.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
  top: 0;
  left: 50%;
  transform: translate(-50%, -140%);
  position: absolute;
  width: 6.944%;
}

.course-condition__subtitle {
  align-items: center;
  background-color: var(--color02);
  border-radius: 1.11em;
  color: #fff;
  display: flex;
  justify-content: center;
  font-size: clamp(10px, 2.25vw, 18px);
  font-weight: 700;
  letter-spacing: 0;
  height: 1.66em;
  padding-left: 1.27em;
  padding-right: 1.27em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.course-condition__title {
  font-size: clamp(10px, 3.25vw, 26px);
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  margin-top: -1.449%;
}

.course-condition__title sup {
  font-size: clamp(10px, 2.25vw, 18px);
  vertical-align: super;
}

.course-condition__btns {
  display: flex;
  justify-content: space-between;
  margin-top: 4.347%;
}

.course-condition__btn {
  margin-top: 3.478%;
  margin-left: auto;
  margin-right: auto;
  width: 47.916%;
}

.course-condition__btns .course-condition__btn {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  width: 47.101%;
}

.course-condition__note {
  font-size: clamp(10px, 2.25vw, 18px);
  font-weight: 500;
  margin-top: 2.898%;
  letter-spacing: -0.05em;
  text-align: center;
}

.course-condition__text {
  font-size: clamp(10px, 2.5vw, 20px);
  font-weight: 700;
  letter-spacing: -0.05em;
  margin-top: 4.347%;
  text-align: center;
}

.course-condition__text .note {
  display: inline-block;
  font-size: clamp(10px, 2vw, 16px);
  font-weight: 500;
  padding-top: 0.56em;
}

.course-note {
  color: #fff;
  font-size: clamp(10px, 2.25vw, 18px);
  font-weight: 700;
  line-height: 1.11;
  letter-spacing: 0;
  text-align: center;
  margin-top: 5%;
}

.course-btn {
  margin-top: 5%;
  margin-left: auto;
  margin-right: auto;
  width: 37.5%;
}

.course-btn:last-child {
  padding-bottom: 5%;
}

#course_01 {
  background-color: var(--bg03);
  margin-top: 3.75%;
}

#course_01 .course-conditions {
  margin-top: 3.75%;
}

#course_01 .course-condition__02::after,
#course_02 .course-condition__01::after {
  background-image: url(../images/condition-pic.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
  top: 0;
  right: 4.027%;
  transform: translateY(-24.3%);
  position: absolute;
  padding-top: 20.138%;
  width: 11.527%;
}

#course_01 .course-condition__03 .course-condition__title,
#course_02 .course-condition__02 .course-condition__title {
  align-items: center;
  display: flex;
  justify-content: center;
}

.course-condition__title a {
  display: block;
  margin-right: 0.38em;
  width: 6.53em;
}

#course_02 {
  background-color: var(--color03);
  margin-top: 5%;
}

#course_02 .course-conditions {
  margin-top: 8.75%;
}

#course_02 .course-condition__subtitle {
  background-color: var(--color03);
}

#course_02 .course-title {
  border: 5px solid var(--color03);
}

.course-modal {
  display: none;
  padding-bottom: 3.256%;
  position: relative;
}

.modal-wrap.show .course-modal {
  display: block;
}

.course-modal__slider {
  padding-bottom: 6.976%;
}

.course-modal__num {
  aspect-ratio: 1 / 1;
  align-items: center;
  background-color: var(--color02);
  border: 5px solid #fff;
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: clamp(21px, 3.58vw, 42px);
  font-weight: 700;
  letter-spacing: 0;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(30%, 30%);
  width: 2.38em;
}

.course-modal__title {
  align-items: center;
  background-color: var(--color02);
  border-radius: 30px 30px 0 0;
  color: #fff;
  justify-content: center;
  display: flex;
  font-size: clamp(14px, 2.39vw, 28px);
  font-weight: 700;
  flex-direction: column;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  height: 3.57em;
}

.course-modal__title span {
  font-size: clamp(10px, 1.36vw, 16px);
  font-weight: 500;
  letter-spacing: -0.05em;
  margin-top: 0.665em;
}

.course-modal__pic {
  margin-left: auto;
  margin-right: auto;
}

.course-modal__note {
  font-size: clamp(10px, 1.36vw, 16px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.37;
  text-align: center;
  margin-top: 3.72%;
}

.course-modal__link {
  display: block;
  font-size: clamp(16px, 2.82vw, 33px);
  font-weight: 700;
  letter-spacing: -0.05em;
  margin-top: 5.116%;
  margin-left: auto;
  margin-right: auto;
  text-decoration: underline;
  text-align: center;
}

.slide__01 .course-modal__pic {
  margin-top: 6.162%;
  width: 18.651%;
}

.slide__01 .course-modal__btn {
  cursor: pointer;
  margin-top: -1.86%;
  margin-left: auto;
  margin-right: auto;
  width: 33.976%;
}

.slide__01 .course-modal__qr {
  background-color: #fff;
  pointer-events: none;
  padding-top: 12%;
  padding-bottom: 5%;
  position: absolute;
  opacity: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.3s ease;
  width: 100%;
  z-index: 9;
}

.slide__01 .course-modal__qr.is-show {
  display: block;
  pointer-events: auto;
  opacity: 1;
}

.slide__01 .course-modal__qr__text {
  font-size: clamp(12px, 2.05vw, 24px);
  font-weight: 700;
  letter-spacing: -0.05em;
  text-align: center;
}

.slide__01 .course-modal__qr__img {
  margin-top: 2%;
  margin-left: auto;
  margin-right: auto;
  width: 36.046%;
}

.slide__01 .course-modal__qr__close {
  border: 3px solid #d3d3d3;
  border-radius: 1em;
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: clamp(12px, 2.05vw, 24px);
  font-weight: 700;
  justify-content: center;
  letter-spacing: -0.05em;
  margin-top: 2%;
  margin-left: auto;
  margin-right: auto;
  height: 2em;
  width: 10em;
}

.slide__02 .course-modal__pic {
  margin-top: 6.162%;
  width: 31.441%;
}

.slide__03 .course-modal__pic {
  margin-top: 6.162%;
  width: 47.325%;
}

.course-modal__slider .swiper-button-next,
.course-modal__slider .swiper-button-prev {
  aspect-ratio: 1 / 1;
  height: auto;
  width: 5.465%;
}

.course-modal__slider .swiper-button-next {
  right: 5.232%;
}

.course-modal__slider .swiper-button-prev {
  left: 5.232%;
}

.course-modal__slider .swiper-button-next.swiper-button-disabled,
.course-modal__slider .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}

.course-modal__slider .swiper-button-next:after,
.course-modal__slider .swiper-button-prev:after {
  background-color: #c3c3c3;
  content: "";
  -webkit-mask-image: url('data:image/svg+xml;utf-8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 46.25 47.78"><path d="M900.532,669.608a4,4,0,0,1,0-5.656l13.062-13.062H885a4,4,0,0,1,0-8h28.594l-13.062-13.062a4,4,0,1,1,5.656-5.656l19.89,19.89a4,4,0,0,1,0,5.656l-19.89,19.89a4,4,0,0,1-5.656,0Z" transform="translate(-881 -623)" fill="%23c3c3c3"/></svg>');
  mask-image: url('data:image/svg+xml;utf-8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 46.25 47.78"><path d="M900.532,669.608a4,4,0,0,1,0-5.656l13.062-13.062H885a4,4,0,0,1,0-8h28.594l-13.062-13.062a4,4,0,1,1,5.656-5.656l19.89,19.89a4,4,0,0,1,0,5.656l-19.89,19.89a4,4,0,0,1-5.656,0Z" transform="translate(-881 -623)" fill="%23c3c3c3"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  height: 100%;
  width: 100%;
}

.course-modal__slider .swiper-button-prev:after {
  transform: rotate(180deg);
}

.course-modal__slider .swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  top: auto;
  bottom: 0;
}

.course-modal__slider .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.course-modal__slider .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  aspect-ratio: 1 / 1;
  background-color: #fff;
  border: 2px solid var(--color02);
  margin-left: 0.697%;
  margin-right: 0.697%;
  opacity: 1;
  height: auto;
  width: 3.023%;
}

.course-modal__slider .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active,
.course-modal__slider .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--color02);
}

.course-modal__02 .course-modal__title {
  background-color: var(--bg06);
}

.course-modal__02 .course-modal__point {
  background-color: var(--bg02);
  color: #fff;
  border-radius: 0.89em;
  font-size: clamp(14px, 2.47vw, 29px);
  font-weight: 700;
  line-height: 1.37;
  margin-top: 3.139%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1em;
  padding-bottom: 1em;
  position: relative;
  text-align: center;
  width: 37.209%;
}

.course-modal__02 .course-modal__point::after {
  background: var(--bg02);
  content: "";
  -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  position: absolute;
  left: 50%;
  bottom: 1px;
  transform: translate(-50%, 100%);
  height: 0.8em;
  width: 1.2em;
}

.course-modal__02 .course-modal__btn {
  margin-top: 5.116%;
  margin-left: auto;
  margin-right: auto;
  width: 55.813%;
}

.course-modal__02 .course-modal__text {
  color: var(--color02);
  font-size: clamp(12px, 2.05vw, 24px);
  font-weight: 700;
  line-height: 1.5;
  margin-top: 2.674%;
  text-align: center;
}

.course-modal__02 .course-modal__note {
  margin-top: 2.674%;
}

.course-modal__02 .modal__note__02 {
  margin-top: 0;
}

.course-modal__02 .course-modal__text a {
  text-decoration: underline;
  color: var(--color02);
}

/* transactions */
.transactions {
  background-color: var(--bg04);
}

.transactions-title {
  background-color: var(--bg02);
  padding-top: 0.54em;
  padding-bottom: 0.54em;
}

.transactions-copy {
  padding-top: clamp(20px, 5vw, 40px);
  position: relative;
  z-index: 0;
}

.transactions-copy::before {
  background-color: #fff;
  content: "";
  position: absolute;
  height: 94.435%;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

.transactions-copy__text {
  margin-left: auto;
  margin-right: auto;
  width: clamp(270px, 67.25vw, 538px);
}

.transactions-items {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 5.25%;
}

.transactions-item {
  width: 48.75%;
}

.transactions-item:nth-child(5),
.transactions-item:nth-child(6),
.transactions-item:nth-child(7) {
  width: 31.625%;
}

.transactions-item:nth-child(6) {
  padding-top: 0.5%;
}

.transactions-detail {
  background-color: #fff;
  border-radius: 10px;
  margin-top: 4.5%;
  padding-top: 3.125%;
  padding-left: 2.5%;
  padding-right: 2.5%;
  padding-bottom: 5%;
}

.transactions-detail summary {
  cursor: auto;
}

.transactions-detail__title {
  color: var(--bg02);
  font-size: clamp(10px, 3vw, 24px);
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
}

.transactions-detail__item {
  margin-top: 3.947%;
}

.transactions-detail__item:first-child {
  margin-top: 2.631%;
}

.transactions-detail__item__title {
  background-color: var(--bg02);
  color: #fff;
  font-size: clamp(10px, 2.5vw, 20px);
  font-weight: 700;
  letter-spacing: 0;
  padding-top: 0.5em;
  padding-left: 1em;
  padding-bottom: 0.5em;
}

.transactions-detail__text {
  font-size: clamp(10px, 2.25vw, 18px);
  font-weight: 700;
  line-height: 1.33;
  letter-spacing: 0;
  margin-top: 2.631%;
}

.transactions-detail__text sup {
  font-size: clamp(10px, 1.75vw, 14px);
  vertical-align: super;
}

.transactions-detail__note {
  font-size: clamp(10px, 2.25vw, 18px);
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: 0;
  margin-top: 2.631%;
}

.transactions-detail__target {
  align-items: center;
  background-color: var(--bg05);
  border-radius: 1em;
  color: var(--bg02);
  display: flex;
  font-size: clamp(10px, 2.5vw, 20px);
  font-weight: 700;
  justify-content: center;
  margin-top: 2.631%;
  margin-left: auto;
  margin-right: auto;
  height: 2em;
  width: 25em;
}

.transactions-detail__target__note {
  align-items: center;
  border-radius: 1em;
  border: 2px solid var(--bg06);
  display: flex;
  font-size: clamp(10px, 2.5vw, 20px);
  font-weight: 700;
  justify-content: center;
  margin-top: 1.315%;
  margin-left: auto;
  margin-right: auto;
  height: 2em;
  width: 25em;
}

.transactions-text {
  font-size: clamp(10px, 2.25vw, 18px);
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 2.5%;
  text-align: center;
  padding-bottom: 6.25%;
}

/* info */
.info-title {
  background-color: var(--bg02);
  padding-top: 0.54em;
  padding-bottom: 0.54em;
}

.info-item {
  margin-top: 5%;
}

.info-item:first-child {
  margin-top: 3.75%;
}

.info-item__title {
  align-items: center;
  background-color: var(--color03);
  border-radius: 0.9em;
  color: #fff;
  display: flex;
  font-size: clamp(10px, 2.5vw, 20px);
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0;
  height: 1.8em;
}

.info-item__text {
  font-size: clamp(14px, 3.5vw, 28px);
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  margin-top: 1.875%;
}

.info-item__text .info-course {
  display: inline-block;
  line-height: 1;
  width: 3.8em;
}

.info-item__detail {
  font-size: clamp(10px, 2.25vw, 18px);
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: 0;
  margin-top: 2.5%;
  text-align: center;
}

.info-item__note {
  margin-top: 2.5%;
}

.info-item__note__title {
  font-size: clamp(10px, 2.25vw, 18px);
  font-weight: 700;
  line-height: 1.33;
  letter-spacing: 0;
}

.list-item.text-color__04::before {
  background-color: var(--color05);
}

.info-item__row {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin-top: 5%;
}

.info-item__row .info-item {
  margin-top: 0;
  width: 48.75%;
}

.info-item__table {
  margin-top: 2.5%;
  margin-left: auto;
  margin-right: auto;
  width: 97.5%;
}

.info-item__04 .info-item__detail {
  font-size: clamp(10px, 2.5vw, 20px);
}

.info-item__05 .info-item__text {
  font-size: clamp(10px, 3vw, 24px);
}

.info-item__06 .info-item__detail {
  font-size: clamp(10px, 2.5vw, 20px);
  margin-top: 1.25%;
}

.info-item__07 .info-item__text {
  font-size: clamp(10px, 2.25vw, 18px);
  font-weight: 500;
  line-height: 1.33;
  text-align: left;
}

/* conditions */
.conditions-title {
  background-color: var(--bg02);
  border-radius: 0.41em;
  margin-top: 7%;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
}

.conditions-list {
  margin-top: 2.5%;
}

.conditions-banner {
  margin-top: 5.25%;
}

.conditions-banner__cap {
  background-color: var(--color03);
  color: #fff;
  border-radius: 1em;
  font-size: clamp(10px, 2.5vw, 20px);
  font-weight: 400;
  line-height: 1.4;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1em;
  padding-bottom: 1em;
  position: relative;
  text-align: center;
  width: 70%;
}

.conditions-banner__cap strong {
  font-size: clamp(10px, 3vw, 24px);
  font-weight: 700;
}

.conditions-banner__cap::after {
  background: var(--color03);
  content: "";
  -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
  height: 0.8em;
  width: 1.2em;
}

.conditions-banner__img {
  margin-top: 4%;
  margin-left: auto;
  margin-right: auto;
  width: 41.875%;
}

/* precautions */
.precautions-item:first-child {
  margin-top: 2.5%;
}

.precautions-title {
  background-color: var(--bg03);
  border-bottom: 2px solid #fff;
}

.precautions-body {
  padding: 2.5%;
}

.precautions .list-item {
  text-indent: -0.5em;
  padding-left: 0.5em;
}

.precautions .list-item.no-indent {
  text-indent: 0;
  padding-left: 0;
}

.precautions .list-item::before {
  display: none;
}

.precautions-note {
  display: block;
  font-size: clamp(10px, 2.25vw, 18px);
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: 0;
  margin-top: 2.5%;
}

.precautions-text a {
  color: var(--color05);
}

/* detail */
.detail-items {
  border-top: 1px solid #707070;
  margin-top: 2.5%;
  padding-top: 2.5%;
  padding-bottom: 2.5%;
}

.detail-item {
  display: flex;
}

.detail-title,
.detail-text {
  font-size: clamp(10px, 2.25vw, 18px);
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: 0;
}

.detail-title {
  width: 5em;
}

/*----------------------------------
  footer
----------------------------------*/
.footer {
  padding: 20px 0;
  background-color: #21ac4d;
  color: #fff;
  text-align: center;
  margin: 0 calc(50% - 50vw);
  margin-bottom: var(--menu-height);
  overflow: hidden;
  width: 100vw;
}

/*----------------------------------
  その他
----------------------------------*/
/* menu */
.menu {
  box-sizing: content-box;
  max-width: 800px;
  padding-left: 20px;
  padding-right: 20px;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  width: 100%;
  z-index: 9;
}

.menu-items {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin-left: auto;
  margin-right: 2.5%;
  width: 46.625%;
}

.menu-item {
  width: 48.257%;
}

/*----------------------------------
  loading animation
----------------------------------*/
body.is-scroll-locked {
  overflow: hidden;
}

.loading-item {
  opacity: 0;
}

.loading-item.is-active {
  opacity: 1;
}

.mv-title {
  -webkit-animation: titleBounce 0.9s ease-in forwards;
  animation: titleBounce 0.9s ease-in forwards;
  transform-origin: center;
  transform: scale(0.4);
  opacity: 0;
  will-change: transform;
}

@-webkit-keyframes titleBounce {
  0% {
    transform: scale(0.4);
  }
  30%,
  50%,
  70% {
    transform: scale(1);
    opacity: 1;
  }
  40% {
    transform: scale(0.85);
    opacity: 1;
  }
  60% {
    transform: scale(0.95);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes titleBounce {
  0% {
    transform: scale(0.4);
  }
  30%,
  50%,
  70% {
    transform: scale(1);
    opacity: 1;
  }
  40% {
    transform: scale(0.85);
    opacity: 1;
  }
  60% {
    transform: scale(0.95);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.mv-note,
.mv-item,
.content-wrap,
.menu {
  transition: opacity 0.5s ease-in-out;
}

/*----------------------------------
  モーダル
----------------------------------*/
.open-modal {
  cursor: pointer;
}

body.hidden {
  overflow: hidden;
}

.modal-container {
  align-items: center;
  background-color: rgba(197, 197, 197, 0.8);
  justify-content: center;
  opacity: 0;
  position: fixed;
  transition: all 0.5s 0s ease;
  top: 0;
  left: 0;
  height: 100%;
  visibility: hidden;
  width: 100%;
  z-index: 99;
}

.modal-wrap {
  background-color: #fff;
  border-radius: 30px;
  display: none;
  position: relative;
  width: clamp(564px, 73.504vw, 860px);
}

.modal-wrap.show {
  display: block;
}

.modal-content {
  border-radius: 30px;
  max-width: 100%;
  max-height: 95vh;
  overflow-y: auto;
  height: 100%;
  width: 100%;
}

.modal-close {
  aspect-ratio: 1 / 1;
  background-image: url(../images/close.svg);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
  width: 5.813%;
  z-index: 99;
}

/*----------------------------------
  PC
----------------------------------*/
@media (min-width: 768px) {
  .bonus-guide__swiper.swiper {
    overflow: visible;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    width: 84.722%;
  }

  .bonus-guide__swiper::before {
    background-image: url(/kojin/cam/detail/yokin_pointgetcp202512/assets/images/arrow_01.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    position: absolute;
    padding-top: 5.245%;
    bottom: 5.97%;
    left: 50%;
    transform: translateX(-50%);
    width: 5.245%;
  }

  .bonus-guide__swiper .swiper-wrapper {
    display: flex;
    justify-content: space-between;
    transform: none;
    transition: none;
  }

  .bonus-guide__swiper .swiper-slide {
    transition: none;
    width: 41.803%;
  }

  .bonus-guide__swiper .swiper-pagination,
  .bonus-guide__swiper .swiper-button-prev,
  .bonus-guide__swiper .swiper-button-next {
    display: none !important;
  }
}

/*----------------------------------
  SP
----------------------------------*/
@media not all and (min-width: 768px) {
  /* 共通 */
  .container {
    padding-left: 0;
    padding-right: 0;
  }

  .content-title {
    font-size: clamp(16px, 4.26vw, 32px);
  }

  .list-item {
    font-size: clamp(14px, 3.73vw, 28px);
  }

  .list-item::before {
    top: 0.2em;
  }

  summary {
    font-size: clamp(16px, 4.26vw, 32px);
  }

  summary::before,
  summary::after {
    right: 6.153%;
    height: 3px;
    width: 1em;
  }

  summary .content-title {
    font-size: clamp(16px, 4.26vw, 32px);
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  /* header */
  .header {
    border-bottom: solid clamp(2px, 0.53vw, 4px) #21ac4d;
    height: 17vw;
    padding-inline: 6.4%;
  }

  .header-logo {
    max-width: none;
    width: 100%;
  }

  /* main */
  /* mv */
  .mv {
    padding-top: 17vw;
  }

  .mv::before {
    background-image: url(../images/bg-sp.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    content: "";
    position: absolute;
    top: 17vw;
    left: 0;
    height: calc(100% - 17vw);
    width: 100%;
    z-index: -1;
  }

  .mv-note {
    padding-top: 2.666%;
    margin-left: auto;
    margin-right: auto;
    width: 37.333%;
  }

  .mv-title {
    margin-top: 2.13%;
    width: 86.4%;
  }

  .mv-item {
    margin-top: 0;
    margin-left: auto;
    padding-bottom: 50.666%;
    width: 92.8%;
  }

  /* desc */
  .desc::before {
    top: clamp(10px, 2.66vw, 22px);
  }

  .desc-duration {
    margin-top: -2.66%;
    margin-left: 0;
    padding-bottom: 2.666%;
    position: relative;
    z-index: 0;
  }

  .desc-duration::before {
    background-color: var(--color06);
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    padding-top: 19.666%;
    width: 100%;
    z-index: -1;
  }

  .desc-duration__title {
    color: var(--color06);
    font-size: clamp(13px, 3.46vw, 26px);
    margin-left: auto;
    margin-right: auto;
    height: 1.53em;
  }

  .desc-duration__date {
    margin-top: 1.86%;
    margin-left: auto;
    margin-right: auto;
    width: 89.333%;
  }

  .desc-duration__point {
    margin-top: 0;
    position: absolute;
    top: 0;
    left: 7.466%;
    transform: translateY(-120%);
    width: 83.466%;
  }

  .desc-reservation {
    background-color: transparent;
    border-radius: 0;
    display: block;
    margin-top: 8%;
    padding: 0;
  }

  .desc-reservation__text {
    background-color: var(--bg02);
    border-radius: 0.5em;
    font-size: clamp(16px, 4.26vw, 32px);
    margin-left: auto;
    margin-right: auto;
    padding-top: 0.625em;
    padding-bottom: 0.625em;
    position: relative;
    text-align: center;
    width: 84%;
  }

  .desc-reservation__text::after {
    background: var(--bg02);
    content: "";
    -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 100%);
    height: 0.8em;
    width: 1.2em;
  }

  .desc-reservation__btn {
    margin-top: 3.733%;
    margin-left: auto;
    margin-right: auto;
    width: 78.666%;
  }

  /* courses */
  .course-index {
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    padding-top: 8%;
    width: 89.333%;
  }

  .course-index__item {
    width: 47.5%;
  }

  .course-item {
    padding-bottom: 4%;
    margin-left: auto;
    margin-right: auto;
    width: 89.333%;
  }

  .course-title {
    font-size: clamp(18px, 4.8vw, 36px);
    padding-top: 0.83em;
    padding-bottom: 0.83em;
  }

  .course-desc__title {
    width: 67.466%;
  }

  .course-desc__text {
    font-size: clamp(16px, 4.26vw, 32px);
    line-height: 1.25;
  }

  .course-condition {
    border-radius: 6px;
    padding-top: 2.985%;
    padding-left: 2.985%;
    padding-right: 2.985%;
    padding-bottom: 4.477%;
    width: 94.029%;
  }

  .course-condition:not(:first-child) {
    margin-top: 14.925%;
  }

  .course-condition:not(:first-child)::before {
    transform: translate(-50%, -133%);
    width: 9.523%;
  }

  .course-condition__subtitle {
    background-color: transparent;
    border-radius: 0;
    color: var(--color01);
    display: inline;
    font-size: clamp(13px, 3.46vw, 26px);
    height: auto;
    padding-left: 0;
    padding-right: 0;
    width: auto;
  }

  .course-condition__title {
    font-size: clamp(18px, 4.8vw, 36px);
    margin-top: 5.084%;
  }

  .course-condition__title sup {
    font-size: clamp(14px, 3.73vw, 28px);
  }

  .course-condition__btns {
    display: block;
    margin-top: 4.745%;
  }

  .course-condition__btn {
    margin-top: 4.745%;
    width: 100%;
  }

  .course-condition__btns .course-condition__btn {
    margin-top: 3.389%;
    width: 100%;
  }

  .course-condition__note {
    font-size: clamp(14px, 3.73vw, 28px);
    margin-top: 5.084%;
    line-height: 1.28;
  }

  .course-condition__text {
    font-size: clamp(14px, 3.73vw, 28px);
    margin-top: 7.796%;
  }

  .course-condition__text .note {
    font-size: clamp(14px, 3.73vw, 28px);
    line-height: 1.28;
  }

  .course-note {
    font-size: clamp(14px, 3.73vw, 28px);
    margin-top: 2.985%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    width: 94.029%;
  }

  .course-btn {
    margin-top: 4.266%;
    width: 78.666%;
  }

  .course-btn:last-child {
    padding-bottom: 8%;
  }

  #course_01 {
    margin-top: 8%;
  }

  #course_01 .course-conditions {
    margin-top: 3.582%;
  }

  #course_01 .course-condition__01 .course-condition__title {
    margin-top: -1.449%;
  }

  #course_01 .course-condition__02::after,
  #course_02 .course-condition__01::after {
    right: 8.571%;
    transform: translateY(-15.3%);
    padding-top: 31.111%;
    width: 17.777%;
  }

  #course_01 .course-condition__02 .course-condition__title,
  #course_02 .course-condition__01 .course-condition__title {
    text-align: left;
    margin-left: 6.779%;
  }

  #course_01 .course-condition__03 .course-condition__title,
  #course_02 .course-condition__02 .course-condition__title {
    font-size: clamp(16px, 4.26vw, 32px);
  }

  #course_02 {
    margin-top: 8%;
  }

  #course_02 .course-conditions {
    margin-top: 7.462%;
  }

  #course_02 .course-condition__subtitle {
    background-color: transparent;
  }

  .course-modal__slider {
    padding-bottom: 11.94%;
  }

  .course-modal__num {
    border: 4px solid #fff;
    font-size: clamp(26px, 6.93vw, 52px);
    top: 0;
    left: 50%;
    transform: translate(-50%, 40%);
    width: 2.38em;
  }

  .course-modal__title {
    border-radius: 20px 20px 0 0;
    font-size: clamp(16px, 4.26vw, 32px);
    height: 2.5em;
  }

  .course-modal__title span {
    font-size: clamp(14px, 3.73vw, 28px);
    font-weight: 700;
  }

  .course-modal__note {
    font-size: clamp(14px, 3.73vw, 28px);
    text-align: left;
    margin-top: 8.955%;
    margin-left: auto;
    margin-right: auto;
    width: 88.059%;
  }

  .course-modal__link {
    font-size: clamp(18px, 4.8vw, 36px);
    margin-top: 2.985%;
  }

  .course-modal__01 .course-modal__title {
    border-radius: 6px;
    font-size: clamp(18px, 4.8vw, 36px);
    margin-top: 16.119%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1.5em;
    height: 6.66em;
    width: 88.059%;
  }

  .slide__01 .course-modal__pic {
    margin-top: 8.955%;
    width: 33.134%;
  }

  .slide__01 .course-modal__btn {
    margin-top: -11.94%;
    width: 70.149%;
  }

  .slide__02 .course-modal__pic {
    margin-top: 7.164%;
    width: 63.88%;
  }

  .slide__03 .course-modal__pic {
    margin-top: 8.358%;
    width: 84.776%;
  }

  .course-modal__slider .swiper-button-next,
  .course-modal__slider .swiper-button-prev {
    top: 58%;
    width: 5.465%;
  }

  .course-modal__slider .swiper-button-next {
    right: 3%;
  }

  .course-modal__slider .swiper-button-prev {
    left: 3%;
  }

  .course-modal__slider .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .course-modal__slider .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin-left: 1.492%;
    margin-right: 1.492%;
    width: 5.97%;
  }

  .course-modal__02 .course-modal__title {
    border: 3px solid #fff;
  }

  .course-modal__02 .course-modal__point {
    border-radius: 0.625em;
    font-size: clamp(16px, 4.26vw, 32px);
    margin-top: 3.97%;
    width: 55.223%;
  }

  .course-modal__02 .course-modal__btn {
    margin-top: 5.074%;
    width: 76.119%;
  }

  .course-modal__02 .course-modal__text {
    font-size: clamp(16px, 4.26vw, 32px);
    margin-top: 5.97%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    width: 88.059%;
  }

  .course-modal__02 .course-modal__note {
    margin-top: 5.97%;
  }

  .course-modal__02 .modal__note__02 {
    margin-top: 3.582%;
  }

  /* transactions */
  .transactions-title {
    padding-top: 0.75em;
    padding-bottom: 0.75em;
  }

  .transactions-copy {
    padding-top: 4.533%;
  }

  .transactions-copy__text {
    width: 80%;
  }

  .transactions-items {
    display: block;
  }

  .transactions-item {
    margin-top: 2.666%;
    margin-left: auto;
    margin-right: auto;
    width: 89.333%;
  }

  .transactions-item:nth-child(5),
  .transactions-item:nth-child(6),
  .transactions-item:nth-child(7) {
    width: 89.333%;
  }

  .transactions-item:nth-child(6) {
    padding-top: 0;
  }

  .transactions-detail {
    border: 3px solid var(--bg02);
    margin-top: 8%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 2.666%;
    padding-left: 2.133%;
    padding-right: 2.133%;
    padding-bottom: 2.666%;
    width: 89.333%;
  }

  .transactions-detail summary {
    cursor: pointer;
  }

  .transactions-detail summary::before,
  .transactions-detail summary::after {
    background-color: var(--bg02);
    right: 0;
  }

  .accordion-sp summary::before,
  .accordion-sp summary::after {
    display: block;
  }

  .transactions-detail__title {
    font-size: clamp(16px, 4.26vw, 32px);
  }

  .transactions-detail__item {
    margin-top: 6.349%;
  }

  .transactions-detail__item:first-child {
    margin-top: 3.809%;
  }

  .transactions-detail__item__title {
    font-size: clamp(16px, 4.26vw, 32px);
    padding-left: 0.625em;
  }

  .transactions-detail__text {
    font-size: clamp(14px, 3.73vw, 28px);
    margin-top: 3.174%;
  }

  .transactions-detail__text sup {
    font-size: clamp(10px, 2.66vw, 20px);
  }

  .transactions-detail__note {
    font-size: clamp(14px, 3.73vw, 28px);
    margin-top: 3.174%;
  }

  .transactions-detail__target {
    border-radius: 0;
    font-size: clamp(14px, 3.73vw, 28px);
    margin-top: 3.174%;
    height: 1.85em;
    letter-spacing: 0;
    width: 100%;
  }

  .transactions-detail__target__note {
    border-radius: 0;
    font-size: clamp(14px, 3.73vw, 28px);
    margin-top: 1.587%;
    height: 1.85em;
    letter-spacing: 0;
    width: 100%;
  }

  .transactions-text {
    font-size: clamp(14px, 3.73vw, 28px);
    font-weight: 700;
    margin-top: 3.733%;
    padding-bottom: 8%;
    line-height: 1.28;
  }

  /* info */
  .info-title {
    padding-top: 0.75em;
    padding-left: 1.25em;
    padding-bottom: 0.75em;
    text-align: left;
  }

  .info-items {
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 10.666%;
    width: 94.666%;
  }

  .info-item:first-child {
    margin-top: 5.633%;
  }

  .info-item__title {
    font-size: clamp(16px, 4.26vw, 32px);
    justify-content: left;
    padding-left: 1.25em;
  }

  .info-item__inner {
    margin-left: auto;
    margin-right: auto;
    width: 94.366%;
  }

  .info-item__text {
    font-size: clamp(16px, 4.26vw, 32px);
    text-align: left;
    margin-top: 2.985%;
    line-height: 1.25;
  }

  .info-item__detail {
    font-size: clamp(16px, 4.26vw, 32px);
    line-height: 1.25;
    margin-top: 2.985%;
    text-align: left;
  }

  .info-item__note {
    margin-top: 5.97%;
  }

  .info-item__note__title {
    font-size: clamp(16px, 4.26vw, 32px);
  }

  .info-item__row {
    display: block;
    margin-top: 0;
  }

  .info-item__row .info-item {
    margin-top: 5%;
    width: 100%;
  }

  .info-item__table {
    margin-top: 2.985%;
  }

  .info-item__04 .info-item__inner {
    display: flex;
  }

  .info-item__04 .info-item__detail {
    font-size: clamp(16px, 4.26vw, 32px);
    margin-left: 0.5em;
  }

  .info-item__05 .info-item__text {
    font-size: clamp(16px, 4.26vw, 32px);
  }

  .info-item__06 .info-item__detail {
    font-size: clamp(14px, 3.73vw, 28px);
    margin-top: 2.985%;
  }

  .info-item__07 .info-item__text {
    font-size: clamp(14px, 3.73vw, 28px);
  }

  /* conditions */
  .conditions-title {
    border-top: 1px solid #fff;
    border-radius: 0;
    margin-top: 0;
    padding-top: 0.75em;
    padding-left: 1.25em;
    padding-bottom: 0.75em;
    text-align: left;
  }

  .conditions-list {
    margin-top: 5.33%;
    margin-left: auto;
    margin-right: auto;
    width: 89.333%;
  }

  .conditions-banner {
    margin-top: 5.33%;
  }

  .conditions-banner__cap {
    border-radius: 0.5em;
    font-size: clamp(16px, 4.26vw, 32px);
    padding-top: 0.75em;
    padding-bottom: 0.75em;
    letter-spacing: 0;
    width: 84%;
  }

  .conditions-banner__cap strong {
    font-size: clamp(18px, 4.8vw, 36px);
    font-weight: 700;
  }

  .conditions-banner__img {
    margin-top: 5.866%;
    width: 89.333%;
  }

  /* precautions */
  .precautions-item:first-child {
    margin-top: 5.333%;
  }

  .precautions-title {
    border-bottom: 1px solid #fff;
    text-align: left;
    padding-left: 1.25em;
    line-height: 1.25;
  }

  .precautions-body {
    padding-top: 2.666%;
    padding-left: 5.333%;
    padding-right: 5.333%;
    padding-bottom: 5.333%;
  }

  .precautions-note {
    font-size: clamp(14px, 3.73vw, 28px);
    margin-top: 5.333%;
    margin-left: auto;
    margin-right: auto;
    width: 89.333%;
  }

  /* detail */
  .detail-items {
    margin-top: 5.333%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 2.666%;
    padding-bottom: 2.666%;
    width: 89.333%;
  }

  .detail-title,
  .detail-text {
    font-size: clamp(14px, 3.73vw, 28px);
  }

  /* footer */
  .copyright {
    font-size: clamp(12px, 3.2vw, 25px);
    font-weight: 500;
    letter-spacing: 0;
  }

  /* その他 */
  /* menu */
  .menu {
    padding-left: 0;
    padding-right: 0;
    width: 89.333%;
  }

  .menu-items {
    margin-right: 0;
    width: 100%;
  }

  .menu-item {
    width: 48.358%;
  }

  /* モーダル */
  .modal-wrap {
    border-radius: 20px;
    width: 89.333%;
  }

  .modal-content {
    border-radius: 20px;
  }

  .modal-close {
    top: auto;
    right: 0;
    bottom: 0;
    transform: translate(25%, 50%);
    width: 11.94%;
  }
}
