
/**mid-kv**/
.mid-kv {
padding:10% 0 0 0;
}
.mid-kv .image{
width: 100%;
height: 60vh;
height: 60svh;
margin: 0 auto;
overflow: hidden;
position: relative;
filter: brightness(1);
background-color:black;
}
.mid-kv .image img {
  width: 100%;
  height: 120%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

@media (max-width: 768px) {
.mid-kv {
padding:20% 0 0 0;
}
.mid-kv .image{
height: 80vh;
height: 80svh;
}
}




/**top01**/
.top01 {
  position: relative;
  height: 100vh;height: 100svh;
  overflow: hidden;
  background-color: black;
}
.top01 nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  padding: 4vw;
  color: #fff;
  gap: 20px;
  height: 100%;
}
.top01 nav .logo {
  max-width: 250px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
  transition: all 0.5s;
}
.top01 nav .logo:hover {
  opacity: 0.5;
}
.top01 nav ul {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1rem; /* gap を使うと線がズレるので 0 に */
  list-style: none;
  width: fit-content;
}
.top01 nav li a {
  padding: 0 1rem;
  color: #fff;
  position: relative;
  filter:drop-shadow(0 2px 2px rgba(0, 0, 0, 1));
  transition: all 0.5s;
  width: fit-content;
  background-color: rgba(0, 0, 0, 0.1);
  text-decoration: none;
  display: block;
}
.top01 nav li a:hover {
  background-color: #c3a771;
  color: black;
}
/* 2つ目以降の li の左側に縦線 */
.top01 nav li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 100%;
  background: #c3a771;
}
.top01 #mainVisual, .top01 .splide__track, .top01 .splide__list, .top01 .splide__slide {
  height: 100vh;height: 100svh;
}
.top01 #mainVisual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.top01 #mainVisual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  z-index: 2;
  opacity: 0.1;
}
.top01 .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  pointer-events: none;
}
.top01 .splide__slide img:hover {
  transform: scale(1) !important; /* ← 万が一 hover が当たっても無効化 */
  animation: none !important;
}
.top01 .zoom {
  animation: slowZoom 8s linear forwards;
}
@keyframes slowZoom {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
    
    
    
.top01 .splide__slide.is-active {
  z-index: 2;
  opacity: 1 !important;
}
.top01 .splide__slide {
  z-index: 1;
  opacity: 0 !important;
  transition: opacity 2500ms ease !important;
}
    
    
    
    
    
    
@media (max-width: 768px) {
  .top01 nav {
    padding: 10vw;
  }
  .top01 nav .logo {
    max-width: 180px;
  }
}






/**intro**/
.intro{
padding:15% 0 0 0;
color:white;
position: relative;
}
.intro .area{
}
.intro .mark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    filter: brightness(0.1);
    max-width:350px;
}
.intro .wrap{
    position: relative;
    z-index:5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:2rem;
    text-align: center;
}
.intro h2 {
    font-size:2rem;
    color:#c3a771;
}
.intro h3 {
    font-size:1.5rem;
    color:#c3a771;
}
.intro p {
    font-size:1rem;
}

@media (max-width: 768px) {
    .intro {
        padding: 30% 0 0 0; /* 上を広めに、下は少し詰める */
    }
    .intro .mark {
    top: 0;
    left: 50%;
    transform: translate(-50%, 20%);
    }
    .intro .wrap {
    gap: 1.5rem;
    padding-inline: 5%;
    align-items: flex-start;
    text-align: left;
  }
}












/**sld**/
.sld {
  padding: 10% 0 0 0;
    }
/* ★ ここが重要：高さは auto にする */
#center-slider .splide__track,
#center-slider .splide__list,
#center-slider .splide__slide {
  height: auto !important;
}
/* 画像の比率を維持してフィット */
#center-slider .splide__slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
#center-slider .splide__slide.is-active img {
}
    @media (max-width: 768px) {
        
.sld {
  padding: 15% 0 0 0;
    }
}



















/**hanga**/
	.hanga{
		padding:10% 0 0;
	}

	.hanga .area{
		max-width:1400px;
		margin:0 auto;
	}

	.hanga .wrap{
		filter: grayscale(70%) brightness(70%);

	}
    @media (max-width: 768px) {
        
.hanga {
  padding: 20% 5%;
    }
}
























/**incle**/
        .incle {
			margin:10% 0 0;
			padding:10% 5%;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
            /* 3Dコンテキストを有効化してカクつき防止 */
            transform: translate3d(0, 0, 0);
            backface-visibility: hidden;
        }

        /* 背景レイヤーのコンテナ */
        .incle .bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
			overflow: hidden;
        }
        .bg-layer {
            position: absolute;
            inset: 0;
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            opacity: 0;
            filter: brightness(0.2) blur(1px); 
            transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.8s cubic-bezier(0.25, 1, 0.5, 1);
            will-change: opacity, filter;
            transform: translate3d(0, 0, 0);
            backface-visibility: hidden;
        }
        .bg-layer.layer-default {
            background-image: url("../img/top/test/00.jpg");
            opacity: 1;
        }
        .bg-layer.layer-food {
            background-image: url("../img/top/test/01.jpg");
        }
        .bg-layer.layer-drink {
            background-image: url("../img/top/test/02.jpg");
        }
        .bg-layer.layer-sleep {
            background-image: url("../img/top/test/03.jpg");
        }
        .bg-layer.layer-experience {
            background-image: url("../img/top/test/04.jpg");
        }
        .incle:has(.wrap02 .item:nth-child(1):hover) .bg-layer.layer-default { opacity: 0; }
        .incle:has(.wrap02 .item:nth-child(1):hover) .bg-layer.layer-food { opacity: 1; filter: brightness(0.2) blur(1px); }

        .incle:has(.wrap02 .item:nth-child(2):hover) .bg-layer.layer-default { opacity: 0; }
        .incle:has(.wrap02 .item:nth-child(2):hover) .bg-layer.layer-drink { opacity: 1; filter: brightness(0.2) blur(1px); }

        .incle:has(.wrap02 .item:nth-child(3):hover) .bg-layer.layer-default { opacity: 0; }
        .incle:has(.wrap02 .item:nth-child(3):hover) .bg-layer.layer-sleep { opacity: 1; filter: brightness(0.2) blur(1px); }

        .incle:has(.wrap02 .item:nth-child(4):hover) .bg-layer.layer-default { opacity: 0; }
        .incle:has(.wrap02 .item:nth-child(4):hover) .bg-layer.layer-experience { opacity: 1; filter: brightness(0.2) blur(1px); }


        /* --- 基本レイアウトとコンテンツ装飾 --- */
        .incle .area {
            position: relative;
            max-width: 1600px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 4rem;
            z-index: 1;
            width: 100%;
        }

        .incle .area .wrap01 {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .incle .area .wrap01 h2 {
            font-size: 2rem;
            font-weight: 500;
            color: #c3a771;
        }
        .incle .area .wrap01 h2 span {
            font-size: 1rem;
            font-weight: 600;
            color: #ffffff;
            display: block;
        }
        .incle .area .wrap01 p {
            font-size: 1rem;
        }
        .incle .wrap02 {
            display: flex;
            gap: 1rem;
        }
        .incle .item {
            flex: 1;
            height: 540px;
            border: 1px solid rgba(197, 168, 128, 0.15);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            position: relative;
            cursor: pointer;
            /* トランジションプロパティの最適化 */
            transition: flex 0.7s cubic-bezier(0.25, 1, 0.5, 1), 
                        border-color 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                        box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
            box-sizing: border-box;
            will-change: flex, border-color, box-shadow;
            transform: translate3d(0, 0, 0);
            backface-visibility: hidden;
        }
            .incle .wrap02:hover .item:hover {
                flex: 2;
                border-color: rgba(197, 168, 128, 0.5);
                box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
            }
            .incle .wrap02:hover .item:not(:hover) {
                flex: 0.5;
            }
        .incle .item-image-box {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
            transform: translate3d(0, 0, 0);
            backface-visibility: hidden;
        }

        .incle .item-image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.9s cubic-bezier(0.25, 1, 0.5, 1);
            will-change: transform;
            transform: translate3d(0, 0, 0);
            backface-visibility: hidden;
        }
        .incle .item:hover .item-image-box img {
            transform: scale(1.06) translate3d(0, 0, 0);
        }
        .incle .item-image-box::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, 
                rgba(10, 10, 10, 1) 0%, 
                rgba(10, 10, 10, 1) 10%, 
                rgba(0, 0, 0, 0) 100%);
            transition: opacity 0.4s ease;
            z-index: 2;
        }
        .incle .item-tag {
            position: absolute;
            top: 1rem;
            left: 1rem;
            z-index: 3;
            background-color: rgba(13, 13, 13, 0.85);
            color: #c5a880;
            border: 1px solid rgba(197, 168, 128, 0.4);
            padding: 0.4rem 0.9rem;
            font-size: 0.75rem;
            transition: all 0.4s ease;
        }

        .incle .wrap02 .item:hover .item-tag {
            background-color: #c5a880;
            color: #0d0d0d;
            border-color: #c5a880;
            box-shadow: 0 4px 10px rgba(197, 168, 128, 0.2);
        }
        .incle .item-body {
            position: relative;
            z-index: 3;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            box-sizing: border-box;
            transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
            transform: translate3d(0, 0, 0);
            backface-visibility: hidden;
        }

        .incle .item-body h3 {
            color: #c3a771;
            font-size: 1.25rem;
            font-weight: bold;
            transition: color 0.3s ease, margin 0.4s cubic-bezier(0.25, 1, 0.5, 1);
            text-shadow: 0 2px 8px rgba(0,0,0,0.8);
        }
        .incle .item-body h3 {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .incle .item:hover .item-body h3 {
            white-space: normal;
        }
        .incle .item-body p,
        .incle .item-footer {
            color: white;
            font-size: 0.88rem;
            line-height: 1.75;
            margin: 0;
            
            /* 初期値（非ホバー時）は隠す */
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            border-top-color: transparent;
            padding-top: 0;
            
            /* なめらかな展開アニメーション */
            transition: max-height 0.6s cubic-bezier(0.25, 1, 0.5, 1),
                        opacity 0.5s ease,
                        margin 0.6s cubic-bezier(0.25, 1, 0.5, 1),
                        padding 0.6s cubic-bezier(0.25, 1, 0.5, 1),
                        border-color 0.5s ease;
            will-change: max-height, opacity;
        }
            .incle .item:hover .item-body p {
                max-height: 150px; 
                opacity: 1;
                margin-bottom: 1.25rem;
            }
            .incle .item:hover .item-footer {
                max-height: 100px;
                opacity: 1;
                padding-top: 1.25rem;
                border-top: 1px solid #c3a771; 
            }
        .incle .item-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
			gap:1rem;
        }
        .incle .item-note {
            font-size: 0.75rem;
            color: #888;
            letter-spacing: 0.05em;
            transition: color 0.3s ease;
        }

        .incle .item:hover .item-note {
            color: #c3a771;
        }

        /* 詳細リンク（テキスト） */
        .incle .item .btn-detail-link {
            background: none;
            border: none;
            color: #c5a880;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            padding: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: color 0.3s ease, transform 0.3s ease;
            white-space: nowrap;
        }

        .incle .item .btn-detail-link:hover {
            color: #ffffff;
            transform: translateX(4px);
        }

        .incle .item .btn-detail-link i {
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }
        
        .incle .item .btn-detail-link:hover i {
            transform: translateX(2px);
        }

.incle .btn-more {
    color: #c3a771;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}
.incle .btn-more::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: 1.5px solid currentColor; 
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}
.incle .btn-more:hover {
    color: #ffffff;
    transform: translateX(4px);
}




        @media (max-width: 1023px) {
            .incle {
                padding: 12% 5%;
                min-height: auto;
            }
            .incle .wrap02 {
                flex-direction: column;
                gap: 1.5rem;
            }
            .incle .item {
                flex: none;
            }
            .incle .item-body h3 {
				white-space: normal;
            }
            .incle .item-body p {
                max-height: 200px;
                opacity: 1;
                margin-bottom: 1.25rem;
            }
            .incle .item-footer {
                max-height: 100px;
                opacity: 1;
                border-top: 1px solid rgba(197, 168, 128, 0.2);
                padding-top: 1rem;
            }
            .incle .wrap02:hover .item:hover {
                flex: none!important;
            }
            .incle .wrap02:hover .item:not(:hover) {
                flex: none!important;
            }
        }





















/**room**/
.room {
  color: white;
  position: relative;
  padding: 10% 0 0 0;
  padding-inline: 5%;
}
.room .area {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}
.room .wrap {
  display: grid;
  grid-template-columns: auto minmax(auto, 350px);
  justify-content: space-around;
  align-items: start;
  position: relative;
  gap: 8vw;
}
.room .right {
  position: sticky;
  top: 100px;
  width: 100%;
}
.room .right .test {
  position: relative;
  z-index: 2;
}
.room .right .text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: white;
}
.room .right .deco {
  position: absolute;
  right: 50%;
  bottom: 0;
  transform: translate(50%,25%);
  z-index: 1;
  pointer-events: none;
  opacity: 0.1;
  width:25vw;
}
.room .right .deco img {
  width: 100%;
  height: auto;
  display: block;
}
.room .right .text h2 {
  font-size: 2rem;
  font-weight: bold;
  writing-mode: vertical-rl;
  text-orientation: upright;
  position: relative;
  color: #c3a771;
  margin: 0 auto;
  text-align: center;
}
.room .right .text h2 .sub-ttl {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
  font-size: 1rem;
  color: white;
}
.room .right .text p {
  font-size: 1rem;
}
.room .right a {
    width: fit-content;
    text-decoration: none;
	margin:0 0 0 auto;
}
.room .btn-more {
    color: #c3a771;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}
.room .btn-more::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: 1.5px solid currentColor; 
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}
.room .btn-more:hover {
    color: #ffffff;
    transform: translateX(4px);
}
.room .left {
  display: flex;
  flex-direction: column;
  gap: 10vw;
}
.room .item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.room .pic {
  position: relative;
  overflow: hidden;
}
.room .pic img {
  width: 100%;
  display: block;
  transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.room .item:hover .pic img {
  transform: scale(1.05);
}
.room .name-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(26, 26, 26, 0.8);
  padding: 20px 30px;
  z-index: 2;
}
.room .name-badge .name {
  font-size: 2rem;
  color: #c3a771;
  font-weight: bold;
}
.room .name-badge .name span {
  font-size: 1rem;
}
.room .name-badge .name .en {
  font-size: 1rem;
  color: #c3a771;
  font-weight: bold;
  padding-left: 10px;
}
.room .name-badge .name2 {
  font-size: 1rem;
  display: block;
}
.room .text-box {
  padding-left: 20px;
  border-left: 2px solid #c3a771;
}
.room .description {
  margin-bottom: 1rem;
}
.room .text-box h3 {
  font-size: 1.25rem;
  color: #c3a771;
}
.room .text-box a {
}
.room .btn-detail-link {
    color: #c3a771;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}
.room .btn-detail-link::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: 1.5px solid currentColor; 
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}
.room .btn-detail-link:hover {
    color: #ffffff;
    transform: translateX(4px);
}
.room .ie {
  padding-top: 5vw;
  margin-left: auto;
  position: relative;
  z-index: 1;
}
.room .ie img {
  width: 100%;
  display: block;
  mask-image: linear-gradient(to bottom, transparent, black 40px, black calc(100% - 40px), transparent),
              linear-gradient(to right, transparent, black 40px, black calc(100% - 40px), transparent);
  mask-composite: intersect;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 40px, black calc(100% - 40px), transparent),
                      linear-gradient(to right, transparent, black 40px, black calc(100% - 40px), transparent);
  -webkit-mask-composite: source-in;
}

/* ==========================================
   レスポンシブ（スマホ対応：768px以下）
   ========================================== */
@media (max-width: 768px) {
  .room {
    padding: 30% 0 0 0;
  }
  .room .area {
    max-width: 100%;
    padding-inline: 5%;
  }
  .room .wrap {
    display: flex;
    flex-direction: column-reverse;
    gap: 4rem;
  }
  .room .right {
    position: relative;
    top: 0;
    max-width: 100%;
    margin-bottom: 2rem;
  }
  .room .right .text h2 {
    writing-mode: horizontal-tb;
    text-align: left;
    margin: 0;
	display: flex;
    flex-direction: column-reverse;
  }
  .room .right .text h2 .sub-ttl {
    position: relative;
    display: block;
    top: 0;
    left: 0;
    right: auto;
    transform: none; 
    margin-bottom: 0.5rem;
  }
  .room .right .deco {
    width: 350px; 
    max-width: none; /* 元コードの max-width: 90% を上書き解除 */
    left: 50%;
    transform: translate(-50%, 20%);
  }
  .room .right .ie {
    width: 100%;
    max-width: 400px;
    margin-inline: auto;
  }
  .room .left {
    gap: 5rem;
  }
  
  /* ★スマホ時：画像と名前の重なりバグを解消する指定 */
  .room .pic {
    overflow: visible; /* バッジがはみ出せるようにする */
  }
  .room .name-badge {
    position: relative;    /* 絶対配置を解除して写真の下に並べる */
    background: transparent; /* 背景透過黒を消してすっきりさせる */
    padding: 1.5rem 0 0 0;  /* 写真との間に程よい余白を作る */
  }
  .room .name-badge .name {
    font-size: 1.75rem;     /* スマホ画面に合わせて少し縮小 */
  }
  .room .name-badge .name2 {
    margin-top: 0.25rem;
  }
  .room .text-box {
    padding-left: 15px;
    margin-left: 0;
    /* バッジを下に逃がしたため、説明文との間隔を微調整 */
    margin-top: -0.5rem; 
  }
}





/**onsen01**/
.onsen01 {
  padding: 10% 0 0;
  color: white;
  position: relative;
}
.onsen01 .area {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding-inline: 5%;
}
.onsen01 .wrap {
  position: relative;
  z-index: 20;
  display: grid;
  /* 修正：タイトル幅を縦書き2行分（100px）で安全に固定し、右側を可変に */
  grid-template-columns: 100px 1fr;
  /* 贅沢な「間」を中央に寄せるため、space-aroundよりさらに引き締まるbetweenを採用 */
  justify-content: space-between;
  align-items: center;
  gap: 10vw; /* 間の余白感はそのままキープ */
}
.onsen01 .left {
  position: relative;
  width: 100px; /* 横幅を確定させてブレを防ぐ */
}
.onsen01 .right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 750px; /* 文章が横に伸びすぎて品がなくなるのを防ぐストッパー */
}
.onsen01 .deco {
  position: absolute;
  /* 修正：右外側へのはみ出しによる横スクロールバグを完全に防ぐ配置 */
  right: 5%; 
  bottom: 0;
  width: 40vw;
  max-width: 500px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.1;
}
.onsen01 .deco img {
  width: 100%;
  height: auto;
  display: block;
}
.onsen01 h2 {
  font-size: 2rem;
  font-weight: bold;
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #c3a771;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 20;
}
.onsen01 h2 .sub-ttl {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
  font-size: 1rem;
  color: white;
}
.onsen01 p {
  font-size: 1rem;
}
.onsen01 .btn-more {
    color: #c3a771;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
	margin:0 0 0 auto;
}
.onsen01 .btn-more::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: 1.5px solid currentColor; 
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}
.onsen01 .btn-more:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* ==========================================
   レスポンシブ（スマホ対応）
   ========================================== */
@media (max-width: 768px) {
  .onsen01 {
    padding: 30% 0 0 0;
  }
  .onsen01 .area {
    padding-inline: 5%;
  }
  .onsen01 .wrap {
    display: flex; /* スマホ時はGridからFlexの縦並びに変更して安定化 */
    flex-direction: column; /* 上にタイトル、下に対話文 */
    gap: 3rem;
  }
  .onsen01 .left {
    width: 100%;
  }
  .onsen01 h2 {
    writing-mode: horizontal-tb;
    text-align: left;
    margin: 0;
	display: flex;
    flex-direction: column-reverse;
  }
  .onsen01 h2 .sub-ttl {
    position: relative; /* 絶対配置を解除して上に並べる */
    display: block;
    top: 0;
    left: 0;
    right: auto;
    transform: none;
    margin-bottom: 0.5rem;
  }
  .onsen01 .deco {
    left: 50%;
    right: auto;
    transform: translate(-50%, 25%);
    max-width: 90%;
    width: 100%;
  }
}





/**onsen02**/
.onsen02 {
  padding: 10% 0 0 0;
}
.onsen02 .area {
  max-width: 1600px;
  margin: 0 auto;
}
.onsen02 .wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem; /* 0.5remから少しだけ贅沢に広げて品よく */
  align-items: center;
  padding-inline: 5%;
}

/* 各カードの土台 */
.onsen02 .item {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background-color: #000; /* ホバーで画像が薄くなった時の下地 */
}

/* 画像ラッパー */
.onsen02 .item .image {
  width: 100%;
  height: 100%;
  aspect-ratio:16/9;
}
.onsen02 .item .image img {
  width: 100%;
  display: block; /* 画像の下の謎の隙間を消す */
  transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease;
}

/* 【新規】文字を絶対に読ませるための薄い黒グラデーションを敷く */
.onsen02 .item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
  z-index: 1;
  pointer-events: none;
}

/* ホバー時の極上エフェクト */
.onsen02 .item:hover .image img {
  opacity: 0.6;      /* 画像をじんわり暗くして文字を浮かび上がらせる */
  transform: scale(1.05); /* 画像だけを優雅に拡大 */
}

/* テキストエリア */
.onsen02 .item .text {
  position: absolute;
  right: 8%;
  bottom: 8%;
  text-align: right;
  z-index: 2; /* グラデーションの上に配置 */
}
.onsen02 h3 {
  font-size: 2rem;
  color: white;
  font-weight: bold;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5)); /* シャドウを上品に洗練 */
}
.onsen02 p {
  font-size: 1rem;
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

/* ==========================================
   レスポンシブ（スマホ対応）
   ========================================== */
@media (max-width: 768px) {
  .onsen02 {
    padding: 20% 0 0 0;
  }
  .onsen02 .wrap {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .onsen02 h3 {
    font-size: 1.5rem;
  }
  /* スマホ時は左下配置に美しく切り替え */
  .onsen02 .item .text {
    right: auto;
    left: 8%;
    text-align: left;
  }
}





/**fas**/
.fas {
  padding: 10% 0 0 0;
  color: white;
  padding-inline: 5%;
	overflow: hidden;
}

.fas .area {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  gap: 6vw; /* 8vwから調整し、中画面でのバグを防止 */
}

/* --- 左側コンテンツ --- */
.fas .left {
  flex: 1;
  /* 修正：中画面で右側の300pxを圧迫してはみ出させないための安全策 */
  min-width: 0; 
}

.fas .lounge-grid {
  display: grid;
  grid-template-columns: repeat(2 , 1fr);
  gap: 15px;
}

.fas .l-item {
  position: relative;
  overflow: hidden;
}

.fas .l-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; /* 修正：画像の下に生まれる数ピクセルの不要な隙間を削除 */
  filter: brightness(1);
  transition: all 0.6s ease;
}

.fas .l-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.8);
}

/* 修正：写真の上の文字（span）を絶対に読ませるための薄いシャドウのレイヤーを自動配置 */
.fas .l-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 40%);
  pointer-events: none;
  z-index: 1;
}

.fas .l-item span {
  position: absolute;
  bottom: 15px;
  left: 15px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  z-index: 2;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 1));
}

/* その他施設リスト */
.fas .other-facilities {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}

.fas .other-label {
  display: block;
  font-size: 1rem;
  color: #888;
  margin-bottom: 10px;
  letter-spacing: 0.2em;
}

.fas .other-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px; /* 修正：スマホ等で折り返した際の縦の隙間を確保 */
  column-gap: 0;
  list-style: none;
  padding: 0; /* デフォルトのパディングをリセット */
  margin: 0;
}

.fas .other-list li {
  font-size: 0.9rem;
  color: #ccc;
  display: flex;
  align-items: center;
}

/* 修正：折り返しが発生した時もスラッシュの配置が崩れないように綺麗に調整 */
.fas .other-list li:not(:last-child)::after {
  content: "/";
  margin-inline: 15px;
  color: #444;
}

/* --- 右側コンテンツ --- */
.fas .right {
  width: 300px;
  flex-shrink: 0; /* 修正：画面が縮んだときに左側に押されてテキストエリアが潰れるのを防止 */
}

.fas .wrap {
  position: relative;
}

.fas .text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fas h2 {
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #c3a771;
  margin: 0 auto;
}

.fas h2 .sub-ttl {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
  font-size: 1rem;
  color: white;
  padding-right: 5px; /* 縦書き時の文字のくっつきを防止 */
}

.fas .btn-more {
    color: #c3a771;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
	margin:0 0 0 auto;
}
.fas .btn-more::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: 1.5px solid currentColor; 
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}
.fas .btn-more:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.fas .deco {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  width: 40vw;
  max-width: 500px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.1;
}

/* 修正：背景の装飾用画像が右枠からはみ出してスクロールバーが出るのを防ぐ */
.fas .deco img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- レスポンシブ (768px以下) --- */
@media (max-width: 768px) {
  .fas {
    padding: 30% 0 0 0;
    padding-inline: 5%;
  }

  .fas .area {
    flex-direction: column-reverse;
    gap: 4rem; /* 15vwだとスマホで離れすぎるため、綺麗な固定値に変更 */
  }

  .fas .left, .fas .right {
    max-width: 100%;
    width: 100%;
  }

  .fas h2 {
    writing-mode: horizontal-tb;
    text-align: left;
    margin: 0;
    display: flex;
    flex-direction: column-reverse; /* 修正：サブタイトルが綺麗に上に並ぶように調整 */
    gap: 0.5rem;
  }

  /* 修正：スマホ時に画面上に突き抜けて他の要素と被るバグを、安全な配置に修正 */
  .fas h2 .sub-ttl {
    position: relative;
    transform: none;
    display: block;
    font-size: 1rem;
    color: white;
  }

  .fas .lounge-grid {
    grid-template-columns: repeat(1 , 1fr);
    gap: 15px;
  }

  .fas .deco {
    width: 90%;
    bottom: -10%;
  }
}





/**meal**/
.meal {
    padding: 10% 0 0 0;
    color: white;
}

/* ==============================
   エリア01（テキストとメイン画像）
============================== */
.meal .area01 {
    display: grid;
    grid-template-columns: auto 60%;
    max-width: 1400px;
    gap: 5vw;
    align-items: center;
    margin: 0 auto;
}

.meal .wrap {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.meal .text {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: white;
}

.meal h2 {
    font-size: 2rem;
    font-weight: bold;
    writing-mode: vertical-rl;
    text-orientation: upright;
    position: relative;
    color: #c3a771;
    margin: 0 auto;
    text-align: center;
}

.meal h2 .sub-ttl {
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(100%);
    font-size: 1rem;
    color: white;
}

.meal p {
    font-size: 1rem;
}

/* リンクボタン */
.meal .btn-more {
    color: #c3a771;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    margin: 0 0 0 auto;
}

.meal .btn-more::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: 1.5px solid currentColor; 
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.meal .btn-more:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* 背景の装飾画像 */
.meal .deco {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 25%);
    max-width: 500px;
    width: 30vw;
    z-index: 1;
    pointer-events: none;
    opacity: 0.1;
}

.meal .deco img {
    width: 100%;
    height: auto;
    display: block;
}

/* ★追加：メイン画像のレスポンシブ対応 */
.meal .image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==============================
   エリア02（3枚のコラージュ画像）
============================== */
.meal .area02 {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 2fr;
    max-width: 1600px;
    margin: 8% auto 0;
    gap: 20px;
    align-items: center;
}

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

.meal .pic:nth-child(1) { 
    transform: translateY(-2.5vw); 
}
.meal .pic:nth-child(2) { 
    transform: translate(-5vw, 40px);
    z-index: 2; 
}
.meal .pic:nth-child(3) { 
    transform: translateY(-10px); 
}

/* ==========================================
   レスポンシブ（スマホ対応：768px以下）
========================================== */
@media (max-width: 768px) {
    .meal {
        padding: 30% 0 0 0;
        padding-inline: 5%;
    }

    /* エリア01のスマホレイアウト */
    .meal .area01 {
        grid-template-columns: 1fr;
        gap: 15vw;
    }

    .meal .wrap {
        max-width: 100%;
    }

    .meal h2 {
        writing-mode: horizontal-tb;
        text-align: left;
        margin: 0;
    }

    .meal h2 .sub-ttl {
        left: 0;
        top: 0;
        transform: translate(0, -100%);
    }

    .meal .deco {
        width: 90%;
    }

    /* エリア02のスマホレイアウト */
    .meal .area02 {
        grid-template-columns: 1.5fr 1.2fr 2fr;
        gap: 3vw;
    }
    
    .meal .pic:nth-child(1) { 
        transform: translateY(-3vw); 
    }
    .meal .pic:nth-child(2) { 
        transform: translate(-6vw, 6vw);
        z-index: 2; 
    }
    .meal .pic:nth-child(3) { 
        transform: translateY(-1.5vw); 
    }
}





/**map-mid-kv**/
.map-mid-kv {
  padding: 10% 0 0 0;
  color: white;
}
.map-mid-kv .area {
  width: 100%;
  margin:0 auto;
  height: 60vh;
  height: 60svh;
  position: relative;
  overflow: hidden;
}
.map-mid-kv iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.9) contrast(1.1) brightness(0.6);
}
@media (max-width: 1024px) {
.map-mid-kv {
  padding: 20% 0 0 0;
}
.map-mid-kv .area {
  height: 80vh;
  height: 80svh;
}
    }




/**acs**/
.acs {
    padding: 10% 0 10% 0;
    color: white;
    padding-inline:5%;
}
/* --- コンテンツエリア：mealのスタイルを継承 --- */
.acs .area {
    display: grid;
    grid-template-columns: 60% auto; /* mealと同じ比率 */
    max-width: 1400px;
    margin: 0 auto;
    gap: 5vw;
    align-items: center;
}
.acs .image{
}
.acs .image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.acs .wrap{
  position: relative;
  max-width:300px;
  margin:0 auto;
}
.acs .text{
  position: relative;
  z-index:2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: white;
}
.acs .deco {
  position: absolute;
  left:50%;
  bottom: 0;
  transform: translate(-50%,25%);
  max-width: 500px;
  width:600px;
  z-index: 1;
  pointer-events: none;
	opacity:0.1;
}
.acs h2 {
  font-size: 2rem;
  font-weight: bold;
  writing-mode: vertical-rl;
  text-orientation: upright;
  position: relative;
  color:#c3a771;
  margin:0 auto;
}
.acs h2 .sub-ttl {
    position: absolute;
    top:0;
    right:0;
    transform: translateX(100%);
    font-size:1rem;
    color:white;
}
.acs h3 {
  font-size: 1.5rem;
  font-weight: bold;
}
.acs p {
  font-size: 1rem;
}

.acs .btn-more {
    color: #c3a771;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
	margin:0 0 0 auto;
}
.acs .btn-more::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: 1.5px solid currentColor; 
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}
.acs .btn-more:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* レスポンシブ */

@media (max-width: 768px) {
    .acs {
        padding: 30% 5%;
    }

    .acs .area {
        grid-template-columns: 1fr;
        gap:15vw;
    }

    
.acs .wrap{
  max-width:100%;
}

    .acs h2 {
        writing-mode: horizontal-tb;
        text-align: left;
        margin: 0;
    }

    .acs h2 .sub-ttl {
        left: 0;
        top: 0;
        transform: translate(0,-100%);
    }
    .acs .lounge-grid {
    
}

    .acs .deco {
        width: 90%;
    }
}