@charset "UTF-8";
.appear.up .item {
  transform: translateY(6px);
}

.appear.down .item {
  transform: translateY(-6px);
}

.appear.left .item {
  transform: translateX(40px);
}

.appear.right .item {
  transform: translateX(-40px);
}

.appear .item {
  transition: all 0.8s;
  opacity: 0;
}
.appear.inview .item {
  opacity: 1;
  transform: none;
}
.appear.inview .item:nth-child(1) {
  transition-delay: 0.1s;
}
.appear.inview .item:nth-child(2) {
  transition-delay: 0.2s;
}
.appear.inview .item:nth-child(3) {
  transition-delay: 0.3s;
}
.appear.inview .item:nth-child(4) {
  transition-delay: 0.4s;
}
.appear.inview .item:nth-child(5) {
  transition-delay: 0.5s;
}
.appear.inview .item:nth-child(6) {
  transition-delay: 0.6s;
}
.appear.inview .item:nth-child(7) {
  transition-delay: 0.7s;
}
.appear.inview .item:nth-child(8) {
  transition-delay: 0.8s;
}
.appear.inview .item:nth-child(9) {
  transition-delay: 0.9s;
}
.appear.inview .item:nth-child(10) {
  transition-delay: 1s;
}

.btn {
  position: relative;
  display: inline-block;
  background-color: rgba(0, 86, 153, 0.8);
  font-weight: 600;
  padding: 10px 40px;
  cursor: pointer;
  transition: all 0.3s;
  color: white;
  text-decoration: none !important;
}
.btn.solid {
  box-shadow: 2px 2px 0 0 black;
  border-radius: 7px;
}
.btn.solid:hover {
  transform: translate(2px, 2px);
  box-shadow: none;
}

.mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(88vw);
  width: 88vw;
  height: 100%;
  z-index: 1000;
  background-color: #eeeeee;
  transition: 0.5s;
  overflow-y: auto;
  margin-top: 50px;
}
@media screen and (min-width: 960px) {
  .mobile-menu {
    margin-top: 80px;
    width: 30vw;
  }
}
.mobile-menu__btn {
  height: 100%;
  padding: 0 !important;
  background-color: unset;
  border: none;
  outline: none !important;
  cursor: pointer;
}
.mobile-menu__btn > span {
  background-color: white;
  width: 24px;
  height: 1px;
  display: block;
  margin-bottom: 5px;
  transition: transform 0.7s;
}
.mobile-menu__btn > span:last-child {
  margin-bottom: 0;
}
.mobile-menu__btn > img {
  width: 28px;
  margin: 0 auto;
}
.mobile-menu__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 36, 77, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s;
  cursor: pointer;
  z-index: 400;
}
.mobile-menu__main {
  padding: 30px 0 20px;
}
.mobile-menu__item > a {
  display: block;
  padding: 13px 25px;
  color: white;
  text-decoration: none !important;
  font-size: clamp(16px, 3vw, 19px);
  font-weight: 700;
  position: relative;
}
.mobile-menu__item > a:hover {
  background: black;
  color: white;
}
.mobile-menu__item .sub-menu {
  display: none;
  padding: 0;
}
.mobile-menu__item .sub-menu li {
  list-style: none;
}
.mobile-menu__item .sub-menu li > a {
  font-size: clamp(14px, 3vw, 15px);
  font-weight: normal;
  color: white;
  text-decoration: none !important;
  display: block;
  padding: 8px 10px 8px 50px;
  position: relative;
}
.mobile-menu__item .sub-menu li > a::before {
  content: "\f061";
  font-family: "Font Awesome 5 free";
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-30%);
  font-size: 8px;
  color: white;
}
.mobile-menu__item .sub-menu li > a:hover {
  color: black;
}
.mobile-menu .mobile-btn {
  width: 90%;
  margin: 10px auto 0;
}
.mobile-menu .mobile-btn > a {
  text-decoration: none;
  padding: 10px;
  background: black;
  color: white;
  width: 100%;
  display: inline-block;
  position: relative;
}
.mobile-menu .mobile-btn > a::before {
  content: "\f061";
  font-family: "Font Awesome 5 free";
  font-weight: 700;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-30%);
  font-size: 14px;
  color: white;
}

.menu-open #container {
  overflow-y: hidden;
}
.menu-open .mobile-menu {
  transform: translateX(0);
  padding: 0 4vw 10vw;
}
.menu-open .mobile-menu__cover {
  opacity: 1;
  visibility: visible;
}
.menu-open .mobile-menu__item {
  transform: none;
  opacity: 1;
}
.menu-open .mobile-menu__item:nth-child(1) {
  transition-delay: 0.07s;
}
.menu-open .mobile-menu__item:nth-child(2) {
  transition-delay: 0.14s;
}
.menu-open .mobile-menu__item:nth-child(3) {
  transition-delay: 0.21s;
}
.menu-open .mobile-menu__item:nth-child(4) {
  transition-delay: 0.28s;
}
.menu-open .mobile-menu__item:nth-child(5) {
  transition-delay: 0.35s;
}
.menu-open .mobile-menu__item:nth-child(6) {
  transition-delay: 0.42s;
}
.menu-open .mobile-menu__item:nth-child(7) {
  transition-delay: 0.49s;
}
.menu-open .mobile-menu__item:nth-child(8) {
  transition-delay: 0.56s;
}
.menu-open .mobile-menu__item:nth-child(9) {
  transition-delay: 0.63s;
}
.menu-open .mobile-menu__item:nth-child(10) {
  transition-delay: 0.7s;
}
.menu-open .mobile-menu__btn > span {
  background-color: white;
}
.menu-open .mobile-menu__btn > span:nth-child(1) {
  transition-delay: 70ms;
  transform: translateY(6px) rotate(135deg);
}
.menu-open .mobile-menu__btn > span:nth-child(2) {
  transition-delay: 0s;
  transform: translateX(-10px) scaleX(0);
}
.menu-open .mobile-menu__btn > span:nth-child(3) {
  transition-delay: 140ms;
  transform: translateY(-6px) rotate(-135deg);
}

/* expanded クラスが付与されたときに表示 */
.sub-menu.expanded {
  display: block;
}

.disabled-link > a {
  pointer-events: none;
  position: relative;
}
.disabled-link > a::after {
  content: "\f067";
  font-family: "Font Awesome 5 free";
  font-weight: 700;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.disabled-link.open > a::after {
  display: none;
}
.disabled-link.open > a::before {
  content: "\f068";
  font-family: "Font Awesome 5 free";
  font-weight: 700;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.c-video {
  max-width: 800px;
  margin: 0 auto;
}
.c-video__frame {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  width: 100%;
  height: 100%;
}
.c-video__frame.is-loaded iframe {
  opacity: 1;
  visibility: visible;
}
.c-video iframe {
  pointer-events: visible;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  transition-property: opacity, visibility;
}

.c-blue {
  color: rgb(0, 36, 77);
}

.c-red {
  color: rgb(138, 38, 59);
}

.br-md {
  display: block;
}
@media screen and (min-width: 600px) {
  .br-md {
    display: none;
  }
}

.br-lg {
  display: block;
}
@media screen and (min-width: 960px) {
  .br-lg {
    display: none;
  }
}

.br-md-spNone {
  display: none;
}
@media screen and (min-width: 600px) {
  .br-md-spNone {
    display: block;
  }
}

.br-lg-spNone {
  display: none;
}
@media screen and (min-width: 960px) {
  .br-lg-spNone {
    display: block;
  }
}

.mb-sm, .explanation__desc p, .staff__content-title, .sec-tit-bar, .sec-tit {
  margin-bottom: 16px !important;
}
@media screen and (min-width: 960px) {
  .mb-sm, .explanation__desc p, .staff__content-title, .sec-tit-bar, .sec-tit {
    margin-bottom: 25px !important;
  }
}

.mt-sm {
  margin-top: 16px !important;
}
@media screen and (min-width: 960px) {
  .mt-sm {
    margin-top: 25px !important;
  }
}

.mb-md, .program__day, .hotel-images, .feature__desc dl dd, .wc-contact__desc, .section-titles {
  margin-bottom: 30px !important;
}
@media screen and (min-width: 960px) {
  .mb-md, .program__day, .hotel-images, .feature__desc dl dd, .wc-contact__desc, .section-titles {
    margin-bottom: 60px !important;
  }
}

.mb-lr, .hero, .schedule, .message-board, .explanation, .programs, .feature, .expense, .page-contact__inner, .product-sec-title {
  margin-bottom: 40px !important;
}
@media screen and (min-width: 600px) {
  .mb-lr, .hero, .schedule, .message-board, .explanation, .programs, .feature, .expense, .page-contact__inner, .product-sec-title {
    margin-bottom: 60px !important;
  }
}
@media screen and (min-width: 960px) {
  .mb-lr, .hero, .schedule, .message-board, .explanation, .programs, .feature, .expense, .page-contact__inner, .product-sec-title {
    margin-bottom: 100px !important;
  }
}

.mb-lg {
  margin-bottom: 80px !important;
}
@media screen and (min-width: 960px) {
  .mb-lg {
    margin-bottom: 120px !important;
  }
}

.mt-md, .feature-pictures, .page-contact__inner, .p-faq {
  margin-top: 30px !important;
}
@media screen and (min-width: 960px) {
  .mt-md, .feature-pictures, .page-contact__inner, .p-faq {
    margin-top: 60px !important;
  }
}

.pb-sm {
  padding-bottom: 16px !important;
}

.pb-md, .p-faq {
  padding-bottom: 30px !important;
}
@media screen and (min-width: 960px) {
  .pb-md, .p-faq {
    padding-bottom: 60px !important;
  }
}

.pb-lr {
  padding-bottom: 40px !important;
}
@media screen and (min-width: 600px) {
  .pb-lr {
    padding-bottom: 60px !important;
  }
}
@media screen and (min-width: 960px) {
  .pb-lr {
    padding-bottom: 100px !important;
  }
}

.pb-lg {
  padding-bottom: 80px !important;
}
@media screen and (min-width: 960px) {
  .pb-lg {
    padding-bottom: 120px !important;
  }
}

.pt-lg {
  padding-top: 80px !important;
}
@media screen and (min-width: 960px) {
  .pt-lg {
    padding-top: 120px !important;
  }
}

.pt-md {
  padding-top: 30px !important;
}
@media screen and (min-width: 960px) {
  .pt-md {
    padding-top: 60px !important;
  }
}

.pt-lr {
  padding-top: 40px !important;
}
@media screen and (min-width: 600px) {
  .pt-lr {
    padding-top: 60px !important;
  }
}
@media screen and (min-width: 960px) {
  .pt-lr {
    padding-top: 100px !important;
  }
}

.content-width {
  width: 90%;
  margin: 0 auto;
  max-width: 1080px;
}

.content-width980 {
  margin: 0 auto;
  max-width: 980px;
}

.content-width1030 {
  width: 90%;
  margin: 0 auto;
  max-width: 1030px;
}

.flex, .staff__content-lists {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 600px) {
  .flex, .staff__content-lists {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.flex820 {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 820px) {
  .flex820 {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.flex960, .message-board__inner {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 960px) {
  .flex960, .message-board__inner {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 820px) {
  .flex-row-reverse820 {
    flex-direction: row-reverse !important;
  }
}

.font-ssm {
  font-size: clamp(12px, 2vw, 13px);
}

.font-sm, .explanation__desc p, .program__day span, .feature__desc dl dd {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.6;
}

.font-md, .message-board__desc, .program__content-list, .program__btn p, .program .link-btn p, .expense__dl dd, .sec-tit-bar {
  font-size: clamp(15px, 3vw, 18px);
  line-height: 1.6;
}

.font-lr, .program__day {
  font-size: clamp(16px, 4vw, 28px);
}

.font-lg, .product-sec-title {
  font-size: clamp(17px, 4vw, 36px);
}

.font-xl {
  font-size: clamp(20px, 5vw, 40px);
}

.sec-tit {
  position: relative;
  padding-left: 15px;
  font-size: clamp(16px, 4vw, 22px);
}
.sec-tit::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  content: "";
  width: 3px;
  height: 25px;
  background: black;
  display: block;
}

.product-sec-title {
  text-align: center;
}

.sec-tit-bar {
  background: black;
  color: white;
  padding: 5px 10px;
  border-radius: 3px;
}

.main-title {
  font-size: clamp(22px, 5vw, 32px);
  margin-bottom: 0;
  display: inline-block;
  font-weight: bold;
  line-height: 1.4;
}

.image-title {
  width: 15%;
  min-width: 150px;
}

.sub-title {
  display: block;
  font-size: clamp(13px, 2vw, 17px);
  padding-top: clamp(10px, 2vw, 14px);
  color: black;
  font-weight: bold;
}

#page_top {
  z-index: 100;
  position: fixed;
  right: 5%;
  bottom: 5%;
}
#page_top > a {
  opacity: 0.6;
  background: black;
  position: relative;
  text-decoration: none;
  border-radius: 80%;
  width: 50px;
  height: 50px;
  display: inline-block;
}
#page_top > a::before {
  font-family: icomoon !important;
  font-weight: 900;
  content: "\e912";
  font-size: 24px;
  color: white;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 1;
  text-transform: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#container-wrapper {
  display: block;
  position: relative;
}

/* サイド画像（装飾） */
#left-side-image,
#right-side-image {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 20%;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 1;
  display: none;
}
#left-side-image::before,
#right-side-image::before {
  content: "";
  position: absolute;
  inset: 0;
  cursor: pointer;
}
@media screen and (min-width: 1280px) {
  #left-side-image,
  #right-side-image {
    display: block;
  }
}

@media screen and (min-width: 1280px) {
  #left-side-image {
    left: 0;
    background-image: url("../images/2026/side-img-left.png");
  }
}
#left-side-image::before {
  background-color: rgba(0, 36, 77, 0.6);
}

@media screen and (min-width: 1280px) {
  #right-side-image {
    right: 0;
    background-image: url("../images/2026/side-img-right.png");
  }
}
#right-side-image::before {
  background-color: rgba(138, 38, 59, 0.6);
}

/* 中央スクロール領域（全幅に広げて左右をpaddingで空ける） */
@media screen and (min-width: 1280px) {
  #content-center {
    position: relative;
    z-index: 2;
    height: 100vh;
    width: 100%;
    padding-left: 20%;
    padding-right: 20%;
    box-sizing: border-box;
    overflow-y: auto;
    -ms-overflow-style: none; /* IE, Edge */
    scrollbar-width: none; /* Firefox */
  }
  #content-center::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }
}

@media screen and (min-width: 1280px) {
  #main-content {
    height: 100vh;
  }
}

.hero {
  width: 100%;
  padding-top: 50px;
}
@media screen and (min-width: 960px) {
  .hero {
    padding-top: 80px;
  }
}
.hero__img {
  position: relative;
}
.hero__img picture {
  width: 100%;
  display: block;
}
.hero__img picture > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__title {
  width: 80%;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wc-header {
  background: black;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  z-index: 1000;
}
@media screen and (min-width: 960px) {
  .wc-header {
    height: 80px;
  }
}
.wc-header.triggered {
  background: rgba(0, 0, 0, 0.9);
  box-shadow: 0px 0 28px -3px rgba(102, 102, 102, 0.5);
  border-bottom: 2px solid rgb(0, 36, 77);
}
.wc-header__inner {
  height: 100%;
  width: 95%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.wc-header .logo {
  height: 100%;
  width: 90%;
  max-width: 570px;
  justify-content: center;
  padding: 3px 0;
}
@media screen and (min-width: 600px) {
  .wc-header .logo {
    width: 100%;
    justify-content: flex-start;
  }
}
.wc-header .logo > a {
  text-decoration: none;
  height: 100%;
}
.wc-header .logo > a > img {
  display: flex;
  align-items: center;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.wc-header .logo__img {
  padding: 6px;
  width: 30px;
}
@media screen and (min-width: 960px) {
  .wc-header .logo__img {
    width: 45px;
  }
}
.wc-header__left {
  display: flex;
  align-items: center;
}
.wc-header__left .nike-logo {
  height: 90%;
  width: 25%;
  padding: 4px 3px;
}
.wc-header__left .nike-logo > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.schedule {
  display: flex;
}
.schedule__img {
  flex-basis: 50%;
  width: 50%;
  padding: 20px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.schedule__img:nth-child(1) {
  background: rgba(0, 36, 77, 0.9);
}
.schedule__img:nth-child(2) {
  background: rgba(138, 38, 59, 0.8);
}
.schedule__img img {
  margin: 0 auto;
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 960px) {
  .schedule__img {
    padding: 20px;
  }
}

@media screen and (min-width: 960px) {
  .message-board {
    width: 90%;
    margin: 0 auto;
  }
}
.message-board .main-title {
  width: 90%;
  margin: 0 auto;
  display: block;
  color: rgb(0, 36, 77);
  text-align: center;
  font-size: clamp(22px, 2.2vw, 35px) !important;
}
.message-board__inner {
  justify-content: space-between;
}
.message-board__desc {
  flex-basis: 49%;
  font-weight: 700;
  width: 90%;
  margin: 0 auto 20px;
}
@media screen and (min-width: 960px) {
  .message-board__desc {
    width: 100%;
    margin: unset;
  }
}
.message-board__desc p > span {
  color: rgb(0, 36, 77);
}
.message-board__desc p:nth-child(1) {
  margin-bottom: 20px;
}
.message-board__img {
  flex-basis: 45%;
}
.message-board__img > img {
  width: 100%;
}

.explanation {
  width: 90%;
  margin: 0 auto;
}
.explanation .section-titles {
  text-align: center;
}
.explanation .main-title {
  color: rgb(138, 38, 59);
}
.explanation__desc p {
  font-weight: 700;
}
.explanation__desc p > span {
  color: rgb(138, 38, 59);
}

.staff .section-titles {
  text-align: center;
}
.staff .main-title {
  color: rgb(0, 36, 77);
}
.staff__content {
  background: #DFF2FC;
  padding: 50px 0;
}
.staff__content:nth-child(2) {
  background: #F3E1DE;
}
.staff__content:nth-child(2) .staff__content-title {
  color: rgb(138, 38, 59);
}
.staff__content:nth-child(2) .staff__content-profile {
  color: rgb(138, 38, 59);
}
@media screen and (min-width: 960px) {
  .staff__content {
    padding: 60px 0;
  }
}
.staff__content-head {
  margin-bottom: 10px;
}
.staff__content-head h4 {
  font-size: clamp(18px, 2vw, 21px);
}
.staff__content-head p {
  font-size: 14px;
}
.staff__content-inner {
  width: 90%;
  margin: 0 auto;
}
.staff__content-title {
  font-size: clamp(21px, 2vw, 28px) !important;
  color: rgb(0, 36, 77);
  text-align: center;
  width: 90%;
  margin: 0 auto;
  font-weight: bold;
}
@media screen and (min-width: 960px) {
  .staff__content-title {
    text-align: left;
  }
}
.staff__content-lists {
  gap: 30px 10px;
}
@media screen and (min-width: 1280px) {
  .staff__content-lists--col4 {
    gap: 30px 6px;
  }
}
@media screen and (min-width: 1280px) {
  .staff__content-lists--col4 .staff__content-box {
    flex-basis: 24% !important;
  }
  .staff__content-lists--col4 .staff__content-box h4 {
    font-size: 16px !important;
  }
  .staff__content-lists--col4 .staff__content-box ul {
    font-size: 12px;
  }
}
.staff__content-box {
  width: 100%;
  flex-basis: 100%;
}
@media screen and (min-width: 600px) {
  .staff__content-box {
    flex-basis: 49.1%;
  }
}
@media screen and (min-width: 960px) {
  .staff__content-box {
    flex-basis: 32%;
  }
}
.staff__content-img > img {
  width: 100%;
}
.staff__content-profile {
  color: rgb(0, 36, 77);
  text-align: center;
}
.staff__content-profile > h4 {
  font-size: 20px !important;
  margin-bottom: 5px;
}
.staff__content-profile ul {
  font-weight: 700 !important;
  font-size: 13px;
}

.program {
  padding: 50px 0;
}
@media screen and (min-width: 960px) {
  .program {
    padding: 60px 0;
  }
}
.program__inner {
  width: 90%;
  margin: 0 auto;
}
.program__day {
  background: rgb(0, 36, 77);
  color: white;
  padding: 10px;
  text-align: center;
  font-weight: 700;
}
@media screen and (min-width: 960px) {
  .program__day {
    width: 90%;
    margin: 0 auto;
  }
}
.program .section-titles {
  text-align: center;
}
.program .main-title {
  color: rgb(0, 36, 77);
}
.program__content {
  margin-bottom: 50px;
}
.program__content:last-child {
  margin-bottom: 0;
}
.program__content-title {
  color: rgb(0, 36, 77);
  text-align: center;
  margin-bottom: 10px;
  font-size: clamp(16px, 3vw, 20px) !important;
  font-weight: bold;
}
@media screen and (min-width: 960px) {
  .program__content-title {
    margin-bottom: 20px;
  }
}
.program__content-list {
  line-height: 1.4em;
  font-weight: 500;
  font-weight: 700;
}
.program__content-list li {
  margin-bottom: 10px;
}
.program__content-list li > span {
  margin-right: 5px;
  color: rgb(0, 36, 77);
}
.program__btn {
  text-align: center;
}
.program__btn p {
  margin-bottom: 10px;
  font-weight: 700;
}
.program__btn a {
  background: rgb(138, 38, 59);
  padding: 20px 40px;
  width: 90%;
  max-width: 300px;
}
.program__btn a span {
  position: relative;
}
.program__btn a span::before {
  content: "";
  background-image: url("../images/pdf_icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  height: 20px;
  width: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -20px;
}
.program .link-btn {
  text-align: center;
}
.program .link-btn p {
  margin-bottom: 10px;
  font-weight: 700;
}
.program .link-btn a {
  background: rgb(138, 38, 59);
  padding: 20px 40px;
  width: 90%;
  max-width: 300px;
}
.program .link-btn a span {
  position: relative;
}
.program .link-btn a span::before {
  content: "";
  background-image: url("../images/link_icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  height: 15px;
  width: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -20px;
}

.programs .program:nth-child(2) .program__day {
  background: rgb(138, 38, 59);
}
.programs .program:nth-child(2) .main-title {
  color: rgb(138, 38, 59);
}
.programs .program:nth-child(2) .program__content-title {
  color: rgb(138, 38, 59);
}
.programs .program:nth-child(2) .program__content-list li > span {
  color: rgb(138, 38, 59);
}

.hotel-images {
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  gap: 10px;
}

.hotel-image img {
  width: 100%;
  height: auto;
}

.feature .section-titles {
  text-align: center;
}
.feature .main-title {
  color: rgb(0, 36, 77);
}
.feature__inner {
  width: 90%;
  margin: 0 auto;
}
.feature__desc dl dt {
  color: rgb(0, 36, 77);
  font-weight: 800;
  margin-bottom: 10px;
  font-size: clamp(18px, 3vw, 22px);
}
.feature__desc dl dd {
  font-weight: 700;
  text-align: justify;
}
.feature__desc dl dd span {
  color: rgb(0, 36, 77);
}
.feature__desc-ul {
  margin-top: 1em;
}
.feature__desc-ul > li {
  margin-bottom: 2em;
}
.feature__schedule {
  width: 100%;
}
.feature__schedule img {
  width: 100%;
}

@media screen and (min-width: 960px) {
  .feature-pictures {
    width: 90%;
    margin: 0 auto;
  }
}
.feature-pictures__images {
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  gap: 10px;
}
.feature-pictures__image img {
  width: 100%;
  height: auto;
}

.expense {
  width: 90%;
  margin: 0 auto;
}
.expense .section-titles {
  text-align: center;
}
.expense .main-title {
  color: rgb(138, 38, 59);
}
.expense__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.expense__table tr {
  border: solid 2px rgb(138, 38, 59);
}
.expense__table th {
  position: relative;
  text-align: left;
  display: inline-block;
  width: 100%;
  background-color: rgb(138, 38, 59);
  color: white;
  text-align: center;
  padding: 10px 5px;
  font-size: 1.4em;
}
.expense__table th > span {
  display: block;
  font-size: 0.7em;
}
@media screen and (min-width: 960px) {
  .expense__table th > span {
    display: inline;
    margin-left: 5px;
  }
}
.expense__table th:after {
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  bottom: -14px;
  right: 50%;
  border-left: 10px solid rgb(138, 38, 59);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  transform: rotate(90deg);
}
.expense__table td {
  text-align: left;
  display: inline-block;
  width: 100%;
  text-align: center;
  background-color: white;
  padding: 20px 20px;
  color: rgb(138, 38, 59);
  font-size: 1.5em;
  font-weight: 700;
}
.expense__table td .jp-ex {
  font-size: 0.7em;
}
.expense__table td .count {
  font-size: 0.7em;
  display: block;
}
@media screen and (min-width: 960px) {
  .expense__table td .count {
    display: inline;
  }
}
.expense__desc {
  color: rgb(138, 38, 59);
  font-weight: 700;
  max-width: 800px;
  margin: 0 auto;
  text-align: justify;
  margin-bottom: 20px;
}
.expense__dl dt {
  margin-bottom: 5px;
  color: rgb(138, 38, 59);
  font-weight: 700;
}
.expense__dl dd {
  margin-bottom: 10px;
}

.wc-contact {
  position: relative;
}
.wc-contact__inner {
  position: relative;
}
.wc-contact__inner::before {
  content: "";
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}
.wc-contact__inner img {
  width: 100%;
  height: 100%;
}
.wc-contact__content {
  position: absolute;
  z-index: 200;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  margin: 0 auto;
}
.wc-contact__desc {
  color: white;
  text-align: center;
}
.wc-contact__desc > h4 {
  font-size: clamp(16px, 3vw, 20px);
  font-weight: bold;
  margin-bottom: 10px;
}
.wc-contact__desc > h4 > span {
  font-size: clamp(20px, 3vw, 27px);
  color: red;
}
.wc-contact__desc > p {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: bold;
}
.wc-contact__desc > p > span {
  color: red;
}
.wc-contact__btn {
  text-align: center;
}

.page-contact__inner {
  width: 90%;
  margin: 0 auto;
}
.page-contact__desc h4 > span {
  color: rgb(138, 38, 59);
}
.page-contact__desc p > span {
  color: rgb(138, 38, 59);
  font-weight: 700;
}

/*
　よくある質問
================================*/
.p-faq {
  width: 90%;
  margin: 0 auto;
}
.p-faq .section-titles {
  text-align: center;
}
.p-faq .main-title {
  color: rgb(0, 36, 77);
}
.p-faq__item {
  margin-bottom: 2.4em;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
}
.p-faq__question {
  background-color: rgb(138, 38, 59);
  color: #fff;
  font-weight: 700;
  padding: 1em;
  font-size: clamp(15px, 2vw, 18px);
}
.p-faq__answer {
  background-color: #f8f8f8;
  padding: 1em;
  font-size: 1em;
  line-height: 1.8;
}/*# sourceMappingURL=addstyle.css.map */