@charset "UTF-8";
/* -------------------------------
//. コンポーネント
------------------------------- */
.c-top-note01 {
  color: #b33253;
  display: block;
  font-size: 15px;
}
@media (max-width: 640px) {
  .c-top-note01 {
    font-size: 13px;
  }
}

.c-list-disc li {
  list-style: disc;
  margin-left: 24px;
}

.c-top-heading-sec {
  font-family: "Yu Mincho", "YuMincho", serif;
  font-size: 14px;
  margin-bottom: 48px;
  padding-bottom: 72px;
  position: relative;
  text-align: center;
}
@media (max-width: 1024px) {
  .c-top-heading-sec {
    margin-bottom: 36px;
    padding-bottom: 54px;
  }
}
@media (max-width: 640px) {
  .c-top-heading-sec {
    font-size: 12px;
    margin-bottom: 26px;
    padding-bottom: 40px;
  }
}
.c-top-heading-sec::before {
  content: attr(data-en);
  display: block;
  font-size: 40px;
  font-weight: 500;
  line-height: 2;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .c-top-heading-sec::before {
    font-size: 30px;
  }
}
@media (max-width: 640px) {
  .c-top-heading-sec::before {
    font-size: 22px;
  }
}
.c-top-heading-sec::after {
  content: "";
  background-color: #8e7f64;
  display: block;
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
}
@media (max-width: 1024px) {
  .c-top-heading-sec::after {
    width: 45px;
  }
}
@media (max-width: 640px) {
  .c-top-heading-sec::after {
    width: 33px;
  }
}

.c-top-heading-sub {
  font-family: "Yu Mincho", "YuMincho", serif;
  font-size: 20px;
  font-weight: 500;
  margin-top: 40px;
  margin-bottom: 32px;
  position: relative;
  text-align: center;
}
@media (max-width: 1024px) {
  .c-top-heading-sub {
    font-size: 18px;
  }
}
.c-top-heading-sub::before {
  content: "";
  background-color: #8e7f64;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 1px;
}

.c-top-btn01 {
  background-color: #101820;
  box-sizing: border-box;
  color: #fff;
  display: block;
  max-width: 480px;
  padding: 10px 20px;
  text-align: center;
  transition: 0.3s;
  width: 100%;
}
.c-top-btn01:hover {
  background-color: #8e7f64;
  color: #fff;
}

.c-top-btn02 {
  border: 1px solid #8e7f64;
  box-sizing: border-box;
  color: #8e7f64;
  display: block;
  font-size: 14px;
  padding: 6px 20px;
  text-align: center;
  transition: 0.3s;
  width: 160px;
}
.c-top-btn02:hover {
  background-color: #8e7f64;
  color: #fff;
}

.c-top-btn03 {
  background-color: #8e7f64;
  box-sizing: border-box;
  color: #fff;
  display: block;
  padding: 10px 20px;
  position: relative;
  text-align: center;
  width: 100%;
}
.c-top-btn03::after {
  content: "";
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  display: block;
  position: absolute;
  top: calc(50% - 4px);
  right: 24px;
  transform: rotate(45deg);
  transition: transform 0.3s;
  width: 9px;
  height: 9px;
}
.c-top-btn03:hover {
  color: #fff;
}
.c-top-btn03:hover::after {
  transform: translateX(8px) rotate(45deg);
}
.c-top-btn03--alpha {
  background-color: #fff;
  border: 1px solid #8e7f64;
  color: #8e7f64;
}
.c-top-btn03--alpha::after {
  border-top-color: #8e7f64;
  border-right-color: #8e7f64;
}
.c-top-btn03--alpha:hover {
  color: #8e7f64;
}

.c-top-table01 {
  border-top: 1px solid #ccc;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  margin-top: 16px;
  margin-bottom: 16px;
  width: 100%;
}
@media (max-width: 768px) {
  .c-top-table01 {
    flex-direction: column;
  }
}
.c-top-table01 > dt, .c-top-table01 > dd {
  box-sizing: border-box;
  border-bottom: 1px solid #ccc;
  padding: 8px 20px;
}
@media (max-width: 768px) {
  .c-top-table01 > dt, .c-top-table01 > dd {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.c-top-table01 > dt {
  background-color: #f1f1f1;
  font-weight: 500;
  width: 170px;
}
@media (max-width: 768px) {
  .c-top-table01 > dt {
    border-bottom: none;
    width: 100%;
  }
}
.c-top-table01 > dd {
  width: calc(100% - 170px);
}
@media (max-width: 768px) {
  .c-top-table01 > dd {
    width: 100%;
  }
}
.c-top-table01 > dd > p:not(:last-child) {
  margin-bottom: 16px;
}
.c-top-table01__list {
	display: grid;
	grid-template-columns: 20% 80%;
	row-gap: 5px;
}
@media (max-width: 768px) {
  .c-top-table01__list {
    display: block;
  }
  .c-top-table01__list > dt {
    font-weight: 700;
  }
  .c-top-table01__list > dd {
    margin-bottom: 5px;
  }
}
.c-top-table02 {
  border-top: 1px solid #ccc;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  margin-top: 16px;
  margin-bottom: 16px;
  width: 100%;
}
@media (max-width: 768px) {
  .c-top-table02 {
    flex-direction: column;
    font-size: 13px;
  }
}
.c-top-table02 > dt, .c-top-table02 > dd {
  box-sizing: border-box;
  border-bottom: 1px solid #ccc;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 8px 12px;
}
.c-top-table02 > dt {
  background-color: #f1f1f1;
  font-weight: 500;
  width: 120px;
}
@media (max-width: 768px) {
  .c-top-table02 > dt {
    border-bottom: none;
    width: 100%;
  }
}
.c-top-table02 > dd {
  width: calc(100% - 120px);
}
@media (max-width: 768px) {
  .c-top-table02 > dd {
    width: 100%;
  }
}
.c-top-table02 + p {
  margin-top: 16px;
}

.c-top-slider-arrow {
  background-color: #686869 !important;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  outline: none;
  position: absolute;
  transition: background-color 0.3s, opacity 0.7s;
  width: 40px !important;
  height: 40px !important;
  z-index: 1;
}
.c-top-slider-arrow:hover {
  background-color: #8e7f64 !important;
}
.c-top-slider-arrow::before {
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  display: block;
  position: absolute;
  top: 11px;
  transition: 0.3s;
  width: 16px;
  height: 16px;
}
.c-top-slider-arrow--prev {
  left: 32px;
}
.c-top-slider-arrow--prev::before {
  left: 15px;
  transform: rotate(-135deg);
}
.c-top-slider-arrow--next {
  right: 32px;
}
.c-top-slider-arrow--next::before {
  right: 15px;
  transform: rotate(45deg);
}

/* -------------------------------
//. レイアウト
------------------------------- */
.l-kv-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.l-kv-slider__inner {
  margin-bottom: 16px;
  min-width: 960px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
@media (max-width: 640px) {
  .l-kv-slider__inner {
    min-width: 640px;
  }
}
.l-kv-slider__img {
  max-width: 100%;
  height: auto;
}
.l-kv-slider__bestrate {
  position: absolute;
  right: 20px;
  bottom: 66px;
  width: 272px;
}
@media (max-width: 1024px) {
  .l-kv-slider__bestrate {
    min-width: 224px;
    width: 26.5625vw;
  }
}
.l-kv-slider__bestrate a {
  display: block;
}
.l-kv-slider__bestrate img {
  max-width: 100%;
  height: auto;
  transition: 0.3s;
}
.l-kv-slider__dots {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.l-kv-slider__dots li {
  background-color: #c0c0c0;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
  width: 9px;
  height: 9px;
}
.l-kv-slider__dots li button {
  display: none;
}
.l-kv-slider__dots li.slick-active {
  background-color: #101820;
}

.l-top-section {
  color: #686869;
  display: flex;
  font-size: 16px;
  line-height: 1.8;
  justify-content: center;
  width: 100%;
}
@media (max-width: 640px) {
  .l-top-section {
    font-size: 14px;
  }
}
.l-top-section--bg_gray {
  background-color: #f5f5f5;
}
.l-top-section__inner {
  box-sizing: border-box;
  margin: 120px 0;
  max-width: 1200px;
  padding: 0 20px;
  width: 100%;
}
@media (max-width: 1024px) {
  .l-top-section__inner {
    margin: 90px 0;
  }
}
@media (max-width: 768px) {
  .l-top-section__inner {
    margin: 66px 0;
  }
}
.l-top-section__lead {
  margin-bottom: 24px;
  text-align: center;
}
@media (max-width: 768px) {
  .l-top-section__lead {
    text-align: inherit;
  }
}

.l-top-section__lead-secondary {
  padding-left: 16px;
}

.l-top-section__lead-secondary__link {
  transition: 0.3s;
  position: relative;
}
.l-top-section__lead-secondary__link:hover {
  border-bottom: #8e7f64 1px solid;
  color: #8e7f64;
}

.l-top-section__lead-secondary__link::before {
  content: "";
  border-top: 1px solid #a19bad;
  border-right: 1px solid #a19bad;
  display: block;
  position: absolute;
  top: 10px;
  left: -13px;
  transform: rotate(45deg);
  width: 5px;
  height: 5px;
}


.l-top-section__btn {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  width: 100%;
}

.l-top-section--recommend + .l-top-section--news {
  margin-top: -120px;
}
@media (max-width: 1024px) {
  .l-top-section--recommend + .l-top-section--news {
    margin-top: -90px;
  }
}
@media (max-width: 768px) {
  .l-top-section--recommend + .l-top-section--news {
    margin-top: -66px;
  }
}

.l-top-photos {
  display: flex;
  justify-content: center;
  gap: 20px 4%;
  width: 100%;
}
@media (max-width: 640px) {
  .l-top-photos {
    flex-direction: column;
    align-items: center;
  }
}
.l-top-photos:not(:last-child) {
  margin-bottom: 40px;
}
.l-top-photos__item {
  width: 30.6666666667%;
}
@media (max-width: 640px) {
  .l-top-photos__item {
    max-width: 360px;
    width: 90%;
  }
}
.l-top-photos__item img {
  max-width: 100%;
  height: auto;
}

.l-sns-menu {
  background-color: #101820;
  box-sizing: border-box;
  padding: 50px 80px;
  width: 100%;
}
@media (max-width: 1280px) {
  .l-sns-menu {
    padding-left: 6.25vw;
    padding-right: 6.25vw;
  }
}
@media (max-width: 768px) {
  .l-sns-menu {
    padding: 26px 30px;
  }
}
.l-sns-menu__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 4%;
  margin: auto;
  max-width: 1160px;
  padding: 0 8px;
  width: 100%;
}
.l-sns-menu__link {
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1.2;
  transition: 0.3s;
  width: 48%;
  height: 92px;
}
@media (max-width: 768px) {
  .l-sns-menu__link {
    font-size: 14px;
    width: 100%;
    height: 69px;
  }
}
.l-sns-menu__link:hover {
  color: #fff;
}
.l-sns-menu__link i {
  font-size: 37px;
  margin-right: 12px;
}
@media (max-width: 768px) {
  .l-sns-menu__link i {
    font-size: 28px;
  }
}
.l-sns-menu__link--none {
  display: none;
}

/* -------------------------------
//. トップページ
------------------------------- */
.top-recommend {
  width: 100%;
}

.top-recommend-box {
  /*
  margin-right: -20px;
  margin-left: -20px;
  width: calc(100% + 40px);
  */
  width: 100%;
}
@media (max-width: 768px) {
  .top-recommend-box {
    margin: auto;
    max-width: 560px;
    width: 100%;
  }
}
.top-recommend-box--stick {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .top-recommend-box--stick {
    flex-direction: column;
    gap: 32px;
  }
}
.top-recommend-box__item {
  margin: 0 20px;
  max-width: 560px;
  width: 100%;
}
@media (max-width: 768px) {
  .top-recommend-box__item {
    margin: unset;
  }
}
.top-recommend-box__link {
  display: block;
}
.top-recommend-box__link img {
  max-width: 100%;
  transition: 0.3s;
  height: auto;
}
.top-recommend-box:hover .c-top-slider-arrow {
  opacity: 1;
}
@media (max-width: 768px) {
  .top-recommend-box:hover .c-top-slider-arrow {
    opacity: 0;
  }
}
.top-recommend-box__arrow--prev, .top-recommend-box__arrow--next {
  top: calc(50% - 20px);
}

.top-news {
  margin: auto;
  max-width: 1024px;
  width: 100%;
}
.top-news__inner {
  width: 100%;
}

.top-news-entry {
  border-bottom: 1px solid #ccc;
  width: 100%;
}
.top-news-entry__link {
  display: flex;
  align-items: center;
  padding: 12px 0;
  transition: 0.3s;
  width: 100%;
}
@media (max-width: 768px) {
  .top-news-entry__link {
    flex-direction: column;
  }
}
.top-news-entry__link:hover {
  opacity: 0.5;
}
.top-news-entry__date {
  box-sizing: border-box;
  padding: 0 20px;
  text-align: center;
  width: 140px;
}
@media (max-width: 768px) {
  .top-news-entry__date {
    text-align: inherit;
    width: 100%;
  }
}
.top-news-entry__ttl {
  box-sizing: border-box;
  padding: 0 20px;
  width: calc(100% - 140px);
}
@media (max-width: 768px) {
  .top-news-entry__ttl {
    width: 100%;
  }
}

.top-room {
  width: 100%;
}

.top-room-point {
  margin-top: 40px;
  margin-right: -20px;
  margin-bottom: 40px;
  margin-left: -20px;
  width: calc(100% + 40px);
}
@media (max-width: 768px) {
  .top-room-point {
    max-width: 560px;
    margin: 0 auto 40px;
    width: 100%;
  }
}
.top-room-point--stick {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .top-room-point--stick {
    flex-direction: column;
    gap: 32px;
  }
}
.top-room-point .slick-track {
  display: flex;
}
.top-room-point .slick-slide {
  height: auto;
}
.top-room-point:hover .c-top-slider-arrow {
  opacity: 1;
}
@media (max-width: 768px) {
  .top-room-point:hover .c-top-slider-arrow {
    opacity: 0;
  }
}

.top-room-point-item {
  background-color: #fff;
  box-sizing: border-box;
  margin: 0 20px;
  max-width: 560px;
  position: relative;
  width: 100%;
}
@media (max-width: 768px) {
  .top-room-point-item {
    margin: unset;
  }
}
.top-room-point-item__pic {
  width: 100%;
}
.top-room-point-item__pic img {
  max-width: 100%;
}
.top-room-point-item__inner {
  box-sizing: border-box;
  padding: 24px 40px;
  width: 100%;
}
@media (max-width: 640px) {
  .top-room-point-item__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.top-room-point-item__inner--has_btn {
  padding-bottom: 88px;
}
.top-room-point-item__name {
  font-family: "Yu Mincho", "YuMincho", serif;
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 12px;
  text-align: center;
}
.top-room-point-item__btn {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 24px;
  left: 0;
  width: 100%;
}
.top-room-point-item__arrow--prev, .top-room-point-item__arrow--next {
  top: calc(50% - 20px);
}

.top-breakfast {
  width: 100%;
}

.top-breakfast-info {
  margin: auto;
  margin-bottom: 24px;
  max-width: 760px;
  width: 100%;
}

.top-facility {
  width: 100%;
}

.top-facility-point {
  margin-top: 40px;
  /*margin-right: -20px;*/
  margin-bottom: 40px;
  /*margin-left: -20px;*/
  width: 100%;
  /*width: calc(100% + 40px);*/
}
@media (max-width: 768px) {
  .top-facility-point {
    max-width: 560px;
    margin: 0 auto 40px;
    width: 100%;
  }
}
.top-facility-point--stick {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .top-facility-point--stick {
    flex-direction: column;
    gap: 32px;
  }
}
.top-facility-point .slick-track {
  display: flex;
}
.top-facility-point .slick-slide {
  height: auto;
}
@media (max-width: 768px) {
  .top-facility-point .slick-slide {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.top-facility-point:hover .c-top-slider-arrow {
  opacity: 1;
}
@media (max-width: 768px) {
  .top-facility-point:hover .c-top-slider-arrow {
    opacity: 0;
  }
}

.top-facility-point-item {
  background-color: #fff;
  box-sizing: border-box;
  margin: 0 20px;
  max-width: 560px;
  position: relative;
  width: 100%;
}
@media (max-width: 768px) {
  .top-facility-point-item {
    margin: unset;
  }
}
.top-facility-point-item__pic {
  width: 100%;
}
.top-facility-point-item__pic img {
  max-width: 100%;
}
.top-facility-point-item__inner {
  box-sizing: border-box;
  padding: 24px 40px;
  width: 100%;
}
@media (max-width: 640px) {
  .top-facility-point-item__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.top-facility-point-item__inner--has_btn {
  padding-bottom: 88px;
}
.top-facility-point-item__name {
  font-family: "Yu Mincho", "YuMincho", serif;
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 12px;
  text-align: center;
}
.top-facility-point-item__txt {
  margin-bottom: 16px;
}
.top-facility-point-item__btn {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 24px;
  left: 0;
  width: 100%;
}
.top-facility-point-item__arrow--prev, .top-facility-point-item__arrow--next {
  top: calc(50% - 20px);
}
.top-facility-point-item__flex-in-table {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.top-facility-point-item__flex-in-table > dt {
  flex-grow: 1;
  width: 110px;
}
.top-facility-point-item__flex-in-table > dd {
  flex-grow: 1;
  margin-left: 13px;
  min-width: 126px;
  width: calc(100% - 126px);
}

.top-access {
  width: 100%;
}

.top-access-map {
  margin-bottom: 40px;
  padding-top: 56.25%;
  position: relative;
  width: 100%;
  height: 0;
}
.top-access-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.top-access-info {
  margin: auto;
  margin-bottom: 24px;
  max-width: 960px;
  width: 100%;
}
.top-access-info__root-list li:nth-child(n+2) {
  margin-top: 16px;
}
.top-access-info__tel {
  color: #686869;
}
.top-access-info__tel:hover {
  color: inherit;
}
.top-access-info__img img {
  max-width: 100%;
}
.top-access-info__btn {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .top-access-info__btn {
    display: flex;
    justify-content: center;
  }
}

/* -------------------------------
//. 20220914 予約モジュール
------------------------------- */
.top-reservation {
  /*background-color: rgb(18, 18, 18);*/
  margin-top: 6px;
  padding: 0 16px;
}
@media (max-width: 1024px) {
  .top-reservation {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.top-reservation #search-box-root {
  margin: auto;
  max-width: 1024px;
}

/* -------------------------------
//. 20220924 静的重要なお知らせ（元：公式サイトのリニューアルに関するご案内）
------------------------------- */
.attention-board {
  background-color: #F2EFDF;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-top: -52px;
  padding: 0 15px;
  width: 100%;
}
.attention-board__inner {
  margin: 32px 0;
  max-width: 1000px;
  text-align: center;
  width: 100%;
}
@media (max-width: 1024px) {
  .attention-board__inner {
    margin-top: 54px;
    margin-bottom: 54px;
  }
}
@media (max-width: 768px) {
  .attention-board__inner {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.attention-board__heading {
  font-family: "Yu Mincho", "YuMincho", serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 24px;
  position: relative;
}
@media (max-width: 640px) {
  .attention-board__heading {
    font-size: 20px;
  }
}
.attention-board__heading::after {
  content: "";
  background-color: #8e7f64;
  display: block;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
}
.attention-board__list {
  display: none;
  margin-top: 24px;
  text-align: initial;
}
@media (max-width: 1024px) {
  .attention-board__list {
    margin-top: 32px;
  }
}
.attention-board__item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
}
.attention-board__item:first-child {
  margin-bottom: 32px;
}
.attention-board__item:first-child::after {
  content: "";
  background-color: #8e7f64;
  display: block;
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 100%;
  height: 1px;
}
@media (max-width: 1024px) {
  .attention-board__item:first-child::after {
    content: none;
  }
}
.attention-board__txt {
  width: calc(100% - 348px);
}
@media (max-width: 1024px) {
  .attention-board__txt {
    width: 100%;
  }
}
.attention-board__ttl {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
}
.attention-board__btn {
  max-width: 332px;
  width: 100%;
}
@media (max-width: 1024px) {
  .attention-board__btn {
    margin: auto;
  }
}
.attention-board__toggle {
  background-color: #101820;
  box-sizing: border-box;
  cursor: pointer;
  margin: 24px auto 0;
  padding: 8px;
  position: relative;
  width: 200px;
}
@media (max-width: 1024px) {
  .attention-board__toggle {
    max-width: 332px;
    width: 100%;
  }
}
@media (max-width: 640px) {
  .attention-board__toggle {
    margin: 8px auto;
  }
}
.attention-board__toggle span {
  color: #fff;
  padding-right: 24px;
  position: relative;
}
.attention-board__toggle span::after {
  content: "";
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  display: block;
  position: absolute;
  top: calc(50% - 6px);
  right: 0;
  transform: rotate(45deg);
  transition: transform 0.3s;
  width: 9px;
  height: 9px;
}
.attention-board__toggle.active span::after {
  transform: translateY(4px) rotate(-135deg);
}
.attention-board__toggle.-linked {
  display: block;
}
.attention-board__toggle.-linked span::after {
  top: calc(50% - 4px);
  transform: rotate(-45deg);
}
.attention-board__toggle.-linked:hover span::after {
  transform: translateX(4px) rotate(-45deg);
}
.attention-board .attention {
  color: #b33253;
}

.l-top-section.-attention-board {
  margin-bottom: -120px;
}
@media (max-width: 1024px) {
  .l-top-section.-attention-board {
    margin-bottom: -90px;
  }
}
@media (max-width: 768px) {
  .l-top-section.-attention-board {
    margin-bottom: -66px;
  }
}

/* -------------------------------
//. 臨時のお知らせ等一時的なスタイル
------------------------------- */
.info-change-system {
  background-color: #F2EFDF;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-top: -52px;
  padding: 0 15px;
  width: 100%;
}
.info-change-system__inner {
  margin: 32px 0;
  max-width: 1000px;
  text-align: center;
  width: 100%;
}
@media (max-width: 1024px) {
  .info-change-system__inner {
    margin-top: 54px;
    margin-bottom: 54px;
  }
}
@media (max-width: 768px) {
  .info-change-system__inner {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.info-change-system__heading {
  font-family: "Yu Mincho", "YuMincho", serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 24px;
  position: relative;
}
@media (max-width: 640px) {
  .info-change-system__heading {
    font-size: 20px;
  }
}
.info-change-system__heading::after {
  content: "";
  background-color: #8e7f64;
  display: block;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
}
.info-change-system__list {
  display: none;
  margin-top: 24px;
  text-align: initial;
}
@media (max-width: 1024px) {
  .info-change-system__list {
    margin-top: 32px;
  }
}
.info-change-system__item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
}
.info-change-system__item:first-child {
  margin-bottom: 32px;
}
.info-change-system__item:first-child::after {
  content: "";
  background-color: #8e7f64;
  display: block;
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 100%;
  height: 1px;
}
@media (max-width: 1024px) {
  .info-change-system__item:first-child::after {
    content: none;
  }
}
.info-change-system__txt {
  width: calc(100% - 348px);
}
@media (max-width: 1024px) {
  .info-change-system__txt {
    width: 100%;
  }
}
.info-change-system__ttl {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
}
.info-change-system__btn {
  max-width: 332px;
  width: 100%;
}
@media (max-width: 1024px) {
  .info-change-system__btn {
    margin: auto;
  }
}
.info-change-system__toggle {
  background-color: #101820;
  box-sizing: border-box;
  cursor: pointer;
  margin: 24px auto 0;
  padding: 8px;
  position: relative;
  width: 200px;
}
@media (max-width: 1024px) {
  .info-change-system__toggle {
    max-width: 332px;
    width: 100%;
  }
}
@media (max-width: 640px) {
  .info-change-system__toggle {
    margin: 8px auto;
  }
}
.info-change-system__toggle span {
  color: #fff;
  padding-right: 24px;
  position: relative;
}
.info-change-system__toggle span::after {
  content: "";
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  display: block;
  position: absolute;
  top: calc(50% - 6px);
  right: 0;
  transform: rotate(45deg);
  transition: transform 0.3s;
  width: 9px;
  height: 9px;
}
.info-change-system__toggle.active span::after {
  transform: translateY(4px) rotate(-135deg);
}
.info-change-system .attention {
  color: #b33253;
}

.l-top-section--info-change-system + .l-top-section--recommend,
.l-top-section--info-change-system + .l-top-section--news {
  margin-top: -120px;
}
@media (max-width: 1024px) {
  .l-top-section--info-change-system + .l-top-section--recommend,
.l-top-section--info-change-system + .l-top-section--news {
    margin-top: -90px;
  }
}
@media (max-width: 768px) {
  .l-top-section--info-change-system + .l-top-section--recommend,
.l-top-section--info-change-system + .l-top-section--news {
    margin-top: -66px;
  }
}

.l-top-section .movieArea {
	margin-bottom: 60px;
}
.movieArea iframe {
	width: 100%;
	display: block;
	margin: 0 auto;
	aspect-ratio: 16/9;
	max-width: 1140px;
}
@media (max-width: 896px) {
  	.movieArea iframe {
		width: 100%;
	}
}