/* ==========================================================
   CureBorsa ブランドサイト共通スタイル
   ========================================================== */

:root{
  --ivory:#F8F4ED;
  --ivory-deep:#F1EAE0;
  --ink:#3A332B;
  --ink-soft:#6B6055;
  --gold:#B4915B;
  --gold-deep:#8E7042;
  --line:#E3DACB;
  --white:#FFFFFF;
  --green-deep:#1F3A2E;
  --maxw:1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  background:var(--ivory);
  color:var(--ink);
  font-family:"Noto Sans JP", "Hiragino Sans", sans-serif;
  font-weight:300;
  line-height:1.9;
  -webkit-font-smoothing:antialiased;
}

h1,h2,h3,.brand{
  font-family:"Shippori Mincho", serif;
  font-weight:600;
  letter-spacing:.04em;
  margin:0;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.wrap{ max-width:var(--maxw); margin:0 auto; padding:0 32px; }

/* ---------- Header ---------- */
header.site{
  position:sticky; top:0; z-index:100;
  background:rgba(248,244,237,.92);
  backdrop-filter:blur(6px);
  border-bottom:1px solid var(--line);
}
header.site .wrap{
  display:flex; align-items:center; justify-content:space-between;
  height:78px;
}
/* ---------- Wordmark (logo-style italic serif) ---------- */
.wordmark{
  font-family:"Cormorant Garamond", "Shippori Mincho", serif;
  font-style:italic;
  font-weight:600;
  font-size:1.24em;
  letter-spacing:.005em;
}
.reg{
  font-size:.40em;
  vertical-align:.9em;
  letter-spacing:0;
  font-style:normal;
  font-weight:400;
  margin-left:.06em;
}

.brand{
  font-family:"Cormorant Garamond", "Shippori Mincho", serif;
  font-style:italic;
  font-weight:600;
  font-size:26px;
  letter-spacing:.03em;
}
nav.main ul{
  list-style:none; display:flex; gap:34px; margin:0; padding:0;
}
nav.main a{
  font-size:12px; letter-spacing:.14em; text-transform:uppercase;
  color:var(--ink-soft);
  padding-bottom:4px;
  border-bottom:1px solid transparent;
  transition:.25s;
}
nav.main a:hover, nav.main a.active{
  color:var(--gold-deep);
  border-bottom-color:var(--gold);
}

/* ---------- Mobile nav toggle ---------- */
.menu-btn{
  display:none; flex-direction:column; justify-content:center; align-items:center; gap:5px;
  width:44px; height:44px; border:none; background:none; cursor:pointer; padding:0;
  -webkit-tap-highlight-color:transparent; touch-action:manipulation;
}
.menu-btn span{ display:block; width:22px; height:2px; background:var(--ink); pointer-events:none; }

/* ---------- Hero ---------- */
.hero{
  position:relative;
  padding:120px 0 100px;
  text-align:center;
  background:linear-gradient(180deg,var(--ivory-deep) 0%, var(--ivory) 100%);
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 15% 20%, rgba(180,145,91,.10), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(180,145,91,.12), transparent 45%);
}
.hero-inner{ position:relative; }
.hero .eyebrow{
  font-size:12px; letter-spacing:.3em; color:var(--gold-deep); text-transform:uppercase;
}
.hero h1{
  font-size:52px; margin:18px 0 22px;
}
.hero p.lead{
  font-size:16px; color:var(--ink-soft); max-width:520px; margin:0 auto 36px;
}
.btn{
  display:inline-block; padding:14px 42px;
  border:1px solid var(--ink); font-size:12px; letter-spacing:.18em;
  text-transform:uppercase;
  transition:.25s;
}
.btn:hover{ background:var(--ink); color:var(--ivory); }
.btn.gold{ border-color:var(--gold-deep); color:var(--gold-deep); }
.btn.gold:hover{ background:var(--gold-deep); color:var(--white); }
.btn-row{
  display:flex; flex-wrap:wrap; justify-content:center; align-items:center; gap:16px 20px;
}

/* ---------- Hero (full-bleed photo + overlay copy) ---------- */
.hero-full{ position:relative; min-height:680px; overflow:hidden; background:var(--ivory-deep); }
.hero-full img.bg{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
/* 左端は濃く、鞄の手前(約36%)で完全に消える。
   以前は68%まで薄膜が伸びており、鞄が白っぽくかすんでいた */
.hero-full .scrim{
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(90deg,
    var(--ivory) 0%,
    var(--ivory) 15%,
    rgba(248,244,237,.94) 23%,
    rgba(248,244,237,.60) 29%,
    rgba(248,244,237,0) 36%);
}
/* コピーは横幅を固定せず、キャッチコピーだけが写真側へ大きくはみ出せるようにする */
.hero-full .copy{
  position:relative; z-index:2;
  min-height:680px; padding:64px 24px 64px 64px;
  display:flex; flex-direction:column; justify-content:center; align-items:flex-start;
}
.hero-full .copy .brand-lg{
  position:relative; z-index:2;
  font-size:14px; font-family:"Noto Sans JP",sans-serif; font-weight:500;
  letter-spacing:.3em; text-transform:uppercase; color:var(--gold-deep);
  margin-bottom:22px;
}
/* メインキャッチ：雑誌広告のように大きく、写真の上にも重ねて表示する */
.hero-full .copy h1{
  position:relative; z-index:2;
  width:50vw;
  font-size:clamp(40px, 4vw, 64px);
  font-weight:700;
  line-height:1.3;
  letter-spacing:.08em;
  white-space:nowrap;
  color:var(--green-deep);
  margin-bottom:28px;
}
.hero-full .copy p{
  position:relative; z-index:2;
  font-size:17px; line-height:1.7; letter-spacing:.06em;
  white-space:nowrap;
  color:var(--ink-soft); margin-bottom:38px;
}
/* 写真の上に重なっても読めるよう、文字の輪郭にごく淡い光を添える */
.hero-full .copy .brand-lg,
.hero-full .copy h1,
.hero-full .copy p{
  text-shadow:0 0 10px rgba(248,244,237,.9), 0 0 22px rgba(248,244,237,.6);
}
/* 釦は鞄の真上に重なる。backdrop-filter を掛けると
   釦の背後にある鞄そのものがぼやけるため、使わない */
.hero-full .copy .btn{
  position:relative; z-index:2;
  background:rgba(248,244,237,.82);
}

@media (max-width:900px){
  /* スマホでは写真を切り取らず全景(女性＋鞄)を見せる。
     縦長に切り抜くと左右が削られ、右手の女性が画面外へ消えてしまうため、
     写真の縦横比そのままで高さを決め、コピーはその上に重ねる */
  .hero-full{
    min-height:0;
    aspect-ratio:1180/768;
    display:flex; flex-direction:column;
  }
  /* 白膜は全面に敷かない。写真右手の女性の顔にかかり、
     お顔がかすんで見える原因になっていたため */
  .hero-full .scrim{ background:none; }
  /* 代わりに、文字のある左上の一画にだけ淡い板を敷く。
     楕円状にぼかしてあるので、板の縁が写真上で目立たない */
  .hero-full .copy{
    flex:none; width:70%; max-width:100%;
    padding:8px 26px 14px 20px;
    text-align:left; align-items:flex-start; justify-content:flex-start; min-height:0;
    background:radial-gradient(110% 88% at 20% 34%,
      rgba(248,244,237,.96) 0%,
      rgba(248,244,237,.90) 40%,
      rgba(248,244,237,.40) 66%,
      rgba(248,244,237,0) 88%);
  }
  .hero-full .copy h1{
    width:100%; font-size:clamp(16px, 5.2vw, 28px); white-space:nowrap;
    letter-spacing:0; line-height:1.2; margin-bottom:5px;
  }
  .hero-full .copy p{
    font-size:clamp(10px, 2.9vw, 14px); letter-spacing:.01em;
    line-height:1.5; margin-bottom:11px;
  }
  .hero-full .copy .btn{ padding:9px 20px; font-size:10px; letter-spacing:.12em; }
  .hero-full .copy .brand-lg{ font-size:11px; margin-bottom:12px; }
  .hero-full .copy .brand-lg,
  .hero-full .copy h1,
  .hero-full .copy p{
    text-shadow:0 0 6px rgba(248,244,237,.7);
  }
}

/* ---------- Form ---------- */
.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.form-grid .full{ grid-column:1/-1; }
.field label{ display:block; font-size:12px; letter-spacing:.06em; color:var(--ink-soft); margin-bottom:8px; }
.field input, .field select, .field textarea{
  width:100%; border:1px solid var(--line); background:var(--white);
  padding:13px 14px; font-family:inherit; font-size:14px; color:var(--ink);
}
.field textarea{ resize:vertical; min-height:140px; }
.field input:focus, .field select:focus, .field textarea:focus{ outline:1px solid var(--gold); border-color:var(--gold); }
.form-submit{ border:1px solid var(--ink); background:var(--ink); color:var(--ivory);
  padding:14px 44px; font-size:12px; letter-spacing:.18em; text-transform:uppercase; cursor:pointer; }
.form-submit:hover{ background:var(--gold-deep); border-color:var(--gold-deep); }
@media (max-width:640px){ .form-grid{ grid-template-columns:1fr; } }

/* ---------- Section generic ---------- */
section{ padding:96px 0; }
section.alt{ background:var(--ivory-deep); }
.section-head{ text-align:center; margin-bottom:56px; }
.section-head .eyebrow{
  font-size:11px; letter-spacing:.3em; color:var(--gold-deep); text-transform:uppercase;
}
.section-head h2{ font-size:32px; margin-top:14px; }
.section-head p{ color:var(--ink-soft); margin-top:16px; max-width:560px; margin-left:auto; margin-right:auto; }

/* ---------- Cards / Grid ---------- */
.grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:32px;
}
.grid-2{ grid-template-columns:repeat(2,1fr); }
.card{
  background:var(--white);
  border:1px solid var(--line);
  transition:transform .3s, box-shadow .3s;
}
.card:hover{ transform:translateY(-4px); box-shadow:0 18px 34px rgba(58,51,43,.08); }
.card .thumb{ aspect-ratio:1/1; overflow:hidden; background:var(--ivory-deep); }
.card .thumb img{ width:100%; height:100%; object-fit:cover; }
.card .body{ padding:20px 22px 24px; }
.card .no{ font-size:11px; letter-spacing:.1em; color:var(--ink-soft); }
.card h3{ font-size:15px; font-weight:500; font-family:"Noto Sans JP",sans-serif; margin:8px 0 12px; line-height:1.6; }
.price{ display:flex; align-items:baseline; gap:10px; }
.price .now{ font-size:18px; color:var(--gold-deep); font-weight:500; }
.price .was{ font-size:13px; color:var(--ink-soft); text-decoration:line-through; }
.price .off{ font-size:11px; color:#B65D4B; border:1px solid #B65D4B; padding:1px 6px; }
.card .go{
  display:block; margin-top:16px; font-size:11px; letter-spacing:.12em;
  text-transform:uppercase; color:var(--ink-soft);
}
.card .go::after{ content:" →"; }

/* ---------- Prose page (concept / business) ---------- */
.prose{ max-width:760px; margin:0 auto; }
.prose h2{ font-size:26px; margin-bottom:20px; }
.prose .en{ font-size:12px; letter-spacing:.2em; color:var(--gold-deep); text-transform:uppercase; }
.prose p{ color:var(--ink-soft); margin:0 0 20px; }
.divider{ width:52px; height:1px; background:var(--gold); margin:64px auto; }

/* ---------- Journal / list cards ---------- */
.list-card{
  display:flex; gap:24px; align-items:center;
  padding:22px 0; border-bottom:1px solid var(--line);
}
.list-card .thumb{ width:140px; height:100px; flex:none; overflow:hidden; background:var(--ivory-deep); }
.list-card .thumb img{ width:100%; height:100%; object-fit:cover; }
.list-card .meta{ font-size:11px; letter-spacing:.1em; color:var(--gold-deep); }
.list-card h3{ font-size:16px; font-weight:500; margin:8px 0; }
.list-card p{ color:var(--ink-soft); font-size:13px; margin:0; }

.note-box{
  border:1px dashed var(--gold); background:var(--ivory-deep);
  padding:24px 28px; font-size:13px; color:var(--ink-soft); margin:36px 0;
}
.note-box strong{ color:var(--ink); }

/* ---------- Footer ---------- */
footer.site{
  background:var(--ink); color:var(--ivory-deep);
  padding:64px 0 32px; margin-top:0;
}
footer.site .top{
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:32px;
  border-bottom:1px solid rgba(255,255,255,.14); padding-bottom:36px; margin-bottom:24px;
}
footer.site .brand{ color:var(--ivory); font-size:20px; }
footer.site nav ul{ list-style:none; display:flex; gap:26px; padding:0; margin:14px 0 0; flex-wrap:wrap; }
footer.site nav a{ font-size:12px; letter-spacing:.08em; color:rgba(248,244,237,.75); }
footer.site .bottom{ font-size:11px; color:rgba(248,244,237,.5); display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px; }

@media (max-width:860px){
  .grid{ grid-template-columns:repeat(2,1fr); }
  .hero h1{ font-size:38px; }
}

@media (max-width:760px){
  .wrap{ padding:0 20px; }
  /* backdrop-filter は fixed 配置の子要素(nav.main)の基準を
     ヘッダー自身に変えてしまい、メニューが潰れるため無効化する */
  header.site{
    backdrop-filter:none; -webkit-backdrop-filter:none;
    background:rgba(248,244,237,.97);
  }
  header.site .wrap{ height:64px; }
  .brand{ font-size:22px; }
  .menu-btn{ display:flex; }
  .hero h1{ font-size:30px !important; }
  nav.main{
    position:fixed; top:64px; left:0; right:0; bottom:0;
    background:var(--ivory); border-top:1px solid var(--line);
    transform:translateY(-8px); opacity:0; pointer-events:none;
    transition:opacity .2s, transform .2s;
    overflow-y:auto; z-index:99;
  }
  nav.main.open{ transform:translateY(0); opacity:1; pointer-events:auto; }
  nav.main ul{ flex-direction:column; gap:0; padding:8px 20px 32px; }
  nav.main ul li{ border-bottom:1px solid var(--line); }
  nav.main a{ display:block; padding:18px 4px; font-size:14px; border-bottom:none; }
  section{ padding:64px 0; }
  .info-table th{ width:110px; padding:14px 12px; }
  .info-table th, .info-table td{ font-size:13px; padding:14px 12px; }
}

@media (max-width:560px){
  .grid{ grid-template-columns:1fr; }
  .grid-2{ grid-template-columns:1fr; }
  .hero h1{ font-size:20px !important; }
  .prose h2{ font-size:20px; }
  .info-table th, .info-table td{ display:block; width:100%; padding:6px 0; border-bottom:none; }
  .info-table tr{ display:block; padding:14px 0; border-bottom:1px solid var(--line); }
  .info-table th{ color:var(--gold-deep); font-size:11px; letter-spacing:.08em; }
}
