body{
    margin:0;
    font-family:'Noto Sans JP', sans-serif;
    background:#111c2e;
    color:white;
    min-height:100vh;
    display:flex;
    flex-direction:column;
}

@media(max-width:767px){

body{
    padding-bottom:90px;
}

}

/* ===== ヒーロー ===== */
.hero{
    position:relative;
    height:60vh;
    min-height:420px;
    background:url("images/top.jpg") center/cover no-repeat;
}

/* 黒オーバーレイ */
.hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0);
}

/* 文字を右下へ */
.hero-content{
    position:absolute;
    bottom:10px;
    right:10px;
    z-index:1;
    text-align:right;
    color:white;
}

.hero h1{
    font-size:22px;
    text-shadow:0 4px 12px rgba(0,0,0,0.6);
    margin-bottom:0px; /* ← ここ調整 */
}

.hero p{
    margin-top:0;
	margin-right:6px;
	font-size:18px;
}
section{
    padding:40px 20px;
    text-align:center;
}

h2{
    color:#d4af37;
    margin-bottom:30px;
}

.intro{
    padding:40px 20px 20px 20px;
    background:#111c2e;
}

.intro-inner{
    max-width:100%;
    margin:auto;
    text-align:left;
    color:white;
}

/* 最初の一文を目立たせる */
.intro-lead{
    font-size:20px;
    line-height:1.8;
    margin-bottom:25px;
}

/* 通常文 */
.intro p{
    line-height:1.9;
    opacity:0.9;
    margin-bottom:15px;
}

/* ===== intro PC最適化 ===== */
@media(min-width:768px){

  .intro{
      padding:80px 20px;
  }

  .intro-inner{
      max-width:900px;
      margin:auto;
      text-align:center; /* PCは中央寄せが読みやすい */
  }

  .intro-lead{
      font-size:26px;
      line-height:2;
  }

  .intro p{
      font-size:18px;
      line-height:2;
  }

}

/* ===== 特徴カード ===== */
.card-area{
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
    max-width:1100px;
    margin:auto;
}

.card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(212,175,55,0.5);
    padding:25px;
    border-radius:12px;
	font-size:1.1em;
}

/* ===== 写真 ===== */
.photo-frame{
    background:white;
    padding:12px;
    border-radius:18px;
    box-shadow:0 6px 18px rgba(0,0,0,0.2);
    max-width:900px;
    margin:30px auto;
}

.photo-frame img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:12px;
}

/* ===== SNS ===== */
.sns-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 22px;
    margin:10px;
    border-radius:30px;
    color:white;
    text-decoration:none;
    font-weight:bold;
}

.line{ background:#06C755; }
.insta{ background:linear-gradient(45deg,#833AB4,#E1306C,#F77737); }


.container{
    max-width:1100px;
    margin:auto;
    padding:0 20px;
}


/* ===== フッター ===== */
footer{
    background:linear-gradient(
        to bottom,
        #0e1a2b,
        #000000
    );
}
.luxury-footer{
    background:#111;
    color:#fff;
    padding-top:60px;
    margin-top:80px;
}

/* 内側レイアウト */
.footer-inner{
    max-width:1100px;
    margin:auto;
    padding:0 20px 40px;
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
}

/* 店名 */
.footer-info h3{
    font-size:22px;
    margin-bottom:15px;
    letter-spacing:2px;
    color:#d4af37; /* ゴールド */
}

/* テキスト */
.footer-info p{
    line-height:1.8;
    color:#ccc;
}

/* ロゴ */
.footer-logo{
    width:120px;
    opacity:0.9;
}

/* コピーライト */
.copyright{
    text-align:center;
    padding:20px;
    border-top:1px solid #333;
    font-size:13px;
    color:#888;
}

/* ===== 固定ボタン（初期は非表示） ===== */
.fixed-bar{
    display:none;
}

/* =========================
   PC表示（768px以上）
========================= */
@media(min-width:768px){
.sp {
	display:none;
}
.hero{
    height:75vh;
}

.hero h1{
    font-size:44px;
	margin-bottom:20px;
	margin-right:20px;
}

/* 特徴を横並び */
.card-area{
    grid-template-columns:repeat(2,1fr);
}

}

/* =========================
   大画面PC
========================= */
@media(min-width:1100px){

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

}

/* =========================
   スマホ時だけ固定ボタン表示
========================= */
@media(max-width:767px){

.fixed-bar{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:#0e1a2b;
    padding:10px;
    display:flex;
    justify-content:center;
    box-shadow:0 -2px 10px rgba(0,0,0,0.3);
}

.call-btn{
    background:linear-gradient(135deg,#d4af37,#f1d77a);
    color:#0e1a2b;
    text-decoration:none;
    padding:16px 28px;
    border-radius:40px;
    font-size:18px;
    font-weight:bold;
    display:flex;
    align-items:center;
    gap:10px;
}

}
/* ===== スライドショー ===== */
.slider{
    max-width:900px;
    margin:30px auto;
    overflow:hidden;
    border-radius:18px;
}

/* 横並び */
.slides{
    display:flex;
    animation:slide-sp 40s linear infinite;
}

/* スマホ用 */
.slides img{
    width:100%;
    height:320px;
    object-fit:cover;
    flex-shrink:0;
}

/* ===== スマホ用アニメ ===== */
@keyframes slide-sp{
    0% { transform:translateX(0); }
    100% { transform:translateX(-700%); } /* 7枚用 */
}


/* ===== PC表示 ===== */
@media(min-width:768px){

  .slides{
      animation:slide-pc 40s linear infinite;
  }

  .slides img{
      width:50%;
      height:420px;
  }

}

/* ===== PC用アニメ ===== */
@keyframes slide-pc{
    0% { transform:translateX(0); }
    100% { transform:translateX(-400%); } /* 2枚表示用 */
}


/* ===== 超大画面 ===== */
@media(min-width:1200px){
  .slider{
    max-width:100%;
  }

  .slides img{
    height:500px;
  }
}



/* ===== 注意書き ===== */
/* 親 */
.notice-wrap{
    max-width:1100px;
    margin:40px auto;
}

/* PCだけ横並び */
@media(min-width:768px){

  .notice-wrap{
      display:flex;
      gap:30px;
  }

  .notice{
      width:50%;
      margin:0;
  }

}

.notice{
    max-width:100%;
    margin:40px auto;
    padding:25px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(212,175,55,0.5);
    border-radius:14px;
    text-align:left;
    line-height:1.8;
}

.notice h3{
    color:#d4af37;
    margin-top:0;
    text-align:center;
}

.notice ul{
    padding-left:20px;
}

/* ===== 来店前CTA ===== */

.cta-call{
    padding:60px 20px;
    text-align:center;
}

.cta-text{
    margin-bottom:20px;
    font-size:18px;
    opacity:0.9;
}

.cta-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:18px 36px;
    border-radius:50px;
    background:linear-gradient(135deg,#d4af37,#f1d77a);
    color:#0e1a2b;
    text-decoration:none;
    font-size:20px;
    font-weight:bold;
    transition:0.3s;
}

.cta-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(0,0,0,0.3);
}
