@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(1.05rem, 1vw, 1.2rem);
  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;
  }
}

.site-main {
  background: #ffffff;
}

/* =========================================================
   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(
      1.5rem,
      1.15vw,
      1.7rem
    );

  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.95rem,
      0.9vw,
      1rem
    );

  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;
  }

}

/* =========================================================
   ABOUT MICHIMARU
   ❷ 統合セクション用レイアウト
   ※カード本体のデザインは基本CSSをそのまま使用
========================================================= */


/* =========================================================
   SECTION
========================================================= */

.p-about-michimaru {
  position: relative;

  overflow: hidden;

  margin:
    clamp(80px, 8vw, 130px)
    auto;

  background: transparent;
}


.p-about-michimaru__inner {
  position: relative;

  width:
    min(
      calc(100% - 64px),
      1500px
    );

  margin-inline: auto;
}


/* =========================================================
   INTRO
   「みちまるとは―」
========================================================= */

.p-about-michimaru__intro {
  width:
    min(
      100%,
      980px
    );

  margin:
    clamp(20px, 3vw, 45px)
    auto
    0;

  text-align: center;
}


.p-about-michimaru__intro-copy {
  margin: 0;

  color:
    var(--color-text);

  font-family:
    var(--font-round);

  font-size:
    clamp(
      1.25rem,
      2vw,
      1.9rem
    );

  font-weight: 700;

  line-height: 1.85;

  letter-spacing: 0.045em;
}


.p-about-michimaru__intro-copy span {
  display: block;

  margin-bottom: 8px;

  color:
    var(--color-orange);

  font-family:
    var(--font-hand);

font-size: clamp( 1.8rem, 1.8vw, 2rem );

  font-weight: 600;

  letter-spacing: 0.08em;
}


/* =========================================================
   EXAMPLE
   100人・1,000人・10,000人

   ※カードデザインは既存の
     .p-spread-card
     .p-spread-card--1000
     .p-spread-card--10000
     .p-spread-card--100000
     をそのまま使用
========================================================= */

.p-about-example {
  width:
    min(
      100%,
      1360px
    );

  margin:
    clamp(65px, 7vw, 100px)
    auto
    0;
}


/*
 * 旧 .p-spread__cards をそのまま利用。
 * 見た目は変更せず、統合セクション内での幅だけ調整。
 */
.p-about-example .p-spread__cards {
  width: 100%;

  margin-inline: auto;
}


/* =========================================================
   EXAMPLE 説明文
   旧カードにはなかった今回追加分のみ
========================================================= */

.p-about-example__text {
  width:
    min(
      100%,
      300px
    );

  margin:
    18px
    auto
    0;

  color:
    var(--color-text-light);

  font-size:
    clamp(
      0.9rem,
      0.84vw,
      1rem
    );

  font-weight: 500;

  line-height: 1.85;

  letter-spacing: 0.02em;

  text-align: left;
}


/* =========================================================
   EXAMPLE BOTTOM MESSAGE
========================================================= */

.p-about-example__message {
  width:
    min(
      100%,
      900px
    );

  margin:
    clamp(85px, 8vw, 125px)
    auto
    0;

  color:
    var(--color-text);

  font-family:
    var(--font-round);

  font-size:
    clamp(
      1.15rem,
      1.8vw,
      1.65rem
    );

  font-weight: 700;

  line-height: 1.8;

  letter-spacing: 0.05em;

  text-align: center;
}


/* =========================================================
   FLOW
   左：3カード縦並び
   右：説明文

   ※カードそのものは基本CSSを変更しない
========================================================= */

.p-about-flow {
  display: grid;

  grid-template-columns:
    minmax(480px, 0.95fr)
    minmax(420px, 1.05fr);

  align-items: center;

  gap:
    clamp(
      70px,
      8vw,
      130px
    );

  width:
    min(
      100%,
      1240px
    );

  margin:
    clamp(110px, 10vw, 160px)
    auto
    0;
}


/* =========================================================
   FLOW LEFT
   3カードを縦にするだけ
========================================================= */

.p-about-flow__visual {
  display: flex;

  flex-direction: column;

  align-items: center;

  width: 100%;
}


/*
 * 基本CSSのカードデザインはそのまま。
 * 横幅だけ縦配置用に指定。
 */
.p-about-flow__visual .p-about-card {
  width: 100%;

  max-width: 520px;
}


/*
 * 基本CSSでは中央カードだけ
 * translateY(16px) が入っているため、
 * 縦並びで重ならないよう余白を取る。
 *
 * transform自体は変更しない。
 */
.p-about-flow__visual
.p-about-card--region {
  margin:
    18px
    0;
}


/* =========================================================
   FLOW ARROW
========================================================= */

.p-about-flow__arrow {
  position: relative;

  flex-shrink: 0;

  width: 44px;

  height: 42px;

  margin:
    14px
    0;
}


.p-about-flow__arrow::before {
  content: "";

  position: absolute;

  top: 0;
  left: 50%;

  width: 12px;

  height: 25px;

  border-radius: 4px;

  background:
    #eca247;

  transform:
    translateX(-50%);
}


.p-about-flow__arrow::after {
  content: "";

  position: absolute;

  bottom: 0;
  left: 50%;

  width: 0;

  height: 0;

  border-top:
    16px solid
    #eca247;

  border-right:
    21px solid
    transparent;

  border-left:
    21px solid
    transparent;

  transform:
    translateX(-50%);
}


/* =========================================================
   FLOW RIGHT
========================================================= */

.p-about-flow__content {
  min-width: 0;
}


.p-about-flow__title {
  margin: 0 0 clamp(30px, 3vw, 44px);
  color: var(--color-text);
  font-family: var(--font-round);
  font-size: clamp( 1.65rem, 2.5vw, 2.4rem );
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.045em;
}

.p-about-flow__text {
  color:
    var(--color-text-light);

 font-size: clamp(1rem, 1vw, 1.05rem );

  font-weight: 500;

  line-height: 2.1;

  letter-spacing: 0.025em;
}


.p-about-flow__text p {
  margin:
    0
    0
    24px;
}


.p-about-flow__text p:last-child {
  margin-bottom: 0;
}


.p-about-flow__closing {
  color:
    var(--color-text);

  font-family:
    var(--font-round);

  font-weight: 700;
	
	  font-size:
  clamp(
      1.5rem,
      1.2vw,
      1.8rem
    );
}


/* =========================================================
   POSSIBILITY
   みちまるの目指す課題解決

   ※カード本体は既存の
     .p-possibility-card
     をそのまま使う
========================================================= */

.p-about-possibilities {
  position: relative;

  width:
    min(
      100%,
      1500px
    );

  margin:
    clamp(130px, 12vw, 190px)
    auto
    0;

  padding-top:
    clamp(75px, 7vw, 105px);

  border-top:
    1px solid
    rgba(
      126,
      100,
      77,
      0.14
    );
}


/* =========================================================
   POSSIBILITY HEADING
========================================================= */

.p-about-possibilities__heading {
  width:
    min(
      100%,
      900px
    );

  margin:
    0
    auto
    clamp(60px, 6vw, 90px);

  text-align: center;
}


.p-about-possibilities__en {
  margin:
    0
    0
    12px;

  color:
    var(--color-orange);

  font-family:
    var(--font-main);

  font-size:
    0.72rem;

  font-weight: 700;

  line-height: 1.5;

  letter-spacing: 0.18em;
}


.p-about-possibilities__title {
  margin: 0;

  color:
    var(--color-text);

  font-family:
    var(--font-round);

  font-size:
    clamp(
      1.8rem,
      2.8vw,
      2.8rem
    );

  font-weight: 700;

  line-height: 1.5;

  letter-spacing: 0.06em;
}


.p-about-possibilities__title small {
  display: inline-block;

  margin-left: 4px;

  font-size: 0.48em;

  font-weight: 600;

  letter-spacing: 0.03em;
}


.p-about-possibilities__lead {
  margin:
    28px
    0
    0;

  color:
    var(--color-text-light);

  font-size:
    clamp( 1rem, 1vw, 1.05rem );

  font-weight: 500;

  line-height: 2;

  letter-spacing: 0.025em;
}


/*
 * 既存のp-possibilities__gridを利用。
 * カードデザインには触らない。
 */
.p-about-possibilities
.p-possibilities__grid {
  width: 100%;

  margin-inline: auto;
}


/* =========================================================
   TABLET
   1024px
========================================================= */

@media (max-width: 1024px) {

  .p-about-michimaru__inner {
    width:
      calc(
        100% - 60px
      );
  }


  /* -----------------------------------------
     FLOW
  ----------------------------------------- */

  .p-about-flow {
    grid-template-columns:
      minmax(360px, 0.9fr)
      minmax(0, 1.1fr);

    gap: 55px;
  }


  /*
   * 基本CSSでは1024px以下で
   * p-about-card が1カラムになる。
   *
   * 今回はそれも基本CSSのまま使用。
   */
  .p-about-flow__visual
  .p-about-card {
    max-width: 430px;
  }


  /* -----------------------------------------
     POSSIBILITY
  ----------------------------------------- */

  .p-about-possibilities {
    margin-top: 130px;
  }

}


/* =========================================================
   SMARTPHONE
   768px
========================================================= */

@media (max-width: 768px) {

  .p-about-michimaru {
    margin:
      70px
      auto;
  }


  .p-about-michimaru__inner {
    width:
      calc(
        100% - 40px
      );
  }


  /* -----------------------------------------
     INTRO
  ----------------------------------------- */

  .p-about-michimaru__intro {
    text-align: left;
  }


  .p-about-michimaru__intro-copy {
    font-size: 1.12rem;

    line-height: 1.9;
  }


  .p-about-michimaru__intro-copy br {
    display: none;
  }


  /* -----------------------------------------
     EXAMPLE
  ----------------------------------------- */

  .p-about-example {
    margin-top: 55px;
  }


  /*
   * p-spread__cards / p-spread-card の
   * SPデザインは基本CSSをそのまま利用。
   */

  .p-about-example__text {
    max-width: 300px;

    font-size: 0.82rem;
  }


  .p-about-example__text br {
    display: none;
  }


  .p-about-example__message {
    margin-top: 65px;

    font-size: 1.05rem;

    text-align: left;
  }


  .p-about-example__message br {
    display: none;
  }


  /* -----------------------------------------
     FLOW
  ----------------------------------------- */

  .p-about-flow {
    display: block;

    margin-top: 90px;
  }


  .p-about-flow__visual {
    width: 100%;

    max-width: 520px;

    margin-inline: auto;
  }


  /*
   * ここでもカード内部のデザインは変更しない。
   * 基本CSSのSP指定をそのまま効かせる。
   */
  .p-about-flow__visual
  .p-about-card {
    width: 100%;

    max-width: none;
  }


  .p-about-flow__visual
  .p-about-card--region {
    margin:
      0;
  }


  .p-about-flow__arrow {
    margin:
      16px
      auto;
  }


  /* -----------------------------------------
     FLOW TEXT
  ----------------------------------------- */

  .p-about-flow__content {
    margin-top: 65px;
  }


  .p-about-flow__title {
    margin-bottom: 28px;

    font-size: 1.55rem;
  }


  .p-about-flow__text {
    font-size: 0.88rem;

    line-height: 2;
  }


  .p-about-flow__text p {
    margin-bottom: 22px;
  }


  /* -----------------------------------------
     POSSIBILITY
  ----------------------------------------- */

  .p-about-possibilities {
    margin-top: 110px;

    padding-top: 70px;
  }


  .p-about-possibilities__heading {
    margin-bottom: 50px;
width: 80%;
    text-align: left;
  }


  .p-about-possibilities__title {
    font-size: 1.65rem;
  }


  .p-about-possibilities__title small {
    display: inline;
  }


  .p-about-possibilities__lead {
    margin-top: 20px;

    font-size: 0.86rem;

    line-height: 1.9;
  }


  .p-about-possibilities__lead br {
    display: none;
  }

}


/* =========================================================
   SMALL SMARTPHONE
   480px
========================================================= */

@media (max-width: 480px) {

  .p-about-michimaru__inner {
    width:
      calc(
        100% - 28px
      );
  }


  .p-about-michimaru__intro-copy {
    font-size: 1.04rem;
  }


  .p-about-flow__title {
    font-size: 1.4rem;
  }

}

/* =========================================================
   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(1.2rem, 1.2vw, 1.3rem);

  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(
      1rem,
     1vw,
      1.05rem
    );

  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__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(
      1rem,
      0.92vw,
      1.2rem
    );

  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( 1rem, 1vw, 1.05rem );

  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:
clamp(24px, 5vw, 80px) 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( 1.2rem, 1.2vw, 1.5rem );

  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.8rem, 0.8vw, 0.95rem);

  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:
      0px
      auto
      50px;

    font-size:
      0.88rem;

    line-height:
      1.9;
	  
	width: 80%;
  }


  .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;
	  
	  	  
	          width: 80%;
        margin: 0 auto
  }


  .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
   みちまるモバイルから。
   MOBILEページカラー統一版
========================================================= */

.p-mobile-promo {
  position: relative;
  overflow: hidden;

  padding:
    clamp(42px, 5vw, 80px)
    0
    0;

  background: #fff;
}


/* =========================================================
   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: 100%;

  min-height:
    clamp(
      640px,
      44vw,
      760px
    );

  margin: 0 0 clamp(100px, 10vw, 150px);

  padding:
    clamp(44px, 4.5vw, 72px)
    clamp(40px, 5vw, 90px)
    0;

  /*
   * 以前の角丸カードを廃止
   */
  border-radius: 0;

  /*
   * みちまるモバイルの
   * 水色・青・黄色をベースにした背景
   */
  background:
    linear-gradient(
      135deg,
      #e7f8ff 0%,
      #d8f3ff 34%,
      #edf9f6 62%,
      #fff7d7 100%
    );

  box-shadow: none;
}


/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.p-mobile-promo__inner::before {
  content: "";

  position: absolute;

  z-index: 0;

  inset: 0;

  pointer-events: none;

  /*
   * モバイルページに合わせた
   * 軽いドット模様
   */
  background-image:
    radial-gradient(
      circle,
      rgba(66, 163, 211, 0.13) 1.4px,
      transparent 1.6px
    );

  background-size:
    14px
    14px;

  opacity: 0.48;
}


/*
 * 水色の柔らかい円形装飾
 */
.p-mobile-promo__inner::after {
  content: "";

  position: absolute;

  z-index: 0;

  top: -28%;
  right: -8%;

  width:
    clamp(
      400px,
      42vw,
      760px
    );

  aspect-ratio: 1;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(255, 255, 255, 0.88) 0%,
      rgba(196, 235, 250, 0.42) 55%,
      rgba(196, 235, 250, 0) 72%
    );

  pointer-events: none;
}


/* =========================================================
   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:
    #244d67;
}


/* =========================================================
   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:
    #254b61;

  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:
    #155a83;

  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;

  color:
    #f28b32;

  font-size:
    clamp(
      2.2rem,
      3.3vw,
      3.6rem
    );

  font-weight: 700;
}


/* =========================================================
   LEAD
========================================================= */

.p-mobile-promo__lead {
  margin:
    0
    0
    34px;

  color:
    #3d6478;

  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: #fff;

  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(
      32,
      129,
      181,
      0.16
    );

  border-radius:
    999px;

  background:
    linear-gradient(
      90deg,
      #2498d0 0%,
      #177fbb 100%
    );

  box-shadow:
    0
    12px
    28px
    rgba(
      25,
      120,
      173,
      0.20
    );

  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;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: 34px;

  height: 34px;

  border-radius: 50%;

  color:
    #177fbb;

  background:
    #fff;

  font-size: 1.15rem;

  line-height: 1;

  transition:
    transform
    0.35s
    ease;
}


@media (hover: hover) {

  .p-mobile-promo__button:hover {
    transform:
      translateY(-3px);

    box-shadow:
      0
      17px
      36px
      rgba(
        25,
        120,
        173,
        0.26
      );
  }


  .p-mobile-promo__button:hover
  .p-mobile-promo__button-arrow {
    transform:
      translateX(4px);
  }

}


/* =========================================================
   PHONE
========================================================= */

.p-mobile-promo__phone {
  position: absolute;

  z-index: 1;

  top: 50%;
  left: 50%;
  bottom: auto;

  width: min(42vw, 760px);
  min-width: 760px;

  margin: 0;

  opacity: 0;

  transform:
    translate(-50%, -50%)
    translateY(72%);

  transition:
    opacity 0.45s ease,
    transform 1.35s cubic-bezier(0.16, 1, 0.3, 1);

  pointer-events: none;
}

.p-mobile-promo__phone.is-visible {
  opacity: 1;

  transform:
    translate(-50%, -50%)
    translateY(0);
}


.p-mobile-promo__phone img {
  display: block;

  width: 100%;
  height: auto;

  filter:
    drop-shadow(
      0 18px 26px rgba(28, 92, 125, 0.12)
    );
}


/* =========================================================
   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:
    #244d67;

  border:
    1px solid
    rgba(
      80,
      169,
      210,
      0.18
    );

  border-radius:
    999px;

  background:
    rgba(
      255,
      255,
      255,
      0.88
    );

  box-shadow:
    0
    9px
    24px
    rgba(
      31,
      113,
      154,
      0.08
    );

  backdrop-filter:
    blur(7px);
}


/* =========================================================
   FEATURE ICON
========================================================= */

.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;
}


/*
 * 4色ともモバイルページカラーへ
 */

.p-mobile-feature__icon--orange {
  color:
    #f39436;
}


.p-mobile-feature__icon--red {
  color:
    #ef784c;
}


.p-mobile-feature__icon--green {
  color:
    #48a89d;
}


.p-mobile-feature__icon--yellow {
  color:
    #e6b52b;
}


/* =========================================================
   FEATURE TEXT
========================================================= */

.p-mobile-feature__text h3 {
  margin:
    0
    0
    4px;

  color:
    #24566f;

  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:
    #577384;

  font-size:
    clamp(
      0.86rem,
      0.83vw,
      0.92rem
    );

  font-weight: 500;

  line-height: 1.5;
}


/* =========================================================
   TOWN
========================================================= */

.p-mobile-promo__town {
  position: absolute;

  z-index: 5;

  right: 0;
  bottom: 0;
  left: 0;

  width: 100%;

  max-width: none;

  height: auto;

  pointer-events: none;

  user-select: none;
	
		    position: absolute;
  z-index: 5;
}


/* =========================================================
   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
   1280px
========================================================= */

@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:
      32px;
  }


  .p-mobile-promo__content {
    max-width:
      460px;

    padding:
      0
      0
      112px
      12px;
	    position: relative;
  z-index: 30;
  }


  .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;
	    position: relative;
  z-index: 30;
  }


  .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
   1100px
========================================================= */

@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
   768px
========================================================= */

@media (max-width: 768px) {

  .p-mobile-promo {
    padding:
      30px
      0
      0;
  }
	
	 .p-mobile-promo__phone {
    top: 50%;
    left: 50%;
    bottom: auto;

    width: min(92%, 430px);
    min-width: 0;

    transform:
      translate(-50%, -50%)
      translateY(68%);
  }

  .p-mobile-promo__phone.is-visible {
    transform:
      translate(-50%, -50%)
      translateY(0);
  }


  .p-mobile-promo__features {
    margin-top: 500px;
    padding-bottom: 164px;
  }


  .p-mobile-promo__inner {
    display: flex;

    flex-direction: column;

    width: 100%;

    min-height:
      1180px;

    padding:
      46px
      20px
      0;

    border-radius: 0;

    background:
      linear-gradient(
        180deg,
        #e5f7ff 0%,
        #dcf4ff 38%,
        #eff9ef 67%,
        #fff4cc 100%
      );
  }


  .p-mobile-promo__inner::after {
    top: -80px;

    right: -180px;

    width:
      420px;
  }


  /* -----------------------------------------
     CONTENT
  ----------------------------------------- */

  .p-mobile-promo__content {
    z-index: 30;

    width: 100%;

    max-width: none;

    padding:
      0
      0
      24px;

    text-align: center;
  }


  /* -----------------------------------------
     LABEL
  ----------------------------------------- */

  .p-mobile-promo__label-wrap {
    width:
      min(
        220px,
        62%
      );

    margin-inline: auto;
  }


  /* -----------------------------------------
     TITLE
  ----------------------------------------- */

  .p-mobile-promo__title span {
    font-size:
      clamp(
        2.8rem,
        10vw,
        4rem
      );
  }


  .p-mobile-promo__title strong {
    font-size:
      clamp(
        2rem,
        7vw,
        3rem
      );
  }


  /* -----------------------------------------
     LEAD
  ----------------------------------------- */

  .p-mobile-promo__lead {
    color:
      #496c7e;

    font-size:
      0.94rem;
  }


  .p-mobile-promo__lead br {
    display: none;
  }


  /* -----------------------------------------
     BUTTON
  ----------------------------------------- */

  .p-mobile-promo__button {
    width:
      min(
        100%,
        420px
      );

    min-height:
      62px;

    margin-inline: auto;

    padding:
      12px
      18px
      12px
      24px;

    font-size:
      0.92rem;
  }


  .p-mobile-promo__button-arrow {
    width:
      30px;

    height:
      30px;
  }


  /* -----------------------------------------
     PHONE
  ----------------------------------------- */

  .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);
  }


  /* -----------------------------------------
     FEATURES
  ----------------------------------------- */

  .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;

    border-radius:
      22px;
  }


  .p-mobile-feature__icon {
    width:
      48px;

    height:
      48px;

    font-size:
      1.12rem;
  }


  .p-mobile-feature__text {
    text-align: left;
  }


  .p-mobile-feature__text h3 {
    font-size:
      1rem;
  }


  .p-mobile-feature__text p {
    font-size:
      0.8rem;

    line-height:
      1.45;
  }


  /* -----------------------------------------
     TOWN
  ----------------------------------------- */

  .p-mobile-promo__town {
    left: 50%;

    bottom: 0;

    width:
      170%;

    transform:
      translateX(-50%);
	  
	    position: absolute;
  z-index: 5;
  }


  /* -----------------------------------------
     DECORATION
  ----------------------------------------- */

  .p-mobile-promo__deco {
    width:
      82px;
  }

}
/* =========================================================
   JAPAN NETWORK
   全国で広がるみちまるの輪
========================================================= */

.p-japan-network {
  position: relative;

  padding:
    clamp(110px, 9vw, 170px)
    clamp(20px, 4vw, 60px)10px;
}


.p-japan-network__inner {
  width: min(100%, 1500px);
  margin-inline: auto;
}


/* =========================================================
   LEAD
========================================================= */

.p-japan-network__lead {
  width: min(100%, 860px);

  margin:
    0
    auto
    clamp(34px, 4vw, 54px);

  color: var(--color-text-light);

  font-size:
    clamp(0.95rem, 1vw, 1.05rem);

  font-weight: 500;

  line-height: 2;

  letter-spacing: 0.04em;

  text-align: center;
}


/* =========================================================
   MAP WRAP
========================================================= */

.p-japan-network__map-wrap {
  position: relative;
}


/* =========================================================
   MAP PANEL
========================================================= */

.p-japan-network__map {
  position: relative;

  overflow: hidden;

  min-height:
    clamp(540px, 48vw, 740px);

  padding:
    clamp(26px, 3vw, 34px)
    clamp(26px, 3vw, 34px)
    clamp(34px, 3.5vw, 42px);

  border:
    1px solid
    rgba(118, 125, 95, 0.08);

  border-radius: 42px;

  background:
    linear-gradient(
      180deg,
      #f7f5ef 0%,
      #f1efe7 100%
    );

  box-shadow:
    0 18px 38px
    rgba(78, 69, 53, 0.05);
}


/* =========================================================
   LEFT TOP INFO
========================================================= */

.p-japan-network__info {
  position: absolute;
  z-index: 8;

  top: clamp(26px, 3vw, 34px);
  left: clamp(26px, 3vw, 34px);


  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(200px, 0.6fr);
  gap: clamp(18px, 2vw, 28px);
  align-items: end;
}

.p-japan-network__goal {
  margin-bottom: 0;
}

.p-japan-network__goal-label {
  margin: 0 0 10px;
  color: #d56a4b;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.p-japan-network__goal-text {
  margin: 0;

  color: var(--color-text);
  font-family: var(--font-round);
  font-size: clamp(1.15rem, 1.9vw, 1.7rem);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.p-japan-network__goal-text strong {
  color: #d94f35;
  font-size: 1.35em;
  font-weight: 700;
}

.p-japan-network__current {
  align-self: end;

  padding:
    clamp(18px, 2vw, 22px)
    clamp(20px, 2vw, 24px);

  border-radius: 24px;

  background: rgba(255,255,255,0.94);

  border:
    2px solid
    rgba(232, 133, 80, 0.34);

  box-shadow:
    0 14px 28px rgba(91, 74, 53, 0.08);
}

.p-japan-network__current-label {
  margin: 0 0 8px;

  color: #c95d46;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.p-japan-network__current-value {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;

  width: auto;

  margin: 0;

  color: #d94f35;
  line-height: 1;
  white-space: nowrap;
}

.p-japan-network__current-value strong {
  font-family: var(--font-round);
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.p-japan-network__current-value span {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-weight: 700;
}

/* =========================================================
   GOAL
========================================================= */

.p-japan-network__goal {
  margin-bottom: 18px;
}


.p-japan-network__goal-label {
  margin: 0 0 8px;

  color: #d56a4b;

  font-family:
    var(--font-round);

  font-size: 2rem;

  font-weight: 700;

  line-height: 1.5;

  letter-spacing: 0.08em;
}


.p-japan-network__goal-text {
  margin: 0;

  color:
    var(--color-text);

  font-family:
    var(--font-round);

  font-size:
    clamp(1.15rem, 1.65vw, 1.65rem);

  font-weight: 700;

  line-height: 1.65;

  letter-spacing: 0.02em;
}


.p-japan-network__goal-text strong {
  display: inline-block;

  margin:
    0 3px;

  color: #d94f35;

  font-size: 1.4em;

  font-weight: 700;
}


/* =========================================================
   CURRENT
========================================================= */

.p-japan-network__current {
  width: 100%;

  padding:
    clamp(18px, 2vw, 22px)
    clamp(20px, 2vw, 24px);

  border:
    2px solid
    rgba(232, 133, 80, 0.34);

  border-radius: 24px;

  background:
    rgba(255, 255, 255, 0.95);

  box-shadow:
    0 14px 28px
    rgba(91, 74, 53, 0.08);
}


.p-japan-network__current-label {
  margin:
    0
    0
    8px;

  color:
    #c95d46;

  font-family:
    var(--font-round);

  font-size:
    0.88rem;

  font-weight:
    700;

  line-height:
    1.5;

  letter-spacing:
    0.06em;
}


.p-japan-network__current-value {
  display: flex;

  align-items: baseline;

  gap: 6px;

  margin: 0;

  color:
    #d94f35;

  line-height: 1;

  white-space: nowrap;
}


.p-japan-network__current-value strong {
  font-family:
    var(--font-round);

  font-size:
    clamp(2.3rem, 4vw, 4rem);

  font-weight: 700;

  letter-spacing: 0.05em;
}


.p-japan-network__current-value span {
  font-size:
    clamp(1rem, 1.2vw, 1.15rem);

  font-weight: 700;
}


/* =========================================================
   MAP IMAGE
========================================================= */

.p-japan-network__map-image {
  position: relative;

  z-index: 1;

  overflow: hidden;

  width: 100%;

  border-radius: 28px;

  background:
    #f9f8f2;
}


.p-japan-network__map-image img {
  display: block;

  width: 100%;

  height: auto;
}


/* =========================================================
   REGION BARS
   数値・地域名なしのイメージグラフ
========================================================= */

.p-japan-network__bars {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}


.p-region-bar {
  position: absolute;
  left: calc(var(--x) * 1%);
  top: calc(var(--y) * 1%);

  width: 30px;
  height: var(--bar-height);

  transform: translate(-50%, -100%);
}


.p-region-bar__inner {
  position: relative;
  display: block;

  width: 100%;
  height: 100%;

  border-radius: 999px;

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.78) 0%,
      rgba(255, 255, 255, 0.26) 14%,
      var(--bar-color) 34%,
      color-mix(in srgb, var(--bar-color) 82%, #000 18%) 100%
    );

  box-shadow:
    inset -3px 0 6px rgba(255, 255, 255, 0.18),
    inset 3px 0 8px rgba(255, 255, 255, 0.32),
    0 10px 18px rgba(96, 91, 67, 0.14);

  clip-path: inset(100% 0 0 0);
  transition:
    clip-path 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 円柱上部の丸い頭 */
.p-region-bar__inner::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;

  width: 30px;
  height: 30px;

  transform: translateX(-50%);
  border-radius: 50%;

  background:
    radial-gradient(
      circle at 35% 30%,
      rgba(255, 255, 255, 0.88) 0%,
      rgba(255, 255, 255, 0.38) 30%,
      var(--bar-color) 72%,
      color-mix(in srgb, var(--bar-color) 80%, #000 20%) 100%
    );

  box-shadow:
    0 6px 12px rgba(96, 91, 67, 0.1);
}

.p-region-bar__inner::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 6px;

  width: 6px;
  height: calc(100% - 20px);

  border-radius: 999px;

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(255, 255, 255, 0.18) 100%
    );
}

/* アニメーション開始後 */
.p-japan-network__map.is-animation-ready .p-region-bar.is-visible .p-region-bar__inner {
  clip-path: inset(0 0 0 0);
}

/* JSが効かない場合でも表示 */
.p-japan-network__map:not(.is-animation-ready) .p-region-bar__inner {
  clip-path: inset(0 0 0 0);
}


/* =========================================================
   REGION BAR ANIMATION
========================================================= */

/* アニメーション開始後 */
.p-japan-network__map.is-animation-ready .p-region-bar.is-visible .p-region-bar__inner {
  clip-path: inset(0 0 0 0);
}

/* JSが効かない場合でも表示 */
.p-japan-network__map:not(.is-animation-ready) .p-region-bar__inner {
  clip-path: inset(0 0 0 0);
}



/* =========================================================
   REGION NUMBERS
   地図下の地域別参画人数
========================================================= */

.p-japan-network__regions {
  display: grid;

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

  gap:
    14px;

  width:
    min(100%, 1240px);

  margin:
    clamp(36px, 4vw, 54px)
    auto
    0;
}


/* =========================================================
   REGION CARD
========================================================= */

.p-japan-region {
  position: relative;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 12px;

  min-width: 0;

  min-height: 78px;

  padding:
    18px
    18px
    15px;

  overflow: hidden;

  border:
    1px solid
    rgba(110, 104, 86, 0.10);

  border-radius: 18px;

  background:
    rgba(255, 255, 255, 0.98);

  box-shadow:
    0 8px 22px
    rgba(70, 60, 45, 0.055);
}


/* 上部カラーライン */
.p-japan-region::before {
  content: "";

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 4px;

  background:
    var(
      --region-color,
      var(--color-orange)
    );
}


/* =========================================================
   REGION NAME
========================================================= */

.p-japan-region__name {
  flex:
    1 1 auto;

  min-width: 0;

  margin: 0;

  color:
    var(--color-text);

  font-family:
    var(--font-round);

font-size: clamp(1rem, 1vw, 1.05rem);

  font-weight: 700;

  line-height: 1.4;

  letter-spacing: 0.03em;

  white-space: nowrap;
}


/* =========================================================
   REGION NUMBER
========================================================= */

.p-japan-region__number {
  display: inline-flex;

  align-items: baseline;

  justify-content: flex-end;

  flex:
    0 0 auto;

  flex-shrink: 0;

  gap: 3px;

  min-width: 0;

  margin: 0;

  color:
    var(
      --region-color,
      var(--color-orange)
    );

  font-family:
    var(--font-round);

  line-height: 1;

  white-space: nowrap;
}


.p-japan-region__number strong {
  display: inline-block;

  font-size:
    clamp(1.35rem, 1.7vw, 1.8rem);

  font-weight: 700;

  line-height: 1;
}


.p-japan-region__number span {
  display: inline-block;

  font-size:
    0.72rem;

  font-weight: 700;

  line-height: 1;
}


/* =========================================================
   NOTE
========================================================= */

.p-japan-network__note {
  margin:
    18px
    4px
    0;

  color:
    #7b7a67;

  font-size:
    0.76rem;

  line-height:
    1.6;

  text-align:
    right;
}


/* =========================================================
   TABLET
   1024px
========================================================= */

@media (max-width: 1024px) {

  .p-japan-network__map {
    min-height: 620px;
    padding: 24px 24px 30px;
    border-radius: 30px;
  }

  .p-japan-network__info {
    top: 24px;
    left: 24px;
    width: min(720px, 90%);
  }

  .p-region-bar {
    width: 24px;
  }

  .p-region-bar__inner::before {
    width: 24px;
    height: 24px;
    top: -10px;
  }

  .p-region-bar__inner::after {
    left: 5px;
    width: 5px;
  }

  .p-japan-network__regions {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));

    gap: 12px;
  }

  .p-japan-region {
    min-height: 74px;
    padding: 16px 16px 14px;
  }

  .p-japan-region__number strong {
    font-size: 1.55rem;
  }

}


/* =========================================================
   SMARTPHONE
   768px
========================================================= */

@media (max-width: 768px) {

  .p-japan-network {
    padding: 100px 20px;
  }


  /* -----------------------------------------
     LEAD
  ----------------------------------------- */

  .p-japan-network__lead {
    margin-bottom: 36px;
    font-size: 0.88rem;
    line-height: 1.9;
    text-align: left;
  }

  .p-japan-network__lead br {
    display: none;
  }


  /* -----------------------------------------
     MAP PANEL
  ----------------------------------------- */

  .p-japan-network__map {
    min-height: auto;
    padding: 18px 18px 22px;
    border-radius: 24px;
  }


  /* -----------------------------------------
     INFO
     目標 + 現在人数を横並び
  ----------------------------------------- */

  .p-japan-network__info {
    position: relative;

    top: auto;
    left: auto;

    display: grid;

    grid-template-columns:
      minmax(0, 1.15fr)
      minmax(0, 0.85fr);

    align-items: stretch;

    gap: 10px;

    width: 100%;

    margin-bottom: 20px;
  }

  .p-japan-network__goal {
    margin-bottom: 0;
  }

  .p-japan-network__goal-label {
    margin-bottom: 6px;
    font-size: 0.78rem;
  }

  .p-japan-network__goal-text {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .p-japan-network__goal-text strong {
    font-size: 1.35em;
  }


  /* -----------------------------------------
     CURRENT
  ----------------------------------------- */

  .p-japan-network__current {
    display: flex;
    flex-direction: column;
    justify-content: center;

    width: 85%;
    min-width: 0;

    padding: 14px 12px;

    border-radius: 18px;
  }

  .p-japan-network__current-label {
    margin-bottom: 7px;
    font-size: 0.72rem;
  }

  .p-japan-network__current-value {
    display: inline-flex;
    align-items: baseline;

    width: auto;

    gap: 3px;

    white-space: nowrap;
  }

  .p-japan-network__current-value strong {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
    letter-spacing: 0.02em;
  }

  .p-japan-network__current-value span {
    font-size: 0.8rem;
  }


  /* -----------------------------------------
     MAP IMAGE
  ----------------------------------------- */

  .p-japan-network__map-image {
    border-radius: 18px;
  }


  /* -----------------------------------------
     REGION BAR
     太めの円柱
  ----------------------------------------- */

  .p-region-bar {
    width: 16px;
  }

  .p-region-bar__inner::before {
    top: -7px;

    width: 16px;
    height: 16px;
  }

  .p-region-bar__inner::after {
    top: 6px;
    left: 3px;

    width: 4px;
    height: calc(100% - 12px);
  }


  /* -----------------------------------------
     REGION NUMBERS
     スマホでも2列
  ----------------------------------------- */

  .p-japan-network__regions {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 10px;

    margin-top: 20px;
  }

  .p-japan-region {
    min-width: 0;
    min-height: 66px;

    padding:
      13px
      12px;

    border-radius: 14px;
  }

  .p-japan-region__name {
    min-width: 0;

    font-size: 0.82rem;

    white-space: nowrap;
  }

  .p-japan-region__number {
    flex-shrink: 0;

    gap: 2px;

    white-space: nowrap;
  }

  .p-japan-region__number strong {
    font-size: 1.3rem;
  }

  .p-japan-region__number span {
    font-size: 0.7rem;
  }

  .p-japan-network__note {
    font-size: 0.68rem;
    text-align: left;
  }

}


/* =========================================================
   SMALL SMARTPHONE
   480px
========================================================= */

@media (max-width: 480px) {

  .p-japan-network {
    padding-inline: 14px;
  }


  /* -----------------------------------------
     INFO
     小さい画面でも横2列を維持
  ----------------------------------------- */

  .p-japan-network__map {
    padding:
      14px
      12px
      18px;
  }

  .p-japan-network__info {
    grid-template-columns:
grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.8fr);

    gap: 8px;
  }

  .p-japan-network__goal-text {
    font-size: 0.82rem;
    line-height: 1.6;
  }

  .p-japan-network__goal-text strong {
    font-size: 1.3em;
  }

  .p-japan-network__current {
    padding:
      12px
      10px;

    border-radius: 15px;
  }

  .p-japan-network__current-label {
    font-size: 0.66rem;
  }

  .p-japan-network__current-value strong {
    font-size: clamp(1.55rem, 8vw, 2rem);
  }

  .p-japan-network__current-value span {
    font-size: 0.68rem;
  }


  /* -----------------------------------------
     REGION NUMBERS
     480px以下も2列
  ----------------------------------------- */

  .p-japan-network__regions {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 8px;

    margin-top: 16px;
  }

  .p-japan-region {
    min-height: 60px;

    padding:
      11px
      10px;

    border-radius: 12px;
  }

  .p-japan-region__name {
    font-size: 0.75rem;
  }

  .p-japan-region__number strong {
    font-size: 1.12rem;
  }

  .p-japan-region__number span {
    font-size: 0.6rem;
  }


  /* -----------------------------------------
     REGION BAR
  ----------------------------------------- */

  .p-region-bar {
    width: 14px;
  }

  .p-region-bar__inner::before {
    top: -6px;

    width: 14px;
    height: 14px;
  }

  .p-region-bar__inner::after {
    left: 3px;
    width: 3px;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .p-region-bar__inner {
    clip-path: inset(0 0 0 0);
    transition: none;
  }

}
/* =========================================================
   BLOG
   活動実績
========================================================= */

.p-blog {
  position: relative;

  padding:
    0
    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( 1.5rem, 4.5vw, 4rem );

  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: 1rem;

  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: 1rem;
  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: 1.2rem;
}

.p-vision-capital__center span {
  font-size: 1rem;
}

.p-vision-capital__bottom {
  padding:
    17px
    20px;

  color: #554a41;

  font-family: var(--font-round);

  font-size: 1rem;
  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: 2rem;
  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: 1rem;

  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: 1rem;
  font-weight: 700;
}

.p-company-profile__row dd {
  margin: 0;

  color: #5f5750;

  font-size: 1.1rem;

  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;
  }

}

/* =========================================================
   POSSIBILITY CARD
   アイコンをサムネイル左上へ移動
========================================================= */

/*
 * bodyをpositionの基準にしない
 * → アイコンをカード全体基準で配置する
 */
.p-about-possibilities
.p-possibility-card__body {
  position: static;

  grid-template-columns:
    1fr;

  gap: 0;
}


/* =========================================================
   ICON
   サムネイル左上
========================================================= */

.p-about-possibilities
.p-possibility-card__icon {
  position: absolute;

  z-index: 10;

  top: 30px;
  left: 30px;

  width: 68px;
  height: 68px;

  margin-top: 0;

  border:
    1px solid
    rgba(112, 87, 64, 0.10);

  border-radius: 50%;

  background:
    rgba(255, 252, 245, 0.96);

  box-shadow:
    0 8px 22px
    rgba(71, 53, 39, 0.12);
}


.p-about-possibilities
.p-possibility-card__icon img {
  width: 48px;
  height: 48px;

  object-fit: contain;
}


/* =========================================================
   TEXT
========================================================= */

.p-about-possibilities
.p-possibility-card__content {
  width: 100%;
}


/* =========================================================
   HOVER
========================================================= */

@media (hover: hover) {

  .p-about-possibilities
  .p-possibility-card:hover
  .p-possibility-card__icon {
    transform:
      translateY(-3px)
      rotate(-4deg);
  }

}


/* =========================================================
   SMARTPHONE
========================================================= */

@media (max-width: 768px) {

  .p-about-possibilities
  .p-possibility-card__body {
    grid-template-columns:
      1fr;

    gap: 0;
  }


  .p-about-possibilities
  .p-possibility-card__icon {
    top: 24px;
    left: 24px;

    width: 58px;
    height: 58px;

    margin-top: 0;
  }


  .p-about-possibilities
  .p-possibility-card__icon img {
    width: 40px;
    height: 40px;
  }

}

/* =========================================================
   ACTIVITY SINGLE
   活動報告（お知らせ）詳細
   ※ font-size 最低 1rem
========================================================= */

.p-activity-single {
  position: relative;

  padding:
    clamp(150px, 12vw, 210px)
    clamp(20px, 4vw, 40px)
    clamp(120px, 10vw, 180px);

  background: #fff;
}


.p-activity-single__inner {
  width: min(100%, 900px);
  margin-inline: auto;
}


/* =========================================================
   HEADER
========================================================= */

.p-activity-single__header {
  margin-bottom: clamp(38px, 5vw, 64px);
}


.p-activity-single__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 10px 14px;

  margin-bottom: 20px;
}


.p-activity-single__date {
  color: #8a8178;

  font-family: var(--font-round);

  font-size: 1rem;
  font-weight: 500;

  line-height: 1.4;
  letter-spacing: 0.06em;
}


.p-activity-single__category {
  display: inline-flex;

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

  min-height: 32px;

  padding:
    6px
    16px;

  color: #fff;

  font-family: var(--font-round);

  font-size: 1rem;
  font-weight: 700;

  line-height: 1;

  letter-spacing: 0.04em;

  border-radius: 999px;

  background: var(--color-orange);
}


.p-activity-single__title {
  margin: 0;

  color: var(--color-text);

  font-family: var(--font-round);

  font-size:
    clamp(
      1.8rem,
      3vw,
      2.8rem
    );

  font-weight: 700;

  line-height: 1.55;

  letter-spacing: 0.03em;
}


/* =========================================================
   MAIN IMAGE
========================================================= */

.p-activity-single__image {
  overflow: hidden;

  margin:
    0
    0
    clamp(42px, 5vw, 68px);

  border-radius: 28px;

  background: #f6f2ec;
}


.p-activity-single__image img {
  display: block;

  width: 100%;
  height: auto;

  object-fit: cover;
}


/* =========================================================
   CONTENT
========================================================= */

.p-activity-single__content {
  color: var(--color-text-light);

  font-size:
    clamp(
      1rem,
      1.05vw,
      1.08rem
    );

  font-weight: 400;

  line-height: 2.15;

  letter-spacing: 0.025em;
}


.p-activity-single__content > * {
  max-width: 100%;
}


.p-activity-single__content > *:first-child {
  margin-top: 0;
}


.p-activity-single__content > * + * {
  margin-top: 1.7em;
}


/* =========================================================
   PARAGRAPH
========================================================= */

.p-activity-single__content p {
  margin-bottom: 0;

  font-size: inherit;
}


/* =========================================================
   H2
========================================================= */

.p-activity-single__content h2 {
  position: relative;

  margin:
    3.2em
    0
    1.2em;

  padding:
    0
    0
    14px;

  color: var(--color-text);

  font-family: var(--font-round);

  font-size:
    clamp(
      1.4rem,
      2vw,
      1.8rem
    );

  font-weight: 700;

  line-height: 1.6;

  letter-spacing: 0.03em;

  border-bottom:
    1px solid
    rgba(110, 95, 80, 0.12);
}


.p-activity-single__content h2::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -1px;

  width: 72px;
  height: 3px;

  border-radius: 999px;

  background: var(--color-orange);
}


/* =========================================================
   H3
========================================================= */

.p-activity-single__content h3 {
  margin:
    2.6em
    0
    1em;

  color: var(--color-text);

  font-family: var(--font-round);

  font-size:
    clamp(
      1.2rem,
      1.6vw,
      1.45rem
    );

  font-weight: 700;

  line-height: 1.65;

  letter-spacing: 0.03em;
}



/* =========================================================
   H4
========================================================= */

.p-activity-single__content h4 {
  margin:
    2.2em
    0
    0.9em;

  color: var(--color-text);

  font-family: var(--font-round);

  font-size:
    clamp(
      1.1rem,
      1.3vw,
      1.25rem
    );

  font-weight: 700;

  line-height: 1.65;
}


/* =========================================================
   LIST
========================================================= */

.p-activity-single__content ul,
.p-activity-single__content ol {
  padding-left: 1.5em;

  font-size: 1rem;

  line-height: 2;
}


.p-activity-single__content li + li {
  margin-top: 0.45em;
}


/* =========================================================
   LINK
========================================================= */

.p-activity-single__content a {
  color: var(--color-orange);

  font-size: inherit;

  text-decoration: underline;

  text-underline-offset: 0.18em;
}


/* =========================================================
   IMAGE IN CONTENT
========================================================= */

.p-activity-single__content figure {
  margin:
    2.2em
    0;
}


.p-activity-single__content img {
  display: block;

  max-width: 100%;

  height: auto;

  border-radius: 20px;
}


.p-activity-single__content figcaption {
  margin-top: 10px;

  color: #8c837b;

  font-size: 1rem;

  line-height: 1.7;

  text-align: center;
}


/* =========================================================
   BLOCKQUOTE
========================================================= */

.p-activity-single__content blockquote {
  margin:
    2.4em
    0;

  padding:
    24px
    28px;

  color: #645b54;

  font-size: 1rem;

  line-height: 2;

  border-left:
    4px solid
    var(--color-orange);

  border-radius:
    0
    16px
    16px
    0;

  background: #fff8f1;
}


.p-activity-single__content blockquote p {
  font-size: inherit;
}


/* =========================================================
   TABLE
========================================================= */

.p-activity-single__content table {
  width: 100%;

  margin:
    2.2em
    0;

  border-collapse: collapse;

  font-size: 1rem;
}


.p-activity-single__content th,
.p-activity-single__content td {
  padding:
    14px
    16px;

  font-size: 1rem;

  line-height: 1.8;

  vertical-align: top;

  border:
    1px solid
    rgba(95, 83, 72, 0.14);
}


.p-activity-single__content th {
  color: var(--color-text);

  font-weight: 700;

  background: #faf6f0;
}


/* =========================================================
   TAGS
========================================================= */

.p-activity-single__tags {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 10px;

  margin-top:
    clamp(48px, 5vw, 72px);

  padding-top: 28px;

  border-top:
    1px solid
    rgba(90, 78, 66, 0.1);
}


.p-activity-single__tag {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  min-height: 38px;

  padding:
    7px
    16px;

  color: #756d65;

  font-family: var(--font-round);

  font-size: 1rem;

  font-weight: 700;

  line-height: 1;

  text-decoration: none;

  border-radius: 999px;

  background: #f6f0e8;

  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease;
}


@media (hover: hover) {

  .p-activity-single__tag:hover {
    color: #fff;

    background: var(--color-orange);

    transform: translateY(-2px);
  }

}


/* =========================================================
   NAVIGATION
========================================================= */

.p-activity-single__navigation {
  display: grid;

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

  align-items: center;

  gap: 20px;

  margin-top:
    clamp(70px, 8vw, 110px);

  padding-top: 32px;

  border-top:
    1px solid
    rgba(90, 78, 66, 0.1);
}


.p-activity-single__navigation-item {
  min-width: 0;
}


.p-activity-single__navigation-item a {
  display: inline-block;

  color: var(--color-text-light);

  font-family: var(--font-round);

  font-size: 1rem;

  font-weight: 700;

  line-height: 1.6;

  text-decoration: none;

  transition:
    color 0.3s ease;
}


.p-activity-single__navigation-item--next {
  text-align: right;
}


@media (hover: hover) {

  .p-activity-single__navigation-item a:hover {
    color: var(--color-orange);
  }

}


/* =========================================================
   ARCHIVE BUTTON
========================================================= */

.p-activity-single__archive {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  min-width: 140px;

  min-height: 48px;

  padding:
    11px
    24px;

  color: #fff !important;

  font-family: var(--font-round);

  font-size: 1rem;

  font-weight: 700;

  line-height: 1;

  text-decoration: none;

  border-radius: 999px;

  background: var(--color-orange);

  box-shadow:
    0
    8px
    18px
    rgba(221, 103, 70, 0.18);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


@media (hover: hover) {

  .p-activity-single__archive:hover {
    transform: translateY(-3px);

    box-shadow:
      0
      12px
      24px
      rgba(221, 103, 70, 0.22);
  }

}


/* =========================================================
   WORDPRESS BLOCK
========================================================= */

.p-activity-single__content .wp-block-image,
.p-activity-single__content .wp-block-gallery,
.p-activity-single__content .wp-block-video,
.p-activity-single__content .wp-block-embed {
  margin-top: 2.4em;
  margin-bottom: 2.4em;
}


.p-activity-single__content .wp-block-button__link {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  min-height: 48px;

  padding:
    11px
    24px;

  color: #fff;

  font-size: 1rem;

  font-weight: 700;

  text-decoration: none;

  border-radius: 999px;

  background: var(--color-orange);
}


/* =========================================================
   TABLET
   1024px
========================================================= */

@media (max-width: 1024px) {

  .p-activity-single {
    padding-top: 140px;
  }

}


/* =========================================================
   SMARTPHONE
   768px
========================================================= */

@media (max-width: 768px) {

  .p-activity-single {
    padding:
      110px
      18px
      100px;
  }


  .p-activity-single__header {
    margin-bottom: 34px;
  }


  .p-activity-single__meta {
    margin-bottom: 16px;
  }


  .p-activity-single__date {
    font-size: 1rem;
  }


  .p-activity-single__category {
    min-height: 32px;

    padding:
      6px
      14px;

    font-size: 1rem;
  }


  .p-activity-single__title {
    font-size:
      clamp(
        1.5rem,
        6vw,
        1.8rem
      );

    line-height: 1.55;
  }


  .p-activity-single__image {
    margin-bottom: 38px;

    border-radius: 20px;
  }


  .p-activity-single__content {
    font-size: 1rem;

    line-height: 2;
  }


  .p-activity-single__content h2 {
    margin-top: 2.6em;

    font-size:
      1.35rem;
  }


  .p-activity-single__content h3 {
    margin-top: 2.2em;

    font-size:
      1.2rem;
  }


  .p-activity-single__content h4 {
    font-size:
      1.1rem;
  }


  .p-activity-single__content figcaption {
    font-size: 1rem;
  }


  .p-activity-single__content img {
    border-radius: 14px;
  }


  .p-activity-single__content blockquote {
    padding:
      20px
      18px;

    font-size: 1rem;
  }


  .p-activity-single__tag {
    min-height: 38px;

    font-size: 1rem;
  }


  .p-activity-single__navigation {
    grid-template-columns:
      1fr
      auto
      1fr;

    gap: 10px;

    margin-top: 65px;

    padding-top: 24px;
  }


  .p-activity-single__navigation-item a {
    font-size: 1rem;
  }


  .p-activity-single__archive {
    min-width: 110px;

    min-height: 46px;

    padding:
      10px
      16px;

    font-size: 1rem;
  }

}


/* =========================================================
   SMALL SMARTPHONE
   480px
========================================================= */

@media (max-width: 480px) {

  .p-activity-single {
    padding:
      100px
      16px
      90px;
  }


  .p-activity-single__title {
    font-size: 1.4rem;
  }


  .p-activity-single__content {
    font-size: 1rem;
  }


  .p-activity-single__content h2 {
    font-size: 1.3rem;
  }


  .p-activity-single__content h3 {
    font-size: 1.15rem;
  }


  .p-activity-single__content h4 {
    font-size: 1.05rem;
  }


  .p-activity-single__navigation {
    grid-template-columns:
      1fr;

    gap: 20px;

    text-align: center;
  }


  .p-activity-single__navigation-item--prev,
  .p-activity-single__navigation-item--next {
    text-align: center;
  }


  .p-activity-single__navigation-item a {
    font-size: 1rem;
  }


  .p-activity-single__archive {
    min-width: 140px;

    font-size: 1rem;
  }

}

.grecaptcha-badge {
  visibility: hidden !important;
}


.recaptcha-note {
  margin-top: 16px;
  font-size: 0.75rem;
  line-height: 1.2;
  color: #777;
}

.recaptcha-note a {
  color: inherit;
  text-decoration: underline;
}