
/* ===============================
   Base Reset
=============================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
p,
ul,
ol,
li,
figure,
blockquote {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

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

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

@font-face {
  font-family: "TekitouPoem";
  src: url("fonts/TekitouPoem.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "TekitouPoem";
  src: url("fonts/TekitouPoem_Bold.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "TekitouPoem";
  src: url("fonts/TekitouPoem_SemiBold.ttf") format("truetype");
  font-weight: 600;
}

@font-face {
  font-family: "TekitouPoem";
  src: url("fonts/TekitouPoem_ExtraBold.ttf") format("truetype");
  font-weight: 800;
}

/* ===============================
   Color System
=============================== */
:root {
  --main: #8faf9d;
  --accent: #2f3e5c;
  --white: #f7f6f2;
  --text: #333333;
  --beige: #e6ddc9;
  --accent2: #EECD3C;

  --surface: rgba(255, 255, 255, 0.9);
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);

  --space-section-y: clamp(3.2rem, 8vw, 6rem);
  --space-section-x: clamp(1rem, 4vw, 1.6rem);
}

/* ===============================
   Body
=============================== */
body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

html,
body {
  overflow-x: hidden;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
}

.bg__layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
}

.bg__layer--base {
  opacity: 1;
  background-image: url(img/bg01.jpg);
}

.bg__layer--next {
  opacity: 0;
}

.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
}

/* ===============================
   Layout
=============================== */
.article {
  max-width: 560px;
  margin: 0 auto;
  background-color: rgba(255,255,255,.95);
  z-index: -9;
}

.section {
  max-width: 560px;
  margin: 0 auto;
  padding: var(--space-section-y) var(--space-section-x);
}

.section__inner {
  margin: 0 auto;
}

.section__title {
  font-size: 1.75rem;
  margin-bottom: 16px;
  color: var(--accent);
}

.section__text {
  margin-top: 12px;
  font-size: 1rem;
  color: var(--text);
}

.section__note {
  margin-top: 16px;
  font-size: 0.875rem;
  color: var(--accent);
}

.section .section__inner {
  background: var(--surface);
}

.cta-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  width: min(100%, 32rem);
  min-height: 5.2rem;
  margin: 0 auto;
  padding: 0.8rem 2rem;

  border-radius: 999px;
  background: var(--accent2);
  color: var(--accent);
  text-align: center;

  box-shadow:
    0 0.6rem 0 rgba(0, 0, 0, 0.06),
    0 1rem 2rem rgba(0, 0, 0, 0.12);

  border: 0.4rem solid rgba(255, 255, 255, 0.9);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -30%;
  width: 20%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 20%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0.15) 80%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  pointer-events: none;
}

.cta-button:hover::before {
  left: 115%;
}

.cta-button:hover {
  transform: translateY(-2px);
}

.cta-button__label {
  position: absolute;
  top: -1.1rem;
  left: 50%;
  transform: translateX(-50%);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 15rem;
  max-width: calc(100% - 3rem);
  padding: 0.3rem 2rem;

  border-radius: 999px;
  background: var(--accent);
  color: var(--white);

  font-size: 0.8rem;
  line-height: 1.3;
  font-weight: 700;
  white-space: nowrap;

  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.12);
}

.cta-button__label::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.7rem;
  transform: translateX(-50%);

  width: 0;
  height: 0;
  border-left: 0.7rem solid transparent;
  border-right: 0.7rem solid transparent;
  border-top: 0.9rem solid var(--accent);
}

.cta-button__text {
  display: block;
  font-size: clamp(1.3rem, 4vw, 1.4rem);
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.cta-button::after {
  content: "";
  position: absolute;
  right: 1.8rem;
  top: 50%;
  transform: translateY(-50%);

  width: 1.2rem;
  height: 1.2rem;
  border-top: 0.3rem solid var(--accent);
  border-right: 0.3rem solid var(--accent);
  transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 374px) {
  .cta-button {
    width: 100%;
    min-height: 5.4rem;
  }

  .cta-button__label {
    font-size: 0.72rem;
    padding: 0.65rem 1.2rem;
    max-width: calc(100% - 2rem);
  }

  .cta-button__text {
    font-size: 1.2rem;
  }

  .cta-button::after {
    right: 1.4rem;
    width: 1rem;
    height: 1rem;
  }
}

.cta-button--nav {
  width: 100%;
  min-height: 5.4rem;
  padding: 2.1rem 4rem 1.4rem 1.6rem;
}

.cta-button--nav .cta-button__label {
  font-size: 0.72rem;
  padding: 0.55rem 1rem;
}

.cta-button--nav .cta-button__text {
  font-size: 1.2rem;
}

/* ===============================
   Header / Logo / Navigation
=============================== */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  width: 100%;
  z-index: 120;
  pointer-events: none;
}

.site-header__inner {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  pointer-events: none;
}

.site-logo {
  pointer-events: auto;
  display: block;
  width: 110px;
  max-width: 25vw;
  padding: 10px 12px;
  background: rgba(255,255,255,.92);
  border-radius: 0 0 20px 0;
  border: 1px solid rgba(47,62,92,.08);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.site-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.nav_toggle {
  pointer-events: auto;
  appearance: none;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

.nav_toggle--circle {
  width: 64px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.nav_toggle__inner {
  width: 50px;
  height: 50px;
  margin: 10px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: var(--main);
  box-shadow:
    0 10px 24px rgba(47, 62, 92, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition: transform 0.25s ease, background 0.25s ease;
}

.nav_toggle-bar {
  display: block;
  width: 22px;
  height: 1px;
  border-radius: 999px;
  background: var(--beige);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.is-nav-open .nav_toggle__inner {
  background: var(--accent);
  transform: scale(0.98);
}

body.is-nav-open .nav_toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.is-nav-open .nav_toggle-bar:nth-child(2) {
  opacity: 0;
}

body.is-nav-open .nav_toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav_overlay {
  position: fixed;
  inset: 0;
  background: rgba(47, 62, 92, 0.36);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 100;
}

body.is-nav-open .nav_overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav_drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(86vw, 340px);
  height: 100vh;
  background: rgba(247, 246, 242, 0.98);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.32s ease;
  z-index: 110;
}

body.is-nav-open .nav_drawer {
  transform: translateX(0);
}

.nav_drawer__inner {
  height: 100%;
  padding: 96px 18px 24px;
  overflow-y: auto;
}

.nav_list {
  display: grid;
  gap: 10px;
}

.nav_item a {
  display: block;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--white);
  color: var(--accent);
  font-size: 0.98rem;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.nav_item a:active {
  transform: scale(0.98);
}

.current a {
  background: var(--main);
  color: var(--white);
}

.nav_pc {
  display: none;
}

@media (min-width: 1200px) {
  .site-header {
    inset: 0 0 auto 0;
  }

  .site-header__inner {
    max-width: none;
    width: 100%;
    margin: 0;
  }

  .nav_toggle,
  .nav_overlay,
  .nav_drawer {
    display: none;
  }

  .site-logo {
    position: fixed;
    top: 0;
    left: 0;
    width: 132px;
    max-width: none;
    padding: 12px 14px;
    border-radius: 0 0 24px 0;
    z-index: 130;
  }

  .nav_pc {
    display: block;
    pointer-events: auto;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 125;
  }

.nav_pc__panel {
  position: relative;
  width: 420px;
  padding: 96px 48px 56px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 96px 0 0 0;
  box-shadow: -8px 12px 28px rgba(0,0,0,.06);
  overflow: hidden;
}

.nav_pc__panel::before {
  content: "";
  position: absolute;
  top: -2rem;
  right: -7rem;
  width: 20rem;
  height: 20rem;
  background: url("img/navi_ashirai.svg") center / contain no-repeat;
  pointer-events: none;
  opacity: 0.9;
}

  .nav_pc__nav {
    margin-bottom: 34px;
  }

  .nav_list--pc {
    gap: 20px;
  }

  .nav_list--pc .nav_item a {
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.5;
  }

  .nav_list--pc .nav_item a:hover {
    color: var(--main);
    background: transparent;
  }

  .nav_list--pc .nav_item.current a,
  .nav_list--pc .current a {
    color: var(--main);
    background: transparent;
  }

  .nav_pc__cta {
    display: grid;
    gap: 16px;
  }

  .nav_pc__btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    padding: 0 28px;
    border-radius: 999px;
    font-size: 1.05rem;
    font-weight: 700;
    text-align: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav_pc__btn:hover {
    transform: translateY(-1px);
  }

  .nav_pc__btn::before {
    content: "";
    position: absolute;
    right: 30px;
    width: 0;
    height: 0;
    border-left: 6px solid var(--white);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    z-index: 1;
  }

  .nav_pc__btn--fill {
    background: var(--accent2);
    color: var(--text);
    border: 3px solid #f7f2de;
    box-shadow: 0 6px 0 rgba(0,0,0,.04);
  }


  body {
    padding-right: 420px;
  }

  .article,
  .section {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1440px) {
  .nav_pc__panel {
    width: 470px;
    padding: 104px 54px 60px;
  }

  body {
    padding-right: 470px;
  }
}

  .article {
    width: min(100%, 600px);
  }

/* ===============================
   Hero Section
=============================== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--white);
  color: var(--text);
  padding: 0;
}

.hero__inner {
  position: relative;
  min-height: clamp(36rem, 125vw, 48rem);
  padding-bottom: 6rem;
  overflow: hidden;
  isolation: isolate;
}

.hero__ornament {
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}

.hero__ornament--top-left {
  top: -25vw;
  left: -5rem;
  width: 24rem;
  height: 15rem;
  background-image: url("img/hero_bg.svg");
  background-position: top left;
}

.hero__ornament--bottom-right {
  position: absolute;
  left: 0;
  bottom: 0;
  width: clamp(16rem, 70vw, 28rem);
  height: clamp(16rem, 70vw, 28rem);
  background-image: url("img/hero_bg2.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left bottom;
  z-index: 6;
}

.hero__ornament-text {
  position: absolute;
  top: 54%;
  left: 31%;
  transform: translate(-30%, -50%);

  margin: 0;

  text-align: center;
  font-size: 1.15rem;
  line-height: 1.55;
  font-weight: 700;
  color: var(--text);
}

.hero__service-name{
  display:block;
  width: clamp(12rem, 40vw, 18rem);
  margin: 0 auto 0.9rem;
}

.hero__target{
  display:block;
  font-size:0.8em;
  opacity:0.8;
}

.hero__inner::after {
  content: "";
  position: absolute;
  top: 2rem;
  right: -5rem;
  height: calc(100% - 4rem);
  width: auto;
  aspect-ratio: 3 / 4;
  background: url("img/hero.png") left center / cover no-repeat;
  border-radius: 1.6rem;
  z-index: 1;
}

.hero__catch {
  position: absolute;
  top: 3rem;
  left: -1rem;
  width: 25rem;
  z-index: 3;
  pointer-events: none;
}

.hero__catch img {
  display: block;
  width: 100%;
  height: auto;
}

.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 52rem;
  margin: 0 auto;
  padding: 47rem 1.6rem 4.8rem;
  text-align: center;
}

.hero .btn {
  margin-top: 1.8rem;
}

.hero__content > * {
  opacity: 0;
  transform: translateY(10px);
}

@media (max-width: 374px) {
  .hero__inner {
    min-height: clamp(27rem, 108vw, 34rem);
    padding-bottom: 4rem;
  }

  .hero__ornament--top-left {
    width:  100vw;
    height: 100vw;
  }

  .hero__ornament--bottom-right {
    top: auto;
    bottom: -2.5rem;
    left: 0;
    width: 90vw;
    height: 90vw;
  }

  .hero__ornament-text {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .hero__inner::after {
    top: 2rem;
    right: -1.5rem;
    width: 81vw;
    height: auto;
    aspect-ratio: 3 / 4;
    max-width: none;
  }

  .hero__catch {
    top: 3rem;
    left: -1rem;
    width: 80vw;
  }

  .hero__content {
    padding-top: 43rem;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    padding-bottom: 4.2rem;
  }

}

@media (min-width: 375px) and (max-width: 590px) {
  .hero__inner {
    min-height: clamp(32rem, 122vw, 44rem);
    padding-bottom: 6rem;
  }

  .hero__ornament--top-left {
    width: 60vw;
    height: 60vw;
  }

  .hero__ornament--bottom-right {
    top: auto;
    bottom: -3rem;
    left: 0;
    width: 90vw;
    height: 90vw;
  }

  .hero__ornament-text {
    font-size: 1.05rem;
  }

  .hero__inner::after {
    top: 2rem;
    right: -2rem;
    width: 79vw;
    height: auto;
    aspect-ratio: 3 / 4;
    max-width: none;
  }

  .hero__catch {
    top: 2rem;
    left: -1rem;
    width: 80vw;
  }

  .hero__content {
    padding-top: 47rem;
  }
}


@media (min-width: 591px) {
  .hero__inner {
    min-height: 50rem;
  }

  .hero__ornament--top-left {
    width: 35rem;
    height: 25rem;
    top: -8rem;
    left: -10rem;
  }

  .hero__ornament--bottom-right {
    top: auto;
    bottom: 0;
    left: 0;
  }


  .hero__ornament-text {
    font-size: 1.3rem;
    line-height: 1.1;
  }


  .hero__catch {
    top: 3rem;
    left: -2rem;
    width: 30rem;
  }

  .hero__content {
    max-width: 56rem;
    padding-top: 54rem;
    padding-bottom: 5.4rem;
  }

  .hero .btn {
    margin-top: 2rem;
  }
}

@media (min-width: 1200px) {
  .hero__ornament--bottom-right {
    top: auto;
    bottom: 0;
  }
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;

  padding: 8px 16px;
}

.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 375px;
  margin: 0 auto;
}

.sticky-cta__text {
  font-size: 0.85rem;
  color: var(--text);
  opacity: 0.8;
}

@media (min-width: 1201px) {
  .sticky-cta {
    left: auto;
    right: 40px;
    bottom: 40px;
    width: auto;
    padding: 0;
    background: transparent;
  }

  .hero__ornament--bottom-right {
    top: auto;
    bottom: 0;
  }


}

.sticky-cta__btn {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}


/* ===============================
   Empathy Section
=============================== */


.empathy-hero{
  position: relative;
  margin: clamp(0.6rem, 3vw, 1rem) 0 0;
  padding: clamp(2rem, 7vw, 4rem) 1.2rem;
  min-height: clamp(8rem, 20vw, 12rem);
  text-align: center;
  z-index: 2;
  margin-top: 0;
  padding-top: 0;
}

.empathy-hero::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  width: clamp(8rem, 40%, 14rem);
  height: clamp(6rem, 18vw, 10rem);
  background: url("img/worries.svg") center / contain no-repeat;
  z-index: 1;
}


.empathy-hero__title{
  display: inline-block;
  text-align: center;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  position: relative;
  z-index: 2;
  font-size: clamp(1.4rem, 4.5vw, 2.5rem);
  font-family: "Noto Serif JP", serif;
}

.empathy-hero__title span{
  font-family: "Noto Serif JP", serif;
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--accent);
  text-shadow:
    -2px -2px 0 #fff,
     2px -2px 0 #fff,
    -2px  2px 0 #fff,
     2px  2px 0 #fff;
}

.section--empathy {
  background: var(--white);
  padding: var(--space-section-y) var(--space-section-x) 0;
}

.worries{
  display: grid;
  counter-reset: worry;
  padding: 0 clamp(1rem, 10vw, 2rem);
  text-align: center;
}

.worries__item{
  position: relative;
  padding-left: clamp(3.2rem, 10vw, 5rem);
  min-height: clamp(3.8rem, 12vw, 6rem);
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;

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

  border-bottom: 2px dotted rgba(47, 62, 92, 0.25);
}


.worries__item::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);

  width: clamp(2.8rem, 8vw, 3.75rem);
  height: clamp(2.2rem, 6vw, 2.875rem);

  background:url("img/number.svg") center / contain no-repeat;
}


.worries__item::after{
  counter-increment:worry;
  content:counter(worry,decimal-leading-zero);

  position:absolute;
  left: clamp(0.8rem, 2.6vw, 1.125rem);
  top:50%;
  transform:translateY(-50%);

  font-weight:900;
  font-style:italic;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-family: "Noto Serif JP", serif;
}


.worries__sub{
  font-size: clamp(0.9rem, 2.8vw, 1.2rem);
  opacity: .8;
}


.worries__main{
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 900;
  line-height: 1.2;
}


.section--empathy .section__text{
  position: relative;
  margin-top: 3rem;
  text-align: center;
  font-weight: 700;
  color: var(--accent);
  padding: 2rem 1.6rem;
  font-size: clamp(1rem, 3.8vw, 1.35rem);
  line-height: 1.7;
}

.section--empathy .section__text::before{
  content:"";
  position:absolute;
  left:50%;
  top:70%;
  transform:translate(-50%,-50%);
  width:200%;
  height:250%;
  background:url("img/worries_hukidashi.svg") center / contain no-repeat;
  z-index:-1;
}

.section--empathy .section__inner{
  position: relative;
  padding-bottom: 4rem;
  overflow: visible;
  background: var(--white);
}

.worries__person{
  position: absolute;
  right: calc(var(--space-section-x) * -1 - 1rem);
  bottom: -8rem;
  width: clamp(5.5rem, 18vw, 8.5rem);
  height: auto;
  z-index: 2;
  pointer-events: none;
}

.worries,
.section--empathy .section__text,
.empathy-hero{
  position: relative;
  z-index: 2;
}

@media (max-width: 639px){

  .worries__person{
    right: 0;
    bottom: -6rem;
  }

}

@media (max-width: 374px){
  .section--empathy .section__inner{
    padding-bottom: 6rem;
  }

  .worries__person{
    width: 5.5rem;
    right: calc(var(--space-section-x) * -1 - 0.8rem);
    bottom: -9rem;
  }
}

@media (min-width: 640px){
  .section--empathy .section__inner{
    padding-bottom: 5rem;
  }

  .worries__person{
    width: 8rem;
    right: calc(var(--space-section-x) * -1 - 0.9rem);
    bottom: -10rem;
  }
}


/* ===============================
   About Section
=============================== */
.section--about {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: url("img/about_bg.svg") center top / cover no-repeat;
  background-color: var(--white);
}

.about__bg {
  padding: clamp(9rem, 13vw, 11rem) 1rem clamp(9rem, 15vw, 11rem);
}

.about__inner {
  width: 100%;
  max-width: 45rem;
  margin: 0 auto;
}

.about__heading {
  text-align: center;
}

.about__title-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 4rem;
}

.about__title {
  width: min(100%, 30rem);
}

.about__title img {
  display: block;
  width: 100%;
  height: auto;
}

.about__bubble {
  width: min(100%, 28.8rem);
  margin: -1.5rem auto 1rem;
  padding: 1rem 1rem 2.8rem;
  background: url("img/about_hukidashi.svg") center center / 100% 100% no-repeat;
  text-align: center;
}

.about__bubble-sub {
  color: var(--accent);
  font-size: clamp(0.95rem, 2.8vw, 1.1rem);
  line-height: 1.45;
}

.about__bubble-main {
  margin-top: 0.4rem;
  color: var(--accent);
  font-size: clamp(1.2rem, 3.5vw, 1.6rem);
  font-weight: 700;
  line-height: 1.45;
  font-family: "Noto Serif JP", serif;
  text-decoration: underline;
  text-decoration-thickness: 0.5rem;
  text-underline-offset: 0.18em;
  text-decoration-color: var(--white);
}

.about__bubble-end {
  margin-top: 0.2rem;
  padding-right: 3rem;
  color: var(--accent);
  font-size: clamp(0.95rem, 2.8vw, 1.1rem);
  line-height: 1.4;
  text-align: right;
}

.about__card {
  background: var(--white);
  border-radius: 2rem;
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.12);
  padding: 3rem 1.2rem 2rem;
}

.about__menu{
  display: grid;
  gap: 0.9rem;
  margin-bottom: 2.4rem;
}

.about__menu-item{
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.2rem;
  background: #fff;
  border: 2px solid rgba(143, 175, 157, 0.65);
  border-radius: 1.2rem;
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.06);
}

.about__menu-label{
  flex-shrink: 0;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: var(--main);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.about__menu-text{
  font-size: clamp(1rem, 3.5vw, 1.15rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--accent);
  text-align: left;
}

.about__lead{
  text-align:center;
  line-height:1.6;
  font-size:1.1rem;
}

.about__lead-main{
  font-size:2rem;
  font-weight:700;
  color:var(--accent);
}

.about__lead-sub{
  font-size:1.4rem;
  font-weight:700;
}

.about__note {
  margin-top: 0.4rem;
  text-align: center;
  color: var(--text);
  font-size: 1.15rem;
  line-height: 1.5;
}

@media (min-width: 768px) {

  .about__inner {
    max-width: 72rem;
  }

  .about__heading {
    margin-bottom: 3.2rem;
  }

  .about__title-row {
    gap: 1.2rem;
  }

  .about__bubble {
    padding: 1rem 2.8rem 3.2rem;
  }

  .about__bubble-main {
    font-size: 1.4rem;
  }

  .about__bubble-end {
    font-size: 1rem;
  }

  .about__card {
    max-width: 68rem;
    margin: 0 auto;
    border-radius: 2.4rem;
  }

  .about__menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
  }

  .about__menu-item {
    width: 100%;
    min-height: 10rem;
    padding: 1.4rem 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.9rem;

    text-align: center;
    border-radius: 1.4rem;

      background: #fff;
  border: 2px solid rgba(143, 175, 157, 0.65);
  }

  .about__menu-label {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--main);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    display: grid;
    place-items: center;
    margin: 0 auto;

  }

  .about__menu-text {
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
  }

  .about__note {
    font-size: 1.3rem;
  }
}

@media (max-width: 628px) {
    .about__title-row::before {
    top: -1rem;
    left: 1.5rem;
  }
}

@media (max-width: 425px) {
    .about__title-row::before {
    top: -1rem;
    left: 0.2rem;
  }
}


/* ===============================
   Strength Section
=============================== */
.section--strength {
  background: var(--white);
  overflow: hidden;
}

.section--strength .section__inner {
  background: var(--white);
  padding: 0;
}

.strength {
  position: relative;
}

.strength__visual {
  position: relative;
  min-height: 40rem;
  padding: 2.4rem 0 0;
  overflow: visible;
  background: var(--white);
}

.strength__title {
  position: absolute;
  top: 3.2rem;
  left: calc(var(--space-section-x) * -1);
  z-index: 5;

  width: calc(85% + var(--space-section-x));
  padding: 1rem 1.2rem 1.2rem;

  background: linear-gradient(90deg, #0f5b86 0%, #7bb57f 100%);
  color: var(--white);

  font-size: clamp(1.6rem, 5vw, 2rem);
  line-height: 1.45;
  font-weight: 700;

  overflow: hidden;
}

.strength__title::after {
  content: "";
  position: absolute;
  top: 0;
  left: -35%;
  width: 18%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.15) 20%,
    rgba(255,255,255,0.7) 50%,
    rgba(255,255,255,0.15) 80%,
    transparent 100%
  );

  transform: skewX(-20deg);
  pointer-events: none;
  animation: titleShine 4s ease-in-out infinite;
}

@keyframes titleShine {

  0% { left: -35%; }

  18% { left: 120%; }

  100% { left: 120%; }

}

.strength__person {
  position: relative;
  z-index: 2;
  display: block;
  width: min(48%, 26rem);
  margin: 5rem 1.2rem 0 auto;
  object-fit: contain;
}

.strength__profile {
  position: absolute;
  left: 2.6rem;
  bottom: 12rem;
  max-width: 14rem;
  z-index: 6;
}

.strength__label {
  text-align: center;
  display: inline-block;
  margin-left: 4rem;
  padding: 0.35rem 1rem 0.45rem;

  background: #2f3e5c;
  color: var(--white);

  font-size: 0.7rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.strength__name {
  text-align: center;
  display: inline-block;
  min-width: 10rem;
  margin: -0.2rem 0 0;
  padding: 0.5rem 1rem;

  background: #6a6a6a;
  color: var(--white);

  font-size: clamp(1.05rem, 3.2vw, 1.25rem);
  line-height: 1.1;
  font-weight: 700;
}

.strength__desc {
  margin-left: 0.2rem;

  color: var(--text);
  font-size: clamp(0.82rem, 2vw, 1rem);  line-height: 1.55;
  font-weight: 700;
  background: rgba(247, 246, 242, 0.6);
}

.strength__balloon {
  position: absolute;
  left: 50%;
  bottom: 4rem;
  transform: translateX(-50%);
  z-index: 6;

  width: 20rem;
  min-height: 10rem;
  padding: 2.8rem 3.3rem;

  background: url("img/hukidashi.svg") center / 100% 100% no-repeat;

  color: var(--accent);
  font-size: 1.2rem;
  line-height: 1.45;
  font-weight: 700;
  text-align: center;
}

.strength-message {
  width: min(100%, 32rem);

  color: var(--text);
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  line-height: 1.8;
}

.strength-message p {
  margin: 0 0 1rem;
  padding-inline: clamp(1rem, 5vw, 2rem);
  font-size: 1rem;
}

.strength-message p:last-child {
  margin-bottom: 0;
  font-weight: 700;
}

.strength-message__highlight{
  position: relative;
  margin-top: clamp(0.8rem, 2vw, 1.2rem);
  padding: 2rem 0;
  text-align: center;
  z-index: 0;
}

.strength-message__highlight::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: clamp(260px, 75vw, 360px);
  height: clamp(160px, 40vw, 220px);

  background: url("img/profile_hukidashi.svg") center / contain no-repeat;

  z-index: 0;
}

.strength-message__highlight p{
  position: relative;
  z-index: 1;
}

.strength-message__highlight p:last-child{
  margin-bottom: 0;
  font-weight: 700;
}

.strength__actions {
  position: relative;
  margin-top: 1.8rem;
  padding-bottom: 0;
  display: flex;
  justify-content: center;
}

.strength__btn {
  min-width: 16rem;
  background: var(--accent2);
  color: var(--accent);
  border-color: transparent;
  box-shadow: 0 0.6rem 1.2rem rgba(0, 0, 0, 0.12);
}

.strength__btn:hover {
  background: #ccb12a;
}



.strength__movie {
  margin-top: 4rem;
}

.strength__movie video {
  width: 100%;
  height: auto;
  border-radius: 1.2rem;
}



@media (max-width: 374px) {
  .strength__visual {
    min-height: 36rem;
    padding-top: 2rem;
  }

  .strength__title {
    padding: 0.9rem 1rem 1rem;
    font-size: 1.3rem;
  }

  .strength__person {
    z-index: 5;
    width: min(50%, 20rem);
    margin: 6rem 0.8rem 0 auto;
  }

  .strength__profile {
    left: 1rem;
    bottom: 7rem;
    max-width: 14rem;
  }

  .strength__label {
    margin-left: 4.2rem;
    padding: 0.3rem 0.8rem 0.4rem;
    font-size: 0.78rem;
  }

  .strength__name {
    min-width: 12.8rem;
    padding: 0.45rem 0.8rem 0.6rem;
    font-size: 1.6rem;
    text-align: center;
  }

  .strength__desc {
    line-height: 1.5;
    background: rgba(247,246,242,0.6);
    padding: 0.4rem 0;
  }

  .strength__balloon {
    width: 17rem;
    min-height: 8.8rem;
    padding: 2.5rem 2.6rem;
    font-size: 1rem;
    bottom: -1rem;
  }

  .strength__content {
    margin-top: -1.4rem;
    padding: 1.4rem 1.2rem 2rem;
  }

  .strength__text {
    font-size: 0.96rem;
  }

  .strength__message {
    width: min(100%, 27rem);
    margin-top: 1.8rem;
  }

  .strength__message-main {
    font-size: 0.92rem;
  }

  .strength__closing {
    width: min(100%, 27rem);
    padding: 3.6rem 1rem 3rem;
    font-size: 0.92rem;
    line-height: 1.75;
  }
  .strength__actions {
    margin-top: 1.6rem;
  }
}

@media (min-width: 375px) and (max-width: 639px) {
  .strength__visual {
    min-height: 39rem;
  }

  .strength__person {
    z-index: 5;
    width: min(48%, 22rem);
    margin: 6rem 1rem 0 auto;
  }

  .strength__profile {
    left: 1rem;
    bottom: 13rem;
    max-width: 13rem;
  }

  .strength__label {
    margin-left: 4rem;
    font-size: 0.85rem;
  }

  .strength__name {
    min-width: 11rem;
    font-size: 1.3rem;
  }

  .strength__desc {
    padding: 0.5rem 0;
  }

  .strength__balloon {
    width: 23rem;
    min-height: 9.5rem;
    padding: 2.6rem 3rem;
    font-size: 1.4rem;
  }
}

@media (min-width: 640px) {
  .strength__visual {
    padding-top: 6rem;
  }

  .strength__title {
    top: 3.8rem;
    width: 30rem;
    padding: 1.2rem 1.6rem 1.4rem;
    font-size: 2.1rem;
  }

  .strength__person {
    z-index: 5;
    width: 16rem;
    margin: 5rem 3.2rem 0 auto;
  }

  .strength__desc {
    margin-top: 0.7rem;
    line-height: 1.65;
  }

  .strength__balloon {
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 22rem;
    min-height: 12rem;
    padding: 3.7rem 3.5rem;
    font-size: 1.35rem;
  }

  .strength__content {
    margin-top: -2.4rem;
    padding: 2rem 2rem 2.8rem;
  }

  .strength__text {
    font-size: 1.12rem;
  }

  .strength__message {
    width: min(100%, 34rem);
    margin-left: auto;
    margin-right: auto;
  }

  .strength__message-main {
    font-size: 1.08rem;
  }

  .strength__closing {
    width: min(100%, 34rem);
    margin-left: auto;
    margin-right: auto;
    padding: 3.8rem 2.8rem;
    font-size: 1.05rem;
    text-align: center;
  }

  .strength__actions {
    margin-top: 2rem;
  }
}

@media (min-width: 768px) {
  .strength__visual {
  }

  .strength__person {
    z-index: 5;
    width: 17rem;
    margin: 5rem 3rem 0 auto;
  }

  .strength__profile {
    left: 2.6rem;
    bottom: 12rem;
    max-width: 12rem;
  }

  .strength__label {
    margin-left: 3.5rem;
    text-align: center;
  }

  .strength__name {
    min-width: 10rem;
    font-size: 1.2rem;
    text-align: center;
  }

  .strength__desc {
    font-size: 0.9rem;
  }
}

/* ===============================
   Benefits Section
=============================== */
.section--benefits {
  background: var(--white);
}

.section--benefits .section__inner {
  background: transparent;
  padding: 0;
}

.benefits-section {
  background: var(--white);
  overflow: hidden;
}

.benefits-section__heading {
  display: inline-block;
  margin: 0 auto;
  padding: 0.9rem 2rem;
  background: var(--accent);
  color: var(--white);
  border-radius: 1.2rem;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
}

.benefits {
}

.benefits__item {
  display: grid;
  grid-template-columns: 4.8rem 1fr 5.6rem;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1rem;
  border: 0.1rem solid rgba(143, 175, 157, 0.5);
  border-radius: 1rem;
  margin: 1rem 0;
}

.benefits__badge {
  width: 4rem;
  height: 4rem;
  border: 0.15rem solid var(--accent);
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
}

.benefits__badge-label {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.benefits__badge-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

.benefits__body {
  min-width: 0;
}

.benefits__title {
  font-size: 1.15rem;
  line-height: 1.45;
  font-weight: 700;
  color: var(--accent);
}

.benefits__text {
  margin-top: 0.35rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text);
}

.benefits__media {
  width: 5.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefits__media img {
  width: 100%;
  max-width: 4.8rem;
  height: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .section--benefits {
    padding: 2.8rem 1rem;
  }

  .benefits-section__heading {
    font-size: 1.8rem;
    padding: 1.1rem 2.8rem;
  }

  .benefits {
  }

  .benefits__item {
    grid-template-columns: 5.6rem 1fr 7rem;
    gap: 0.5rem;
  }

  .benefits__badge {
    width: 4rem;
    height: 4rem;
  }

  .benefits__badge-label {
    font-size: 0.6rem;
  }

  .benefits__badge-number {
    font-size: 1.6rem;
  }

  .benefits__title {
    font-size: 1.35rem;
  }

  .benefits__text {
    font-size: 0.95rem;
  }

  .benefits__media {
    width: 7rem;
  }

  .benefits__media img {
    max-width: 5.8rem;
  }
}

@media (max-width: 487px) {

  .benefits__item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
    text-align: center;
    justify-items: center;
    margin: 1rem 0;
  }

  .benefits__badge {
    margin-bottom: 0.2rem;
  }

  .benefits__body {
    text-align: center;
  }

  .benefits__media {
    margin-top: 0.3rem;
  }

  .benefits__media img {
    max-width: 5.8rem;
  }

}

/* ===============================
   Flow Section
=============================== */
.section--flow {
  background: #f7f6f2;
  overflow: hidden;
}

.section--flow .section__inner {
  position: relative;
  background: transparent;
padding: 0;
}

.flow {
  position: relative;
}

.flow::before,
.flow::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: 0.55;
}

.flow::before {
  width: 30rem;
  height: 30rem;
  right: -12rem;
  top: -2rem;
  background-image: url("img/step_bg1.svg");
}

.flow::after {
  width: 30rem;
  height: 30rem;
  left: -9rem;
  bottom: -3rem;
  background-image: url("img/step_bg2.svg");
}

.flow__heading {
  margin-bottom: 2rem;
  text-align: center;
  font-size: clamp(2rem, 8vw, 5rem);
  line-height: 1.4;
  font-weight: 700;
  color: var(--accent);
  position: relative;
  z-index: 2;
}

.steps {
  position: relative;
  display: grid;
  gap: 1.8rem;
  z-index: 2;
}

.steps__item {
  display: grid;
  grid-template-columns: 7.2rem 1fr;
  align-items: start;
}

.steps__side {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 1.2rem;
}

.steps__label,
.steps__title {
  font-family: "TekitouPoem", cursive;
  font-weight: 700;
}

.steps__label {
  margin: 0.3rem;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--main);
  white-space: nowrap;
}

.steps__icon {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background: var(--main);
  display: grid;
  place-items: center;
  position: relative;
  z-index: 2;
}

.steps__icon img {
  width: 2.6rem;
  height: 2.6rem;
  object-fit: contain;
}

.steps__item:not(:last-child) .steps__side::after {
  content: "";
  position: absolute;
  top: 7rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.2rem;
  height: calc(50% - 2.2rem);
  background: rgba(51, 51, 51, 0.7);
}

.steps__title {
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
  line-height: 1.4;
  color: var(--text);
}

.steps__text {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  background: rgba(230, 221, 201, 0.5);
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.08);
  font-size: clamp(1rem, 2.8vw, 1.2rem);
  line-height: 1.5;
  color: var(--text);
  text-align: center;
}

.flow__note {
  position: relative;
  z-index: 2;
  margin-top: 1.6rem;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--text);
}

@media (min-width: 768px) {
  .section--flow .section__inner {
    padding: 2rem 2rem 2rem 1rem;
  }

  .flow__heading {
    margin-bottom: 2.6rem;
    font-size: 2.4rem;
  }

  .steps {
    gap: 2.2rem;
  }

  .steps__item {
    grid-template-columns: 8rem 1fr;
  }

  .steps__label {
    font-size: 1.15rem;
  }

  .steps__icon {
    width: 5.4rem;
    height: 5.4rem;
  }

  .steps__icon img {
    width: 2.9rem;
    height: 2.9rem;
  }

  .steps__item:not(:last-child) .steps__side::after {
    top: 8rem;
    height: calc(50% - 2rem);
  }

  .steps__content {
    padding-top: 2rem;
  }

  .steps__title {
    font-size: 1rem;
  }

  .steps__text {
    font-size: 1rem;
  }

  .flow__note {
    margin-top: 2rem;
    font-size: 0.85rem;
  }
}


/* ===============================
   FAQ Section
=============================== */
.section--faq {
  background: var(--white);
}

.section--faq .section__inner {
  background: transparent;
}

.faq-section {
  max-width: 56rem;
  margin: 0 auto;
}

.faq-section__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
  text-align: center;
}

.faq-section__title-en {
  display: block;
  font-size: clamp(2rem, 8vw, 5rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text);
}

.faq-section__title-ja-img {
  display: block;
  width: min(100%, 13rem);
  height: auto;
}

.faq-list {
  display: grid;
  gap: 1.4rem;
}

.faq-item {
  border: none;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item__question {
  display: block;
}

.faq-item__answer {
  margin-top: 1rem;
}

.faq-item__bubble {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 7.4rem;
  border-radius: 0.4rem;
  overflow: visible;
}

.faq-item__label {
  flex-shrink: 0;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}

.faq-item__text {
  display: block;
  flex: 1;
  min-width: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  font-weight: 700;
  overflow-wrap: break-word;
}

.faq-item__bubble--q {
  background: var(--main);
  padding: 1.2rem 4.6rem 1.2rem 2rem;
  margin-left: 7rem;
}

.faq-item__bubble--q::before {
  content: "";
  position: absolute;
  left: -1.4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 1rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-right: 1.6rem solid var(--main);
}

.faq-item__media--q {
  position: absolute;
  left: -7rem;
  top: 50%;
  transform: translateY(-50%);
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--white);
  margin-left: 0;
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.08);
}

.faq-item__media--q img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-item__label--q {
  font-size: 2.6rem;
}

.faq-item__text--q {
  color: var(--text);
}

.faq-item__bubble--a {
  background: #d7e1d8;
  padding: 1.2rem 2rem;
  margin-right: 8rem;
}

.faq-item__bubble--a::after {
  content: "";
  position: absolute;
  right: -1.4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 1rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 1.6rem solid #d7e1d8;
}

.faq-item__media--a {
  position: absolute;
  right: -7rem;
  top: 50%;
  transform: translateY(-50%);
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--white);
  margin-right: 0;
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.08);

  display: flex;
  align-items: flex-end;
  justify-content: center;}

.faq-item__media--a img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  object-position: center bottom;
  margin: auto auto 0;
}

.faq-item__label--a {
  font-size: 2.6rem;
}

.faq-item__text--a {
  color: var(--text);
}

.faq-item__arrow {
  position: absolute;
  top: 50%;
  right: 1.4rem;

  width: 2rem;
  height: 2rem;

  background: url("img/faq_yazirushi.png") center / contain no-repeat;

  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-item__arrow {
  transform: translateY(-50%) rotate(180deg);
}

.faq-item__answer {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-8px);
  transition:
    height 0.35s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
  will-change: height, opacity, transform;
}

.faq-item__answer .faq-item__bubble--a {
  transform: translateY(-6px);
  opacity: 0;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.faq-item.is-open .faq-item__answer {
  opacity: 1;
  transform: translateY(0);
}

.faq-item.is-open .faq-item__answer .faq-item__bubble--a {
  transform: translateY(0);
  opacity: 1;
}

@media (min-width: 768px) {
  .section--faq {
    padding: 3.2rem 1.6rem 4rem;
  }

  .faq-section__title {
    margin-bottom: 2.2rem;
    font-size: 2.4rem;
  }

  .faq-list {
    gap: 1.6rem;
  }

  .faq-item__bubble {
    min-height: 8.2rem;
    gap: 1.2rem;
  }

  .faq-item__bubble--q {
    padding: 1.4rem 5rem 1.4rem 3rem;
    margin-left: 8rem;
  }

  .faq-item__bubble--a {
    padding: 1.4rem 3rem;
    margin-right: 8rem;
  }

  .faq-item__media--q,
  .faq-item__media--a {
    width: 6rem;
    height: 6rem;
  }

  .faq-item__media--q {
    left: -8rem;
  }

  .faq-item__media--a {
    right: -8rem;
  }

  .faq-item__label--q,
  .faq-item__label--a {
    font-size: 3rem;
  }

  .faq-item__text {
    font-size: 1.05rem;
  }

  .faq-item__arrow {
    right: 1.6rem;
  }
}

@media (max-width: 437px) {
  .faq-section__title-ja-img {
    width: min(100%, 10rem);
  }

  .faq-item__bubble {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .faq-item__bubble--q {
    padding: 1rem 1.6rem;
    margin-left: 5rem;
  }

  .faq-item__bubble--a {
    padding: 1rem 1.6rem;
    margin-right: 5rem;
  }

  .faq-item__label--q,
  .faq-item__label--a {
    font-size: 2.2rem;
    line-height: 1;
  }

  .faq-item__text {
    width: 100%;
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .faq-item__media--q,
  .faq-item__media--a {
    width: 3rem;
    height: 3rem;
  }

  .faq-item__media--q {
    left: -5rem;
  }

  .faq-item__media--a {
    right: -5rem;
  }

  .faq-item__arrow {
    top: 1.8rem;
    right: 1.2rem;
    transform: rotate(0deg);
  }

  .faq-item[open] .faq-item__arrow {
    transform: rotate(180deg);
  }
}


/* ===============================
   CTA Section
=============================== */
.section--cta {
  position: relative;
  background: linear-gradient(
    to bottom,
    #f7f6f2 0%,
    #fff9de 14%,
    #ffefcf 38%,
    #fff 100%
  );
  overflow: hidden;
}

.section--cta .section__inner {
  background: transparent;
}

.cta-section {
  max-width: 56rem;
  margin: 0 auto;
}

.cta {
  position: relative;
  text-align: center;
  padding: 2rem 0 0;
}

.cta__heading {
  position: relative;
  z-index: 2;
  margin-bottom: 2rem;
}

.cta__title {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 1.2rem 1rem 0.4rem;
}

.cta__title-bg {
  position: absolute;
  top: 60%;
  left: 50%;
  width: 210%;
  height: 210%;
  transform: translate(-50%, -50%);
  background: url("img/cta_title_bg.svg") center / contain no-repeat;
  z-index: -1;
}

.cta__title-text {
  display: block;
  font-size: clamp(1.4rem, 5vw, 2.8rem);
  line-height: 1.45;
  font-weight: 700;
  color: var(--accent);
}

.cta__photo {
  position: relative;
  z-index: 2;
  width: min(100%, 20rem);
  margin: 0 auto 1.8rem;
  aspect-ratio: 1 / 1;
  overflow: visible;
}

.cta__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.cta__message {
  position: relative;
  z-index: 2;
}

.cta__lead {
  margin-bottom: 1.8rem;
}

.cta__lead-marker {
  display: inline;
font-size: clamp(1rem, 3vw, 1.2rem);  font-weight: 700;
  color: var(--text);

  background: url("img/line.svg") center bottom / 100% 1.8rem no-repeat;
  padding: 0 0.2rem 0.8rem;
}

.cta__cloud-wrap {
  position: relative;
  width: min(100%, 32rem);
  margin: 0 auto 1.6rem;
}

.cta__illustration {
  width: 100%;
  display: flex;
  justify-content: center;
}

.cta__illustration img {
  display: block;
  width: 60%;
  max-width: 42rem;
  height: auto;
  margin: 0 auto;
}

.cta__sub {
  position: relative;
  margin-top: 1.6rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.cta__sub-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  inset: 50% auto auto 50%;
  width: 12rem;
  height: 7rem;
  transform: translate(-50%, -50%);
  background: url("img/cta_bg.svg") center / contain no-repeat;
  z-index: -1;
}

.cta__sub-text {
  display: inline-block;
  padding: 1rem 1.4rem;
  font-size: 1.15rem;
  line-height: 1.6;
  font-weight: 700;
  color: var(--accent);
}

.cta__note {
  margin: 0.8rem;
  font-size: clamp(1.15rem, 3.5vw, 1.45rem);
  line-height: 1.7;
  font-weight: 700;
}

.cta__actions {
  margin-top: 1.8rem;
}

.cta__btn {
  min-width: 15rem;
  background: var(--accent2);
  color: var(--accent);
  border-color: transparent;
  box-shadow: 0 0.6rem 1.2rem rgba(0, 0, 0, 0.12);
}

.cta__btn:hover {
  background: #ccb12a;
}

@media (max-width: 374px) {
  .section--cta {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 2.8rem;
  }

  .cta__title {
    padding: 1rem 0.6rem 0.2rem;
  }

  .cta__title-text {
    font-size: 1.2rem;
  }

  .cta__photo {
    width: min(100%, 16rem);
    margin-bottom: 1.4rem;
  }

  .cta__lead-marker {
    font-size: 1.08rem;
  }

  .cta__cloud-wrap {
    width: min(100%, 28rem);
  }

  .cta__sub {
    max-width: 90%;
  }

  .cta__sub-bg {
    width: 10.5rem;
    height: 6rem;
  }

  .cta__sub-text {
    padding: 0.8rem 1rem;
    font-size: 1rem;
  }

  .cta__note {
    font-size: 0.9rem;
    line-height: 1.8;
  }
}

@media (max-width: 468px) {
  .cta__cloud-wrap {
    width: 100%;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
  }

  .cta__illustration {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: visible;
  }

  .cta__illustration img{
    display:block;
    width:min(50%,32rem);
    height:auto;
    margin:0 auto;
  }
}


@media (min-width: 768px) {
  .section--cta {
    padding: 0 1.6rem 4.2rem;
  }

  .cta {
    padding-top: 2.8rem;
  }

  .cta__heading {
    margin-bottom: 2.4rem;
  }

  .cta__title {
    padding: 1.4rem 1.8rem 0.8rem;
  }

  .cta__title-text {
    font-size: 2rem;
  }

  .cta__photo {
    width: 22rem;
    margin-bottom: 2.2rem;
  }

  .cta__lead {
    margin-bottom: 2rem;
  }

  .cta__lead-marker {
    font-size: 1.45rem;
  }

  .cta__cloud-wrap {
    margin-bottom: 2rem;
  }

  .cta__sub {
  }

  .cta__sub-bg {
    width: 13.5rem;
    height: 7.8rem;
  }

  .cta__sub-text {
    font-size: 1.25rem;
    padding: 1.1rem 1.8rem;
  }

  .cta__note {
    font-size: 1rem;
  }

  .cta__actions {
    margin-top: 4rem;
  }

  .cta__btn {
    min-width: 17rem;
  }
}


/* ===============================
   Footer
=============================== */
.site-footer {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  overflow: hidden;
}

.site-footer__inner {
  position: relative;
  min-height: 9rem;
  padding: 3.8rem 1.6rem 1.6rem;
  background: url("img/footer_bg.svg") center top / cover no-repeat;
  font-size: 0.78rem;
}

.privacy-link{
  display: table;
  margin: 1.2rem auto 0;
  font-size: 0.8rem;
  color: rgba(47,62,92,.7);
  text-decoration: underline;
  text-underline-offset: .15em;
}

.site-footer__copy {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 0.72rem;
  line-height: 1.5;
  color: rgba(47, 62, 92, 0.8);
}

.site-footer__pagetop{
  position: fixed;
  right: max(0.8rem, calc(50% - 280px + 0.8rem));
  bottom: 1rem;
  width: 4rem;
  z-index: 20;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.15));
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);

  transition:
    opacity .3s,
    transform .3s,
    visibility .3s;
}


.site-footer__pagetop.is-show{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

@media (max-width: 374px) {
  .site-footer__inner {
    min-height: 8rem;
    padding: 3.2rem 1rem 1.2rem;
  }

  .site-footer__copy {
    font-size: 0.66rem;
  }

  .site-footer__pagetop {
    width: 3rem;
    right: max(0.8rem, calc(50% - 200px + 0.8rem));
  }
}

@media (min-width: 768px) {
  .site-footer__inner {
    min-height: 7rem;
    padding: 4.2rem 2rem 0;
  }

  .site-footer__copy {
    font-size: 0.78rem;
    padding: 1rem;
  }

  .site-footer__pagetop {
    width: 4rem;
  }
}

@media (min-width: 1200px) {
  .site-footer__pagetop {
    right: max(0.8rem, calc(50% - 50px + 0.8rem));

  }
}

.site-footer__pagetop{
  display: block;
}

.site-footer__pagetop-img{
  display: block;
  width: 100%;
  height: auto;
  transition: opacity .25s ease;
}

.site-footer__pagetop-img--default{
  position: relative;
  opacity: 1;
  z-index: 1;
}

.site-footer__pagetop-img--hover{
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 2;
}

@media (hover: hover) {
  .site-footer__pagetop:hover .site-footer__pagetop-img--default{
    opacity: 0;
  }

  .site-footer__pagetop:hover .site-footer__pagetop-img--hover{
    opacity: 1;
  }
}


/* ===============================
   アニメーション
=============================== */

body {
  opacity: 0;
  transition: opacity 1s ease;
}

body.loaded {
  opacity: 1;
}

.fadein {
  opacity: 0;
}

.fadein.show {
  opacity: 1;
  transition: opacity 1s ease;
}

.fadein-once {
  opacity: 0;
  transform: translateY(20px);
}

.fadein-once.show {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}



.delay-1.show {
  transition-delay: 0.15s;
}

.delay-2.show {
  transition-delay: 0.3s;
}

.delay-3.show {
  transition-delay: 0.45s;
}



.popin {
  opacity: 0;
  transform: scale(0.8);
}

.popin.show {
  opacity: 1;
  animation: pop 0.6s ease forwards;
}

@keyframes pop {

  0% {
    transform: scale(0.8);
  }

  60% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }

}



.scroll-character {
  position: fixed;
  left: 10px;
  bottom: 0;
  width: 70px;
  z-index: 90;
  pointer-events: none;

  opacity: 0;
  transform: translateY(100%);
  transition:
    transform 0.45s ease,
    opacity 0.3s ease,
    left 0.25s ease;
}

.scroll-character.is-show {
  opacity: 1;
  transform: translateY(0);
}

.scroll-character img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 1200px) {
  .scroll-character {
    left: 120px; 
    width: clamp(5rem, 20vw, 20rem);
  }
}



.slidein-right {
  opacity: 0;
  transform: translateX(60px);
  transition:
    transform 0.8s cubic-bezier(.22,1,.36,1),
    opacity 0.6s ease;
}

.slidein-right.show {
  opacity: 1;
  transform: translateX(0);
}



/* ===============================
   Policy Page
=============================== */
.policy-header {
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.policy-header__inner {
  width: min(100% - 2rem, 960px);
  margin: 0 auto;
  padding: 1rem 0;
}

.policy-header__logo {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}

.policy-main {
  background: var(--bg);
  padding: 3rem 1rem 4rem;
}

.policy {
  width: 100%;
}

.policy__inner {
  width: min(100%, 800px);
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  padding: 2rem 1.25rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.policy__title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  line-height: 1.4;
  color: var(--accent);
  text-align: center;
  margin-bottom: 1.5rem;
}

.policy__lead {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 2rem;
}

.policy__section + .policy__section {
  margin-top: 2rem;
}

.policy__heading {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--accent);
  margin-bottom: 0.75rem;
  padding-left: 0.75rem;
  border-left: 4px solid var(--main);
}

.policy__text {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text);
}

.policy__list {
  margin-top: 0.75rem;
  padding-left: 1.2rem;
}

.policy__list li {
  list-style: disc;
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text);
}

.policy__contact {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.9;
}

.policy__contact a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.policy__date {
  margin-top: 2.5rem;
  font-size: 0.88rem;
  line-height: 1.7;
  color: #666;
  text-align: right;
}

.policy__back {
  margin-top: 2rem;
  text-align: center;
}

.policy__back-link {
  display: inline-block;
  min-width: 220px;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  background: var(--main);
  color: var(--white);
  font-weight: 700;
  transition: opacity 0.3s ease;
}

.policy__back-link:hover {
  opacity: 0.85;
}

.policy-footer {
  background: var(--white);
  padding: 1.25rem 1rem 2rem;
}

.policy-footer__inner {
  width: min(100% - 2rem, 960px);
  margin: 0 auto;
}

.policy-footer__copy {
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(47, 62, 92, 0.8);
}

@media (min-width: 768px) {
  .policy-main {
    padding: 5rem 1.5rem 6rem;
  }

  .policy__inner {
    padding: 3rem;
  }

  .policy__lead,
  .policy__text,
  .policy__list li,
  .policy__contact {
    font-size: 1rem;
  }

  .policy__heading {
    font-size: 1.15rem;
  }
}