    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      -webkit-text-size-adjust: 100%;
    }

    input,
    button,
    textarea,
    select {
      font: inherit;
    }

    img,
    svg {
      display: block;
      max-width: 100%;
    }

    button {
      background-color: transparent;
      border: none;
      cursor: pointer;
      outline: none;
      padding: 0;
      appearance: none;
    }


    a {
      text-decoration: none;
      color: inherit;
    }

    :root {
      --smoke-white: #eee9e2;
      --charcoal: #1c1c1c;
      --brown: #8b6a4a;
      --brown-light: #a07d5a;
      --greige: #b8b0a5;
      --warm-light: #e8d6b8;
      --bg: #eee9e2;
      --bg2: #e6e0d8;
      --bg3: #f5f2ee;
      --font-concept: "BIZ UDMincho", "BIZ UDPMincho", "UD Mincho", "Sawarabi Mincho", "Yu Mincho", "MS Mincho", serif;
      --font-label: "inter", "san-serif", "serif";
      --text: #1c1c1c;
      --text-muted: #6a6260;
      --border: rgba(28, 28, 28, 0.12);
      --border-brown: rgba(139, 106, 74, 0.25);
    }

    body {
      font-family: 'Noto Sans JP', sans-serif;
      background: var(--bg);
      color: var(--text);
      font-size: 14px;
      line-height: 1.8;
      overflow-x: hidden;
      /* 横スクロール防止 */
    }

    /* NAV */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--charcoal);
      border-bottom: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 40px;
      backdrop-filter: blur(4px);
      /* 少しぼかしを入れてリッチに */
    }

    .header-logo {
      width: 80px;
      height: auto;
    }

    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      color: var(--smoke-white);
      text-decoration: none;
      font-size: 11px;
      letter-spacing: 0.18em;
      font-family: 'Inter', sans-serif;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: var(--brown);
    }


    /* HERO */
    .hero {
      height: 540px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid var(--border);
    }

    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('http://4375851f013de332.main.jp/global1.co.jp/img/黒.png') no-repeat center / cover;
      animation: slowZoom 10s ease-in-out infinite alternate;
    }

    .hero-ornament,
    .hero h1,
    .hero-divider,
    .hero-sub {
      position: relative;
      z-index: 1;
    }

    @keyframes slowZoom {
      0% {
        transform: scale(1);
        /* 最初は元のサイズ（1倍） */
      }

      100% {
        transform: scale(1.1);
        /* 15秒かけて1.1倍（10%拡大）にする */
      }
    }


    .hero::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--brown-light), transparent);
      opacity: 0.4;
    }

    .hero-ornament {
      font-family: 'Inter', sans-serif;
      font-size: 9px;
      letter-spacing: 0.5em;
      color: var(--greige);
      margin-bottom: 28px;
      text-transform: uppercase;
    }

    .hero h1 {
      font-family: var(--font-concept);
      font-size: 44px;
      font-weight: 400;
      letter-spacing: 0.05em;
      color: var(--smoke-white);
      line-height: 1.35;
      margin-bottom: 20px;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--brown-light);
    }


    /* 1. 最初の状態（文字をあらかじめ透明にしておく） */
    .hero h1 span {
      display: inline-block;
      /* 文字を滑らかに動かすために必要 */
      opacity: 0;
      /* 最初は完全に透明 */
      transform: translateY(10px);
      /* 少しだけ下に下げておく */

      /* アニメーションの指定（0.8秒かけて、ふわっと上に動きながら現れる） */
      animation: fudeInUp 0.8s forwards;
    }

    /* 2. 【心臓部】一文字ずつの登場タイミングをずらす設定（ディレイ） */
    /* 数字（秒数）を変えることで、表示されるテンポを調整できます */
    .hero h1 span:nth-child(1) {
      animation-delay: 0.1s;
    }

    .hero h1 span:nth-child(2) {
      animation-delay: 0.2s;
    }

    .hero h1 span:nth-child(3) {
      animation-delay: 0.3s;
    }

    .hero h1 span:nth-child(4) {
      animation-delay: 0.4s;
    }

    .hero h1 span:nth-child(5) {
      animation-delay: 0.5s;
    }

    .hero h1 span:nth-child(6) {
      animation-delay: 0.6s;
    }

    .hero h1 span:nth-child(7) {
      animation-delay: 0.7s;
    }

    /* 改行後の em（斜体）の中の文字のタイミング */
    .hero h1 em span:nth-child(1) {
      animation-delay: 0.8s;
    }

    .hero h1 em span:nth-child(2) {
      animation-delay: 0.9s;
    }

    .hero h1 em span:nth-child(3) {
      animation-delay: 1.0s;
    }

    .hero h1 em span:nth-child(4) {
      animation-delay: 1.1s;
    }

    .hero h1 em span:nth-child(5) {
      animation-delay: 1.2s;
    }

    .hero h1 em span:nth-child(6) {
      animation-delay: 1.3s;
    }

    .hero h1 em span:nth-child(7) {
      animation-delay: 1.4s;
    }

    .hero h1 em span:nth-child(8) {
      animation-delay: 1.5s;
    }

    /* 最後の「届ける」のタイミング */
    .hero h1 span:nth-child(9) {
      animation-delay: 1.6s;
    }

    .hero h1 span:nth-child(10) {
      animation-delay: 1.7s;
    }

    .hero h1 span:nth-child(11) {
      animation-delay: 1.8s;
    }

    .hero h1 span:nth-child(12) {
      animation-delay: 1.9s;
    }

    /* 3. 「どのように動かすか」のアニメーション指示書き */
    @keyframes fudeInUp {
      0% {
        opacity: 0;
        transform: translateY(10px);
        /* スタート：透明で少し下 */
      }

      100% {
        opacity: 1;
        transform: translateY(0);
        /* ゴール：くっきり元の位置 */
      }
    }

    .hero-divider {
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 20px auto 24px;
      width: 200px;
    }

    .hero-divider::before,
    .hero-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--greige);
      opacity: 0.6;
    }

    .hero-divider-dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--brown);
      opacity: 0.5;
    }

    .hero-sub {
      font-size: 12px;
      color: var(--greige);
      letter-spacing: 0.12em;
      font-weight: 300;
      max-width: 380px;
      line-height: 2.2;
    }

    /* SECTIONS */
    section {
      padding: 80px 40px;
      max-width: 900px;
      margin: 0 auto;
    }

    .section-label {
      font-family: 'Inter', sans-serif;
      font-size: 9px;
      letter-spacing: 0.45em;
      color: var(--greige);
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .section-title {
      font-family: var(--font-concept);
      font-size: 30px;
      font-weight: 400;
      color: var(--charcoal);
      margin-bottom: 8px;
    }

    .divider {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 16px 0 40px;
      width: 120px;
    }

    .divider::before {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--brown);
      opacity: 0.35;
    }

    .divider-dot {
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: var(--brown);
      opacity: 0.4;
    }

    /* ABOUT */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: start;
    }

    .about-text {
      color: var(--text-muted);
      font-weight: 300;
      line-height: 2.2;
      font-size: 13px;
    }

    .about-stats {
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    .stat-item {
      border-left: 1px solid var(--brown);
      padding-left: 20px;
      opacity: 0.9;
    }

    .stat-number {
      font-family: 'Playfair Display', serif;
      font-size: 36px;
      color: var(--charcoal);
      font-weight: 400;
      line-height: 1;
    }

    .stat-unit {
      font-family: 'Inter', sans-serif;
      font-size: 12px;
      color: var(--brown);
      margin-left: 4px;
    }

    .stat-label {
      font-size: 10px;
      color: var(--greige);
      letter-spacing: 0.2em;
      margin-top: 6px;
      font-family: var(--font-label);
    }



    /* BUSINESS */
    .business-section {
      background: var(--charcoal);
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .business-section .section-label {
      color: var(--greige);
      opacity: 0.6;
    }

    .business-section .section-title {
      color: var(--smoke-white);
    }

    .business-section .divider::before {
      background: var(--warm-light);
    }

    .business-section .divider-dot {
      background: var(--warm-light);
    }

    .business-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .biz-card {
      border: 1px solid rgba(184, 176, 165, 0.15);
      border-radius: 2px;
      padding: 36px;
      background: rgba(255, 255, 255, 0.03);
      transition: background 0.3s, border-color 0.3s;
    }

    .biz-card:hover {
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(139, 106, 74, 0.4);
    }

    .biz-icon {
      font-size: 26px;
      margin-bottom: 18px;
    }

    .biz-title {
      font-family: var(--font-concept);
      font-size: 17px;
      color: var(--warm-light);
      margin-bottom: 12px;
      font-weight: 400;
    }

    .biz-desc {
      font-size: 12px;
      color: var(--greige);
      line-height: 2.1;
    }

    /* SHOP */
    .shop-card {
      border: 1px solid var(--border-brown);
      border-radius: 2px;
      padding: 44px;
      background: var(--bg3);
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 44px;
      align-items: center;
    }

    .shop-badge {
      width: 150px;
      height: 150px;
      /* border-radius: 50%; */
      align-items: center;
      justify-content: center;
    }

    .shop-info h3 {
      font-family: 'Playfair Display', serif;
      font-size: 19px;
      color: var(--charcoal);
      margin-bottom: 8px;
      font-weight: 400;
    }

    .shop-tag {
      display: inline-block;
      font-family: 'Inter', sans-serif;
      font-size: 9px;
      letter-spacing: 0.3em;
      border: 1px solid var(--border-brown);
      color: var(--brown);
      padding: 4px 12px;
      margin-bottom: 16px;
      border-radius: 1px;
      text-transform: uppercase;
    }

    .shop-detail {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 2.4;
    }

    .shop-detail-text {
      margin-top: 2vh;
      margin-bottom: 2.2vh;
      line-height: 2.6vh;
    }

    .map-button {
      display: inline-block;
      background-color: #b8b0a5;
      color: #ffffff;
      margin: 5px 12px;
      padding: 5px 16px;
      border-radius: 6px;
      font-size: 10px;
      font-family: sans-serif;
    }

    .map-button:hover {
      background-color: #c7bfb4;
    }

    .google-map {
      width: 100%;
      height: 80%;
      margin: 5vh auto;
    }

    .map {
      width: 100%;
      height: 50vh;
    }



    /* COMPANY INFO */
    .info-table {
      width: 100%;
      border-collapse: collapse;
    }

    .info-table tr {
      border-bottom: 1px solid var(--border);
    }

    .info-table td {
      padding: 18px 8px;
      font-size: 13px;
      vertical-align: top;
    }

    .info-table td:first-child {
      font-family: 'Inter', sans-serif;
      color: var(--brown);
      font-size: 10px;
      letter-spacing: 0.15em;
      width: 160px;
      font-weight: 500;
      text-transform: uppercase;
    }

    .info-table td:last-child {
      color: var(--text-muted);
      font-weight: 300;
    }

    /* CONTACT */
    .contact-section {
      background: var(--bg2);
      text-align: center;
      border-top: 1px solid var(--border);
    }

    .contact-section section {
      max-width: 600px;
    }

    .contact-cta {
      display: inline-block;
      margin-top: 8px;
      border: 1px solid var(--charcoal);
      color: var(--charcoal);
      padding: 14px 52px;
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      letter-spacing: 0.3em;
      text-decoration: none;
      border-radius: 1px;
      transition: all 0.3s;
      cursor: pointer;
      background: transparent;
      text-transform: uppercase;
    }

    .contact-cta:hover {
      background: var(--charcoal);
      color: var(--smoke-white);
    }

    .contact-note {
      font-size: 11px;
      color: var(--greige);
      margin-top: 18px;
      letter-spacing: 0.08em;
    }


    .inst-icon {
      margin: 0 auto;
      place-items: center;
      align-content: center;
      position: relative;
      bottom: 5vh;
    }

    .inst-icon a {
      display: inline-block;
      width: 30px;
      height: 30px;

    }

    .inst-icon img {
      width: 30px;
      height: auto;
    }


    /* FOOTER */
    footer {
      background: var(--charcoal);
      padding: 32px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-logo {
      font-family: 'Playfair Display', serif;
      font-size: 14px;
      color: var(--smoke-white);
      letter-spacing: 0.08em;
      opacity: 0.8;
    }

    .footer-copy {
      font-family: 'Inter', sans-serif;
      font-size: 10px;
      color: var(--greige);
      letter-spacing: 0.1em;
      opacity: 0.4;
    }



    /* レスポンシブデザイン */

    @media screen and (max-width: 768px) {

      /* 全体のセクション余白をスマホサイズに縮小 */
      section {
        padding: 60px 24px;
      }

      /* ナビゲーション：縦並びにして画面内に収める */
      nav {
        flex-direction: column;
        padding: 16px 20px;
        gap: 16px;
      }

      .nav-links {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
      }

      .nav-links a {
        font-size: 10px;
        letter-spacing: 0.1em;
      }

      /* ヒーローエリア：高さを抑え、フォントサイズを調整 */
      .hero {
        height: 420px;
        padding: 0 20px;
      }

      .hero h1 {
        font-size: 32px;
        line-height: 1.4;
      }

      .hero-ornament {
        font-size: 8px;
        letter-spacing: 0.3em;
        margin-bottom: 20px;
      }

      .hero-sub {
        font-size: 11px;
      }

      /* Aboutセクション：1カラムにして、数字データは横並びに */
      .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .about-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px;
        background: rgba(139, 106, 74, 0.03);
        /* 少し背景色を敷いてまとまりを出す */
        padding: 24px;
        border-radius: 4px;
      }

      .stat-item {
        border-left: none;
        border-top: 1px solid var(--border-brown);
        padding-left: 0;
        padding-top: 16px;
        flex: 1;
        min-width: 80px;
        text-align: center;
      }

      .stat-item:first-child {
        border-top: none;
        /* スマホ時の最初の上線は不要なら消す等の微調整 */
        padding-top: 0;
      }

      /* Shopセクション：アイコンとテキストを縦並び・中央揃えに */
      .shop-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
        padding: 40px 24px;
      }

      .shop-badge {
        margin: 0 auto;
      }

      .shop-tag {
        margin: 0 auto 16px;
      }

      /* 会社情報テーブル：項目と内容を縦並びに展開して読みやすく */
      .info-table td {
        display: block;
        width: 100% !important;
        padding: 10px 0;
      }

      .info-table td:first-child {
        border-bottom: none;
        padding-bottom: 2px;
        color: var(--brown-light);
      }

      .info-table td:last-child {
        padding-top: 0;
        padding-bottom: 20px;
      }

      /* フッター：縦並びにして中央揃え */
      footer {
        flex-direction: column;
        gap: 16px;
        padding: 32px 20px;
        text-align: center;
      }
    }