@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400;600;700;900&family=Shippori+Mincho:wght@400;500;600;700;800&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  --color-primary-navy: #0b172a;
  --color-dark-blue: #101e36;
  --color-deep-blue: #080f1d;
  --color-accent-gold: #c59b27;
  --color-accent-gold-light: #e6c86e;
  --color-gold-hover: #b0871e;
  --color-text-main: #2b2b2b;
  --color-text-sub: #555555;
  --color-bg-paper: #f9f8f6;
  --color-white: #ffffff;
  --font-mincho: 'Shippori Mincho', 'Noto Serif JP', 'Yu Mincho', '游明朝', serif;
  --font-gothic: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "游ゴシック体", "YuGothic", "メイリオ", sans-serif;
  --font-en: 'Montserrat', sans-serif;
  --bg-washi: url('../img/com/com_back001.jpg');
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-gothic);
  color: var(--color-text-main);
  background-color: var(--color-bg-paper);
  background-image: var(--bg-washi);
  background-repeat: repeat;
  line-height: 1.8;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

/* 見出し類はすべて明朝体 */
h1,
h2,
h3,
h4,
h5,
h6,
.writing-vertical,
.first-time-title,
.blessing-lead-1,
.sec-why-title,
.aomazari-intro-title,
.miracle-title,
.products-title,
.mind-title,
.blog-title {
  font-family: var(--font-mincho);
}

img {
  width: auto;
  height: auto;
  max-width: none;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

ul,
ol {
  list-style: none;
}

/* ==========================================================================
   Hamburger Button (PC & Mobile Shared)
   ========================================================================== */
.burger-btn {
  position: fixed;
  top: 24px;
  right: 32px;
  width: 52px;
  height: 52px;
  background: rgba(11, 23, 42, 0.85);
  border: 1px solid var(--color-accent-gold);
  border-radius: 4px;
  cursor: pointer;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.burger-btn:hover {
  background: var(--color-primary-navy);
  border-color: var(--color-accent-gold-light);
  transform: scale(1.05);
}

.burger-btn-line {
  width: 24px;
  height: 2px;
  background-color: var(--color-accent-gold-light);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Active State Transformation to X */
.burger-btn.is-active .burger-btn-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--color-white);
}

.burger-btn.is-active .burger-btn-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger-btn.is-active .burger-btn-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--color-white);
}

/* ==========================================================================
   Overlay Navigation (Fullscreen Japanese Modern Menu)
   ========================================================================== */
.overlay-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(135deg, rgba(11, 23, 42, 0.98) 0%, rgba(6, 12, 23, 0.98) 100%);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  backdrop-filter: blur(10px);
  padding: 60px 20px 40px;
}

.overlay-nav.is-active {
  opacity: 1;
  visibility: visible;
}

.overlay-nav-inner {
  max-width: 800px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  margin: auto 0;
}

.overlay-nav-logo {
  max-width: 220px;
  margin-bottom: 10px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

.overlay-nav-logo img {
  width: 100px;
  height: auto;
}

.overlay-nav-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 60px;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.overlay-nav-item {
  border-bottom: 1px solid rgba(197, 155, 39, 0.2);
  padding-bottom: 12px;
}

.overlay-nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.overlay-nav-sub {
  font-family: var(--font-en);
  font-size: 0.75rem;
  color: var(--color-accent-gold);
  letter-spacing: 0.2em;
  margin-top: 4px;
  text-transform: uppercase;
}

.overlay-nav-link:hover {
  color: var(--color-accent-gold-light);
  transform: translateY(-2px);
}

.overlay-nav-footer {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

/* Utilities */
.sp-only,
.is-sp-only,
.tab-sp-only {
  display: none !important;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.writing-vertical {
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  text-orientation: upright;
}

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

.btn-gold {
  display: inline-block;
  background-color: var(--color-accent-gold);
  color: var(--color-white);
  padding: 12px 32px;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 4px 10px rgba(197, 155, 39, 0.3);
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background-color: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(197, 155, 39, 0.4);
}

.btn-navy-outline {
  display: inline-block;
  background-color: transparent;
  border: 1px solid var(--color-white);
  color: var(--color-white);
  padding: 12px 36px;
  border-radius: 4px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-navy-outline:hover {
  background-color: var(--color-white);
  color: var(--color-primary-navy);
}

.btn-outline-dark {
  display: inline-block;
  border: 1px solid #999;
  color: #333;
  padding: 10px 30px;
  font-size: 0.9rem;
  border-radius: 4px;
  background: var(--color-white);
  transition: all 0.3s ease;
}

.btn-outline-dark:hover {
  background: #333;
  color: var(--color-white);
  border-color: #333;
}

/* Header */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header .header-logo img {
  height: 45px;
}

/* PC Style rules defined under @media print, screen and (min-width: 950px) */
@media print,
screen and (min-width: 950px) {

  body {
    min-width: 1620px;
  }

  /* ------------------------------------------------------------------------
     1. HERO SECTION (Main Visual)
     ------------------------------------------------------------------------ */
  .hero-section {
    position: relative;
    width: 100%;
    min-height: 820px;
    background: url('../img/top/top_image001.jpg') center top / cover no-repeat;
    color: var(--color-white);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-overlay {
    display: none;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    /*width: 100%;
    max-width: 1200px;*/
    height: 100%;
    display: flex;
    column-gap: 50px;
    justify-content: space-between;
    align-items: center;
    padding: 60px 40px;
  }

  /* Left vertical text block */
  .hero-left {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
  }

  .hero-company-name {
    align-self: flex-end;
    margin-right: 150px;
    margin-bottom: -100px;
  }

  .hero-company-name img {
    width: auto;
    height: auto;
    max-width: none;
  }

  .hero-copy-vertical-1 {
    margin-right: 60px;
    font-size: 2.6rem;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.18em;
    text-shadow: 0 0 5px #000, 0 0 15px #000, 0 0 30px #000, 0 0 50px #000, 0 10px 40px #000;
    filter: drop-shadow(0 0 20px #000);
  }

  .hero-copy-highlight {}

  /* Center Logo */
  .hero-center {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
  }

  .hero-sub-text-img {
    margin-bottom: 0;
    border: 1px solid #FFF;
  }

  .hero-sub-text-img img {
    width: auto;
    height: auto;
    max-width: none;
  }

  .hero-main-logo {
    max-width: none;
  }

  .hero-main-logo img {
    width: auto;
    height: auto;
    max-width: none;
  }

  /* Right Copy & Illustration */
  .hero-right {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 30px;
    position: relative;
  }

  .hero-copy-vertical-2 {
    position: relative;
    font-size: 2.7rem;
    font-weight: 500;
    line-height: 1.6;
    text-indent: -1em;
    letter-spacing: -1px;
    text-shadow: 0 0 5px #000, 0 0 15px #000, 0 0 30px #000, 0 0 50px #000, 0 10px 40px #000;
    filter: drop-shadow(0 0 20px #000);
    z-index: 10;
  }

  .hero-illust {
    max-width: none;
    margin-top: 0;
    margin-right: -120px;
    margin-bottom: -150px;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.6));
  }

  .hero-illust img {
    width: auto;
    height: auto;
    max-width: none;
  }

  /* Bottom Gradation Overlay */
  .hero-bottom-grad {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: url('../img/top/top_image002.webp') repeat-x bottom center;
    background-size: auto 100%;
    z-index: 3;
    pointer-events: none;
  }


  /* ------------------------------------------------------------------------
     2. SEC-FIRST-TIME ("一生に一度は食べてみたい")
     ------------------------------------------------------------------------ */
  .sec-first-time {
    position: relative;
    width: 100%;
    background: url('../img/top/top_image007.jpg') center center / cover no-repeat;
  }

  .sec-first-time-inner {
    position: relative;
    width: 100%;
    max-width: 1600px;
    height: 960px;
    margin: 0 auto;
  }

  /* 札: top_image009.webp */
  .ft-tag-ichiban {
    position: absolute;
    top: 60px;
    left: 40px;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  }

  /* メダル: top_image008.webp */
  .ft-award-badge {
    position: absolute;
    top: -5px;
    right: 80px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
  }

  /* キャッチテキスト */
  .ft-text-group {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    z-index: 2;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
  }

  .ft-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.6;
    margin-left: 24px;
    margin-bottom: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  }

  .ft-sub {
    margin: 170px 0 0;
    font-size: 2rem;
    color: var(--color-white);
    letter-spacing: 0.12em;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  }

  /* パッケージ3袋: top_image010.webp */
  .ft-pkg-set {
    position: absolute;
    bottom: 0px;
    right: 60px;
    z-index: 2;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
  }

  /* 箱付き束海苔: top_image011.webp */
  .ft-pkg-box {
    position: absolute;
    bottom: 0px;
    right: 360px;
    z-index: 2;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
  }


  /* ------------------------------------------------------------------------
     3. SEC-BLESSING ("熊本・網田の海苔師だけが...")
     ------------------------------------------------------------------------ */
  .sec-blessing {
    padding: 80px 0;
    position: relative;
    background-color: #000928;
    color: var(--color-white);
  }

  .blessing-container {
    width: 100%;
    max-width: 1570px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
  }

  .blessing-img-left {
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }

  .blessing-text-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
    text-align: left;
  }

  .blessing-lead-1 {
    font-size: 2rem;
    font-weight: normal;
    line-height: 1.7;
    color: var(--color-white);
  }

  .blessing-lead-2 {
    font-family: var(--font-mincho);
    margin-left: 2em;
    font-size: 2rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.85);
  }

  .blessing-sub-img {
    width: 90px;
    margin-left: 420px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
  }


  /* ------------------------------------------------------------------------
     4. SEC-WHY ("なぜ、有明海 網田の海苔はこんなにも美味しいのか？")
     ------------------------------------------------------------------------ */
  .sec-why {
    padding: 100px 0 120px;
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .sec-why-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--color-primary-navy);
    margin-bottom: 60px;
  }

  .why-content-wrap {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
  }

  /* ブロック1: top_image015.webp (画面左端配置) */
  .why-block-left {
    width: 70%;
    margin-left: 0;
    position: relative;
  }

  .why-img15-wrap {
    font-family: var(--font-mincho);
    position: relative;
    width: 100%;
  }

  .why-img15 {
    width: 100%;
    height: auto;
    display: block;
  }

  .why-img15-toptext {
    position: absolute;
    top: clamp(20px, 4%, 50px);
    left: clamp(20px, 3%, 40px);
    color: var(--color-white);
    font-size: clamp(1rem, 1.6vw, 1.6rem);
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
    z-index: 2;
  }

  .why-img15-bottomtext {
    position: absolute;
    bottom: clamp(140px, 18%, 240px);
    right: clamp(20px, 3%, 40px);
    color: var(--color-white);
    font-size: clamp(1rem, 1.6vw, 1.6rem);
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    z-index: 2;
  }

  /* ブロック2: top_image016.webp (右寄せ・15の下部に少し重なる) */
  .why-block-right {
    position: relative;
    width: 80%;
    margin-left: auto;
    margin-top: clamp(-95px, -9vw, -40px);
    z-index: 3;
  }

  .why-img16-wrap {
    position: relative;
    width: 100%;
  }

  .why-img16 {
    width: 100%;
    height: auto;
    display: block;
  }

  /* 縦書きテキスト1 (右上) */
  .why-vert-text1 {
    position: absolute;
    top: clamp(20px, 5%, 60px);
    right: clamp(20px, 3.5%, 50px);
    color: var(--color-black);
    font-size: clamp(1.1rem, 1.8vw, 1.8rem);
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.9);
    z-index: 4;
  }

  /* 縦書きテキスト2 (左下) */
  .why-vert-text2 {
    position: absolute;
    bottom: clamp(20px, 4%, 40px);
    left: clamp(-205px, -13vw, -50px);
    color: var(--color-primary-navy);
    font-size: clamp(1.1rem, 1.8vw, 1.8rem);
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.9);
    z-index: 4;
  }

  .why-block-2-overlay-text {
    position: absolute;
    right: 20px;
    top: 20px;
    height: calc(100% - 40px);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
  }

  .why-block-2-right {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
  }

  .why-vert-story {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2.2;
    color: var(--color-primary-navy);
    letter-spacing: 0.15em;
    height: 380px;
  }


  /* ------------------------------------------------------------------------
     5. SEC-AOMAZARI-INTRO ("青混ざ海苔とは")
     ------------------------------------------------------------------------ */
  .sec-aomazari-intro {
    padding: 90px 0;
    text-align: center;
    background: #ffffff;
  }

  .aomazari-img-center {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: none;
    margin: 0 auto 30px;
  }

  .aomazari-img-center img {
    width: auto;
    height: auto;
    max-width: none;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.15));
  }

  .aomazari-intro-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-primary-navy);
    margin: 30px auto 100px;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    letter-spacing: 0.15em;
  }

  .aomazari-intro-desc {
    font-family: var(--font-mincho);
    font-size: 2rem;
    color: #444;
    line-height: 1.6;
  }


  /* ------------------------------------------------------------------------
     6. SEC-MASTERPIECE ("海男の最高傑作！")
     ------------------------------------------------------------------------ */
  .sec-masterpiece {
    position: relative;
    width: 100%;
    height: 1125px;
    background: url('../img/top/top_image012.jpg') center center / cover no-repeat;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding-right: 12%;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
  }

  .masterpiece-vert-img {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.7));
  }


  /* ------------------------------------------------------------------------
     7. SEC-MIRACLE ("奇跡の天然青混ぜ")
     ------------------------------------------------------------------------ */
  .sec-miracle {
    padding: 100px 0;
    background: #ffffff;
    width: 100%;
  }

  .miracle-container {
    width: 100%;
    max-width: 1570px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .miracle-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-primary-navy);
    margin-bottom: 40px;
  }

  .miracle-title span {
    font-size: 1.8em;
    line-height: 1;
  }

  .miracle-text-content {
    font-family: var(--font-mincho);
  }

  .miracle-text-content p {
    font-size: 2rem;
    line-height: 2.1;
    color: #333;
    margin-bottom: 60px;
  }


  /* ------------------------------------------------------------------------
     8. SEC-PRODUCTS ("商品ラインナップ")
     ------------------------------------------------------------------------ */
  .sec-products {
    padding: 100px 0;
    background-image: var(--bg-washi);
  }

  .products-header {
    text-align: left;
    margin-bottom: 60px;
  }

  .products-sub {
    font-family: var(--font-en);
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    color: var(--color-accent-gold);
    font-weight: 600;
    margin-bottom: 6px;
  }

  .products-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-primary-navy);
    margin-bottom: 16px;
  }

  .products-lead {
    font-size: 1.4rem;
    color: var(--color-text-sub);
  }

  .products-container {
    width: 100%;
    max-width: 1570px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .products-grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 30px;
    width: 100%;
  }

  .product-card {
    width: 370px;
    height: 785px;
    flex-shrink: 0;
    background: var(--color-white);
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    box-sizing: border-box;
    overflow: hidden;
  }

  .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }

  .product-img-wrap {
    width: calc(100% + 40px);
    margin: -20px -20px 14px -20px;
    position: relative;
  }

  .product-main-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px 4px 0 0;
  }

  /* 最上位ランクゴールドリボン/タグ */
  .product-badge-gold {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #b59858;
    color: #000;
    font-size: 1rem;
    font-weight: 700;
    padding: 3px 8px;
    z-index: 2;
  }

  /* 右下に重なる小画像 (top_image010, 011, 013) */
  .product-sub-img {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 100px;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.25));
  }

  .product-sub-img.sub-img-left {
    left: 8px;
    right: auto;
  }

  .product-subtag {
    font-size: 1.2rem;
    color: #C5A047;
    margin-bottom: 6px;
  }

  .product-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary-navy);
    line-height: 1.4;
    margin-bottom: 10px;
    min-height: 2.8em;
  }

  .product-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
    min-height: 3.2em;
  }

  .product-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 16px;
    margin-top: auto;
  }

  .product-price .tax-text {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
  }

  /* ボタン */
  .product-btn {
    display: block;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  .product-btn.btn-gold {
    background: #b59858;
    color: #000;
    border: 1px solid #b59858;
  }

  .product-btn.btn-gold:hover {
    background: #9d8143;
    color: #000;
  }

  .product-btn.btn-outline {
    background: #fff;
    color: #333;
    border: 1px solid #ccc;
  }

  .product-btn.btn-outline:hover {
    background: #f5f5f5;
    border-color: #999;
  }

  .product-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-primary-navy);
    line-height: 1.4;
    margin-bottom: 10px;
    min-height: 2.8em;
  }

  .product-desc {
    font-size: 1.35rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
  }

  .product-price {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-primary-navy);
    margin-bottom: 16px;
  }

  .product-btn {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
  }


  /* ------------------------------------------------------------------------
     9. SEC-MIND ("海苔師として、命と誇りをかけて…")
     ------------------------------------------------------------------------ */
  .sec-mind {
    background-color: #000928;
    color: var(--color-white);
    padding: 100px 0;
    width: 100%;
  }

  .mind-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    width: 100%;
    max-width: 1570px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .mind-left-img {
    flex: 1;
    max-width: 850px;
  }

  .mind-left-img img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  }

  .mind-right-content {
    flex: 1;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .mind-sub-eng {
    font-family: var(--font-en);
    font-size: 1.2rem;
    color: #BF9E3F;
    margin-bottom: 8px;
  }

  .mind-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.4;
    margin-bottom: 24px;
  }

  .mind-desc {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
    margin-bottom: 32px;
  }

  .mind-buyer-box {
    background: #ffffff;
    color: #222;
    border-left: 7px solid #C8A24F;
    padding: 20px 24px;
    width: 100%;
    max-width: 520px;
    margin-bottom: 36px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }

  .buyer-msg {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #222;
    margin-bottom: 8px;
  }

  .buyer-name {
    font-size: 0.8rem;
    color: #666;
    text-align: left;
  }

  .mind-link-btn {
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    border-bottom: 3px solid #C7A247;
    transition: opacity 0.3s ease;
  }

  .mind-link-btn:hover {
    opacity: 0.8;
  }

  /* ------------------------------------------------------------------------
     10. SEC-BLOG ("美味しい食べ方・裏技")
     ------------------------------------------------------------------------ */
  .sec-blog {
    padding: 100px 0;
    background-color: #FFF;
    width: 100%;
  }

  .blog-container {
    width: 100%;
    max-width: 1580px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .blog-header {
    text-align: left;
    margin-bottom: 50px;
  }

  .blog-sub {
    font-family: var(--font-en);
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    color: var(--color-accent-gold);
    font-weight: 600;
    margin-bottom: 6px;
  }

  .blog-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--color-primary-navy);
    margin-bottom: 16px;
  }

  .blog-lead {
    font-size: 1.2rem;
    color: var(--color-text-sub);
  }

  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
  }

  .blog-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
  }

  .blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  }

  .blog-img-wrap {
    width: 100%;
    height: 240px;
    background: #f4f4f4;
    border: 1px solid #e2e2e2;
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    overflow: hidden;
  }

  .blog-img-placeholder {
    color: #888888;
    font-size: 0.95rem;
    font-weight: 500;
  }

  .blog-content {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .blog-tag {
    align-self: flex-start;
    background: #000;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 2px;
    margin-bottom: 14px;
  }

  .blog-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary-navy);
    line-height: 1.6;
    margin-bottom: 16px;
    font-family: var(--font-gothic);
  }

  .blog-date {
    font-size: 0.85rem;
    color: #888888;
    margin-top: auto;
  }

  .blog-btn-wrap {
    text-align: center;
  }

  .blog-more-btn {
    color: var(--color-primary-navy);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 3px solid #CBA24A;
    padding-bottom: 4px;
    display: inline-block;
    transition: opacity 0.3s ease;
  }

  .blog-more-btn:hover {
    opacity: 0.7;
  }


  /* ------------------------------------------------------------------------
     11. SEC-BANNERS (3連バナー)
     ------------------------------------------------------------------------ */
  .sec-banners {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .banner-item {
    position: relative;
    height: 450px;
    border: 1px solid #ffffff;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    text-align: center;
    box-sizing: border-box;
  }

  .banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .banner-item:hover .banner-bg {
    transform: scale(1.08);
  }

  .banner-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 23, 42, 0.65);
    transition: background 0.3s ease;
  }

  .banner-item:hover .banner-mask {
    background: rgba(11, 23, 42, 0.45);
  }

  .banner-content {
    position: relative;
    z-index: 2;
    padding: 20px;
  }

  .banner-sub {
    font-size: 0.85rem;
    margin-bottom: 6px;
    letter-spacing: 0.05em;
  }

  .banner-main {
    font-family: var(--font-en);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
  }


  /* ------------------------------------------------------------------------
     12. FOOTER
     ------------------------------------------------------------------------ */
  .site-footer {
    background-image: url('../img/com/com_image001.jpg');
    background-repeat: repeat;
    color: var(--color-white);
    padding-top: 80px;
    padding-bottom: 0;
    width: 100%;
  }

  .footer-main-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 60px;
    width: 100%;
    max-width: 1490px;
    margin: 0 auto 60px;
    padding: 0 20px;
    box-sizing: border-box;
  }

  /* 左ブランドエリア */
  .footer-brand-wrap {
    display: flex;
    align-items: flex-start;
    gap: 90px;
  }

  .footer-logo-umibouz {
    flex-shrink: 0;
  }

  .logo-umibouz-img {
    width: auto;
    height: auto;
    display: block;
  }

  .footer-company-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 10px;
  }

  .logo-shimayuki-img {
    display: block;
  }

  .footer-address {
    font-style: normal;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
  }

  .footer-address a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
  }

  .footer-address a:hover {
    text-decoration: underline;
  }

  /* 右サイトマップ */
  .footer-nav-wrap {
    display: flex;
    gap: 100px;
    padding-top: 10px;
  }

  .footer-nav-col {
    display: flex;
    flex-direction: column;
  }

  .footer-nav-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 8px;
    font-family: var(--font-gothic);
  }

  .footer-nav-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-nav-col a {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer-nav-col a:hover {
    color: var(--color-white);
  }

  /* 最下部コピーライトバー */
  .footer-copyright-bar {
    background-color: #000928;
    width: 100%;
    padding: 16px 0;
  }

  .footer-copyright-container {
    width: 100%;
    max-width: 1570px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .copyright-text {
    text-align: right;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 1);
  }
}


/* ==========================================================================
   SUB PAGE COMMON STYLES (Sub Visual & Breadcrumb)
   ========================================================================== */
.sub-visual {
  position: relative;
  width: 100%;
  height: 460px;
  padding: 0 20px;
  background-color: var(--color-primary-navy);
  background-image: url('../img/com/com_image011.jpg');
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  text-align: center;
  border-bottom: 1px solid rgba(197, 155, 39, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.sub-visual-inner {
  max-width: 100%;
  margin: 0 auto;
}

.sub-visual-logo {
  position: absolute;
  top: 30px;
  left: 40px;
  width: auto;
  height: auto;
  display: block;
  z-index: 2;
}

.sub-visual-eng {
  font-family: var(--font-en);
  font-size: 1.2rem;
  letter-spacing: 0.25em;
  color: var(--color-accent-gold-light);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.sub-visual-title {
  font-family: var(--font-mincho);
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  color: var(--color-white);
}

.sub-visual-sub {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
}

/* Breadcrumbs */
.breadcrumb-nav {
  background-color: #CDCED3;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 12px 90px;
}

.breadcrumb-container {
  max-width: 100%;
  margin: 0 auto;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.825rem;
  color: var(--color-text-sub);
}

.breadcrumb-list li:not(:last-child)::after {
  content: '>';
  margin-left: 10px;
  color: #999;
}

.breadcrumb-list a {
  color: var(--color-text-sub);
  text-decoration: none;
}

.breadcrumb-list a:hover {
  color: var(--color-accent-gold);
}


/* ==========================================================================
   PRODUCER STORY PAGE STYLES (producer-story.php)
   ========================================================================== */
.producer-story-article {
  padding-bottom: 40px;
  width: 100%;
}

.str-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.str-container-narrow {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 140px;
  box-sizing: border-box;
}

/* Common Image Figure Caption */
.str-img-figure {
  margin: 0;
  width: 100%;
}

.str-img-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.str-img-figure figcaption {
  margin-top: 8px;
  font-size: 0.825rem;
  color: var(--color-text-sub);
  line-height: 1.5;
}


/* SEC 1: THE NORI MASTER */
.str-sec-master {
  padding: 90px 0 80px;
  width: 100%;
  background-color: #fff;
}

.str-master-flex {
  display: flex;
  align-items: flex-start;
  gap: 120px;
  width: 100%;
}

.str-master-img-wrap {
  flex: 0 0 48%;
  max-width: 840px;
}

.str-master-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.str-master-content {
  flex: 1;
  padding-top: 10px;
}

.str-sub-label {
  font-family: var(--font-en);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--color-accent-gold);
  margin-bottom: 12px;
  display: block;
}

.str-master-title {
  font-size: 2.4rem;
  line-height: 1.5;
  color: var(--color-text-main);
  margin-bottom: 24px;
  font-weight: 700;
}

.str-master-text p {
  margin-top: 60px;
  font-size: 1.4rem;
  line-height: 2;
  color: #444;
}


/* SEC 2: Stage (有明海・網田) */
.str-sec-stage {
  background-color: #FFF;
  padding: 60px 0 80px;
  width: 100%;
}

.str-stage-title-wrap {
  text-align: center;
  margin-bottom: 10px;
  padding: 0 40px;
}

.str-stage-title {
  font-size: 2.4rem;
  color: var(--color-text-main);
  letter-spacing: 0.08em;
}

.str-stage-img-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.str-stage-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.str-stage-caption-overlay {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  background: rgba(0, 9, 40, 0.5);
}

.str-stage-text-inner {
  width: 1530px;
  margin: auto;
  padding: 60px 0;
}

.str-stage-text-inner p {
  font-size: 1.4rem;
  line-height: 1.9;
  color: #FFF;
}

.str-stage-p-spacer {
  margin-top: 16px;
}


/* SEC 3: Seed (「種」から自らの手で) */
.str-sec-seed {
  background-color: #FFF;
  padding: 90px 0;
  width: 100%;
  overflow-x: hidden;
}

.str-seed-flex {
  display: flex;
  justify-content: center;
  gap: 60px;
  align-items: flex-start;
  width: 1735px;
  margin: auto;
}

.str-seed-content {
  flex: 1;
  max-width: 860px;
}

.str-seed-title {
  font-size: 1.8rem;
  line-height: 1.5;
  color: var(--color-text-main);
  margin-bottom: 28px;
}

.str-seed-text p {
  font-size: 1.4rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 16px;
}

.str-seed-quote {
  font-family: var(--font-mincho);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin: 24px 0 !important;
}

.str-seed-images {
  flex: 0 0 45%;
  max-width: 685px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}


/* SEC 4: Dark Banner (職人の覚悟) */
.str-sec-dark {
  background-color: #FFF;
  padding: 40px 0 80px;
  width: 100%;
}

.str-dark-banner {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 1080px;
  margin: 0 auto;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.str-dark-bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.str-dark-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.str-dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.str-dark-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  color: var(--color-white);
  text-align: left;
  background: rgba(0, 9, 40, 0.5);
  padding: 60px 80px;
  box-sizing: border-box;
}

.str-dark-title {
  font-size: 2.4rem;
  color: var(--color-black);
  margin-bottom: 30px;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: center;
}

.str-dark-text p {
  font-size: 1.4rem;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}


/* SEC 5: Ebisu (なぜそこまでして海に出るのか) */
.str-sec-ebisu {
  background-color: #FFF;
  padding: 80px 0;
  width: 100%;
}

.str-ebisu-flex {
  display: flex;
  gap: 120px;
  align-items: flex-start;
  width: 100%;
}

.str-ebisu-left {
  flex: 0 0 45%;
  max-width: 800px;
}

.str-ebisu-right {
  flex: 1;
}

.str-ebisu-title {
  font-size: 1.8rem;
  line-height: 1.5;
  color: var(--color-text-main);
  margin-bottom: 24px;
}

.str-ebisu-text p {
  font-size: 1.4rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 20px;
}

.str-ebisu-hand-img-wrap {
  margin-top: 30px;
  max-width: 400px;
  margin-top: 80px;
  margin-left: 320px;
}

.str-ebisu-hand-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}


/* SEC 6: Quality (不作の年こそ、妥協なき一品を) */
.str-sec-quality {
  background-color: #FFF;
  padding: 60px 0 80px;
  text-align: left;
  width: 100%;
}

.str-quality-title {
  font-size: 2.4rem;
  color: var(--color-text-main);
  margin-bottom: 24px;
  letter-spacing: 0.08em;
}

.str-quality-text p {
  font-size: 1.4rem;
  line-height: 2.1;
  color: #444;
}


/* SEC 7: Bottom Photo & Message */
.str-sec-bottom-photo {
  background-color: #FFF;
  padding-bottom: 80px;
  width: 100%;
}

.str-bottom-photo-wrap {
  width: 100%;
  max-width: 100%;
  margin: 0 auto 30px;
}

.str-bottom-photo-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.str-bottom-message {
  text-align: center;
  padding: 0 20px;
}

.str-bottom-message p {
  font-size: 1.4rem;
  line-height: 2;
  color: var(--color-text-main);
  letter-spacing: 0.08em;
}

/* ==========================================================================
   OUR COMMITMENT PAGE STYLES (our-commitment.php)
   ========================================================================== */
.our-commitment-article {
  padding-bottom: 40px;
  width: 100%;
}

.cmt-container {
  width: 100%;
  max-width: 1530px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.cmt-sub-label {
  font-family: var(--font-en);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: var(--color-accent-gold);
  margin-bottom: 12px;
  display: block;
}

.cmt-label-light {
  color: var(--color-accent-gold-light);
}

.cmt-sec-title {
  font-family: var(--font-mincho);
  font-size: 2.4rem;
  line-height: 1.5;
  color: var(--color-text-main);
  margin-bottom: 32px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.cmt-sec-header {
  margin-bottom: 40px;
}

/* SEC 01 */
.cmt-sec-01 {
  padding: 90px 0 80px;
  width: 100%;
  background-color: #ffffff;
}

.cmt-01-row-top,
.cmt-01-row-middle {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 90px;
}

.cmt-01-img-wrap {
  flex: 0 0 60%;
  margin-left: -150px;
}

.cmt-01-img-wrap.btm {
  flex: 0 0 30%;
  margin: 0;
}

.cmt-01-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.cmt-01-text-wrap {
  flex: 1;
  padding-top: 10px;
}

.cmt-01-text-wrap.btm {
  max-width: 860px;
  margin-top: 120px;
  margin-right: 150px;
}

.cmt-01-text-wrap p {
  font-size: 1.35rem;
  line-height: 2.0;
  color: #444;
  margin-bottom: 24px;
}

.cmt-01-gallery {
  width: 100%;
  margin-top: 120px;
}

.cmt-01-gallery img {
  width: 100%;
  height: auto;
  display: block;
}

/* SEC 02 */
.cmt-sec-02 {
  background-color: #FFF;
  position: relative;
  width: 100%;
  height: 1080px;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.cmt-02-bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cmt-02-bg-wrap-in {
  width: 1640px;
  margin: auto;
}

.cmt-02-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cmt-02-overlay-content {
  position: relative;
  z-index: 2;
  width: 100%;
  background: rgba(0, 9, 40, 0.55);
  padding: 60px 0;
  box-sizing: border-box;
}

.cmt-02-title {
  font-family: var(--font-mincho);
  font-size: 2.4rem;
  margin-bottom: 24px;
  letter-spacing: 0.08em;
}

.cmt-02-text p {
  font-size: 1.35rem;
  line-height: 2.0;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 12px;
}

/* SEC 03 */
.cmt-sec-03 {
  padding: 90px 0;
  width: 100%;
  background-color: #ffffff;
}

.cmt-03-flex {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.cmt-03-img-wrap {
  flex: 0 0 60%;
  margin-left: -150px;
}

.cmt-03-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.cmt-03-content {
  flex: 1;
}

.cmt-03-text p {
  font-size: 1.35rem;
  line-height: 2.0;
  color: #444;
  margin-bottom: 24px;
}

/* SEC 04 */
.cmt-sec-04 {
  position: relative;
  width: 100%;
  min-height: 1080px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: #FFF;
}

.cmt-04-bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cmt-04-bg-wrap-in {
  width: 1670px;
  margin: auto;
}

.cmt-04-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cmt-04-overlay-content {
  position: relative;
  z-index: 2;
  width: 100%;
  background: rgba(0, 0, 0, 0.65);
  padding: 60px 0;
  box-sizing: border-box;
}

.cmt-04-title {
  font-family: var(--font-mincho);
  font-size: 2.4rem;
  margin-bottom: 24px;
  letter-spacing: 0.08em;
}

.cmt-04-text p {
  font-size: 1.35rem;
  line-height: 2.0;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 16px;
}

/* SEC 05 */
.cmt-sec-05 {
  padding: 90px 0;
  width: 100%;
  background-color: #ffffff;
}

.cmt-05-flex {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.cmt-05-img-wrap {
  flex: 0 0 60%;
  margin-left: -150px;
  overflow: hidden;
}

.cmt-05-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.cmt-05-content {
  flex: 1;
}

.cmt-05-sub-block {
  margin-top: 90px;
}

.cmt-05-sub-title {
  font-size: 1.6rem;
  color: var(--color-primary-navy);
  margin-bottom: 12px;
  font-weight: 700;
  padding-left: 14px;
}

.cmt-05-sub-block p {
  font-size: 1.3rem;
  line-height: 1.9;
  color: #444;
}

/* SEC 06 */
.cmt-sec-06 {
  padding: 90px 0 0;
  width: 100%;
  background-color: #ffffff;
}

.cmt-06-img-wrap {
  position: relative;
  width: 100%;
  margin: 40px 0 0;
  overflow: hidden;
}

.cmt-06-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.cmt-06-overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 9, 40, 0.5);
  padding: 40px 0;
  box-sizing: border-box;
  z-index: 2;
}

.cmt-06-text-wrap p {
  font-size: 1.35rem;
  line-height: 2.0;
  color: #ffffff;
  margin-bottom: 16px;
}

.cmt-06-text-wrap p:last-child {
  margin-bottom: 0;
}

/* SEC 07 */
.cmt-sec-07 {
  padding: 90px 0 100px;
  width: 100%;
  background-color: #ffffff;
}

.cmt-07-img-wrap {
  width: 100%;
  margin: 40px 0 40px;
}

.cmt-07-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.cmt-07-caption {
  text-align: center;
  margin-top: 20px;
}

.cmt-07-caption p {
  font-size: 1.35rem;
  line-height: 2.0;
  color: #333;
  font-family: var(--font-mincho);
  margin-bottom: 8px;
}

/* ==========================================================================
   COMPANY PAGE (会社概要)
   ========================================================================== */
.company-article {
  background-color: #ffffff;
  padding-bottom: 90px;
}

.cmp-container {
  width: 90%;
  max-width: 1520px;
  margin: 0 auto;
}

/* SEC 1: 縦書き筆文字メッセージセクション */
.cmp-sec-message {
  padding: 100px 0 80px;
  text-align: center;
}

.cmp-message-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cmp-message-img-wrap img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* SEC 2: 会社概要データセクション */
.cmp-sec-info {
  padding: 60px 0 80px;
}

.cmp-sec-header {
  text-align: center;
  margin-bottom: 50px;
}

.cmp-sec-title {
  font-family: var(--font-mincho);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-primary-navy, #0B172A);
  letter-spacing: 0.1em;
  position: relative;
  display: inline-block;
}

.cmp-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: start;
}

.cmp-info-list {
  margin: 0;
  padding: 0;
}

.cmp-info-item {
  display: flex;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid #E6CFA5;
}

.cmp-info-item br {
  display: inline !important;
}

.cmp-info-item:first-child {
  border-top: 1px solid #E6CFA5;
}

.cmp-info-item dt {
  width: 120px;
  flex-shrink: 0;
  font-size: 1.4rem;
  color: #E6CFA5;
  letter-spacing: 0.05em;
}

.cmp-info-item dd {
  margin: 0;
  flex: 1;
  font-size: 1.4rem;
  color: #222222;
  line-height: 1.6;
  padding-left: 100px;
}

/* SEC 3: 店舗外観写真セクション */
.cmp-sec-photo {
  padding: 20px 0 80px;
}

.cmp-photo-wrap {
  width: 100%;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.cmp-photo-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* SEC 4: GoogleMap アクセスマップセクション */
.cmp-sec-map {
  padding: 0 0 40px;
}

.cmp-map-wrap {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  background-color: #e5e3df;
}

.cmp-map-wrap iframe {
  display: block;
  width: 100%;
  height: 660px;
  border: 0;
}

/* ==========================================================================
   SITE POLICY PAGE (サイトポリシー)
   ========================================================================== */
.site-policy-article {
  background-color: #ffffff;
  padding: 100px 0 120px;
}

.plc-container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.plc-sec {
  margin-bottom: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid #E6CFA5;
}

.plc-sec:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.plc-sec-title {
  font-family: var(--font-gothic);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-accent-gold, #c59b27);
  margin-bottom: 24px;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.plc-sec-content p {
  font-size: 1.05rem;
  line-height: 1.95;
  color: #333333;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.plc-sec-content p:last-child {
  margin-bottom: 0;
}

.plc-lead {
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid #E6CFA5;
}

.plc-lead p {
  font-size: 1.05rem;
  line-height: 2.0;
  color: #333333;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.plc-lead p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   CONTACT PAGE (お問い合わせ)
   ========================================================================== */
.contact-article {
  background-color: #ffffff;
  padding: 80px 0 120px;
}

.contact-container {
  width: 90%;
  max-width: 1420px;
  margin: 0 auto;
}

.contact-lead {
  text-align: center;
  margin-bottom: 50px;
}

.contact-lead p {
  font-size: 1.05rem;
  line-height: 1.95;
  color: #333333;
  letter-spacing: 0.04em;
}

.contact-form-container {
  background-color: #F2F2F4;
  padding: 50px 60px;
  border-radius: 4px;
  margin: 0 auto;
  box-sizing: border-box;
}

.contact-form-row {
  display: flex;
  align-items: flex-start;
  padding: 24px 250px;
  border-bottom: 1px solid #e0e0e0;
}

.contact-form-row:last-child {
  border-bottom: none;
}

.contact-form-label {
  width: 240px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 8px;
}

.contact-label-text {
  font-size: 1.05rem;
  font-weight: 500;
  color: #333333;
  letter-spacing: 0.04em;
}

.contact-req {
  background-color: #be0000;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 2px 7px;
  border-radius: 2px;
  line-height: 1.4;
  white-space: nowrap;
}

.contact-form-input {
  flex-grow: 1;
}

/* Checkbox & Radio */
.contact-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-checkbox-item {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  color: #333333;
  user-select: none;
}

.contact-checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent-gold, #c59b27);
  margin-right: 8px;
  cursor: pointer;
}

/* Form Inputs */
.contact-input-text {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 3px;
  padding: 10px 14px;
  font-size: 1rem;
  color: #333333;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-input-text:focus,
.contact-select-text:focus,
.contact-textarea:focus {
  border-color: var(--color-accent-gold, #c59b27);
  outline: none;
  box-shadow: 0 0 0 3px rgba(197, 155, 39, 0.15);
}

.contact-field-inline {
  display: flex;
  gap: 20px;
}

.contact-input-with-sub {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.contact-input-flex {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-input-flex .contact-input-text {
  flex: 1;
}

.field-sub-title {
  font-size: 0.95rem;
  color: #333333;
  min-width: 45px;
  flex-shrink: 0;
}

.contact-example-text {
  font-size: 0.85rem;
  color: #777777;
  margin-top: 6px;
  padding-left: 57px;
  /* Align under input */
}

.contact-input-single .contact-example-text {
  padding-left: 0;
}

.contact-field-stacked {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-input-medium {
  width: 320px;
  max-width: 100%;
}

.contact-address-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-address-zip-pref {
  display: flex;
  gap: 24px;
}

.contact-input-zip {
  width: 160px;
}

/* Select wrapper */
.select-wrapper {
  position: relative;
  width: 220px;
}

.contact-select-text {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 3px;
  padding: 10px 32px 10px 14px;
  font-size: 1rem;
  color: #333333;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  box-sizing: border-box;
}

.select-wrapper::after {
  content: '▼';
  font-size: 0.75rem;
  color: #666666;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Textarea */
.contact-textarea {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 3px;
  padding: 14px;
  font-size: 1rem;
  color: #333333;
  line-height: 1.6;
  resize: vertical;
  box-sizing: border-box;
}

/* Submit Area */
.contact-submit-area {
  margin-top: 50px;
  text-align: center;
}

.contact-policy-agree {
  margin-bottom: 30px;
}

.contact-policy-agree .contact-checkbox-item {
  font-size: 1.05rem;
}

.policy-link {
  color: var(--color-accent-gold, #c59b27);
  text-decoration: underline;
  font-weight: 500;
}

.policy-link:hover {
  opacity: 0.8;
}

.contact-submit-btn-wrap {
  margin-bottom: 30px;
}

.contact-submit-btn {
  background: linear-gradient(180deg, #d4aa38 0%, #b88d22 100%);
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 16px 90px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(184, 141, 34, 0.25);
  transition: all 0.3s ease;
}

.contact-submit-btn:hover {
  background: linear-gradient(180deg, #e2b946 0%, #c89a2b 100%);
  box-shadow: 0 6px 16px rgba(184, 141, 34, 0.35);
  transform: translateY(-2px);
}

.contact-notice-text {
  font-size: 0.9rem;
  color: #666666;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

/* ==========================================================================
   BLOG ARCHIVE & SINGLE POST STYLES
   ========================================================================== */

/* Blog Image & Card Enhancements */
.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.05);
}

/* Archive Article Wrapper */
.blog-archive-article {
  padding: 80px 0 100px;
  background-color: var(--color-bg-paper);
}

.blog-archive-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.archive-description {
  margin-bottom: 40px;
  padding: 20px 24px;
  background: #ffffff;
  border-left: 4px solid var(--color-accent-gold);
  border-radius: 4px;
  font-size: 1.05rem;
  color: var(--color-text-sub);
}

/* Pagination */
.archive-pagination {
  margin-top: 60px;
  text-align: center;
}

.archive-pagination .nav-links {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.archive-pagination .page-numbers {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 4px;
  border: 1px solid #dcdcdc;
  background: #ffffff;
  color: var(--color-primary-navy);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.archive-pagination .page-numbers:hover,
.archive-pagination .page-numbers.current {
  background: var(--color-primary-navy);
  color: var(--color-accent-gold-light);
  border-color: var(--color-primary-navy);
  box-shadow: 0 4px 10px rgba(11, 23, 42, 0.2);
}

/* Single Post Layout */
.single-post-article {
  width: 100%;
  max-width: 1530px;
  margin: 0 auto;
  padding: 80px 20px 100px;
  background-color: var(--color-bg-paper);
  box-sizing: border-box;
}

.single-post-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.single-article-card {
  background: #ffffff;
  border-radius: 6px;
  padding: 50px 60px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(197, 155, 39, 0.15);
  margin-bottom: 60px;
}

.single-article-header {
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eeeeee;
}

.single-meta-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.single-tag {
  display: inline-block;
}

.single-date {
  font-size: 0.9rem;
  color: #777777;
  font-weight: 500;
}

.single-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--color-primary-navy);
  font-family: var(--font-mincho);
}

.single-eyecatch {
  width: 100%;
  max-height: 480px;
  margin-bottom: 40px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.single-eyecatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Rich Text Entry Content Styles */
.entry-content {
  font-size: 1.05rem;
  line-height: 1.95;
  color: #333333;
}

.entry-content p {
  margin-bottom: 1.8em;
}

.entry-content h2 {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--color-primary-navy);
  margin: 2.4em 0 1.2em;
  padding: 10px 0 10px 18px;
  border-left: 4px solid var(--color-accent-gold);
  background: linear-gradient(90deg, rgba(197, 155, 39, 0.06) 0%, rgba(255, 255, 255, 0) 100%);
  font-family: var(--font-mincho);
  line-height: 1.4;
}

.entry-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary-navy);
  margin: 2em 0 1em;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(11, 23, 42, 0.1);
  font-family: var(--font-mincho);
  line-height: 1.45;
}

.entry-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary-navy);
  margin: 1.6em 0 0.8em;
  font-family: var(--font-gothic);
}

.entry-content blockquote {
  margin: 2em 0;
  padding: 24px 28px;
  background: #fcfbfa;
  border-left: 3px solid var(--color-accent-gold);
  border-radius: 0 4px 4px 0;
  font-style: italic;
  color: #555555;
}

.entry-content blockquote p:last-child {
  margin-bottom: 0;
}

.entry-content ul,
.entry-content ol {
  margin: 1.5em 0 1.8em 1.5em;
  padding-left: 10px;
}

.entry-content ul {
  list-style: disc;
}

.entry-content ol {
  list-style: decimal;
}

.entry-content li {
  margin-bottom: 0.6em;
}

.entry-content img,
.entry-content figure {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 2em 0;
}

.entry-content figure figcaption {
  font-size: 0.85rem;
  color: #777777;
  text-align: center;
  margin-top: 8px;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
  font-size: 0.95rem;
}

.entry-content th,
.entry-content td {
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
}

.entry-content th {
  background: #f4f6f8;
  color: var(--color-primary-navy);
  font-weight: 700;
}

/* Post Navigation (Prev / List / Next) */
.single-post-nav {
  display: grid;
  grid-template-columns: 1fr 160px 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 80px;
}

.post-nav-item a {
  display: flex;
  flex-direction: column;
  padding: 14px 18px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  text-decoration: none;
  color: var(--color-primary-navy);
  transition: all 0.3s ease;
}

.post-nav-item a:hover {
  border-color: var(--color-accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.nav-label {
  font-size: 0.8rem;
  color: var(--color-accent-gold);
  font-weight: 700;
  margin-bottom: 4px;
}

.nav-title {
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-back-to-list {
  display: flex !important;
  justify-content: center;
  align-items: center;
  height: 48px;
  background: var(--color-primary-navy) !important;
  color: var(--color-white) !important;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(11, 23, 42, 0.2);
}

.btn-back-to-list:hover {
  background: #172a48 !important;
}

/* Single Related Posts Section */
.single-related-sec {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px dashed #e0e0e0;
}

.related-sec-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary-navy);
  margin-bottom: 32px;
  font-family: var(--font-mincho);
  position: relative;
  display: inline-block;
}

.related-sec-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-accent-gold);
}

/* Contact Form 7 Compatibility & Layout Styles */
.wpcf7 {
  margin: 0 auto;
  width: 100%;
}

.wpcf7 .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.contact-input-flex .wpcf7-form-control-wrap {
  flex: 1;
}

.wpcf7-text,
.wpcf7-textarea,
.wpcf7-select {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 3px;
  padding: 12px 14px;
  font-size: 1rem;
  color: #333333;
  box-sizing: border-box;
}

.wpcf7-checkbox .wpcf7-list-item,
.wpcf7-acceptance .wpcf7-list-item {
  display: inline-block;
  margin: 0 20px 8px 0;
}

.wpcf7-checkbox label,
.wpcf7-acceptance label {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}

.wpcf7-checkbox input[type="checkbox"],
.wpcf7-acceptance input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent-gold, #c59b27);
  cursor: pointer;
}

.wpcf7-submit {
  background: linear-gradient(180deg, #d4aa38 0%, #b88d22 100%);
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 16px 90px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(184, 141, 34, 0.25);
  transition: all 0.3s ease;
  display: inline-block;
}

.wpcf7-submit:hover {
  background: linear-gradient(180deg, #e2b946 0%, #c89a2b 100%);
  box-shadow: 0 6px 16px rgba(184, 141, 34, 0.35);
  transform: translateY(-2px);
}

.wpcf7-not-valid-tip {
  color: #d9534f;
  font-size: 0.85rem;
  margin-top: 6px;
  display: block;
}

.wpcf7-response-output {
  border-radius: 4px;
  padding: 14px 20px;
  margin-top: 24px !important;
  font-size: 0.95rem;
  border: 2px solid var(--color-accent-gold) !important;
  background: #fffdf8;
  color: var(--color-primary-navy);
}