@charset "UTF-8";
/* --------------------------------------------------------------------------------------------
　↓ 初期設定
---------------------------------------------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: clip;
  font-family: "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "MS PMincho", serif;
  background-color: #ffffff;
  color: #111111;
  letter-spacing: 2px;
  transition: 0.3s;
}

/* 本文 */
p,
a,
li,
span {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.9;
  letter-spacing: 0.02em;
}

/* 見出し */
h1 {
  font-size: clamp(30px, 4.6vw, 44px);
  line-height: 1.25;
}

h2 {
  font-size: clamp(24px, 3.8vw, 36px);
  line-height: 1.3;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
h2 span {
  font-size: 0.45em;
}

h3 {
  font-size: clamp(20px, 3.2vw, 30px);
  line-height: 1.35;
}

h4 {
  font-size: clamp(18px, 2.6vw, 24px);
  line-height: 1.5;
}

h5 {
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.6;
}

dl,
ol,
ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

/* ↓ scroll促しデザイン (pc用)*/
@media (max-width: 1024px) {
  .pc-scroll {
    display: none;
  }
}

.scroll-down_pc {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-family: serif;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

.mouse-icon {
  width: 30px;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 20px;
  position: relative;
  margin-inline: auto;
  margin-bottom: 6px;
}

.mouse-icon::before {
  content: "";
  width: 1px;
  height: 8px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 2px;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
}
@media (min-width: 1025px) {
  .sp-scroll {
    display: none;
  }
}

.scroll-down_sp {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-family: serif;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

.circle-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
  position: relative;
  margin-bottom: 12px;
  margin-inline: auto;
  animation: pulse 2s infinite;
}

.circle-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.logo-18-color {
  fill: #D57392;
}

.btn {
  border: 1px solid black;
  text-align: center;
  transition: background-color 0.3s ease, border 0.3s ease;
}
.btn a {
  color: black;
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px;
  box-sizing: border-box;
  transition: color 0.3s ease;
}
.btn:hover {
  background-color: #D57392;
  border: 1px solid #ffffff;
}
.btn:hover a {
  color: #ffffff;
}
.btn:hover.btn9::before {
  top: 0;
  right: 0;
  border-top: 0 solid #ffffff;
  border-right: 14px solid #ffffff;
}
.btn.btn9 {
  position: relative;
}
.btn.btn9::before {
  content: "";
  border: 14px solid transparent;
  border-top: 0 solid black;
  border-right: 14px solid black;
  position: absolute;
  top: 3px;
  right: 3px;
  transition: top 0.3s ease, right 0.3s ease, border-top 0.3s ease, border-right 0.3s ease;
}

section {
  padding: 100px 10px 50px;
}
section [class$=contents] {
  padding: 25px 0 0;
}

.slash {
  width: 1px;
  height: 20px;
  background-color: #111111;
  transform: rotate(5deg);
}

.section-explanation {
  padding: 20px 0;
  text-align: center;
}

.fa-solid {
  padding-right: 8px;
}

@media (max-width: 768px) {
  section {
    padding-top: 10vw;
    padding-bottom: 5vw;
  }
  section [class$=contents] {
    padding: 1.6666666667vw 0 0;
  }
}
@media (max-width: 480px) {
  p,
  a,
  li,
  span {
    font-size: 3.8vw;
    /* 375px幅で約14.2px */
  }
  h1 {
    font-size: 8vw;
    /* 375px幅で約30px */
  }
  h2 {
    font-size: 6.4vw;
    /* 約24px */
  }
  h3 {
    font-size: 5.4vw;
    /* 約20px */
  }
  h4 {
    font-size: 4.6vw;
    /* 約17px */
  }
  h5 {
    font-size: 4vw;
    /* 約15px */
  }
  .section-explanation {
    padding: 3.5vw 0 1.5vw;
  }
}
/* --------------------------------------------------------------------------------------------
　↑ 初期設定
---------------------------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------------------------
　↓ 年齢確認
---------------------------------------------------------------------------------------------*/
.agegate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.75);
}

.agegate__inner {
  width: min(520px, 100%);
  border-radius: 18px;
  padding: 22px 18px;
  background: #fff;
  text-align: center;
}

.agegate__title {
  margin: 0 0 10px;
}

.agegate__text {
  margin: 0 0 16px;
  line-height: 1.8;
}

.agegate__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.agegate__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 10px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  cursor: pointer;
  text-decoration: none;
}

.agegate__btn--yes {
  background: #000;
  color: #fff;
}

.agegate__btn--no {
  background: #f3f3f3;
  color: #111;
}

.agegate__note {
  margin: 14px 0 0;
  opacity: 0.8;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .agegate__buttons {
    grid-template-columns: 1fr;
  }
}
/* --------------------------------------------------------------------------------------------
　↑ 年齢確認
---------------------------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------------------------
　↓ 各ページトップ画像およびタイトル
---------------------------------------------------------------------------------------------*/
.page-title {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  height: 50vh;
  color: #fff;
}
.page-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.06);
  transition: transform 1.4s ease;
  will-change: transform;
  z-index: -2;
}
body.is-loaded .page-title::before {
  transform: scale(1);
}
.page-title::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  z-index: -1;
  pointer-events: none;
}
.page-title__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0) 55%);
  z-index: -1;
  pointer-events: none;
}
.page-title__inner {
  position: absolute;
  top: 50%;
  left: 10%;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: inherit;
  display: grid;
  align-content: center;
  gap: 8px;
}
.page-title h1 {
  margin: 0;
  font-size: clamp(22px, 3.2vw, 40px);
  letter-spacing: 0.06em;
  line-height: 1.2;
  opacity: 0;
  transform: translateX(-18px);
  filter: blur(6px);
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
  will-change: opacity, transform, filter;
}
body.is-loaded .page-title h1 {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}
.page-title__sub {
  margin: 0;
  font-size: 0.5em;
  letter-spacing: 0.28em;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .page-title {
    height: 45vw;
  }
  .page-title__inner {
    left: 5%;
  }
}
/* --------------------------------------------------------------------------------------------
　↑ 各ページトップ画像およびタイトル
---------------------------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------------------------
　↓ トップ画像スライド
---------------------------------------------------------------------------------------------*/
.grid7-wrap {
  width: 100%;
  height: 100vh;
  display: grid;
  grid-template-rows: 1fr 1fr;
  position: relative;
}

.grid7-wrap__text {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.grid7-wrap__text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 5px;
  background: rgba(0, 0, 0, 0.7490196078);
  transform: translateX(-100%) translateY(-50%);
  animation: line-move 1.2s ease-out forwards, line-expand 1.2s ease forwards;
  animation-delay: 0s, 1.2s;
  z-index: 1;
}

.grid7-wrap__intro {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  max-width: 400px;
  z-index: 2;
  opacity: 0;
  transform: translate(-50%, -50%);
  animation: intro-in 2s ease-out forwards;
  animation-delay: 1.6s;
}

.grid7-wrap__logo {
  height: auto;
  display: block;
  width: 100%;
}

@keyframes intro-in {
  from {
    opacity: 0;
    transform: translate(-50%, -50%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
@keyframes line-move {
  from {
    transform: translateX(-100%) translateY(-50%);
  }
  to {
    transform: translateX(0) translateY(-50%);
  }
}
@keyframes line-expand {
  from {
    height: 5px;
    top: 50%;
  }
  to {
    height: 150px;
    top: 50%;
  }
}
/* 上段/下段の行 */
.row {
  display: grid;
  gap: 0;
}

.row--top {
  grid-template-columns: repeat(4, 1fr);
}

.row--bottom {
  grid-template-columns: repeat(3, 1fr);
}

/* 各マス */
.cell {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

/* Slick：マス全面にフィット */
.js-room-slider,
.js-room-slider .slick-list,
.js-room-slider .slick-track {
  height: 100%;
}

.js-room-slider .slide {
  height: 100%;
}

.js-room-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
}

/* 文字の見やすさ（薄いグラデ） */
.cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0) 60%);
  pointer-events: none;
  z-index: 1;
}

/* 768px以下：下段を消して、上4つを2×2で100vhにピッタリ */
@media (max-width: 768px) {
  .grid7-wrap {
    grid-template-rows: 1fr;
    height: 100vh;
  }
  .row--bottom {
    display: none;
  }
  .row--top {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  .row--top .cell {
    height: 100%;
  }
}
@media (max-width: 480px) {
  .grid7-wrap__intro {
    max-width: 70%;
  }
  .grid7-wrap__logo {
    margin-bottom: 3vw;
  }
  .grid7-wrap__copy {
    font-size: 3.5vw;
  }
  @keyframes line-expand {
    from {
      height: 5px;
      top: 50%;
    }
    to {
      height: 25vw;
      top: 50%;
    }
  }
}
/* --------------------------------------------------------------------------------------------
　↑ トップ画像スライド
---------------------------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------------------------
　↓ ヘッダー
---------------------------------------------------------------------------------------------*/
header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  z-index: 9999;
}
header .hotel-logo {
  width: 150px;
  height: 100%;
}
header .hotel-logo img {
  width: 100%;
}
header .logo-18 {
  width: 40px;
}

.header-contents {
  background-color: rgba(0, 0, 0, 0.7490196078);
  border-bottom: solid 1px #D57392;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  height: 70px;
  width: 100%;
  z-index: 9999;
}
.header-contents .logos {
  display: flex;
  gap: 10px;
  padding: 10px 0 0 10px;
}

.hamburger {
  position: relative;
  width: 64px;
  height: 52px;
  right: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  z-index: 10001;
  -webkit-tap-highlight-color: transparent;
}
.hamburger__line {
  position: absolute;
  left: 50%;
  width: 50px;
  height: 1px;
  background: #fff;
  transform: translateX(-50%);
  transition: transform 0.25s ease, top 0.25s ease, opacity 0.2s ease;
}
.hamburger__line:nth-child(1) {
  top: 13px;
}
.hamburger__line:nth-child(2) {
  top: 23px;
}
.hamburger__label {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #fff;
  user-select: none;
}
.hamburger.is-open .hamburger__line:nth-child(1) {
  top: 21px;
  transform: translateX(-50%) rotate(15deg);
}
.hamburger.is-open .hamburger__line:nth-child(2) {
  top: 21px;
  transform: translateX(-50%) rotate(-15deg);
}

.nav-menu {
  position: fixed;
  top: 0;
  background-color: rgba(0, 0, 0, 0.7490196078);
  height: 100vh;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: -1;
}
.nav-menu__bg {
  background-color: #ffffff;
  position: absolute;
  right: 0;
  top: 0;
  height: 100vh;
  padding: 70px 60px 0px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* iOSのヌルっとスクロール */
  /* ✅ スクロールバー非表示 */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* old Edge/IE */
}
.nav-menu__contents {
  padding: 30px 0;
  width: 100%;
}
.nav-menu .nav-menu-list {
  list-style: none;
  margin: 0;
}
.nav-menu a {
  display: block;
  color: #111111;
  text-decoration: none;
  letter-spacing: 0.08em;
  padding: 15px 6px;
}
.nav-menu a:hover {
  color: #D57392;
}
.nav-menu .nav-menu-list-main li {
  position: relative;
}
.nav-menu .nav-menu-list-main li::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.2784313725);
}
.nav-menu .nav-menu-list-main li::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #D57392;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}
.nav-menu .nav-menu-list-main li:hover::after, .nav-menu .nav-menu-list-main li:focus-within::after, .nav-menu .nav-menu-list-main li:active::after {
  transform: scaleX(1);
}
.nav-menu .nav-menu-list-main li a {
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.nav-menu .nav-menu-list-main li a::after {
  content: ">";
  font-size: 14px;
  opacity: 0.7;
}
.nav-menu .nav-menu-list-sub {
  display: flex;
  justify-content: center;
  padding: 10px 0;
  align-items: center;
  gap: 1vw;
}
.nav-menu .nav-menu-list-sub li a {
  font-size: 13px;
}
.nav-menu .btn {
  width: 400px;
  margin: 30px auto 0;
}
.nav-menu .btn a:hover {
  color: #ffffff;
}
.nav-menu__hotel-info {
  width: 100%;
  display: flex;
  justify-content: center;
}
.nav-menu__hotel-info .logos .hotel-logo {
  width: 250px;
}
.nav-menu__hotel-info .logos .logo-18 {
  width: 50px;
}
.nav-menu__hotel-info .logos .attention {
  font-size: 12px;
  text-align: center;
}
.nav-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .nav-menu__bg {
    width: 100%;
  }
  .nav-menu .btn {
    width: 100%;
    margin-top: 3vw;
  }
}
@media (max-width: 480px) {
  header .hotel-logo {
    width: 45%;
  }
  header .logo-18 {
    width: 10%;
  }
  .header-contents {
    height: 15vw;
  }
  .hamburger__label {
    bottom: 7px;
    font-size: 8px;
  }
  .nav-menu .nav-menu-list-main li a {
    font-size: 4.3vw;
  }
  .nav-menu .nav-menu-list-sub li a {
    font-size: 2.8vw;
  }
  .nav-menu__contents {
    padding: 5vw 0;
  }
  .nav-menu__bg {
    padding: 15vw 6vw 0;
  }
  .nav-menu__hotel-info .logos .hotel-logo {
    width: 65%;
  }
  .nav-menu__hotel-info .logos .logo-18 {
    width: 15%;
  }
}
/* --------------------------------------------------------------------------------------------
　↑ ヘッダー
---------------------------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------------------------
　↓ キャッチコピー
---------------------------------------------------------------------------------------------*/
#catchcopy {
  width: min(92vw, 900px);
  margin: 0 auto;
  padding: 170px 0 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.25;
  letter-spacing: 0.06em;
}
#catchcopy p,
#catchcopy p > * {
  letter-spacing: 5px;
}
#catchcopy p {
  margin: 0;
  display: inline-block;
  white-space: nowrap;
  font-size: 25px;
  opacity: 0;
  transition: opacity 3s ease;
  will-change: opacity;
}
#catchcopy p span {
  font-size: 1.3em;
}
#catchcopy p:nth-child(1) {
  transform: translateX(-0.6em);
  transition-delay: 0s;
}
#catchcopy p:nth-child(2) {
  margin-top: 0.35em;
  transform: translateX(0.6em);
  transition-delay: 0.75s;
}
#catchcopy p b {
  position: relative;
  display: inline-block;
  font-weight: 700;
}
#catchcopy p:nth-child(1) b {
  color: currentColor;
  transition: color 2.2s ease;
  will-change: color;
}
#catchcopy p:nth-child(2) b::after {
  content: "";
  position: absolute;
  left: -0.06em;
  right: -0.06em;
  top: 62%;
  height: 0.9em;
  background: rgba(213, 115, 146, 0.55);
  border-radius: 0.2em;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.1s ease;
  will-change: transform;
  z-index: -1;
}
#catchcopy.is-inview p {
  opacity: 1;
}
#catchcopy.is-inview p:nth-child(1) b {
  transition-delay: 0.5s;
  color: #D57392;
  text-shadow: 0 0 6px rgba(213, 115, 146, 0.65), 0 0 14px rgba(213, 115, 146, 0.45), 0 0 24px rgba(213, 115, 146, 0.25);
}
#catchcopy.is-inview p:nth-child(2) b::after {
  transition-delay: 1.25s;
  transform: scaleX(1);
}

/* スマホだけズラし弱め */
@media (max-width: 768px) {
  #catchcopy {
    padding: 140px 0 70px;
  }
  #catchcopy p,
  #catchcopy p > * {
    letter-spacing: 0.8vw;
  }
  #catchcopy p {
    font-size: 3.5vw;
  }
}
@media (max-width: 480px) {
  #catchcopy {
    padding: 31.5vw 0 16.5vw;
  }
}
/* --------------------------------------------------------------------------------------------
　↑ キャッチコピー
---------------------------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------------------------
　↓ コンセプト
---------------------------------------------------------------------------------------------*/
#concept {
  padding-top: 0;
  padding-bottom: 0;
}
#concept .btn {
  max-width: 400px;
  margin: 40px auto 0;
}

.concept-contents {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  padding: 0 !important;
}

.slider-container {
  position: relative;
  width: 100%;
}

.concept-slider {
  position: relative;
  width: 100%;
  height: 600px;
  z-index: 0;
}
.concept-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
}
.concept-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.concept-slider .slide.active {
  opacity: 1;
  z-index: 1;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  width: 100%;
  position: absolute;
  bottom: 10px;
  left: 0;
}
.slider-dots .dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: rgb(106.5, 57.5, 73);
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.slider-dots .dot.active {
  background-color: #D57392;
}

.concept-text {
  position: absolute;
  left: 5%;
  bottom: 0;
  height: 100%;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.7490196078);
  z-index: 10;
}
.concept-text h2 {
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.concept-text h2 span {
  font-size: 0.35em;
  letter-spacing: 5px;
}
.concept-text p {
  line-height: 2.5;
  padding: 25px 0;
}

@media (max-width: 768px) {
  .concept-contents {
    justify-content: flex-start;
    gap: 0;
  }
  .concept-slider {
    height: 300px;
  }
  .concept-text {
    position: relative;
    background-color: unset;
    color: unset;
    padding: 10vw 4vw 5vw;
    width: 100%;
    left: auto;
    z-index: auto;
  }
  .concept-text p {
    padding: 25px 0;
  }
  .slider-dots {
    position: absolute;
    bottom: auto;
    top: -20px;
    margin-top: 0;
  }
  .slider-dots .dot {
    width: 10px;
    height: 10px;
  }
}
@media (max-width: 480px) {
  .concept-slider {
    height: 60vw;
  }
}
/* --------------------------------------------------------------------------------------------
　↑ コンセプト
---------------------------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------------------------
　↓ トピックス
---------------------------------------------------------------------------------------------*/
#topix {
  background-color: rgb(242.25, 242.25, 242.25);
}

.topix-contents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* 共通 */
.topix-item {
  border-radius: 18px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  background-color: rgb(229.5, 229.5, 229.5);
}
.topix-item .btn {
  max-width: 400px;
  margin: 40px auto 0;
}

/* 上：横2列 */
.topix-item--wide {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 3vw;
}

.topix-text h3 {
  padding: 20px 0;
  color: #D57392;
  text-shadow: 0 0 6px rgba(213, 115, 146, 0.65), 0 0 14px rgba(213, 115, 146, 0.45), 0 0 24px rgba(213, 115, 146, 0.25);
}
.topix-text h3 span {
  font-size: 1.5em;
}

.topix-image {
  position: relative;
}
.topix-image img {
  width: 100%;
  border-radius: 12px;
}

/* -------------------------
  SMチェア：スライド
------------------------- */
.topix-slider img {
  width: 100%;
  border-radius: 12px;
}

.slick-prev {
  left: 0px;
  z-index: 1;
}

.slick-next {
  right: 0px;
  z-index: 1;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7490196078);
}

.slick-dots li button:before {
  color: #ffffff;
}

.slick-dots li.slick-active button:before {
  color: #D57392;
  text-shadow: 0 0 6px rgba(213, 115, 146, 0.65), 0 0 14px rgba(213, 115, 146, 0.45), 0 0 24px rgba(213, 115, 146, 0.25);
}

/* -------------------------
  Cheeek：斜め写真
------------------------- */
.cheeek-float {
  position: absolute;
  right: 0px;
  bottom: -20px;
  width: 45% !important;
  transform: rotate(8deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  border-radius: 6px;
}

/* SP */
@media (max-width: 768px) {
  .topix-contents {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
  .topix-item {
    padding: 5vw;
  }
  .topix-item--wide {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
/* --------------------------------------------------------------------------------------------
　↑ トピックス
---------------------------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------------------------
　↓ ニュース
---------------------------------------------------------------------------------------------*/
.news-section .btn {
  max-width: 400px;
  margin: 40px auto 0;
}

.news-contents {
  max-width: 1300px;
  margin: 0 auto;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  column-gap: 3rem;
  align-items: flex-start;
}

/* --- 左のメインニュース --- */
.news-feature .news-feature__link {
  display: block;
}
.news-feature .news-feature__image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #ccc;
}
.news-feature .news-feature__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.4s ease;
}
.news-feature:hover .news-feature__image img {
  transform: scale(1.06);
}
.news-feature .news-meta {
  margin-top: 1rem;
}
.news-feature .news-feature__title {
  margin-top: 0.75rem;
}

/* --- 右側リスト --- */
.news-list {
  display: flex;
  flex-direction: column;
}

.news-item {
  padding: 1.5rem 0;
  border-top: 1px solid #e3e0d8;
}
.news-item:last-child {
  border-bottom: 1px solid #e3e0d8;
}

.news-item__link {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  column-gap: 1.5rem;
  row-gap: 0.5rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.news-item__thumb {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #ccc;
}
.news-item__thumb img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.news-item__link:hover .news-item__thumb img {
  transform: scale(1.05);
}

.news-item__body {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* --- 日付・タグ共通 --- */
.news-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: #666;
}

.news-date {
  white-space: nowrap;
}

/* タイトル（右側）は少しだけ抑えめに見せる */
.news-item__title {
  margin-top: 0.3rem;
}

#newsToggleBtn {
  display: none;
}

/* ============================
   Responsive
============================ */
@media (max-width: 960px) {
  .news-inner {
    max-width: 85%;
  }
  .news-layout {
    grid-template-columns: 1fr;
    row-gap: 3rem;
  }
  .news-list {
    margin-top: 0.5rem;
  }
}
/* スマホサイズで3件目以降を非表示 */
@media (max-width: 768px) {
  .news-hidden {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease;
  }
  .news-hidden.open {
    max-height: 2000px;
  }
  .news-toggle-btn {
    display: block;
    margin: 2rem auto 0;
    padding: 0.8rem 2rem;
    font-size: 4vw;
    border-radius: 999px;
    border: 1px solid #888;
    background: #fff;
    cursor: pointer;
  }
  #newsToggleBtn {
    display: block;
  }
}
@media (max-width: 600px) {
  .news-inner {
    max-width: 100%;
  }
  .news-item__link {
    grid-template-columns: 34vw minmax(0, 1fr);
    column-gap: 1rem;
  }
  .news-item {
    padding: 1.2rem 0;
  }
}
/* --------------------------------------------------------------------------------------------
　↑ ニュース
---------------------------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------------------------
　↓ 背景写真
---------------------------------------------------------------------------------------------*/
#back-deco {
  background-image: url(../img/appearance.jpg);
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.3490196078);
  background-blend-mode: screen;
  background-attachment: fixed;
  background-position: bottom center;
  position: relative;
  height: 50vh;
}
#back-deco h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #D57392;
  mix-blend-mode: color-dodge;
  width: 100%;
  text-align: center;
  font-size: 70px;
}

@media (max-width: 768px) {
  #back-deco {
    height: 45vw;
  }
  #back-deco h1 {
    font-size: 9vw;
  }
}
/* --------------------------------------------------------------------------------------------
　↑ 背景写真
---------------------------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------------------------
　↓ ランキング
---------------------------------------------------------------------------------------------*/
#roomranking {
  background-color: rgb(248.3076923077, 232.6923076923, 237.6318681319);
}
#roomranking .btn {
  max-width: 400px;
  margin: 40px auto 0;
}

.ranking {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.ranking__head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: clamp(12px, 3vw, 24px);
}

.ranking__nav {
  display: flex;
  gap: 12px;
}

.ranking__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  position: relative;
  cursor: pointer;
}

.ranking__arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  border-top: 2px solid #111111;
  border-right: 2px solid #111111;
  transform: rotate(45deg);
}

.ranking__arrow--prev::before {
  transform: rotate(225deg);
  left: 2px;
}

.ranking__arrow--next::before {
  transform: rotate(45deg);
  right: 2px;
}

.ranking__arrow:hover {
  background: rgba(255, 255, 255, 0.08);
}

.ranking__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: clamp(12px, 2vw, 20px);
  overflow-x: auto;
  padding: 8px 2px 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  /* Firefox */
}

.ranking__track::-webkit-scrollbar {
  display: none;
}

.rankcard {
  position: relative;
  scroll-snap-align: start;
  background: #151515;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.rankcard__media {
  display: block;
  aspect-ratio: 16/9;
}

.rankcard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rankcard__badge {
  position: absolute;
  top: 6px;
  left: 6px;
}
.rankcard__badge img {
  width: 50px;
}

.rankcard__label {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: rgba(0, 0, 0, 0.65);
  font-weight: 700;
  font-size: clamp(12px, 1.8vw, 14px);
  padding: 6px 10px;
  border-radius: 6px;
  color: #ffffff;
}

.ranking__info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ranking__info .ranking__updated {
  font-size: 12px;
}

/* レスポンシブ：表示枚数の目安を変える */
@media (max-width: 1024px) {
  .ranking__track {
    grid-auto-columns: minmax(300px, 60%);
  }
}
@media (max-width: 768px) {
  .ranking__track {
    grid-auto-columns: 85%;
  }
}
/* --------------------------------------------------------------------------------------------
　↑ ランキング
---------------------------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------------------------
　↓ アクセス
---------------------------------------------------------------------------------------------*/
.access-contents {
  display: flex;
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
  gap: 15px;
}
.access-contents iframe {
  flex: 1 1 50%;
}
.access-contents .access-hotel {
  position: absolute;
  left: 0;
  bottom: -25%;
  width: 300px;
  height: 300px;
  border-radius: 15%;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35), 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.access-datails {
  padding-left: 10px;
}
.access-datails .hotel-name {
  font-size: 21px;
  padding: 10px 10px;
  margin-bottom: 10px;
  border-bottom: solid 2px #D57392;
}
.access-datails table tr {
  display: block;
  padding: 8px 0;
}
.access-datails table tr a,
.access-datails table tr p {
  color: #111111;
}
.access-datails table tr td:first-child {
  width: 130px;
}
.access-datails table tr td:first-child p {
  color: #D57392;
  font-weight: bold;
}

@media (max-width: 1024px) {
  .access-contents {
    flex-direction: column;
  }
  .access-contents iframe {
    flex: none;
    height: 300px;
  }
  .access-contents .access-hotel {
    left: auto;
    right: 0;
    bottom: 0;
  }
}
@media (max-width: 768px) {
  .access-contents .access-hotel {
    height: 40vw;
    width: 40vw;
    bottom: 15vw;
  }
  .access-contents iframe {
    height: 75vw;
  }
  .access-datails table tr {
    display: flex;
    flex-direction: column;
    padding: 9px 0;
    gap: 3px;
  }
}
@media (max-width: 480px) {
  .access-contents .access-hotel {
    display: none;
  }
  .access-datails .hotel-name {
    font-size: 4vw;
  }
  .access-datails table tr {
    padding: 1vw 0;
  }
}
/* --------------------------------------------------------------------------------------------
　↑ アクセス
---------------------------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------------------------
　↓ よくある質問
---------------------------------------------------------------------------------------------*/
#faq {
  background-color: rgb(242.25, 242.25, 242.25);
}

.faq-contents {
  margin: 0 auto;
  max-width: 700px;
}

.toggle {
  display: none;
}

.faq {
  position: relative;
  margin-bottom: 1rem;
}

.question,
.anser {
  transform: translateZ(0);
  transition: all 0.3s;
}

.question {
  border: solid 1px #999;
  padding: 1rem 2.2rem 1rem 1rem;
  display: block;
}

.question span,
.anser span {
  font-size: 100%;
  padding-right: 0.6rem;
  color: #D57392;
  line-height: 0;
}

.question:after,
.question:before {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 2px;
  height: 0.75rem;
  background-color: #999;
  transition: all 0.3s;
}

.question:after {
  transform: rotate(90deg);
}

.anser {
  max-height: 0;
  overflow: hidden;
}
.anser p {
  margin: 0;
  padding: 2rem 1rem 2rem;
  line-height: 1.8;
}
.anser a {
  color: #111111;
}

.toggle:checked + .question + .anser {
  max-height: 500px;
  transition: all 1.5s;
}

.toggle:checked + .question:before {
  transform: rotate(90deg) !important;
}

/* --------------------------------------------------------------------------------------------
　↑ よくある質問
---------------------------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------------------------
　↓ フッター
---------------------------------------------------------------------------------------------*/
footer {
  position: relative;
  isolation: isolate;
  background: url("../img/appearance.jpg") center/cover no-repeat;
}
footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: -1;
}
footer * {
  color: #ffffff;
}
footer .slash {
  background-color: #ffffff;
}

.reserve-btn {
  position: fixed;
  bottom: 5%;
  color: #ffffff;
  right: 3%;
  background: rgb(224.7692307692, 154.2307692308, 176.543956044);
  border-radius: 50%;
  height: 130px;
  width: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 15px;
  gap: 5px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.25), 0 10px 22px rgba(0, 0, 0, 0.18), 0 2px 6px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.15s ease;
  z-index: 9999;
}
.reserve-btn img {
  height: 1lh;
}
.reserve-btn:hover {
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22), 0 6px 14px rgba(0, 0, 0, 0.16), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.reserve-btn {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.reserve-btn.is-show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.footer-contents {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 0 0;
}
.footer-contents .logos {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.footer-contents .logos .hotel-logo {
  width: 300px;
}
.footer-contents .logos .hotel-logo img {
  width: 100%;
}
.footer-contents .logos .logo-18 {
  width: 65px;
}
.footer-contents .attention {
  font-size: 12px;
  text-align: center;
}
.footer-contents > * {
  padding: 10px 0;
}

.ft-top {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 70px;
}

.ft-menu-sub {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.ft-menu-sub li a {
  color: #ffffff;
  font-size: 12px;
}
.ft-menu-sub li a:hover {
  color: #D57392;
}

small {
  display: block;
  width: 100%;
  text-align: center;
  padding-top: 10px;
  font-size: 10px;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  footer {
    padding-bottom: 5.5vh;
  }
  .reserve-btn {
    bottom: 0;
    right: auto;
    border-radius: 0;
    height: 5.5vh;
    width: 100%;
    gap: 10px;
    flex-direction: row;
    font-size: 1.5vh;
  }
  .reserve-btn img {
    height: 1lh;
  }
}
@media (max-width: 480px) {
  .footer-contents {
    padding-top: 5vw;
  }
  .footer-contents .logos .hotel-logo {
    width: 60%;
  }
  .footer-contents .logos .logo-18 {
    width: 10%;
  }
  .footer-contents .attention {
    font-size: 3vw;
  }
  .ft-menu-sub {
    gap: 3vw;
  }
  .ft-menu-sub li a {
    font-size: 2.7vw;
  }
}
/* --------------------------------------------------------------------------------------------
　↑ フッター
---------------------------------------------------------------------------------------------*/
/* スクロールバー全体 */
::-webkit-scrollbar {
  width: 7px;
  /* 縦スクロール */
  height: 10px;
  /* 横スクロール */
}

/* 背景（レール） */
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.15);
}

/* つまみ */
::-webkit-scrollbar-thumb {
  background: #D57392;
  /* ← ベースカラー */
  border: 2px solid rgba(0, 0, 0, 0.15);
  /* 余白っぽく見せる */
}

/* ホバー時 */
::-webkit-scrollbar-thumb:hover {
  background: rgb(220.0615384615, 138.5384615385, 164.3263736264);
}