@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Zen+Old+Mincho&display=swap');

:root{
  --main:#B90A50;
  --gold:#C9A34A;
  --soft:#f7eef2;
}
*{box-sizing:border-box}

html {
  font-size: 62.5%;
}


body{
  margin:0;
  font-size: 1.6rem;
  line-height: 1.9;
  font-family:"Libre Baskerville","Zen Old Mincho",'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体',sans-serif;
  background:
    radial-gradient(600px 300px at 20% 10%, rgba(185,10,80,.05), transparent 60%),
    radial-gradient(600px 300px at 80% 20%, rgba(201,163,74,.1), transparent 60%),
    linear-gradient(180deg,#fff,#f7eef2);
}

h2{
  font-size: clamp(2.2rem, 2.5vw, 3.4rem);
}

p{
  font-size: 1.6rem;
  line-height: 1.9;
}

pcObj{
  display: block !important;
}

spObj{
  display: none !important;
}

@media (max-width: 768px) {

  pcObj{
  display: none !important;
}

  spObj{
  display: block !important;
}

}

.en{
font-family:'Roboto',sans-serif;
font-size:0.95em;
line-height:1.2;
letter-spacing:0.08em;
}

.gold{
  color: var(--gold);;
}


/* =========================
Page Inner Width
========================= */

.page-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 40px;
}

@media (max-width: 768px) {

  .page-inner {
    padding: 0 16px 20px;
  }

}

/* HEADER */
.header-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 5%;
}
.logo{font-weight:900;color:var(--main);font-size:20px}

.logo img{
  height:42px;
  width:auto;
  display:block;
}

.header-cta{
  border:2px solid var(--main);
  color:var(--main);
  padding:8px 18px;
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
}

/* NAV */
.nav{
  background:var(--main);
  position:relative;
  z-index:1000;
}
.nav ul{
  display:flex;
  justify-content:center;
  list-style:none;
  margin:0;
  padding:0;
}
.nav li a{
  color:#fff;
  padding:14px 18px;
  display:block;
  font-weight:700;
  text-decoration:none;
}

/* hamburger */
.hamburger{
  display:none;
  position:absolute;
  right:16px;
  top:12px;
  width:32px;
  height:22px;
  cursor:pointer;
  z-index:2000;
}
.hamburger span{
  position:absolute;
  left:0;
  width:100%;
  height:3px;
  background:#fff;
}
.hamburger span:nth-child(1){top:0}
.hamburger span:nth-child(2){top:9px}
.hamburger span:nth-child(3){top:18px}

/* close */
.close-btn{
  display:none;
  position:absolute;
  right:16px;
  top:6px;
  font-size:34px;
  color:#fff;
  cursor:pointer;
  z-index:2000;
}

/* SP nav */
@media(max-width:768px){
  .hamburger{display:block;}
  .nav ul{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:var(--main);
    flex-direction:column;
    opacity:0;
    pointer-events:none;
    transition:.3s;
  }
  .nav.open ul{
    opacity:1;
    pointer-events:auto;
  }
  .nav.open .close-btn{display:block;}
  .nav.open .hamburger{display:none;}
}

/* MV */

/* =========================
  MV with Copy & CTA（Home）
========================= */

/* 背景メディアだけに当てる */
.mv-home > .mv-media{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mv-home{
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-bottom: 40px;
  height: clamp(420px, 50vw, 820px);
  overflow: hidden;
}

/* =========================
   Main Visual（Site Version）
========================= */
.mv.is-ended .mv-media{
  opacity:0;
  pointer-events:none;
}

.mv.is-ended .mv-poster{
  opacity:1;
}

.mv-media,
.mv-poster{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.mv-poster{
  opacity:0;
  z-index:1;
  transition:opacity .6s ease;
  z-index:0;
}

/* 背景メディア：ぼかさない */
.mv-media{
  z-index:1;
  filter: none;
}

/* 全体にごく薄い空気だけ敷く */
.mv-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.35) 0%,
      rgba(0,0,0,.22) 35%,
      rgba(0,0,0,.12) 55%,
      rgba(0,0,0,.05) 70%,
      rgba(0,0,0,0) 85%
    );
    z-index:2;
}

/* コピーエリア */
.mv-copy{
  position:absolute;
  z-index:2;
  top:50%;
  left:8%;
  transform:translateY(-50%);
  max-width:700px;
  /*画像が明るい時*/
  background:
    linear-gradient(
      180deg,
      rgba(30, 18, 22, 0.65),
      rgba(30, 18, 22, 0.55)
    );
  backdrop-filter: blur(6px);
  padding: 28px 32px;
  border-radius: 14px;
  z-index:3;
  opacity: 0;
  transform: translateY(-50%) translateY(12px);
  transition:
    opacity .8s ease,
    transform .8s ease;
}

.mv.is-ended .mv-copy{
  opacity: 1;
  transform: translateY(-50%) translateY(0);
}

/* Eyebrow */
.mv-eyebrow{
  font-size:13px;
  letter-spacing:.18em;
  color:var(--gold);
  margin-bottom:22px;
}

/* Title */
.mv-title{
  font-size: clamp(2.6rem, 4vw, 5.6rem);
  line-height:1.25;
  color:#f7f7f7;
  margin-bottom:24px;
}

.mv-title span{
  color:var(--main);
}

/* Lead（背景なし・普通に） */
.mv-lead{
  font-size:1.5rem;
  font-weight: 600;
  line-height:2;
  color:rgba(255,255,255,.88);
}

/* CTA */
.mv-cta{
  display:flex;
  gap:20px;
  margin-top:32px;
}

.btn-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 30px;
  border-radius:999px;
  border:1.5px solid rgba(201,163,74,.7);
  background:rgba(201,163,74);
  color:#f5f5f5;
  font-weight:700;
  line-height:1;
  text-decoration:none;
  transition:
    background .25s ease,
    color .25s ease,
    border-color .25s ease;
}

.btn-outline:hover{
  background:rgba(201,163,74,.15);
  border-color:rgba(201,163,74,.9);
}

/* =========================
    SP
========================= */

@media(max-width:768px){

  .mv.is-ended .mv-copy {
    top: auto;
    bottom: 24px;
    left: 50%;

    /* 🔴 ここが重要：完全に上書き */
    transform: translateX(-50%);

    width: calc(100% - 32px);
    margin: 0 auto;

    padding: 22px 20px;
    border-radius: 14px;

    background: linear-gradient(
      180deg,
      rgba(30, 18, 22, .75),
      rgba(30, 18, 22, .55)
    );
  }

    .mv-home{
    height: auto;
    min-height: 70vh;      /* ← 少し詰める */
    padding-bottom: 140px;
  }


  .mv-copy{
    top: auto;
    bottom: 24px;         /* ← マイナスは使わない */
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    margin: 0 auto;

    padding: 22px 20px;
    border-radius: 14px;

    background:
      linear-gradient(
        180deg,
        rgba(30,18,22,.75),
        rgba(30,18,22,.55)
      );
  }
  .mv-eyebrow {
    text-align: center;
  }

  .mv-overlay{
    background:
      linear-gradient(
        180deg,
        rgba(255,255,255,.85),
        rgba(255,255,255,.45),
        rgba(255,255,255,0)
      );
  }

  .mv-cta{
    justify-content:center;
  }
.mv-title{
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.35;
    text-align: center;
  }

  .mv-lead{
    font-size: 1.4rem;
    line-height: 1.9;
    text-align: center;
  }

  .mv-cta{
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    align-items: center;
  }

  .mv-cta a{
    width: 100%;
    text-align: center;
  }
}


/* SECTION */
section{padding:70px 0;position:relative}
.wrap{width:100%;max-width:1200px;margin:auto}
.sec-en{
  position:absolute;
  top:10px;
  left:50%;
  transform:translateX(-50%);
  font-family: "Playfair Display", serif;
  font-size:100px;
  font-weight:900;
  letter-spacing:.2em;
  color:rgba(185,10,80,.06);
  white-space:nowrap;
}
.sec-title{text-align:center;color:var(--main);font-size:28px}
.line{
  width:100px;
  height:1px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
  margin:15px auto 40px;
}

/* GRID */
.news,.services{display:grid;grid-template-columns:repeat(3,1fr);gap:25px}
.about{display:grid;grid-template-columns:1fr 1.2fr;gap:30px;align-items:center}

/* CARDS */
.news-item,.service{
  background:#fff;
  padding:20px;
  border-radius:12px;
  box-shadow:0 12px 25px rgba(0,0,0,.08);
}
.about img{width:100%;height:300px;object-fit:cover;border-radius:12px}

/*mvした３列*/
.works {
  padding: 0;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.work-card {
  background: #fff;
  /* border-radius: 12px; */
  overflow: hidden;
  /* box-shadow: 0 10px 30px rgba(0,0,0,0.08); */
}

.work-card img {
  width: 100%;
  height: auto;
  display: block;
}

.work-text {
  padding: 24px 22px 28px;
}

.work-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 2;
}

.work-desc {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #555;
}

@media (max-width: 768px) {
  .works {
  padding: 0;
}
  .works-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .work-title {
    font-size: 1.8rem;
  }
}
/*newsセクション*/

.news-table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.news-table tr{
  border-bottom:1px solid #f0e5ea;
  transition:.3s;
}
.news-table tr:hover{
  background:rgba(185,10,80,.04);
}

.news-date{
  width:140px;
  padding:18px 20px;
  font-weight:700;
  color:#9a6a7a;
  white-space:nowrap;
}

.news-title{
  padding:18px 20px;
}
.news-title a{
  color:#3a2a33;
  font-weight:700;
}

@media(max-width:768px){
  .news-date{
    width:100px;
    font-size:1.3rem;
  }
  .news-title{
    font-size:1.4rem;
  }
}

/* SERVICE */
.service .head{
  background:var(--main);
  color:#fff;
  padding:16px;
  text-align:center;
  font-weight:900;
}
.service .body{text-align:center;padding:20px}
.price{font-size:24px;font-weight:900;color:#6a4a2a;margin:15px 0}
.shop{border:2px solid var(--gold);background:linear-gradient(180deg,#fffdf8,#f7efd9)}
.shop .head{background:var(--gold);color:#5a3a20}

/*サービス追加*/
/* SERVICE文言用（追記） */
.service-catch{
  font-weight: 900;
  font-size: 2rem;
  line-height: 1.6;
  margin: 4px 0 10px;
  color: #2b1c24;
}

.shop .service-catch{ color:#3b2a1a; }

.service-sub{
  font-size: 1.6rem;
  line-height: 1.9;
  color: rgba(0,0,0,.72);
  margin-bottom: 14px;
}

.shop .service-sub{ color: rgba(60,40,20,.78); }

.service-list{
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.service-list li{
  font-size: 1.4rem;
  line-height: 1.8;
  padding-left: 0;
  position: relative;
  color: rgba(0,0,0,.70);
}

.service-list li::before{
  content: "";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}

.service-cta{
  margin-top: 10px;
}

.service-cta-split{
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-cta-split a{
  min-width: 160px;
  text-align: center;
}



/* BUTTON */
.btn-main,.btn-gold{
  display:inline-block;
  padding:12px 30px;
  border-radius:999px;
  font-weight:900;
  text-decoration:none;
}
.btn-main{background:var(--main);color:#fff}
.btn-gold{background:linear-gradient(180deg,#fff3d4,#e9d6a6);color:#5a3a20}

/*widget*/

.footer-top{
  background:#d4b06d;
  padding:80px 0;
  color:#fff;
}

.footer-top-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:60px;
}

.footer-widget-title{
  font-size:13px;
  letter-spacing:.15em;
  margin-bottom:16px;
  border-bottom:1px solid rgba(255,255,255,.5);
  padding-bottom:8px;
}

.footer-widget{
  font-size:14px;
  line-height:1.9;
}

@media(max-width:768px){
  .footer-top{
  padding:80px 20px;
}
  .footer-top-grid{
    grid-template-columns:1fr;
    gap:40px;
  }
}


/* FOOTER */
.site-footer{
  background:#B90A50;
  padding:60px 0 40px;
  text-align:center;
  color:#fff;
}

.site-footer .footer-nav ul{
  display:flex;
  justify-content:center;
  gap:40px;
  padding:0;
  margin:0;
}

.site-footer .footer-nav li{
  list-style:none;
}

.site-footer .footer-nav a{
  color:#fff;
  font-weight:700;
  margin:0 16px;
}

.footer-copy{
  margin-top:24px;
  font-size:13px;
  opacity:.8;
}

footer{
  background:linear-gradient(180deg,#f7eef2,#efe2e9);
  padding:60px 0 40px;
  text-align:center;
}
.footer-nav{
  display:flex;
  justify-content:center;
  gap:30px;
  flex-wrap:wrap;
}
.footer-nav a{text-decoration:none;color:#777;font-weight:700}

@media(max-width:768px){
  .site-footer .footer-nav ul{
    flex-direction:column;
    gap:20px;
  }
}

/* SP layout */
@media(max-width:768px){
  .news,.services,.about{grid-template-columns:1fr}
  .about img{height:220px}
  .mv{
    aspect-ratio: 3 / 4;
  }
  .mv img{
  width:100%;
  height:100%;
  object-fit:cover;
}
  .sec-en{font-size:48px}
}


/*アーカイブNEWS*/
.news-archive{
  padding:120px 0 80px;
  position:relative;
}

.news-board{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.news-row{
  display:grid;
  grid-template-columns:140px 1fr;
  background:rgba(255,255,255,.9);
  backdrop-filter: blur(6px);
  border-radius:14px;
  padding:20px 28px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  transition:.35s;
}

.news-row:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(185,10,80,.18);
}

.news-row .news-date{
  font-weight:700;
  color:#b08a9a;
}

.news-row .news-title{
  font-weight:500;
  color:#3a2a33;
}

@media(max-width:768px){
  .news-row{
    grid-template-columns:1fr;
    gap:6px;
  }
  .news-date{
    font-size:13px;
  }
}
/*single-news*/
/* ===============================
   SINGLE NEWS - Luxury Layout
=============================== */

.single-news{
  padding:160px 0 120px;
  position:relative;
}

.news-detail-card{
  max-width:900px;
  margin:auto;
  padding:0 5%;
  background:none;
  box-shadow:none;
}

.news-meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-bottom:1px solid rgba(185,10,80,.25);
  padding-bottom:20px;
  margin-bottom:50px;
}

.news-meta .news-date{
  font-size:14px;
  letter-spacing:.15em;
  color:#b08a9a;
}

.news-meta .news-tag{
  border:1px solid var(--gold);
  padding:6px 14px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.1em;
  color:#6a4a2a;
  background:none;
}

/* Main Title */
.news-title{
  font-size:1.3rem;
  font-weight:500;
  line-height:1.4;
  color:#2b1c24;
  margin-bottom:40px;
}

/* Content */
.news-body{
  font-size:17px;
  line-height:2.1;
  color:#3a2a33;
}

/* Gutenberg content */
.news-body h2{
  margin:80px 0 20px;
  font-size: clamp(2.2rem, 2.5vw, 3.4rem);
  color:var(--main);
}
.news-body p{
  margin-bottom:32px;
}

/* Back link */
.news-back{
  margin-top:100px;
  text-align:center;
}
.news-back a{
  display:inline-block;
  padding:14px 42px;
  border:2px solid var(--main);
  color:#fff;
  border-radius:999px;
  font-weight:900;
}

/* SP */
@media(max-width:768px){
  .news-title{font-size:1.5rem}
  .news-body{font-size:1.5rem}
}

/*page（固定ページ用）*/
/*アイキャッチとタイトル*/
/* =========================
 Page Hero（固定ページ共通）
========================= */

.page-hero {
  position: relative;
  width: 100%;
  height: 320px; /* ← PCの高さ（細め） */
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
}

/* 画像を中でトリミング */

.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* タイトル用オーバーレイ */

.page-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end; /* ← 下寄せ */
  padding: 24px 30px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.55),
    rgba(0,0,0,.15),
    rgba(0,0,0,0)
  );
}

/* タイトル */

.page-hero-title {
  color: #fff;
  font-size: clamp(22px, 2.6vw, 42px);
  margin: 0 auto;
  line-height: 1.2;
}

/* =========================
 Smartphone 調整
========================= */

@media (max-width: 768px) {

  .page-hero {
    height: 200px; /* SPはさらに細く */
    border-radius: 14px;
  }

  .page-hero-overlay {
    padding: 16px 18px;
  }

  .page-hero-title {
    font-size: 22px;
  }

}


/* =========================
 Fixed Page Universal Skin
========================= */

.page .wp-block-post-content,
.page main {

  font-size:16px;
  line-height:1.9;

}

/* 見出し */

.page .wp-block-post-content h1,
.page main h1 {
  font-size:clamp(28px,3vw,52px);
  margin-bottom:16px;
    @media (max-width: 768px) {
    & {
      font-size: 2rem;
    }
  }
}

.page .wp-block-post-content h2,
.page main h2 {
  font-size: clamp(2.2rem, 2.5vw, 3.4rem);
  margin-bottom:12px;
}

.page .wp-block-post-content h3,
.page main h3 {
  font-size: clamp(1.8rem, 1.5vw, 2.2rem);
  margin-bottom:8px;
}

/* セクション余白 */

.page .wp-block-post-content > * + *,
.page main > * + * {
  margin-top:28px;
}


/* Gutenberg Cover */

.page .wp-block-cover {
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(0,0,0,.12);
}

/* ボタン */

.page .wp-block-button__link {
  border-radius:999px;
  padding:14px 26px;
  font-weight:700;
  box-shadow:0 12px 28px rgba(0,0,0,.15);
  transition:.25s;
}

.page .wp-block-button__link:hover {
  transform:translateY(-2px);
  box-shadow:0 18px 40px rgba(0,0,0,.22);
}

/* カード用（Groupブロック） */

.page .is-style-card {
  background:#fff;
  padding:22px;
  border-radius:16px;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 12px 26px rgba(0,0,0,.1);
}

/* Mobile */

@media(max-width:780px){

  .page main,
  .page .wp-block-post-content {
    font-size:1.5rem;
  }

}

/* =========================
 Gutenberg Card Block Style
========================= */

.is-style-as-card {
  background:#fff;
  border-radius:16px;
  padding:22px;
  box-shadow:0 14px 30px rgba(0,0,0,.12);
  border:1px solid rgba(0,0,0,.05);
}
.is-style-as-glass {
  background:rgba(255,255,255,.7);
  backdrop-filter:blur(10px);
  border-radius:18px;
  padding:22px;
  box-shadow:0 16px 36px rgba(0,0,0,.15);
}

.is-style-as-card h3{
  margin-top:0;
}

/*調整用*/
.content p{
  font-size: 2rem;
}

@media(max-width:780px){
.content p{
  font-size: 1.5rem;
}
}

.as-breadcrumb{
  font-size: 1.2rem;
}