@charset "UTF-8";
@import url("grid.css");
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;700;900&family=Zen+Maru+Gothic:wght@400;700;900&display=swap');

:root {
  /* 色変更される場合は、#以降のカラーコードを変更してください IE非対応 */
  --base-color: #725543;
  --link-color: #725543;
  --linkhover-color: #634836;
  --back-color: #ffffff;
  --border-color: #FCB04A;
  --white-color: #fff;
  --contents_width: 1100px;
  --paleorange: #FCB04A;
  --orange: #FF803C;
  --gray_800: 136, 136, 136;
  --lineheight_head: 1.6;
  --ease-inout-quad: cubic-bezier(0.455, 0.030, 0.515, 0.955);
  --paleyl: #FFF5D5;
  --surface_700: 255, 255, 255;
  --line_height_base: 2;
  --line_height_head: 1.5;
  --letter_spacing_base: .05em;
  --letter_spacing_head: .05em;
  --black: 10, 10, 10;
  --gray_800: 136, 136, 136;
  --gray_500: 204, 204, 204;
  --gray_200: 231, 231, 231;
  --gray_100: 244, 244, 244;
  --accent_1_500: 251, 214, 0;
  --accent_2_500: 255, 84, 84;
  --accent_2_100: 255, 235, 235;
  --swiper-navigation-size: 44px;
  --swiper-navigation-color: var(--swiper-theme-color);
  --swiper-theme-color: #007aff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", serif;
  color: var(--base-color);
  background-color: #fff;
  font-size: 1.6rem;
  -webkit-text-size-adjust: 100%;

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  background-repeat: repeat;
}


@media (max-width: 767px) {
  body {
    background-size: 18px 18px;
    background-position: 0 0;
  }
}


.u-font-bold {
  font-weight: 700;
}

.u-font-round {
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 700;
}

.font-bold {
  font-weight: 700;
}

.c-color-main700 {
  color: var(--orange);
}

img {
  max-width: 100%;
  height: auto;
  /*高さ自動*/
}

a {
  display: block;
  color: var(--link-color);
  text-decoration-line: none;
  transition: .3s ease;
}

a:hover {
  color: var(--linkhover-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  word-break: break-word;
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

ul[class],
ol[class] {
  list-style: none;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.c-color-red {
  color: var(--dark_red);
}

.c-bg-palebl {
  background-color: var(--paleyl);
}

/*ヘッダー
-------------------------------------*/
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 60px;
  z-index: 3;
}

/* 内側を flex 化 */
.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 15px;
  box-sizing: border-box;
}

/* ロゴ：absolute 解除 */
.logo {
  position: static;
  padding: 0;
  width: 200px;
  flex-shrink: 0;
}

.title {
  font-size: 3rem;
  font-weight: 700;
  margin-left: 10px;
}

/* --------------------------------------------------
   右側ナビ（電話CTA）
-------------------------------------------------- */
@media (min-width: 768px) {
  .nav {
    display: flex;
    align-items: center;
  }


  .nav .contact {
    display: flex;
    align-items: center;
    margin: 0;
    font-family: "Zen Kaku Gothic New", serif;
    font-weight: 900;
    position: relative;
  }

  /* 電話ボックス */
  .contact .mail {
    background: linear-gradient(90deg, #FF556C 0%, #FF5659 100%);
    border-radius: 0 0 0 20px;
    padding:
      clamp(48px, 5vw, 90px)
      /* 上 */
      24px
      /* 右 */
      clamp(12px, 2vw, 20px)
      /* 下 */
      36px;
    margin-left: 20px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact .mail:hover {
    opacity: 0.5;
  }

}

/* 電話リンク */
.contact .mail a {
  color: #fff;
  font-size: clamp(22px, 3vw, 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  letter-spacing: 2%;
}

/* 電話アイコン */
.contact .mail a::before {
  content: "\f095";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.6em;
  margin-right: 10px;
  margin-top: 4%;

}

.contact-lead {
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 700;
  font-size: calc(14px + (16 - 14) * ((100vw - 375px) / (1200 - 375)));
  letter-spacing: 0.02em;
  /* 2% */
}

.contact-time {
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 700;
  font-size: calc(14px + (16 - 14) * ((100vw - 375px) / (1200 - 375)));
  letter-spacing: 0.03em;
  /* 3% */
  margin-top: 6px;
  /* 好きな値に調整 */
}





/* --------------------------------------------------
   以下：既存CSS（変更なし）
-------------------------------------------------- */

.fv_box .scroll {
  display: flex;
  align-items: center;
  width: 34rem;
  height: 9rem;
  position: absolute;
  right: 0;
  bottom: -1px;
  padding: 2rem 5rem;
  box-sizing: border-box;
  border-radius: 20px 0 0 20px;
  color: #fff !important;
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
  background-image: url(../img/backg.png);
  font-family: "Zen Maru Gothic", serif;
}

.fv_box .scroll::after {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 0 4rem;
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.fv_box .scroll p span {
  font-size: small;
}

.l-main-img__detail {
  max-width: 451px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .l-main-img__detail {
    width: min(29vw, 560px);
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 30px;
    box-sizing: content-box;
  }
}

@media (max-width: 767px) {
  .fv_box .scroll {
    position: relative;
    width: 100%;
  }
}

.nav_item a {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--base-color);
  font-weight: bold;
  position: relative;
}

.nav_item a::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  width: 0;
  height: 1px;
  background-color: var(--base-color);
  transition: 0.3s all;
}

.nav_item a:hover::after {
  width: 100%;
}

img.pc.copy {
  width: 280px;
}


/* task */
.home-task {
  background: #fff;
  margin-top: -56px;
  z-index: 1;
}

.home-task__inner {
  padding-top: 50px;
  padding-bottom: 42px;
}

.u-inner {
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
}

.c-head01__main-prefix {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px;
}

.c-head01.has-bubble .c-head01__main-prefix {
  position: relative;
  color: #313195;
  font-size: 1.5rem;
  background: rgb(var(--surface_700));
  line-height: var(--line_height_head);
  letter-spacing: var(--letter_spacing_head);
  padding: 6px 21px;
  border-radius: 5px;
}

.c-head01.has-bubble .c-head01__main-prefix::before {
  content: "";
  border: 10px solid transparent;
  border-top: 10px solid rgba(var(--surface_700));
  margin-left: -10px;
  top: 100%;
  left: 50%;
  position: absolute;
}

.c-head01__main {
  text-align: center;
  font-size: 2.2rem;
  letter-spacing: var(--letter_spacing_head);
  line-height: var(--line_height_head);
}

.home-task__head {
  position: relative;
  margin: 0 auto;
  margin-bottom: 36px;
}


.home-task__detail {
  position: relative;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 20px 25px 40px;
  max-width: 1440px;
  margin: 0 auto;
}

.home-task__detail-head {
  text-align: center;
  line-height: var(--line_height_head);
  letter-spacing: var(--letter_spacing_head);
  padding-bottom: 15px;
  border-bottom: 1px solid rgb(var(--gray_500));
  margin-bottom: 20px;
  font-size: 1.6rem;
  color: rgb(var(--black));
}

.home-task__detail-content {
  position: relative;
}

.home-task__detail-content-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 15px;
}

.home-task__detail-content-item {
  position: relative;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.6;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-left: 24px;
}

.home-task__detail-content-item-ico::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 18px;
  height: 16px;
  vertical-align: middle;
  transition: all 0.3s ease;
  color: var(--orange);
  content: '\f14a';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}

.home-task__detail-content-txt {
  font-size: 1.4rem;
  line-height: 1.6;
  background: #F0F0F0;
  padding: 11px 20px 13px;
  text-align: center;
  margin-top: 20px;
}

.c-marker01 {
  display: inline;
  background: rgb(var(--accent_1_500));
  font-weight: 700;
}

@media (min-width: 768px) {
  .f_y {
    background-color: #F9F4BD;
    padding: 0px;
    border-radius: 0px;
    margin-top: 1%;
  }
    
  .f_y02 {
    background-color: #F9F4BD;
    padding: 0px 6px;
    border-radius: 0px;
    margin-top: 1%;
    margin-right: 1%;
    color:#313195;
  }   
    
  .f_y03 {
    background-color: #767676;
    padding: 0px 6px;
    border-radius: 0px;
    margin-top: 1%;
    margin-right: 1%;
    color:#313195;
    text-align: left;
  }      

  .home-task__head-main .f_y:nth-of-type(2) {
    margin-bottom: 2%;
  }

  .home-task {
    border-radius: 60px;
    margin-top: -60px;
    /* margin-bottom: -60px; */
    /* margin-bottom: 60px; */
  }

  .home-task__inner {
    padding-top: 120px;
    padding-bottom: 75px;
  }

  .c-head01__main {
    font-size: min(calc(60 / 1920* 100vw), 60px);
  }

.c-head01.has-bubble .c-head01__main-prefix {
  font-size: clamp(
    25px,
    calc(25px + (100vw - 375px) * (27 - 25) / (1280 - 375)),
    27px
  );
  letter-spacing: 2px;

  padding: 11px 70px;
  border-radius: 10px;
}


  .c-head01__main-prefix {
    margin-top: 30px;
  }

  .home-task__head {
    margin-bottom: 0px;
    max-width: 1440px;
  }

  .home-task__head img {
    display: block;
    margin: 0 auto;
  }

  .home-task__detail-head {
    font-size: 2.5rem;
    padding-bottom: 38px;
    max-width: 1360px;
    margin: 0 auto;
    margin-bottom: 40px;
  }

  .home-task__detail-content {
    max-width: 1100px;
    margin: 0 auto;
  }

  .home-task__detail-content-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 20px;
  }

  .home-task__detail-content-item {
    font-size: 2rem;
    padding-left: 38px;
  }

  .home-task__detail-content-txt {
    font-size: 1.9rem;
    padding: 11px 20px;
    margin-top: 44px;
  }

}

@media (max-width: 767px) {

  .f_y {
    background-color: #F9F4BD !important;
    padding: 0px !important;
    border-radius: 0px !important;
    margin-top: 1% !important;
    font-size: clamp(15px,
        calc(15.7px + (100vw - 375px) * 0.023),
        26px) !important;
  }
    
  .f_y02 {
    background-color: #F9F4BD;
    padding: 3px 6px;
    border-radius: 0px;
    margin-top: 1%;
    margin-right: 1%;
    color: #313195;
    display: block;
    width: fit-content;
    margin: 0 auto;
  }
    
  .f_y03 {
    background-color: #767676;
    padding: 0px 6px;
    border-radius: 0px;
    margin-top: 1%;
    margin-right: 1%;
    color:#313195;
    text-align: left;
  }          
    

  .home-task__head-main .f_y:nth-of-type(2) {
    margin-bottom: 2%;
  }

  .home-task__detail-content-list-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
    background: var(--orange);
    color: rgb(var(--surface_700));
    padding: 10px;
    border-radius: 999px;
    z-index: 2;
    border: 0px;
  }

  .home-task__detail-content-list-btn-ico {
    display: block;
    position: relative;
    margin-left: 6.5px;
    width: 22px;
    height: 22px;
    background: rgb(var(--surface_700));
    border-radius: 999px;
  }

  .home-task__detail-content-list-btn-ico::before,
  .home-task__detail-content-list-btn-ico::after {
    position: absolute;
    top: 50%;
    left: 50%;
    content: "";
    display: block;
    width: 10px;
    height: 2px;
    background: var(--orange);
    transform: translate(-50%, -50%);
  }

  .home-task__detail-content-list-btn-ico::before {
    transform: translate(-50%, -50%) rotate(-90deg);
  }

  .home-task__detail-content-list-wrap.is-open .home-task__detail-content-list-btn {
    opacity: 0;
  }

  .home-task__detail-content-list-wrap {
    height: 196px;
    overflow: hidden;
    position: relative;
  }

  .home-task__detail-content-list-wrap.is-open {
    height: unset;
  }

  .home-task__detail-content-list-wrap::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 150px;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-image: linear-gradient(0deg, white, rgba(255, 255, 255, 0));
  }

  .h_img_sp {
    width: 70%;
    margin: 0 auto;
    display: block;
  }

  .home-task {
    margin-bottom: 0px;
  }

}

/* nayami */
.c-cv01 {
  max-width: 1440px;
  margin: 0 auto;
}

.c-cv01__inner {
  padding-top: 80px;
  padding-bottom: 50px;
  position: relative;
}

.c-head01.is-white .c-head01__main {
  color: #313195;
  margin-top: 10px;
}

.c-head01__main {
  text-align: center;
  font-size: 2.2rem;
  letter-spacing: var(--letter_spacing_head);
  line-height: var(--line_height_head);
}


.c-head01__main-txt.is-sm {
  display: block;
  font-size: 1.4rem;
}

.c-head01__main-txt.is-lg {
  display: block;
  margin-top: -0.2em;
  font-size: 4rem;
}

.c-head01__main-txt {
  line-height: var(--line_height_head);
}



span {
  font-weight: inherit;
}

.c-cv01__lead {
  color: rgb(var(--surface_700));
  margin-bottom: 70px;
  text-align: center;
}

.c-cv01__detail {
  background: rgb(var(--surface_700));
  padding: 15px 10px 20px;
  border-radius: 10px;
}

.c-cv01__detail::before {
  position: absolute;
  content: "";
  width: 96px;
  height: 70px;
  /* top: 0; */
  left: 50%;
  background: url(../img/family_ico.png) no-repeat top center / contain;
  transform: translate(-50%, -100%);
}

.c-cv01__detail-flow {
  max-width: 800px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 5px;
  margin: 0 auto 11px;
}

.c-cv01__detail-flow::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  top: 50%;
  left: 0;
  /* opacity: 0; */
  transform: translateY(-50%);
  background: var(--base-color);
  transition: opacity 2.5s ease;
}

.c-cv01__detail-flow-item {
  position: relative;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  line-height: var(--line_height_head);
  letter-spacing: var(--letter_spacing_head);
  text-align: center;
  font-weight: 700;
  background: rgb(var(--gray_100));
  border-radius: 5px;
  padding: 22px 5px 12px;
}

.c-cv01__detail-flow-item-num {
  position: absolute;
  display: flex;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  padding-top: 0px;
  padding-left: 8px;
  font-size: 1.6rem;
  box-sizing: border-box;
  color: rgb(var(--surface_700));
  background: var(--orange);
  border-radius: 5px 0 5px 0;
  /* -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
    clip-path: polygon(0 0, 100% 0, 0 100%); */
}

.c-cv01__btn-wrap {
  padding: 0 10px;
  display: flex;
  gap: 10px 0;
  flex-direction: column;
  align-items: center;
}

.c-btn01.is-center {
  text-align: center;
}

.c-tel01.is-center {
  text-align: center;
  margin-top: 2px;
}

.c-tel01 {
  max-width: 400px;
  display: block;
  width: 100%;
  box-sizing: border-box;
  background: var(--orange);
  color: rgb(var(--surface_700));
  line-height: 1.6;
  font-size: 1.6rem;
  padding: 10px;
  border-radius: 999px;
  box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.c-tel01__num {
  margin-top: 4px;
  font-size: 2.8rem;
  line-height: 1.1;
  letter-spacing: 0;
  color: rgb(var(--surface_700));
}

.c-tel01__num-ico::before {
  position: absolute;
  /* top: 0;
    left: 0; */
  display: inline-block;
  /* width: 18px;
    height: 16px; */
  vertical-align: middle;
  transition: all 0.3s ease;
  color: rgb(var(--surface_700));
  content: '\f095';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-left: -30px;
  margin-top: 6px;
  font-size: 2rem;
}

.c-tel01__info {
  margin-bottom: 15px;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 700;
  color: rgb(var(--surface_700));
}

.c-btn01 {
  max-width: 400px;
  display: block;
  width: 100%;
  box-sizing: border-box;
  background: var(--orange);
  padding: 20px;
  border-radius: 999px;
  box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, 0.1);
}

.c-btn01__in {
  background: var(--orange);
  color: rgb(var(--surface_700));
  line-height: 1.6;
  font-size: 1.6rem;
  margin: 10px auto;
}

.c-btn01__in:hover {
  color: rgb(var(--surface_700));
}

.c-btn01__ico.is-mail:before {
  position: absolute;
  /* top: 0;
    left: 0; */
  display: inline-block;
  /* width: 18px;
    height: 16px; */
  vertical-align: middle;
  transition: all 0.3s ease;
  color: rgb(var(--surface_700));
  content: '\f0e0';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-left: -30px;
  margin-top: -2px;
  font-size: 2rem;
}

@media (min-width: 768px) {
  .c-head01__main-txt.is-lg {
    margin-top: -0.3em;
    font-size: clamp(5rem, -0.4688rem + 7.12vw, 5.938rem);
  }

  .c-head01__main-txt.is-sm {
    font-size: clamp(1.6rem, 0.992rem + 0.79vw, 2.1rem);
  }

  .c-cv01__btn-wrap {
    flex-direction: row;
    justify-content: space-around;
    max-width: 860px;
    margin: 0 auto;
  }

  .c-tel01 {
    margin-bottom: 0px;
  }
}

@media (max-width: 767px) {

  .c-head01__main {
    text-align: center;
    font-size: clamp(15px,
        calc(17px + (100vw - 375px) * 0.02),
        30px);
    letter-spacing: var(--letter_spacing_head);
    line-height: var(--line_height_head);
  }

  .c-head01.has-bubble .c-head01__main-prefix {
    position: relative;
    color: #313195;
    font-size: clamp(15px,
        calc(17px + (100vw - 375px) * 0.023),
        26px);
    background: rgb(var(--surface_700));
    line-height: var(--line_height_head);
    letter-spacing: var(--letter_spacing_head);
    padding: 6px 0px;
    border-radius: 5px;
  }

  .home-task__head-main .em-line-wrap {
    font-size: clamp(15px,
        calc(17px + (100vw - 375px) * 0.023),
        26px);
  }

  .home-task h2 {
    line-height: 100%;
  }

}

/* =========================
   #onayami（onayami / 課題解決）専用
========================= */

#onayami {
  position: relative;
  overflow: hidden;
  padding-top: 0vw;
  padding-bottom: 0vw;
  background: linear-gradient(
  to bottom,
  rgba(255, 255, 255, 0) 0%,
  rgba(255, 255, 255, 1) 20%,
  rgba(255, 255, 255, 1) 100%
);

}

.onayami-bg {
}

/* =========================
   波レイヤー（横無限SVG前提）
========================= */

.onayami-wave {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}

.onayami-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

.onayami-wave--top {
  top: 0;
  background-color: #fff;
}

.onayami-wave--bottom {
  bottom: 0;
  transform: scaleY(-1) scaleX(-1);

}


.home-onayami__inner img {
  margin: 0 auto;
}

.sp_word {
  display: none;
}

/* ===== スマホ用 お悩みセクション ===== */
@media (max-width: 767px) {

  .sp_word {
    background: #ffffff;
    padding: 60px 20px 80px;
    text-align: center;
    position: relative;
    display: block;
  }

  /* 見出し */
  .sp_word h2 {
    font-size: clamp(20px,
        calc(24px + (100vw - 375px) * 0.025),
        32px);
    font-weight: 700;
    line-height: 1.5;
    color: #2f3fa0;
    margin-bottom: 30px;
  }

  /* お悩みテキスト（白いカプセル） */
  .sp_word_p {
    font-family: "Zen Maru Gothic", serif;
    background: #E9EEFF;
    border-radius: 999px;
    padding: 14px 20px;
    font-size: clamp(14px,
        calc(15px + (100vw - 375px) * 0.015),
        18px);
    line-height: 1.6;
    color: #2f3fa0;
    margin-bottom: 14px;
  }

  /* 最後のテキストだけ余白調整 */
  .sp_word_p:last-of-type {
    margin-bottom: 40px;
  }

  /* イラスト */
  .sp_word .onayami_bg.sp {
    width: 60%;
    max-width: 280px;
    margin: 0 auto;
    display: block;
  }

  /* PC画像はスマホ非表示 */
  .sp_word .onayami_bg.pc {
    display: none;
  }


}

/* =========================
   #can専用
========================= */

#can {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
}

.can-bg {
  padding: 100px 24px;
}

/* =========================
   波レイヤー（横無限SVG前提）
========================= */
#reason {
  position: relative;
}

.reason-wave {
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}

.reason-wave img {
  width: 100%;
  height: auto;
}

.reason-wave--top {
  top: 0;
}

.reason-wave--bottom {
  bottom: 0;
  transform: scaleY(-1) scaleX(-1);

}


.home-can__inner img {
  margin: 0 auto;
}

.sp_word {
  display: none;
}

/* ===== スマホ用 お悩みセクション ===== */
@media (max-width: 767px) {
  .sp_word {
    background: #ffffff;
    padding: 60px 20px 80px;
    text-align: center;
    position: relative;
    display: block;
  }

  /* 見出し */
  .sp_word h2 {
    font-size: clamp(20px,
        calc(24px + (100vw - 375px) * 0.025),
        32px);
    font-weight: 700;
    line-height: 1.5;
    color: #2f3fa0;
    margin-bottom: 30px;
  }

  /* お悩みテキスト（白いカプセル） */
  .sp_word_p {
    font-family: "Zen Maru Gothic", serif;
    background: #E9EEFF;
    border-radius: 999px;
    padding: 14px 0px;
    font-size: clamp(15px, calc(14px + (100vw - 375px) * 0.015), 18px);
    line-height: 130%;
    color: #2f3fa0;
    font-weight: 500;
    letter-spacing: 5%;
  }

  /* 最後のテキストだけ余白調整 */
  .sp_word_p:last-of-type {
    margin-bottom: 40px;
  }

  /* イラスト */
  .sp_word .can_bg.sp {
    width: 60%;
    max-width: 280px;
    margin: 0 auto;
    display: block;
  }

  /* PC画像はスマホ非表示 */
  .sp_word .can_bg.pc {
    display: none;
  }
    
.can-bg {
  padding: 70px 24px 0;
}    

}
/* ===============================
   上段：理由（PC）
=============================== */

/* ===== head ===== */
#can.home-can .home-reason__head {
  text-align: center;
}

#can.home-can .home-reason__catch {
  display: block;
  padding: 4px 12px;
  background: #313195;
  color: #fff;
font-size: clamp(
  24px,
  calc(24px + (36 - 24) * ((100vw - 767px) / (1280 - 767))),
  36px
);
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin: 0 auto 16px;
  width: fit-content;
  border-radius: 4px;
}

#can.home-can .home-reason__title {
  font-size: 36px;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #313195;
  margin-bottom: 20px;
  letter-spacing: 3%;
}

#can.home-can .home-reason__lead {
  font-size: clamp(
  14px,
  calc(14px + (17 - 14) * ((100vw - 767px) / (1280 - 767))),
  17px
);
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  color: rgba(49, 49, 149, 0.75);
  line-height: 200%;
  letter-spacing: 5%;
  margin-top:40px;
}

#can.home-can .home-reason__lead02 {
font-size: clamp(
  16px,
  calc(16px + (17 - 16) * ((100vw - 375px) / (767 - 375))),
  17px
);
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  color: rgba(49, 49, 149, 0.75);
  line-height: 200%;
  letter-spacing: 5%;
  margin-top:10px;
  text-align: center;
}

#can.home-can .home-reason__lead02 span{
  background-color:#BDCDFF;
  padding:2px 8px;
  margin:0 2px;
}

#can.home-can .home-reason__lead span{
  background-color:#E9EEFF;
  padding:2px 8px;
  margin:0 2px;
}

#can.home-can .home-reason__summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  margin-top: 80px;
}

/* 行 */
#can.home-can  .reason-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  max-width: 1280px;
}

/* 下段は少し内側に寄せる（見本再現） */
#can.home-can  .reason-row--bottom {
  transform: translateY(24px);
  z-index: 100;
}

/* item */
#can.home-can .reason-row--top .reason-item {
  flex: 0 0 calc((100% - 45px) / 4);
  max-width: 320px;
}

  /* 下段：2分割 */
  #can.home-can .reason-row--bottom .reason-item {
    flex: 0 0 calc((100% - 15px) / 2);
    max-width: 320px;
  }

/* ===============================
   reason 番号（左上固定）
=============================== */

/* 円を基準にする */
#can.home-can .reason-circle {
  position: relative;
  width: 200px;
  height: 200px;
  background: #BDCDFF;
  border: 15px solid rgba(255, 255, 255, 0.12);
  border-radius: 400px;
  display: grid;
  place-items: center;
  text-align: center;
  box-sizing: border-box;
  transition: transform .35s ease, box-shadow .35s ease;
  padding: 36px 0px 24px;
}


/* no（左上）共通 */
#can.home-can  .reason-no,
#can.home-can  .reason-no02 {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 53px;
  height: 53px;
  border-radius: 999px;
  background: #313195;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 27px;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
  z-index: 3;
  font-style: oblique;
  padding-right: 6px;
  box-sizing: border-box;
}

/* hover */
#can.home-can .reason-item:hover .reason-circle {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(49, 49, 149, .18);
}

#can.home-can .reason-circle .icon01 {
  width: 65px;
  height:65px;
  margin-bottom: 10px;
}

#can.home-can .reason-circle .icon02 {
  width: 65px;
  height:65px;
  margin-bottom: 10px;
}

#can.home-can .reason-circle .icon03 {
  width: 65px;
  height:65px;
  margin-bottom: 10px;
}

#can.home-can .reason-circle .icon04 {
  width: 65px;
  height:65px;
  margin-bottom: 10px;
}

#can.home-can .reason-circle .icon05 {
  width: 65px;
  height:65px;
  margin-bottom: 10px;
}

#can.home-can .reason-circle p {
  margin-bottom: 8px;
  font-size: clamp(
  14px,
  calc(14px + (17 - 14) * ((100vw - 767px) / (1280 - 767))),
  17px
);
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #313195;
  line-height: 150%;
}


#can.home-can .reason-circle span {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #313195;
  line-height: 200%;
  padding-bottom:8px;
  letter-spacing: 5%;
  max-width: 280px;
}
/* ===============================
   SP（#can section only）
=============================== */
@media (max-width: 767px) {
    
#can.home-can .reason-circle {
  position: relative;
  width: clamp(
    164px,
    calc(164px + (100vw - 375px) * ((220 - 164) / (767 - 375))),
    220px
  );
  height: clamp(
    164px,
    calc(164px + (100vw - 375px) * ((220 - 164) / (767 - 375))),
    220px
  );
  margin:0 auto;
  border: 7px solid rgba(255, 255, 255, 0.12);   
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;    
}  
    
#can.home-can .home-reason__lead02 {
  line-height: 170%;
}
/* item */
  #can.home-can .reason-row--top .reason-item {
    width: 100%;
  }

  /* 下段：2分割 */
  #can.home-can .reason-row--bottom .reason-item {
    width: 100%;
  }    
    
    
  #can.home-can {
    padding: 0 0 38px;
  }

  /* ===== 見出し ===== */
  #can.home-can .home-reason__catch {
      font-size: clamp(
    24px,
    calc(24px + (100vw - 375px) * 0.0204),
    32px
  );
  }

  #can.home-can .home-reason__title {
    font-size: clamp(24px,
        calc(28px + (100vw - 375px) * 0.03),
        36px);
    letter-spacing: 3%;
  }

  #can.home-can .home-reason__lead {
font-size: clamp(
  16px,
  calc(16px + (17 - 16) * ((100vw - 375px) / (767 - 375))),
  17px
);
  }

  /* ===== レイアウト（2-1-2） ===== */
  #can.home-can .home-reason__summary {
    align-items: stretch;
}

  #can.home-can .reason-row {
    display: grid;
    width: 100%;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);  
  }

  #can.home-can .reason-row--top .reason-item {
    justify-content: center;
    width:100%;
  }

  #can.home-can .reason-row--top .reason-item:nth-child(3) {
    flex: 0 0 100%;
  }

  #can.home-can .reason-row--bottom {
  }

  #can.home-can .reason-row--bottom .reason-item {
    flex: 0 0 calc(50% - 12px);
    display: flex;
    justify-content: center;
  }


#can.home-can .reason-circle span {
  margin: 0;
  font-size: calc(
    16px + (100vw - 375px) * 0.005
  );
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #313195;
  line-height: 170%;
  padding-bottom:8px;
  letter-spacing: 3%;
  max-width: none;
  display: block;
}

  /* ===== アイコン ===== */
  #can.home-can .reason-circle img {
    margin-bottom: 10px;
  }

  #can.home-can .reason-circle .icon01,
  #can.home-can .reason-circle .icon02,
  #can.home-can .reason-circle .icon03,
  #can.home-can .reason-circle .icon04,
  #can.home-can .reason-circle .icon05 { width: 30px; }

  /* ===== テキスト ===== */
#can.home-can .reason-circle p {
  margin-top: 20px;
  font-size: clamp(
    15px,
    calc(15px + (17 - 15) * ((100vw - 375px) / (767 - 375))),
    17px
  );
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #313195;
  line-height: 160%;
  padding-bottom: 0px;
}

    
  #can.home-can .reason-circle {
    width: calc(272px * 100vw / 375);
    height: calc(272px * 100vw / 375);
    box-sizing: border-box;
    padding: 0px 0px;
  }
#can.home-can .reason-row--top .reason-item {
  flex: 0 0 calc((100% - 30px) / 3);
  max-width: none;
}   
#can.home-can .reason-row--bottom .reason-item {
  flex: 0 0 calc((100% - 30px) / 3);
  max-width: none;
}   
#can.home-can .home-reason__head {
  text-align: center;
}    
    
#can.home-can .home-reason__lead02 span{
  background-color:#BDCDFF;
  padding:2px 8px;
  margin:0 2px;
display: block;    
}
    
    
    
}


















/* tigai */
.home-difference {
  position: relative;
}

.home-difference__inner {
  padding-top: 60px;
  padding-bottom: 50px;
}

.home-difference__head {
  position: relative;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.home-difference__head::before {
  position: absolute;
  content: "";
  background: url(../img/difference01.png) no-repeat top center / contain;
  width: 85px;
  height: 71px;
  top: 0;
  left: 0;
  transform: translateY(-50%);
}

.home-difference__head::after {
  position: absolute;
  content: "";
  background: url(../img/difference02.png) no-repeat top center / contain;
  width: 80px;
  height: 60px;
  top: 0;
  right: 0;
  transform: translateY(-50%);
}

.home-difference__lead {
  font-weight: 700;
  margin-bottom: 50px;
}

.c-head01.has-dots .c-head01__main-prefix {
  position: relative;
  font-size: 1.4rem;
  line-height: var(--line_height_head);
  letter-spacing: var(--letter_spacing_head);
  padding-bottom: 6px;
  margin-bottom: 15px;
}

.home-difference__example {
  background: rgb(var(--surface_700));
  padding: 26px 20px 30px;
  border-radius: 10px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.home-difference__example-head {
  position: relative;
  text-align: center;
  font-size: 1.8rem;
  line-height: var(--line_height_head);
  letter-spacing: var(--letter_spacing_head);
  padding-bottom: 16px;
  margin-bottom: 17px;
  color: rgb(var(--black));
}

.home-difference__example-head::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: transparent repeat left top / 5px;
  background-image: linear-gradient(90deg, #000 0%, #000 45%, transparent 45%, transparent 100%);
}

.home-difference__example-head-bubble {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.6rem;
  background: var(--border-color);
  padding: 6px 24px;
  border-radius: 5px;
}

.home-difference__detail {
  position: relative;
  padding: 0 40px;
  font-size: 1.5rem;
  font-weight: 700;
}

.home-difference__detail::before,
.home-difference__detail::after {
  position: absolute;
  top: 0;
  height: 100%;
  width: 50px;
  border-radius: 30px;
  content: '';
}

.home-difference__detail::before {
  border-left: solid 5px;
  left: 0;
}

.home-difference__detail::after {
  border-right: solid 5px;
  right: 0;
}

@media (min-width: 768px) {
  .home-difference__inner {
    padding-top: 135px;
    padding-bottom: 120px;
  }

  .home-difference__head {
    max-width: 1100px;
    margin-bottom: 40px;
  }

  .home-difference__head::before {
    width: 174px;
    height: 144px;
  }

  .home-difference__head::after {
    width: 227px;
    height: 116px;
  }

  .home-difference__head::before,
  .home-difference__head::after {
    transform: unset;
  }

  .home-difference__lead {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 80px;
  }

  .c-head01__main {
    font-size: min(calc(60 / 1920* 100vw), 60px);
  }

  .c-head01.has-dots .c-head01__main-prefix {
    font-size: 2rem;
  }

  .home-difference__example {
    padding: 20px 50px 200px;
    margin-bottom: 55px;
    position: relative;
  }

  .home-difference__example::before {
    position: absolute;
    content: "";
    background: url(../img/difference03.png) no-repeat center bottom / contain;
    bottom: 43px;
    left: 53px;
    width: clamp(100px, -201.2857142857px + 26.4285714286vw, 174px);
    height: 200px;
  }

  .home-difference__example-head {
    font-size: 2.8rem;
    padding-bottom: 28px;
    padding-top: 8px;
  }

  .home-difference__example-head-bubble {
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
    font-size: 2.1rem;
    padding: 8px 22px;
    /* border-radius: 5px 5px 0 5px; */
    margin-right: 22px;
  }

  .home-difference__example-head-bubble::before {
    content: "";
    border: 10px solid transparent;
    border-left: 10px solid var(--border-color);
    top: 30%;
    right: -18%;
    position: absolute;
  }

  .home-difference__detail {
    max-width: 1100px;
    box-sizing: border-box;
    margin: 0 auto;
    font-size: 2rem;
    text-align: center;
  }
}




/*voice  */

.home-voice {
  overflow: hidden;
  background: rgb(var(--surface_700));
}

.home-voice__inner {
  background: url(../img/backg.png) repeat top center / contain;
  border-radius: 30px;
  padding-top: 60px;
  padding-bottom: 66px;
}

.home-voice__lead {
  color: rgb(var(--surface_700));
  margin-bottom: 30px;
  font-weight: 700;
}

.card02 {
  overflow: hidden;
}

.card02 .swiper {
  overflow: visible;

}

.card02 .swiper-slide {
  width: 254px;
  background: rgb(var(--surface_700));
  border-radius: 8px;
  padding: 25px 20px;
  box-sizing: border-box;
  position: relative;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}

.slide-content {
  border-bottom: 3px dashed var(--border-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
  color: rgb(var(--black));
}

h2.slide-title {
  color: var(--orange);
  font-size: 2rem;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  color: var(--orange);
}

.swiper-pagination-bullet-active {
  background-color: var(--orange) !important;
}

.c-archive01__item-info {
  display: flex;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .home-voice {
    padding: 0 20px;
    padding-bottom: 70px;
  }

  .home-voice__inner {
    position: relative;
    padding-top: 120px;
    padding-bottom: 115px;
    max-width: 1860px;
    border-radius: 60px 60px 0 60px;
  }

  .home-voice__lead {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 60px;
  }

  .card02 .swiper-slide {
    border-radius: 10px;
    padding: 30px 25px 32px;
    width: 320px !important;
  }
}

/* faq */
.home-faq {
  background: rgb(var(--surface_700));
}

.home-faq__inner {
  padding-top: 60px;
  padding-bottom: 50px;
}

.home-voice__head {
  margin-bottom: 20px;
}

.home-faq__lead {
  text-align: center;
  font-weight: 700;
  margin-bottom: 35px;
}

.js-c-toggle-trigger {
  cursor: pointer;
}

.c-faq01__head {
  display: grid;
  grid-template-columns: 50px 1fr 22px;
  align-items: center;
  padding: 15px 10px;
  gap: 0 8px;
  border-radius: 10px;
  background: var(--paleyl);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: var(--line_height_head);
  letter-spacing: var(--letter_spacing_head);
}

span.c-faq01__ico {
  width: 50px;
  height: 50px;
  background: var(--orange);
  border-radius: 99px;
  line-height: 50px;
  text-align: center;
  color: rgb(var(--surface_700));
}

.c-speak01__speaker-ico {
  width: 50px;
  height: 50px;
  background: var(--border-color);
  border-radius: 99px;
  line-height: 50px;
  text-align: center;
  color: rgb(var(--surface_700));
}

.js-c-toggle-content {
  display: none;
}

.c-faq01__txt {
  padding-top: 10px;
  padding-bottom: 16px;
}

.c-speak01 {
  display: grid;
  gap: 0 15px;
}

.c-speak01.is-right {
  grid-template-columns: 60px 1fr;
}

.c-speak01.is-right .c-speak01__bubble {
  font-weight: 700;
  padding: 0 20px 20px 0;
  font-size: 1.4rem;
}

@media (min-width: 768px) {
.c-head01__main {
  font-size: clamp(
    28px,
    calc(28px + (100vw - 767px) * (36 - 28) / (1280 - 767)),
    36px
  );
  letter-spacing: 4px;
  line-height: 100%;
}


  .home-voice__head {
    margin-bottom: 40px;
  }

  .home-faq__lead {
    font-size: 1.8rem;
    margin-bottom: 70px;
  }

  .c-faq01__head {
    grid-template-columns: 60px 1fr 32px;
    padding: 20px 27px;
    gap: 0 15px;
    font-size: 1.9rem;
  }

  .c-faq01__txt {
    padding-top: 25px;
    padding-bottom: 45px;
  }

  .c-faq01__txt .c-faq01__txt-speak {
    grid-template-columns: 60px 1fr !important;
    gap: 0 30px;
    max-width: 1000px;
    margin: 0 0 0 auto;
  }
}

/* info */
.home-info__inner {
  padding-top: 60px;
  padding-bottom: 50px;
}

.home-info__header-head {
  margin-bottom: 20px;
}

.home-info__header-lead {
  font-weight: 700;
  text-align: left;
}

.home-info__detail {
  position: relative;
  padding: 30px 20px 20px;
  border-radius: 10px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  background: rgb(var(--surface_700));
}

.home-info__detail-head {
  margin-bottom: 5px;
}

.home-info__detail-address {
  font-size: 1.3rem;
  font-weight: 700;
}

.home-info__detail-access-list {
  display: grid;
  gap: 10px 0;
}

.home-info__detail-access-item {
  display: grid;
  align-items: center;
  grid-template-columns: 50px 1fr;
  gap: 0 14px;
}

.home-info__detail-access-item:not(:last-child) {
  padding-bottom: 10px;
  position: relative;
}

.home-info__detail-access-item:not(:last-child)::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: transparent repeat left top / 5px;
  background-image: linear-gradient(90deg, var(--border-color) 0%, var(--border-color) 45%, transparent 45%, transparent 100%);
}

.home-info__detail-map {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9のアスペクト比 */
  height: 0;
}

.home-info__detail-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .home-info {
    overflow: hidden;
    background: url(../img/infoimg.png) no-repeat top 80px right 80px;
  }

  .home-info__inner {
    padding-top: 150px;
    padding-bottom: 120px;
  }

  .home-info__header {
    max-width: 1240px;
    margin: 0 auto;
    margin-bottom: 150px;
  }

  .c-head01.is-left .c-head01__main-prefix {
    margin-left: 0;
  }

  .c-head01.is-left .c-head01__main {
    text-align: start;
  }

  .home-info__header-head {
    margin-bottom: 40px;
  }

  .home-info__header>* {
    max-width: 470px;
    width: 50%;
  }
}

@media (min-width: 1240px) {
  .home-info__detail-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 0 50px;
    grid-template-columns: 42fr 63fr;
  }

  .home-info__detail-areaTxt {
    margin-bottom: 30px;
  }

  .home-info__detail-head {
    font-size: 3.2rem;
    margin-bottom: 15px;
  }

  .home-info__detail-address {
    font-size: 1.6rem;
  }

  .home-info__detail-access-list {
    gap: 17px 0;
  }

  .home-info__detail-access-item {
    grid-template-columns: 70px 1fr;
    gap: 0 13px;
  }

  .home-info__detail-map {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
  }
}



/* お問い合わせ */
.p-top__contact {
  --pt: 114;
  --pb: 140;
  overflow: hidden;
  padding: calc(var(--pt)* 1em / 16) 0 calc(var(--pb)* 1em / 16);
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 1100px) {
  .p-top__contact .section__content {
    width: var(--contents_width);
    display: flex;
    flex-direction: row;
    position: relative;
    justify-content: space-between;
    margin: 64px auto 64px;
  }
}

@media (min-width: 1240px) {}

/* フッター */
/* footer */
.l-footer {
  padding: 0;
  text-align: center;
}

/* 外枠 */
.l-footer__outer {
  background-color: #BDCDFF;
  padding: 40px 20px;
}

/* ロゴ */
.l-footer__logo img {
  max-width: 240px;
  margin: 0 auto 24px;
}

/* 住所 */
.l-footer__address {
  margin-bottom: 16px;
  color: #313195;
  line-height: 100%;
}

.l-footer__address .zip {
  font-family: Arial, sans-serif;
  font-weight: 400;
  font-size: calc(16px + (20 - 16) * ((100vw - 375px) / (1200 - 375)));
}

.l-footer__address .addr {
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 500;
  font-size: calc(16px + (20 - 16) * ((100vw - 375px) / (1200 - 375)));
}

/* 電話 */
.l-footer__tel {
  font-family: Arial, sans-serif;
  font-weight: 400;
  color: #313195;
  font-size: calc(16px + (20 - 16) * ((100vw - 375px) / (1200 - 375)));
  line-height: 100%;
  margin-bottom: 40px;
  position: relative;
}

.l-footer__tel::before {
  content: "\f095";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.8em;
  /* ← 約80% */
}

/* ナビ */
.l-footer__nav {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.l-footer__nav a {
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 400;
  color: #313195;
  text-decoration: underline;
  font-size: calc(15px + (17 - 15) * ((100vw - 375px) / (1200 - 375)));
  line-height: 100%;
}

/* コピーライト */
.l-footer__copyright {
  background-color: #313195;
  color: #fff;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
  font-size: calc(12px + (14 - 12) * ((100vw - 375px) / (1200 - 375)));
  line-height: 100%;
  padding: 34px 10px;
}

/* SP */
@media (max-width: 767px) {
  .l-footer__nav {
    flex-direction: column;
    gap: 12px;
  }
}

/* ナビゲーション */
@media only screen and (max-width: 767px) {
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
    transition: transform .4s ease;
    background-color: #fff;
  }

  .hamburger {
    position: absolute;
    right: 15px;
    top: 8px;
    width: 40px;
    /* クリックしやすい幅 */
    height: 40px;
    /* クリックしやすい高さ */
    cursor: pointer;
    z-index: 300;
    border-radius: 99px;
  }

  .nav_list {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .nav_item {
    text-align: center;
    padding: 0 14px;
  }

  .nav_item a {
    display: block;
    padding: 8px 0;
    /* border-bottom: 1px solid var(--border-color); */
    text-decoration: none;
    color: #313195;
    font-weight: 700;
  }

  /* .nav_item a:hover {
    background-color: #eee;
  } */
  .c-social-media.sp {
    display: flex;
    justify-content: center;
  }

  .c-social-media.sp li {
    margin-bottom: 0;
  }

  .hamburger_border {
    position: absolute;
    left: 11px;
    width: 20px;
    height: 2px;
    background-color: #313195;
    transition: all .6s;
  }

  .hamburger_border_top {
    top: 14px;
  }

  .hamburger_border_center {
    top: 20px;
  }

  .hamburger_border_bottom {
    top: 26px;
  }

  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
  }

  /* 表示された時用のCSS */
  .nav-open .nav {
    transform: translateX(0);
  }

  .nav-open .black_bg {
    opacity: .8;
    visibility: visible;
  }

  .nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top: 20px;
  }

  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }

  .nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top: 20px;
  }

  .nav .contact {
    margin-top: 40px;
    justify-content: center;
  }

  /*  .nav .contact .mail {
    width: 90%;
    max-width: 320px;
    margin: 0 auto;
    padding: 20px 20px 18px;
    border-radius: 40px;
    background: linear-gradient(90deg, #FF556C 0%, #FF5659 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
 .nav .contact .contact-lead {
    font-size: 14px;
    margin-bottom: 6px;
    color: #fff;
  }

  .tel-number a {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    line-height: 1.2;
  }

  .tel-number a::before {
    content: "\f095";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 8px;
    font-size: 0.9em;
  }*/

  .nav .contact .contact-time {
    font-size: 12px;
    margin-top: 4px;
    color: #fff;
  }

  .contact-box.sp {
    margin-top: 40px;
    padding: 0 20px;
    text-align: center;
    border: none;
  }


  .contact-box.sp .contact-tel {
    margin-bottom: 24px;
  }

  .contact-box.sp .contact-lead {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #313195;
    margin-bottom: 6px;
    letter-spacing: 0.04em;
  }

  .contact-box.sp .tel-number {
    display: block;
    font-size: 2em;
    font-weight: 700;
    color: #313195;
    line-height: 1.2;
    align-items: center;
    margin-bottom: 4px;
  }

  .contact-box.sp .tel-number::before {
    content: "\f095";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 8px;
    font-size: 0.8em;
  }

  .contact-box.sp .contact-time {
    display: block;
    font-size: small;
    font-weight: 500;
    color: #313195;
  }

  .contact-box.sp .contact-btn {
    position: relative;
    margin-top: 24px;
    background: #313195;
    color: #fff;
    height: 74px;
    padding: 0 32px 0 60px;
    border-radius: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
  }

  .contact-box.sp .contact-btn::before {
    content: "\f0e0";
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    color: #fff;
    position: absolute;
    left: 38px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    line-height: 1;
  }
}

/* sp */

@media only screen and (min-width: 768px) {
  .c-social-media.sp {
    display: none;
  }

  .header_inner {
    /* max-width: 100%; */
    width: 100%;
    padding:
      15px 0 15px clamp(12px, 2.5vw, 50px);
    margin-left: auto;
    margin-right: auto;
    width:100%;
  }

  .logo {
    padding: 12px 0px;
    height: auto;
    width: 320px;
    box-sizing: content-box;
  }

  .nav {
    display: flex;
    flex-direction: column-reverse;
  }

  .nav_list {
    text-align: right;
    padding-left: 300px;
  }

  .nav_list li {
    display: inline-block;
    text-align: right;
    padding-left: 20px;
  }

  .nav_list li a {
    color: var(--base-color);
    font-weight: 600;
  }

}

/* pc */

/* FV 全体 */
.fv_box {
  width: 100vw;
  margin-bottom: 60px;
}

/* 画像＋テキストの親 */
.fv_media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .fv_media {
    top: 100px;
  }
}
/* 画像 */
.fvimg {
  width: 100%;
  height: auto;
  object-fit: cover;
}


/* テキスト */
.l-main-img__inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  color: #313195;
  pointer-events: none;
  top: 2vw;
}

/* コピー */
.l-main-img__copy {
  max-width: 90%;
}

/* 上 */
.main_top {
  display: block;
  font-size: clamp(22px, 2.2vw, 27px);
  font-weight: 700;
}

/* メイン */
.main_main {
  display: block;
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 700;
  margin: 0.3em 0;
}

/* 下 */
.main_bottom {
  display: block;
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 500;
  font-family: "Zen Maru Gothic", serif;
}

/* SP */
@media (max-width: 767px) {
  .fv_box {
    margin-bottom: 50px;
  }
    
.l-main-img__inner {
  top: 46vw;
}  
    
.main_bottom {
  display: block;
  font-size: clamp(16px, 1.6vw, 17px);
  font-weight: 500;
  font-family: "Zen Maru Gothic", serif;
  width: 86%;
  letter-spacing: 2px;
}    
    
}


/*メインコンテンツ
-------------------------------------*/
/* main {
    margin: 5rem 0 0 0;
} */
/* section {
	margin: 5rem 0;
	padding: 3rem 0;
} */
.gray-back {
  background-color: var(--back-color);
}

/*キャッチコピー
-------------------------------------*/
.catch {
  text-align: center;
}

.catch h2 {
  padding-bottom: 1rem;
}

.under {
  border-bottom: 0.4rem solid var(--base-color);
  padding: 0 1rem 1rem 1rem;
}

.center {
  text-align: center;
  margin-bottom: 4rem;
}

/*申し込みの流れ
-------------------------------------*/
.flow.row {
  margin-bottom: 3rem;
}

/*フッター
-------------------------------------*/
footer {
  background-color: var(--back-color);
  padding: 5rem 0;
}

footer h4 {
  border-bottom: 3px solid var(--border-color);
}

/*お問い合わせ
-------------------------------------*/
.contact-box {
  border: 1px solid var(--border-color);
  text-align: center;
  padding: 2rem 0;
}

.table {
  margin: 4rem 0;
}

.table th {
  width: 250px;
}

/*コピーライト
-------------------------------------*/
.copyright {
  text-align: center;
  padding: 1rem 0;
  background-color: var(--base-color);
}

.copyright a {
  color: var(--white-color);
  text-decoration: none;
  display: inline;
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 9;
}

#pagetop a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #b3d4fc;
  color: var(--white-color);
  width: 50px;
  height: 50px;
  padding: 0;
  text-align: center;
  border-radius: 50%;
}

#pagetop a::before {
  display: inline-block;
  width: 23px;
  height: auto;
  vertical-align: middle;
  color: var(--back-color);
  content: '\f062';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  transition: all 0.3s ease;
}

#pagetop a:hover {
  background-color: var(--link-color);
}

/* タブレット用デザイン調整
-------------------------------------*/
@media screen and (max-width: 1280px) {
  .logo {
    width: clamp(160px, 18vw, 240px);
    flex-shrink: 0;
  }

  .logo img {
    max-width: 100%;
    height: auto;
  }

  .nav_list {
    padding-left: 0px;
    margin-top: 100px;
    ;
  }

  .l-main-img__inner {
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }

  img.pc.copy {
    width: 160px;
  }

  .l-main-img__detail {
    top: 320px;
    margin-bottom: 0;
  }

  .home-info {
    background: url(../img/infoimg.png) no-repeat top 200px right 50px;
    background-size: 40%;
  }

  .home-info__inner {
    padding-top: 60px;
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {

  .top_img {
    width: clamp(
      320px,
      calc(320px + (500 - 320) * ((100vw - 768px) / (1200 - 768))),
      500px
    );
    height: auto;
  }

}

/* 幅767px以下の表示
-------------------------------------*/
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  /*ヘッダー
-------------------------------------*/


  /*お問い合わせ
-------------------------------------*/
  .table th {
    width: 100%;
    display: block;
  }

  .table td {
    display: block;
  }
}


/* @media only screen and (min-width: 768px) {
    .fv_box {
        background-image: url('../img/fv_pc.png');
                background-size: cover;
    }
} */



.is-em-free {
  position: relative;
  display: inline-block;
}

.is-em-free::before {
  content: "";
  position: absolute;
  top: 0em;
  left: 50%;
  width: 0.18em;
  height: 0.18em;
  background-color: currentColor;
  border-radius: 50%;
  transform: translateX(-0.6em);
  box-shadow: 1em 0 0 currentColor;
}


.em-line-wrap {
  position: relative;
  display: inline-block;
}

/* 共通 */
.em-line-wrap span[class^="line-"] {
  position: absolute;
  top: 50%;
  height: 3px;
  /* ← 線の太さ */
  background: currentColor;
  border-radius: 999px;
}

/* 左 */
.line-l-1 {
  left: -37px;
  width: 40px;
  transform: translateY(-165%) rotate(60deg);
}

.line-l-2 {
  left: -40px;
  width: 20px;
  transform: translateY(100%) rotate(50deg);
}

/* 右 */
.line-r-1 {
  right: -37px;
  width: 40px;
  transform: translateY(-165%) rotate(-60deg);
}

.line-r-2 {
  right: -40px;
  width: 20px;
  transform: translateY(100%) rotate(-50deg);
}





/* 全体 */
.home-task__detail .cta-area {
  margin: 0 auto;
  padding: 40px 16px;
}

/* 上段 */
.home-task__detail .cta-top {
  display: flex;
  border-radius: 24px;
  overflow: hidden;
}

.home-task__detail .cta-box {
  flex: 1;
  padding: 36px 32px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  transition: background .3s ease;
}

/* 共通 */
.home-task__detail .cta-label {
  display: inline-block;
  padding: 6px 40px;
  border: 2px solid #fff;
  border-radius: 999px;
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 700;
}

.home-task__detail .cta-main {
  display: block;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 4%;
}

.home-task__detail .cta-sub {
  font-size: 17px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  letter-spacing: 10%;
}

/* 電話 */
.home-task__detail .cta-tel {
  background: linear-gradient(to right, #FF556C, #FF5659);
}

.home-task__detail .cta-tel:hover {
  background: linear-gradient(to right, #A12E3E, #712728);
}

/* メール */
.home-task__detail .cta-mail {
  background: linear-gradient(to right, #0FBAB6, #0FA9BA);
}

.home-task__detail .cta-mail:hover {
  background: linear-gradient(to right, #076C6A, #05474E);
}

/* 注意書き */
.home-task__detail .cta-note {
  margin-top: 12px;
  text-align: right;
  font-size: 17px;
  color: #313195;
}

/* LINE */
.home-task__detail .cta-line {
  margin-top: 32px;
  text-align: center;
}

.home-task__detail .cta-line-link {
  display: inline-block;
  position: relative;
}

.home-task__detail .cta-line-link img {
  max-width: 100%;
  height: auto;
}

.home-task__detail .line-btn-hv {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .2s ease;
}

.home-task__detail .cta-line-link:hover .line-btn-hv {
  opacity: 1;
}

.home-task__detail .cta-line-link:hover .line-btn {
  opacity: 0;
}

/* 電話・メール共通（Font Awesome） */
.home-task__detail .cta-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* 電話 */
.home-task__detail .cta-tel .cta-main::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f095";
  /* phone */
  font-size: 0.8em;
}

/* メール */
.home-task__detail .cta-mail .cta-main::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  content: "\f0e0";
  /* envelope */
  font-size: 0.8em;
}

@media (max-width: 1100px) {

  /* 共通 */
  .home-task__detail .cta-label {
    display: inline-block;
    padding: 6px 40px;
    border: 2px solid #fff;
    border-radius: 999px;
    font-size: calc(10px + 0.9vw);
    margin-bottom: 16px;
    font-weight: 700;
  }

  .home-task__detail .cta-main {
    display: block;
    font-size: clamp( 24px, calc( 24px + (100vw - 800px) * 0.0417 ), 24px );
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0%;
  }

}

/* SP */
@media (max-width: 768px) {
  .home-task__detail .cta-top {
    flex-direction: column;
  }

  .home-task__detail .cta-note {
    text-align: center;
  }

  .home-task__detail {
    position: relative;
    box-sizing: border-box;
    border-radius: 10px;
    padding: 0px;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
  }

  .home-task__detail .cta-area {
    margin: 0 auto;
    padding: 0px;
  }

  .home-task__detail .cta-box {
    flex: 1;
    padding: 36px 0px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    transition: background .3s ease;
  }

  .home-task__detail .cta-label {
    display: inline-block;
    padding: 4px 2px;
    border: 1px solid #fff;
    border-radius: 999px;
    font-size: clamp(13px,
        calc(14px + (100vw - 375px) * 0.01),
        16px);
    margin-bottom: 16px;
    font-weight: 700;
    width: 50vw;
    font-family: "Zen Maru Gothic", serif;

  }

  .home-task__detail .cta-main {
    display: block;
    font-size: clamp(20px,
        calc(22px + (100vw - 375px) * 0.025),
        30px);
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.04em;
  }

  .home-task__detail .cta-sub {
    font-size: clamp(13px,
        calc(14px + (100vw - 375px) * 0.01),
        16px);
  }

  .home-task__detail .cta-note {
    width: 90%;
    margin: 20px auto;
  }

  .is-em-free::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 50%;
    width: 0.18em;
    height: 0.18em;
    background-color: currentColor;
    border-radius: 50%;
    transform: translateX(-0.6em);
    box-shadow: 1em 0 0 currentColor;
  }

  .home-task__detail .cta-note {
    margin-top: 12px;
    text-align: center;
    font-size: clamp(12px, calc(14px + (100vw - 375px) * 0.02), 22px);
    color: #313195;
  }
}


/* ===============================
   Reason section ONLY  (#reason)
=============================== */

#reason.home-reason {}

#reason.home-reason .out_container {
  background-color:#E9EEFF;
}

#reason.home-reason .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0px 24px 1px;
}

/* ===== head ===== */
#reason.home-reason .home-reason__head {
  text-align: center;
  margin-bottom: 56px;
}

#reason.home-reason .home-reason__catch {
  display: inline-block;
  padding: 8px 18px;
  color: #313195;
  font-size: 24px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

#reason.home-reason .home-reason__title {
  font-size: 36px;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #313195;
  margin-bottom: 20px;
  letter-spacing: 3%;
}

#reason.home-reason .home-reason__lead {
  font-size: calc(17px * 100vw / 1280);
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  color: rgba(49, 49, 149, 0.75);
  line-height: 200%;
  letter-spacing: 5%;
}






/* ===============================
   下段：詳細
=============================== */

#reason.home-reason .home-reason__detail {
  margin-bottom: 100px;
}

#reason.home-reason .detail-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
  margin-bottom: 30px;
  background-color: #E9EEFF;
  padding:0 40px 0;
  border-radius: 32px;
  position: relative;
}

#reason.home-reason .detail-item.reverse {
  flex-direction: row-reverse;
}

#reason.home-reason .detail-text {
  position: relative;
  flex: 0 0 70%;
  padding-left: 0px;
}

#reason.home-reason .detail-item::before {
  content: attr(data-no);
  position: absolute;
  left: -10px;
  top: -90px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 180px;
  color: #ffffff;
  font-style: oblique;
  z-index: 0;
}

#reason.home-reason .detail-text::after {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-55%);
  width: 140px;
  height: 140px;
  background: var(--reason-deco, none) no-repeat center / contain;
  z-index: 1;
}

#reason.home-reason .detail-text h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 14px;
  font-size: 28px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #313195;
}

#reason.home-reason .detail-text p {
  position: relative;
  z-index: 2;
  font-size: 17px;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  color: rgba(49, 49, 149, 0.78);
  line-height: 200%;
  letter-spacing: 5%;
}

#reason.home-reason .detail-image {
  flex: 0 0 30%;
  z-index: 200;
}

#reason.home-reason .detail-image img {
  width: 100%;
  height: auto;
}

/* ===============================
   SP（2-1-2）
=============================== */
@media (max-width: 767px) {
#reason.home-reason .home-reason__detail {
  margin-bottom: 0px;
}
#reason.home-reason .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 70px 24px 0;
}    
    
#reason.home-reason .home-reason__head {
  text-align: center;
  margin-bottom: 40px;
}
    
#reason.home-reason .detail-text h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 14px;
  font-size: calc(
    20px + (100vw - 375px) * 0.006
  );
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #313195;
}    
    
  #reason.home-reason .detail-text p {
    position: relative;
    z-index: 2;
    font-size: calc( 16px + (100vw - 375px) * 0.004 );
    font-weight: 500;
    font-family: "Zen Maru Gothic", sans-serif;
    color: rgba(49, 49, 149, 0.78);
    line-height: 170%;
    letter-spacing: 3%;
  } 
    
  #reason.home-reason {
    padding: 0px 0 80px;
    background-size: 18px 18px;
    background-position: 0 -72px;
    /* ← 18の倍数 */
  }

  #reason.home-reason .home-reason__catch {
  font-size: clamp(
    20px,
    calc(20px + (22 - 20) * ((100vw - 375px) / (767 - 375))),
    22px
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;      
      
  }

  #reason.home-reason .home-reason__title {
    font-size: clamp(24px,
        calc(24px + (100vw - 375px) * 0.03),
        36px);
  }

  #reason.home-reason .home-reason__lead {
   font-size: clamp(
    16px,
    calc(16px + (18 - 16) * ((100vw - 375px) / (767 - 375))),
    18px
  );
  line-height: 170%;
  letter-spacing: 3%;
  
  }


  /* 上段：2-1-2 */
  #reason.home-reason .reason-row {
    flex-wrap: wrap;
    gap: 24px;
  }

  #reason.home-reason .reason-row--top .reason-item {
    flex: 0 0 calc(50% - 12px);
    display: flex;
    justify-content: center;
  }

  #reason.home-reason .reason-row--top .reason-item:nth-child(3) {
    flex: 0 0 100%;
  }

  #reason.home-reason .reason-row--bottom {
    transform: none;
  }

  #reason.home-reason .reason-row--bottom .reason-item {
    flex: 0 0 calc(50% - 12px);
    display: flex;
    justify-content: center;
  }

  #reason.home-reason .reason-circle {
    width: 160px;
    height: 160px;
    border-width: 12px;
    padding: 20px 0;
  }

  /* 下段 */
  #reason.home-reason .detail-item,
  #reason.home-reason .detail-item.reverse {
    flex-direction: column;
    gap: 28px;
  }

  #reason.home-reason .detail-text {
    padding-left: 5px;
    min-height: 180px;
  }

  #reason.home-reason .detail-text::before {
    font-size: 120px;
    left: -6px;
  }


  #reason.home-reason .reason-circle .icon01 {
    width: 33px;
    height: auto;
    margin-bottom: 10px;
  }

  #reason.home-reason .reason-circle .icon02 {
    width: 28.5px;
    height: auto;
    margin-bottom: 10px;
  }

  #reason.home-reason .reason-circle .icon03 {
    width: 31px;
    height: auto;
    margin-bottom: 10px;
  }

  #reason.home-reason .reason-circle .icon04 {
    width: 30px;
    height: auto;
    margin-bottom: 10px;
  }

  #reason.home-reason .reason-circle .icon05 {
    width: 35px;
    height: auto;
    margin-bottom: 10px;
  }

  #reason.home-reason .reason-circle p {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    font-family: "Zen Maru Gothic", sans-serif;
    color: rgba(49, 49, 149, 0.85);
    line-height: 1.6;
  }

  #reason.home-reason .reason-no {
    position: absolute;
    left: -20px;
    top: 0;
    width: clamp(40px, 12vw, 53px);
    height: clamp(40px, 12vw, 53px);
    border-radius: 999px;
    background: #313195;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: clamp(16px, 5vw, 20px);
    font-weight: 700;
    font-family: "Zen Kaku Gothic New", sans-serif;
    z-index: 3;
    font-style: oblique;
    padding-right: clamp(2px, 1vw, 6px);
  }

  #reason.home-reason .reason-no02 {
    position: absolute;
    left: -20px;
    top: 0;
    width: clamp(40px, 12vw, 53px);
    height: clamp(40px, 12vw, 53px);
    border-radius: 999px;
    background: #313195;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: clamp(16px, 5vw, 20px);
    font-weight: 700;
    font-family: "Zen Kaku Gothic New", sans-serif;
    z-index: 3;
    font-style: oblique;
    padding-right: clamp(2px, 1vw, 6px);
  }

  :root {
    --circle: 160px;
    --gap: 24px;
  }


  /* 全体コンテナ */
  #reason.home-reason .home-reason__summary {
    position: relative;
    height: calc(var(--circle) * 3 + var(--gap) * 2);
  }

  /* 行コンテナ */
  #reason.home-reason .reason-row {
    position: relative;
    width: 100%;
  }

  /* 各アイテム共通 */
  #reason.home-reason .reason-item {
    position: absolute;
    width: 50%;
    text-align: center;
  }

  /* ===== 上段（01・02） ===== */
  #reason.home-reason .reason-row--top {
    height: calc(var(--circle) * 2 + var(--gap));
  }

  #reason.home-reason .reason-row--top .reason-item:nth-child(1) {
    top: 0;
    left: 0;
  }

  #reason.home-reason .reason-row--top .reason-item:nth-child(2) {
    top: 0;
    left: 50%;
  }

  /* ===== 中央（03） ===== */
  #reason.home-reason .reason-row--top .reason-item:nth-child(3) {
    top: calc(var(--circle) + var(--gap) * 0.6);
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }

  /* ===== 下段（04・05） ===== */
  #reason.home-reason .reason-row--bottom {
    position: relative;
    height: var(--circle);
  }

  #reason.home-reason .reason-row--bottom .reason-item:nth-child(1) {
    top: 0;
    left: 0;
  }

  #reason.home-reason .reason-row--bottom .reason-item:nth-child(2) {
    top: 0;
    left: 50%;
  }


  #reason.home-reason .reason-circle {
    position: relative;
    width: clamp(160px, 40vw, 220px);
    height: clamp(160px, 40vw, 220px);
    border-radius: 50%;
    background: #E9EEFF;
    border: clamp(10px, 3vw, 15px) solid rgba(189, 205, 255, 0.1);
    display: grid;
    place-items: center;
    box-sizing: border-box;
  }

#reason.home-reason .detail-item::before {
  content: attr(data-no);
  position: absolute;
  left: 0px;
  top: -40px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 100px;
  color: #ffffff;
  font-style: oblique;
  z-index: 0;
}
#reason.home-reason .detail-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
  margin-bottom: 30px;
  background-color: #E9EEFF;
  padding: 42px 10px;
  border-radius: 12px;
  position: relative;
}
}

/* =========================
   #support-system（安心のサポート体制）
   ※既存CSSは変更しない（追記のみ）
========================= */

#support-system.home-support-system {
  position: relative;
  overflow: hidden;
  padding-top: 10vw;
  /* #onayami と同じ考え方（流用前提） */
  padding-bottom: 10vw;
  background-color: #fff;
}

.home-support-system__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 20px 80px;
  position: relative;
  z-index: 2;
  /* 波より上に */
}

/* ===== head ===== */
.support-head {
  text-align: center;
  margin-bottom: 40px;
}

.support-eyecatch {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: calc(20px + (100vw - 375px) * 0.01);
  /* sp基準 20px */
  color: #313195;
  margin-bottom: 14px;
}

.support-title {
  display: inline-block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: calc(24px + (100vw - 375px) * 0.012);
  /* sp基準 24px */
  color: #ffffff;
  background: #313195;
  padding: 8px 24px;
  border-radius: 400px;
  margin-bottom: 18px;
}

.support-lead {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-size: calc(16px + (100vw - 375px) * 0.002);
  /* sp基準 16px */
  line-height: 170%;
  color: rgba(49, 49, 149, 0.75);
}

/* ===== list ===== */
.support-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  /* 指定 */
}

.support-card {
  background: #ffffff;
  border-radius: 32px;
  padding: 12px;
  /* sp指定 */
}

/* 1セット内部（SPは縦） */
.support-card__row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* sp指定 */
}

/* 左枠 */
.support-left {
  background: #F7F7F7;
  border-radius: 18px;
  padding: 16px 20px;
  /* sp指定 */
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* sp指定 */
}

.support-left__title {
  display: inline-block;
  width: fit-content;
  background: #767676;
  padding: 4px 8px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: calc(20px + (100vw - 375px) * 0.005);
  /* sp 20px */
  line-height: 130%;
  color: #ffffff;
  border-radius: 6px;
  margin: 0 auto;
  text-align: center;
}

.support-left__text {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-size: calc(16px + (100vw - 375px) * 0.001);
  /* sp 16px */
  line-height: 170%;
  color: #545454;
  text-align: center;
}

/* 三角（SP: 下向き 180） */
.support-arrow {
  width: 23px;
  height: 14px;
  margin: 0 auto;
  position: relative;
  transform: rotate(0deg);
}

.support-arrow::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 11.5px solid transparent;
  border-right: 11.5px solid transparent;
  border-top: 14px solid #313195;
}

/* 右枠 */
.support-right {
  background: #E9EEFF;
  border-radius: 18px;
  padding: 16px 20px;
  /* sp指定 */
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* sp指定 */
}

.support-right__title {
  display: inline-block;
  width: fit-content;
  background: #313195;
  padding: 4px 8px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: calc(20px + (100vw - 375px) * 0.005);
  /* sp 20px */
  line-height: 130%;
  color: #ffffff;
  border-radius: 6px;
  margin: 0 auto;
  text-align: center;
}

.support-right__text {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-size: calc(16px + (100vw - 375px) * 0.001);
  /* sp 16px */
  line-height: 160%;
  color: #313195;
  text-align: center;
}

.support-right__img {
  margin-left: auto;
  display: block;
  height: auto;
  margin-right: auto;
}

/* 画像幅（SP） */
.support-right__img--01 {
  width: 83px;
}

.support-right__img--02 {
  width: 67px;
}

.support-right__img--03 {
  width: 95px;
}

.support-right__img--04 {
  width: 80px;
}

.support-right__img--05 {
  width: 84px;
}

.support-right-box {
  display: flex;
  align-items: center;
  gap: 24px;
}

.support-right__text {
  flex: 1;
}

.support-right__img {
  flex-shrink: 0;
}

/* SP：縦並び */
.support-right-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* PC：横並び */
@media (min-width: 768px) {
  .support-right-box {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
}

/* ===== PC（>=768） ===== */
@media (min-width: 768px) {

  .home-support-system__inner {
    padding: 80px 20px 100px;
  }

  .support-eyecatch {
    font-size: calc(26px + (100vw - 768px) * 0.0039);
    /* 768付近で26〜、1280で約28 */
  }

  .support-title {
    font-size: calc(30px + (100vw - 768px) * 0.0117);
    /* 768付近30〜、1280で約36 */
  }

  .support-lead {
    font-size: calc(16px + (100vw - 768px) * 0.002);
    /* 768付近16〜、1280で約17 */
    line-height: 200%;
  }

  .support-card {
    padding: 24px;
    /* pc指定 */
  }

  .support-card__row {
    display: grid;
    grid-template-columns: 1fr 23px 1fr;
    align-items: center;
    gap: 16px;
    /* pc指定 */
  }

  .support-left {
    padding: 20px 32px;
    /* pc指定 */
    gap: 16px;
    /* pc指定 */
  }

  .support-right {
    padding: 20px 32px;
    /* pc指定 */
    gap: 16px;
    /* pc指定 */
  }

  .support-left__title,
  .support-right__title {
    font-size: calc(22px + (100vw - 768px) * 0.0039);
    /* 1280で約24 */
    line-height: 120%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }


  .support-left__text {
    font-size: calc(16px + (100vw - 768px) * 0.002);
    /* 1280で約17 */
    line-height: 170%;
    text-align: center;
  }

  .support-right__text {
    font-size: calc(16px + (100vw - 768px) * 0.002);
    /* 1280で約17 */
    line-height: 120%;
    line-height: 170%;
    text-align: center;
  }

  /* 三角（PC: 左向き -90） */
  .support-arrow {
    margin: 0 auto;
    transform: rotate(-90deg);
  }

  /* 画像幅（PC） */
  .support-right__img--01 {
    width: 140px;
  }

  .support-right__img--02 {
    width: 140px;
  }

  .support-right__img--03 {
    width: 140px;
  }

  .support-right__img--04 {
    width: 140px;
  }

  .support-right__img--05 {
    width: 140px;
  }


}

/* =========================
   Reason section（旧Voice）
========================= */



.reason-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.reason-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: calc(24px + (100vw - 375px) * 0.01);
  line-height: 130%;
  text-align: center;
  color: #313195;
  margin-bottom: 40px;
}


/* ===== reason：SP ===== */
#reason .line-l-1 {
  left: -20px;
  width: 16px;
  transform: translateY(50%) rotate(55deg);
}

#reason .line-l-2 {
  left: -30px;
  width: 16px;
  transform: translateY(100%) rotate(45deg);
}

#reason .line-r-1 {
  right: -20px;
  width: 16px;
  transform: translateY(50%) rotate(-55deg);
}

#reason .line-r-2 {
  right: -30px;
  width: 16px;
  transform: translateY(100%) rotate(-45deg);
}

.em-line-wrap span[class^="line-"] {
  position: absolute;
  top: 83%;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

@media (min-width:768px) {
  .reason-title {
    font-size: calc(32px + (100vw - 768px) * 0.01);
    line-height: 150%;
  }
}

/* list */
.reason-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width:768px) {
  .reason-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* card */
.reason-card {
  background: #BDCDFF;
  border-radius: 32px;
  padding: 36px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #313195;
  font-family: "Zen Maru Gothic", serif;
}


.reason-icon {
  width: clamp(
    64px,
    calc(64px + (80 - 64) * ((100vw - 375px) / (767 - 375))),
    80px
  );
  height: auto;
}  

.reason-card-title {
  font-weight: 700;
  font-size: clamp(
    20px,
    calc(20px + (22 - 20) * ((100vw - 375px) / (767 - 375))),
    22px
  );
  line-height: 130%;
  text-align: center;
  margin-bottom:0px;
}

@media (min-width:768px) {
  .reason-card-title {
    font-size: calc(22px + (100vw - 768px) * 0.004);
  }
    
.reason-icon {
  width: 102px;
  height: auto;
}
    
}

.reason-meta {
  font-weight: 500;
  font-size: calc(18px + (100vw - 375px) * 0.002);
  line-height: 150%;
}

@media (min-width:768px) {
  .reason-meta {
    font-size: calc(17px + (100vw - 768px) * 0.002);
  }
}

.reason-text {
  font-weight: 500;
  font-size: clamp(
  16px,
  calc(16px + (18 - 16) * ((100vw - 375px) / (767 - 375))),
  18px
 );
  line-height: 170%;
  letter-spacing: 3%;
  text-align: center;
}

@media (min-width:768px) {
  .reason-text {
    font-size: calc(17px + (100vw - 768px) * 0.002);
  }
}

/* ===== reason：PC ===== */
@media (min-width: 768px) {

  /* 左 */
  #reason .line-l-1 {
    left: -45px;
    width: 36px;
    height: 3px;
    transform: translateY(-60%) rotate(60deg);
  }

  #reason .line-l-2 {
    left: -55px;
    width: 28px;
    height: 3px;
    transform: translateY(100%) rotate(55deg);
  }

  /* 右 */
  #reason .line-r-1 {
    right: -45px;
    width: 36px;
    height: 3px;
    transform: translateY(-60%) rotate(-60deg);
  }

  #reason .line-r-2 {
    right: -55px;
    width: 28px;
    height: 3px;
    transform: translateY(100%) rotate(-55deg);
  }

  .em-line-wrap span[class^="line-"] {
    position: absolute;
    top: 60%;
    height: 3px;
    background: currentColor;
    border-radius: 999px;
  }

}


/* =========================
   #message 専用
========================= */

.home-message {
  padding: 100px 0;
  background-color: #313195;
  text-align: center;
  color: #ffffff;
}

.home-message__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================
   ① 無理に売却〜
========================= */

.message-lead {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;

  font-size: clamp(
    24px,
    calc(24px + (100vw - 375px) * 0.0306),
    36px
  );

  line-height: 150%;
  margin-bottom: 24px;
}

/* =========================
   ② ご相談の結果〜
========================= */

.message-text {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  letter-spacing: clamp(0.03em,
      calc(0.03em + (0.05 - 0.03) * ((100vw - 375px) / (1280 - 375))),
      0.05em);

  font-size: clamp(16px,
      calc(16px + (17 - 16) * ((100vw - 375px) / (1280 - 375))),
      17px);

  line-height: clamp(170%,
      calc(170% + (200 - 170) * ((100vw - 375px) / (1280 - 375))),
      200%);

  margin-bottom: 40px;
}

/* =========================
   ③ 大切なのは
========================= */

.message-strong {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  letter-spacing: 0.05em;

  font-size: clamp(20px,
      calc(20px + (24 - 20) * ((100vw - 375px) / (1280 - 375))),
      24px);

  line-height: clamp(100%,
      calc(100% + (150 - 100) * ((100vw - 375px) / (1280 - 375))),
      150%);

  margin-bottom: 16px;
}

/* =========================
   ④ 黄色帯
========================= */

.message-highlight span {
  display: block;
  color: #ffffff;
  padding: 4px 8px;
  text-decoration: line-through;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  letter-spacing: 0.01em;

  font-size: clamp(20px,
      calc(20px + (28 - 20) * ((100vw - 375px) / (1280 - 375))),
      28px);
  line-height: 150%;
  width: fit-content;
  margin: 0 0 2%;
}

.message-highlight {
  margin-bottom: 40px;
  margin: 60px auto;
  display: block;
  width: fit-content;
}

/* =========================
   ⑤ クロージング
========================= */

.message-closing {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  letter-spacing: 0.05em;

  font-size: clamp(16px,
      calc(16px + (24 - 16) * ((100vw - 375px) / (1280 - 375))),
      24px);

  line-height: 150%;
}

@media (max-width: 767px) {
.message-closing {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  letter-spacing: 0.05em;

  font-size: clamp(
  20px,
  calc(20px + (100vw - 375px) * 0.0102),
  24px
);

  line-height: 150%;
}    
    
    
  .home-message {
    padding: 60px 0;
  }
.message-highlight span {
  display: block;
  color: #ffffff;
  padding: 4px 8px;
  text-decoration: line-through;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  letter-spacing: 0.01em;

  font-size: clamp(20px,
      calc(20px + (28 - 20) * ((100vw - 375px) / (1280 - 375))),
      28px);
  line-height: 150%;
  width: 100%;
  margin: 0 0 2%;
  text-align: center;
}    
    
}

/* =========================
   flow セクション
========================= */

#flow {
  position: relative;
  overflow: hidden;
}

.flow-bg {
  background-color: #e9eeff;
}

.flow-wave {
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}

.flow-wave img {
  width: 100%;
  height: auto;
}

.flow-wave--top {
background-color: #fff;
}

.flow-wave--bottom {
  transform: scaleY(-1) scaleX(-1);
background-color: #fff;
}

.home-flow__inner {
  max-width: 862px;
  margin: 0 auto 0vw;
  padding: 0;
}

@media (max-width: 1100px) and (min-width: 768px) {
  .home-flow__inner {
    width: 90%;
  }
}

.home-flow__head {
  text-align: center;
  margin-bottom: calc(40px + 2vw);
}

.home-flow__title {
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 700;
  font-size: clamp(24px, calc(24px + 1vw), 36px);
  letter-spacing: 0.03em;
  color: #313195;
}

.home-flow__title .is-accent {
  color: #5C95FF;
}

.home-flow__lead {
  margin-top: 10px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-size: clamp(16px, calc(16px + 0.5vw), 17px);
  letter-spacing: 0.03em;
  line-height: 2;
  color: #313195;
}

.home-flow__lead .is-highlight {
  background: #F9F4BD;
  padding: 0 8px;
}

/* flow list */
.home-flow__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  /* ← 丸と棒線を接続させるため gap を排除 */
}

.home-flow__item {
  display: flex;
  align-items: center;
  gap: 20px;
  /* ← 丸と棒線を接続させるため gap を排除 */
}

/* 左ブロック */
.home-flow__left {
  position: relative;
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 丸 */
.home-flow__circle {
  position: relative;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* 丸内テキスト */
.home-flow__circle-text {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-size: calc(24px + 0.15vw);
  letter-spacing: 0.05em;
  line-height: 1.7;
}

/* アイコン */
.home-flow__icon {
  position: absolute;
  left: -69px;
  top: 50%;
  transform: translateY(-50%);
  width: 104px;
}

/* 棒線：丸に接続 */
.home-flow__line {
  width: 0;
  height: 60px;
  border-left: 3px solid currentColor;
  margin-top: -1px;
  /* ← 丸の下端と接触させる */
}

/* 背景色 */
.home-flow__item.is-1 .home-flow__circle {
  background: #99BDFF;
}

.home-flow__item.is-2 .home-flow__circle {
  background: #85AFFF;
}

.home-flow__item.is-3 .home-flow__circle {
  background: #70A2FF;
}

.home-flow__item.is-4 .home-flow__circle {
  background: #70A2FF;
}

.home-flow__item.is-5 .home-flow__circle {
  background: #5C95FF;
}

.home-flow__item.is-1 .home-flow__line {
  border-color: #99BDFF;
}

.home-flow__item.is-2 .home-flow__line {
  border-color: #85AFFF;
}

.home-flow__item.is-3 .home-flow__line {
  border-color: #70A2FF;
}

.home-flow__item.is-4 .home-flow__line {
  border-color: #70A2FF;
}

.home-flow__item.is-5 .home-flow__line {
  display: none;
}

/* 右文章 */
.home-flow__content {
  flex: 1;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-size: clamp(16px, calc(16px + 0.5vw), 17px);
  letter-spacing: 0.05em;
  line-height: 2;
  color: #313195;
}

#flow .home-consultation__lead-bottom{
font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
  color: #313195;
  max-width: 860px;
  margin: 0 auto;
    font-size: clamp(
    15px,
    calc(15px + (17 - 15) * ((100vw - 767px) / (1280 - 767))),
    17px
  );
}

/* =========================
   SP
========================= */

@media (max-width: 767px) {

#flow .home-consultation__lead-bottom{
font-family: "Zen Maru Gothic", sans-serif;
font-size: clamp(
  16px,
  calc(16px + (18 - 16) * ((100vw - 375px) / (767 - 375))),
  18px
);
line-height: 170%;
letter-spacing: 3%;
    
}
    
    
  /* セクション全体の左右余白 */
  .home-flow__inner {
    max-width: 862px;
    margin: 0 auto 0px;
    padding: 100px 20px 50px;
    /* ← 上下は既存設計を尊重、左右だけ統一 */
  }

  .home-flow__title {
    margin-bottom: 5%;
  }

  .home-flow__circle-text {
    font-size: calc(18px + 0.4vw);
    letter-spacing: 0.03em;
    line-height: 1.7;
    margin-bottom: 0;
  }

  .home-flow__item {
    flex-direction: column;
    align-items: center;
  }

  .home-flow__left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .home-flow__circle {
    width: 160px;
    height: 160px;
    margin-bottom: 15px;
  }

  .home-flow__icon {
    width: 64px;
    left: -32px;
  }

  .home-flow__line {
    display: none;
  }

  /* 文章は余白を持たせない（innerに委ねる） */
  .home-flow__content {
    width: 100%;
    font-size: 16px;
    letter-spacing: 0.03em;
    line-height: 1.7;
    text-align: left;
  }

}


/* =========================
   FAQ セクション
========================= */
.home-faq__q {
  flex-shrink: 0;
  margin-top: 1%;
}

.home-faq {
  /* 背景色は後で調整前提 */
}

.home-faq__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 20px;
  /* 仮：他セクションと整合 */
}

/* タイトル */
.home-faq__title {
  text-align: center;
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 700;
  font-size: calc(36px + 0.6vw);
  /* PC基準36px */
  color: #313195;
  margin-bottom: 100px;
  /* 仮 */
}

/* FAQ リスト */
.home-faq__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* 仮 */
}

/* FAQ カード */
.home-faq__item {
  display: flex;
  gap: 24px;
  padding: 36px 62px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

/* Qマーク */
.home-faq__q {
  flex-shrink: 0;
}

.home-faq__q-mark {
  width: 43px;
  height: 43px;
  border-radius: 138px;
  background: #BDCDFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: calc(24px + 0.2vw);
  /* PC基準24px */
  color: #fff;
}

/* 本文 */
.home-faq__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-faq__question {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: calc(24px + 0.3vw);
  color: #313195;
  margin-bottom: 0;
}

.home-faq__answer {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-size: calc(17px + 0.15vw);
  /* PC基準17px */
  color: #767676;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
#faq.home-faq .home-faq__body > ul {
  margin: 12px 0 16px;
  padding-left: 1.2em;
}

#faq.home-faq .home-faq__body > ul > li {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: calc(17px + (100vw - 375px) * 0.004);
  line-height: 2;
  letter-spacing: 0.05em;
  color: #313195;
  margin-bottom: 8px;
}

#faq.home-faq .home-faq__body > ul > li:last-child {
  margin-bottom: 0;
}

#faq.home-faq .home-faq__body > ul {
  list-style: none;      /* デフォルトの●を消す */
  padding-left: 0;
  margin: 12px 0 16px;
}

#faq.home-faq .home-faq__body > ul > li {
  position: relative;
  padding-left: 1.2em;  /* 「・」分のスペース */
}

#faq.home-faq .home-faq__body > ul > li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: #313195;
}
 

/* =========================
   SP
========================= */

@media (max-width: 767px) {
  .home-faq__q {
    flex-shrink: 0;
    margin-top: 0%;
  }

  .home-faq__title {
    font-size: calc(24px + 0.6vw);
    /* SP基準24px */
    margin-bottom: 32px;
    /* 仮 */
  }

  .home-faq__item {
    flex-direction: column;
    padding: 16px 12px;
    gap: 12px;
  }

  .home-faq__question {
    font-size: calc(18px + 0.4vw);
    /* SP基準18px */
  }

  .home-faq__answer {
    font-size: calc(16px + 0.3vw);
    /* SP基準16px */
    letter-spacing: 0.03em;
  }

  .home-faq__q-mark {
    margin: 0 auto;
  }
    
#faq.home-faq .home-faq__body > ul > li {
  font-size: calc(16px + (100vw - 375px) * 0.004);
  line-height: 170%;
  letter-spacing: 3%;
  color: #313195;
  margin-bottom: 8px;
}
    
}

/* =========================
   conversion セクション
========================= */

.home-conversion {
  background: #F9F4BD;
}

.home-conversion__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(60px + 4vw) 20px;
}

/* 上部 */
.home-conversion__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0vw;
  margin: 0px auto;
  max-width: 970px;
}

.home-conversion__text {
  width: 70%;
}

.home-conversion__image {
  width: 30%;
  display: flex;
  justify-content: center;
}

.home-conversion__image img {
  width: 212px;
}

/* タイトル */
.home-conversion__title {
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 700;
  font-size: calc(24px + 0.9vw);
  color: #313195;
  line-height: 1.5;
}

/* リード */
.home-conversion__lead {
  margin-top: 12px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-size: calc(16px + 0.6vw);
  letter-spacing: 0.03em;
  color: #313195;
  line-height: 150%;
}

@media (max-width: 767px) {
.home-conversion__text {
  width: 100%;
}
    
}

/* =========================
   CTA
========================= */


.home-conversion__detail .cta-area {
  margin: 0 auto;
  padding: 0px;
}

.home-conversion__detail .cta-top {
  display: flex;
  border-radius: 24px;
  overflow: hidden;
}

.home-conversion__detail .cta-box {
  flex: 1;
  padding: 36px 32px;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.home-conversion__detail .cta-label {
  display: inline-block;
  padding: 6px 40px;
  border: 2px solid #fff;
  border-radius: 999px;
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 700;
}

.home-conversion__detail .cta-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.home-conversion__detail .cta-sub {
  font-size: 17px;
}

/* 電話 */
.home-conversion__detail .cta-tel {
  background: linear-gradient(to right, #FF556C, #FF5659);
}

.home-conversion__detail .cta-tel .cta-main::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f095";
  font-size: 0.8em;
  /* ← 約80% */
  margin-right: 6px;
}

/* WEB */
.home-conversion__detail .cta-mail {
  background: linear-gradient(to right, #0FBAB6, #0FA9BA);
}

.home-conversion__detail .cta-mail .cta-main::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  content: "\f0e0";
  font-size: 0.8em;
  /* ← 約80% */
  margin-right: 6px;
}

/* 注意書き */
.home-conversion__detail .cta-note {
  margin-top: 12px;
  text-align: right;
  font-size: 17px;
  color: #313195;
}

.home-conversion__detail .cta-tel:hover {
  background: linear-gradient(to right, #A12E3E, #712728);
}

.home-conversion__detail .cta-mail:hover {
  background: linear-gradient(to right, #076C6A, #05474E);
}

@media (min-width: 1280px) {

  .home-conversion__title {
    font-family: "Zen Kaku Gothic New", serif;
    font-weight: 700;
    font-size: 36px;
    color: #313195;
    line-height: 1.5;
  }

  .home-conversion__lead {
    margin-top: 12px;
    font-family: "Zen Maru Gothic", serif;
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 0.03em;
    color: #313195;
    line-height: 150%;
  }
}

@media (max-width: 1100px) {
  .home-conversion__lead {
    margin-top: 12px;
    font-family: "Zen Maru Gothic", serif;
    font-weight: 500;
    font-size: clamp( 16px, calc( 14px + (100vw - 800px) * 0.0417 ), 24px );
    letter-spacing: 0.03em;
    color: #313195;
    line-height: 170%;
  }

  .home-conversion__title {
    font-family: "Zen Kaku Gothic New", serif;
    font-weight: 700;
    font-size: clamp( 22px, calc( 22px + (100vw - 800px) * 0.0417 ), 36px );
    color: #313195;
    line-height: 1.5;
  }

  .home-conversion__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0vw;
    margin: 0px auto;
    max-width: 80%;
  }

  .home-conversion__detail .cta-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: clamp( 24px, calc( 24px + (100vw - 800px) * 0.0417 ), 24px );
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 10%;
  }

}

/* =========================
   SP
========================= */

@media (max-width: 768px) {
  .home-conversion__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0vw;
    margin: 0px auto;
    max-width: 100%;
  }
    
    
  .home-conversion__top {
    flex-direction: column;
    text-align: center;
  }

  .home-conversion__image img {
    width: 112px;
  }

  .home-conversion__detail .cta-top {
    flex-direction: column;
  }

  .home-conversion__detail .cta-box {
    padding: 36px 0;
  }

  .home-conversion__detail .cta-label {
    font-size: clamp(13px,
        calc(14px + (100vw - 375px) * 0.01),
        16px);
    width: 50vw;
    border-width: 1px;
    padding: 4px 2px;
    font-family: "Zen Maru Gothic", serif;
  }

  .home-conversion__detail .cta-main {
    font-size: clamp(20px, 6vw, 30px);
    display: block;
  }

  .home-conversion__detail .cta-sub {
    font-size: clamp(13px, 5vw, 16px);
    letter-spacing: 10%;
    font-family: "Zen Maru Gothic", serif;
  }

  .home-conversion__detail .cta-note {
    text-align: center;
    width: 90%;
    margin: 20px auto 0;
    font-size: clamp(15px, 4.5vw, 22px);
  }
}



/* =========================
  #consultation（3つの時間軸）
========================= */

#consultation.home-consultation{
  position: relative;
  overflow: hidden;
}

/* ===== 背景（bg00.svg を縦リピート・横100%） ===== */
#consultation .consultation-bg{
  background-image: url("../img/bg00.svg");
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-position: top center;
  position: relative;
  z-index: 2;
}

/* inner */
#consultation .home-consultation__inner{
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}

/* head */
#consultation .home-consultation__head{
  text-align: center;
  margin-bottom: clamp(32px, 4vw, 70px);
}

#consultation .home-consultation__title{
  margin: 0 auto 18px;
}

#consultation .home-consultation__title > span{
  display: inline-block;
  width: fit-content;
  margin: 0 auto;
  padding: 10px 18px;
  background: #313195;
  color: #fff;
  border-radius: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.3;

  font-size: clamp(
    24px,
    calc(24px + (100vw - 375px) * (36 - 24) / (1280 - 375)),
    36px
  );
}

#consultation .home-consultation__lead-bottom{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
  color: #313195;
  max-width: 860px;
  margin: 0 auto;

  font-size: clamp(
    15px,
    calc(15px + (100vw - 375px) * (17 - 15) / (1280 - 375)),
    17px
  );
}



/* =========================
  cards（SP:縦 / PC:3カラム）
========================= */

#consultation .consultation-cards{
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}




@media (min-width: 768px){
  #consultation .consultation-cards{
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }
}

#consultation .consultation-card{
  color: #313195;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
}

/* 画像＋ブロブ（見本の淡い“雲”っぽい背景） */
#consultation .consultation-illust{
  position: relative;
}



#consultation .consultation-illust img{
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* 01/02/03 吹き出し（丸） */
#consultation .consultation-no {
  position: absolute;
  left: 8px;
  bottom: -14px;
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
}

/* 文字だけ */
#consultation .consultation-no span {
  display: inline-block;

  font-family: Arial, sans-serif;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -1px;
  color: #BDCDFF;

  font-size: clamp(
    24px,
    calc(24px + (100vw - 767px) * 14 / 513),
    38px
  );

  transform: skewX(-17.75deg);
}


#consultation .consultation-no::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: 1px;
  width: 0;
  height: 0;
  border-left: 22px solid transparent;
  border-right: 0 solid transparent;
  border-top: 10px solid #fff;
  transform: rotate(-10deg);
}

/* title */
#consultation .consultation-card__title{
  margin: 0 0 14px;
  font-weight: 700;
  line-height: 1.25;

font-size: clamp(
  20px,
  calc(20px + (100vw - 375px) * (24 - 20) / (1280 - 375)),
  24px
);
}

#consultation .consultation-card__title span{
  font-weight: 500;
  opacity: 0.85;
    font-size: clamp(
    15px,
    calc(15px + (100vw - 375px) * (17 - 15) / (1280 - 375)),
    17px
  );
  line-height: 200%;
  letter-spacing: 5%;
    
}

/* text */
#consultation .consultation-card__text{
  margin: 0;
  line-height: 2;
  letter-spacing: 0.05em;

  font-size: clamp(
    15px,
    calc(15px + (100vw - 375px) * (17 - 15) / (1280 - 375)),
    17px
  );
    
width: 80%;
  margin: 0 auto;
}    
}

/* =========================
  waves
========================= */

#consultation .consultation-wave{
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
  pointer-events: none;
}

#consultation .consultation-wave--top{ top: 0; }
#consultation .consultation-wave--bottom{
  bottom: 0;
  transform: scaleY(-1) scaleX(-1);
  background-color: #ffffff;
}

#consultation .consultation-wave img{
  width: 100%;
  height: auto;
}

/* =========================
  SP微調整
========================= */

@media (max-width: 767px){
  #consultation .consultation-bg{
  }

  #consultation .home-consultation__title > span{
padding: 4px 12px;
    border-radius: 5px;
  }

  #consultation .home-consultation__lead-bottom{
    line-height: 1.7;
    letter-spacing: 0.03em;
font-size: clamp(
  16px,
  calc(16px + (18 - 16) * ((100vw - 375px) / (767 - 375))),
  18px
);
      line-height: 170%;
      letter-spacing: 3%;
      
  }

  #consultation .consultation-no{
  width: clamp(
    63px,
    calc(63px + (80 - 63) * ((100vw - 375px) / (767 - 375))),
    80px
  );
  height: clamp(
    63px,
    calc(63px + (80 - 63) * ((100vw - 375px) / (767 - 375))),
    80px
  );
    font-size: clamp(
  38px,
  calc(38px + (42 - 38) * ((100vw - 375px) / (767 - 375))),
  42px
);
  }
    
#consultation .home-consultation__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px 0;
  width: 90%;
}
    
#consultation .consultation-no span {    
    font-size: clamp(
  38px,
  calc(38px + (42 - 38) * ((100vw - 375px) / (767 - 375))),
  42px
);    
}
#consultation .consultation-no {
  position: absolute;
  left: 8px;
  bottom: -34px;
}
#consultation .consultation-card__text {
  margin: 0;
  line-height: 2;
  letter-spacing: 0.05em;
  font-size: clamp(
  16px,
  calc(16px + (18 - 16) * ((100vw - 375px) / (767 - 375))),
  18px
);
  width: 95%;
  margin: 0 auto;
}    
    
}



/* =========================
   asset section（PC基準）
========================= */

.home-asset {
  padding: 120px 20px;
  color: #313195;
}

.asset-inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* ===== タイトル ===== */

.asset-head {
  text-align: center;
  margin-bottom: 60px;
}

.asset-title {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: clamp(
    28px,
    calc(28px + (100vw - 767px) * 8 / 513),
    36px
  );
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 3%;
  line-height:150%;
}

.asset-lead {
  font-size: clamp(
    15px,
    calc(15px + (100vw - 767px) * 2 / 513),
    17px
  );
  line-height: 200%;
  font-family: "Zen Maru Gothic", serif; 
  letter-spacing: 5%;
}

/* =========================
   円カード（PC横並び）
========================= */

.asset-circles {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 100px;
  font-family: "Zen Maru Gothic", serif;     
}

.asset-circle {
  width: 362px;
  height: 362px;
  padding: 22px 28px 0;
  box-sizing: border-box;
  border-radius: 50%;
  border: 15px solid rgba(189, 205, 255, 0.1);
  background: #E9EEFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.asset-circle-icon {
  width: 60px;
  margin-bottom: 20px;
}

.asset-circle-title {
  font-size: clamp(
    20px,
    calc(20px + (100vw - 767px) * 4 / 513),
    24px
  );
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 150%;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-color: #BDCDFF;
  text-decoration-thickness: 10.5%;
  text-underline-offset: 25%;
}

.asset-circle-text {
  font-size: clamp(
    15px,
    calc(15px + (100vw - 767px) * 2 / 513),
    16px
  );
  line-height: 170%;
  letter-spacing: 5%;
}

/* =========================
   資産バランス（PC横並び）
========================= */

.asset-balance {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
  margin-top: 60px;
}

.asset-balance-left,
.asset-balance-right {
  flex: 1;
  text-align: left;
}

.asset-balance-left {
  max-width: 450px;
}

.asset-balance-right {
  max-width: 500px;
}

.asset-band {
  display: inline-block;
  background: #313195;
  color: #fff;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: clamp(
    20px,
    calc(20px + (100vw - 767px) * 4 / 513),
    24px
  );
  font-weight: 700;
  margin-bottom: 30px;
}

.asset-chart-img {
  max-width: 100%;
  height: auto;
}

.asset-balance-subtext {
  font-size: clamp(
    15px,
    calc(15px + (100vw - 767px) * 2 / 513),
    17px
  );
  line-height: 1.8;
  text-align: right;
}

.asset-balance-title {
  font-size: clamp(
    22px,
    calc(22px + (100vw - 767px) * 6 / 513),
    28px
  );
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 20px;
}

.asset-balance-text {
  font-size: clamp(
    15px,
    calc(15px + (100vw - 767px) * 2 / 513),
    17px
  );
  line-height: 1.9;
}

/* =========================
   SP用（767px以下）
========================= */

@media (max-width: 767px) {
    
.asset-chart-img {
  max-width: 80%;
  height: auto;
}    
    
.asset-circles {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 50px;
  font-family: "Zen Maru Gothic", serif;
}    
    
.asset-balance {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
  margin-top: 0px;
}    
    
.asset-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}    
    
.asset-circle-icon {
    width: clamp(
    40px,
    calc(40px + (60 - 40) * ((100vw - 375px) / (767 - 375))),
    60px
  );
  margin-bottom: 20px;
}    
    
  .home-asset {
    padding: 0px 20px;
  }

  .asset-title {
    font-size: 24px;
  }

  .asset-lead {
    font-size: 15px;
  }

  .asset-circles {
    flex-direction: column;
  }

.asset-circle {
  width: clamp(
    312px,
    calc(312px + (360 - 312) * ((100vw - 375px) / (767 - 375))),
    360px
  );
  height: clamp(
    312px,
    calc(312px + (360 - 312) * ((100vw - 375px) / (767 - 375))),
    360px
  );
  padding: 30px;
}

.asset-circle-title {
  font-size: clamp(
    20px,
    calc(20px + (22 - 20) * ((100vw - 375px) / (767 - 375))),
    22px
  );
  line-height: 130%;
}

.asset-circle-text {
  font-size: clamp(
    16px,
    calc(16px + (18 - 16) * ((100vw - 375px) / (767 - 375))),
    18px
  );
letter-spacing: 3%;
}

  .asset-balance {
    flex-direction: column;
    gap: 50px;
  }

  .asset-balance-left,
  .asset-balance-right {
    text-align: center;
    max-width: 100%;
  }

  .asset-band {
    font-size: clamp(
      18px,
      calc(18px + (20 - 18) * ((100vw - 375px) / (767 - 375))),
      20px
    );
    padding: 4px 8px;  
  }

  .asset-balance-subtext {
    font-size: 14px;
    text-align: center;
  }

.asset-balance-title {
  font-size: clamp(
    20px,
    calc(20px + (22 - 20) * ((100vw - 375px) / (767 - 375))),
    22px
  );
  text-align: left;
  line-height: 130%;
  letter-spacing: 0%;    
}

.asset-balance-text {
  font-size: clamp(
    18px,
    calc(18px + (20 - 18) * ((100vw - 375px) / (767 - 375))),
    20px
  );
  text-align: left;
  line-height: 170%;
  letter-spacing: 3%;
}

}
