
/* ===== PCレイアウト ===== */
body {
  margin: 0;
  font-family: serif;
  background: #0b0f16;
  color: #f5f5f5;
}

img{
  max-width:100%;
  height:auto;
}

/* 中央に収め */
.container{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

/* ヘッダー全体 */
.header {
  background: linear-gradient(to bottom, #0b0f16, #0f1c2e);
  /*padding-bottom: 160px;*/
}

/* 上段 */
.top-bar {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 60px;
}

/* 右側を右端へ */
.header-right {
  margin-left: auto;
  display: flex;
  align-items: center;   /* 横並び */
  gap: 20px;
}

/* ロゴ＋店名 */
.logo-area {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ロゴサイズ */
.logo-img {
  width: 90px;
  height: auto;
}

/* 店名 */
.shopname-img {
  width: 400px;
  height: auto;
}

.tel {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2;
}

.tel span {
  display: block;
  font-size: 20px;
  color: #aaa;
}

/* ヘッダーボタン 縦2列 */
.reserve-area {
  display: flex;
  flex-direction:column;
  gap: 10px;
  margin-left: 20px;
}

/* ボタン共通デザイン */
.btn {
  padding: 8px 16px;
  text-decoration: none;
  font-size: 13px;
  border: 1px solid #c6a55c;
  color: #fff;
  transition: 0.3s;
  white-space: nowrap;
  border-radius: 4px;
}

/* 電話ボタン（青系） */
.tel-btn {
  background: linear-gradient(45deg, #1e3a5f, #13263f);
}

.tel-btn:hover {
  box-shadow: 0 0 10px rgba(30,58,95,0.5);
}

/* LINEボタン（少し明るめ） */
.line-btn {
  background: #1a3d2f;
  border-color: #00c300;
}

.line-btn:hover {
  box-shadow: 0 0 10px rgba(0,195,0,0.4);
}

/* ナビ */
.nav {
  background: #0f1c2e;
  border-top:1px solid rgba(198,165,74,0.4);
  border-bottom:1px solid rgba(198,165,74,0.4);
}

.nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 15px 0;
  gap: 50px;
}

.nav a {
  color: white;
  text-decoration: none;
  text-align: center;
  font-size: 14px;
  position: relative;
}

.nav a span {
  display: block;
  font-size: 10px;
  color: #aaa;
}

/* 下からスッと線が出る */
.nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #c6a55c;
  transition: 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

/* =================================== */
/* ハンバーガー */
.hamburger{
  position: fixed;
  top: 25px;
  right: 25px;
  width: 30px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span{
  display: block;
  height: 2px;
  background: #c6a55c;
  margin: 6px 0;
  transition: 0.4s;
}

/* 開いた時 */
.hamburger.open span:nth-child(1){
  transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2){
  opacity: 0;
}

.hamburger.open span:nth-child(3){
  transform: translateY(-8px) rotate(-45deg);
}

/* フェードメニュー本体 */
.menu-overlay{
  position: fixed;
  inset: 0;
  background: rgba(11,15,22,0.88);
  backdrop-filter: blur(6px);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s ease;
  z-index: 1000;
}

.menu-overlay.active{
  opacity: 1;
  visibility: visible;
}

/* 中身の箱 */
.menu-inner{
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px 40px;
}

/* ロゴ */
.menu-logo{
  text-align: center;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(198,165,92,0.4);
  padding-bottom: 15px;
}

.menu-logo img{
  width: 300px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* メニュー */
.overlay-menu{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns:1fr;
  gap: 24px 40px;
  text-align: center;
}

.overlay-menu li{
  margin: 0;
}

.overlay-menu a{
  color: #f5f5f5;
  text-decoration: none;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 2px;
  display: block;
}

.overlay-menu span{
  display: block;
  font-size: 13px;
  opacity: 0.8;
  color: #c6a55c;
  margin-top: 5px;
  letter-spacing: 1px;
}

.overlay-menu a:hover{
  color: #c6a55c;
}

/* 電話エリア */
.menu-tel{
  margin-top:40px;
  padding-top:25px;
  border-top:1px solid rgba(198,165,92,0.4);
  text-align:center;
}

/* TEL文字 */
.menu-tel-title{
  font-size:12px;
  letter-spacing:3px;
  color:#c6a55c;
  margin-bottom:10px;
}

/* 電話番号 */
.menu-tel-number{
  font-size:26px;
  letter-spacing:3px;
  color:#f5f5f5;
  text-decoration:none;
  font-weight:300;
  transition:0.3s;
}

.menu-tel-number:hover{
  color:#c6a55c;
}

/* SNS */
.menu-sns{
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(198,165,92,0.4);
  display: flex;
  justify-content: center;
  gap: 30px;
}

.menu-sns a{
  color: #c6a55c;
  text-decoration: none;
  font-size: 28px;
  letter-spacing: 2px;
  transition:0.3s;
}

.menu-sns a:hover{
  color: #fff;
  transition:0.3s;
}

/* 背景スクロール停止 */
.menu-open{
  overflow: hidden;
}

/* =================================== */
/* パンくずリスト */
.breadcrumb{
  background:#0f1c2e;
  border-top:1px solid rgba(198,165,92,0.3);
  border-bottom:1px solid rgba(198,165,92,0.3);
}

.breadcrumb .container{
  padding:10px 20px;
  font-size:13px;
  color:#c6a55c;
}

.breadcrumb a{
  color:#c6a55c;
  text-decoration:none;
}

.breadcrumb span{
  margin:0 8px;
  color:#aaa;
}

.breadcrumb a:hover{
  text-decoration:underline;
}

.breadcrumb span{
  margin:0 10px;
  color:#c6a55c;
}

/* =================================== */
/* hero */
.hero{
  height:80vh;

  background:
  linear-gradient(
    to bottom,
    rgba(11,15,22,0.4),
    rgba(11,15,22,0.75)
  ),
  url("images/hero.jpg") no-repeat center center;

  background-size:cover;

  display:flex;
  justify-content:center;
  align-items:center;

  position:relative;
}

/* ===== ヒーロー文字演出 ===== */
/* 通常背景
  .hero-text{
    text-align:center;
  color:#f5f5f5;
  transform:translateY(-40px);
}
*/

/* 薄暗い背景 */
.hero-text{
  text-align:center;
  color:#f5f5f5;
  text-shadow:0 5px 20px rgba(0,0,0,0.9);
}

.hero-line1{
  font-size:38px;
  letter-spacing:4px;
  position:relative;
  left:-40px;  
  margin-bottom:30px;

  opacity:0;
  transform:translateY(20px);

  animation:heroFade1 1.2s ease forwards;
}


.hero-line2{
  font-size:38px;
  letter-spacing:6px;
  position:relative;
  left:50px;   

  opacity:0;
  transform:translateY(20px);

  animation:heroFade2 1.2s ease forwards;
  animation-delay:1.5s;
}


/* =================================== */
/* ===== スライダー ===== */
/* ===== 横スライドカルーセル ===== */

.slider {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 50px auto;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.slider img{
  width:100%;
  height:auto;
  margin-top:20px;
}

.slides {
  display: flex;
  transition: transform 0.6s ease;
}

.slide-link{
  display:block;
  width:100%;
  flex-shrink:0;
}

.slide {
  width: 100%;
  height: auto;
  /*flex-shrink: 0;*/
  display:block;
  border-radius: 20px;
}

/* ドット */
.dots {
  text-align: center;
  margin-top: 15px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 5px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #c6a55c;
  transform: scale(1.3);
}


/* 矢印ボタン（← →） */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-80%);
  background: rgba(0,0,0,0.5);
  color: #c6a55c;
  border: none;
  padding: 15px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 50%;
}

.prev { left: 15px; }
.next { right: 15px; }

.prev:hover, .next:hover {
  background: rgba(0,0,0,0.8);
}

/* =================================== */
/* 最新情報エリア */
.news-page{
  padding: 80px 0;
  background: #020b18;
}

/* タイトル */
.news-header{
  text-align: center;
  margin-bottom: 50px;
}

.news-title{
  font-size:48px;
  color:#f3eacd;
  letter-spacing:3px;
  margin-top:0px;
  margin-bottom:10px;

}

.news-subtitle{
  font-size:16px;
  color:#c6a55c;
}

/* 外枠 */
.news-frame{
  position:relative;
  max-width:900px;
  margin:0 auto;

  padding:50px 45px;

  background:rgba(15,28,46,0.85);
  border:1px solid rgba(198,165,92,0.5);
}

/* 四隅の装飾 */
.news-frame::before,
.news-frame::after{
  content:"";
  position:absolute;
  width:28px;
  height:28px;
}

/* 左上 */
.news-frame::before{
  top:12px;
  left:12px;
  border-top:2px solid #c6a55c;
  border-left:2px solid #c6a55c;
}

/* 右下 */
.news-frame::after{
  bottom:12px;
  right:12px;
  border-bottom:2px solid #c6a55c;
  border-right:2px solid #c6a55c;
}

/* 右上 */
.corner-top-right{
  position:absolute;
  top:12px;
  right:12px;
  width:28px;
  height:28px;
  border-top:2px solid #c6a55c;
  border-right:2px solid #c6a55c;
}

/* 左下 */
.corner-bottom-left{
  position:absolute;
  bottom:12px;
  left:12px;
  width:28px;
  height:28px;
  border-bottom:2px solid #c6a55c;
  border-left:2px solid #c6a55c;
}


.news-frame .corner-top-right{
  top: 12px;
  right: 12px;
  border-top: 3px solid #b8946d;
  border-right: 3px solid #b8946d;
}

.news-frame .corner-bottom-left{
  bottom: 12px;
  left: 12px;
  border-bottom: 3px solid #b8946d;
  border-left: 3px solid #b8946d;
}

/* タイトルと日付 */
.news-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:20px;
  margin-bottom:8px;
}

/* 各ニュース */
.news-item{
  padding:25px 0;
  border-bottom:1px solid rgba(198,165,92,0.3);
}

.news-item:last-child{
  border-bottom:none;
}

.news-item-head{
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 8px;
}

.news-item-title{
  font-size:18px;
  color:#f3eacd;
  line-height:1.6;
  flex:1;
}

/* NEWS画像付きレイアウト */
.news-item-row{
  display:flex;
  align-items:flex-start;
  gap:20px;
}

.news-thumb{
  width:150px;
  flex-shrink:0;
}

.news-thumb img{
  width:100%;
  height:110px;
  object-fit:cover;
  display:block;
  border:1px solid rgba(198,165,92,0.4);
}

.news-content{
  flex:1;
  min-width:0;
}

.news-item-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:20px;
  margin-bottom:10px;
}

.news-item-title{
  font-size:18px;
  color:#f3eacd;
  line-height:1.6;
  flex:1;
  margin:0;
}

.news-date{
  font-size:14px;
  color:#c6a55c;
  white-space:nowrap;
  flex-shrink:0;
}

.news-date{
  font-size:14px;
  color:#c6a55c;
  white-space:nowrap;
}

/* 本文 */
.news-text{
  font-size:14px;
  color:#ddd4c4;
  line-height:1.8;
  margin:0;
}

/* =================================== */
/* index NEWS エリア */
.top-news{
padding:80px 0;
}

.top-news-list{
max-width:800px;
margin:40px auto 20px;
border-top:1px solid rgba(198,165,92,0.4);
}

.top-news-item{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;

border-bottom:1px solid rgba(198,165,92,0.25);

text-decoration:none;
color:#f3eacd;

transition:0.3s;
}

.top-news-item:hover{
color:#c6a55c;
}

.top-news-title{
font-size:16px;
}

.top-news-date{
font-size:14px;
color:#c6a55c;
}

.top-news-more{
text-align:center;
margin-top:20px;
}

.top-news-more a{
color:#c6a55c;
text-decoration:none;
font-size:14px;
letter-spacing:1px;
}

.top-news-more a:hover{
text-decoration:underline;
}


/* =================================== */
/* 在籍一覧エリア */
.cast-list{
  width:90%;
  max-width:1200px;
  margin:0 auto 80px;
}

/* タイトル */
.section-title{
  text-align:center;
  font-size:28px;
  margin:0 0 50px;
  position:relative;
  color:#e6d18a;
}

/* タイトル左右ライン */
.section-title::before{
  content:"";
  position:absolute;
  top:50%;
  left:0;
  width:35%;
  height:1px;
  background:linear-gradient(90deg, transparent, #c6a54a);
}

.section-subtitle{
  text-align:center;
  color:#c6a54a;
  font-size:14px;
  letter-spacing:2px;
  margin-top:-45px;
}

.section-title::after{
  content:"";
  position:absolute;
  top:50%;
  right:0;
  width:35%;
  height:1px;
  background:linear-gradient(90deg, #c6a54a, transparent);
}

/* グリッド */
.cast-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  max-width:1100px;
  margin:auto;
}

/* カード */
.cast-card{
  position:relative;
  background:#0f1c2e;
  border:1px solid #c6a55c;
  padding:10px;
  text-align:center;
  transition:0.3s;
  
  /* キャスト一覧 */
  text-decoration:none;
  color:inherit;
}

/* NEWリボン */
.new-badge{
  position:absolute;
  top:10px;
  left:15px;
  background:linear-gradient(45deg,#d4af37,#f8e08a);
  color:#000;
  font-size:15px; /* リボンの大きさ */
  font-weight:bold;
  padding:4px 12px;
  transform:rotate(-20deg);
  box-shadow:0 2px 6px rgba(0,0,0,0.4);
}

/* 本日出勤リボン */
.today-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #d4af37;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 4px;
  z-index: 2;
}

/* 画像 */
.cast-card img{
  width:100%;
  height:auto;
  display:block;
}

/* 名前 */
.cast-name{
  margin-top:10px;
  font-size:24px;
  margin-top:20px;
}

/*簡易紹介文*/
.cast-comment{
  font-size:14px;
  line-height:1.6;
  margin:0 14px 10px;
  color:#ddd;
}

/* サイズ */
.cast-size{
  font-size:14px;
  color:#aaa;
  margin-top:5px;
}

/* 出勤時間 */
.cast-time{
  /*
  font-weight:bold;
  margin-top:5px;
  margin-top: 8px;
  */
  font-weight: bold;
  color: #d4af37;
}

/* ホバー */
.cast-card:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 20px rgba(0,0,0,0.4);
}

/* =================================== */
/* キャストプロフィール */

.cast-profile{
  text-align:center;
}

.profile-main-img {
  width: 300px;
  max-width: 100%;
  margin: auto;
  display: block;
}

.profile-thumbs{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:10px;
}

.profile-thumbs img{
  width:60px;
  border:1px solid rgba(198,165,92,0.5);
}

.profile-list{
  padding: 0;
  overflow: hidden;
}

.profile-item{
  display: flex;
  border-bottom: 1px solid rgba(198,165,92,0.25);
}

.profile-item:last-child{
  border-bottom: none;
}

.profile-label{
  width: 180px;
  padding: 14px 16px;
  background: rgba(19,38,63,0.85);
  color: #c6a55c;
  font-weight: bold;
  box-sizing: border-box;
}

.profile-value{
  flex: 1;
  padding: 14px 16px;
  box-sizing: border-box;
  line-height: 1.8;
}

.profile-sub-images {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.sub-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  display: block;
}

/* キャスト詳細 写真切り替え */
.cast-profile-photo{
  text-align:center;
}

.profile-main{
  max-width:360px;
  margin:0 auto;
  touch-action: pan-y;
}

.profile-main img{
  width:100%;
  display:block;
  border:1px solid rgba(198,165,92,0.5);
  box-shadow:0 8px 20px rgba(0,0,0,0.25);
}

.profile-thumbs{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:12px;
  flex-wrap:wrap;
}

.thumb {
  width: 80px;
  height: 100px;
  object-fit: cover;
  display: block;
  cursor: pointer;
  border: 2px solid transparent;
  box-sizing: border-box;
  opacity: 0.45;
}

.active-thumb {
  opacity: 1;
  border: 2px solid #fff;
  box-shadow: 0 0 10px rgba(198,165,92,0.5);
}


/* メッセージコメント(改行可能) */
.manager-comment{
  white-space: normal;
  font-size: 15px;
}

.manager-comment-sub {
    margin-top: 16px;
}

.section-box p.manager-comment {
  line-height: 1.5;
}

/* セラピスト出勤情報 */
.schedule-list{
  padding: 0;
  overflow: hidden;
}

.schedule-item{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(198,165,92,0.35);
}

.schedule-item:last-child{
  border-bottom: none;
}

.schedule-date{
  color: #c6a55c;
  font-weight: bold;
}

.schedule-status{
  color: #f5f5f5;
}

/* セラピスト写メ日記 */
.diary-box{
  text-align: center;
}

.diary-text{
  margin-bottom: 20px;
  line-height: 1.8;
}

.diary-link-btn{
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid #c6a55c;
  color: #f5f5f5;
  text-decoration: none;
  background: #0f1c2e;
  transition: 0.3s;
}

.diary-link-btn:hover{
  background: #13263f;
  box-shadow: 0 0 10px rgba(198,165,92,0.4);
}

/* =================================== */
/* ACCESSページ */
.access-room{
  background: rgba(15, 28, 46, 0.8);
  border: 1px solid rgba(198,165,92,0.5);
  padding: 25px;
  margin-bottom: 40px;
}

.access-room-title{
  text-align: center;
  font-size: 22px;
  color: #f3eacd;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(198,165,92,0.35);
}

.map-box iframe{
  width: 100%;
  height: 500px;
  border: 0;
  display: block;
}

.map-btn{
  display: block;
  width: 140px;
  margin: 15px auto;
  padding: 8px 12px;
  text-align: center;
  text-decoration: none;
  color: #f5f5f5;
  border: 1px solid #c6a55c;
  background: #0f1c2e;
  transition: 0.3s;
}

.map-btn:hover{
  background: #13263f;
  box-shadow: 0 0 10px rgba(198,165,92,0.4);
}

.access-text{
  text-align: center;
  margin-top: 10px;
  color: #f5f5f5;
  line-height: 1.8;
}


/* =================================== */
/* systemページ */
.content-section.info-section{
  display: block;
}

.price-room{
  background: linear-gradient(to bottom, rgba(12, 24, 40, 0.95), rgba(8, 16, 28, 0.95));
  border: 1px solid rgba(198,165,92,0.45);
  padding: 30px 25px;
  margin-bottom: 40px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  width: 100%;
  max-width: 900px;
  margin: 0 auto 40px;
  box-sizing: border-box;
}

.price-room-title{
  text-align: center;
  font-size: 26px;
  color: #f3eacd;
  padding-bottom: 8px;
  margin-bottom: 0;
  letter-spacing: 2px;
}

.price-room-subtitle{
  text-align: center;
  font-size: 11px;
  color: #c6a55c;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(198,165,92,0.35);
  letter-spacing: 3px;
}

.price-comment-title{
  font-size: 18px;
  text-align: center;
  color: #f3eacd;
  margin-bottom: 18px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(198,165,92,0.3);
}

.price-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 20px;
  border-bottom:1px solid rgba(198,165,92,0.3);
  padding:12px 0;
  font-size:20px;
}

.price-row span:first-child{
  color:#f3eacd;
}

.price-row span:last-child{
  font-weight:bold;
  color:#e6d18a;
  text-align:right;
}

.price-row.long-text{
  align-items:flex-start;
}

.price-row.long-text span:last-child{
  max-width: 65%;
  line-height: 1.6;
}

.basic-play{
 margin-top: 50px;
}

.old-price{
  text-decoration: line-through;
  color: #888;
  margin-right: 6px;
}

.arrow{
  margin: 0 6px;
  color: #c6a55c;
}

.new-price{
  color: #e6d18a;
  font-weight: bold;
  font-size: 20px;
}

/* 基本サービス */
.basic-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  max-width:520px;
  margin:30px auto 20px;
}

.basic-item{
  text-align:center;
  padding:12px 10px;
  border:1px solid rgba(198,165,92,0.6);
  background:rgba(255,255,255,0.03);
  font-size:14px;
  color:#f3eacd;
  border-radius: 4px;
}

.basic-text{
  font-size:13px;
  margin-top:15px;
  line-height:1.8;
  text-align:left;
  padding:0 10px;
}

/* オプション */
.option-free{
  display:flex;
  font-size: 20px;
  justify-content:space-between;
  border-bottom:1px solid rgba(198,165,92,0.3);
  padding:8px 0;
}

.option-free span:last-child{
  font-weight:bold;
  color:#e6d18a;
}

.option-price{
  font-size: 20px;
  padding-bottom: 10px;
  margin-top:20px;
}

.option-row{
  display:flex;
  justify-content:space-between;
  border-bottom:1px solid rgba(198,165,92,0.3);
  padding:8px 0;
}

/* チェンジ・キャンセル */
.cansel-row{
  display: flex;
  align-items:center;
  border-bottom: 1px solid rgba(198,165,92,0.3);
  padding: 18px 0;
}

.cansel-label{
  width: 220px;
  flex-shrink: 0;
  font-size: 18px;
  color: #f3eacd;
  line-height: 1.6;
}

.cansel-value{
  flex: 1;
  font-size: 1x8px;
  color: #e6d18a;
  line-height: 1.7;
  text-align: right;
}

.cansel-label{
  width: 220px;
  flex-shrink: 0;
}

/* クレジット */
.credit-image{
  display:flex;
  justify-content:center;
}

.credit-image img{
  width: 420px;
  max-width: 100%;
  height: auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.credit-text{
  font-size: 15px;
  margin-top: 30px;
  margin-bottom: 30px;
  line-height: 1.8;
}

.credit-payment-image{
  text-align:center;
  margin-top:20px;
}

.credit-payment-image img{
  width:320px;
  max-width:100%;
  height:auto;
}

.credit-link{
  text-align:center;
  margin-top:12px;
  font-size:16px;
}

.credit-link a{
  color:#b88a6a;
  text-decoration:none;
  transition:0.3s;
}

.credit-link a:hover{
  color:#e6d18a;
}

/* 注意事項 */
.notes-area{
  margin-top:30px;
}

.notes-heading{
  font-size:18px;
  color:#e6d18a;
  margin-top:25px;
  margin-bottom:10px;
  border-left:3px solid #c6a55c;
  padding-left:10px;
}

.notes-list{
  padding-left:20px;
  line-height:1.8;
  font-size:15px;
}

.notes-list li{
  margin-bottom:6px;
}

/* SYSTEMページ 崩れ修正 */
.content-section.info-section{
  display: block !important;
}

.price-room{
  width: 100%;
  max-width: 900px;
  margin: 0 auto 40px;
  box-sizing: border-box;
}

.credit-text{
  font-size: 15px;
  margin-top: 30px;
  margin-bottom: 30px;
  line-height: 1.8;
}

.notes-text{
  font-size: 15px;
  line-height: 1.9;
}

.credit-image img,
.credit-payment-image img{
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* =================================== */
/* コスチュームページ */
.costume-section{
  width: 100%;
}

.costume-frame{
  background: rgba(15,28,46,0.85);
  border: 1px solid rgba(198,165,92,0.5);
  padding: 35px 30px;
}

.costume-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 18px;
}

.costume-item{
  text-align: center;
}

.costume-thumb{
  width: 100%;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(198,165,92,0.5);
  background: rgba(255,255,255,0.03);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.costume-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.costume-name{
  font-size: 14px;
  color: #f3eacd;
  line-height: 1.6;
}

.costume-item{
  text-align:center;
  transition:0.3s;
}

.costume-item:hover{
  transform:translateY(-5px);
}

.costume-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/*
.costume-thumb{
  transition:0.3s;
}

.costume-item:hover .costume-thumb{
  border-color:#c6a55c;
  box-shadow:0 8px 18px rgba(0,0,0,0.4);
}*/

/* =================================== */
/* フッターナビ */
.footer {
  background: #0f1c2e;
  padding:40px 0 100px;
  text-align: center;
  border-top:1px solid #c6a55c;
}

  /* 横一列 */
.footer-nav {
  display: flex;
  justify-content: center;   /* 真ん中寄せ */
  /* gap: 10px; */               /* メニュー間の間隔 */
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.footer-nav li {
  position: relative;
  padding: 10px;
}

.footer-nav li:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: #c6a55c;
}

.footer-nav a {
  color: #f5f5f5;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.3s;
}

  /* ホバー演出 */
.footer-nav a:hover {
  color: #c6a55c;
}

/* =================================== */
/* バナーエリア */
.side-title{
  text-align:center;
  font-size:20px;
  color:#f3eacd;
  margin-bottom:20px;
  margin-top:40px;
  letter-spacing:2px;
}

.side-title:first-child{
  margin-top:5px;
}

/* =================================== */
/* メイン＋サイド 2カラム */

.content-area{
  margin: 80px 0;
}

.content-layout{
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.main-column{
  flex: 1;
  min-width: 0;
}

.side-column{
  width: 260px;
  /*width:100%;*/
  flex-shrink: 0;
}

/* 左の各セクションを同じ幅で管理 */
.content-section{
  width: 100%;
  margin-bottom: 80px;
}

/* 右バナー */
.side-banner{
  margin-bottom: 20px;
  background: #0f1c2e;
  border: 1px solid rgba(198,165,92,0.5);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

.side-banner img{
  width: 100%;
  display: block;
  height: auto;
}

/* コンセプトタイトル用 */
.concept-title{
  font-size:22px;
  color:#f3eacd;
  margin-bottom:20px;
  text-align:center;
  letter-spacing:2px;
}

/* コンセプト文章用 */
.section-box{
  background: rgba(15, 28, 46, 0.75);
  border: 1px solid rgba(198,165,92,0.5);
  padding: 28px;
  line-height: 1.9;
  color: #f5f5f5;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* ギャラリー */
.gallery-grid{
  display: grid;
  grid-template-columns:repeat(3, 1fr);
  gap: 15px;
  width:100%;
}

.gallery-grid img{
  width:100%;
  height:auto;
  display:block;
  box-sizing:border-box;
  border:1px solid rgba(198,165,92,0.4);
  box-shadow:0 8px 20px rgba(0,0,0,0.25);
}





/* =================================== */
/* 下固定ボタン */
.fixed-contact{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;

  background:transparent;
  padding:12px 0;

  transform:translateY(100%);
  transition:0.4s;

  opacity:0;                 /* 最初は透明 */
  transform:translateY(20px); /* 少し下 */
  transition:0.7s ease;     /* フェードイン スピード */

  pointer-events:none;       /* 非表示時クリック防止 */
}

.fixed-contact.show{
  opacity:1;                 /* 表示 */
  transform:translateY(0);   /* 元位置 */
  pointer-events:auto;
}

/* 表示状態 */
.fixed-contact.show{
  transform:translateY(0);
}

/* container代わり */
.fixed-inner{
  max-width:1200px;
  margin:auto;
  padding:0 20px;

  display:flex;
  gap:10px;

  box-shadow:0 -5px 20px rgba(0,0,0,0.6);
}

/* ボタン */
.fixed-btn{
  flex:1;
  text-align:center;
  padding:10px;
  font-size:30px;

  color:#f5f5f5;
  text-decoration:none;

  border:1px solid #c6a55c;
  background:#0f1c2e;

  border-radius:4px;

  transition:0.3s;
}

.fixed-btn:hover{
  background:#13263f;
  box-shadow:0 0 10px rgba(198,165,92,0.5);
}

/* 電話 */
.tel-fixed{
  background:linear-gradient(45deg,#1e3a5f,#13263f);
}

/* LINE */
.line-fixed{
  background:#1a3d2f;
  border-color:#00c300;
}





/* ===== タブレット ===== */
@media (max-width:1024px){
  .cast-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .system-page .side-column{
    display:none;
  }

  .system-page .main-column{
    width:100%;
    flex:1;
  }
}


/* ===== スマホ ===== */
@media (max-width:768px){

  /* ヘッター */
  .top-bar{
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    gap: 15px;
  }

  .header-right{
    margin-left: 0;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .logo-img{
    width: 70px;
  }

  .shopname-img{
    width: 220px;
    max-width: 100%;
  }

  .tel{
    font-size: 20px;
    text-align: center;
  }

  .tel span{
    font-size: 14px;
  }

  .reserve-area{
    display: none;  /* 表示させたい場合は、この列をコメントアウト */

    margin-left: 0;
    width: 100%;
    max-width: 220px;
  }

  .btn{
    display: block;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }

  /* スマホ用ナビ */
  .nav{
    display:block;
  }

    /* ナビ3×3レイアウト */
  .nav ul{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
    padding:0;
    margin:0;
  }

  .nav li{
    text-align:center;
    padding:12px 5px;
    position:relative;
  }

  .nav a{
    font-size:12px;
  }

  .nav a span{
    font-size:9px;
  }

    /* 縦線 */
  .nav li:not(:nth-child(3n+1))::before{
    content:"";
    position:absolute;
    left:0;
    top:20%;
    width:1px;
    height:60%;
    background:linear-gradient(
      to bottom,
      transparent,
      rgba(198,165,92,0.6),
      transparent
    );
  }

    /* 横線 */
  .nav li:nth-child(-n+6){
    border-bottom:1px solid rgba(198,165,92,0.35);
  }

  /* スマホサイズのパンくずリスト削除 */
  .breadcrumb{
    display:none;
  }

/* 固定フェードインボタン */
  .fixed-contact{
    display: block;
    padding: 10px 12px;
  }

  .fixed-inner{
    display: flex;
    gap: 10px;
    padding: 0;
  }

  .fixed-btn{
    flex:1;
    min-height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:17px;
    font-weight:bold;
    letter-spacing:1px;
    padding:14px 8px;
    box-sizing:border-box;
    border-radius:8px;
  }

  /*castサムネイル*/
  .profile-sub-images {
    gap: 6px;
    flex-wrap: nowrap;
  }

  .thumb {
    width: 60px;
    height: 80px;
    flex: 0 0 60px;
  }

  /* アクセスページマップサイズ */
    .map-box iframe{
    height:350px;
  }

  /* systemページサイズ */
  .price-room{
    padding: 20px 15px;
    margin-bottom: 25px;
  }

  .price-room-title{
    font-size: 22px;
  }

  .price-room-subtitle{
    font-size: 11px;
    padding-bottom: 10px;
    margin-bottom: 18px;
  }

  .price-comment-title{
    font-size: 16px;
    line-height: 1.6;
  }

  .price-row{
    font-size: 14px;
    gap: 10px;
  }

  .price-row span:first-child{
    width: 38%;
  }

  .price-row span:last-child{
    width: 62%;
    text-align: right;
    line-height: 1.5;
  }

  .basic-grid{
    grid-template-columns:repeat(2,1fr);
    gap:10px;
  }

  .basic-item{
    font-size:13px;
    padding:10px 8px;
  }

  .basic-text,
  .credit-text,
  .notes-text{
    font-size: 13px;
    line-height: 1.8;
    padding: 0;
  }

 .cansel-row{
    flex-direction: column;
    gap: 8px;
    padding: 14px 0;
  }

  .cansel-label{
    width: 100%;
    font-size: 16px;
  }

  .cansel-value{
    width: 100%;
    font-size: 16px;
    text-align: left;
  }

  .credit-image img{
    max-width: 100%;
    height: auto;
  }

  .credit-payment-image img{
    max-width: 100%;
    height: auto;
  }
  

  /* フッター */
  .footer{
    padding: 30px 15px 90px;
  }

  .footer-nav{
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .footer-nav li{
    padding: 12px 0;
    width: 100%;
    text-align:center;
    border-bottom:1px solid rgba(198,165,92,0.35);
  }

  .footer-nav li:not(:first-child)::before{
    display: none;
  }

   .footer-nav li:last-child{
    border-bottom:none;
  }

  .footer-nav a{
    font-size: 13px;
    display: block;
    width: 100%;
      padding:10px 0;
  }

  .content-layout{
    flex-direction:column;
  }

  .side-column{
    width:100%;
  }

   .cast-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .cast-name{
    font-size:17px;
  }

  .cast-comment{
    font-size:13px;
  }

  .cast-size{
    font-size:12px;
  }

  /*SYSTEMページ*/
  .basic-grid{
  grid-template-columns:repeat(2,1fr);
}

/*newsページ画像*/
.news-item-row{
  flex-direction:column;
}

.news-thumb{
  width:100%;
  max-width:280px;
}

.news-thumb img{
  width:100%;
  height:auto;
}

  


  /* heroスマホサイズ */
  .hero{
    height:260px;
    /*background-position:center;*/
  }

  /* ヒーローテキスト全体 */
  .hero-text{
    text-align:center;
    padding:0 20px;
  }

  /* 1行目 */
  .hero-line1{
    font-size:18px;
    transform:translate(-20px,10px);
  }

  /* 2行目 */
  .hero-line2{
    font-size:18px;
    transform:translate(25px,15px);
  }

}

@media screen and (max-width:768px){

  .credit-payment-image img{
    width:80%;
  }

  /* コスチュームページ */
  .costume-frame{
    padding: 20px 15px;
  }

  .costume-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
  }

  .costume-name{
    font-size: 13px;
  }

}



  /* body */
  body{
    font-size:14px;
  }

  .overlay-menu{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .overlay-menu a{
    font-size: 22px;
  }

  .menu-logo img{
    width: 220px;
  }

  .menu-sns{
    gap: 20px;
    flex-wrap: wrap;
  }

  .section-title::before,
  .section-title::after{
    width:25%;
  }

  .gallery-grid{
    grid-template-columns:1fr;
  }

   .profile-item{
    flex-direction: column;
  }

  .profile-label{
    width: 100%;
  }

/* ===== メニューアニメーション ===== */

/* 初期状態 */
.menu-logo,
.overlay-menu,
.menu-tel,
.menu-sns{
  opacity:0;
  transform:translateY(20px);
}

/* 開いたら表示 */
.menu-overlay.active .menu-logo{
  opacity:1;
  transform:translateY(0);
  transition:0.6s;
}

.menu-overlay.active .overlay-menu{
  opacity:1;
  transform:translateY(0);
  transition:0.6s 0.1s;
}

.menu-overlay.active .menu-tel{
  opacity:1;
  transform:translateY(0);
  transition:0.6s 0.2s;
}

.menu-overlay.active .menu-sns{
  opacity:1;
  transform:translateY(0);
  transition:0.6s 0.3s;
}

/* ===== ヒーロー文字演出 ===== */
.hero-title{
  font-size:48px;
  letter-spacing:6px;
  color:#f5f5f5;

  opacity:0;
  transform:translateY(30px);

  animation:heroFade 1.5s ease forwards;
  animation-delay:0.3s;
}

@keyframes heroFade{

  from{
    opacity:0;
    transform:translateY(30px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}




/* 1行目 */
@keyframes heroFade1{

  from{
    opacity:0;
    transform:translateY(20px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}

/* 2行目 */
@keyframes heroFade2{

  from{
    opacity:0;
    transform:translateY(20px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}

