/*
Theme Name: myestate
Theme URI:
Author: Sakura Agent
Description: 株式会社myestate オリジナルテーマ
Version: 1.0
Text Domain: myestate
*/


/* ========================================
   CSS VARIABLES
======================================== */

:root {
  --paper: #FAF7F2;
  --stone: #EFE8DC;
  --stone-2: #E4DACA;
  --gold: #B8935F;
  --gold-soft: #D3B98C;
  --ink: #2A2620;
  --ink-soft: #655C4E;
  --hair: #DAD0BC;
  --white: #FFFFFF;
}


/* ========================================
   RESET / BASE
======================================== */

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;

  font-family: 'Noto Sans JP', sans-serif;

  background: var(--paper);
  color: var(--ink);

  -webkit-font-smoothing: antialiased;

  line-height: 1.9;
}

.serif {
  font-family: 'Shippori Mincho', serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}


/* ========================================
   ヘッダーナビゲーション
======================================== */

.nav {
  position: fixed;

  top: 0;
  left: 0;
  right: 0;

  z-index: 100;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 16px 6vw;

  background: rgba(250, 247, 242, 0.94);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 1px 0 var(--hair);

  color: var(--ink);
}

.nav.scrolled {
  background: rgba(250, 247, 242, 0.94);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 1px 0 var(--hair);

  color: var(--ink);
}


/* ロゴ */

.nav-logo {
  display: flex;
  align-items: center;

  gap: 0;

  line-height: 1;

  font-family: 'Shippori Mincho', serif;

  font-size: 19px;

  letter-spacing: 0.18em;

  font-weight: 600;

  color: inherit;

  text-decoration: none;
}

.nav-logo img {
  width: 40px;
  height: 40px;

  object-fit: contain;

  display: block;

  opacity: 1;

  margin-right: 8px;
}

.nav-logo span {
  color: var(--gold-soft);
}

.nav.scrolled .nav-logo span {
  color: var(--gold);
}


/* ナビリンク */

.nav-links {
  display: flex;

  gap: 44px;

  list-style: none;
}

.nav-links a {
  position: relative;

  padding-bottom: 4px;

  font-size: 13.5px;

  letter-spacing: 0.08em;

  color: inherit;
}

.nav-links a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 0;
  height: 1px;

  background: var(--gold);

  transition: width .35s ease;
}

.nav-links a:hover::after {
  width: 100%;
}


/* ハンバーガー */

.nav-toggle {
  display: none;

  flex-direction: column;

  gap: 5px;

  cursor: pointer;

  background: none;

  border: none;
}

.nav-toggle span {
  width: 22px;
  height: 1.5px;

  background: currentColor;
}


/* ========================================
   ヒーロー
======================================== */

.hero {
  position: relative;

  min-height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 0;

  overflow: hidden;

  background: #0D1B2A;
}


/* 背景画像 */

.hero-scene {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  display: block;
}


/* オーバーレイ */

.hero-scrim {
  position: absolute;

  inset: 0;

  z-index: 1;

  background:
    linear-gradient(
      100deg,
      rgba(10, 16, 24, 0.72) 0%,
      rgba(10, 16, 24, 0.42) 38%,
      rgba(10, 16, 24, 0.05) 62%
    );
}


/* ヒーロー本文 */

.hero-inner {
  position: relative;

  z-index: 3;

  max-width: 760px;

  padding: 40px;
  padding-top: 80px;

  background: rgba(0, 0, 0, .18);

  border-radius: 0 24px 24px 0;
}

.hero-eyebrow {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-bottom: 14px;

  font-size: 12px;

  letter-spacing: 0.32em;

  color: var(--gold-soft);
}

.hero-eyebrow .line {
  width: 40px;
  height: 1px;

  background: var(--gold-soft);
}

.hero h1 {
  font-family: 'Shippori Mincho', serif;

  font-weight: 600;

  font-size: clamp(36px, 5.6vw, 68px);

  line-height: 1.2;

  letter-spacing: 0.06em;

  color: #FFFFFF;

  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.35);
}

.hero h1 span {
  display: block;

  white-space: nowrap;
}

.hero h1 em {
  font-style: normal;

  color: var(--gold-soft);
}

.hero-divider {
  width: 120px;
  height: 1px;

  margin: 30px 0;

  background:
    linear-gradient(
      90deg,
      var(--gold-soft),
      transparent
    );
}

.hero-sub {
  max-width: 700px;

  font-size: 15.5px;

  color: rgba(255, 255, 255, 0.82);

  letter-spacing: 0.03em;

  line-height: 1.8;
}

.hero-sub span {
  display: block;

  white-space: nowrap;

  font-family: 'Shippori Mincho', serif;

  font-weight: 600;
}


/* お問い合わせCTA */

.hero-cta {
  display: inline-flex;

  align-items: center;

  gap: 16px;

  width: fit-content;

  margin-top: 24px;

  padding-bottom: 6px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.6);

  font-size: 13px;

  letter-spacing: 0.1em;

  color: #FFFFFF;
}

.hero-cta svg {
  position: relative;

  top: 1px;

  width: 16px;
  height: 16px;

  transition: transform .3s ease;
}

.hero-cta:hover svg {
  transform: translateX(6px);
}


/* Scroll表示 */

.hero-scroll {
  position: absolute;

  bottom: 36px;
  left: 6vw;

  z-index: 3;

  display: flex;

  align-items: center;

  gap: 10px;

  font-size: 11px;

  letter-spacing: 0.2em;

  color: rgba(255, 255, 255, 0.7);
}

.hero-scroll .dot {
  position: relative;

  width: 1px;
  height: 34px;

  overflow: hidden;

  background: var(--gold-soft);
}

.hero-scroll .dot::after {
  content: "";

  position: absolute;

  top: -34px;
  left: 0;

  width: 100%;
  height: 100%;

  background: #FFFFFF;

  animation: scrollLine 2.4s ease-in-out infinite;
}

@keyframes scrollLine {

  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(68px);
  }

}


/* ========================================
   SECTION 共通
======================================== */

section {
  padding: 130px 6vw;
}

.eyebrow {
  display: flex;

  align-items: center;

  gap: 14px;

  margin-bottom: 0;

  font-size: 12px;

  letter-spacing: 0.26em;

  color: var(--gold);
}

.eyebrow .line {
  width: 32px;
  height: 1px;

  background: var(--gold);
}

.section-head h2 {
  font-family: 'Shippori Mincho', serif;

  font-size: clamp(26px, 3vw, 38px);

  font-weight: 600;

  line-height: 1.7;

  margin-bottom: 8px;
}


/* ========================================
   画像付きストーリー
======================================== */

.story {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;

  align-items: center;

  padding: 100px 6vw;

  border-top: 1px solid var(--hair);
}

.story.reverse .story-media {
  order: 2;
}

.story.reverse .story-text {
  order: 1;
}

.story-media {
  position: relative;
}

.story-media img,
.story-media .ph {
  width: 100%;

  aspect-ratio: 4 / 3;

  object-fit: cover;

  filter: saturate(0.92) brightness(0.98);
}

.story-media .ph {
  display: flex;

  align-items: center;
  justify-content: center;

  padding: 20px;

  background:
    linear-gradient(
      135deg,
      #EFE7D8,
      #E2D6C0
    );

  color: var(--ink-soft);

  font-size: 13px;

  letter-spacing: 0.1em;

  text-align: center;
}

.story-media .frame {
  position: absolute;

  inset: 18px;

  border: 1px solid rgba(255, 255, 255, 0.55);

  pointer-events: none;
}

.story-index {
  margin-bottom: 4px;

  font-family: 'Shippori Mincho', serif;

  font-size: 13px;

  color: var(--gold);

  letter-spacing: 0.2em;
}

.story-text h3 {
  margin-bottom: 36px;

  font-family: 'Shippori Mincho', serif;

  font-size: clamp(22px, 2.4vw, 30px);

  font-weight: 600;

  line-height: 1.4;
}

.story-text p {
  max-width: 440px;

  color: var(--ink-soft);

  font-size: 14.5px;

  letter-spacing: 0.02em;
}


/* ========================================
   BUSINESS LINEUP
======================================== */

.lineup {
  padding: 130px 6vw;

  background: var(--paper);
}

.lineup .section-head {
  max-width: 900px;

  margin: 0 auto 80px;

  text-align: center;
}

.lineup .eyebrow {
  justify-content: center;
}

.lineup .section-head h2 {
  font-family: 'Shippori Mincho', serif;

  font-size: clamp(28px, 3vw, 38px);

  font-weight: 600;

  line-height: 1.6;

  letter-spacing: .08em;
}

.lineup-lead {
  margin-top: 18px;

  font-size: 14.5px;

  line-height: 2;

  letter-spacing: .03em;

  color: var(--ink-soft);
}


/* 3カラム */

.bl-grid {
  width: 100%;

  max-width: 1200px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 50px;
}

.bl-card {
  position: relative;

  padding: 38px 24px 34px;

  background: rgba(255, 255, 255, .42);

  border-top: 1px solid var(--gold-soft);

  border-bottom: 1px solid var(--hair);

  text-align: left;
}

.bl-card::before {
  content: "";

  position: absolute;

  top: -1px;
  left: 30px;

  width: 52px;
  height: 2px;

  background: var(--gold);
}

.bl-number {
  display: block;

  margin-bottom: 24px;

  text-align: center;

  font-family: 'Shippori Mincho', serif;

  font-size: 54px;

  font-weight: 400;

  line-height: 1;

  letter-spacing: .08em;

  color: rgba(184, 147, 95, .40);
}

.bl-card h3 {
  margin-bottom: 38px;

  font-family: 'Shippori Mincho', serif;

  font-size: 20px;

  font-weight: 600;

  line-height: 1.4;

  text-align: center;

  color: var(--ink);
}

.bl-card h3 span {
  display: block;

  margin-top: 4px;

  font-size: .9em;

  font-weight: 500;

  letter-spacing: .05em;

  color: var(--ink-soft);
}

.bl-card p {
  font-size: 14px;

  line-height: 2;

  letter-spacing: .01em;

  color: var(--ink-soft);
}


/* 表示切替 */

.sp-none {
  display: block;
}

.pc-none {
  display: none;
}


/* ========================================
   代表挨拶
======================================== */

.ceo {
  max-width: 1200px;

  margin: 0 auto;

  padding: 140px 0;

  display: grid;

  grid-template-columns: 600px 1fr;

  gap: 80px;

  align-items: center;

  background: var(--stone);
}

.ceo-photo {
  position: relative;

  display: flex;

  justify-content: center;
}

.ceo-photo img {
  width: 600px;
  height: 900px;

  object-fit: cover;

  object-position: center;

  display: block;

  border-radius: 10px;

  box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
}

.ceo-photo::before {
  content: "";

  position: absolute;

  top: -20px;
  left: -20px;

  width: 100%;

  max-width: 360px;

  aspect-ratio: 1 / 1;

  border: 1px solid var(--gold-soft);

  z-index: -1;
}

.ceo-quote {
  margin: 26px 0 34px;

  font-family: 'Shippori Mincho', serif;

  font-size: clamp(20px, 2.3vw, 27px);

  line-height: 2;

  font-weight: 500;

  color: var(--ink);
}

.ceo-body p {
  max-width: 560px;

  margin-bottom: 16px;

  color: var(--ink-soft);

  font-size: 14.5px;
}

.ceo-name {
  margin-top: 30px;

  display: flex;

  align-items: baseline;

  gap: 16px;
}

.ceo-name .role {
  font-size: 12px;

  letter-spacing: 0.14em;

  color: var(--ink-soft);
}

.ceo-name .name {
  font-family: 'Shippori Mincho', serif;

  font-size: 19px;

  font-weight: 600;

  letter-spacing: 0.06em;
}


/* ========================================
   会社概要
======================================== */

.about {
  padding: 140px 6vw;
}

.about-grid {
  margin-top: 60px;

  border-top: 1px solid var(--hair);
}

.about-row {
  display: grid;

  grid-template-columns: 220px 1fr;

  gap: 24px;

  padding: 26px 0;

  border-bottom: 1px solid var(--hair);
}

.about-row dt {
  font-size: 12.5px;

  letter-spacing: 0.14em;

  color: var(--gold);
}

.about-row dd {
  font-size: 14.5px;

  color: var(--ink-soft);

  letter-spacing: 0.02em;
}


/* ========================================
   フッター
======================================== */

footer {
  padding: 120px 6vw 40px;

  background: var(--ink);

  color: var(--paper);
}

.footer-top {
  display: grid;

  grid-template-columns: 1.3fr 1fr 1.4fr;

  gap: 60px;

  padding-bottom: 80px;

  border-bottom: 1px solid rgba(250, 247, 242, 0.15);
}

.footer-brand {
  position: relative;

  top: -10px;

  margin-bottom: 20px;

  font-family: 'Shippori Mincho', serif;

  font-size: 24px;

  letter-spacing: 0.1em;

  text-transform: none;
}

.footer-brand span {
  margin-left: 10px;

  color: var(--gold-soft);
}

.footer-desc {
  max-width: 400px;

  font-size: 13.5px;

  color: rgba(250, 247, 242, 0.6);
}

.footer-col h4 {
  margin-bottom: 22px;

  font-size: 12px;

  letter-spacing: 0.16em;

  color: var(--gold-soft);
}

.footer-col a,
.footer-col p {
  display: block;

  margin-bottom: 12px;

  font-size: 13.5px;

  color: rgba(250, 247, 242, 0.75);
}

.footer-col a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  display: flex;

  justify-content: space-between;

  align-items: center;

  padding-top: 32px;

  font-size: 11.5px;

  color: rgba(250, 247, 242, 0.4);

  letter-spacing: 0.04em;
}


/* ========================================
   お問い合わせページ
======================================== */

.contact-page {
  background: var(--paper);
}


/* ページ見出し */

.contact-hero {
  min-height: 430px;

  padding: 170px 6vw 90px;

  display: flex;

  align-items: center;

  background:
    linear-gradient(
      rgba(42, 38, 32, .08),
      rgba(42, 38, 32, .08)
    ),
    url("images/myestate_roots.jpg") center / cover no-repeat;

  color: #FFFFFF;
}

.contact-hero-inner {
  width: 100%;

  max-width: 1200px;

  margin: 0 auto;
}

.contact-hero-inner > * {
  max-width: 520px;
}

.contact-hero .eyebrow {
  color: var(--gold-soft);
}

.contact-hero .eyebrow .line {
  background: var(--gold-soft);
}

.contact-hero h1 {
  margin-bottom: 18px;

  font-size: clamp(34px, 5vw, 56px);

  font-weight: 600;

  line-height: 1.5;

  letter-spacing: .08em;

  text-shadow:
    0 2px 8px rgba(0, 0, 0, .55),
    0 4px 20px rgba(0, 0, 0, .35);
}

.contact-hero p {
  font-size: 14.5px;

  line-height: 2;

  color: rgba(255, 255, 255, .95);

  text-shadow:
    0 1px 4px rgba(0, 0, 0, .75),
    0 2px 10px rgba(0, 0, 0, .45);
}


/* お問い合わせ本文 */

.contact-main {
  padding: 120px 6vw;
}

.contact-container {
  width: 100%;

  max-width: 1000px;

  margin: 0 auto;
}

.contact-intro {
  margin-bottom: 60px;

  text-align: center;
}

.contact-intro h2 {
  margin-bottom: 24px;

  font-size: clamp(24px, 3vw, 34px);

  font-weight: 600;

  line-height: 1.8;
}

.contact-intro p {
  font-size: 14.5px;

  color: var(--ink-soft);
}

.contact-note {
  margin-top: 16px;

  font-size: 12px !important;
}


/* Snow Monkey Forms仮枠 */

.contact-form-area {
  padding: 60px;

  background: #FFFFFF;

  border: 1px solid var(--hair);

  box-shadow: 0 12px 35px rgba(42, 38, 32, .05);
}

.form-placeholder {
  min-height: 400px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  padding: 20px;

  text-align: center;

  border: 1px dashed var(--gold-soft);

  background: var(--paper);

  color: var(--ink-soft);
}

.form-placeholder-title {
  margin-bottom: 14px;

  font-size: 24px;

  color: var(--ink);
}


/* 電話 */

.contact-information {
  padding: 100px 6vw;

  background: var(--stone);

  text-align: center;
}

.contact-information-inner {
  max-width: 800px;

  margin: 0 auto;
}

.contact-information .eyebrow {
  justify-content: center;
}

.contact-information h2 {
  margin-bottom: 24px;

  font-size: clamp(23px, 3vw, 32px);

  font-weight: 600;
}

.contact-tel {
  display: inline-block;

  margin-bottom: 18px;

  font-family: 'Shippori Mincho', serif;

  font-size: clamp(32px, 5vw, 48px);

  letter-spacing: .08em;

  color: var(--gold);
}

.contact-information p {
  font-size: 14px;

  color: var(--ink-soft);
}


/* ========================================
   PRIVACY POLICY
======================================== */

.policy-main {
  width: 100%;

  max-width: 900px;

  margin: 0 auto;

  padding: 160px 6vw 100px;
}

.policy-main > section {
  width: 100%;

  padding: 0;
}

.page-hero {
  width: 100%;

  margin-bottom: 70px;

  text-align: center;
}

.page-subtitle {
  margin-bottom: 14px;

  font-size: .9rem;

  letter-spacing: .3em;

  color: var(--gold);

  white-space: nowrap;
}

.page-hero h1 {
  width: 100%;

  font-family: 'Shippori Mincho', serif;

  font-size: clamp(28px, 4vw, 40px);

  font-weight: 500;

  line-height: 1.6;

  letter-spacing: .08em;

  white-space: nowrap;

  writing-mode: horizontal-tb;
}

.policy-content h2 {
  margin: 50px 0 18px;

  font-family: 'Shippori Mincho', serif;

  font-size: 1.35rem;

  font-weight: 600;

  color: var(--ink);
}

.policy-content p,
.policy-content li {
  line-height: 2;

  color: var(--ink-soft);
}

.policy-content ul {
  padding-left: 1.5rem;

  margin: 20px 0;
}

.policy-date {
  margin-top: 60px;

  text-align: right;

  color: var(--ink-soft);
}

.policy-contact {
  margin-top: 24px;
}


/* ========================================
   スマホメニュー
======================================== */

.nav-menu-checkbox {
  position: absolute;

  opacity: 0;

  pointer-events: none;
}


/* ========================================
   大型モニター
======================================== */

@media (min-width: 1600px) {

  .nav,
  section,
  footer {
    padding-left: calc((100vw - 1600px) / 2 + 6vw);
    padding-right: calc((100vw - 1600px) / 2 + 6vw);
  }

}


/* ========================================
   PCレイアウト
======================================== */

@media (min-width: 901px) {

  /* 共通コンテンツ幅 */

  .story,
  .about {
    max-width: 1200px;

    margin-left: auto;
    margin-right: auto;
  }


  /* ストーリー */

  .story {
    grid-template-columns:
      minmax(0, 1.15fr)
      minmax(360px, .85fr);

    gap: 90px;

    padding: 110px 40px;
  }

  .story.reverse {
    grid-template-columns:
      minmax(360px, .85fr)
      minmax(0, 1.15fr);
  }

  .story-media img,
  .story-media .ph {
    max-height: 560px;
  }

  .story-text {
    max-width: 460px;
  }


  /* 代表挨拶 */

  .ceo {
    width: calc(100% - 80px);

    max-width: 1120px;

    grid-template-columns:
      360px
      minmax(0, 1fr);

    gap: 75px;

    padding: 80px 75px;

    margin: 40px auto 100px;

    align-items: center;
  }

  .ceo-photo {
    width: 100%;

    justify-content: flex-start;
  }

  .ceo-photo img {
    width: 100%;

    height: auto;

    aspect-ratio: 2 / 3;

    object-fit: cover;

    object-position: center;

    border-radius: 0;

    box-shadow:
      0 12px 28px rgba(42, 38, 32, .10);
  }

  .ceo-photo::before {
    top: -18px;

    left: -18px;

    width: 100%;

    max-width: none;

    height: 100%;

    aspect-ratio: auto;

    border: 1px solid var(--gold-soft);
  }

  .ceo-quote {
    margin: 18px 0 26px;

    font-size: clamp(19px, 1.7vw, 25px);
  }

  .ceo-body p {
    max-width: 560px;

    font-size: 13.5px;

    line-height: 1.9;
  }

  .ceo-name {
    margin-top: 24px;
  }


  /* 会社概要 */

  .about {
    padding: 60px 40px 120px;
  }

  .about-grid {
    margin-top: 36px;
  }

  .about-row {
    grid-template-columns: 180px 1fr;

    padding: 18px 0;
  }


  /* フッター */

  footer {
    padding-top: 85px;
  }

  .footer-top {
    padding-bottom: 55px;
  }

}


/* ========================================
   タブレット
======================================== */

@media (max-width: 1000px) {

  .bl-grid {
    gap: 28px;
  }

  .bl-card {
    padding: 32px 24px;
  }

  .bl-card h3 {
    font-size: 18px;
  }

  .bl-card p br {
    display: none;
  }

}


/* ========================================
   スマートフォン
======================================== */

@media (max-width: 900px) {

  section {
    padding: 90px 6vw;
  }


  /* ナビ */

  .nav-toggle {
    position: relative;

    z-index: 103;

    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 6px;

    width: 34px;
    height: 34px;

    border: 0;

    cursor: pointer;
  }

  .nav-toggle span {
    display: block;

    width: 24px;
    height: 1.5px;

    background: currentColor;

    transition:
      transform .35s ease,
      opacity .25s ease;
  }

  .nav-links {
    position: fixed;

    inset: 0;

    z-index: 102;

    width: 100%;

    min-height: 100vh;
    min-height: 100svh;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 30px;

    background: rgba(42, 38, 32, .97);

    color: var(--paper);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transform: translateX(100%);

    transition:
      transform .4s ease,
      opacity .35s ease,
      visibility .35s ease;
  }

  .nav-links a {
    font-family: 'Shippori Mincho', serif;

    font-size: 22px;

    letter-spacing: .12em;
  }


  /* メニューOPEN */

  .nav-menu-checkbox:checked ~ .nav-links {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform: translateX(0);
  }


  /* 三本線 → × */

  .nav-menu-checkbox:checked + .nav-toggle span:nth-child(1) {
    transform:
      translateY(7.5px)
      rotate(45deg);
  }

  .nav-menu-checkbox:checked + .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-menu-checkbox:checked + .nav-toggle span:nth-child(3) {
    transform:
      translateY(-7.5px)
      rotate(-45deg);
  }


  /* ヒーロー */

  .hero {
    min-height: 100svh;
  }

  .hero-scene {
    object-fit: cover;

    object-position: center;
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero-sub {
    font-size: 13px;

    line-height: 2;

    letter-spacing: 0;
  }

  .hero-sub span {
    display: block;

    white-space: nowrap;
  }


  /* ストーリー */

  .story,
  .ceo {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .story.reverse .story-media,
  .story.reverse .story-text {
    order: 0;
  }


  /* 代表 */

  section.ceo {
    padding: 80px 28px !important;
  }

  .ceo-photo img {
    width: 100%;

    height: auto;

    max-height: 100vw;

    min-height: 280px;

    object-fit: cover;

    object-position: center 30%;
  }


  /* 会社概要 */

  .about-row {
    grid-template-columns: 1fr;

    gap: 6px;
  }


  /* フッター */

  .footer-top {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .footer-col p {
    white-space: normal;
  }


  /* お問い合わせ */

  .contact-hero {
    min-height: 360px;

    padding: 140px 6vw 70px;
  }

  .contact-main {
    padding: 80px 6vw;
  }

  .contact-intro {
    margin-bottom: 40px;

    text-align: left;
  }

  .contact-intro h2 br {
    display: none;
  }

  .contact-form-area {
    padding: 20px;
  }

  .form-placeholder {
    min-height: 320px;

    padding: 30px 20px;
  }

  .contact-information {
    padding: 75px 6vw;
  }


  /* Privacy Policy */

  .policy-main {
    padding: 130px 6vw 80px;
  }

  .page-hero {
    margin-bottom: 50px;
  }

  .page-hero h1 {
    font-size: 28px;

    white-space: normal;
  }

  .policy-content h2 {
    font-size: 1.2rem;

    line-height: 1.7;
  }

}


/* ========================================
   スマートフォン小サイズ
======================================== */

@media (max-width: 700px) {

  .sp-none {
    display: none;
  }

  .pc-none {
    display: block;
  }


  /* BUSINESS LINEUP */

  .lineup {
    padding: 90px 6vw;
  }

  .lineup .section-head {
    margin-bottom: 55px;

    text-align: center;
  }

  .lineup .eyebrow {
    justify-content: center;
  }

  .lineup .section-head h2 {
    font-size: 28px;
  }

  .lineup-lead {
    font-size: 14px;
  }

  .bl-grid {
    grid-template-columns: 1fr;

    gap: 34px;
  }

  .bl-card {
    padding: 32px 26px 34px;
  }

  .bl-number {
    font-size: 46px;
  }

  .bl-card h3 {
    min-height: auto;

    margin-bottom: 16px;

    font-size: 19px;
  }

  .bl-card p {
    font-size: 13.5px;
  }

}

/* ========================================
   Snow Monkey Forms
======================================== */

.contact-form-area {
  padding: 70px 65px;

  background: #fff;

  border: 1px solid var(--hair);

  box-shadow: 0 18px 50px rgba(42, 38, 32, .06);
}


/* フォーム全体 */

.contact-form-area .snow-monkey-form {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}


/* 各入力項目
   すべて同じ間隔に統一 */

.contact-form-area .smf-item {
  margin: 0 0 36px !important;
}

.contact-form-area .smf-item:last-of-type {
  margin-bottom: 0 !important;
}


/* ラベル */

.contact-form-area .smf-item__label {
  display: block;

  margin: 0 0 10px !important;

  font-family: 'Shippori Mincho', serif;
  font-size: 15px;
  font-weight: 600;

  line-height: 1.5;

  letter-spacing: .05em;

  color: var(--ink);
}


/* 入力部分 */

.contact-form-area .smf-item__controls {
  margin: 0 !important;
  padding: 0 !important;
}


/* 入力欄共通 */

.contact-form-area input[type="text"],
.contact-form-area input[type="email"],
.contact-form-area input[type="tel"],
.contact-form-area textarea {

  display: block;

  width: 100%;

  margin: 0 !important;

  padding: 15px 16px;

  border: 1px solid var(--hair);

  border-radius: 0;

  background: #FCFAF7;

  color: var(--ink);

  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;

  outline: none;

  transition:
    border-color .25s ease,
    background .25s ease,
    box-shadow .25s ease;
}


/* 一行入力欄の高さも統一 */

.contact-form-area input[type="text"],
.contact-form-area input[type="email"],
.contact-form-area input[type="tel"] {
  min-height: 52px;
}


/* フォーカス */

.contact-form-area input[type="text"]:focus,
.contact-form-area input[type="email"]:focus,
.contact-form-area input[type="tel"]:focus,
.contact-form-area textarea:focus {

  border-color: var(--gold);

  background: #fff;

  box-shadow: 0 0 0 2px rgba(184, 147, 95, .08);
}


/* メッセージ欄 */

.contact-form-area textarea {
  min-height: 180px;

  resize: vertical;

  line-height: 1.8;
}


/* 必須表示 */

.contact-form-area .smf-item__label__required {
  margin-left: 8px;

  padding: 2px 6px;

  background: transparent;

  border: 1px solid var(--gold);

  color: var(--gold);

  font-size: 10px;
  font-weight: 500;

  letter-spacing: .05em;
}


/* エラー */

.contact-form-area .smf-error-messages {
  margin-top: 8px;

  font-size: 12px;
}


/* ========================================
   送信ボタン
======================================== */

.contact-form-area .smf-action {
  margin-top: 50px;

  text-align: center;
}

.contact-form-area button,
.contact-form-area input[type="submit"] {

  min-width: 240px;

  padding: 16px 42px;

  border: 1px solid var(--ink);

  border-radius: 0;

  background: var(--ink);

  color: #fff;

  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;

  letter-spacing: .14em;

  cursor: pointer;

  transition:
    background .3s ease,
    color .3s ease,
    border-color .3s ease,
    transform .2s ease;
}

.contact-form-area button:hover,
.contact-form-area input[type="submit"]:hover {

  background: var(--gold);

  border-color: var(--gold);

  transform: translateY(-1px);
}


/* ========================================
   Snow Monkey Forms スマホ
======================================== */

@media (max-width: 900px) {

  .contact-form-area {
    padding: 38px 24px;
  }

  .contact-form-area .smf-item {
    margin-bottom: 30px !important;
  }

  .contact-form-area .smf-action {
    margin-top: 40px;
  }

  .contact-form-area button,
  .contact-form-area input[type="submit"] {
    width: 100%;
    min-width: 0;
  }

}
