@charset "UTF-8";


/* =========================================================
   ROOT
========================================================= */

:root {
  --color-orange: #ed671c;
  --color-orange-dark: #df5219;

  --color-cream: #fffaf2;
  --color-beige: #f8efe3;

  --color-text: #342a24;
  --color-text-light: #665b54;

  --header-height: 92px;

  --content-width: 1680px;
  --header-width: 1980px;

  --font-main:
    "Noto Sans JP",
    sans-serif;

  --font-round:
    "Zen Maru Gothic",
    sans-serif;

  --font-hand:
    "Klee One",
    serif;
}


/* =========================================================
   RESET / BASE
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {
  margin: 0;

  color: var(--color-text);

  background: #fffdf9;

  font-family: var(--font-main);

  font-size: 16px;

  line-height: 1.8;

  -webkit-font-smoothing: antialiased;
}


img {
  display: block;

  max-width: 100%;

  height: auto;
}


a {
  color: inherit;

  text-decoration: none;
}


button {
  font: inherit;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: relative;

  z-index: 1000;

  width: 100%;

  background: rgba(255, 253, 249, 0.95);

  backdrop-filter: blur(12px);
}


.site-header__inner {
  display: flex;

  align-items: center;

  width: min(
    calc(100% - 80px),
    var(--header-width)
  );

  min-height: var(--header-height);

  margin-inline: auto;
}


/* LOGO
--------------------------------------------------------- */

.site-header__logo {
  flex-shrink: 0;
}


.site-header__logo-link {
  display: block;
}


.site-header__logo img {
  width: clamp(
    140px,
    10vw,
    190px
  );
}


/* NAVIGATION
--------------------------------------------------------- */

.global-nav {
  margin-left: auto;
}


.global-nav__list {
  display: flex;

  align-items: center;

  gap: clamp(
    24px,
    2.7vw,
    54px
  );

  margin: 0;

  padding: 0;

  list-style: none;
}


.global-nav__list a {
  position: relative;

  display: inline-flex;

  align-items: center;

  min-height: 44px;

  font-family: var(--font-round);

  font-size: 0.9rem;

  font-weight: 700;

  letter-spacing: 0.04em;
}


.global-nav__list a::after {
  content: "";

  position: absolute;

  right: 0;

  bottom: 2px;

  left: 0;

  height: 2px;

  background: var(--color-orange);

  transform: scaleX(0);

  transform-origin: right center;

  transition:
    transform 0.35s ease;
}


.global-nav__list a:hover::after {
  transform: scaleX(1);

  transform-origin: left center;
}


/* HEADER CTA
--------------------------------------------------------- */

.site-header__cta {
  margin-left: clamp(
    24px,
    3vw,
    56px
  );
}


/* =========================================================
   BUTTON
========================================================= */

.c-button {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 18px;

  min-height: 58px;

  padding:
    12px
    28px;

  border-radius: 9999px;

  font-family: var(--font-round);

  font-size: 0.92rem;

  font-weight: 700;

  letter-spacing: 0.03em;

  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}


.c-button:hover {
  transform: translateY(-3px);
}


.c-button__arrow {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  transition:
    transform 0.3s ease;
}


.c-button:hover .c-button__arrow {
  transform: translateX(5px);
}


.c-button--header,
.c-button--primary {
  color: #fff;

  background:
    var(--color-orange);

  box-shadow:
    0 10px 25px
    rgba(237, 103, 28, 0.18);
}


.c-button--header {
  min-height: 50px;

  padding:
    10px
    24px;

  font-size: 0.84rem;
}


.c-button--outline {
  color: var(--color-text);

  border:
    2px solid
    var(--color-orange);

  background:
    rgba(255, 255, 255, 0.8);
}


/* =========================================================
   MENU BUTTON
========================================================= */

.menu-button {
  display: none;

  position: relative;

  width: 52px;

  height: 52px;

  margin-left: auto;

  padding: 0;

  border: 0;

  border-radius: 50%;

  background:
    var(--color-orange);

  cursor: pointer;
}


.menu-button span {
  position: absolute;

  left: 50%;

  width: 22px;

  height: 2px;

  border-radius: 2px;

  background: #fff;

  transform:
    translateX(-50%);

  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}


.menu-button span:nth-child(1) {
  top: 18px;
}


.menu-button span:nth-child(2) {
  top: 25px;
}


.menu-button span:nth-child(3) {
  top: 32px;
}


.menu-button.is-active span:nth-child(1) {
  top: 25px;

  transform:
    translateX(-50%)
    rotate(45deg);
}


.menu-button.is-active span:nth-child(2) {
  opacity: 0;
}


.menu-button.is-active span:nth-child(3) {
  top: 25px;

  transform:
    translateX(-50%)
    rotate(-45deg);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
  display: none;
}


/* =========================================================
   HERO
========================================================= */

.p-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  width: 100%;
  min-height: 760px;

  padding:
    clamp(40px, 4vw, 72px)
    clamp(32px, 4vw, 72px)
    clamp(50px, 5vw, 90px);

  background:
    linear-gradient(
      135deg,
      #fbf1e4 0%,
      #fffaf2 45%,
      #fffdf8 70%,
      #f8ead8 100%
    );
}
.p-hero::before {
  content: "";
  position: absolute;
  z-index: 1;

  top: -78px;
  left: -8%;

  width: 116%;
  height: 125px;

  /* 白ではなくheaderと同じ色 */
  background: #fffaf2;

  border-radius:
    42% 58% 48% 52%
    /
    0 0 100% 100%;

  transform: rotate(-0.6deg);

  pointer-events: none;
}

.p-hero::after {
  content: "";
  position: absolute;
  z-index: 1;

  bottom: -76px;
  left: -7%;

  width: 114%;
  height: 120px;

  background: #fff;

  border-radius:
    54% 46% 58% 42%
    /
    100% 100% 0 0;

  transform: rotate(0.5deg);

  pointer-events: none;
}

.p-hero__inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(380px, 520px) minmax(520px, 1fr);
  align-items: center;
  gap: clamp(32px, 4vw, 84px);
  width: min(100%, 1400px);
  margin-inline: auto;
}

.p-hero__content {
  position: relative;
  z-index: 20;
  max-width: 520px;
  padding-left: 70px;
}

.p-hero__title {
  margin: 0;
  color: #352a24;
  font-family: "Klee One", serif;
  font-size: clamp(3rem, 4.4vw, 5.25rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.p-hero__title-line {
  display: block;
}

.p-hero__title-accent {
  color: #eb6421;
}

.p-hero__lead {
  margin: 28px 0 0;
  color: #4f4640;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.03em;
}

.p-hero__buttons {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.p-hero__buttons .c-button {
  min-width: 210px;
  width: auto;
  min-height: 54px;
  padding: 12px 22px;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 9999px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.c-button:hover {
  transform: translateY(-3px);
}

.c-button--primary {
  color: #fff;
  background: #ec651e;
  box-shadow: 0 10px 30px rgba(236, 101, 30, 0.18);
}

.c-button--outline {
  color: #342b25;
  border: 2px solid #ec651e;
  background: rgba(255, 255, 255, 0.8);
}

.c-button__arrow {
  transition: transform 0.3s ease;
}

.c-button:hover .c-button__arrow {
  transform: translateX(5px);
}


/* =========================================================
   VISUAL
========================================================= */

.p-hero__visual-area {
  position: relative;
  width: 100%;
  min-height: 520px;
}

.p-hero__photo-mask {
  position: absolute;
  z-index: 5;
  top: -10%;
  right: 0;
  width: 110%;
  height: 110%;
  overflow: hidden;
  border-radius: 46% 54% 45% 55% / 42% 42% 58% 58%;
  background: #e9e9e9;
}

.p-hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.p-hero-slider__item {
  position: absolute;
  inset: 0;
  z-index: 1;

  margin: 0;

  opacity: 0;

  transform: scale(1.04);

  transition:
    opacity 1.5s ease,
    transform 7s ease;
}

.p-hero-slider__item.is-active {
  z-index: 2;

  opacity: 1;

  transform: scale(1);
}

.p-hero-slider__item img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* =========================================================
   DECORATION
========================================================= */


.p-hero__deco {
  position: absolute;
  display: block;
  max-width: none;
  height: auto;
  pointer-events: none;
  user-select: none;
}

/* ① 左上オレンジ */
.p-hero__deco--orange-left {
  z-index: 3;
  top: 4%;
  left: -4.2%;
  width: clamp(170px, 14vw, 300px);
}

/* ② 上の葉っぱ */
.p-hero__deco--leaf-top {
  z-index: 30;
  top: 2.5%;
  left: 44%;
  width: clamp(130px, 9vw, 210px);
  transform: translateX(-50%);
}

/* ③ 右上オレンジ */
.p-hero__deco--orange-right {
  z-index: 3;
  top: 2%;
  right: -4%;
  width: clamp(170px, 12vw, 260px);
}

/* ⑤⑥⑦ 統合画像 */
.p-hero__deco--bottom-right {
  z-index: 12;
  right: -10%;
  bottom: -10%;
  width: clamp(420px, 38vw, 680px);
}

/* ④ 左下植物 */
.p-hero__deco--plant-left {
  z-index: 30;
  left: 1.8%;
  bottom: 3.8%;
  width: clamp(88px, 6vw, 135px);
}

/* =========================================================
   TABLET
   1024px
========================================================= */

@media (max-width: 1024px) {

  :root {
    --header-height: 80px;
  }


  .site-header__inner {
    width:
      calc(100% - 40px);
  }


  .global-nav,
  .site-header__cta {
    display: none;
  }


  .menu-button {
    display: block;
  }


  .hero {
    padding:
      70px
      30px
      120px;
  }


  .hero__inner {
    grid-template-columns:
      minmax(0, 0.9fr)
      minmax(0, 1.1fr);

    min-height: 650px;
  }


  .hero__content {
    padding-left: 0;
  }


}


/* =========================================================
   MOBILE MENU OPEN
========================================================= */

@media (max-width: 1024px) {
  .p-hero {
    min-height: 720px;
    padding: 80px 30px 110px;
  }

  .p-hero__inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 45px;
  }

  .p-hero__visual-area {
    min-height: 560px;
  }

  .p-hero__deco--leaf-top {
    left: 46%;
  }

  .p-hero__deco--bottom-right {
    width: clamp(300px, 44vw, 620px);
    right: -4%;
    bottom: 0;
  }
}

@media (max-width: 768px) {
  .p-hero {
    min-height: auto;
    padding: 55px 20px 100px;
  }

  .p-hero__inner {
    display: flex;
    flex-direction: column;
    gap: 55px;
  }

  .p-hero__content {
    width: 100%;
  }

  .p-hero__title {
    font-size: clamp(2.8rem, 11vw, 4.5rem);
    line-height: 1.45;
  }


  .p-hero__lead {
    font-size: 0.94rem;
  }

  .p-hero__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .p-hero__buttons .c-button {
    width: 100%;
  }

  .p-hero__visual-area {
    width: 100%;
    min-height: 430px;
  }

  .p-hero__photo-mask {
    top: 2%;
    left: 50%;
    width: 96%;
    height: 87%;
    transform: translateX(-50%);
  }

  .p-hero__deco--orange-left {
    top: 3%;
    left: -35px;
    width: 110px;
  }

  .p-hero__deco--orange-right {
    top: 48%;
    right: -35px;
    width: 105px;
  }

  .p-hero__deco--leaf-top {
    top: 46%;
    left: auto;
    right: 4%;
    width: 90px;
    transform: none;
  }

  .p-hero__deco--plant-left {
    left: -15px;
    bottom: 2%;
    width: 80px;
  }

  .p-hero__deco--bottom-right {
    right: -10%;
    bottom: -1%;
    width: 115%;
    max-width: 520px;
  }
}

/* =========================================================
   MAIN BACKGROUND PREVIEW
   クライアント確認用
========================================================= */

/*
 * 通常セクションは .site-main の背景色を継承します。
 * HEROだけは上下の波形を見せるため、
 * 周囲の背景色とごくわずかに差を付けています。
 */
.site-main,
.p-hero,
.p-about-michimaru {
  transition:
    background-color 0.4s ease,
    background 0.4s ease;
}


/* =========================================================
   A：白背景
========================================================= */

/* main全体 */
body.is-main-white .site-main {
  background: #ffffff;
}

/*
 * HERO本体
 * 完全な白だと上下の波が消えるため、
 * ごく薄いアイボリーにしています。
 */
body.is-main-white .p-hero {
  background:
    linear-gradient(
      135deg,
      #fffaf5 0%,
      #fffdf9 48%,
      #fffaf3 100%
    );
}

/* 「みちまるとは」はmain背景をそのまま見せる */
body.is-main-white .p-about-michimaru {
  background: transparent;
}

/*
 * HERO上側の波
 * headerと同じ生成り色
 */
body.is-main-white .p-hero::before {
  background: #fffaf2;
}

/*
 * HERO下側の波
 * 次sectionの白背景につなぐ
 */
body.is-main-white .p-hero::after {
  background: #ffffff;
}


/* =========================================================
   B：ヘッダー色背景
========================================================= */

/* main全体 */
body.is-main-cream .site-main {
  background: #fffaf2;
}

/*
 * HERO本体
 * mainと同色にすると上下の波が消えるため、
 * ほんの少し濃いクリーム色にします。
 */
body.is-main-cream .p-hero {
  background:
    linear-gradient(
      135deg,
      #f9ecdc 0%,
      #fbf3e8 48%,
      #f8ead8 100%
    );
}

/* 「みちまるとは」はmain背景をそのまま見せる */
body.is-main-cream .p-about-michimaru {
  background: transparent;
}

/*
 * HERO上側の波
 * headerと同じ色
 */
body.is-main-cream .p-hero::before {
  background: #fffaf2;
}

/*
 * HERO下側の波
 * 次sectionの背景色と同じ
 */
body.is-main-cream .p-hero::after {
  background: #fffaf2;
}


/* =========================================================
   COMMON SECTION TITLE
   今後すべてのH2タイトルで共通使用
========================================================= */

.c-section-title {
  position: relative;

  width: fit-content;

  margin:
    0
    auto
    clamp(70px, 6vw, 110px);

  text-align: center;
}


/* 小さな英字 */
.c-section-title__en {
  margin: 0 0 10px;

  color: var(--color-orange);

  font-family:
    var(--font-main);

  font-size:
    0.72rem;

  font-weight: 700;

  line-height: 1.5;

  letter-spacing: 0.18em;

  text-transform: uppercase;
}


/* H2日本語 */
.c-section-title__ja {
  position: relative;

  z-index: 2;

  margin: 0;

  color:
    var(--color-text);

  font-family:
    var(--font-round);

  font-size:
    clamp(
      2rem,
      3vw,
      3.25rem
    );

  font-weight: 700;

  line-height: 1.45;

  letter-spacing: 0.08em;
}


/* 手描き風の下線 */
.c-section-title__line {
  position: absolute;

  z-index: 1;

  left: 50%;

  bottom: -12px;

  width:
    clamp(
      100px,
      10vw,
      170px
    );

  height: 13px;

  border-radius:
    50%;

  background:
    rgba(
      237,
      103,
      28,
      0.14
    );

  transform:

    translateX(-50%)
    rotate(-2deg);
}

/* =========================================================
   ABOUT MICHIMARU
   みちまるって何？
========================================================= */

.p-about-michimaru {
  position: relative;
  overflow: hidden;

margin: 80px auto;

  /* 背景色は .site-main を継承 */
  background: transparent;
}


/* =========================================================
   INNER
========================================================= */

.p-about-michimaru__inner {
  position: relative;

  width: min(100%, 1500px);

  margin-inline: auto;
}


/* =========================================================
   CARD WRAPPER
========================================================= */

.p-about-michimaru__cards {
  position: relative;

  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap:
    clamp(32px, 3.2vw, 56px);

  align-items: stretch;
}


/* =========================================================
   CARD
========================================================= */

.p-about-card {
  position: relative;

  display: grid;

  grid-template-columns:
    200px
    minmax(0, 1fr);

  align-items: center;

  padding:14px;

  isolation: isolate;
}


/* =========================================================
   和紙カード背景
========================================================= */

.p-about-card::before {
  content: "";

  position: absolute;

  z-index: -2;

  inset: 0;

  
  background-size:
    8px 8px,
    13px 13px,
    17px 17px,
    11px 11px;

  box-shadow:
    0 18px 45px
    rgba(74, 57, 43, 0.055);

  transition:
    transform 0.6s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    ),
    box-shadow 0.6s ease;
}


/* =========================================================
   和紙のざらっとした枠
========================================================= */

.p-about-card::after {
  content: "";

  position: absolute;

  z-index: -1;

  inset: 6px;

  border:
    1px solid
    rgba(105, 79, 57, 0.16);

  pointer-events: none;

  opacity: 0.85;
}


/* =========================================================
   CARD 01
   暮らしから始まる
========================================================= */

.p-about-card--life {
  transform:
    rotate(-0.45deg);
}

.p-about-card--life::before {
  border-radius:
    31% 17% 28% 13%
    /
    19% 31% 15% 29%;

  background-color:
    #fff4dd;
}

.p-about-card--life::after {
  border-radius:
    33% 15% 30% 12%
    /
    21% 33% 17% 31%;
}


/* =========================================================
   CARD 02
   地域にめぐる
========================================================= */

.p-about-card--region {
  transform:
    translateY(16px)
    rotate(0.5deg);
}

.p-about-card--region::before {
  border-radius:
    17% 34% 19% 30%
    /
    32% 17% 36% 20%;

  background-color:
    #edf5e5;
}

.p-about-card--region::after {
  border-radius:
    15% 36% 17% 32%
    /
    34% 15% 38% 18%;
}


/* =========================================================
   CARD 03
   未来につなげる
========================================================= */

.p-about-card--future {
  transform:
    rotate(-0.3deg);
}

.p-about-card--future::before {
  border-radius:
    35% 18% 14% 30%
    /
    16% 27% 35% 21%;

  background-color:
    #fff0e9;
}

.p-about-card--future::after {
  border-radius:
    37% 16% 16% 32%
    /
    18% 29% 37% 19%;
}


/* =========================================================
   IMAGE
========================================================= */

.p-about-card__visual {
  position: relative;

  z-index: 2;

  display: flex;

  align-items: center;

  justify-content: center;
}


.p-about-card__visual img {
  display: block;

  width: 100%;

  height: auto;

  margin-inline: auto;

  filter:
    drop-shadow(
      0 10px 18px
      rgba(67, 49, 35, 0.07)
    );

  transition:
    transform 0.7s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    );
}


/* =========================================================
   TEXT
========================================================= */

.p-about-card__content {
  position: relative;

  z-index: 2;
}


.p-about-card__title {
  margin:
    0
    0
    14px;

  color:
    var(--color-text);

  font-family:
    var(--font-round);

  font-size:
    clamp(
      1rem,
      1.15vw,
      1.28rem
    );

  font-weight: 700;

  line-height: 1.7;

  letter-spacing:
    0.05em;
}


.p-about-card__text {
  margin: 0;

  color:
    var(--color-text-light);

  font-size:
    clamp(
      0.84rem,
      0.88vw,
      0.95rem
    );

  font-weight: 500;

  line-height: 2;

  letter-spacing:
    0.03em;
}


/* =========================================================
   CARD間 DECORATION
   中央カードと右カードの間
========================================================= */

.p-about-michimaru__deco-between {
  position: absolute;

  z-index: 20;

  top: 42%;

  left: 67%;

  width:
    clamp(
      90px,
      7vw,
      135px
    );

  max-width: none;

  height: auto;

  transform:
    translate(-50%, -50%)
    rotate(5deg);

  pointer-events: none;

  user-select: none;

  filter:
    drop-shadow(
      0 12px 20px
      rgba(71, 51, 37, 0.08)
    );
}


/* =========================================================
   HOVER
========================================================= */

@media (hover: hover) {

  .p-about-card:hover::before {
    transform:
      translateY(-6px)
      scale(1.012);

    box-shadow:
      0 26px 58px
      rgba(74, 57, 43, 0.085);
  }


  .p-about-card:hover
  .p-about-card__visual img {
    transform:
      translateY(-8px)
      rotate(-1deg)
      scale(1.02);
  }

}


/* =========================================================
   COMMON REVEAL ANIMATION
========================================================= */

.js-reveal {
  opacity: 0;

  transform:
    translateY(35px);

  transition:
    opacity 0.9s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    ),
    transform 0.9s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    );
}


.js-reveal.is-visible {
  opacity: 1;

  transform:
    translateY(0);
}


/* 装飾画像だけ少し柔らかく出す */
.p-about-michimaru__deco-between.js-reveal {
  opacity: 0;

  transform:
    translate(-50%, -42%)
    rotate(10deg)
    scale(0.92);
}


.p-about-michimaru__deco-between.js-reveal.is-visible {
  opacity: 1;

  transform:
    translate(-50%, -50%)
    rotate(5deg)
    scale(1);
}


/* =========================================================
   TABLET
   1024px
========================================================= */

@media (max-width: 1024px) {

  .p-about-michimaru {
    padding:
      140px
      30px;
  }


  .p-about-michimaru__cards {
    gap:
      24px;
  }


  .p-about-card {
    grid-template-columns:
      1fr;

    align-content:
      center;

    min-height:
      290px;

    padding:
      34px
      24px;

    text-align:
      center;
  }


  .p-about-card--region {
    transform:
      translateY(10px)
      rotate(0.35deg);
  }


  .p-about-card__visual img {
    max-width:
      160px;
  }


  .p-about-card__title {
    margin-bottom:
      12px;

    font-size:
      1.08rem;
  }


  .p-about-card__text {
    font-size:
      0.88rem;

    line-height:
      1.95;
  }


  .p-about-michimaru__deco-between {
    top:
      42%;

    left:
      67%;

    width:
      82px;
  }

}


/* =========================================================
   SMARTPHONE
   768px
========================================================= */

@media (max-width: 768px) {

  .p-about-michimaru {
    padding:
      110px
      20px;
  }


  .c-section-title {
    margin-bottom:
      70px;
  }


  .p-about-michimaru__cards {
    grid-template-columns:
      1fr;

    gap:
      42px;
  }


  .p-about-card,
  .p-about-card--life,
  .p-about-card--region,
  .p-about-card--future {
    grid-template-columns:
      minmax(120px, 0.82fr)
      minmax(0, 1.18fr);

    min-height:
      230px;

    padding:
      28px
      24px;

    text-align:
      left;

    transform:
      none;
  }


  .p-about-card__visual img {
    max-width:
      145px;
  }


  .p-about-card__title {
    margin-bottom:
      12px;

    font-size:
      1.08rem;

    line-height:
      1.65;
  }


  .p-about-card__text {
    font-size:
      0.84rem;

    line-height:
      1.9;
  }


  /*
   * SPでも3枚の形を変える
   */

  .p-about-card--life::before {
    border-radius:
      18% 10% 20% 12%
      /
      14% 20% 12% 18%;
  }


  .p-about-card--region::before {
    border-radius:
      12% 22% 13% 20%
      /
      20% 12% 22% 14%;
  }


  .p-about-card--future::before {
    border-radius:
      22% 12% 10% 20%
      /
      12% 18% 22% 14%;
  }


  /*
   * SPは装飾イラストを非表示
   */
  .p-about-michimaru__deco-between {
    display: none;
  }

}
/* =========================================================
   ABOUT MICHIMARU / MORE
========================================================= */

.p-about-michimaru__more {
  position: relative;

  width: min(100%, 1280px);

  margin:
    80px auto  0;
}


/* =========================================================
   TEXT
========================================================= */

.p-about-michimaru__more-text {
  width: min(100%, 860px);

  margin-inline: auto;

  text-align: center;
}


.p-about-michimaru__more-label {
  margin:
    0
    0
    20px;

  color:
    var(--color-orange);

  font-family:
    var(--font-hand);

  font-size:
    clamp(
      1rem,
      1.2vw,
      1.2rem
    );

  font-weight: 600;

  letter-spacing:
    0.08em;
}


.p-about-michimaru__more-copy {
  margin: 0;

  color:
    var(--color-text-light);

  font-size:
    clamp(
      0.95rem,
      1vw,
      1.05rem
    );

  font-weight: 500;

  line-height:
    2.25;

  letter-spacing:
    0.035em;
}


/* =========================================================
   PHOTOS
========================================================= */

.p-about-michimaru__more-photos {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap:
    clamp(
      24px,
      3vw,
      42px
    );

  margin-top:
    clamp(
      55px,
      5vw,
      80px
    );
}


.p-about-michimaru__more-photo {
  position: relative;

  overflow: hidden;

  aspect-ratio:
    3 / 2;

  margin: 0;

  border-radius:
    30px;

  box-shadow:
    0 20px 45px
    rgba(75, 57, 42, 0.08);
}


/* 左右で少し形を変える */

.p-about-michimaru__more-photo:first-child {
    border-radius: 50% 50% 50% 70%/50% 50% 70% 60%;
}


.p-about-michimaru__more-photo:last-child {
     border-radius: 80% 30% 50% 50%/50%;
}


.p-about-michimaru__more-photo img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 1.2s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    );
}


/* =========================================================
   HOVER
========================================================= */

@media (hover: hover) {

  .p-about-michimaru__more-photo:hover img {
    transform:
      scale(1.045);
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

  .p-about-michimaru__more {
    margin-top:
      120px;
  }


  .p-about-michimaru__more-text {
    width:
      min(100%, 760px);
  }


  .p-about-michimaru__more-copy {
    line-height:
      2.1;
  }

}


/* =========================================================
   SMARTPHONE
========================================================= */

@media (max-width: 768px) {

  .p-about-michimaru__more {
    margin-top:
      90px;
  }


  .p-about-michimaru__more-text {
    text-align:
      left;
  }


  .p-about-michimaru__more-label {
    text-align:
      center;
  }


  .p-about-michimaru__more-copy {
    font-size:
      0.9rem;

    line-height:
      2;
  }


  .p-about-michimaru__more-photos {
    grid-template-columns:
      1fr;

    gap:
      20px;

    margin-top:
      45px;
  }


  .p-about-michimaru__more-photo {
    aspect-ratio:
      4 / 3;

    border-radius:
      22px !important;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .js-reveal,
  .p-about-card::before,
  .p-about-card__visual img,
  .p-about-michimaru__deco-between {
    transition: none;
  }

}

/* =========================================================
   WHAT MICHIMARU CAN DO
   みちまるで実現できること
========================================================= */

.p-possibilities {
  position: relative;
  overflow: hidden;

  padding:
    clamp(150px, 12vw, 220px)
    clamp(24px, 5vw, 80px);

  background: transparent;
}


/* =========================================================
   INNER
========================================================= */

.p-possibilities__inner {
  position: relative;

  width: min(100%, 1500px);

  margin-inline: auto;
}


/* =========================================================
   GRID
========================================================= */

.p-possibilities__grid {
  position: relative;
  z-index: 5;

  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap:
    clamp(28px, 2.6vw, 40px);
}


/* =========================================================
   CARD
========================================================= */

.p-possibility-card {
  position: relative;

  overflow: hidden;

  padding:
    14px
    14px
    22px;

  border:
    1px solid
    rgba(128, 101, 74, 0.08);

  border-radius:
    28px 30px 32px 26px;

  /* 薄いベージュ */
  background:
    linear-gradient(
      180deg,
      rgba(251, 246, 238, 0.98) 0%,
      rgba(248, 241, 231, 0.98) 100%
    );

  box-shadow:
    0 18px 42px
    rgba(80, 61, 43, 0.06);

  transition:
    transform 0.55s
    cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s ease;
}


/* カード外形も少しずつ変える */

.p-possibility-card:nth-child(2) {
  border-radius:
    24px 34px 27px 31px;
}

.p-possibility-card:nth-child(3) {
  border-radius:
    34px 24px 28px 22px;
}

.p-possibility-card:nth-child(4) {
  border-radius:
    26px 30px 24px 34px;
}

.p-possibility-card:nth-child(5) {
  border-radius:
    30px 25px 34px 23px;
}

.p-possibility-card:nth-child(6) {
  border-radius:
    24px 35px 26px 30px;
}


/* =========================================================
   IMAGE
   写真は4:3
========================================================= */

.p-possibility-card__image {
  position: relative;

  overflow: hidden;

  aspect-ratio: 4 / 3;

  background: #efe7dc;

  /*
   * 基本形
   * 擬似要素で削らずborder-radiusだけで表情を付ける
   */
  border-radius:
    28px 28px 20px 20px;
}


/* 写真 */

.p-possibility-card__image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 1.1s
    cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   01：左上を大きく、右上を控えめ（左上が吊り上がった形状）
========================================================= */
.p-possibility-card:nth-child(1) .p-possibility-card__image {
  border-radius: 60% 35% 40% 45% / 55% 40% 35% 50%;
}


/* =========================================================
   02：中央上・アーチ形状（上部両端が大きく丸み、横長感）
========================================================= */
.p-possibility-card:nth-child(2) .p-possibility-card__image {
  border-radius: 50% 50% 40% 40% / 60% 60% 40% 40%;
}


/* =========================================================
   03：右上を大きく、左上を控えめ（右上に向かって持ち上がる形状）
========================================================= */
.p-possibility-card:nth-child(3) .p-possibility-card__image {
  border-radius: 35% 60% 45% 40% / 40% 55% 50% 35%;
}


/* =========================================================
   04：左上やや強め（左上にクセを持たせた変形）
========================================================= */
.p-possibility-card:nth-child(4) .p-possibility-card__image {
  border-radius: 55% 40% 40% 50% / 50% 35% 45% 55%;
}


/* =========================================================
   05：右上やや強め（中央下・全体的にマイルドな楕円風）
========================================================= */
.p-possibility-card:nth-child(5) .p-possibility-card__image {
  border-radius: 40% 55% 50% 40% / 35% 50% 55% 45%;
}


/* =========================================================
   06：左右非対称（右上と左下を不均等に広げた遊びのある形状）
========================================================= */
.p-possibility-card:nth-child(6) .p-possibility-card__image {
  border-radius: 45% 65% 35% 55% / 55% 40% 60% 45%;
}

/* =========================================================
   CARD BODY
========================================================= */

.p-possibility-card__body {
  position: relative;

  display: grid;

  grid-template-columns:
    72px
    minmax(0, 1fr);

  align-items: start;

  gap: 16px;

  padding:
    18px
    10px
    0;
}


/* =========================================================
   ICON
========================================================= */

.p-possibility-card__icon {
  position: relative;
  z-index: 3;

  display: flex;

  align-items: center;
  justify-content: center;

  width: 68px;
  height: 68px;

  margin-top: -28px;

  border:
    1px solid
    rgba(112, 87, 64, 0.08);

  border-radius: 50%;

  background:
    rgba(255, 252, 245, 0.97);

  box-shadow:
    0 10px 24px
    rgba(71, 53, 39, 0.08);

  transition:
    transform 0.55s
    cubic-bezier(0.22, 1, 0.36, 1);
}


.p-possibility-card__icon img {
  display: block;

  width: 48px;
  height: 48px;

  object-fit: contain;
}


/* =========================================================
   TEXT
========================================================= */

.p-possibility-card__content {
  position: relative;
}


.p-possibility-card__title {
  margin:
    0
    0
    8px;

  color:
    var(--color-text);

  font-family:
    var(--font-round);

  font-size:
    clamp(
      1rem,
      1.05vw,
      1.2rem
    );

  font-weight: 700;

  line-height: 1.55;

  letter-spacing:
    0.04em;
}


.p-possibility-card__text {
  margin: 0;

  color:
    var(--color-text-light);

  font-size:
    clamp(
      0.82rem,
      0.84vw,
      0.92rem
    );

  font-weight: 500;

  line-height: 1.85;

  letter-spacing:
    0.02em;
}


/* =========================================================
   HOVER
========================================================= */

@media (hover: hover) {

  .p-possibility-card:hover {
    transform:
      translateY(-8px);

    box-shadow:
      0 24px 55px
      rgba(74, 57, 43, 0.11);
  }


  .p-possibility-card:hover
  .p-possibility-card__image img {
    transform:
      scale(1.055);
  }


  .p-possibility-card:hover
  .p-possibility-card__icon {
    transform:
      translateY(-3px)
      rotate(-4deg);
  }

}


/* =========================================================
   DECORATION
========================================================= */

.p-possibilities__deco {
  position: absolute;
  z-index: 2;

  width:
    clamp(
      90px,
      7vw,
      140px
    );

  height: auto;

  opacity: 0.9;

  pointer-events: none;
}


.p-possibilities__deco--left {
  left: -35px;

  top: 49%;

  transform:
    rotate(-8deg);
}


.p-possibilities__deco--right {
  right: -30px;

  bottom: 6%;

  transform:
    rotate(6deg);
}


/* =========================================================
   REVEAL
========================================================= */

.p-possibility-card.js-reveal {
  opacity: 0;

  transform:
    translateY(45px)
    scale(0.985);

  transition:
    opacity 0.9s
    cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s
    cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s ease;
}


.p-possibility-card.js-reveal.is-visible {
  opacity: 1;

  transform:
    translateY(0)
    scale(1);
}


/* =========================================================
   TABLET
   1024px
========================================================= */

@media (max-width: 1024px) {

  .p-possibilities {
    padding:
      140px
      30px;
  }


  .p-possibilities__grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap:
      28px;
  }


  .p-possibility-card__body {
    grid-template-columns:
      64px
      minmax(0, 1fr);
  }


  .p-possibility-card__icon {
    width:
      64px;

    height:
      64px;
  }


  .p-possibility-card__icon img {
    width:
      44px;

    height:
      44px;
  }

}


/* =========================================================
   SMARTPHONE
   768px
========================================================= */

@media (max-width: 768px) {

  .p-possibilities {
    padding:
      110px
      20px;
  }


  .p-possibilities__grid {
    grid-template-columns:
      1fr;

    gap:
      24px;
  }


  .p-possibility-card,
  .p-possibility-card:nth-child(2),
  .p-possibility-card:nth-child(3),
  .p-possibility-card:nth-child(4),
  .p-possibility-card:nth-child(5),
  .p-possibility-card:nth-child(6) {
    padding:
      12px
      12px
      20px;

    border-radius:
      24px;
  }


  /*
   * SPでも形の違いを残す
   */

  .p-possibility-card:nth-child(1)
  .p-possibility-card__image {
    border-radius:
      30px 17px 18px 18px;
  }


  .p-possibility-card:nth-child(2)
  .p-possibility-card__image {
    border-radius:
      17px 32px 18px 18px;
  }


  .p-possibility-card:nth-child(3)
  .p-possibility-card__image {
    border-radius:
      28px 28px 18px 18px;
  }


  .p-possibility-card:nth-child(4)
  .p-possibility-card__image {
    border-radius:
      27px 16px 18px 18px;
  }


  .p-possibility-card:nth-child(5)
  .p-possibility-card__image {
    border-radius:
      16px 27px 18px 18px;
  }


  .p-possibility-card:nth-child(6)
  .p-possibility-card__image {
    border-radius:
      22px 32px 18px 18px;
  }


  .p-possibility-card__body {
    grid-template-columns:
      58px
      minmax(0, 1fr);

    gap:
      14px;

    padding:
      16px
      8px
      0;
  }


  .p-possibility-card__icon {
    width:
      58px;

    height:
      58px;

    margin-top:
      -24px;
  }


  .p-possibility-card__icon img {
    width:
      40px;

    height:
      40px;
  }


  .p-possibility-card__title {
    font-size:
      1rem;
  }


  .p-possibility-card__text {
    font-size:
      0.82rem;

    line-height:
      1.8;
  }


  .p-possibilities__deco {
    display:
      none;
  }

}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  position: relative;

  padding:
    clamp(48px, 5vw, 76px)
    clamp(24px, 4vw, 70px)
    22px;

  background: #fff;

  color:
    var(--color-text);
}


/* =========================================================
   INNER
========================================================= */

.site-footer__inner {
  position: relative;

  width: min(100%, 1600px);

  margin-inline: auto;

  padding-top:
    34px;

  border-top:
    1px solid
    rgba(147, 115, 85, 0.25);
}


/* =========================================================
   TOP
========================================================= */

.site-footer__top {
  position: relative;

  display: grid;

  grid-template-columns:
    auto
    1fr
    auto;

  align-items: center;

  gap:
    clamp(40px, 6vw, 100px);
}


/* =========================================================
   LOGO
========================================================= */

.site-footer__logo {
  flex-shrink: 0;
}


.site-footer__logo-link {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  color:
    var(--color-orange);

  transition:
    opacity 0.3s ease;
}


.site-footer__logo-link:hover {
  opacity: 0.75;
}


.site-footer__logo img {
  display: block;

  width:
    clamp(
      140px,
      11vw,
      190px
    );

  height: auto;
}


/* ロゴ画像がない場合 */

.site-footer__logo-mark {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: 28px;
  height: 28px;

  border:
    2px solid
    var(--color-orange);

  border-radius: 50%;

  font-size:
    17px;

  line-height: 1;
}


.site-footer__logo-text {
  font-family:
    var(--font-round);

  font-size:
    clamp(
      1.35rem,
      1.8vw,
      1.7rem
    );

  font-weight: 700;

  letter-spacing:
    0.04em;
}


/* =========================================================
   MAIN NAV
========================================================= */

.site-footer__nav {
  justify-self: center;
}


.site-footer__nav-list {
  display: flex;

  flex-wrap: wrap;

  align-items: center;

  justify-content: center;

  gap:
    clamp(
      25px,
      3.5vw,
      60px
    );

  margin: 0;

  padding: 0;

  list-style: none;
}


.site-footer__nav-list a {
  position: relative;

  display: inline-block;

  padding:
    8px
    0;

  color:
    #564b44;

  font-family:
    var(--font-round);

  font-size:
    clamp(
      0.82rem,
      0.85vw,
      0.92rem
    );

  font-weight: 500;

  letter-spacing:
    0.04em;

  transition:
    color 0.3s ease;
}


.site-footer__nav-list a::after {
  content: "";

  position: absolute;

  right: 0;
  bottom: 2px;
  left: 0;

  height: 1px;

  background:
    var(--color-orange);

  transform:
    scaleX(0);

  transform-origin:
    right center;

  transition:
    transform 0.35s ease;
}


.site-footer__nav-list a:hover {
  color:
    var(--color-orange);
}


.site-footer__nav-list a:hover::after {
  transform:
    scaleX(1);

  transform-origin:
    left center;
}


/* =========================================================
   PAGE TOP
========================================================= */

.site-footer__pagetop {
  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

  width:
    clamp(
      54px,
      4.5vw,
      68px
    );

  height:
    clamp(
      54px,
      4.5vw,
      68px
    );

  padding: 0;

  border:
    1px solid
    rgba(237, 103, 28, 0.28);

  border-radius:
    50%;

  background:
    rgba(255, 250, 242, 0.88);

  box-shadow:
    0 10px 28px
    rgba(91, 66, 45, 0.07);

  cursor: pointer;

  transition:
    transform 0.4s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    ),
    background-color 0.3s ease,
    box-shadow 0.4s ease;
}


/*
 * 矢印
 * 画像を使わずCSSで作成
 */

.site-footer__pagetop-arrow {
  position: relative;

  display: block;

  width: 17px;
  height: 17px;

  border-top:
    2px solid
    var(--color-orange);

  border-left:
    2px solid
    var(--color-orange);

  transform:
    translateY(4px)
    rotate(45deg);

  transition:
    transform 0.4s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    );
}


/*
 * 矢印下のライン
 */

.site-footer__pagetop-arrow::after {
  content: "";

  position: absolute;

  top: 5px;
  left: 5px;

  width: 2px;
  height: 20px;

  border-radius: 2px;

  background:
    var(--color-orange);

  transform:
    rotate(-45deg)
    translate(-1px, -2px);

  transform-origin:
    center top;
}


/* hover */

@media (hover: hover) {

  .site-footer__pagetop:hover {
    transform:
      translateY(-6px);

    background:
      #fff5e8;

    box-shadow:
      0 16px 35px
      rgba(91, 66, 45, 0.11);
  }


  .site-footer__pagetop:hover
  .site-footer__pagetop-arrow {
    transform:
      translateY(-1px)
      rotate(45deg);
  }

}


/* =========================================================
   BOTTOM
========================================================= */

.site-footer__bottom {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 40px;

  margin-top:
    clamp(
      28px,
      3vw,
      44px
    );
}


/* =========================================================
   SUB NAV
========================================================= */

.site-footer__subnav-list {
  display: flex;

  flex-wrap: wrap;

  align-items: center;

  margin: 0;

  padding: 0;

  list-style: none;
}


.site-footer__subnav-list li {
  position: relative;
}


.site-footer__subnav-list li:not(:last-child) {
  margin-right: 18px;

  padding-right: 18px;
}


.site-footer__subnav-list li:not(:last-child)::after {
  content: "";

  position: absolute;

  top: 50%;
  right: 0;

  width: 1px;
  height: 12px;

  background:
    rgba(88, 72, 61, 0.18);

  transform:
    translateY(-50%);
}


.site-footer__subnav-list a {
  color:
    #7c716a;

  font-size:
    0.75rem;

  letter-spacing:
    0.02em;

  transition:
    color 0.3s ease;
}


.site-footer__subnav-list a:hover {
  color:
    var(--color-orange);
}


/* =========================================================
   COPYRIGHT
========================================================= */

.site-footer__copyright {
  margin: 0;

  color:
    #8a817b;

  font-size:
    0.7rem;

  white-space: nowrap;

  letter-spacing:
    0.02em;
}


/* =========================================================
   BOTTOM ACCENT
========================================================= */

.site-footer__accent {
  width:
    calc(100% - 40px);

  max-width:
    1600px;

  height:
    4px;

  margin:
    clamp(50px, 5vw, 75px)
    auto
    0;

  border-radius:
    9999px;

  background:
    linear-gradient(
      90deg,
      #f2c9a7 0%,
      #f7dabb 45%,
      #f2c9a7 100%
    );
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

  .site-footer__top {
    grid-template-columns:
      auto
      1fr
      auto;

    gap:
      30px;
  }


  .site-footer__nav-list {
    gap:
      18px 28px;
  }


  .site-footer__nav-list a {
    font-size:
      0.8rem;
  }

}


/* =========================================================
   SMARTPHONE
========================================================= */

@media (max-width: 768px) {

  .site-footer {
    padding:
      50px
      20px
      16px;
  }


  .site-footer__inner {
    padding-top:
      30px;
  }


  .site-footer__top {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap:
      30px;
  }


  .site-footer__logo img {
    width:
      150px;
  }


  .site-footer__nav {
    width:
      100%;
  }


  .site-footer__nav-list {
    display: grid;

    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    justify-content: initial;

    gap:
      8px 20px;
  }


  .site-footer__nav-list a {
    display: block;

    padding:
      8px 0;
  }


  .site-footer__pagetop {
    position: absolute;

    top:
      25px;

    right:
      0;

    width:
      52px;

    height:
      52px;
  }


  .site-footer__bottom {
    flex-direction:
      column;

    align-items:
      flex-start;

    gap:
      24px;

    margin-top:
      35px;
  }


  .site-footer__subnav-list {
    gap:
      8px 0;
  }


  .site-footer__subnav-list li:not(:last-child) {
    margin-right:
      12px;

    padding-right:
      12px;
  }


  .site-footer__copyright {
    white-space:
      normal;
  }


  .site-footer__accent {
    width:
      calc(100% - 40px);

    margin-top:
      45px;
  }

}

/* =========================================================
   WHY MICHIMARU
   なぜ必要なの？
========================================================= */

.p-why {
  position: relative;
  overflow: hidden;

  padding:
	  0
    clamp(150px, 12vw, 220px)
    clamp(24px, 5vw, 80px);

  background: transparent;
}


/* =========================================================
   INNER
========================================================= */

.p-why__inner {
  width: min(100%, 1580px);
  margin-inline: auto;
}


/* =========================================================
   PANEL
========================================================= */

.p-why__panel {
  position: relative;

  padding:
    clamp(55px, 5vw, 82px)
    clamp(35px, 4vw, 70px);

  overflow: hidden;

  border:
    1px solid
    rgba(172, 137, 96, 0.08);

  /*
   * 大きなやわらかい背景
   */
  border-radius:
    80px 70px 90px 65px
    /
    60px 85px 65px 90px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 249, 239, 0.97) 0%,
      rgba(250, 242, 230, 0.97) 100%
    );

  box-shadow:
    0 24px 70px
    rgba(78, 60, 42, 0.055);
}


/*
 * 和紙っぽい細かな質感
 */
.p-why__panel::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background-image:
    radial-gradient(
      circle at 20% 25%,
      rgba(107, 78, 50, 0.045) 0 1px,
      transparent 1.5px
    ),
    radial-gradient(
      circle at 65% 35%,
      rgba(255, 255, 255, 0.7) 0 1px,
      transparent 1.7px
    ),
    radial-gradient(
      circle at 35% 75%,
      rgba(107, 78, 50, 0.035) 0 1px,
      transparent 1.5px
    );

  background-size:
    11px 11px,
    16px 16px,
    21px 21px;

  opacity: 0.9;
}


/* =========================================================
   FLOW
========================================================= */

.p-why__flow {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    70px
    minmax(0, 1fr)
    70px
    minmax(0, 1fr)
    70px
    minmax(0, 1fr);

  align-items: center;

  gap:
    clamp(8px, 1.2vw, 18px);
}


/* =========================================================
   ITEM
========================================================= */

.p-why-item {
  position: relative;

  min-width: 0;

  text-align: center;
}


/* =========================================================
   LEAD
========================================================= */

.p-why-item__lead {
  min-height:
    5.6em;

  margin:
    0
    0
    22px;

  color:
    var(--color-text);

  font-family:
    var(--font-round);

  font-size:
    clamp(
      0.9rem,
      0.95vw,
      1.05rem
    );

  font-weight: 600;

  line-height: 1.9;

  letter-spacing:
    0.04em;
}


/* =========================================================
   VISUAL
========================================================= */

.p-why-item__visual {
  position: relative;

  display: flex;

  align-items: center;
  justify-content: center;

  width: 100%;

  height:
    clamp(
      180px,
      15vw,
      240px
    );

  margin-bottom:
    22px;
}


.p-why-item__visual img {
  display: block;

  width:
    min(
      100%,
      220px
    );

  height: auto;

  object-fit: contain;

  transition:
    transform 0.8s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    );
}


/* =========================================================
   TITLE
========================================================= */

.p-why-item__title {
  position: relative;

  width: fit-content;

  margin:
    0
    auto;

  padding-bottom:
    10px;

  color:
    var(--color-text);

  font-family:
    var(--font-round);

  font-size:
    clamp(
      1rem,
      1.1vw,
      1.2rem
    );

  font-weight: 700;

  line-height: 1.5;

  letter-spacing:
    0.055em;
}


/*
 * タイトル下の細い点線
 */
.p-why-item__title::after {
  content: "";

  position: absolute;

  right: 12%;
  bottom: 0;
  left: 12%;

  border-bottom:
    2px dotted
    rgba(237, 103, 28, 0.45);
}


/* =========================================================
   ARROW
========================================================= */

.p-why__arrow {
  position: relative;

  display: flex;

  align-items: center;
  justify-content: center;

  height: 100%;
}


/*
 * 横線
 */
.p-why__arrow span {
  position: relative;

  display: block;

  width: 42px;
  height: 2px;

  border-radius:
    999px;

  background:
    rgba(104, 91, 81, 0.55);
}


/*
 * 矢印先端
 */
.p-why__arrow span::after {
  content: "";

  position: absolute;

  top: 50%;
  right: -1px;

  width: 10px;
  height: 10px;

  border-top:
    2px solid
    rgba(104, 91, 81, 0.55);

  border-right:
    2px solid
    rgba(104, 91, 81, 0.55);

  transform:
    translateY(-50%)
    rotate(45deg);
}


/* =========================================================
   HOVER
========================================================= */

@media (hover: hover) {

  .p-why-item:hover
  .p-why-item__visual img {
    transform:
      translateY(-7px)
      scale(1.025);
  }

}


/* =========================================================
   REVEAL
========================================================= */

.p-why-item.js-reveal {
  opacity: 0;

  transform:
    translateY(35px);

  transition:
    opacity 0.9s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    ),
    transform 0.9s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    );
}


.p-why-item.js-reveal.is-visible {
  opacity: 1;

  transform:
    translateY(0);
}


/*
 * 矢印は横方向から出す
 */
.p-why__arrow.js-reveal {
  opacity: 0;

  transform:
    translateX(-12px);

  transition:
    opacity 0.8s ease,
    transform 0.8s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    );
}


.p-why__arrow.js-reveal.is-visible {
  opacity: 1;

  transform:
    translateX(0);
}


/* =========================================================
   TABLET
   1024px
========================================================= */

@media (max-width: 1024px) {

  .p-why {
    padding:
      140px
      30px;
  }


  .p-why__panel {
    padding:
      55px
      30px;

    border-radius:
      60px 52px 68px 48px
      /
      48px 65px 52px 70px;
  }


  .p-why__flow {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap:
      60px
      50px;
  }


  /*
   * Tabletでは矢印非表示
   */
  .p-why__arrow {
    display:
      none;
  }


  .p-why-item__lead {
    min-height:
      auto;
  }


  .p-why-item__visual {
    height:
      220px;
  }

}


/* =========================================================
   SMARTPHONE
   768px
========================================================= */

@media (max-width: 768px) {

  .p-why {
    padding:
      110px
      20px;
  }


  .p-why__panel {
    padding:
      50px
      22px;

    border-radius:
      38px 32px 44px 30px
      /
      34px 42px 32px 46px;
  }


  .p-why__flow {
    display: flex;

    flex-direction:
      column;

    gap:
      55px;
  }


  .p-why-item {
    width:
      100%;
  }


  .p-why-item__lead {
    margin-bottom:
      14px;

    font-size:
      0.9rem;

    line-height:
      1.85;
  }


  .p-why-item__visual {
    height:
      190px;

    margin-bottom:
      18px;
  }


  .p-why-item__visual img {
    width:
      min(
        100%,
        200px
      );
  }


  .p-why-item__title {
    font-size:
      1.05rem;
  }


  /*
   * SPではステップ間の矢印を
   * 下向きで表示
   */
  .p-why__arrow {
    display: flex;

    width:
      100%;

    height:
      34px;
  }


  .p-why__arrow span {
    width:
      2px;

    height:
      28px;
  }


  .p-why__arrow span::after {
    top:
      auto;

    right:
      auto;

    bottom:
      0;

    left:
      50%;

    width:
      9px;

    height:
      9px;

    transform:
      translateX(-50%)
      rotate(135deg);
  }

}


/* =========================================================
   SPREAD
   広がるとどうなるの？
========================================================= */

.p-spread {
  position: relative;

  overflow: hidden;

  padding:
	  0
    clamp(150px, 12vw, 220px)
    clamp(24px, 5vw, 80px);

  background:
    transparent;
}


/* =========================================================
   INNER
========================================================= */

.p-spread__inner {
  position: relative;

  width:
    min(
      100%,
      1500px
    );

  margin-inline:
    auto;
}


/* =========================================================
   CARDS
========================================================= */

.p-spread__cards {
  position: relative;

  display: grid;

  grid-template-columns:
    repeat(
      3,
      minmax(0, 1fr)
    );

  align-items:
    stretch;

  gap:
    clamp(
      28px,
      3vw,
      48px
    );
}


/* =========================================================
   CARD COMMON
========================================================= */

.p-spread-card {
  position: relative;

  overflow: hidden;

  min-height:
    clamp(
      330px,
      28vw,
      430px
    );

  isolation:
    isolate;

  background:
    #f5f1e8;

  border:
    1px solid
    rgba(111, 88, 62, 0.07);

  box-shadow:
    0 20px 55px
    rgba(72, 55, 38, 0.06);

  transition:
    transform 0.7s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    ),
    box-shadow 0.7s ease;
}


/* =========================================================
   CARD 01
   左右に広がる柔らかい形
========================================================= */

.p-spread-card--1000 {
  border-radius:
    72px 38px 62px 32px
    /
    48px 72px 38px 66px;
}


/* =========================================================
   CARD 02
   中央は少し横長の雲型
========================================================= */

.p-spread-card--10000 {
  border-radius:
    38px 78px 34px 68px
    /
    72px 42px 70px 38px;

  transform:
    translateY(18px);
}


/* =========================================================
   CARD 03
   右側に重心を持たせた形
========================================================= */

.p-spread-card--100000 {
  border-radius:
    64px 34px 78px 42px
    /
    38px 72px 46px 68px;
}


/* =========================================================
   BACKGROUND IMAGE
========================================================= */

.p-spread-card__visual {
  position: absolute;

  z-index: 1;

  inset: 0;

  overflow: hidden;
}


.p-spread-card__visual img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position:
    center bottom;

  transition:
    transform 1.4s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    );
}


/*
 * 画像を少し淡くして
 * 文字を読みやすくする
 */
.p-spread-card__visual::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(255, 252, 244, 0.88) 0%,
      rgba(255, 252, 244, 0.63) 38%,
      rgba(255, 252, 244, 0.08) 72%,
      rgba(255, 252, 244, 0.02) 100%
    );

  pointer-events:
    none;
}


/* =========================================================
   CONTENT
========================================================= */

.p-spread-card__content {
  position: relative;

  z-index: 3;

  display: flex;

  flex-direction: column;

  align-items: center;

  padding:
    clamp(
      38px,
      4vw,
      58px
    )
    24px
    30px;

  text-align: center;
}


/* =========================================================
   EYEBROW
========================================================= */

.p-spread-card__eyebrow {
  margin:
    0
    0
    6px;

  font-family:
    var(--font-round);

  font-size:
    clamp(
      0.85rem,
      0.92vw,
      1rem
    );

  font-weight:
    700;

  line-height:
    1.6;

  letter-spacing:
    0.05em;
}


/* =========================================================
   NUMBER
========================================================= */

.p-spread-card__number {
  display: flex;

  align-items:
    baseline;

  justify-content:
    center;

  gap:
    5px;

  margin:
    0;

  line-height:
    1;
}


.p-spread-card__number strong {
  font-family:
    var(--font-round);

  font-size:
    clamp(
      3.2rem,
      4.6vw,
      5.3rem
    );

  font-weight:
    700;

  letter-spacing:
    -0.045em;
}


.p-spread-card__number span {
  font-family:
    var(--font-round);

  font-size:
    clamp(
      1rem,
      1.25vw,
      1.35rem
    );

  font-weight:
    700;
}


/* =========================================================
   CARD TITLE
========================================================= */

.p-spread-card__title {
  position: relative;

  margin:
    14px
    0
    0;

  padding-bottom:
    10px;

  color:
    var(--color-text);

  font-family:
    var(--font-round);

  font-size:
    clamp(
      1.15rem,
      1.35vw,
      1.55rem
    );

  font-weight:
    700;

  line-height:
    1.5;

  letter-spacing:
    0.055em;
}


/* 手描き風下線 */
.p-spread-card__title::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: 0;

  width:
    65%;

  height:
    5px;

  border-radius:
    50%;

  transform:
    translateX(-50%)
    rotate(-1deg);
}


/* =========================================================
   CARD COLORS
========================================================= */

/* 1,000 */
.p-spread-card--1000
.p-spread-card__eyebrow,
.p-spread-card--1000
.p-spread-card__number {
  color:
    #559257;
}

.p-spread-card--1000
.p-spread-card__title::after {
  background:
    rgba(
      85,
      146,
      87,
      0.2
    );
}


/* 10,000 */
.p-spread-card--10000
.p-spread-card__eyebrow,
.p-spread-card--10000
.p-spread-card__number {
  color:
    #dd8a22;
}

.p-spread-card--10000
.p-spread-card__title::after {
  background:
    rgba(
      221,
      138,
      34,
      0.22
    );
}


/* 100,000 */
.p-spread-card--100000
.p-spread-card__eyebrow,
.p-spread-card--100000
.p-spread-card__number {
  color:
    #d5644d;
}

.p-spread-card--100000
.p-spread-card__title::after {
  background:
    rgba(
      213,
      100,
      77,
      0.2
    );
}


/* =========================================================
   BOTTOM MESSAGE
========================================================= */

.p-spread__message {
  width:
    min(
      100%,
      900px
    );

  margin:
    clamp(
      100px,
      9vw,
      150px
    )
    auto
    0;

  text-align:
    center;
}


.p-spread__message-small {
  margin:
    0
    0
    12px;

  color:
    var(--color-text-light);

  font-family:
    var(--font-round);

  font-size:
    clamp(
      0.9rem,
      1vw,
      1rem
    );

  font-weight:
    500;

  letter-spacing:
    0.06em;
}


.p-spread__message-main {
  margin: 0;

  color:
    var(--color-text);

  font-family:
    var(--font-round);

  font-size:
    clamp(
      1.4rem,
      2.1vw,
      2.15rem
    );

  font-weight:
    700;

  line-height:
    1.7;

  letter-spacing:
    0.055em;
}


/* =========================================================
   HOVER
========================================================= */

@media (hover: hover) {

  .p-spread-card:hover {
    transform:
      translateY(-8px);

    box-shadow:
      0 28px 65px
      rgba(72, 55, 38, 0.1);
  }


  /*
   * 2枚目は元々18px下げているので
   * hoverでも位置を維持
   */
  .p-spread-card--10000:hover {
    transform:
      translateY(10px);
  }


  .p-spread-card:hover
  .p-spread-card__visual img {
    transform:
      scale(1.035);
  }

}


/* =========================================================
   REVEAL
========================================================= */

.p-spread-card.js-reveal {
  opacity: 0;

  transform:
    translateY(42px);

  transition:
    opacity 0.95s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    ),
    transform 0.95s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    ),
    box-shadow 0.6s ease;
}


.p-spread-card.js-reveal.is-visible {
  opacity: 1;

  transform:
    translateY(0);
}


/*
 * 中央だけ少し下げる
 */
.p-spread-card--10000.js-reveal.is-visible {
  transform:
    translateY(18px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

  .p-spread {
    padding:
      140px
      30px;
  }


  .p-spread__cards {
    gap:
      24px;
  }


  .p-spread-card {
    min-height:
      370px;
  }


  .p-spread-card__number strong {
    font-size:
      clamp(
        3rem,
        6vw,
        4.4rem
      );
  }

}


/* =========================================================
   SMARTPHONE
========================================================= */

@media (max-width: 768px) {

  .p-spread {
    padding:
      110px
      20px;
  }


  .p-spread__cards {
    grid-template-columns:
      1fr;

    gap:
      36px;
  }


  .p-spread-card {
    min-height:
      390px;
  }


  /*
   * SPでは中央カードを下げない
   */
  .p-spread-card--10000,
  .p-spread-card--10000.js-reveal.is-visible {
    transform:
      none;
  }


  /*
   * SPでも形をそれぞれ変える
   */
  .p-spread-card--1000 {
    border-radius:
      42px 24px 50px 26px
      /
      30px 46px 28px 48px;
  }


  .p-spread-card--10000 {
    border-radius:
      26px 52px 28px 44px
      /
      48px 28px 46px 30px;
  }


  .p-spread-card--100000 {
    border-radius:
      48px 26px 52px 32px
      /
      28px 46px 34px 44px;
  }


  .p-spread-card__content {
    padding:
      38px
      20px
      25px;
  }


  .p-spread-card__number strong {
    font-size:
      3.6rem;
  }


  .p-spread-card__number span {
    font-size:
      1rem;
  }


  .p-spread-card__title {
    font-size:
      1.2rem;
  }


  .p-spread__message {
    margin-top:
      80px;
  }

}



/* =========================================================
   PEOPLE
   人の想いが支える
========================================================= */

.p-people {
  position: relative;
  overflow: hidden;

  padding:
    0
    clamp(24px, 5vw, 80px)
    clamp(150px, 12vw, 220px);

  background: transparent;
}


/* =========================================================
   INNER
========================================================= */

.p-people__inner {
  width: min(100%, 1500px);
  margin-inline: auto;
}


/* =========================================================
   LEAD
========================================================= */

.p-people__lead {
  width: min(100%, 820px);

  margin:
    calc(clamp(70px, 6vw, 110px) * -0.55)
    auto
    clamp(60px, 5vw, 90px);

  color: var(--color-text-light);

  font-size:
    clamp(
      0.9rem,
      0.95vw,
      1rem
    );

  font-weight: 500;

  line-height: 2;

  letter-spacing: 0.035em;

  text-align: center;
}


/* =========================================================
   GRID
   PC：4列 × 2行
========================================================= */

.p-people__grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap:
    clamp(24px, 2.8vw, 42px);
}


/* =========================================================
   CARD
========================================================= */

.p-person-card {
  position: relative;

  display: grid;

  grid-template-columns:
    104px
    minmax(0, 1fr);

  align-items: center;

  gap:
    clamp(16px, 1.5vw, 24px);

  min-height:
    190px;

  padding:
    24px;

  border:
    1px solid
    rgba(112, 86, 60, 0.07);

  background:
    linear-gradient(
      145deg,
      rgba(255, 249, 239, 0.97),
      rgba(249, 241, 229, 0.95)
    );

  box-shadow:
    0 16px 40px
    rgba(74, 57, 41, 0.045);

  transition:
    transform 0.55s
    cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s ease;
}


/*
 * 参考画像のように
 * カード形状を少しずつ変える
 */

/* =========================================================
   PERSON CARD SHAPE
   8枚すべて違う形
========================================================= */

/* 01：左上ふっくら、右下やや大きめ */
.p-person-card:nth-child(1) {
  border-radius:
    42px 20px 34px 18px
    /
    30px 46px 24px 38px;
}


/* 02：右上を大きく */
.p-person-card:nth-child(2) {
  border-radius:
    18px 52px 24px 36px
    /
    44px 26px 48px 22px;
}


/* 03：左下に重心 */
.p-person-card:nth-child(3) {
  border-radius:
    34px 22px 26px 56px
    /
    24px 40px 32px 52px;
}


/* 04：右下が大きく流れる */
.p-person-card:nth-child(4) {
  border-radius:
    24px 38px 58px 20px
    /
    36px 22px 48px 30px;
}


/* 05：上側をやわらかく大きめ */
.p-person-card:nth-child(5) {
  border-radius:
    54px 38px 24px 30px
    /
    36px 52px 28px 34px;
}


/* 06：左上小さめ、右側をふっくら */
.p-person-card:nth-child(6) {
  border-radius:
    20px 58px 42px 26px
    /
    30px 44px 54px 24px;
}


/* 07：左側を大きく崩す */
.p-person-card:nth-child(7) {
  border-radius:
    58px 24px 34px 46px
    /
    42px 28px 36px 54px;
}


/* 08：右上・左下を大きめに */
.p-person-card:nth-child(8) {
  border-radius:
    26px 50px 28px 54px
    /
    34px 48px 42px 30px;
}


/* =========================================================
   PHOTO
========================================================= */

.p-person-card__photo {
  position: relative;

  overflow: hidden;

  width: 104px;
  height: 104px;

  margin: 0;

  border-radius:
    50%;

  background:
    #efe8dd;

  box-shadow:
    0 8px 20px
    rgba(73, 54, 38, 0.08);
}


.p-person-card__photo img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.8s
    cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   CONTENT
========================================================= */

.p-person-card__content {
  min-width: 0;
}


/* =========================================================
   COMMENT
========================================================= */

.p-person-card__comment {
  margin:
    0
    0
    14px;

  color:
    var(--color-text);

  font-size:
    clamp(
      0.78rem,
      0.82vw,
      0.9rem
    );

  font-weight: 500;

  line-height: 1.9;

  letter-spacing:
    0.025em;
}


/* =========================================================
   NAME
========================================================= */

.p-person-card__name {
  margin: 0;

  color:
    var(--color-text-light);

  font-size:
    0.76rem;

  font-weight: 700;

  line-height: 1.6;

  letter-spacing:
    0.03em;
}


/* =========================================================
   HOVER
========================================================= */

@media (hover: hover) {

  .p-person-card:hover {
    transform:
      translateY(-6px);

    box-shadow:
      0 22px 48px
      rgba(74, 57, 41, 0.075);
  }


  .p-person-card:hover
  .p-person-card__photo img {
    transform:
      scale(1.06);
  }

}


/* =========================================================
   REVEAL
========================================================= */

.p-person-card.js-reveal {
  opacity: 0;

  transform:
    translateY(32px);

  transition:
    opacity 0.85s
    cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s
    cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s ease;
}


.p-person-card.js-reveal.is-visible {
  opacity: 1;

  transform:
    translateY(0);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

  .p-people {
    padding:
      0
      30px
      140px;
  }


  .p-people__grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap:
      24px;
  }


  .p-person-card {
    grid-template-columns:
      96px
      minmax(0, 1fr);
  }


  .p-person-card__photo {
    width:
      96px;

    height:
      96px;
  }

}


/* =========================================================
   SMARTPHONE
========================================================= */

@media (max-width: 768px) {

  .p-people {
    padding:
      0
      20px
      110px;
  }


  .p-people__lead {
    margin:
      -35px
      auto
      50px;

    font-size:
      0.88rem;

    line-height:
      1.9;
  }


  .p-people__lead br {
    display:
      none;
  }


  .p-people__grid {
    grid-template-columns:
      1fr;

    gap:
      20px;
  }


  .p-person-card {
    grid-template-columns:
      82px
      minmax(0, 1fr);

    min-height:
      auto;

    padding:
      20px;

    border-radius:
      24px !important;
  }


  .p-person-card__photo {
    width:
      82px;

    height:
      82px;
  }


  .p-person-card__comment {
    font-size:
      0.82rem;

    line-height:
      1.8;
  }


  .p-person-card__name {
    font-size:
      0.72rem;
  }

}

/* =========================================================
   MICHIMARU MOBILE PROMO
   みちまるモバイルから。
   完全版
========================================================= */

.p-mobile-promo {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 4vw, 72px) clamp(18px, 2vw, 34px) 0;
  background: transparent;
}


/* =========================================================
   INNER
========================================================= */

.p-mobile-promo__inner {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  display: grid;
  grid-template-columns:
    minmax(420px, 1.18fr)
    minmax(380px, 0.96fr)
    minmax(430px, 1.02fr);
  align-items: center;
  column-gap: clamp(26px, 2.4vw, 44px);

  width: min(100%, 1560px);
  min-height: clamp(620px, 44vw, 730px);
  margin-inline: auto;

  padding:
	clamp(5px, 4.5vw, 10px)
    clamp(34px, 3vw, 54px)
    0;

  border-radius: 46px;
  background: linear-gradient(135deg, #ea6b47 0%, #e76443 50%, #df5c3d 100%);
  box-shadow: 0 18px 54px rgba(104, 48, 29, 0.10);
}


/* ドットテクスチャ */
.p-mobile-promo__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background-image:
    radial-gradient(
      circle,
      rgba(255, 255, 255, 0.12) 1px,
      transparent 1.25px
    );
  background-size: 10px 10px;
  opacity: 0.48;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.p-mobile-promo__content {
  position: relative;
  grid-column: 1;
  z-index: 30;

  width: 100%;
  max-width: 520px;

  padding: 0 0 128px 30px;
  color: #ffffff;
}


/* =========================================================
   LABEL
========================================================= */

.p-mobile-promo__label-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: clamp(320px, 14vw, 450px);
  margin-bottom: 26px;
}

.p-mobile-promo__label-bg {
  display: block;
  width: 100%;
  height: auto;
}

.p-mobile-promo__label {
  position: absolute;
  top: 42%;
  left: 50%;
  width: 80%;
  margin: 0;

  transform: translate(-50%, -50%) rotate(-1deg);

  color: #403128;
  font-family: var(--font-round);
  font-size: clamp(1.2rem, 0.95vw, 2rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}


/* =========================================================
   TITLE
========================================================= */

.p-mobile-promo__title {
  margin: 0 0 24px;
  color: #ffffff;
  font-family: var(--font-round);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.02em;
}

.p-mobile-promo__title span,
.p-mobile-promo__title strong {
  display: block;
}

.p-mobile-promo__title span {
  font-size: clamp(3.25rem, 4.7vw, 5rem);
}

.p-mobile-promo__title strong {
  margin-top: 6px;
  font-size: clamp(2.2rem, 3.3vw, 3.6rem);
  font-weight: 700;
}


/* =========================================================
   LEAD
========================================================= */

.p-mobile-promo__lead {
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.97);
  font-size: clamp(0.96rem, 1.02vw, 1.06rem);
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.02em;
}


/* =========================================================
   CTA BUTTON
========================================================= */

.p-mobile-promo__button {
  position: relative;
  z-index: 35;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  width: clamp(300px, 32vw, 400px);
  min-height: 74px;
  padding: 16px 28px 16px 34px;

  color: #e2603c;
  font-family: var(--font-round);
  font-size: clamp(1rem, 1.05vw, 1.08rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-align: left;

  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: #fffdfa;

  box-shadow: 0 10px 24px rgba(77, 29, 17, 0.14);

  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
}

.p-mobile-promo__button-arrow {
  flex-shrink: 0;
  font-size: 1.32rem;
  line-height: 1;
  transition: transform 0.35s ease;
}

@media (hover: hover) {
  .p-mobile-promo__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(77, 29, 17, 0.18);
  }

  .p-mobile-promo__button:hover .p-mobile-promo__button-arrow {
    transform: translateX(5px);
  }
}


/* =========================================================
   PHONE
========================================================= */

.p-mobile-promo__phone {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(28vw, 430px);
  min-width: 480px;
  margin: 0;

  opacity: 0;
  transform: translate(-50%, 72%);

  transition:
    opacity 0.45s ease,
    transform 1.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.p-mobile-promo__phone.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.p-mobile-promo__phone img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 28px rgba(54, 20, 12, 0.22));
}


/* =========================================================
   RIGHT FEATURES
========================================================= */

.p-mobile-promo__features {
  position: relative;
  grid-column: 3;
  z-index: 30;

  display: flex;
  flex-direction: column;
  gap: 16px;

  width: 100%;
  padding-bottom: 132px;
}


/* =========================================================
   FEATURE CARD
========================================================= */

.p-mobile-feature {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 18px;

  min-height: 88px;
  padding: 14px 24px;

  color: #40332d;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.97);
  box-shadow: 0 8px 18px rgba(87, 34, 20, 0.08);
}

.p-mobile-feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 58px;
  height: 58px;

  border: 2px solid currentColor;
  border-radius: 50%;

  font-family: var(--font-round);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
}

.p-mobile-feature__icon--orange {
  color: #ed7141;
}

.p-mobile-feature__icon--red {
  color: #e85f44;
}

.p-mobile-feature__icon--green {
  color: #5d9a8e;
}

.p-mobile-feature__icon--yellow {
  color: #e2a22d;
}

.p-mobile-feature__text h3 {
  margin: 0 0 4px;
  font-family: var(--font-round);
  font-size: clamp(1.2rem, 1.18vw, 1.34rem);
  font-weight: 700;
  line-height: 1.3;
}

.p-mobile-feature__text p {
  margin: 0;
  color: #675b54;
  font-size: clamp(0.86rem, 0.83vw, 0.92rem);
  font-weight: 500;
  line-height: 1.5;
}


/* =========================================================
   TOWN
========================================================= */

.p-mobile-promo__town {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;

  width: 100%;
  max-width: none;
  height: auto;

  pointer-events: none;
  user-select: none;
}


/* =========================================================
   SIDE DECORATION
========================================================= */

.p-mobile-promo__deco {
  position: absolute;
  z-index: 8;

  width: clamp(110px, 8vw, 150px);
  height: auto;

  pointer-events: none;
  user-select: none;
}

.p-mobile-promo__deco--left {
  left: 0;
  bottom: 0;
}

.p-mobile-promo__deco--right {
  right: 0;
  bottom: 0;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1280px) {

  .p-mobile-promo__inner {
    grid-template-columns:
      minmax(340px, 1.08fr)
      minmax(320px, 0.88fr)
      minmax(360px, 0.98fr);
    column-gap: 22px;
    min-height: 620px;
    padding-inline: 28px;
  }

  .p-mobile-promo__content {
    max-width: 460px;
    padding-bottom: 112px;
  }

  .p-mobile-promo__title span {
    font-size: clamp(2.95rem, 4.2vw, 4.2rem);
  }

  .p-mobile-promo__title strong {
    font-size: clamp(2rem, 2.9vw, 3rem);
  }

  .p-mobile-promo__button {
    width: min(100%, 420px);
    min-height: 68px;
    font-size: 0.96rem;
  }

  .p-mobile-promo__phone {
    width: 360px;
    min-width: 320px;
  }

  .p-mobile-promo__features {
    padding-bottom: 116px;
  }

  .p-mobile-feature {
    grid-template-columns: 56px minmax(0, 1fr);
    min-height: 82px;
    gap: 14px;
    padding: 12px 18px;
  }

  .p-mobile-feature__icon {
    width: 52px;
    height: 52px;
    font-size: 1.28rem;
  }

  .p-mobile-feature__text h3 {
    font-size: 1.08rem;
  }

  .p-mobile-feature__text p {
    font-size: 0.83rem;
  }
}


/* =========================================================
   TABLET SMALL
========================================================= */

@media (max-width: 1100px) {

  .p-mobile-promo__inner {
    grid-template-columns:
      minmax(300px, 1fr)
      minmax(280px, 0.82fr)
      minmax(300px, 1fr);
    min-height: 590px;
  }

  .p-mobile-promo__content {
    padding-bottom: 100px;
  }

  .p-mobile-promo__button {
    width: min(100%, 390px);
  }

  .p-mobile-promo__phone {
    width: 320px;
  }

  .p-mobile-promo__features {
    gap: 12px;
    padding-bottom: 102px;
  }

  .p-mobile-feature {
    min-height: 74px;
  }
}


/* =========================================================
   SMARTPHONE
========================================================= */

@media (max-width: 768px) {

  .p-mobile-promo {
    padding: 34px 14px 0;
  }

  .p-mobile-promo__inner {
    display: flex;
    flex-direction: column;

    min-height: 1180px;
    padding: 42px 20px 0;

    border-radius: 34px;
  }

  .p-mobile-promo__content {
    z-index: 30;
    width: 100%;
    max-width: none;
    padding-bottom: 24px;
    text-align: center;
  }

  .p-mobile-promo__label-wrap {
    margin-inline: auto;
    width: min(220px, 62%);
  }

  .p-mobile-promo__title span {
    font-size: clamp(2.8rem, 10vw, 4rem);
  }

  .p-mobile-promo__title strong {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .p-mobile-promo__lead {
    font-size: 0.94rem;
  }

  .p-mobile-promo__lead br {
    display: none;
  }

  .p-mobile-promo__button {
    width: min(100%, 420px);
    min-height: 62px;
    margin-inline: auto;
    padding: 12px 22px 12px 24px;
    font-size: 0.92rem;
  }

  .p-mobile-promo__phone {
    top: 500px;
    bottom: auto;
    left: 50%;

    width: min(90%, 380px);
    min-width: 0;

    transform: translate(-50%, 68%);
  }

  .p-mobile-promo__phone.is-visible {
    transform: translate(-50%, 0);
  }

  .p-mobile-promo__features {
    order: 3;
    width: 100%;
    margin-top: 470px;
    padding-bottom: 164px;
  }

  .p-mobile-feature {
    grid-template-columns: 52px minmax(0, 1fr);
    min-height: 72px;
    padding: 12px 16px;
  }

  .p-mobile-feature__icon {
    width: 48px;
    height: 48px;
    font-size: 1.12rem;
  }

  .p-mobile-feature__text h3 {
    font-size: 1rem;
  }

  .p-mobile-feature__text p {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .p-mobile-promo__town {
    left: 50%;
    bottom: 0;
    width: 170%;
    transform: translateX(-50%);
  }

  .p-mobile-promo__deco {
    width: 82px;
  }
}

/* =========================================================
   JAPAN NETWORK
   全国で広がるみちまるの輪
========================================================= */

.p-japan-network {
  position: relative;
  padding:
    clamp(120px, 10vw, 180px)
    clamp(20px, 4vw, 60px);
}

.p-japan-network__inner {
  width: min(100%, 1500px);
  margin-inline: auto;
}

.p-japan-network__lead {
  margin:
    0
    auto
    clamp(38px, 4vw, 56px);
  text-align: center;
  color: var(--color-text-light);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  line-height: 2;
  letter-spacing: 0.04em;
}

.p-japan-network__map-wrap {
  position: relative;
}

.p-japan-network__map {
  position: relative;
  overflow: hidden;

  padding:
    clamp(28px, 2.8vw, 34px)
    clamp(28px, 2.8vw, 34px)
    clamp(42px, 4vw, 52px);

  border-radius: 42px;
  background:
    linear-gradient(
      180deg,
      #f4f5ec 0%,
      #efefe5 100%
    );

  border: 1px solid rgba(118, 125, 95, 0.08);
}

.p-japan-network__map-image {
  position: relative;
  overflow: hidden;

  border-radius: 28px;
  background: #f9f8f2;
}

.p-japan-network__map-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================================================
   MAP BAR
   位置の基準は「棒の足元中央」
========================================================= */

.p-map-bar {
  position: absolute;
  left: calc(var(--x) * 1%);
  top: calc(var(--y) * 1%);

  /*
   * 棒の足元中央が都道府県位置に来る
   */
  transform: translate(-50%, -100%);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;

  z-index: 5;
  pointer-events: none;
}

/* 数値 */
.p-map-bar__value {
  order: 1;

  display: inline-flex;
  align-items: baseline;
  gap: 2px;

  padding: 4px 10px 3px;

  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 4px 10px rgba(68, 55, 40, 0.08);

  color: #644632;
  line-height: 1;
  white-space: nowrap;
}

.p-map-bar__value span {
  font-size: clamp(0.8rem, 0.9vw, 1rem);
  font-weight: 700;
}

.p-map-bar__value small {
  font-size: 0.72rem;
  font-weight: 700;
}

/* 棒の入れ物 */
.p-map-bar__columns {
  order: 2;

  display: flex;
  align-items: flex-end;
  justify-content: center;

  width: 26px;
  height: var(--bar-height);
}

/* 1本の太い棒 */
.p-map-bar__column {
  display: block;
  width: 14px;
  height: 100%;

  border-radius: 999px 999px 3px 3px;

  background:
    linear-gradient(
      180deg,
      #e58f3c 0%,
      #d6664a 100%
    );

  box-shadow:
    0 6px 12px rgba(182, 96, 62, 0.18);

  clip-path: inset(100% 0 0 0);
  transition:
    clip-path 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 県名 */
.p-map-bar__name {
  order: 3;

  color: #49523d;
  font-family: var(--font-round);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  text-align: center;
}

/* JS起動後だけ下から伸ばす */
.p-japan-network__map.is-animation-ready .p-map-bar.is-visible .p-map-bar__column {
  clip-path: inset(0 0 0 0);
}

/* JSが効かない場合でも表示 */
.p-japan-network__map:not(.is-animation-ready) .p-map-bar__column {
  clip-path: inset(0 0 0 0);
}

/* 数値は少し遅れて出す */
.p-japan-network__map.is-animation-ready .p-map-bar__value,
.p-japan-network__map.is-animation-ready .p-map-bar__name {
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.45s ease 0.55s,
    transform 0.45s ease 0.55s;
}

.p-japan-network__map.is-animation-ready .p-map-bar.is-visible .p-map-bar__value,
.p-japan-network__map.is-animation-ready .p-map-bar.is-visible .p-map-bar__name {
  opacity: 1;
  transform: translateY(0);
}

/* 注釈 */
.p-japan-network__note {
  margin: 16px 8px 0 0;
  text-align: right;
  color: #7b7a67;
  font-size: 0.8rem;
  line-height: 1.6;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {
  .p-japan-network__map {
    padding: 24px 24px 42px;
    border-radius: 30px;
  }

  .p-map-bar__columns {
    width: 22px;
  }

  .p-map-bar__column {
    width: 12px;
  }

  .p-map-bar__name {
    font-size: 0.64rem;
  }
}

/* =========================================================
   SP
========================================================= */

@media (max-width: 768px) {
  .p-japan-network {
    padding: 100px 20px;
  }

  .p-japan-network__lead {
    text-align: left;
    line-height: 1.9;
  }

  .p-japan-network__map {
    padding: 16px 16px 34px;
    border-radius: 24px;
  }

  .p-japan-network__map-image {
    border-radius: 18px;
  }

  .p-map-bar__value {
    padding: 3px 7px;
  }

  .p-map-bar__value span {
    font-size: 0.68rem;
  }

  .p-map-bar__value small {
    font-size: 0.58rem;
  }

  .p-map-bar__columns {
    width: 18px;
  }

  .p-map-bar__column {
    width: 9px;
  }

  .p-map-bar__name {
    font-size: 0.52rem;
  }

  .p-japan-network__note {
    font-size: 0.7rem;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .p-map-bar__column {
    transform:
      scaleY(1);

    transition:
      none;
  }


  .p-map-bar__value {
    opacity:
      1;

    transform:
      none;

    transition:
      none;
  }

}
/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .p-mobile-promo__phone {
    opacity: 1;
    transform: translate(-50%, 0);
    transition: none;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .p-possibility-card,
  .p-possibility-card__image img,
  .p-possibility-card__icon,
  .p-possibility-card.js-reveal {
    transition:
      none;
  }

}

/* =========================================================
   PREVIEW SWITCH
========================================================= */

.bg-preview-switch {
  position: fixed;
  z-index: 99999;

  right: 20px;
  bottom: 20px;

  display: flex;
  gap: 6px;

  padding: 6px;

  border:
    1px solid
    rgba(0, 0, 0, 0.08);

  border-radius: 9999px;

  background:
    rgba(255, 255, 255, 0.92);

  box-shadow:
    0 8px 30px
    rgba(0, 0, 0, 0.12);

  backdrop-filter: blur(10px);
}


.bg-preview-switch__button {
  appearance: none;

  min-height: 40px;

  padding:
    8px
    16px;

  border: 0;

  border-radius: 9999px;

  color: #4a4039;

  background: transparent;

  font-family:
    "Noto Sans JP",
    sans-serif;

  font-size: 13px;

  font-weight: 700;

  cursor: pointer;

  transition:
    color 0.25s ease,
    background-color 0.25s ease;
}


.bg-preview-switch__button.is-active {
  color: #ffffff;

  background: #ec651e;
}


/* SP */
@media (max-width: 576px) {

  .bg-preview-switch {
    right: 10px;
    bottom: 10px;
  }


  .bg-preview-switch__button {
    padding:
      7px
      12px;

    font-size: 11px;
  }

}

/* =========================================================
   JAPAN NETWORK GRAPH
   棒グラフ表示 最終修正版
========================================================= */

/* グラフ本体 */
.p-map-bar__columns {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
  gap: 3px !important;

  width: auto !important;
  height: var(--bar-height) !important;

  overflow: visible !important;
}


/* 棒 共通 */
.p-map-bar__column {
  display: block !important;

  width: 9px !important;
  min-width: 9px !important;

  opacity: 1 !important;

  /*
   * 古いscaleY(0)を完全解除
   */
  transform: none !important;

  transform-origin: center bottom !important;

  border-radius:
    999px 999px 2px 2px !important;

  /*
   * 最初は下から隠す
   */
  clip-path:
    inset(100% 0 0 0);

  transition:
    clip-path 1.15s
    cubic-bezier(
      0.16,
      1,
      0.3,
      1
    );
}


/* 左の棒 */
.p-map-bar__column--1 {
  height: 68% !important;

  background:
    #efad3a !important;

  transition-delay:
    0.05s;
}


/* 真ん中の棒 */
.p-map-bar__column--2 {
  height: 100% !important;

  background:
    #dc684c !important;

  transition-delay:
    0.12s;
}


/* 右の棒 */
.p-map-bar__column--3 {
  height: 82% !important;

  background:
    #7fa469 !important;

  transition-delay:
    0.19s;
}


/* =========================================================
   表示時
========================================================= */

.p-map-bar.is-visible
.p-map-bar__column {
  clip-path:
    inset(0 0 0 0);
}


/* =========================================================
   JavaScriptが動かなかった場合でも表示
========================================================= */

.p-japan-network__map:not(.is-animation-ready)
.p-map-bar__column {
  clip-path:
    inset(0 0 0 0);
}


/* =========================================================
   数値
========================================================= */

.p-map-bar__value {
  display: flex !important;
  align-items: baseline !important;
  gap: 2px !important;

  opacity: 1;

  transform: none;

  visibility: visible !important;
}


/* JSアニメーション開始時 */
.p-japan-network__map.is-animation-ready
.p-map-bar__value {
  opacity: 0;

  transform:
    translateY(6px);

  transition:
    opacity 0.4s ease 0.7s,
    transform 0.4s ease 0.7s;
}


/* 表示 */
.p-japan-network__map.is-animation-ready
.p-map-bar.is-visible
.p-map-bar__value {
  opacity: 1;

  transform:
    translateY(0);
}


/* =========================================================
   県名
========================================================= */

.p-map-bar__name {
  display: block !important;

  margin-top: 6px;

  color: #59654f;

  font-family:
    var(--font-round);

  font-size:
    0.7rem;

  font-weight: 700;

  line-height: 1;

  white-space: nowrap;

  visibility: visible !important;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .p-map-bar__column {
    clip-path:
      inset(0 0 0 0) !important;

    transition:
      none !important;
  }

}

/* =========================================================
   BLOG
   活動実績
========================================================= */

.p-blog {
  position: relative;

  padding:
    clamp(110px, 9vw, 170px)
    clamp(24px, 5vw, 80px)
    clamp(120px, 10vw, 180px);

  background:
    transparent;
}


/* =========================================================
   INNER
========================================================= */

.p-blog__inner {
  width:
    min(
      100%,
      1500px
    );

  margin-inline:
    auto;
}


/* =========================================================
   TITLE
========================================================= */

.p-blog
.c-section-title__ja span {
  font-size:
    0.6em;

  font-weight:
    500;

  letter-spacing:
    0.05em;
}


/* =========================================================
   GRID
========================================================= */

.p-blog__grid {
  display:
    grid;

  grid-template-columns:
    repeat(
      4,
      minmax(0, 1fr)
    );

  gap:
    clamp(
      20px,
      2vw,
      32px
    );

  margin-top:
    clamp(
      50px,
      5vw,
      75px
    );
}


/* =========================================================
   CARD
========================================================= */

.p-blog-card {
  min-width: 0;
}


.p-blog-card__link {
  display:
    block;

  color:
    inherit;

  text-decoration:
    none;
}


/* =========================================================
   IMAGE
========================================================= */

.p-blog-card__image {
  position:
    relative;

  overflow:
    hidden;

  aspect-ratio:
    4 / 3;

  border-radius:
    22px 18px 26px 16px
    /
    18px 24px 20px 28px;

  background:
    #f0eee6;
}


/*
 * 少しずつ形を変える
 */
.p-blog-card:nth-child(2)
.p-blog-card__image {
  border-radius:
    18px 28px 18px 24px
    /
    24px 18px 28px 20px;
}


.p-blog-card:nth-child(3)
.p-blog-card__image {
  border-radius:
    28px 18px 24px 20px
    /
    18px 26px 20px 28px;
}


.p-blog-card:nth-child(4)
.p-blog-card__image {
  border-radius:
    20px 26px 18px 30px
    /
    28px 18px 26px 20px;
}


.p-blog-card__image img {
  display:
    block;

  width:
    100%;

  height:
    100%;

  object-fit:
    cover;

  transition:
    transform
    0.8s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    );
}


/* =========================================================
   PLACEHOLDER
========================================================= */

.p-blog-card__image-placeholder {
  display:
    flex;

  align-items:
    center;

  justify-content:
    center;

  width:
    100%;

  height:
    100%;

  background:
    linear-gradient(
      135deg,
      #f5eadc,
      #e8efdf
    );

  color:
    #8a806f;

  font-family:
    var(--font-round);

  font-size:
    0.8rem;

  font-weight:
    700;

  letter-spacing:
    0.12em;
}


/* =========================================================
   CATEGORY
========================================================= */

.p-blog-card__category {
  position:
    absolute;

  top:
    12px;

  left:
    12px;

  display:
    inline-flex;

  align-items:
    center;

  min-height:
    26px;

  padding:
    5px
    12px;

  color:
    #ffffff;

  font-family:
    var(--font-round);

  font-size:
    0.68rem;

  font-weight:
    700;

  line-height:
    1;

  letter-spacing:
    0.04em;

  border-radius:
    999px;

  background:
    #e56a46;

  box-shadow:
    0 5px 12px
    rgba(105, 50, 30, 0.12);
}


/*
 * カードごとに微妙に色変化
 */

.p-blog-card:nth-child(2)
.p-blog-card__category {
  background:
    #e38b42;
}


.p-blog-card:nth-child(3)
.p-blog-card__category {
  background:
    #7c9d70;
}


.p-blog-card:nth-child(4)
.p-blog-card__category {
  background:
    #d97b58;
}


/* =========================================================
   CONTENT
========================================================= */

.p-blog-card__content {
  padding:
    16px
    4px
    0;
}


/* =========================================================
   DATE
========================================================= */

.p-blog-card__date {
  display:
    block;

  margin-bottom:
    8px;

  color:
    #83796f;

  font-family:
    var(--font-round);

  font-size:
    0.72rem;

  font-weight:
    500;

  letter-spacing:
    0.04em;
}


/* =========================================================
   TITLE
========================================================= */

.p-blog-card__title {
  display:
    -webkit-box;

  overflow:
    hidden;

  margin:
    0;

  color:
    #443b34;

  font-family:
    var(--font-round);

  font-size:
    clamp(
      0.92rem,
      1vw,
      1.05rem
    );

  font-weight:
    700;

  line-height:
    1.75;

  letter-spacing:
    0.025em;

  -webkit-box-orient:
    vertical;

  -webkit-line-clamp:
    2;
}


/* =========================================================
   HOVER
========================================================= */

@media (hover: hover) {

  .p-blog-card__link:hover
  .p-blog-card__image img {
    transform:
      scale(1.055);
  }


  .p-blog-card__link:hover
  .p-blog-card__title {
    color:
      #dd6746;
  }

}


/* =========================================================
   MORE
========================================================= */

.p-blog__more {
  display:
    flex;

  justify-content:
    center;

  margin-top:
    clamp(
      55px,
      5vw,
      80px
    );
}


.p-blog-more {
  position:
    relative;

  display:
    inline-flex;

  align-items:
    center;

  gap:
    22px;

  padding:
    12px
    4px;

  color:
    #514a43;

  text-decoration:
    none;
}


.p-blog-more__text {
  font-family:
    var(--font-round);

  font-size:
    0.85rem;

  font-weight:
    700;

  letter-spacing:
    0.18em;
}


/* =========================================================
   MORE ARROW
========================================================= */

.p-blog-more__arrow {
  position:
    relative;

  display:
    block;

  width:
    76px;

  height:
    14px;
}


.p-blog-more__arrow i {
  position:
    absolute;

  top:
    50%;

  right:
    0;

  width:
    100%;

  height:
    1px;

  background:
    #d96a49;

  transform:
    translateY(-50%);

  transform-origin:
    right center;

  transition:
    transform
    0.45s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    );
}


/* 矢印先端 */
.p-blog-more__arrow i::after {
  content:
    "";

  position:
    absolute;

  top:
    -4px;

  right:
    0;

  width:
    9px;

  height:
    9px;

  border-top:
    1px solid
    #d96a49;

  border-right:
    1px solid
    #d96a49;

  transform:
    rotate(45deg);
}


@media (hover: hover) {

  .p-blog-more:hover
  .p-blog-more__arrow i {
    transform:
      translate(10px, -50%);
  }

}


/* =========================================================
   EMPTY
========================================================= */

.p-blog__empty {
  margin:
    50px
    0
    0;

  text-align:
    center;

  color:
    #7b746d;

  font-size:
    0.9rem;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

  .p-blog__grid {
    grid-template-columns:
      repeat(
        2,
        minmax(0, 1fr)
      );

    gap:
      42px
      24px;
  }

}


/* =========================================================
   SMARTPHONE
========================================================= */

@media (max-width: 576px) {

  .p-blog {
    padding:
      90px
      18px
      110px;
  }


  .p-blog__grid {
    grid-template-columns:
      1fr;

    gap:
      40px;

    margin-top:
      45px;
  }


  .p-blog-card__image {
    aspect-ratio:
      16 / 10;
  }


  .p-blog-card__content {
    padding-top:
      13px;
  }


  .p-blog-card__title {
    font-size:
      0.96rem;
  }


  .p-blog__more {
    margin-top:
      55px;
  }


  .p-blog-more__arrow {
    width:
      65px;
  }

}

/* =========================================================
   SP GLOBAL NAV
========================================================= */

@media (max-width: 768px) {

  .global-nav {
    position: fixed;

    top: 0;
    right: 0;

    z-index: 9998;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100dvh;

    padding:
      100px
      28px
      50px;

    overflow-y: auto;

    background:
      rgba(255, 250, 241, 0.98);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transform:
      translateY(-15px);

    transition:
      opacity 0.35s ease,
      visibility 0.35s ease,
      transform 0.45s
      cubic-bezier(
        0.22,
        1,
        0.36,
        1
      );
  }


  /* JSで付与 */
  .global-nav.is-active {
    opacity: 1;
    visibility: visible;

    pointer-events: auto;

    transform:
      translateY(0);
  }


  .global-nav__list {
    display: flex;

    flex-direction: column;

    width: min(100%, 400px);

    margin: 0;
    padding: 0;

    list-style: none;
  }


  .global-nav__list li {
    width: 100%;

    margin: 0;

    border-bottom:
      1px solid
      rgba(70, 62, 55, 0.12);
  }


  .global-nav__list li:first-child {
    border-top:
      1px solid
      rgba(70, 62, 55, 0.12);
  }


  .global-nav__list a {
    position: relative;

    display: flex;

    align-items: center;

    width: 100%;
    min-height: 68px;

    padding:
      12px
      42px
      12px
      8px;

    color:
      #453d36;

    font-family:
      var(--font-round);

    font-size:
      1rem;

    font-weight:
      700;

    letter-spacing:
      0.06em;

    text-decoration:
      none;
  }


  /* 矢印 */
  .global-nav__list a::after {
    content: "→";

    position: absolute;

    top: 50%;
    right: 8px;

    color:
      #df6845;

    font-size:
      1.1rem;

    transform:
      translateY(-50%);
  }


  /* メニューOPEN時は背景スクロール停止 */
  body.is-menu-open {
    overflow: hidden;
  }

}

/* =========================================================
   SP MENU FIX
   下線のリセット ＋ 閉じるボタン修正
========================================================= */

@media (max-width: 768px) {

  /* =====================================================
     MENU LINK
     PC用の装飾を完全リセット
  ===================================================== */

  .global-nav__list a {
    position: relative !important;

    display: flex !important;
    align-items: center !important;

    width: 100% !important;
    min-height: 68px !important;

    padding:
      16px
      44px
      16px
      8px !important;

    color: #453d36 !important;

    text-decoration: none !important;

    border: 0 !important;
    background: transparent !important;
  }


  /* -----------------------------------------------------
     PC側の横線・ホバー装飾を完全解除
  ----------------------------------------------------- */

  .global-nav__list a::before {
    content: none !important;

    display: none !important;

    width: 0 !important;
    height: 0 !important;

    border: 0 !important;
    background: none !important;
  }


  .global-nav__list a::after {
    content: "→" !important;

    position: absolute !important;

    top: 50% !important;
    right: 8px !important;
    bottom: auto !important;
    left: auto !important;

    display: block !important;

    width: auto !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #e56745 !important;

    font-size: 1rem !important;
    font-weight: 400 !important;
    line-height: 1 !important;

    border: 0 !important;
    border-radius: 0 !important;

    background: none !important;

    opacity: 1 !important;

    transform:
      translateY(-50%) !important;

    transition:
      transform 0.3s ease !important;
  }


  /* =====================================================
     LI BORDER
     区切り線は薄いグレーだけ
  ===================================================== */

  .global-nav__list li {
    position: relative !important;

    width: 100% !important;

    border: 0 !important;

    border-bottom:
      1px solid
      rgba(69, 61, 54, 0.12) !important;
  }


  .global-nav__list li:first-child {
    border-top:
      1px solid
      rgba(69, 61, 54, 0.12) !important;
  }


  /* =====================================================
     MENU BUTTON
     必ずメニューより前面へ
  ===================================================== */

  .js-menu-button {
    position: fixed !important;

    top: 16px !important;
    right: 18px !important;

    z-index: 10020 !important;

    display: flex !important;

    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 6px !important;

    width: 48px !important;
    height: 48px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 50% !important;

    box-shadow:
      0 5px 18px
      rgba(73, 52, 41, 0.10) !important;

    opacity: 1 !important;
    visibility: visible !important;

    cursor: pointer !important;
  }


  /* =====================================================
     HAMBURGER LINES
  ===================================================== */

  .js-menu-button span {
    display: block !important;

    width: 24px !important;
    height: 2px !important;

    margin: 0 !important;

    border: 0 !important;
    border-radius: 999px !important;

    opacity: 1 !important;

    transform-origin:
      center !important;

    transition:
      transform 0.35s ease,
      opacity 0.25s ease !important;
  }


  /* =====================================================
     CLOSE X
  ===================================================== */

  .js-menu-button.is-active span:nth-child(1) {
    transform:
      translateY(8px)
      rotate(45deg) !important;
  }


  .js-menu-button.is-active span:nth-child(2) {
    opacity: 0 !important;
  }


  .js-menu-button.is-active span:nth-child(3) {
    transform:
      translateY(-8px)
      rotate(-45deg) !important;
  }


  /* =====================================================
     MENU PANEL
  ===================================================== */

  .global-nav {
    z-index: 10000 !important;
  }


  .global-nav.is-active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

}

/* =========================================================
   SP HEADER / MENU FINAL FIX
========================================================= */

@media (max-width: 768px) {

  /* =====================================================
     HEADERを上部固定
  ===================================================== */

  .site-header,
  .l-header,
  header {
    position: fixed !important;

    top: 0 !important;
    right: 0 !important;
    left: 0 !important;

    z-index: 20000 !important;

    width: 100% !important;

    background:
      rgba(255, 250, 241, 0.96) !important;

    backdrop-filter:
      blur(10px);

    -webkit-backdrop-filter:
      blur(10px);

    box-shadow:
      0 4px 18px
      rgba(68, 52, 41, 0.06);
  }


  /* ヘッダー内部 */
  .site-header__inner,
  .l-header__inner,
  .header-inner {
    position: relative !important;

    z-index: 20002 !important;

    min-height: 72px !important;
  }


  /* =====================================================
     メニュー本体
  ===================================================== */

  .global-nav {
    position: fixed !important;

    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;

    z-index: 19990 !important;

    width: 100% !important;
    height: 100dvh !important;

    padding:
      110px
      28px
      50px !important;

    overflow-y: auto !important;

    background:
      rgba(255, 250, 241, 0.99) !important;

    opacity: 0 !important;
    visibility: hidden !important;

    pointer-events: none !important;

    transform:
      translateY(-10px) !important;

    transition:
      opacity 0.35s ease,
      visibility 0.35s ease,
      transform 0.4s
      cubic-bezier(
        0.22,
        1,
        0.36,
        1
      ) !important;
  }


  .global-nav.is-active {
    opacity: 1 !important;

    visibility: visible !important;

    pointer-events: auto !important;

    transform:
      translateY(0) !important;
  }


  /* =====================================================
     MENU BUTTON
  ===================================================== */

  .js-menu-button {
    position: fixed !important;

    top: 12px !important;
    right: 16px !important;

    z-index: 20010 !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    width: 48px !important;
    height: 48px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 50% !important;

    box-shadow:
      0 5px 16px
      rgba(70, 50, 38, 0.10) !important;

    cursor: pointer !important;

    opacity: 1 !important;
    visibility: visible !important;
  }


  /* =====================================================
     3本線を絶対配置に変更
     これで×が崩れない
  ===================================================== */

  .js-menu-button span {
    position: absolute !important;

    top: 50% !important;
    left: 50% !important;

    display: block !important;

    width: 24px !important;
    height: 2px !important;

    margin: 0 !important;

    border: 0 !important;
    border-radius: 999px !important;


    transform-origin:
      center center !important;

    transition:
      transform 0.35s ease,
      opacity 0.25s ease !important;
  }


  /* 1本目 */
  .js-menu-button span:nth-child(1) {
    transform:
      translate(-50%, -8px) !important;
  }


  /* 2本目 */
  .js-menu-button span:nth-child(2) {
    transform:
      translate(-50%, -50%) !important;
  }


  /* 3本目 */
  .js-menu-button span:nth-child(3) {
    transform:
      translate(-50%, 6px) !important;
  }


  /* =====================================================
     OPEN時：確実な×
  ===================================================== */

  .js-menu-button.is-active span:nth-child(1) {
    transform:
      translate(-50%, -50%)
      rotate(45deg) !important;
  }


  .js-menu-button.is-active span:nth-child(2) {
    opacity: 0 !important;

    transform:
      translate(-50%, -50%) !important;
  }


  .js-menu-button.is-active span:nth-child(3) {
    transform:
      translate(-50%, -50%)
      rotate(-45deg) !important;
  }


  /* =====================================================
     BODY
  ===================================================== */

  body.is-menu-open {
    overflow: hidden !important;
  }


  /* =====================================================
     固定ヘッダー分の余白
  ===================================================== */

  body {
    padding-top:
      72px;
  }

}

/* =========================================================
   LOWER PAGE
   PRIVACY / TERMS / CONTACT
========================================================= */

.p-lower-page {
  overflow: hidden;
}


/* =========================================================
   LOWER HERO
========================================================= */

.p-lower-hero {
  position: relative;

  padding:
    clamp(150px, 13vw, 220px)
    24px
    clamp(90px, 8vw, 130px);

  text-align: center;
}


.p-lower-hero::before,
.p-lower-hero::after {
  content: "";

  position: absolute;

  border-radius: 50%;

  pointer-events: none;

  filter: blur(1px);
}


.p-lower-hero::before {
  top: 80px;
  left: -100px;

  width: 300px;
  height: 220px;

  background:
    rgba(235, 178, 120, 0.09);

  transform:
    rotate(-16deg);
}


.p-lower-hero::after {
  right: -100px;
  bottom: 20px;

  width: 320px;
  height: 220px;

  background:
    rgba(126, 164, 106, 0.08);

  transform:
    rotate(18deg);
}


.p-lower-hero__inner {
  position: relative;

  z-index: 2;

  width:
    min(
      100%,
      1000px
    );

  margin-inline: auto;
}


.p-lower-hero__en {
  margin:
    0
    0
    18px;

  color:
    #df6845;

  font-family:
    var(--font-round);

  font-size:
    0.72rem;

  font-weight:
    700;

  letter-spacing:
    0.22em;
}


.p-lower-hero__title {
  margin:
    0;

  color:
    #443c36;

  font-family:
    var(--font-round);

  font-size:
    clamp(
      2.4rem,
      5vw,
      4.8rem
    );

  font-weight:
    700;

  line-height:
    1.3;

  letter-spacing:
    0.04em;
}


.p-lower-hero__lead {
  margin:
    clamp(
      28px,
      3vw,
      40px
    )
    0
    0;

  color:
    #746b64;

  font-size:
    clamp(
      0.92rem,
      1vw,
      1.05rem
    );

  line-height:
    2;

  letter-spacing:
    0.04em;
}


/* =========================================================
   POLICY
========================================================= */

.p-policy {
  padding:
    0
    24px
    clamp(
      120px,
      11vw,
      190px
    );
}


.p-policy__inner {
  width:
    min(
      100%,
      980px
    );

  margin-inline:
    auto;
}


.p-policy__intro {
  margin-bottom:
    clamp(
      65px,
      7vw,
      100px
    );

  padding:
    clamp(
      28px,
      4vw,
      48px
    );

  border-radius:
    38px 26px 42px 30px
    /
    30px 42px 28px 40px;

  background:
    #fff9f1;
}


.p-policy__intro p {
  margin:
    0;

  color:
    #625a54;

  font-size:
    0.95rem;

  line-height:
    2.1;
}


/* =========================================================
   POLICY BLOCK
========================================================= */

.p-policy-block {
  position: relative;

  padding:
    clamp(
      40px,
      5vw,
      65px
    )
    0;

  border-bottom:
    1px solid
    rgba(75, 66, 59, 0.12);
}


.p-policy-block__number {
  display:
    inline-block;

  margin-bottom:
    15px;

  color:
    #e36c49;

  font-family:
    var(--font-round);

  font-size:
    0.72rem;

  font-weight:
    700;

  letter-spacing:
    0.12em;
}


.p-policy-block h2 {
  margin:
    0
    0
    22px;

  color:
    #443c36;

  font-family:
    var(--font-round);

  font-size:
    clamp(
      1.25rem,
      2vw,
      1.7rem
    );

  font-weight:
    700;

  line-height:
    1.6;
}


.p-policy-block p {
  margin:
    0
    0
    16px;

  color:
    #655d57;

  font-size:
    0.94rem;

  line-height:
    2;
}


.p-policy-block p:last-child {
  margin-bottom:
    0;
}


.p-policy-block ul {
  margin:
    20px
    0
    0;

  padding:
    0;

  list-style:
    none;
}


.p-policy-block li {
  position:
    relative;

  margin-bottom:
    12px;

  padding-left:
    24px;

  color:
    #655d57;

  font-size:
    0.94rem;

  line-height:
    1.8;
}


.p-policy-block li::before {
  content:
    "";

  position:
    absolute;

  top:
    0.75em;

  left:
    3px;

  width:
    6px;

  height:
    6px;

  border-radius:
    50%;

  background:
    #e36c49;
}


/* =========================================================
   POLICY CONTACT
========================================================= */

.p-policy-contact {
  margin-top:
    clamp(
      70px,
      7vw,
      110px
    );

  padding:
    clamp(
      45px,
      6vw,
      70px
    )
    30px;

  text-align:
    center;

  border-radius:
    46px 32px 52px 36px
    /
    38px 48px 34px 50px;

  background:
    #f5f0e5;
}


.p-policy-contact__label {
  margin:
    0
    0
    10px !important;

  color:
    #e36c49 !important;

  font-size:
    0.7rem !important;

  font-weight:
    700;

  letter-spacing:
    0.18em;
}


.p-policy-contact h2 {
  margin:
    0
    0
    18px;

  color:
    #443c36;

  font-family:
    var(--font-round);

  font-size:
    clamp(
      1.35rem,
      2vw,
      1.8rem
    );
}


.p-policy-contact p {
  color:
    #71675f;

  font-size:
    0.9rem;

  line-height:
    2;
}


.p-policy-contact__button {
  display:
    inline-flex;

  align-items:
    center;

  gap:
    30px;

  margin-top:
    25px;

  padding:
    14px
    28px;

  color:
    #fff;

  font-family:
    var(--font-round);

  font-size:
    0.88rem;

  font-weight:
    700;

  text-decoration:
    none;

  border-radius:
    999px;

  background:
    #df6845;

  transition:
    transform 0.35s ease;
}


@media (hover: hover) {

  .p-policy-contact__button:hover {
    transform:
      translateY(-3px);
  }

}


/* =========================================================
   CONTACT PAGE
========================================================= */

.p-contact-page {
  padding:
    0
    24px
    clamp(
      120px,
      11vw,
      190px
    );
}


.p-contact-page__inner {
  display:
    grid;

  grid-template-columns:
    minmax(280px, 0.8fr)
    minmax(500px, 1.2fr);

  gap:
    clamp(
      60px,
      8vw,
      120px
    );

  width:
    min(
      100%,
      1200px
    );

  margin-inline:
    auto;
}


/* =========================================================
   CONTACT INFO
========================================================= */

.p-contact-page__info {
  padding-top:
    30px;
}


.p-contact-page__label {
  margin:
    0
    0
    18px;

  color:
    #df6845;

  font-family:
    var(--font-round);

  font-size:
    0.72rem;

  font-weight:
    700;

  letter-spacing:
    0.2em;
}


.p-contact-page__info h2 {
  margin:
    0
    0
    35px;

  color:
    #443c36;

  font-family:
    var(--font-round);

  font-size:
    clamp(
      1.8rem,
      3vw,
      2.5rem
    );

  font-weight:
    700;

  line-height:
    1.55;
}


.p-contact-page__info > p:not(.p-contact-page__label) {
  margin:
    0
    0
    18px;

  color:
    #716860;

  font-size:
    0.94rem;

  line-height:
    2;
}


.p-contact-page__note {
  margin-top:
    45px;

  padding:
    25px;

  border-radius:
    26px 18px 30px 20px;

  background:
    #f7f1e7;
}


.p-contact-page__note span {
  display:
    block;

  margin-bottom:
    8px;

  color:
    #df6845;

  font-family:
    var(--font-round);

  font-size:
    0.8rem;

  font-weight:
    700;
}


.p-contact-page__note p {
  margin:
    0;

  color:
    #746b64;

  font-size:
    0.8rem;

  line-height:
    1.9;
}


/* =========================================================
   CONTACT FORM
========================================================= */

.p-contact-form {
  padding:
    clamp(
      30px,
      4vw,
      50px
    );

  border-radius:
    42px 30px 48px 34px
    /
    34px 46px 30px 44px;

  background:
    #fffaf2;

  box-shadow:
    0 18px 50px
    rgba(76, 57, 42, 0.06);
}


.c-contact-form__row {
  margin-bottom:
    30px;
}


.c-contact-form__label {
  display:
    flex;

  align-items:
    center;

  gap:
    8px;

  margin-bottom:
    10px;

  color:
    #50463f;

  font-family:
    var(--font-round);

  font-size:
    0.88rem;

  font-weight:
    700;
}


.c-contact-form__label span {
  padding:
    3px
    8px;

  color:
    #fff;

  font-size:
    0.62rem;

  border-radius:
    999px;

  background:
    #df6845;
}


.c-contact-form input[type="text"],
.c-contact-form input[type="email"],
.c-contact-form input[type="tel"],
.c-contact-form select,
.c-contact-form textarea {
  width:
    100%;

  padding:
    15px
    17px;

  color:
    #4f4741;

  font-size:
    0.92rem;

  border:
    1px solid
    rgba(79, 68, 58, 0.14);

  border-radius:
    12px;

  outline:
    none;

  background:
    #fff;

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}


.c-contact-form textarea {
  min-height:
    190px;

  resize:
    vertical;
}


.c-contact-form input:focus,
.c-contact-form select:focus,
.c-contact-form textarea:focus {
  border-color:
    #df6845;

  box-shadow:
    0 0 0 3px
    rgba(223, 104, 69, 0.08);
}


/* =========================================================
   PRIVACY CHECK
========================================================= */

.c-contact-form__privacy {
  margin-top:
    35px;

  color:
    #69615b;

  font-size:
    0.82rem;

  line-height:
    1.7;
}


.c-contact-form__privacy a {
  color:
    #df6845;
}


/* =========================================================
   SUBMIT
========================================================= */

.c-contact-form__submit {
  position:
    relative;

  width:
    min(
      100%,
      330px
    );

  margin:
    35px
    auto
    0;
}


.c-contact-form__submit input[type="submit"] {
  width:
    100%;

  min-height:
    58px;

  padding:
    14px
    60px
    14px
    30px;

  color:
    #fff;

  font-family:
    var(--font-round);

  font-size:
    0.95rem;

  font-weight:
    700;

  letter-spacing:
    0.05em;

  border:
    0;

  border-radius:
    999px;

  background:
    #df6845;

  cursor:
    pointer;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}


.c-contact-form__submit-arrow {
  position:
    absolute;

  top:
    50%;

  right:
    28px;

  color:
    #fff;

  transform:
    translateY(-50%);

  pointer-events:
    none;
}


@media (hover: hover) {

  .c-contact-form__submit:hover
  input[type="submit"] {

    transform:
      translateY(-2px);

    box-shadow:
      0 12px 25px
      rgba(223, 104, 69, 0.2);
  }

}


/* =========================================================
   TABLET / SP
========================================================= */

@media (max-width: 900px) {

  .p-contact-page__inner {
    grid-template-columns:
      1fr;

    gap:
      50px;
  }


  .p-contact-page__info {
    text-align:
      center;
  }


  .p-contact-page__note {
    width:
      min(
        100%,
        500px
      );

    margin:
      40px
      auto
      0;

    text-align:
      left;
  }

}


@media (max-width: 768px) {

  .p-lower-hero {
    padding:
      125px
      18px
      70px;
  }


  .p-lower-hero__lead br {
    display:
      none;
  }


  .p-policy,
  .p-contact-page {
    padding-inline:
      18px;
  }


  .p-policy__intro {
    padding:
      25px
      22px;

    border-radius:
      28px;
  }


  .p-policy-block {
    padding:
      38px
      0;
  }


  .p-policy-block h2 {
    font-size:
      1.2rem;
  }


  .p-contact-form {
    padding:
      28px
      20px;

    border-radius:
      30px;
  }

}

/* =========================================================
   COMPANY PAGE
   株式会社みちまる
========================================================= */


/* =========================================================
   COMPANY COMMON HEADING
========================================================= */

.p-company-heading {
  position: relative;
}

.p-company-heading--center {
  text-align: center;
}

.p-company-heading__en {
  margin: 0 0 12px;

  color: #df6845;

  font-family: var(--font-round);

  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;

  letter-spacing: 0.2em;
}

.p-company-heading__title {
  margin: 0;

  color: #453d36;

  font-family: var(--font-round);

  font-size:
    clamp(
      2rem,
      3.4vw,
      3.2rem
    );

  font-weight: 700;

  line-height: 1.35;

  letter-spacing: 0.04em;
}


/* =========================================================
   MESSAGE
========================================================= */

.p-company-message {
  position: relative;

  padding:
    20px
    clamp(22px, 5vw, 80px)
    clamp(130px, 10vw, 180px);
}

.p-company-message__inner {
  display: grid;

  grid-template-columns:
    minmax(300px, 0.72fr)
    minmax(0, 1.2fr);

  align-items: center;

  gap:
    clamp(
      60px,
      8vw,
      120px
    );

  width:
    min(
      100%,
      1180px
    );

  margin-inline: auto;
}


/* =========================================================
   PRESIDENT PHOTO
========================================================= */

.p-company-message__visual {
  position: relative;
}

.p-company-message__photo {
  position: relative;

  margin: 0;
}

.p-company-message__photo::before {
  content: "";

  position: absolute;

  z-index: -1;

  top: -24px;
  right: -28px;

  width: 95%;
  height: 95%;

  border-radius:
    52% 48% 58% 42%
    /
    46% 56% 44% 54%;

  background:
    #f2eadc;
}

.p-company-message__photo img {
  display: block;

  width: 100%;

  aspect-ratio: 4 / 5;

  object-fit: cover;

  border-radius:
    48% 52% 43% 57%
    /
    52% 44% 56% 48%;
}


/* =========================================================
   PRESIDENT PROFILE
========================================================= */

.p-company-message__profile {
  margin-top: 25px;

  text-align: center;

  color: #514840;
}

.p-company-message__profile span,
.p-company-message__profile small,
.p-company-message__profile strong {
  display: block;
}

.p-company-message__profile span {
  margin-bottom: 6px;

  font-size: 0.75rem;
  font-weight: 700;
}

.p-company-message__profile small {
  margin-bottom: 4px;

  font-size: 0.72rem;
}

.p-company-message__profile strong {
  font-family: var(--font-round);

  font-size: 1.25rem;
  font-weight: 700;

  letter-spacing: 0.1em;
}


/* =========================================================
   MESSAGE CONTENT
========================================================= */

.p-company-message__catch {
  margin:
    clamp(38px, 4vw, 52px)
    0
    35px;

  color: #453d36;

  font-family: var(--font-round);

  font-size:
    clamp(
      1.6rem,
      2.7vw,
      2.65rem
    );

  font-weight: 700;

  line-height: 1.6;

  letter-spacing: 0.035em;
}

.p-company-message__catch span {
  color: #df6845;
}

.p-company-message__text p {
  margin:
    0
    0
    21px;

  color: #6a625c;

  font-size:
    clamp(
      0.9rem,
      1vw,
      0.98rem
    );

  font-weight: 500;

  line-height: 2.05;

  letter-spacing: 0.02em;
}

.p-company-message__text p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   VISION
========================================================= */

.p-company-vision {
  position: relative;

  padding:
    clamp(110px, 9vw, 160px)
    clamp(22px, 5vw, 80px)
    clamp(130px, 10vw, 180px);

  background: #fffaf2;
}

.p-company-vision__inner {
  width:
    min(
      100%,
      1200px
    );

  margin-inline: auto;
}


/* =========================================================
   VISION STATEMENT
========================================================= */

.p-company-vision__statement {
  position: relative;

  overflow: hidden;

  margin-top:
    clamp(
      55px,
      6vw,
      85px
    );

  padding:
    clamp(
      50px,
      6vw,
      80px
    );

  border-radius:
    50px 38px 58px 44px
    /
    42px 56px 38px 60px;

  background: #ffffff;

  box-shadow:
    0 18px 50px
    rgba(74, 55, 42, 0.05);
}

.p-company-vision__statement::before {
  content: "";

  position: absolute;

  top: -120px;
  right: -80px;

  width: 340px;
  height: 340px;

  border-radius: 50%;

  background:
    rgba(
      111,
      159,
      96,
      0.07
    );
}

.p-company-vision__statement-small {
  position: relative;

  z-index: 2;

  margin:
    0
    0
    20px;

  color: #554c45;

  font-family: var(--font-round);

  font-size:
    clamp(
      1rem,
      1.4vw,
      1.25rem
    );

  font-weight: 700;

  letter-spacing: 0.07em;
}

.p-company-vision__statement h3 {
  position: relative;

  z-index: 2;

  margin: 0;

  color: #302c29;

  font-family: var(--font-round);

  font-size:
    clamp(
      2rem,
      4.5vw,
      4.6rem
    );

  font-weight: 700;

  line-height: 1.48;

  letter-spacing: 0.015em;
}

.p-company-vision__statement h3 span {
  color: #df6845;
}


/* =========================================================
   VISION DETAIL
========================================================= */

.p-company-vision-detail {
  position: relative;

  display: grid;

  grid-template-columns:
    70px
    minmax(0, 1fr)
    minmax(300px, 0.9fr);

  align-items: center;

  gap:
    clamp(
      30px,
      5vw,
      65px
    );

  margin-top:
    clamp(
      65px,
      7vw,
      100px
    );

  padding:
    clamp(
      40px,
      5vw,
      65px
    );

  border-radius:
    42px 28px 48px 34px
    /
    34px 46px 30px 44px;

  background:
    rgba(
      255,
      255,
      255,
      0.88
    );
}

.p-company-vision-detail--02 {
  border-radius:
    28px 48px 34px 44px
    /
    46px 32px 48px 30px;
}


/* =========================================================
   DETAIL NUMBER
========================================================= */

.p-company-vision-detail__number {
  align-self: start;

  color: #e16a47;

  font-family: var(--font-round);

  font-size:
    clamp(
      2rem,
      3vw,
      3rem
    );

  font-weight: 700;

  line-height: 1;
}


/* =========================================================
   DETAIL TEXT
========================================================= */

.p-company-vision-detail__label {
  margin:
    0
    0
    10px;

  color: #8d857c;

  font-family: var(--font-round);

  font-size: 0.65rem;
  font-weight: 700;

  letter-spacing: 0.16em;
}

.p-company-vision-detail__content h3 {
  margin:
    0
    0
    28px;

  color: #453d36;

  font-family: var(--font-round);

  font-size:
    clamp(
      1.45rem,
      2.5vw,
      2.3rem
    );

  font-weight: 700;

  line-height: 1.6;
}

.p-company-vision-detail__content p {
  margin:
    0
    0
    16px;

  color: #70665e;

  font-size: 0.91rem;

  line-height: 2;
}


/* =========================================================
   VISION CYCLE
========================================================= */

.p-vision-cycle {
  display: flex;

  flex-wrap: wrap;

  align-items: center;
  justify-content: center;

  gap: 9px;

  padding:
    35px
    20px;

  border-radius:
    48% 52% 44% 56%
    /
    52% 43% 57% 48%;

  background:
    #f2eee1;
}

.p-vision-cycle__item {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 76px;
  height: 76px;

  color: #51483f;

  font-family: var(--font-round);

  font-size: 0.8rem;
  font-weight: 700;

  border-radius: 50%;

  background: #ffffff;

  box-shadow:
    0 7px 18px
    rgba(75, 56, 41, 0.06);
}

.p-vision-cycle__arrow {
  color: #df6845;

  font-size: 1.25rem;
}


/* =========================================================
   CAPITAL
========================================================= */

.p-vision-capital {
  padding:
    28px
    20px;

  text-align: center;
}

.p-vision-capital__top {
  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  gap: 8px;
}

.p-vision-capital__top span {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 58px;
  height: 58px;

  color: #ffffff;

  font-family: var(--font-round);

  font-size: 0.72rem;
  font-weight: 700;

  border-radius: 50%;

  background: #e58a56;
}

.p-vision-capital__flow {
  display: block;

  margin:
    14px
    auto;

  color: #df6845;

  font-size: 1.5rem;
}

.p-vision-capital__center {
  padding:
    24px
    20px;

  border-radius: 999px;

  background: #6e9c6d;

  color: #ffffff;
}

.p-vision-capital__center strong,
.p-vision-capital__center span {
  display: block;
}

.p-vision-capital__center strong {
  margin-bottom: 5px;

  font-family: var(--font-round);

  font-size: 1rem;
}

.p-vision-capital__center span {
  font-size: 0.74rem;
}

.p-vision-capital__bottom {
  padding:
    17px
    20px;

  color: #554a41;

  font-family: var(--font-round);

  font-size: 0.85rem;
  font-weight: 700;

  border-radius: 999px;

  background: #f0c44e;
}


/* =========================================================
   VALUES
========================================================= */

.p-company-values {
  display: grid;

  grid-template-columns:
    repeat(
      3,
      minmax(0, 1fr)
    );

  gap:
    clamp(
      20px,
      3vw,
      35px
    );

  margin-top:
    clamp(
      70px,
      7vw,
      100px
    );
}

.p-company-value {
  padding:
    36px
    30px;

  border-radius:
    32px 22px 38px 28px
    /
    26px 38px 28px 34px;

  background: #ffffff;

  box-shadow:
    0 15px 40px
    rgba(77, 57, 41, 0.04);
}

.p-company-value:nth-child(2) {
  border-radius:
    22px 40px 26px 34px
    /
    38px 26px 40px 28px;
}

.p-company-value:nth-child(3) {
  border-radius:
    40px 26px 34px 22px
    /
    28px 40px 24px 38px;
}

.p-company-value__number {
  display: block;

  margin-bottom: 25px;

  color: #df6845;

  font-family: var(--font-round);

  font-size: 0.7rem;
  font-weight: 700;

  letter-spacing: 0.12em;
}

.p-company-value h3 {
  margin:
    0
    0
    15px;

  color: #443c35;

  font-family: var(--font-round);

  font-size: 1.4rem;
}

.p-company-value p {
  margin: 0;

  color: #71685f;

  font-size: 0.88rem;

  line-height: 1.9;
}


/* =========================================================
   COMPANY PROFILE
========================================================= */

.p-company-profile {
  padding:
    clamp(120px, 10vw, 180px)
    clamp(22px, 5vw, 80px);
}

.p-company-profile__inner {
  width:
    min(
      100%,
      1050px
    );

  margin-inline: auto;
}

.p-company-profile__box {
  margin-top:
    clamp(
      50px,
      6vw,
      75px
    );

  padding:
    clamp(
      35px,
      5vw,
      60px
    );

  border-radius:
    44px 30px 50px 36px
    /
    34px 48px 30px 46px;

  background: #f7f2e8;
}

.p-company-profile__list {
  margin: 0;
}

.p-company-profile__row {
  display: grid;

  grid-template-columns:
    180px
    minmax(0, 1fr);

  gap: 32px;

  padding:
    25px
    0;

  border-bottom:
    1px solid
    rgba(72, 63, 55, 0.12);
}

.p-company-profile__row:first-child {
  padding-top: 0;
}

.p-company-profile__row:last-child {
  padding-bottom: 0;

  border-bottom: 0;
}

.p-company-profile__row dt {
  color: #df6845;

  font-family: var(--font-round);

  font-size: 0.84rem;
  font-weight: 700;
}

.p-company-profile__row dd {
  margin: 0;

  color: #5f5750;

  font-size: 0.92rem;

  line-height: 1.9;
}

.p-company-profile__row ul {
  margin: 0;
  padding: 0;

  list-style: none;
}

.p-company-profile__row li {
  position: relative;

  padding-left: 20px;
}

.p-company-profile__row li::before {
  content: "";

  position: absolute;

  top: 0.8em;
  left: 2px;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: #df6845;
}

.p-company-profile__row a {
  color: #df6845;

  text-decoration: none;
}


/* =========================================================
   CONTACT
========================================================= */

.p-company-contact {
  padding:
    0
    clamp(22px, 5vw, 80px)
    clamp(130px, 10vw, 190px);
}

.p-company-contact__inner {
  width:
    min(
      100%,
      1100px
    );

  margin-inline: auto;

  padding:
    clamp(
      55px,
      7vw,
      90px
    )
    30px;

  text-align: center;

  border-radius:
    58px 42px 64px 46px
    /
    46px 60px 42px 58px;

  background:
    linear-gradient(
      135deg,
      #ea6e4a,
      #df6040
    );

  color: #ffffff;
}

.p-company-contact__en {
  margin:
    0
    0
    15px;

  font-family: var(--font-round);

  font-size: 0.7rem;
  font-weight: 700;

  letter-spacing: 0.2em;
}

.p-company-contact h2 {
  margin:
    0
    0
    24px;

  color: #ffffff;

  font-family: var(--font-round);

  font-size:
    clamp(
      1.8rem,
      3.5vw,
      3rem
    );

  line-height: 1.55;
}

.p-company-contact p {
  margin: 0;

  color:
    rgba(
      255,
      255,
      255,
      0.94
    );

  font-size: 0.9rem;

  line-height: 1.9;
}

.p-company-contact__button {
  display: inline-flex;

  align-items: center;
  justify-content: space-between;

  gap: 40px;

  min-width: 270px;

  margin-top: 35px;

  padding:
    16px
    28px;

  color: #df6845;

  font-family: var(--font-round);

  font-size: 0.9rem;
  font-weight: 700;

  text-decoration: none;

  border-radius: 999px;

  background: #ffffff;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.p-company-contact__arrow {
  transition:
    transform 0.35s ease;
}

@media (hover: hover) {

  .p-company-contact__button:hover {
    transform:
      translateY(-3px);

    box-shadow:
      0 15px 30px
      rgba(82, 35, 21, 0.12);
  }

  .p-company-contact__button:hover
  .p-company-contact__arrow {
    transform:
      translateX(5px);
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 960px) {

  .p-company-message__inner {
    grid-template-columns:
      minmax(230px, 0.65fr)
      minmax(0, 1fr);

    gap: 50px;
  }

  .p-company-vision-detail {
    grid-template-columns:
      55px
      minmax(0, 1fr);

  }

  .p-company-vision-detail__illustration {
    grid-column:
      2;

    width:
      min(
        100%,
        500px
      );
  }

}


/* =========================================================
   SMARTPHONE
========================================================= */

@media (max-width: 768px) {

  .p-company-message {
    padding:
      10px
      18px
      110px;
  }


  .p-company-message__inner {
    grid-template-columns:
      1fr;

    gap: 55px;
  }


  .p-company-message__visual {
    width:
      min(
        82%,
        360px
      );

    margin-inline: auto;
  }


  .p-company-message__catch br {
    display: none;
  }


  .p-company-message__text p {
    font-size: 0.9rem;
  }


  .p-company-vision {
    padding:
      95px
      18px
      110px;
  }


  .p-company-vision__statement {
    padding:
      38px
      24px;

    border-radius: 32px;
  }


  .p-company-vision__statement h3 {
    font-size:
      clamp(
        1.55rem,
        7vw,
        2.35rem
      );

    line-height: 1.65;
  }


  .p-company-vision-detail {
    grid-template-columns:
      1fr;

    gap: 25px;

    padding:
      32px
      23px;

    border-radius: 30px;
  }


  .p-company-vision-detail__number {
    font-size: 1.8rem;
  }


  .p-company-vision-detail__illustration {
    grid-column: auto;
  }


  .p-vision-cycle__item {
    width: 64px;
    height: 64px;

    font-size: 0.7rem;
  }


  .p-company-values {
    grid-template-columns:
      1fr;

    gap: 20px;
  }


  .p-company-profile {
    padding:
      100px
      18px;
  }


  .p-company-profile__box {
    padding:
      30px
      22px;

    border-radius: 30px;
  }


  .p-company-profile__row {
    grid-template-columns:
      1fr;

    gap: 8px;

    padding:
      22px
      0;
  }


  .p-company-contact {
    padding:
      0
      18px
      110px;
  }


  .p-company-contact__inner {
    padding:
      52px
      22px;

    border-radius: 38px;
  }


  .p-company-contact h2 br,
  .p-company-contact p br {
    display: none;
  }

}