:root {
  --mainFont: 'Noto Serif JP', YuGothic, 'Yu Gothic medium', 'Hiragino Sans', Meiryo, 'sans-serif';

  --mainColor: #04679a;
  --colorBlack: #000;
  --colorWhite: #fff;

  --txt: #030322;
}

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

body {
  font-family: var(--mainFont);
  /* background: #1e1f38; */
  color: var(--mainColor);
}

a {
  text-decoration: none;
  color: var(--mainColor);
}
a:hover {
  opacity: 0.8;
}
p,
ul,
ol,
li {
  list-style: none;
  /* color: var(--mainColor); */
  line-height: 180%;
}
img {
  display: block;
}

/* FADE*/
/* .fadeBlock {
	opacity: 0;
	transition: all 1s;
}

.fadeBlock.fadeIn {
	opacity: 1;
} */
/* FADE*/

.pc-only {
  display: block;
}
.sp-only {
  display: none;
}
.kv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  height: auto;
}

.kv-bg {
  width: 100%;
  object-fit: cover;
}
.kv-bg img {
  width: 100%;
}
.comingsoon {
  background-image: none;
  position: relative;
  pointer-events: none;
}
.comingsoon::before {
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  border-radius: 50px;
  z-index: 20;
}
.title_sub {
  /* margin-top: 100px; */
  margin-bottom: 8px;
  position: relative;

  color: #04679a;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 43.2px */

  &::before,
  &::after {
    position: absolute;
    content: url('../img/snowflower.svg');
    top: 4px;
  }
  &::before {
    left: -30px;
  }
  &::after {
    right: -30px;
  }
}
.title_sub:not(:first-child) {
  margin-top: 100px;
}

#restaurant .title_sub {
  margin: 0;
}
#restaurant .title_sub-2 {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 38px;
}

.btn_box {
  width: 500px;
  margin: 120px auto;
}
.r-color {
  border: 1px solid linear-gradient(270deg, #da8406 0%, #b93740 100%) !important;
  background: none !important;
}

.outer-button {
  display: flex;
  width: 100%;
  height: 56px;
  /* background: linear-gradient(0deg, #da8406 0%, #b93740 100%); */
  border: 1px solid var(--mainColor);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  transition: all 0.3s;

  &:hover {
    box-shadow: 1px 1px 4px var(--mainColor);
  }
}
.inner-button::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--mainColor);
  border-bottom: 2px solid var(--mainColor);
  position: absolute;
  top: 50%;
  right: 24px;
  z-index: 10;
  transform: translate(0, -50%) rotate(-45deg);
}

.inner-button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 16px;
  width: 99.3%;
  height: 52px;
  /* background: #1e1f38; */
  border-radius: 9999px;
  text-align: center;
}

/* lead-recommended */
#lead-recommended {
  position: relative;
  padding: 25px;
  /* background: linear-gradient(0deg, #1E1C22 0%, #1E1F38 37.5%); */
  background: linear-gradient(90deg, #f9f9f9 19.71%, #f9f9f9 40.26%, #f9f9f9 46.64%, #f3f5f6 51.64%, #edf1f2 56.9%, #e4ebee 61.05%, #e3eaed 65.8%, #e3eaed 76.27%, #edf0f2 81.42%, #f9f9f9 89.86%, #f9f9f9 96.25%);
}
#lead .intro {
  text-align: center;
  margin: 0 auto 108px;
}
#lead nav,
#lead ul {
  display: flex;
  flex-wrap: wrap;
  max-width: 1080px;
  margin: 0 auto;
  gap: 16px;
  justify-content: center;
}
#lead nav {
  flex-direction: column;
  margin-bottom: 100px;
}
#lead li {
  background-color: #fff;
  border-radius: 4px;
}
#lead li p {
  text-align: center;
  font-weight: 500;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  #lead li p {
    font-size: 9px;
  }
}

.l-btn {
  width: 280px;
  height: 72px;
  color: #000;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 20px;
}
.l-btn::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  top: 50%;
  right: 10px;
  z-index: 10;
  transform: translate(50%, -50%) rotate(45deg);
}
.l-btn p {
  /* width: 238px; */

  color: var(--txt, #030322);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
}
.l-btn p:after {
  content: '';
  display: block;
  width: 20px;
  height: 100%;
  border-radius: 0px 4px 4px 0px;
  background: linear-gradient(0deg, #a2cff9 0%, #04679a 100%);
  position: absolute;
  top: 0;
  right: 0;
}

/* recommended */
#recommended {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, #f9f9f9 19.71%, #f9f9f9 40.26%, #f9f9f9 46.64%, #f3f5f6 51.64%, #edf1f2 56.9%, #e4ebee 61.05%, #e3eaed 65.8%, #e3eaed 76.27%, #edf0f2 81.42%, #f9f9f9 89.86%, #f9f9f9 96.25%);
}
.title {
  margin-bottom: 26px;

  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 43.2px */
}
.title img {
  width: 50%;
  margin: 0 auto;
}
.plan {
  width: 1080px;
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.plan > div {
  width: 50%;
  max-width: 547px;
}
.p-slide {
  /* border: 1px solid #fff; */
  /* border-radius: 8px; */
  /* position: relative; */
}
.p-slide img {
  width: 100%;
  height: 328px;
  /* object-fit: cover; */
}
@media screen and (max-width: 768px) {
  .p-slide img {
    height: auto;
  }
}
.slide-cont {
  position: relative;
  /* width: 547px;
  height: 328px; */
  /* bottom: 16px; */
  /* right: 16px; */
}
.slick-dotted.slick-slider {
  margin: 0;
}
.slick-dots {
  /* width: 126px; */
  height: 32px;
  /* background: #fff; */
  /* bottom: -16px; */
  /* right: -16px; */
  /* display: flex;
  justify-content: center;
  align-items: center; */
}
.slick-dots li {
  list-style-type: none;
  width: 12px;
  height: 12px;
}
.slick-dots li button:before {
  content: '';
  background-color: #4fc2f1;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}
.p-content {
  position: relative;
  /* top: -16px; */
  /* max-height: none !important; */
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.p-title {
  /* display: flex; */
  /* flex-direction: column; */
  /* justify-content: center; */
  line-height: 180%;
  background-color: #fff;
  padding: 16px;
  margin-bottom: 8px;
  border-radius: 8px;

  color: #04679a;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 153%; /* 30.6px */

  small {
    font-weight: 500;
  }
}
.p-text {
  font-size: 15px;
  font-style: normal;
  text-align: left;
  font-weight: 500;
  line-height: 180%;
  padding: 8px 0 16px;
  color: #000;
}
.p-text span {
  padding-bottom: 8px;
}
.p-period {
  font-size: 16px;
  border-radius: 8px;
  /* border: 1px solid #fff; */

  line-height: 185%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* padding: 16px 24px; */
  gap: 8px;
  color: #000;
}
.p-period span {
  font-size: 13px;
}
.p-period-box {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}
.p-period-box h5 {
  width: 48px;
}
.p-period-box p {
  /* color: var(--mainColor); */
  /* width: 100%; */
  /* color: #000; */
}
.f-plan .p-text {
  color: #fff;
}
.p-link {
  display: flex;
  width: 100%;
  height: 56px;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  font-family: 'Noto Sans JP';
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  position: relative;
  margin: 10px 0;
  /* margin-top: 27px; */

  border-radius: 7px;
  background: #04679a;
  transition: all 0.3s;
}
.p-link:hover {
  /* opacity: 0.7; */
  box-shadow: 1px 1px 4px black;
}

.p-link:after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  top: 50%;
  right: 24px;
  z-index: 10;
  transform: translate(0, -50%) rotate(-45deg);
}
.plan + .plan {
  margin-top: 80px;
}

.p-box {
  background-color: #a7dce6;
  padding-top: 16px;
  margin-bottom: 24px;
}
.p-box td {
  vertical-align: top;
  padding: 0 0 16px 16px;
  line-height: 1.6;
  font-weight: 400;
}

/* option */
#option {
  padding-top: 128px;
  background: #e8f0fd;
  /* background-image: url('../img/option-bg.webp'); */

  /* width: 1080px; */
}

.option_details {
  background-image: url('../img/option-bg.webp');
  object-fit: contain;
  background-repeat: no-repeat;
  max-width: 1080px;
  margin: 0 auto;
  color: var(--colorWhite);
}

#illumination {
}

.illumination {
  padding-top: 80px;
  background: #e8f0fd;
}

.illumination_details {
  background-image: url('../img/illumination-bg.webp');
  background-color: #524872;
  background-repeat: no-repeat;
  max-width: 1080px;
  margin: 0 auto;
  height: auto;
}
.illumination_details-content {
  display: flex;
  gap: 20px;
  padding: 25px;
}
@media screen and (max-width: 768px) {
  .illumination_details {
    /* background-color: #524872; */
  }
  .illumination_details-content {
    flex-direction: column;
  }
}

.illumination_details-title {
  padding: 56px 0 30px;
  text-align: center;
  color: #fff;
  font-family: 'Noto Serif JP';
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 43.2px */
}
.illumination_details-img img {
  width: 508px;
}
@media screen and (max-width: 768px) {
  .illumination_details-img img {
    width: 100%;
  }
}

.illumination_details-text {
  border-radius: 21px;
  background: #0a254b;
  color: white;
  color: #fff;
  font-family: 'Noto Serif JP';
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;

  padding: 30px 58px;
}

.illumination-btn {
  padding-bottom: 70px;
}
.illumination-btn a::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--mainColor);
  border-bottom: 2px solid var(--mainColor);
  position: absolute;
  top: 50%;
  right: 24px;
  z-index: 10;
  transform: translate(0, -50%) rotate(-45deg);
}
.illumination-btn a {
  display: flex;
  width: min(500px, 90%);
  height: 56px;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #0a254b;

  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 28.8px */
  border-radius: 7px;
  background: white;
  position: relative;
  margin: 0 auto;
}

.option_details-title {
  text-align: center;
  padding: 35px 0 40px;
}
.option_details-content {
  padding: 0 40px 160px 40px;
  display: grid;
  grid-template-columns: 508px 1fr;
  gap: 50px;
}
.option_details-img img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .option_details-img img {
    height: auto;
  }
}

.option_details-text {
  h3,
  p {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%; /* 28.8px */
  }
  h3 {
    margin-bottom: 20px;
  }
  p {
    margin-bottom: 24px;
  }
}
.option_title {
  margin-top: 50px;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 43.2px */
}
.o-link {
  display: flex;
  width: min(500px, 90%);
  height: 56px;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: white;
  border-radius: 7px;
  background: #04679a;
  position: relative;
  margin: 52px auto 0px;

  &:hover {
    box-shadow: 1px 1px 4px black;
  }

  &::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    position: absolute;
    top: 50%;
    right: 24px;
    z-index: 10;
    transform: translate(0, -50%) rotate(-45deg);
  }
}

.option-footer img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  #option {
    padding-top: 0;
  }
  .option_details {
    /* background-image: none; */
    background: #7baad6;
    /* color: black; */
  }
  .option_details-content {
    grid-template-columns: 1fr;
    padding: 0 20px 40px 20px;
  }
}

/* even */
#even {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 72px 0 120px;
}
.even-title {
  position: absolute;
  top: -80px;
}
/* stay */
#stay {
  padding: 120px 0 160px;
  background: url(../img/stay_bg.png);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.stay-title {
  text-align: center;
  margin: 0 auto 64px;
}
.stay-box {
  max-width: 1200px;
  background-color: #fff;
  padding: 106px 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 60px;
  border: 4px solid #e2a5be;
}
.p-all-link {
  display: flex;
  width: 80%;
  height: 70px;
  border-radius: 5px;
  background: #dd719c;
  margin: 0 auto;
  font-size: 24px;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 400;
  position: relative;
}
.p-all-link:after {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  top: 50%;
  right: 24px;
  z-index: 10;
  transform: translate(0, -50%) rotate(-45deg);
}
#stay .p-slide,
#stay .p-box,
#stay .slick-dots li button:before {
  background: #f8cbdd;
}
#stay .p-title {
  padding: 0;
}
#even .p-title {
  padding: 1rem;
}
/* restaurant */
#restaurant {
  padding: 120px 0 40px;
  /* background: url(../img/lead_restaurant_bg.webp); */
  background: #e8f0fd;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-size: cover;
}
#restaurant > ul li::before {
  content: '※';
  position: absolute;
  transform: translate(-150%);
}

#restaurant {
  .p-period {
    border-radius: 8px;
    border: 1px solid var(--Wh, #fff);
    color: var(--mainColor);
    padding: 16px 24px;
    margin-top: 16px;
  }
  .p-period-box h5 {
    font-size: 16px;
  }
  .p-period-box p {
    font-weight: 700;
  }
  .p-link {
    margin-top: 45px;
  }
  .p-title {
    font-size: 16px;

    span {
      font-size: 20px;
    }
  }
}
@media screen and (max-width: 768px) {
  .p-title {
    font-size: 14px;
  }
  .p-text {
    font-size: 14px;
  }
  #restaurant .p-title span {
    font-size: 16px;
  }
  .option_title {
    font-size: 20px;
  }
}
.restaurant-box {
  margin-bottom: 5rem;
}
.restaurant-title {
  color: var(--mainColor);
  margin-bottom: 15px;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 43.2px */
}
.intro {
  max-width: 1080px;
  line-height: 1.6;
  margin-bottom: 120px;
}
.intro img {
  width: 100%;
  margin-bottom: 24px;
}

.p-floor {
  margin-bottom: 16px;
  color: #052667;
  font-size: 16px;
  font-weight: 600;
  line-height: 180%;
}
#restaurant .slide-cont {
  bottom: 20px;
}
.restaurant_info {
  width: 970px;
}

/* recommended-p */
#recommended-p {
  padding: 120px 0 160px;
  background: url(../img/stay_bg.png);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.recommended-p-title {
  text-align: center;
  margin: 0 auto 80px;
}
.box-title {
  background: #fbbe3b;
}
.recommended-p-box {
  max-width: 1080px;
  padding: 0 0 80px;
  background-color: #fff;
  border: 4px solid #fbbe3b;
}
.recommended-p-box h5 {
  color: #fbbe3b;
  font-size: 32px;
  font-weight: 700;
  margin: 32px 128px 16px;
}
.recommended-p-box .recommended-banner {
  width: 100%;
}
.schedule-box {
  display: flex;
  margin: 0 128px;
  gap: 42px;
  position: relative;
}
.schedule-box:not(:last-of-type):after {
  content: '';
  display: block;
  width: 2px;
  height: 56px;
  background-color: #fbbe3b;
  position: absolute;
  bottom: 40px;
  right: 50%;
}
.schedule-box > * {
  width: 390px;
  height: 248px;
  margin-bottom: 136px;
}
.schedule-box:last-of-type > * {
  margin: 0;
}
.schedule-title {
  color: #092d77;
  font-size: 18px;
  font-weight: 600;
  line-height: 180%;
}
.schedule-text {
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
}

/* access */

#modelcourse {
  padding: 40px 0 180px;
  /* background: linear-gradient(180deg, #1e1c22 0%, #1e1f38 37.5%); */
  background: #e8f0fd;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  .title,
  .title_sub {
    font-style: normal;
    font-weight: 700;
    line-height: 180%; /* 36px */
  }
  .title {
    font-size: 20px;
    margin-bottom: 0;
  }
  .title_sub {
    /* margin-top: 45px; */
    margin-bottom: 60px;
    font-size: 24px;
  }

  .p-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    .number {
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      font-size: 20px;
      font-style: normal;
      font-weight: 500;
      line-height: 100%; /* 20px */
      color: #fff;
      width: 30px;
      height: 30px;
      background-color: #04679a;
    }
  }
  .p-content {
    display: block;
  }
  .p-text {
    color: var(--mainColor);
  }
  .p-period-box {
    width: 100%;
    border-radius: 8px;
    padding: 16px 24px;
    border: 1px solid #04679a;
    margin-top: 20px;

    p,
    h5 {
      color: var(--mainColor);
    }
  }
}
.access-title {
  text-align: center;
  margin: 0 auto 68px;
}
.access-box {
  width: 1080px;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  /* border: 2px solid #062c6f; */
}
.access-box img {
  width: 100%;
}
#modelcourse .p-title {
  background: #fff;
  text-align: left;
}
#modelcourse .plan + .plan {
  margin-top: 116px;
}
#modelcourse .plan:first-of-type .p-content {
  text-align: center;
}
#modelcourse .plan:first-of-type .p-link:last-of-type {
  /* background: none; */
  /* color: #062c6f; */
  font-weight: 600;
  border: 1px solid #062c6f;
}
#modelcourse .plan:first-of-type .p-link:last-of-type::after {
  /* border-color: #062c6f; */
}
#modelcourse .p-slide {
  /* width: 528px !important; */
}

#modelcourse .day {
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 43.2px */
  padding: 162px 0 45px;
}

.arrow {
  position: relative;
}
.arrow::after {
  content: url(../img/arrow_blue.svg);
  position: absolute;
  left: 48%;
  bottom: -64px;
}
/* footer */
footer {
  min-height: 100px;
  background: #1d2141;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 96px 0 0;
}
footer img {
  margin-bottom: 32px;
}
footer h3 {
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 43.2px */
  letter-spacing: 3.84px;
  margin-bottom: 8px;
}

.address {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
  letter-spacing: 2.08px;
  margin-bottom: 32px;
}

.ft-link {
  width: 200px;
  height: 48px;
  background: #fff;
  color: #1d2141;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 180%; /* 21.6px */
  display: flex;
  justify-content: center;
  align-items: center;
}
.ft-nav ul {
  display: flex;
  justify-content: center;
}
.ft-nav li {
  list-style-type: none;
  padding: 0 16px;
  margin: 32px 0 120px;
  border-left: 1px solid #fff;
}
.ft-nav li:last-child {
  border-right: 1px solid #fff;
}
.ft-nav a {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 12.2px;
}
.copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #fff;
  color: #1a1a1a;
  text-align: center;
  font-family: 'Noto Sans JP';
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 14.4px */
  letter-spacing: 1.28px;
  padding: 8px;
}
#move-top {
  position: fixed;
  bottom: 40px;
  right: 16px;
  z-index: 10;
}
#move-top img {
  width: 54px;
  border: 1px solid black;
  border-radius: 8px;
}
@media (min-width: 1920px) {
  #lead-recommended {
    background-size: cover;
  }
  #restaurant {
    background-size: cover;
  }
  .kv-cont {
    width: 30%;
  }
}
@media (max-width: 769px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  .btn_box {
    width: 90%;
    margin: 40px 0 80px;
  }

  #lead-recommended {
    padding: 80px 1rem 120px;
    background-size: cover;
  }
  .kv-bg {
    /* height: 540px; */
  }
  .kv-logo {
    top: 40px;
    right: 5%;
    width: 45%;
  }
  .kv-cont {
    width: 85%;
    top: 110px !important;
  }
  .title {
    font-size: 20px;
  }
  .title_sub {
    font-size: 14px;
  }
  .title img {
    width: 60%;
  }
  #lead nav,
  #lead ul {
    gap: 16px;
  }
  #lead nav {
    margin-bottom: 80px;
  }
  .l-btn {
    width: 156px;
  }
  .l-btn p {
    width: 140px;
    font-size: 14px;
  }
  .recom-title img {
    width: 100%;
  }
  .plan {
    flex-direction: column;
    width: 100%;
    height: auto;
  }
  .plan > div {
    width: 100%;
  }
  .p-slide {
    /* right: -4px; */
  }
  /* .slide-cont {
    bottom: 6px !important;
    right: 6px !important;
  } */
  .p-content {
    padding: 0;
    top: 32px;
  }
  .recom-title {
    margin-bottom: 40px;
  }
  .plan + .plan {
    margin-top: 100px;
  }
  .even-title {
    top: -110px;
    width: 100%;
  }
  #even .even-title img {
    width: 40%;
    margin: 0 auto;
  }
  #even {
    padding: 0 0 120px;
  }
  #even .plan {
    width: 90%;
  }
  #even .p-title {
    padding: 1rem 0.5rem;
  }
  .p-box td {
    padding: 0 0 12px 12px;
    font-size: 16px;
    white-space: nowrap;
  }
  #stay {
    padding: 80px 0;
  }
  #stay .stay-title img {
    width: 80%;
    margin: 0 auto;
  }
  #stay .stay-box {
    width: 90%;
    padding: 40px 16px;
  }
  #stay .plan + .plan {
    margin-top: 40px;
  }
  #stay .p-box td {
    padding: 0 0 16px 14px;
    font-size: 14px;
  }
  .p-all-link {
    width: 100%;
    font-size: 18px;
  }
  #restaurant {
    padding: 40px 0;
  }

  #restaurant .restaurant-title img {
    width: 100%;
    margin: 0 auto;
  }
  #restaurant .intro {
    width: 90%;
    margin-bottom: 64px;
    text-align: left;
  }
  #restaurant .plan,
  #special .plan {
    width: 100%;
  }
  .restaurant_info {
    width: 90%;
    padding-left: 20px;
  }
  .restaurant-box {
    width: 89%;
  }
  .restaurant-title {
    font-size: 20px;
    margin-bottom: 40px;
  }
  #recommended-p {
    padding: 80px 0;
  }
  .recommended-p-box {
    width: 90%;
  }
  .recommended-p-box .recommended-banner {
    background: #fbbe3b;
    padding: 16px 0 32px;
  }
  .recommended-p-box h5 {
    text-align: center;
    margin: 32px 0;
  }
  .schedule-box {
    margin: 0 1rem;
    margin-bottom: 80px;
    flex-direction: column;
    gap: 16px;
  }
  .schedule-box:last-child {
    margin-bottom: -20px;
  }
  .schedule-box > * {
    width: 100%;
    height: auto;
    margin-bottom: 0px;
  }
  .schedule-box:not(:last-of-type):after {
    height: 40px;
    bottom: -58px;
  }

  .slick-dots {
    bottom: -17px;
    right: -6px;
  }
  #modelcourse {
    padding: 20px 0 40px 0;
  }
  #modelcourse .plan {
    width: 90%;
  }
  .arrow::after {
    bottom: -87px;
  }
  .access-title {
    margin: 0 auto 64px;
  }
  #modelcourse .access-title img {
    width: 80%;
    margin: 0 auto;
  }
  .access-box {
    width: 90%;
    padding: 16px;
  }
  .access-box img {
    width: 100%;
  }
  .ft-nav {
    width: 90%;
  }
  .ft-nav ul {
    flex-direction: column;
    margin-bottom: 80px;
  }
  .ft-nav li {
    padding: 0 8px;
    margin: 16px 0;
    border-right: 1px solid #fff;
    text-align: center;
  }
  .ft-nav a {
    font-size: 16px;
  }
  .copyright {
    font-size: 11px;
  }
}
