@charset "UTF-8";

ul {
  margin: 0;
  padding: 0;
}
li {
  list-style-type: none;
}

.sp {
  display: block;
}
.pc {
  display: none;
}

.img-fit {
  height: 100%;
  object-fit: cover;
  border-radius: 5%;
}

/* mv */
.mv {
  padding-bottom: 30px;
  position: relative;
}
.mv-img {
  width: 100%;
  display: flex;
  justify-content: center;
}
.mv-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* about */
.about {
  padding-bottom: 130px;
  background: url(/assets/images/hotel/about_bg_deco02.webp);
  background-size: 200px;
  background-repeat: no-repeat;
  background-position: bottom -90px right;
}
/** about-slider */
.about-slider {
  position: relative;
  display: flex;
  justify-content: flex-start;
  height: 34vw;
  z-index: 10;
}
.about-sliderList {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 10px;
  width: auto;
  height: 100%;
  flex: 0 0 auto;
  padding: 0 5px;
}
.about-sliderList li {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.3));
  max-width: 265px;
  max-height: 180px;
}
.about-sliderList li img {
  height: 100%;
  object-fit: cover;
  border-radius: 5%;
}
.about-sliderList._active:nth-child(1) {
  animation: roop1 120s -60s infinite linear;
}
.about-sliderList._active:nth-child(2) {
  animation: roop2 120s infinite linear;
}

@keyframes roop1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes roop2 {
  0% {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-200%);
  }
}

/** about-lead */
.about-lead {
  margin-top: -4%;
  /* padding: 11% 0 32%; */
  padding: 11% 0 67%;
  background-color: #1e78c4;
  background-image: url(/assets/images/hotel/about_lead_img.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  color: #fff;
}
/* spの際の上のぼかし */
.about-lead-txt::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 55%;
  bottom: -55%;
  left: 0; 
  pointer-events: none;
  background: linear-gradient(to top, rgba(104, 199, 237, 0) 0%, #1e78c4 100%);
}
.about-lead-ttl {
  font-size: var(--text-4xl-2);
  font-weight: bold;
  font-feature-settings: "palt";
  letter-spacing: -0.02em;
  line-height: 1.5;
  text-align: center;
}
.about-lead-txt {
  padding: 0 5.5%;
  font-size: var(--text-lg);
  font-feature-settings: "palt";
  letter-spacing: -0.04em;
  position: relative;
}
.about-lead-img {
  position: relative;
}
.about-lead-img::before,
.about-lead-img::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30px; 
  pointer-events: none;
}
/* 左側のぼかし */
.about-lead-img::before {
  left: -3%;
  background: #56bee4;
  filter: blur(6px);
}
/* 右側のぼかし */
.about-lead-img::after {
  right: -3%;
  background: #56bee4;
  filter: blur(7px);
}


/** about-detail */
.about-detail {
  display: flex;
  flex-direction: column;
  background: url(/assets/images/hotel/about_bg_deco01.webp);
  background-size: 139px;
  background-repeat: no-repeat;
  background-position: top 5px right;
  position: relative;
}
.about-detail-item {
  display: flex;
  flex-direction: column;
  margin-top: 5.5%;
}
.about-detail-item._02 {
  align-items: end;
}
.about-detail-item-img {
  width: 40%;
  height: 44.8vw;
  position: relative;
}
.about-detail-item._01 .about-detail-item-imgR {
  position: absolute;
  top: 5%;
  left: 44%;
}
.about-detail-item._02 .about-detail-item-imgL {
  position: absolute;
  top: 58%;
  right: 44%;
}
.about-detail-item-txt {
  width: 89.3%;
  margin-top: -30px;
  padding: 45px 25px 15px 20px;
  border-radius: 0 10px 10px 0;
  background: #ebf5fc;
  font-size: var(--text-md);
  font-feature-settings: "palt";
  letter-spacing: -0.02em;
}
._02 .about-detail-item-txt {
  border-radius: 10px 0 0 10px;
}
.about-detail-item-txt ._notice {
  color: #666;
  font-size: var(--text-2xs);
}
/** about-notice */
.about-notice {
  width: 90%;
  height: 150px;
  margin: 50px auto 0px;
  padding: 15px;
  border: 1px solid #a0a4a8;
  border-radius: 4px;
  background: #fff;
  overflow: scroll;
}
.about-notice-ttl {
  padding-bottom: 5px;
  font-size: var(--text-lg);
  font-weight: bold;
  text-align: center;
}
.about-notice-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.about-notice-item {
  display: flex;
  flex-direction: column;
  font-size: var(--text-md);
}
.about-notice-date {
  font-weight: bold;
  letter-spacing: -0.02em;
}

/* section-contents 共通のスタイル */
.top-deco {
  position: absolute;
  z-index: 10;
}
.section-contents {
  width: 100%;
  padding-top: 65px;
  padding-bottom: 130px;
}
.section-contents .ttl {
  margin-top: 30px;
  font-size: var(--text-5xl);
  line-height: 1;
  font-feature-settings: "palt";
  text-align: center;
}
.section-contents .sub-ttl {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 40px auto 20px;
  font-size: var(--text-4xl);
  font-feature-settings: "palt";
  line-height: 1.1;
  text-align: center;
}

.detail {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.detail-item {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 91%;
  padding: 20px 0;
  border-radius: 0 10px 10px 0;
  background: #fff;
  position: relative;
}
.detail-item:nth-child(2n) {
  align-items: end;
  margin-left: auto;
  border-radius: 10px 0 0 10px;
}
.detail._reverse .detail-item {
  align-items: end;
  margin-left: auto;
  border-radius: 10px 0 0 10px;
}
.detail._reverse .detail-item:nth-child(2n) {
  align-items: start;
  margin-left: 0;
  border-radius: 0 10px 10px 0;
}
.detail._center .detail-item {
  align-items: center;
  width: 83%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px 10px 10px 10px;
}
.detail-item-ttl,
.detail-item-txt {
  width: 100%;
  margin: 0;
  padding: 0 20px;
  font-weight: bold;
  font-feature-settings: "palt";
  letter-spacing: -0.02em;
}
.detail-item-ttl {
  font-size: var(--text-lg);
  margin: -5px 0 -15px;
}
.detail-item-txt {
  font-size: var(--text-md);
  font-weight: normal;
}
.detail-item-deco {
  filter: drop-shadow(0 12px 10px rgba(0, 0, 0, 0.08));
  position: absolute;
}
.detail-btn {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 0 !important;
}
.section-contents > .detail-btn {
  margin-top: 40px !important;
}
.section-contents .c-button-main {
  color: #fff;
}
.section-contents .c-button-main__icon {
  fill: #fff;
}
.section-contents .accordion {
  width: 90%;
  max-width: 1200px;
  margin-top: 25px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
}
.section-contents .accordion._first {
  margin-top: 60px;
}
.section-contents .accordion-btn {
  position: relative;
}
.section-contents .accordion-ttl {
  width: 100%;
  padding-left: 15px;
}
.section-contents .accordion-icon {
  position: absolute;
  right: 20px;
}
.section-contents .accordion-contents {
  padding-left: 20px;
  padding-right: 20px;
  font-feature-settings: "palt";
}
.section-contents .accordion-contents > :first-child {
  margin-top: 0 !important;
}
.section-contents .accordion-contents > :nth-child(n + 2) {
  margin-top: 20px !important;
}
.section-contents .accordion-contents-img {
  overflow: hidden;
  border-radius: 10px;
}

/* room */
.room {
  position: relative;
}
.room .top-deco._01 {
  width: 150px;
  top: 20px;
  left: 20px;
}
.room .top-deco._02 {
  width: 120px;
  top: -10px;
  right: 12px;
}
.room .section-contents {
  background-color: #ebf5fc;
  background-image: url(/assets/images/hotel/section_contents_bg_pattern01.webp);
  background-size: 100%;
  background-repeat: repeat;
  background-position: top 30px center;
}
.room .section-contents .ttl {
  color: #395263;
}
.room .detail-item:nth-child(1) .detail-item-img._01,
.room .detail-item:nth-child(2) .detail-item-img._01 {
  width: 104%;
  height: 57.3vw;
}
.room .detail-item:nth-child(1) .detail-item-img._01 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 5% 5% 0;
}
.room .detail-item:nth-child(2) .detail-item-img._01 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5% 0 0 5%;
}
.room .detail-item:nth-child(2) .detail-item-img._02 {
  width: 44%;
  height: 44.8vw;
}
.room .detail-item:nth-child(2) .detail-item-imgl {
  position: absolute;
  bottom: 46vw;
  left: 7%;
}
.room .detail-item:nth-child(1) .detail-item-deco {
  width: 77px;
  top: 49%;
  right: -7%;
}
.room .detail-item:nth-child(2) .detail-item-deco {
  width: 130px;
  top: 35%;
  left: -20%;
}
.room .c-button-main {
  background: #33aaff;
}
.room .accordion-contents div:first-child {
  width: 100%;
  height: 48vw;
}
.room .accordion-contents div:first-child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* meal */
.meal {
  position: relative;
}
.meal .section-contents .sub-ttl:nth-child(4) {
  margin: 65px auto 20px;
}
.meal .top-deco._01 {
  width: 149px;
  top: 5px;
  left: 20px;
}
.meal .top-deco._02 {
  width: 107px;
  top: 5px;
  right: 24px;
}
.meal .section-contents {
  background-color: #ffeeee;
  background-image: url(/assets/images/hotel/section_contents_bg_pattern02.webp);
  background-size: 100%;
  background-repeat: repeat;
  background-position: top 23px center;
}
.meal .section-contents .ttl,
.meal .section-contents .sub-ttl {
  color: #823838;
}
.meal .section-contents .sub-ttl::before,
.meal .section-contents .sub-ttl::after {
  display: block;
  content: "";
  width: 30px;
  height: 32px;
  background: url(/assets/images/hotel/meal_sub_ttl_deco.webp);
  background-size: contain;
  background-repeat: no-repeat;
}
.meal .detail-item:nth-child(1) .detail-item-deco {
  width: 116px;
  top: 22%;
  right: -17%;
}
.meal .detail-item:nth-child(1) .detail-item-img._01,
.meal .detail-item:nth-child(2) .detail-item-img._01 {
  width: 104%;
  height: 57.3vw;
}
.meal .detail-item:nth-child(1) .detail-item-img._01 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 5% 5% 0;
}
/* 朝食バイキング　画像 */
.meal .detail-item:nth-child(1)._right .detail-item-img._01 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5% 0 0 5%;
}
.meal .detail-item:nth-child(1) .detail-item-img._02 {
  width: 52.8%;
  height: 44.8vw;
  margin-top: -10px;
  margin-left: 20px;
}
.meal .detail-item:nth-child(1) .detail-item-img._02 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5%;
}
.meal .detail-item:nth-child(1) .detail-item-imgR._02 {
  position: absolute;
  width: 40.8%;
  bottom: 230px;
  left: 59%;
}
.meal .detail-item:nth-child(2) .detail-item-img._01 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5% 0 0 5%;
}
.meal .section-contents .detail:nth-child(5) .detail-item-deco {
  width: 90px;
  top: 49%;
  right: -8%;
}
.meal .detail-item:nth-child(2) .detail-item-deco {
  width: 78px;
  top: 43%;
  left: -14%;
}
.meal .detail:last-of-type .detail-item-deco {
  width: 90px;
  top: -1%;
  left: -12%;
}
.meal .section-contents .detail._reverse .detail-item._right .detail-btn {
  position: static;
  top: 63%;
  left: -18.5%;
}

.meal .c-button-main {
  background: #c61217;
}

/* hotspring */
.hotspring {
  position: relative;
}
.hotspring .top-deco._01 {
  width: 243px;
  top: 0;
  left: 20px;
}
.hotspring .top-deco._02 {
  width: 70px;
  top: -10px;
  right: 24px;
}
.hotspring .section-contents {
  background-color: #fffac0;
  background-image: url(/assets/images/hotel/section_contents_bg_pattern01.webp);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top 23px center;
}
.hotspring .section-contents .ttl {
  color: #8a7803;
}
.hotspring .detail-item:nth-child(1) .detail-item-img._01 {
  width: 104%;
  height: 57.3vw;
}
.hotspring .detail-item:nth-child(1) .detail-item-img._01 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 5% 5% 0;
}
.hotspring .detail-item:nth-child(1)._right .detail-item-img._01 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5% 0 0 5%;
}
.hotspring .detail-item:nth-child(1) .detail-item-img._02 {
  width: 52.8%;
  height: 44.8vw;
  margin-top: -10px;
  margin-left: 20px;
}
.hotspring .detail-item:nth-child(1) .detail-item-img._02 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5%;
}
.hotspring .detail-item:nth-child(1) .detail-item-imgR._02 {
  position: absolute;
  width: 40.8%;
  bottom: 122px;
  left: 58%;
}
.hotspring .detail-item:nth-child(1) .detail-item-deco {
  width: 140px;
  top: -3%;
  right: -20%;
}


.hotspring .c-button-main {
  background: #d9be10;
}

/* facility */
.facility {
  position: relative;
}
.facility .top-deco._01 {
  width: 194px;
  top: -13px;
  left: 20px;
}
.facility .top-deco._02 {
  width: 131px;
  top: -21px;
  right: 14px;
}
.facility .section-contents {
  background-color: #e2fac1;
  background-image: url(/assets/images/hotel/section_contents_bg_pattern02.webp);
  background-size: 100%;
  background-repeat: repeat;
  background-position: top 25px center;
}
.facility .section-contents .ttl,
.facility .section-contents .sub-ttl {
  color: #3c5717;
}
.facility .section-contents .sub-ttl::before,
.facility .section-contents .sub-ttl::after {
  display: block;
  content: "";
  width: 30px;
  height: 32px;
  background: url(/assets/images/hotel/facility_sub_ttl_deco.webp);
  background-size: contain;
  background-repeat: no-repeat;
}
.facility .detail._01 .detail-item:nth-child(1) .detail-item-img._01,
.facility .detail._02 .detail-item:nth-child(1) .detail-item-img._01,
.facility .detail._03 .detail-item:nth-child(1) .detail-item-img._01,
.facility .detail._04 .detail-item:nth-child(1) .detail-item-img._01 {
  width: 104%;
  height: 57.3vw;
}
.facility .detail._01 .detail-item:nth-child(1) .detail-item-img._01 img,
.facility .detail._03 .detail-item:nth-child(1) .detail-item-img._01 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5% 0 0 5%;
}
.facility .detail._02 .detail-item:nth-child(1) .detail-item-img._01 img,
.facility .detail._04 .detail-item:nth-child(1) .detail-item-img._01 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 5% 5% 0;
}
.facility .detail._01 .detail-item:nth-child(1) .detail-item-deco {
  width: 83px;
  top: 43%;
  left: -7%;
}
.facility .detail._02 .detail-item:nth-child(1) .detail-item-deco {
  width: 130px;
  top: 4%;
  right: -17%;
}
.facility .detail._03 .detail-item:nth-child(1) .detail-item-deco {
  width: 92px;
  top: 38%;
  left: -9%;
}
.facility .detail._04 .detail-item:nth-child(1) .detail-item-img._01 {
  width: 104%;
}
.facility .detail._04 .detail-item:nth-child(1) .detail-item-deco {
  width: 119px;
  top: -6%;
  right: -5%;
}
.facility .c-button-main {
  background: #508a00;
}

/* information */
.information {
  position: relative;
}
.information .top-deco._01 {
  width: 301px;
  top: -30px;
  left: 15px;
}
.information .top-deco._02 {
  width: 101px;
  top: 28px;
  right: 5px;
}
.information .section-contents {
  background-color: #fcedff;
  background-image: url(/assets/images/hotel/information_bg_deco01.webp),
    url(/assets/images/hotel/section_contents_bg_pattern01.webp);
  background-size: 227px auto, 100%;
  background-repeat: no-repeat, repeat;
  background-position: bottom 0 left, top 25px center;
  padding-bottom: 34.5%;
}
.information .section-contents .ttl,
.information .section-contents .sub-ttl {
  color: #5d2966;
}
.information .section-contents .sub-ttl::before,
.information .section-contents .sub-ttl::after {
  display: block;
  content: "";
  width: 30px;
  height: 32px;
  background: url(/assets/images/hotel/information_sub_ttl_deco.webp);
  background-size: contain;
  background-repeat: no-repeat;
}
.information .detail._center .detail-item {
  padding-top: 0;
}
.information .detail .detail-item:nth-child(1) .detail-item-img._01 {
  width: 106.3%;
  height: 55.3vw;
}
.information .detail .detail-item:nth-child(1) .detail-item-deco._01 {
  width: 95px;
  top: -2%;
  right: -11%;
}
.information .detail .detail-item:nth-child(1) .detail-item-deco._02 {
  width: 84px;
  top: 40%;
  left: -13%;
}
.information .c-button-main {
  background: #b435ca;
}
.information .accordion-contents-img {
  width: 102.7%;
  height: 53.5vw;
}
.information .accordion-contents-img img {
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/** information-slider */
.information-slider {
  display: flex;
  justify-content: flex-start;
  height: 34vw;
  margin-top: 75px;
}
.information-sliderList {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 10px;
  width: auto;
  height: 100%;
  flex: 0 0 auto;
  padding: 0 5px;
}
.information-sliderList li {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.3));
  max-width: 270px;
  max-height: 180px;
}
.information-sliderList li img {
  height: 100%;
  object-fit: cover;
  border-radius: 5%;
}
.information-sliderList._active:nth-child(1) {
  animation: roop1 120s -60s infinite linear;
}
.information-sliderList._active:nth-child(2) {
  animation: roop2 120s infinite linear;
}

/* 関連情報 */
.relatedInfo {
  border-bottom: 1px solid #d7d7d7;
  position: relative;
  background-color: #fff;
}
.relatedInfo-ttl {
  position: absolute;
  top: -27vw;
  left: 0;
}
.relatedInfo-list {
  padding: 20px 20px 0;
}
.relatedInfo-listItem .c-card-media img {
  height: 100%;
  border-radius: 5%;
}

.p-footer:before {
  display: none;
}

@media screen and (min-width: 416px) {
  .detail-item {
    gap: 35px;
}
.room .detail-item:nth-child(2) .detail-item-imgl {
  position: absolute;
  bottom: 202px;
  left: 7%;
}
.hotspring .detail-item:nth-child(1) .detail-item-imgR._02 {
  position: absolute;
  width: 40.8%;
  bottom: 100px;
  left: 58%;
}
}

@media screen and (min-width:665px) {
  .room .detail-item:nth-child(2) .detail-item-imgl {
    bottom: 26vw;
  }
}


@media only screen and (min-width: 768px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }

  .about {
    background: url(/assets/images/hotel/about_bg_deco_pc.webp);
    background-size: 99%;
    background-repeat: no-repeat;
    background-position: top min(48vw, 700px) center;
    padding-bottom: 250px;
  }

  .about-slider {
    height: 12.2vw;
  }
  .about-sliderList {
    column-gap: 16px;
    padding: 0 8px;
  }

  .about-lead {
    margin-top: -2.8%;
    padding: 0;
    background-image: none;
    background-color: #56bee4;
  }
  /* spの際の上のぼかし */
.about-lead-txt::after {
  display: none;
}
  .about-lead-wrapper {
    display: flex;
    column-gap: 1cqb;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: flex-end;
    padding-left: 20px;
  }
  .about-lead-wrapper div:first-of-type {
    width: 48%;
  }
  .about-lead-img {
    height: 420px;
  }
  .about-lead-img img {
    width: auto;
    height: 100%;
  }
  .about-lead-ttl {
    padding-top: 25%;
    text-align: left;
    letter-spacing: -2px;
  }
  .about-lead-txt {
    padding: 0;
    margin-top: 6%;
  }

  .about-detail {
    max-width: 1200px;
    margin: 0 auto;
    background: none;
  }
  .about-detail-item {
    width: 100%;
    margin-top: 3.5%;
    padding: 0 20px;
  }
  ._01 .about-detail-item-img {
    width: 25%;
    height: 336px;
  }
  ._02 .about-detail-item-img{
    width: 25%;
    height: 336px;
  }
  .about-detail-item._01 .about-detail-item-imgR {
    position: absolute;
    top: 4%;
    left: 28%;
  }
  ._01 .about-detail-item-txt {
    width: 86.7%;
    margin-top: -65px;
    padding: 100px 170px 40px 120px;
    border-radius: 0 20px 20px 0;
    margin-left: -140px;
  }
  .about-detail-item._02 {
    width: min(1200px, 100%);
  }
  .meal
    .detail-item:nth-child(1)
    .detail-item-img._02
    ._02
    .about-detail-item-img {
    width: 32.2%;
    height: 200px;
  }
  ._02 .about-detail-item-imgL {
    width: 25%;
    position: absolute;
    top: 56%;
    left: 46%;
  }
  ._02 .about-detail-item-txt {
    width: 94%;
    margin-top: -130px;
    padding: 160px 170px 35px 120px;
    border-radius: 20px 0 0 20px;
    margin-right: -140px;
  }

  .about-notice {
    width: 100%;
    max-width: min(1040px, 95%);
    height: 220px;
    margin: 80px auto 0;
    padding: 30px;
    border: 2px solid #a0a4a8;
    border-radius: 8px;
  }
  .about-notice-ttl {
    padding-bottom: 20px;
    font-size: var(--20px);
  }

  .section-contents {
    padding-top: 180px;
  }

  .detail {
    max-width: 1080px;
    padding: 0 20px;
    gap: 160px;
  }

  .detail .detail-item:nth-child(1) {
    margin-left: auto;
  }
  .detail .detail-item:nth-child(2) {
    margin-right: auto;
    margin-left: 0;
    border-radius: 20px 0 0 20px;
  }

  .detail-item {
    display: block;
    width: 83.7%;
    border-radius: 0 20px 20px 0;
    height: min(29.8vw, 430px);
    min-height: 385px;
  }

  .detail-item-img,
  .detail-item-ttl,
  .detail-item-txt {
    position: absolute;
  }
  /* 一番左の大きい画像 */
  .detail-item-img._01 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 5% 5% 0;
  }

  .section-contents > .detail-btn {
    margin-top: 80px !important;
  }

  .detail-item._left {
    margin-left: auto;
    margin-right: 0;
  }
  ._left .detail-item-img._01 {
    width: 79.2% !important;
    height: 430px !important;
    top: -14%;
    left: -42.5%;
    right: initial;
  }
  .detail-item._right {
    margin-left: 0;
    margin-right: auto;
  }
  ._right .detail-item-img._01 {
    width: 79.2% !important;
    height: 430px !important;
    top: -14%;
    left: initial;
    right: -42.5%;
  }
  ._right .detail-item-img._01 img {
    width: 100%;
    border-radius: 5% 0 0 5%;
  }

  /* デコレーション共通 */
  .top-deco-wrapper {
    width: min(95%, 1040px);
    margin: 0 auto;
    position: relative;
  }
  .top-deco._01 {
    left: 0;
  }
  .top-deco._02 {
    right: 0;
  }

  /* room */
  .room .top-deco._01 {
    width: 300px;
    top: 100px;
  }
  .room .top-deco._02 {
    width: 220px;
    top: 85px;
  }
  .room .detail {
    margin: 160px auto 0;
    gap: 160px;
  }
  .room .detail-item:nth-child(1) .detail-item-img._02 {
    width: 32.2%;
    height: 200px;
    top: -19%;
    right: -10%;
  }
  .room .detail-item:nth-child(1) .detail-item-ttl {
    top: 38%;
    left: 38%;
  }
  .room .detail-item:nth-child(1) .detail-item-txt {
    top: 45%;
    left: 38%;
    width: fit-content;
    padding: 0 50px 0 20px;
  }
  .room .detail-item:nth-child(2) .detail-item-img._02 {
    width: 31.1%;
    height: 302px;
    top: -27%;
    left: -5.2%;
  }
  .room .detail-item:nth-child(2) .detail-item-imgR._02 {
    top: -22%;
    left: 29%;
  }

  .room .detail-item:nth-child(2) .detail-item-ttl {
    top: 54.7%;
    left: 2.3%;
  }
  .room .detail-item:nth-child(2) .detail-item-txt {
    top: 63%;
    left: 2.3%;
    width: 500px;
  }

  .room .detail-item:nth-child(1) .detail-item-deco {
    width: 160px;
    top: 20%;
    right: -15%;
  }
  .room .detail-item:nth-child(2) .detail-item-deco {
    width: 260px;
    top: 90%;
    left: -12%;
  }

  .room .section-contents .accordion:nth-child(5) {
    margin-bottom: 200px;
  }

  .room .accordion-contents div:first-child {
    width: 100%;
    height: 360px;
  }
  .room .accordion-contents div img {
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
  }

  /* meal */
  .meal .top-deco._01 {
    width: 295px;
    top: 85px;
  }
  .meal .top-deco._02 {
    width: 195px;
    top: 80px;
  }
  .meal .section-contents .sub-ttl::before,
  .meal .section-contents .sub-ttl::after {
    width: 60px;
    height: 64px;
  }
  .meal .section-contents .sub-ttl {
    margin: 80px auto 20px;
  }
  .meal .section-contents .sub-ttl:nth-child(4) {
    margin: 120px auto 20px;
  }
  .meal .detail {
    margin: 240px auto 0;
    gap: 180px;
  }

  .meal .detail-item:nth-child(1) .detail-item-img._01 {
    top: -25.5%;
  }
  .meal .detail-item:nth-child(1) .detail-item-img._02 {
    width: 28.8%;
    height: 302px;
    bottom: 76%;
    left: 76%;
    margin: 0;
  }
  .meal .detail-item:nth-child(1) .detail-item-img._02 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5%;
  }
  .meal .detail-item:nth-child(1) .detail-item-imgL._02 {
    width: 31.1%;
    height: 302px;
    top: -51%;
    left: 41%;
  }
  .meal .detail-item:nth-child(1) .detail-item-ttl {
    top: 30%;
    left: 38%;
  }
  .meal .detail-item:nth-child(1) .detail-item-txt {
    top: 37%;
    left: 38%;
    width: fit-content;
    padding: 0 50px 0 20px;
  }
  .meal .detail-item:nth-child(1) .detail-item-deco {
    width: 220px;
    top: -12%;
    right: -22%;
  }

  .meal .detail-item._right .detail-item-ttl {
    top: 25%;
    left: 2.3%;
  }
  .meal .detail-item._right .detail-item-txt {
    top: 35%;
    left: 2.3%;
    width: fit-content;
    padding: 0 50px 0 20px;
    width: 60%;
  }
  .meal .detail-item._right .detail-item-deco {
    width: 160px;
    top: 83%;
    left: -7%;
  }

  .meal .detail-item:nth-child(2) .detail-item-img._02 {
    width: 32.2%;
    height: 200px;
    top: -32.5%;
    left: -11.8%;
  }
  .meal .detail-item:nth-child(2) .detail-item-ttl {
    top: 25%;
    left: 2.3%;
  }
  .meal .detail-item:nth-child(2) .detail-item-txt {
    top: 35%;
    left: 2.3%;
    width: 60%;
  }
  .meal .detail-item:nth-child(2) .detail-item-deco {
    width: 160px;
    top: 83%;
    left: -7%;
  }

  .meal .section-contents .detail:nth-child(5) {
    margin: 170px auto 0;
  }
  .meal .section-contents .detail:nth-child(5) .detail-item-img._02 {
    width: 32.2%;
    height: 200px;
    top: -32.3%;
    right: -7.2%;
  }
  .meal .section-contents .detail:nth-child(5) .detail-item-txt {
    width: 62%;
    top: 30.5%;
    right: -7.2%;
    padding: 0 20px;
  }
  .meal .section-contents .detail:nth-child(5) .detail-btn {
    position: absolute;
    top: 48%;
    left: 18%;
  }

  .meal .section-contents .detail:nth-child(5) .detail-item-deco {
    width: 170px;
    top: 4%;
    right: -15%;
    transform: rotateY(180deg) rotate(-90deg);
  }

  .meal .section-contents .detail:last-child {
    margin: 170px auto;
  }

  .meal .detail-item:nth-child(1) .detail-btn {
    position: absolute;
    top: 63%;
    left: 18%;
  }
  .meal .detail-item:nth-child(2) .detail-btn {
    position: absolute;
    top: 55%;
    left: -18.5%;
  }
  .meal
    .section-contents
    .detail._reverse:nth-of-type(3)
    > .detail-item._right
    .detail-btn {
    position: absolute;
    top: 63%;
    left: -18.5%;
  }
  .meal .detail._breakfast .detail-item._right {
    margin-left: 0;
  }

  .meal .c-button-main._limited {
    min-width: min(250px, 100%);
  }

  /* hotspring */
  .hotspring .top-deco._01 {
    width: 490px;
    top: 60px;
  }
  .hotspring .top-deco._02 {
    width: 125px;
    top: 85px;
  }
  .hotspring .detail {
    margin: 250px auto 0;
    gap: 180px;
  }
  .hotspring .detail-item:nth-child(1) .detail-item-img._02 {
    width: 31.1%;
    height: 336px;
    bottom: 51%;
    left: 75%;
    margin: 0;
  }
  .hotspring .detail-item:nth-child(1) .detail-item-imgL._02 {
    width: 31.1%;
    height: 336px;
    bottom: 57%;
    left: 40%;
    margin: 0;
  }
  .hotspring .detail-item-txt {
    width: fit-content;
    top: 65.3%;
    left: 38%;
  }
  .hotspring .detail-btn {
    margin-bottom: 170px;
  }

  /* facility */
  .facility .top-deco._01 {
    width: 390px;
    top: 65px;
  }
  .facility .top-deco._02 {
    width: 245px;
    top: 90px;
  }
  .facility .section-contents .sub-ttl::before,
  .facility .section-contents .sub-ttl::after {
    width: 60px;
    height: 64px;
  }
  .facility .section-contents .sub-ttl {
    margin: 80px auto 20px;
  }
  .facility .section-contents .sub-ttl:nth-child(5),
  .facility .section-contents .sub-ttl:nth-child(8),
  .facility .section-contents .sub-ttl:nth-child(11) {
    margin: 120px auto 20px;
  }
  .facility .detail {
    margin: 125px auto 0;
    gap: 180px;
  }
  .facility .detail._01 .detail-item:nth-child(1) {
    margin-left: 0;
    margin-right: auto;
  }
  .facility .detail._01 .detail-item:nth-child(1) .detail-item-img._02 {
    width: 32.2%;
    height: 200px;
    top: -18.5%;
    left: -10.3%;
  }
  .facility .detail._01 .detail-item-txt {
    width: 58%;
    top: 45.5%;
    left: 2.4%;
  }
  .facility .detail._01 .detail-item:nth-child(1) .detail-item-deco {
    width: 180px;
    top: 79%;
    left: -10%;
  }

  .facility .detail._02 .detail-item:nth-child(1) .detail-item-img._02 {
    top: -28%;
    left: 73%;
  }
  .facility .detail._02 .detail-item:nth-child(1) .detail-item-txt {
    width: fit-content;
    top: 45.5%;
    left: 38%;
  }
  .facility .detail._02 .detail-item:nth-child(1) .detail-item-deco {
    width: 260px;
    top: 12%;
    right: -20%;
  }

  .facility .detail._03 .detail-item {
    margin-right: auto;
    margin-left: 0;
  }
  .facility .detail._03 .detail-item:nth-child(1) .detail-item-img._02 {
    width: 32.2%;
    height: 200px;
    top: -18.5%;
    left: -14.5%;
  }
  .facility .detail._03 .detail-item:nth-child(1) .detail-item-txt {
    width: 57%;
    top: 36.5%;
    left: 2.3%;
  }
  .facility .detail._03 .detail-item:nth-child(1) .detail-item-deco {
    width: 200px;
    top: 82%;
    left: -8%;
  }

  .facility .detail._04 .detail-item:nth-child(1) .detail-item-img._02 {
    width: 32.2%;
    height: 200px;
    top: -22%;
    right: -7.5%;
  }
  .facility .detail._04 .detail-item:nth-child(1) .detail-item-ttl {
    width: fit-content;
    top: 35.5%;
    left: 37.5%;
  }
  .facility .detail._04 .detail-item:nth-child(1) .detail-item-txt {
    width: fit-content;
    top: 42.5%;
    left: 37.5%;
  }
  .facility .detail._04 .detail-item:nth-child(1) .detail-item-deco {
    width: 235px;
    top: 80%;
    right: -12.5%;
  }

  .facility .section-contents .detail-btn:last-of-type {
    margin-bottom: 170px;
  }

  /* information */
  .information .top-deco._01 {
    width: 605px;
    top: 40px;
  }
  .information .top-deco._02 {
    width: 185px;
    top: 100px;
  }
  .information .section-contents .sub-ttl {
    margin: 80px auto 20px;
  }
  .information .section-contents .sub-ttl:last-of-type {
    margin: 120px auto 20px;
  }
  .information .section-contents .sub-ttl::before,
  .information .section-contents .sub-ttl::after {
    width: 60px;
    height: 64px;
  }
  .information .section-contents {
    padding-bottom: 265px;
  }
  .information .detail {
    margin: 400px auto 0;
    max-width: 1200px;
  }
  .detail._center .detail-item {
    width: 100%;
    border-radius: 20px 20px 20px 20px;
    height: 190px;
    min-height: 0;
  }

  .information .detail .detail-item:nth-child(1) .detail-item-img._01 {
    width: 670px;
    height: 400px;
    top: -176%;
    left: 50%;
    transform: translateX(-50%);
  }
  .information .detail .detail-item:nth-child(1) .detail-item-img._01 img {
    height: 100%;
    object-fit: cover;
    border-radius: 5%;
  }
  .information .detail-item-img._02 {
    width: 24.2%;
    top: -190%;
    left: 0;
    z-index: -1;
  }
  .information .detail-item-img._03 {
    width: 17%;
    height: 140px;
    top: -115%;
    right: 2%;
  }
  .information .detail-item-txt {
    bottom: 18.5%;
    left: 2%;
  }

  .information .detail .detail-item:nth-child(1) .detail-item-deco._01 {
    width: 190px;
    top: -200%;
    right: 15%;
  }
  .information .detail .detail-item:nth-child(1) .detail-item-deco._02 {
    width: 170px;
    top: -25%;
    left: 9%;
  }

  .information .accordion-contents-img {
    width: 100%;
    height: 360px;
  }
  .information .accordion-contents-img img {
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
  }

  .information-slider {
    height: 17.5vw;
    margin-top: 100px;
  }
  .information-sliderList {
    column-gap: 22px;
    padding: 0 11px;
  }

  /* relatedInfo */
  .relatedInfo-bg {
    width: 100%;
    height: 3vw;
    background-color: #fff;
    border-top: min(0.31vw, 5px) #c61217 solid;
    position: absolute;
    top: max(-3vw, -43.5px);
    left: 0;
  }
  .relatedInfo-ttl {
    max-width: 1440px;
    top: max(-14vw, -200px);
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
  .relatedInfo-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 20px 0;
  }

  /* 共通アコーディオン */
  .p-accordion__btn {
    padding-left: 24px;
  }
  .section-contents .accordion-ttl {
    text-align: left;
  }
}

@media only screen and (min-width: 1050px) {
  .c-button-main._limited {
    min-width: min(500px, 100%);
  }
}
