/* ===================================
   共通・基本（スマホ基準）
=================================== */
*,
*::before,
*::after{
  box-sizing:border-box;
}

body{
  margin:0;
  padding:0;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

a{
  color:inherit;
}

.seo-title{
  position:absolute;
  left:-9999px;
}

/* 横幅 */
.container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 16px;
}

/* ===================================
   ヘッダー
=================================== */
.header{
  background:linear-gradient(to bottom, #0b0f16, #0f1c2e);
}

.top-bar{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:15px;
  padding:20px 0;
}

.logo{
  text-align:center;
}

.shopname-img{
  width:220px;
  max-width:100%;
  height:auto;
}

.header-right{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:15px;
  margin-left:0;
}

.tel{
  font-size:20px;
  font-weight:bold;
  line-height:1.3;
  text-align:center;
}

.tel span{
  display:block;
  font-size:14px;
  color:#aaa;
}

.reserve-area{
  display:none;
}

.btn{
  display:block;
  width:100%;
  padding:10px 14px;
  text-decoration:none;
  text-align:center;
  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);
}

.line-btn{
  background:#1a3d2f;
  border-color:#00c300;
}

/* ===================================
   通常ナビ
=================================== */
.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:grid;
  grid-template-columns:repeat(3, 1fr);
  list-style:none;
  margin:0;
  padding:0;
}

.nav li{
  text-align:center;
  padding:12px 5px;
  position:relative;
}

.nav a{
  display:block;
  color:#fff;
  text-decoration:none;
  text-align:center;
  font-size:12px;
}

.nav a span{
  display:block;
  font-size:9px;
  color:#aaa;
}

/*
.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);
}
*/

/* ===================================
   ハンバーガー
=================================== */
.hamburger{
  position:fixed;
  top:20px;
  right:20px;
  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:220px;
  margin:0 auto;
}

.overlay-menu{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
  text-align:center;
}

.overlay-menu a{
  color:#f5f5f5;
  text-decoration:none;
  font-size:22px;
  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;
}

.menu-tel{
  margin-top:40px;
  padding-top:25px;
  border-top:1px solid rgba(198,165,92,0.4);
  text-align:center;
}

.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;
}

.menu-sns{
  margin-top:40px;
  padding-top:20px;
  border-top:1px solid rgba(198,165,92,0.4);
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.menu-sns a{
  color:#c6a55c;
  text-decoration:none;
  font-size:28px;
}

.menu-open{
  overflow:hidden;
}

/* メニュー演出 */
.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;
}

/* ===================================
   パンくず
=================================== */
.breadcrumb{
  display:none;
}

/* ===================================
   共通タイトル
=================================== */
.section-title{
  text-align:center;
  font-size:24px;
  margin:0 0 40px;
  position:relative;
  color:#e6d18a;
}

.section-title::before,
.section-title::after{
  content:"";
  position:absolute;
  top:50%;
  width:22%;
  height:1px;
}

.section-title::before{
  left:0;
  background:linear-gradient(90deg, transparent, #c6a54a);
}

.section-title::after{
  right:0;
  background:linear-gradient(90deg, #c6a54a, transparent);
}

.section-subtitle{
  text-align:center;
  color:#c6a54a;
  font-size:13px;
  letter-spacing:2px;
  margin-top:-35px;
}

/* ===================================
   共通レイアウト
=================================== */
.content-area{
  margin:50px 0;
}

.content-layout{
  display:flex;
  flex-direction:column;
  gap:30px;
}

.main-column{
  width:100%;
  min-width:0;
}

.side-column{
  width:100%;
}

.content-section{
  width:100%;
  margin-bottom:50px;
}

.side-title{
  text-align:center;
  font-size:20px;
  color:#f3eacd;
  margin:30px 0 20px;
  letter-spacing:2px;
}

.side-title:first-child{
  margin-top:0;
}

.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%;
  height:auto;
  display:block;
}

/* ===================================
   共通BOX
=================================== */
.section-box{
  background:rgba(15, 28, 46, 0.75);
  border:1px solid rgba(198,165,92,0.5);
  padding:20px;
  line-height:1.9;
  color:#f5f5f5;
  box-shadow:0 8px 20px rgba(0,0,0,0.25);
}

.concept-title{
  font-size:20px;
  color:#f3eacd;
  margin-bottom:16px;
  text-align:center;
  letter-spacing:2px;
}

/* ===================================
   固定ボタン
=================================== */
.fixed-contact{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  padding:0;
  background:transparent;
  opacity:0;
  transform:translateY(20px);
  transition:opacity 0.7s ease, transform 0.7s ease;
  pointer-events:none;
  z-index:999;
}

.fixed-contact.show{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

.fixed-inner{
  width:100%;
  margin:auto;
  display:flex;
  gap:10px;
  box-shadow:none;
}

.fixed-btn{
  flex:1;
  min-width:0;
  min-height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:14px 8px;
  font-size:17px;
  font-weight:bold;
  letter-spacing:1px;
  color:#f5f5f5;
  text-decoration:none;
  border:1px solid #c6a55c;
  border-radius:8px;
  background:#0f1c2e;
}

.tel-fixed{
  background:linear-gradient(45deg,#1e3a5f,#13263f);
}

.line-fixed{
  background:#1a3d2f;
  border-color:#00c300;
}

/* ===================================
   フッター
=================================== */
.footer{
  background:#0f1c2e;
  padding:30px 15px 90px;
  text-align:center;
  border-top:1px solid #c6a55c;
}

.footer-nav{
  display:flex;
  flex-direction:column;
  align-items:center;
  list-style:none;
  padding:0;
  margin:0 0 20px;
}

.footer-nav li{
  width:100%;
  padding:12px 0;
  text-align:center;
  border-bottom:1px solid rgba(198,165,92,0.35);
}

.footer-nav li:last-child{
  border-bottom:none;
}

.footer-nav a{
  display:block;
  width:100%;
  padding:10px 0;
  color:#f5f5f5;
  text-decoration:none;
  font-size:13px;
}

/* ===================================
   index.php 専用（スマホ基準）
=================================== */

/* hero */
.hero{
  height:260px;
  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;
  padding:0 20px;
  color:#f5f5f5;
  text-shadow:0 5px 20px rgba(0,0,0,0.9);
}

.hero-line1{
  font-size:18px;
  letter-spacing:2px;
  margin:0 0 14px;

  opacity:0;
  transform:translateY(20px);

  animation:heroFade1 1.2s ease forwards;
}

.hero-line2{
  font-size:18px;
  letter-spacing:2px;
  margin:0;

  opacity:0;
  transform:translateY(20px);

  animation:heroFade2 1.2s ease forwards;
  animation-delay:1.2s;
}

@keyframes heroFade1 {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFade2 {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* スライダー */
.slider{
  position:relative;
  width:100%;
  margin:30px auto 40px;
  overflow:hidden;
  box-shadow:0 10px 40px rgba(0,0,0,0.6);
  border-radius:12px;
}

.slides{
  display:flex;
  transition:transform 0.6s ease;
}

.slide-link{
  display:block;
  width:100%;
  flex-shrink:0;
}

.slide{
  width:100%;
  display:block;
}

.dots{
  text-align:center;
  margin:12px 0 6px;
}

.dot{
  display:inline-block;
  width:10px;
  height:10px;
  margin:4px;
  background:#bbb;
  border-radius:50%;
  cursor:pointer;
  transition:0.3s;
}

.dot.active{
  background:#c6a55c;
  transform:scale(1.2);
}

.prev,
.next{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(0,0,0,0.5);
  color:#c6a55c;
  border:none;
  width:36px;
  height:36px;
  cursor:pointer;
  font-size:16px;
  border-radius:50%;
  z-index:2;
}

.prev{
  left:10px;
}

.next{
  right:10px;
}

/* TOP NEWS */
.top-news{
  padding:50px 0;
}

.top-news-list{
  text-align:center;
  max-width:800px;
  margin:30px auto 20px;
  border-top:1px solid rgba(198,165,92,0.4);
}

.top-news-item{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:6px;
  padding:16px 0;
  border-bottom:1px solid rgba(198,165,92,0.25);
  text-decoration:none;
  color:#f3eacd;
  transition:0.3s;
}

.top-news-title{
  font-size:15px;
  line-height:1.6;
}

.top-news-date{
  font-size:13px;
  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;
}

/* キャストカード共通 */
.cast-list{
  width:100%;
  max-width:1200px;
  margin:0 auto 50px;
}

.cast-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:16px;
  max-width:1100px;
  margin:auto;
}

.cast-grid p{
  grid-column:1 / -1;
  text-align:center;
  margin:0;
}

.cast-card,
.schedule-cast-card{
  position:relative;
  background:#0f1c2e;
  border:1px solid #c6a55c;
  padding:8px;
  text-align:center;
  text-decoration:none;
  color:inherit;
  transition:0.3s;
}

.cast-card img,
.schedule-cast-image img{
  width:100%;
  aspect-ratio:3 / 4;
  object-fit:cover;
}

.new-badge,
.schedule-new-badge{
  position:absolute;
  top:10px;
  left:10px;
  background:linear-gradient(45deg,#d4af37,#f8e08a);
  color:#000;
  font-size:11px;
  font-weight:bold;
  padding:4px 8px;
  transform:rotate(-15deg);
  box-shadow:0 2px 6px rgba(0,0,0,0.4);
  z-index:2;
}

.today-badge{
  position:absolute;
  top:10px;
  right:10px;
  background:#d4af37;
  color:#fff;
  font-size:10px;
  font-weight:bold;
  padding:5px 8px;
  border-radius:4px;
  z-index:2;
}

.cast-name,
.schedule-cast-body h3{
  margin:14px 0 8px;
  font-size:17px;
  line-height:1.5;
}

.cast-comment,
.schedule-cast-comment{
  font-size:13px;
  line-height:1.6;
  margin:0 8px 10px;
  color:#ddd;
}

.cast-size,
.schedule-cast-size{
  font-size:12px;
  color:#aaa;
  line-height:1.6;
  margin:0;
}

.cast-time,
.schedule-cast-time{
  margin-top:8px;
  font-weight:bold;
  color:#d4af37;
  font-size:13px;
}

.content-section.cast-list:last-child{
  margin-bottom:0;
}

/* CONCEPT */
.info-section{
  display:block;
}

.section-box p{
  margin:0;
}

/* GALLERY */
.gallery-slider{
  position:relative;
  max-width:700px;
  margin:0 auto;
  background:rgba(15, 28, 46, 0.75);
  border:1px solid rgba(198,165,92,0.4);
  box-shadow:0 8px 20px rgba(0,0,0,0.25);
  padding:10px 10px 18px;
}

.gallery-view{
  width:100%;
  overflow:hidden;
  position:relative;
}

.gallery-slides{
  display:flex;
  transition:transform 0.6s ease;
}

.gallery-slide{
  min-width:100%;
  text-align:center;
}

.gallery-slide img{
  width:100%;
  border:1px solid rgba(198,165,92,0.4);
}

.gallery-comment{
  margin:12px 0 0;
  font-size:14px;
  line-height:1.7;
  color:#f5f5f5;
  text-align:center;
}

.gallery-prev,
.gallery-next{
  position:absolute;
  top:45%;
  transform:translateY(-50%);
  background:rgba(0,0,0,0.5);
  color:#c6a55c;
  border:none;
  width:36px;
  height:36px;
  cursor:pointer;
  font-size:16px;
  border-radius:50%;
  z-index:2;
}

.gallery-prev{
  left:10px;
}

.gallery-next{
  right:10px;
}

.gallery-dots{
  text-align:center;
  margin-top:12px;
}

.gallery-dot{
  display:inline-block;
  width:10px;
  height:10px;
  margin:0 4px;
  background:#bbb;
  border-radius:50%;
  cursor:pointer;
  transition:0.3s;
}

.gallery-dot.active{
  background:#c6a55c;
  transform:scale(1.2);
}

/* ===================================
   cast_list.php 専用（スマホ基準）
=================================== */

.cast-list-page .content-area{
  margin:50px 0;
}

.cast-list-page .main-column{
  width:100%;
}

.cast-list-page .cast-list{
  width:100%;
  max-width:1200px;
  margin:0 auto;
}

/* ===================================
   cast_detail.php 専用（スマホ基準）
=================================== */

.cast-detail-page .content-area{
  margin:50px 0;
}

.cast-detail-page .cast-profile-photo{
  text-align:center;
}

.cast-detail-page .profile-main{
  max-width:320px;
  margin:0 auto;
  touch-action:pan-y;
}

.cast-detail-page .profile-main img{
  width:100%;
  border:1px solid rgba(198,165,92,0.5);
  box-shadow:0 8px 20px rgba(0,0,0,0.25);
}

.cast-detail-page .profile-sub-images{
  display:flex;
  justify-content:center;
  gap:6px;
  margin-top:12px;
  flex-wrap:nowrap;
  overflow-x:auto;
  padding-bottom:4px;
}

.cast-detail-page .thumb{
  width:60px;
  height:80px;
  flex:0 0 60px;
  object-fit:cover;
  display:block;
  cursor:pointer;
  border:2px solid transparent;
  box-sizing:border-box;
  opacity:0.45;
}

.cast-detail-page .active-thumb{
  opacity:1;
  border:2px solid #fff;
  box-shadow:0 0 10px rgba(198,165,92,0.5);
}

.cast-detail-page .cast-name{
  margin:16px 0 8px;
  font-size:22px;
  line-height:1.5;
  text-align:center;
}

.cast-detail-page .cast-size{
  font-size:13px;
  line-height:1.7;
  color:#aaa;
  text-align:center;
  margin:0;
}

.cast-detail-page .manager-comment{
  white-space:normal;
  font-size:14px;
  line-height:1.8;
  margin:0;
}

.cast-detail-page .manager-comment + .manager-comment{
  margin-top:16px;
}

/* プロフィール一覧・出勤一覧 */
.cast-detail-page .profile-list{
  padding:0;
  overflow:hidden;
}

.cast-detail-page .profile-item{
  display:flex;
  flex-direction:column;
  border-bottom:1px solid rgba(198,165,92,0.25);
}

.cast-detail-page .profile-item:last-child{
  border-bottom:none;
}

.cast-detail-page .profile-label{
  width:100%;
  padding:12px 14px;
  background:rgba(19,38,63,0.85);
  color:#c6a55c;
  font-weight:bold;
  box-sizing:border-box;
  line-height:1.6;
}

.cast-detail-page .profile-value{
  width:100%;
  padding:12px 14px;
  box-sizing:border-box;
  line-height:1.8;
  word-break:break-word;
}

/* 写メ日記 */
.cast-detail-page .diary-box{
  text-align:center;
}

.cast-detail-page .diary-text{
  margin-bottom:18px;
  line-height:1.8;
  font-size:14px;
}

.cast-detail-page .diary-link-btn{
  display:inline-block;
  width:100%;
  max-width:280px;
  padding:12px 20px;
  border:1px solid #c6a55c;
  color:#f5f5f5;
  text-decoration:none;
  background:#0f1c2e;
  transition:0.3s;
  border-radius:4px;
}

/* サイドバナー */
.cast-detail-page .side-column{
  width:100%;
}

/* ===================================
   cast_schedule.php 専用
=================================== */

.cast-schedule-page-body .content-area{
  margin:50px 0;
}

.schedule-date-tabs{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:8px;
  margin:30px 0;
}

.schedule-date-tab{
  text-align:center;
  text-decoration:none;
  padding:10px 4px;
  background:#0f1c2e;
  border:1px solid rgba(198,165,92,0.5);
  color:#f5f5f5;
  border-radius:6px;
}

.schedule-date-tab span{
  display:block;
  font-size:15px;
  color:#f3eacd;
}

.schedule-date-tab small{
  font-size:11px;
  color:#c6a55c;
}

.schedule-date-tab.active{
  background:linear-gradient(45deg,#1e3a5f,#13263f);
  border-color:#e6d18a;
  box-shadow:0 0 12px rgba(198,165,92,0.4);
}

/* 出勤ページ専用のカード並び */
.schedule-cast-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:16px;
}

.schedule-cast-body{
  text-align:center;
  padding:12px 4px 4px;
}

.schedule-empty{
  grid-column:1 / -1;
  text-align:center;
  padding:30px 0;
  color:#f5f5f5;
}

/* ===================================
   news.php 専用（スマホ基準）
=================================== */

.news-page-body .news-page{
  padding:50px 0;
  background:#020b18;
}

.news-page-body .news-header{
  text-align:center;
  margin-bottom:30px;
}

.news-page-body .news-title{
  font-size:34px;
  color:#f3eacd;
  letter-spacing:2px;
  margin:0 0 10px;
}

.news-page-body .news-subtitle{
  font-size:14px;
  color:#c6a55c;
  margin:0;
}

.news-page-body .news-frame{
  position:relative;
  width:100%;
  max-width:900px;
  margin:0 auto;
  padding:24px 16px;
  background:rgba(15,28,46,0.85);
  border:1px solid rgba(198,165,92,0.5);
}

.news-page-body .news-frame::before,
.news-page-body .news-frame::after{
  content:"";
  position:absolute;
  width:22px;
  height:22px;
}

.news-page-body .news-frame::before{
  top:10px;
  left:10px;
  border-top:2px solid #c6a55c;
  border-left:2px solid #c6a55c;
}

.news-page-body .news-frame::after{
  bottom:10px;
  right:10px;
  border-bottom:2px solid #c6a55c;
  border-right:2px solid #c6a55c;
}

.news-page-body .corner-top-right{
  position:absolute;
  top:10px;
  right:10px;
  width:22px;
  height:22px;
  border-top:2px solid #c6a55c;
  border-right:2px solid #c6a55c;
}

.news-page-body .corner-bottom-left{
  position:absolute;
  bottom:10px;
  left:10px;
  width:22px;
  height:22px;
  border-bottom:2px solid #c6a55c;
  border-left:2px solid #c6a55c;
}

.news-page-body .news-item{
  padding:20px 0;
  border-bottom:1px solid rgba(198,165,92,0.3);
}

.news-page-body .news-item:last-child{
  border-bottom:none;
}

.news-page-body .news-item-row{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.news-page-body .news-thumb{
  width:100%;
  max-width:280px;
}

.news-page-body .news-thumb img{
  width:100%;
  height:auto;
  border:1px solid rgba(198,165,92,0.4);
  object-fit:cover;
}

.news-page-body .news-content{
  width:100%;
  min-width:0;
}

.news-page-body .news-item-head{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:8px;
  margin-bottom:10px;
}

.news-page-body .news-item-title{
  font-size:17px;
  color:#f3eacd;
  line-height:1.6;
  margin:0;
}

.news-page-body .news-date{
  font-size:13px;
  color:#c6a55c;
  white-space:nowrap;
}

.news-page-body .news-text{
  font-size:14px;
  color:#ddd4c4;
  line-height:1.8;
  margin:0;
  word-break:break-word;
}

.no-news{
  text-align:center;
  padding:20px 0;
}

/* ===================================
   access.html 専用（スマホ基準）
=================================== */

.access-page-body .content-area{
  margin:50px 0;
}

.access-page-body .access-room{
  background:rgba(15, 28, 46, 0.8);
  border:1px solid rgba(198,165,92,0.5);
  padding:18px;
  margin-bottom:28px;
}

.access-page-body .access-room-title{
  text-align:center;
  font-size:20px;
  color:#f3eacd;
  margin:0 0 16px;
  padding-bottom:10px;
  border-bottom:1px solid rgba(198,165,92,0.35);
  line-height:1.5;
}

.access-page-body .map-box iframe{
  width:100%;
  height:320px;
  border:0;
  display:block;
}

.access-page-body .map-btn{
  display:block;
  width:100%;
  max-width:220px;
  margin:14px auto 0;
  padding:10px 12px;
  text-align:center;
  text-decoration:none;
  color:#f5f5f5;
  border:1px solid #c6a55c;
  background:#0f1c2e;
  transition:0.3s;
  border-radius:4px;
}

.access-page-body .access-text{
  text-align:center;
  margin-top:14px;
  color:#f5f5f5;
  line-height:1.8;
  font-size:14px;
}

/* ===================================
   system.html 専用（スマホ基準）
=================================== */

.system-page-body .content-area{
  margin:50px 0;
}

.system-page-body .content-section.info-section{
  display:block;
}

.system-page-body .price-room{
  width:100%;
  max-width:900px;
  margin:0 auto 24px;
  padding:20px 15px;
  box-sizing:border-box;
  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);
  box-shadow:0 8px 24px rgba(0,0,0,0.25);
}

.system-page-body .price-room-title{
  text-align:center;
  font-size:22px;
  color:#f3eacd;
  padding-bottom:8px;
  margin:0 0 4px;
  letter-spacing:1px;
  line-height:1.5;
}

.system-page-body .price-room-subtitle{
  text-align:center;
  font-size:11px;
  color:#c6a55c;
  margin:0 0 18px;
  padding-bottom:10px;
  border-bottom:2px solid rgba(198,165,92,0.35);
  letter-spacing:3px;
}

.system-page-body .price-comment-title{
  font-size:16px;
  text-align:center;
  color:#f3eacd;
  margin:0 0 16px;
  padding:10px 0;
  border-bottom:1px solid rgba(198,165,92,0.3);
  line-height:1.6;
}

.system-page-body .price-row{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:10px;
  border-bottom:1px solid rgba(198,165,92,0.3);
  padding:12px 0;
  font-size:14px;
}

.system-page-body .price-row span:first-child{
  width:40%;
  color:#f3eacd;
  line-height:1.6;
}

.system-page-body .price-row span:last-child{
  width:60%;
  text-align:right;
  line-height:1.6;
  color:#e6d18a;
  font-weight:bold;
}

.system-page-body .price-row.long-text{
  align-items:flex-start;
}

.system-page-body .price-row.long-text span:last-child{
  max-width:none;
}

.system-page-body .old-price{
  text-decoration:line-through;
  color:#888;
  margin-right:6px;
}

.system-page-body .arrow{
  margin:0 4px;
  color:#c6a55c;
}

.system-page-body .new-price{
  color:#e6d18a;
  font-weight:bold;
  font-size:16px;
}

.system-page-body .basic-play{
  margin-top:30px;
}

.system-page-body .basic-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:10px;
  max-width:520px;
  margin:20px auto 20px;
}

.system-page-body .basic-item{
  text-align:center;
  padding:10px 8px;
  border:1px solid rgba(198,165,92,0.6);
  background:rgba(255,255,255,0.03);
  font-size:13px;
  color:#f3eacd;
  border-radius:4px;
  line-height:1.5;
}

.system-page-body .basic-text{
  font-size:13px;
  margin:15px 0 0;
  line-height:1.8;
  padding-left:20px;
}

.system-page-body .option-free{
  display:flex;
  justify-content:space-between;
  gap:10px;
  font-size:15px;
  border-bottom:1px solid rgba(198,165,92,0.3);
  padding:10px 0;
}

.system-page-body .option-free span:last-child{
  font-weight:bold;
  color:#e6d18a;
  text-align:right;
}

.system-page-body .option-price{
  font-size:16px;
  padding-bottom:10px;
  margin-top:20px;
  line-height:1.8;
}

.system-page-body .option-row{
  display:flex;
  justify-content:space-between;
  gap:10px;
  border-bottom:1px solid rgba(198,165,92,0.3);
  padding:10px 0;
  font-size:14px;
}

.system-page-body .option-row span:first-child{
  color:#f3eacd;
}

.system-page-body .option-row span:last-child{
  text-align:right;
  color:#e6d18a;
  font-weight:bold;
}

.system-page-body .cansel-row{
  display:flex;
  flex-direction:column;
  gap:8px;
  border-bottom:1px solid rgba(198,165,92,0.3);
  padding:14px 0;
}

.system-page-body .cansel-label{
  width:100%;
  font-size:16px;
  color:#f3eacd;
  line-height:1.6;
}

.system-page-body .cansel-value{
  width:100%;
  font-size:16px;
  color:#e6d18a;
  line-height:1.7;
  text-align:left;
}

.system-page-body .credit-image{
  display:flex;
  justify-content:center;
}

.system-page-body .credit-image img{
  max-width:100%;
  height:auto;
  box-shadow:0 5px 15px rgba(0,0,0,0.4);
}

.system-page-body .credit-text{
  font-size:13px;
  margin:20px 0;
  line-height:1.8;
  padding-left:20px;
}

.system-page-body .credit-payment-image{
  text-align:center;
  margin-top:20px;
}

.system-page-body .credit-payment-image img{
  width:80%;
  max-width:320px;
  height:auto;
  margin:0 auto;
}

.system-page-body .credit-link{
  text-align:center;
  margin-top:12px;
  font-size:14px;
  line-height:1.6;
}

.system-page-body .credit-link a{
  color:#b88a6a;
  text-decoration:none;
}

.system-page-body .notes-area{
  margin-top:20px;
}

.system-page-body .notes-heading{
  font-size:17px;
  color:#e6d18a;
  margin:24px 0 10px;
  border-left:3px solid #c6a55c;
  padding-left:10px;
  line-height:1.5;
}

.system-page-body .notes-list{
  padding-left:20px;
  line-height:1.8;
  font-size:14px;
  margin:0;
}

.system-page-body .notes-list li{
  margin-bottom:6px;
}

/* ===================================
   タブレット以上
=================================== */
@media (min-width:768px){

   body{
    font-size:15px;
  }

  .container{
    padding:0 20px;
  }

  .section-title{
    font-size:28px;
  }

  .section-title::before,
  .section-title::after{
    width:28%;
  }

  .content-area{
    margin:70px 0;
  }

  .fixed-btn{
    font-size:20px;
  }

  .hero{
    height:420px;
  }

  .hero-line1,
  .hero-line2{
    font-size:28px;
    letter-spacing:4px;
  }

  .slider{
    margin:40px auto 50px;
    border-radius:16px;
  }

  .prev,
  .next{
    width:42px;
    height:42px;
    font-size:18px;
  }

  .top-news-item{
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
    gap:20px;
  }

  .top-news-title{
    font-size:16px;
  }

  .top-news-date{
    font-size:14px;
    white-space:nowrap;
  }

  .cast-grid{
    grid-template-columns:repeat(2, 1fr);
    gap:24px;
  }

  .cast-card,
  .schedule-cast-card{
    padding:10px;
  }

  .cast-name,
  .schedule-cast-body h3{
    font-size:20px;
  }

  .cast-comment,
  .schedule-cast-comment{
    font-size:14px;
  }

  .cast-size,
  .schedule-cast-size{
    font-size:13px;
  }

  .cast-time,
  .schedule-cast-time{
    font-size:14px;
  }

  .gallery-slider{
    padding:12px 12px 20px;
  }

  .gallery-prev,
  .gallery-next{
    width:40px;
    height:40px;
    font-size:18px;
  }

  .cast-detail-page .content-area{
    margin:70px 0;
  }

  .cast-detail-page .profile-main{
    max-width:360px;
  }

  .cast-detail-page .profile-sub-images{
    gap:10px;
    flex-wrap:wrap;
    overflow:visible;
    padding-bottom:0;
  }

  .cast-detail-page .thumb{
    width:72px;
    height:92px;
    flex:0 0 72px;
  }

  .cast-detail-page .cast-name{
    font-size:26px;
  }

  .cast-detail-page .cast-size{
    font-size:14px;
  }

  .cast-detail-page .manager-comment{
    font-size:15px;
  }

  .cast-detail-page .profile-label,
  .cast-detail-page .profile-value{
    padding:14px 16px;
  }

  .cast-detail-page .diary-text{
    font-size:15px;
  }

  .cast-detail-page .diary-link-btn{
    width:auto;
    min-width:220px;
  }

  .news-page-body .news-page{
    padding:70px 0;
  }

  .news-page-body .news-header{
    margin-bottom:40px;
  }

  .news-page-body .news-title{
    font-size:42px;
    letter-spacing:3px;
  }

  .news-page-body .news-subtitle{
    font-size:15px;
  }

  .news-page-body .news-frame{
    padding:36px 28px;
  }

  .news-page-body .news-item-row{
    gap:18px;
  }

  .news-page-body .news-item-title{
    font-size:18px;
  }

  .news-page-body .news-date{
    font-size:14px;
  }

  .news-page-body .news-text{
    font-size:14px;
  }

  .access-page-body .content-area{
    margin:70px 0;
  }

  .access-page-body .access-room{
    padding:22px;
    margin-bottom:34px;
  }

  .access-page-body .access-room-title{
    font-size:21px;
  }

  .access-page-body .map-box iframe{
    height:400px;
  }

  .access-page-body .access-text{
    font-size:15px;
  }

  .system-page-body .content-area{
    margin:70px 0;
  }

  .system-page-body .price-room{
    padding:24px 20px;
    margin-bottom:30px;
  }

  .system-page-body .price-room-title{
    font-size:24px;
  }

  .system-page-body .price-comment-title{
    font-size:17px;
  }

  .system-page-body .price-row{
    font-size:16px;
  }

  .system-page-body .price-row span:first-child{
    width:38%;
  }

  .system-page-body .price-row span:last-child{
    width:62%;
  }

  .system-page-body .new-price{
    font-size:18px;
  }

  .system-page-body .basic-grid{
    gap:12px;
  }

  .system-page-body .basic-item{
    font-size:14px;
  }

  .system-page-body .basic-text,
  .system-page-body .credit-text{
    font-size:14px;
  }

  .system-page-body .option-free{
    font-size:18px;
  }

  .system-page-body .option-price{
    font-size:18px;
  }

  .system-page-body .option-row{
    font-size:15px;
  }

  .system-page-body .cansel-label,
  .system-page-body .cansel-value{
    font-size:17px;
  }

  .system-page-body .notes-heading{
    font-size:18px;
  }

  .system-page-body .notes-list{
    font-size:15px;
  }

  .schedule-date-tabs{
    grid-template-columns:repeat(7, 1fr);
    gap:10px;
  }

  .schedule-cast-grid{
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
  }
}



/* ===================================
   PC以上
=================================== */
@media (min-width:1024px){

  .top-bar{
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
    padding:30px 60px;
  }

  .shopname-img{
    width:400px;
  }

  .header-right{
    margin-left:auto;
    flex-direction:row;
    align-items:center;
    gap:20px;
  }

  .tel{
    font-size:28px;
    text-align:left;
    line-height:1.2;
  }

  .tel span{
    font-size:20px;
  }

  .reserve-area{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-left:20px;
  }

  .btn{
    width:auto;
    padding:8px 16px;
  }

  .nav ul{
    display:flex;
    justify-content:center;
    gap:50px;
    padding:15px 0;
  }

  .nav li{
    padding:0;
  }

  .nav li::before{
    display:none !important;
  
  }
/*
  .nav li:nth-child(-n+6){
    border-bottom:none;
  }
*/
  .nav a{
    font-size:14px;
    position:relative;
  }

  .nav a span{
    font-size:10px;
  }

  .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{
    top:25px;
    right:25px;
  }

  .menu-logo img{
    width:300px;
  }

  .overlay-menu{
    gap:24px 40px;
  }

  .overlay-menu a{
    font-size:28px;
  }

  .breadcrumb{
    display:block;
    background:#f8f5ef;
    border-top:1px solid #d8c28c;
    border-bottom:1px solid #d8c28c;
  }

  .breadcrumb .container{
    padding:10px 20px;
    font-size:13px;
    color:#c6a55c;
  }

  .breadcrumb a{
      color:#8b6b2d;
      text-decoration:none;
  }

  .breadcrumb span{
      margin:0 8px;
      color:#666;
  }

  .content-layout{
    flex-direction:row;
    align-items:flex-start;
    gap:40px;
  }

  .main-column{
    flex:1;
  }

  .side-column{
    width:260px;
    flex-shrink:0;
  }

  .cast-detail-page .main-column{
    flex:1;
    min-width:0;
  }

  .cast-detail-page .side-column{
    width:260px;
    flex-shrink:0;
  }

  .content-section{
    margin-bottom:80px;
  }

  .footer{
    padding:40px 0 100px;
  }

  .footer-nav{
    flex-direction:row;
    justify-content:center;
    flex-wrap:wrap;
    margin:0 0 20px;
  }

  .footer-nav li{
    width:auto;
    border-bottom:none;
    padding:10px;
    position:relative;
  }

  .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{
    width:auto;
    padding:0;
    font-size:14px;
  }

  .fixed-inner{
    max-width:1200px;
    padding:0 20px;
  }

  .fixed-btn{
    font-size:30px;
    border-radius:4px;
  }

  .hero{
    height:80vh;
  }

  .hero-line1{
    font-size:38px;
    letter-spacing:4px;
    position:relative;
    left:-40px;
    margin-bottom:30px;
  }

  .hero-line2{
    font-size:38px;
    letter-spacing:6px;
    position:relative;
    left:50px;
  }

  .slider{
    max-width:1100px;
    margin:50px auto;
    border-radius:20px;
  }

  .slider img{
    margin-top:0;
  }

  .prev,
  .next{
    width:auto;
    height:auto;
    padding:15px;
    font-size:20px;
  }

  .prev{
    left:15px;
  }

  .next{
    right:15px;
  }

  .top-news{
    padding:80px 0;
  }

  .top-news-list{
    margin:40px auto 20px;
  }

  .cast-list{
    width:90%;
    margin:0 auto 80px;
  }

  .cast-grid{
    grid-template-columns:repeat(4, 1fr);
    gap:30px;
  }

  .new-badge,
  .schedule-new-badge{
    left:15px;
    font-size:15px;
    padding:4px 12px;
    transform:rotate(-20deg);
  }

  .today-badge{
    font-size:12px;
    padding:6px 10px;
  }

  .cast-name,
  .schedule-cast-body h3{
    font-size:24px;
    margin-top:20px;
  }

  .cast-comment,
  .schedule-cast-comment{
    margin:0 14px 10px;
  }

  .cast-size,
  .schedule-cast-size{
    font-size:14px;
    margin-top:5px;
  }

  .section-box{
    padding:28px;
  }

  .concept-title{
    font-size:22px;
    margin-bottom:20px;
  }

  .gallery-prev,
  .gallery-next{
    width:42px;
    height:42px;
    font-size:20px;
  }

  .gallery-prev{
    left:15px;
  }

  .gallery-next{
    right:15px;
  }

  .gallery-comment{
    margin:14px 0 0;
    font-size:15px;
    line-height:1.8;
  }

  .cast-list-page .content-area{
    margin:80px 0;
  }

  .cast-list-page .cast-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 20px rgba(0,0,0,0.4);
  }

  .cast-detail-page .content-area{
    margin:80px 0;
  }

  .cast-detail-page .profile-main{
    max-width:360px;
  }

  .cast-detail-page .thumb{
    width:80px;
    height:100px;
    flex:0 0 80px;
  }

  .cast-detail-page .cast-name{
    font-size:30px;
    margin-top:20px;
  }

  .cast-detail-page .cast-size{
    font-size:16px;
  }

  .cast-detail-page .profile-item{
    flex-direction:row;
  }

  .cast-detail-page .main-column{
    min-width:0;
  }
 
  .cast-detail-page .profile-main{
    max-width:420px;
  }

  .cast-detail-page .section-box,
  .cast-detail-page .profile-list{
    width:100%;
    box-sizing:border-box;
  }

  .cast-detail-page .profile-value{
    min-width:0;
    flex:1;
    padding:14px 16px;
  }

  .cast-detail-page .profile-item .profile-value:only-child{
    width:100%;
  }

  .cast-detail-page .profile-label{
    width:180px;
    flex-shrink:0;
    padding:14px 16px;
  }

  .cast-detail-page .diary-link-btn:hover{
    background:#13263f;
    box-shadow:0 0 10px rgba(198,165,92,0.4);
  }

  .news-page-body .news-page{
    padding:80px 0;
  }

  .news-page-body .news-header{
    margin-bottom:50px;
  }

  .news-page-body .news-title{
    font-size:48px;
  }

  .news-page-body .news-subtitle{
    font-size:16px;
  }

  .news-page-body .news-frame{
    padding:50px 45px;
  }

  .news-page-body .news-frame::before,
  .news-page-body .news-frame::after,
  .news-page-body .corner-top-right,
  .news-page-body .corner-bottom-left{
    width:28px;
    height:28px;
  }

  .news-page-body .news-frame::before{
    top:12px;
    left:12px;
  }

  .news-page-body .news-frame::after{
    bottom:12px;
    right:12px;
  }

  .news-page-body .corner-top-right{
    top:12px;
    right:12px;
  }

  .news-page-body .corner-bottom-left{
    bottom:12px;
    left:12px;
  }

  .news-page-body .news-item{
    padding:25px 0;
  }

  .news-page-body .news-item-row{
    flex-direction:row;
    align-items:flex-start;
    gap:20px;
  }

  .news-page-body .news-thumb{
    width:150px;
    flex-shrink:0;
  }

  .news-page-body .news-thumb img{
    width:100%;
    height:110px;
  }

  .news-page-body .news-content{
    flex:1;
  }

  .news-page-body .news-item-head{
    flex-direction:row;
    justify-content:space-between;
    align-items:flex-start;
    gap:20px;
    margin-bottom:10px;
  }

  .news-page-body .news-item-title{
    font-size:18px;
    flex:1;
  }

  .news-page-body .news-date{
    font-size:14px;
    flex-shrink:0;
  }

  .news-page-body .news-text{
    font-size:14px;
  }

  .access-page-body .content-area{
    margin:80px 0;
  }

  .access-page-body .access-room{
    padding:25px;
    margin-bottom:40px;
  }

  .access-page-body .access-room-title{
    font-size:22px;
    margin-bottom:18px;
  }

  .access-page-body .map-box iframe{
    height:500px;
  }

  .access-page-body .map-btn{
    width:250px;
    margin:20px auto;
    padding:8px 12px;
    border-radius:0;
  }

  .access-page-body .map-btn:hover{
    background:#13263f;
    box-shadow:0 0 10px rgba(198,165,92,0.4);
  }

  .access-page-body .access-text{
    margin-top:10px;
    font-size:16px;
  }

  .system-page-body .content-area{
    margin:80px 0;
  }

  .system-page-body .price-room{
    padding:30px 25px;
    margin:0 auto 40px;
  }

  .system-page-body .price-room-title{
    font-size:26px;
    letter-spacing:2px;
  }

  .system-page-body .price-room-subtitle{
    margin-bottom:22px;
    padding-bottom:12px;
  }

  .system-page-body .price-comment-title{
    font-size:18px;
    margin-bottom:18px;
  }

  .system-page-body .price-row{
    align-items:center;
    gap:20px;
    font-size:20px;
  }

  .system-page-body .price-row span:first-child{
    width:auto;
  }

  .system-page-body .price-row span:last-child{
    width:auto;
  }

  .system-page-body .price-row.long-text span:last-child{
    max-width:65%;
    line-height:1.6;
  }

  .system-page-body .new-price{
    font-size:20px;
  }

  .system-page-body .basic-play{
    margin-top:50px;
  }

  .system-page-body .basic-grid{
    grid-template-columns:repeat(3, 1fr);
    gap:12px;
    margin:30px auto 20px;
  }

  .system-page-body .basic-item{
    font-size:14px;
    padding:12px 10px;
  }

  .system-page-body .basic-text{
    font-size:15px;
    margin-top:15px;
    padding:0 10px;
  }

  .system-page-body .option-free{
    font-size:20px;
    padding:8px 0;
  }

  .system-page-body .option-price{
    font-size:20px;
    padding-bottom:10px;
    margin-top:20px;
  }

  .system-page-body .option-row{
    font-size:16px;
    padding:8px 0;
  }

  .system-page-body .cansel-row{
    flex-direction:row;
    align-items:center;
    gap:0;
    padding:18px 0;
  }

  .system-page-body .cansel-label{
    width:220px;
    flex-shrink:0;
    font-size:18px;
  }

  .system-page-body .cansel-value{
    flex:1;
    font-size:18px;
    text-align:right;
  }

  .system-page-body .credit-text{
    font-size:15px;
    margin-top:30px;
    margin-bottom:30px;
  }

  .system-page-body .credit-payment-image img{
    width:320px;
    max-width:100%;
  }

  .system-page-body .credit-link{
    font-size:16px;
  }

  .system-page-body .credit-link a:hover{
    color:#e6d18a;
  }

  .system-page-body .credit-image img{
    max-width:70%;
    height:auto;
    box-shadow:0 5px 15px rgba(0,0,0,0.4);
  }

  .system-page-body .notes-area{
    margin-top:30px;
  }

  .system-page-body .notes-heading{
    font-size:18px;
    margin-top:25px;
  }

  .system-page-body .notes-list{
    font-size:15px;
  }

  .cast-schedule-page-body .content-area{
    margin:80px 0;
  }

  /* cast_schedule */
  .schedule-cast-grid{
    grid-template-columns:repeat(4, 1fr);
    gap:30px;
  }
}

/* ===================================
   GL Lounge デモテーマ
   白・ベージュ・ゴールド
=================================== */
:root{
  --gl-white:#fffefa;
  --gl-ivory:#f8f4ec;
  --gl-beige:#e9dfcf;
  --gl-gold:#b08a43;
  --gl-gold-light:#d8bf82;
  --gl-text:#4a433a;
  --gl-muted:#84796b;
  --gl-border:#ded2bf;
}

body{
  margin:0;
  padding:0;

  font-family:"Yu Gothic","Hiragino Kaku Gothic ProN",Meiryo,sans-serif;
  color:var(--gl-text);

  background-image:url("../images/bg/bg_01.png");
  background-position:center top;
  background-size:cover;
  background-repeat:no-repeat;
  background-attachment:fixed;
}

.header,
.nav,
.footer{
  background:var(--gl-white);
}

.header{
  border-bottom:1px solid var(--gl-border);
}

.shopname-img{
  width:380px;
  max-width:100%;
  height:auto;
  object-fit:contain;
}

.menu-logo img{
  width:260px;
  max-width:100%;
  height:auto;
  object-fit:contain;
}

.tel{ color:var(--gl-text); }
.tel span{ color:var(--gl-muted); }

.nav{
  border-top:1px solid var(--gl-border);
  border-bottom:1px solid var(--gl-border);
}
.nav a{ color:var(--gl-text); }
.nav a span{ color:var(--gl-muted); }
.nav li::before{ background:var(--gl-border)!important; }
/*.nav li:nth-child(-n+6){ border-bottom:1px solid var(--gl-border); }*/

.hamburger span{ background:var(--gl-gold); }
.menu-overlay{ background:rgba(255,254,250,.97); }
.overlay-menu a,
.menu-tel-number{ color:var(--gl-text); }
.overlay-menu span,
.menu-tel-title,
.menu-sns a{ color:var(--gl-gold); }
.menu-logo,.menu-tel,.menu-sns{ border-color:var(--gl-border); }

.section-title,
.side-title,
.concept-title{ color:var(--gl-text); }
.section-subtitle,
.top-news-date,
.top-news-more a,
.cast-time,
.schedule-cast-time{ color:var(--gl-gold); }
.section-title::before{ background:linear-gradient(90deg,transparent,var(--gl-gold)); }
.section-title::after{ background:linear-gradient(90deg,var(--gl-gold),transparent); }

.section-box,
.cast-card,
.schedule-cast-card,
.gallery-slider,
.side-banner,
.news-frame{
  background:#fff;
  color:var(--gl-text);
  border-color:var(--gl-border);
  box-shadow:0 8px 24px rgba(102,82,49,.08);
}

.cast-card,
.schedule-cast-card{
  border:1px solid var(--gl-border);
  border-radius:10px;
  overflow:hidden;
}
.cast-comment,
.schedule-cast-comment{ color:#665e55; }
.cast-size,
.schedule-cast-size{ color:var(--gl-muted); }
.today-badge{ background:var(--gl-gold); }
.new-badge,.schedule-new-badge{
  background:linear-gradient(45deg,var(--gl-gold),var(--gl-gold-light));
  color:#fff;
}

.profile-label{
  background:var(--gl-ivory)!important;
  color:var(--gl-gold)!important;
}
.profile-item{ border-color:var(--gl-border)!important; }

.top-news-item{ color:var(--gl-text); border-color:var(--gl-border); }
.top-news-list{ border-color:var(--gl-border); }

.fixed-btn{
  background:#fff;
  color:var(--gl-text);
  border-color:var(--gl-gold);
}
.tel-fixed{ background:#fff; }
.line-fixed{ background:#f6fff8; color:#27683b; }

.footer{
  border-top:1px solid var(--gl-border);
  color:var(--gl-text);
}
.footer-nav li{ border-color:var(--gl-border); }
.footer-nav a{ color:var(--gl-text); }

/* ===================================
   HEROスライダー
=================================== */

/* Hero全体の外側 */
.hero-container{
  width:100%;
  max-width:1200px;
  margin:24px auto 40px;
  padding:0 16px;
}

/* Hero本体 */
.hero-slider{
  position:relative;
  width:100%;
  max-width:1000px;
  aspect-ratio:3 / 2;
  margin:0 auto;
  overflow:hidden;

  background:#f7f1e7;
  border:1px solid rgba(176,138,67,.45);
  border-radius:12px;
  box-shadow:0 8px 30px rgba(0,0,0,.15);
}

/* スライドを重ねる場所 */
.hero-slides{
  position:absolute;
  inset:0;
}

/* 各スライド */
.hero-slide{
  position:absolute;
  inset:0;

  background-position:center center;
  background-repeat:no-repeat;
  background-size:cover;

  opacity:0;
  transform:scale(1.02);

  transition:
    opacity 1s ease,
    transform 5s ease;

  pointer-events:none;
}

/* 表示中のスライド */
.hero-slide.active{
  opacity:1;
  transform:scale(1);
  pointer-events:auto;
}

/* 左右ボタン */
.hero-prev,
.hero-next{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:5;

  width:42px;
  height:42px;
  padding:0;

  display:flex;
  align-items:center;
  justify-content:center;

  border:1px solid rgba(176,138,67,.7);
  border-radius:50%;

  color:var(--gl-gold);
  background:rgba(255,255,255,.82);

  font-size:16px;
  cursor:pointer;
}

.hero-prev{
  left:14px;
}

.hero-next{
  right:14px;
}

/* 下の丸ボタン */
.hero-dots{
  position:absolute;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  z-index:5;

  display:flex;
  gap:9px;
}

.hero-dot{
  width:10px;
  height:10px;
  padding:0;

  border:1px solid var(--gl-gold);
  border-radius:50%;

  background:#fff;
  cursor:pointer;
}

.hero-dot.active{
  background:var(--gl-gold);
}

/* ===================================
   スマホ
=================================== */
@media (max-width:767px){

  .hero-container{
    margin:12px auto 30px;
    padding:0 12px;
  }

  .hero-slider{
    width:100%;
    max-width:none;
    aspect-ratio:3 / 2;
    border-radius:6px;
  }

  .hero-prev,
  .hero-next{
    width:34px;
    height:34px;
    font-size:12px;
  }

  .hero-prev{
    left:8px;
  }

  .hero-next{
    right:8px;
  }

  .hero-dots{
    bottom:10px;
    gap:7px;
  }

  .hero-dot{
    width:8px;
    height:8px;
  }
}
/* ===================================
   GL Lounge 全ページ統一デザイン
   旧ダークテーマを白・ベージュ・ゴールドへ統一
=================================== */

/* ページ全体 */
body{
  color:var(--gl-text);

  background-image:url("../images/bg/bg_01.png");
  background-position:center top;
  background-size:cover;
  background-repeat:no-repeat;
  background-attachment:fixed;
}

.news-page-body .news-page{
  background:transparent;
  color:var(--gl-text);
}

.content-area,
.news-page,
.cast-schedule-page{
  background:transparent;
}

.breadcrumb{
  color:var(--gl-muted);
}

.breadcrumb a{
  color:var(--gl-gold);
}

/* 共通カード・フレーム */
.section-box,
.access-page-body .access-room,
.system-page-body .price-room,
.costume-page-body .costume-frame,
.news-page-body .news-frame,
.gallery-slider,
.cast-card,
.schedule-cast-card{
  background:rgba(255,255,255,.94);
  color:var(--gl-text);
  border:1px solid var(--gl-border);
  border-radius:12px;
  box-shadow:0 10px 28px rgba(102,82,49,.09);
}

/* ACCESS */
.access-page-body .access-room-title{
  color:var(--gl-text);
  border-color:var(--gl-border);
}

.access-page-body .access-text{
  color:var(--gl-muted);
}

.access-page-body .map-btn{
  color:#fff;
  border:1px solid var(--gl-gold);
  background:linear-gradient(135deg,var(--gl-gold),#c9a55c);
  box-shadow:0 6px 16px rgba(176,138,67,.2);
}

.access-page-body .map-btn:hover{
  opacity:.88;
}

/* SYSTEM */
.system-page-body .price-room-title,
.system-page-body .price-comment-title,
.system-page-body .price-row span:first-child,
.system-page-body .option-row span:first-child,
.system-page-body .cansel-label{
  color:var(--gl-text);
}

.system-page-body .price-room-subtitle,
.system-page-body .price-row span:last-child,
.system-page-body .new-price,
.system-page-body .option-free span:last-child,
.system-page-body .option-row span:last-child,
.system-page-body .cansel-value,
.system-page-body .notes-heading{
  color:var(--gl-gold);
}

.system-page-body .price-room-subtitle,
.system-page-body .price-comment-title,
.system-page-body .price-row,
.system-page-body .option-free,
.system-page-body .option-row,
.system-page-body .cansel-row{
  border-color:var(--gl-border);
}

.system-page-body .basic-item{
  color:var(--gl-text);
  background:var(--gl-ivory);
  border:1px solid var(--gl-border);
}

.system-page-body .old-price{
  color:#a49a8e;
}

.system-page-body .credit-image img{
  box-shadow:0 8px 20px rgba(102,82,49,.12);
}

/* NEWS */
.news-page-body .news-title,
.news-page-body .news-item-title{
  color:var(--gl-text);
}

.news-page-body .news-subtitle,
.news-page-body .news-date{
  color:var(--gl-gold);
}

.news-page-body .news-text{
  color:#665e55;
}

.news-page-body .news-item,
.news-page-body .news-thumb img{
  border-color:var(--gl-border);
}

.news-page-body .news-frame::before,
.news-page-body .news-frame::after,
.news-page-body .corner-top-right,
.news-page-body .corner-bottom-left{
  border-color:var(--gl-gold);
}

/* キャスト一覧・出勤 */
.schedule-date-tab{
  color:var(--gl-text);
  background:#fff;
  border-color:var(--gl-border);
}

.schedule-date-tab span{
  color:var(--gl-text);
}

.schedule-date-tab small{
  color:var(--gl-gold);
}

.schedule-date-tab.active{
  color:#fff;
  background:linear-gradient(135deg,var(--gl-gold),#c9a55c);
  border-color:var(--gl-gold);
  box-shadow:0 6px 18px rgba(176,138,67,.22);
}

.schedule-date-tab.active span,
.schedule-date-tab.active small{
  color:#fff;
}

.schedule-empty{
  color:var(--gl-muted);
}

.cast-detail-page .profile-main img,
.cast-detail-page .thumb{
  border-color:var(--gl-border);
}

.cast-detail-page .active-thumb{
  border-color:var(--gl-gold);
  box-shadow:0 0 12px rgba(176,138,67,.28);
}

.cast-detail-page .cast-size{
  color:var(--gl-muted);
}

.cast-detail-page .diary-link-btn{
  color:#fff;
  background:linear-gradient(135deg,var(--gl-gold),#c9a55c);
  border-color:var(--gl-gold);
}

/* COSTUME */
.costume-page-body .costume-item{
  background:#fff;
  border:1px solid var(--gl-border);
  border-radius:10px;
  box-shadow:0 6px 18px rgba(102,82,49,.07);
  overflow:hidden;
}

.costume-page-body .costume-name{
  color:var(--gl-text);
}

/* 共通サイドバナー */
.common-side-banners{
  align-self:flex-start;
}

.side-banner-group + .side-banner-group{
  margin-top:34px;
}

.side-banner-link{
  display:block;
  text-decoration:none;
}

.side-banner{
  overflow:hidden;
  border-radius:10px;
  background:#fff;
  border:1px solid var(--gl-border);
  box-shadow:0 8px 22px rgba(102,82,49,.09);
  transition:transform .25s ease, box-shadow .25s ease;
}

.side-banner-link:hover .side-banner{
  transform:translateY(-2px);
  box-shadow:0 12px 28px rgba(102,82,49,.14);
}

.side-banner img{
  width:100%;
  height:auto;
}

/* PC */
@media (min-width:768px){
  .common-side-banners{
    position:sticky;
    top:24px;
  }
}


/* ===================================
   RANKING
=================================== */

.ranking-section{
  width:100%;
  margin-bottom:50px;
}

.ranking-list{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:35px;
  width:100%;
  margin:0 auto;
}

.ranking-card{
    position:relative;
    display:block;
    padding:10px;

    background:#ffffff;
    border:1px solid #d8c28c;
    border-radius:12px;

    text-align:center;
    text-decoration:none;
    color:#333;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    transition:.3s;
}

.ranking-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(0,0,0,.12);
}

.ranking-number{
  position:absolute;
  top:8px;
  left:8px;
  z-index:2;

  padding:5px 9px;

  background:linear-gradient(45deg, #d4af37, #f8e08a);
  color:#111;

  font-size:12px;
  font-weight:bold;

  border-radius:3px;
  box-shadow:0 2px 6px rgba(0,0,0,.3);
}

.ranking-image{
  width:100%;
  overflow:hidden;
}

.ranking-image img{
  width:100%;
  aspect-ratio:3 / 4;
  object-fit:cover;
}

.ranking-name{
    margin:12px 0 8px;

    color:#4b4034;
    font-size:16px;
    font-weight:600;
    line-height:1.6;
}

.ranking-name span{
    display:block;
    margin-top:4px;

    color:#8b7a66;
    font-size:13px;
    font-weight:400;
}

.cast-detail-btn{

    display:inline-block;
    margin-top:10px;
    padding:8px 18px;
    color:#8b6b2d;
    background:#fffaf2;
    border:1px solid #d8c28c;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    transition:.3s;

}

.ranking-empty{
  grid-column:1 / -1;
  text-align:center;
  padding:30px 0;
}

/* タブレット */
@media (min-width:768px){

  .ranking-list{
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:18px;
  }

}

/* PC */
@media (min-width:1024px){

  .ranking-section{
    margin-bottom:80px;
  }

  .ranking-list{
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
    max-width:1000px;
    margin:0 auto;
  }

  .ranking-card{
    padding:7px;
  }

  .ranking-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.3);
  }

  .ranking-number{
    font-size:11px;
    padding:4px 7px;
  }

  .ranking-name{
    font-size:15px;
  }

  .ranking-name span{
    display:block;
    font-size:12px;
  }

}

/* ========================================
   セラピスト属性
======================================== */

.cast-attributes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin: 10px 0 4px;
}

.cast-attribute {
    display: inline-block;
    padding: 4px 9px;

    border: 1px solid #c6a55c;
    border-radius: 20px;

    background: rgba(198, 165, 92, 0.12);
    color: #c6a55c;

    font-size: 11px;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
}

/* ランキング用 */
.ranking-attributes {
    margin-top: 6px;
    margin-bottom: 10px;
}

.ranking-attributes .cast-attribute {
    background: #f8f3e8;
    color: #8b6f32;
    border-color: #d8c28c;
}

/* 出勤ページ用 */
.schedule-cast-attributes {
    justify-content: flex-start;
    margin-top: 10px;
    margin-bottom: 10px;
}



/* 管理画面から登録するトップ画像 */
.hero-slide-link,
.hero-slide-inner,
.hero-slide picture,
.hero-slide picture img { width:100%; height:100%; display:block; }
.hero-slide-link { position:relative; color:inherit; text-decoration:none; }
.hero-slide-inner { position:relative; }
.hero-slide picture img { object-fit:cover; }
.hero-content { position:absolute; inset:0; display:flex; flex-direction:column; justify-content:center; align-items:center; padding:30px; text-align:center; background:rgba(0,0,0,.18); color:#fff; z-index:2; }
.hero-title { margin:0 0 10px; font-size:clamp(26px,4vw,54px); font-weight:700; text-shadow:0 2px 8px rgba(0,0,0,.45); }
.hero-subtitle { margin:0 0 20px; font-size:clamp(15px,2vw,24px); text-shadow:0 2px 8px rgba(0,0,0,.45); }


/* ===================================
   recruit.php 専用（スマホ基準）
=================================== */
.recruit-page-body .content-area{
  margin:50px 0;
}

.recruit-page-body .recruit-main-section{
  max-width:1000px;
  margin:0 auto 50px;
}

.recruit-page-body .recruit-hero{
  position:relative;
  margin:0 0 34px;
  padding:38px 20px;
  text-align:center;
  background:
    linear-gradient(135deg, rgba(198,165,92,0.08), transparent 45%),
    #fff;
  border:1px solid var(--gl-border);
  box-shadow:0 8px 24px rgba(102,82,49,.08);
  overflow:hidden;
}

.recruit-page-body .recruit-hero::before,
.recruit-page-body .recruit-hero::after{
  content:"";
  position:absolute;
  width:45px;
  height:45px;
}

.recruit-page-body .recruit-hero::before{
  top:10px;
  left:10px;
  border-top:1px solid #c6a55c;
  border-left:1px solid #c6a55c;
}

.recruit-page-body .recruit-hero::after{
  right:10px;
  bottom:10px;
  border-right:1px solid #c6a55c;
  border-bottom:1px solid #c6a55c;
}

.recruit-page-body .recruit-hero-en{
  margin:0 0 10px;
  color:#c6a55c;
  font-size:11px;
  letter-spacing:3px;
}

.recruit-page-body .recruit-hero-title{
  margin:0 0 18px;
  color:var(--gl-text);
  font-size:24px;
  font-weight:500;
  line-height:1.5;
  letter-spacing:1px;
}

.recruit-page-body .recruit-hero-text{
  margin:0;
  color:var(--gl-text);
  font-size:14px;
  line-height:2;
}

.recruit-page-body .recruit-block{
  margin:0 0 30px;
  padding:24px 16px;
  background:#fff;
  border:1px solid var(--gl-border);
  box-shadow:0 8px 24px rgba(102,82,49,.08);
}

.recruit-page-body .recruit-heading{
  text-align:center;
  margin-bottom:22px;
}

.recruit-page-body .recruit-heading span{
  display:block;
  margin-bottom:5px;
  color:#c6a55c;
  font-size:10px;
  letter-spacing:3px;
}

.recruit-page-body .recruit-heading h3{
  display:inline-block;
  margin:0;
  padding:0 16px 10px;
  color:var(--gl-text);
  font-size:20px;
  font-weight:500;
  line-height:1.5;
  border-bottom:1px solid rgba(198,165,92,0.45);
}

.recruit-page-body .recruit-point-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}

.recruit-page-body .recruit-point-card{
  position:relative;
  padding:20px 16px 18px;
  background:var(--gl-ivory);
  border:1px solid var(--gl-border);
}

.recruit-page-body .recruit-point-number{
  display:block;
  margin-bottom:8px;
  color:#c6a55c;
  font-size:12px;
  letter-spacing:2px;
}

.recruit-page-body .recruit-point-card h4{
  margin:0 0 10px;
  color:var(--gl-text);
  font-size:16px;
  font-weight:500;
}

.recruit-page-body .recruit-point-card p{
  margin:0;
  color:#665e55;
  font-size:13px;
  line-height:1.8;
}

.recruit-page-body .recruit-info-table{
  width:100%;
  border-top:1px solid rgba(198,165,92,0.35);
}

.recruit-page-body .recruit-info-row{
  display:flex;
  flex-direction:column;
  border-bottom:1px solid rgba(198,165,92,0.3);
}

.recruit-page-body .recruit-info-label{
  padding:10px 12px 4px;
  color:#c6a55c;
  font-size:13px;
  font-weight:bold;
}

.recruit-page-body .recruit-info-value{
  padding:4px 12px 12px;
  color:var(--gl-text);
  font-size:14px;
  line-height:1.8;
}

.recruit-page-body .recruit-sample-note{
  margin:14px 0 0;
  color:#aaa;
  font-size:11px;
  line-height:1.7;
  text-align:center;
}

.recruit-page-body .recruit-flow{
  max-width:760px;
  margin:0 auto;
}

.recruit-page-body .recruit-flow-item{
  padding:18px 16px;
  text-align:center;
  background:var(--gl-ivory);
  border:1px solid var(--gl-border);
}

.recruit-page-body .recruit-flow-step{
  margin-bottom:5px;
  color:#c6a55c;
  font-size:11px;
  letter-spacing:2px;
}

.recruit-page-body .recruit-flow-item h4{
  margin:0 0 8px;
  color:var(--gl-text);
  font-size:17px;
  font-weight:500;
}

.recruit-page-body .recruit-flow-item p{
  margin:0;
  color:#665e55;
  font-size:13px;
  line-height:1.8;
}

.recruit-page-body .recruit-flow-arrow{
  padding:5px 0;
  text-align:center;
  color:#c6a55c;
  font-size:11px;
}

.recruit-page-body .recruit-faq-item{
  padding:15px 0;
  border-bottom:1px solid rgba(198,165,92,0.3);
}

.recruit-page-body .recruit-faq-item:first-child{
  padding-top:0;
}

.recruit-page-body .recruit-faq-item:last-child{
  padding-bottom:0;
  border-bottom:0;
}

.recruit-page-body .recruit-faq-q,
.recruit-page-body .recruit-faq-a{
  display:flex;
  gap:10px;
  margin:0;
  line-height:1.8;
}

.recruit-page-body .recruit-faq-q{
  margin-bottom:8px;
  color:var(--gl-text);
  font-size:14px;
  font-weight:bold;
}

.recruit-page-body .recruit-faq-a{
  color:#665e55;
  font-size:13px;
}

.recruit-page-body .recruit-faq-q span,
.recruit-page-body .recruit-faq-a span{
  flex:0 0 auto;
  color:#c6a55c;
  font-family:Georgia, serif;
  font-size:18px;
  line-height:1.4;
}

.recruit-page-body .recruit-contact{
  padding:30px 18px;
  text-align:center;
  background:
    linear-gradient(135deg, rgba(198,165,92,0.08), transparent 50%),
    #fff;
  border:1px solid var(--gl-border);
  box-shadow:0 8px 24px rgba(102,82,49,.08);
}

.recruit-page-body .recruit-contact-small{
  margin:0 0 7px;
  color:#c6a55c;
  font-size:10px;
  letter-spacing:3px;
}

.recruit-page-body .recruit-contact h3{
  margin:0 0 12px;
  color:var(--gl-text);
  font-size:20px;
  font-weight:500;
  line-height:1.6;
}

.recruit-page-body .recruit-contact > p:not(.recruit-contact-small){
  margin:0;
  color:#665e55;
  font-size:13px;
  line-height:1.8;
}

.recruit-page-body .recruit-contact-buttons{
  display:flex;
  flex-direction:column;
  gap:12px;
  max-width:560px;
  margin:22px auto 0;
}

.recruit-page-body .recruit-contact-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  width:100%;
  min-height:50px;
  padding:12px 16px;
  color:#fff;
  text-decoration:none;
  font-size:15px;
  font-weight:bold;
  letter-spacing:0.5px;
  border-radius:4px;
  transition:opacity 0.3s, transform 0.3s;
}

.recruit-page-body .recruit-contact-btn:hover{
  opacity:0.85;
  transform:translateY(-1px);
}

.recruit-page-body .recruit-line-btn{
  background:#06c755;
}

.recruit-page-body .recruit-tel-btn{
  background:#172a43;
  border:1px solid #c6a55c;
}

@media (min-width:768px){
  .recruit-page-body .recruit-hero{
    padding:55px 40px;
  }

  .recruit-page-body .recruit-hero-title{
    font-size:32px;
  }

  .recruit-page-body .recruit-hero-text{
    font-size:15px;
  }

  .recruit-page-body .recruit-block{
    padding:32px 28px;
    margin-bottom:34px;
  }

  .recruit-page-body .recruit-heading h3{
    font-size:23px;
  }

  .recruit-page-body .recruit-point-grid{
    grid-template-columns:repeat(2, 1fr);
    gap:16px;
  }

  .recruit-page-body .recruit-point-card{
    padding:24px 20px;
  }

  .recruit-page-body .recruit-info-row{
    flex-direction:row;
  }

  .recruit-page-body .recruit-info-label{
    width:26%;
    padding:14px 16px;
    display:flex;
    align-items:center;
    background:var(--gl-ivory);
  }

  .recruit-page-body .recruit-info-value{
    width:74%;
    padding:14px 18px;
  }

  .recruit-page-body .recruit-contact{
    padding:42px 30px;
  }

  .recruit-page-body .recruit-contact-buttons{
    flex-direction:row;
  }
}

/* =========================================================
   GL SMART お問い合わせフォーム
========================================================= */
.contact-page { padding: 45px 0 70px; }
.contact-container { max-width: 920px; }
.contact-hero, .contact-complete-box { text-align: center; margin-bottom: 30px; }
.contact-hero h1, .contact-complete-box h1 { margin: 5px 0 12px; font-size: 30px; }
.contact-en { margin: 0; font-size: 13px; letter-spacing: .22em; color: #777; }
.contact-form, .contact-complete-box { background: #fff; border: 1px solid #e2e2e2; border-radius: 10px; padding: 30px; box-shadow: 0 5px 18px rgba(0,0,0,.05); }
.contact-form-row { margin-bottom: 22px; }
.contact-form-row label { display: block; font-weight: 700; margin-bottom: 8px; }
.contact-form-row input, .contact-form-row select, .contact-form-row textarea { width: 100%; box-sizing: border-box; padding: 12px 14px; border: 1px solid #ccc; border-radius: 6px; background: #fff; font-size: 16px; }
.contact-form-row textarea { resize: vertical; min-height: 180px; }
.contact-form-row input:focus, .contact-form-row select:focus, .contact-form-row textarea:focus { outline: 2px solid rgba(22,49,77,.15); border-color: #16314d; }
.required, .optional { display: inline-block; margin-left: 7px; padding: 2px 7px; border-radius: 4px; font-size: 11px; vertical-align: 1px; }
.required { background: #b51f2e; color: #fff; }
.optional { background: #eee; color: #555; }
.contact-submit-wrap { text-align: center; margin-top: 28px; }
.contact-submit, .contact-back-home { display: inline-block; min-width: 220px; border: 0; border-radius: 6px; padding: 14px 26px; background: #16314d; color: #fff; font-weight: 700; text-decoration: none; cursor: pointer; }
.contact-submit:hover, .contact-back-home:hover { opacity: .9; }
.contact-error-box { margin-bottom: 20px; padding: 16px 20px; border: 1px solid #d99; border-radius: 7px; background: #fff3f3; color: #a01825; }
.contact-error-box ul { margin: 8px 0 0 20px; }
.contact-honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.contact-complete-box { padding: 45px 30px; }
.contact-complete-box .contact-back-home { margin-top: 20px; }
@media (max-width: 700px) {
  .contact-page { padding: 25px 0 45px; }
  .contact-form, .contact-complete-box { padding: 22px 16px; }
  .contact-hero h1, .contact-complete-box h1 { font-size: 24px; }
}
