@charset "UTF-8";
body {
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
  background: #FFFFFF;
  background: url(../img/bg-body.jpg) no-repeat center/100%;
  background-attachment: fixed;
}

a {
  color: linear-gradient(73.99deg, #FF6368 0%, #FF6368 70.9%, #FFA0A3 100%);
  text-decoration: none;
  transition: all 0.3s ease-in;
  cursor: pointer;
}

#wrapper {
  position: relative;
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.en {
  font-family: "Jost", sans-serif;
}

body {
  color: #404040;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 500;
  font-family: "Jost", "Zen Kaku Gothic New", "Noto Sans JP", "YakuHanJP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

h1 {
  font-size: clamp(4rem, 4vw, 5.6rem);
  font-weight: 400;
}

h2 {
  font-size: clamp(2.8rem, 2.6vw, 3.6rem);
  font-weight: 400;
}
h2.en {
  font-size: clamp(4rem, 4vw, 5.6rem);
}

h3 {
  font-size: clamp(2rem, 2vw, 2.4rem);
  font-weight: 400;
}
h3.en {
  font-size: clamp(2.4rem, 2.4vw, 3.2rem);
}

h4 {
  font-size: clamp(1.8rem, 1.6vw, 2rem);
  font-weight: 400;
}
h4.en {
  font-size: clamp(2.4rem, 2.4vw, 3.2rem);
}

.body_tiny {
  font-size: 1.2rem;
}

@keyframes hd-scrolled {
  0% {
    opacity: 0;
    transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
#header {
  z-index: 10;
  transition: all 0.4s ease-in;
}
#header.is-fixed {
  position: fixed;
  z-index: 100;
  top: 40px;
  left: 40px;
}
#header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  height: 100%;
}
#header .inner #logo {
  transition: all 0.4s ease-in;
  padding: 3px 0;
}
#header .inner #logo a {
  display: flex;
  justify-content: center;
  align-items: center;
}
#header .inner #logo a img {
  width: 160px;
}
#header .inner #logo a p {
  display: flex;
  justify-content: center;
  align-items: center;
}

.head-left {
  display: flex;
  align-items: center;
  gap: 60px;
  background: #FFFFFF;
  padding: 10px 40px;
  border-radius: 999px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}
.head-left .btn {
  margin-top: 0;
}
.head-left .btn a {
  min-width: 210px;
  font-size: 15px;
  padding: 7px 25px 7px 22px;
}

.head-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.head-right_contact {
  display: flex;
  align-items: center;
  gap: 20px;
}
.head-right_contact a {
  color: #404040;
  display: flex;
  align-items: center;
}
.head-right_contact a .icon {
  width: 64px;
}
.head-right_contact a.tel {
  font-size: 3.2rem;
}
.head-right_contact a.recruit {
  font-size: 2.4rem;
  background: linear-gradient(90deg, #15A9E0 0%, #6DD3FF 100%);
  padding: 5px 20px;
  min-height: 66px;
}

#header_nav ul {
  display: flex;
  gap: 20px;
}
#header_nav ul li a {
  position: relative;
  display: block;
  color: #404040;
  text-align: center;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
}
#header_nav ul li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: linear-gradient(73.99deg, #FF6368 0%, #FF6368 70.9%, #FFA0A3 100%);
  transform: translateX(-50%) scaleX(0);
  transform-origin: 50% 50%;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.35s ease;
  opacity: 0.9;
  pointer-events: none;
}
#header_nav ul li a:hover::after, #header_nav ul li a:focus-visible::after, #header_nav ul li a.is-current::after, #header_nav ul li a[aria-current=page]::after {
  transform: translateX(-50%) scaleX(1);
}
#header_nav ul li a span {
  display: block;
  color: #FFFFFF;
  font-size: 1.2rem;
}
#header_nav ul li a img {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  margin-left: auto;
  margin-right: auto;
}
#header_nav ul li a:hover span {
  color: white;
}
#header_nav .dropdown .dropdown-li a::after {
  display: none;
}

#mv {
  --cbar-h: 52px;
  width: 100%;
  text-align: center;
  aspect-ratio: 1280/800;
  height: min(max(62.5vw, 640px), 100svh - var(--cbar-h));
  max-height: calc(100svh - var(--cbar-h));
  overflow: hidden;
  position: relative;
  z-index: 100;
}
#mv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/mv-bg.jpg) no-repeat center/cover;
  z-index: -2;
}
#mv .mv-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 100%;
  align-items: stretch;
  margin: 0 auto;
  padding-inline: clamp(16px, 3vw, 56px);
  justify-content: flex-start;
  gap: clamp(24px, 3vw, 72px);
}
#mv .mv-left {
  width: 50%;
  padding-left: 5%;
  position: relative;
  z-index: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  gap: clamp(24px, 3vw, 44px);
  padding-top: clamp(20px, 2.6vh, 36px);
}
@media (min-width: 800px) {
  #mv .mv-left {
    justify-content: space-between;
    padding-bottom: clamp(24px, 6vh, 76px);
  }
}
#mv .mv-left .flex .btn {
  margin-top: 4vh;
}
#mv .mv-left > [id^=cms-text-] {
  display: contents;
}
#mv .mv-left .mv-lead {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.7vw, 38px);
  margin-top: -6px;
}
#mv .mv-left .mv-btns {
  width: 100%;
  max-width: 760px;
  gap: clamp(16px, 1.8vw, 28px);
}
#mv .mv-left .mv-btns .btn {
  flex: 1 1 0;
  min-width: 0;
  margin-top: 0;
}
#mv .mv-left .mv-btns .btn a, #mv .mv-left .mv-btns.flex .btn--sbc a {
  width: 100%;
  min-width: 0;
  padding: clamp(17px, 1.8vw, 26px) clamp(16px, 1.6vw, 26px);
  font-size: clamp(16px, 1.42vw, 23px);
  font-weight: 900;
  gap: 14px;
  letter-spacing: 0.02em;
}
#mv .mv-left .mv-btns .btn a::after {
  width: 18px;
  height: 18px;
}
#mv .mv-img {
  width: 50%;
  height: 130%;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  overflow: hidden;
  flex-wrap: nowrap;
  align-items: stretch;
  margin-top: -5%;
  margin-right: -7vw;
  position: relative;
  z-index: 0;
  pointer-events: none;
  transform: rotate(-10deg);
  min-width: 0;
  margin-left: auto;
}
#mv .mv-img .inner {
  width: calc((100% - 40px) / 3);
  height: 100%;
  overflow: hidden;
  display: block;
}
#mv .mv-img .inner.is-up .track {
  animation-name: mv-scroll-up;
}
#mv .mv-img .inner.is-down .track {
  animation-name: mv-scroll-down;
}
#mv .mv-img .inner .track {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation-duration: 40s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}
#mv .mv-img .inner p {
  margin: 0;
  flex-shrink: 0;
}
#mv .mv-img .inner img {
  width: 100%;
  display: block;
  border-radius: 16px;
  box-shadow: 6px 8px 16px 0px rgba(0, 0, 0, 0.1);
}
@keyframes mv-scroll-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes mv-scroll-down {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}
#mv .badge {
  display: flex;
  gap: 20px;
}
#mv .badge .item {
  background: url(../img/medal.png) no-repeat center/contain;
  width: clamp(158px, 12.4vw, 190px);
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
}
#mv .badge .item em {
  font-size: clamp(26px, 2.5vw, 33px);
  font-weight: 800;
  background: #F54A52;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding-right: 0.08em;
  font-family: "Jost", sans-serif;
  filter: drop-shadow(0 3px 8px rgba(245, 74, 82, 0.3));
}
#mv .badge .item p > em {
  font-size: clamp(3.2rem, 3.4vw, 3.6rem);
}
#mv .badge .item p > span > em {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 900;
}

.campaign-bar {
  position: relative;
  background: #d94148;
  overflow: hidden;
  z-index: 300;
  min-height: 52px;
}
.campaign-bar::before, .campaign-bar::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(120px, 22vw, 340px);
  background: url(../img/confetti-edge.webp) no-repeat left top/cover;
  pointer-events: none;
}
.campaign-bar::before {
  left: 0;
}
.campaign-bar::after {
  right: 0;
  transform: scaleX(-1);
}
.campaign-bar > a {
  display: block;
  color: #FFFFFF;
  transition: background-color 0.25s ease;
}
.campaign-bar > a:hover {
  background: rgba(0, 0, 0, 0.1);
}
.campaign-bar__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.2vw, 20px);
  padding: clamp(7px, 0.75vw, 11px) 16px;
}
.campaign-bar__label {
  flex: 0 0 auto;
  background: #FFD84D;
  color: #A50E18;
  font-weight: 900;
  font-size: clamp(12px, 1.05vw, 16px);
  line-height: 1.2;
  letter-spacing: 0.02em;
  padding: 0.3em 0.8em;
  border-radius: 999px;
  white-space: nowrap;
}
.campaign-bar__txt {
  font-weight: 700;
  font-size: clamp(12px, 1.05vw, 16px);
  line-height: 1.4;
}
.campaign-bar__txt em {
  font-style: normal;
  font-weight: 900;
  color: #FFE9A8;
}
.campaign-bar__cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  background: #FFFFFF;
  color: #d94148;
  font-weight: 900;
  font-size: clamp(11px, 1.02vw, 15px);
  line-height: 1.2;
  letter-spacing: 0.01em;
  padding: 0.32em 0.9em;
  border-radius: 999px;
  white-space: nowrap;
}
.campaign-bar__cta em {
  font-style: normal;
  font-family: "Jost", sans-serif;
  font-weight: 800;
  font-size: 1.35em;
  line-height: 1;
  margin-right: 0.04em;
}
.campaign-bar__cta::after {
  content: "";
  flex: 0 0 auto;
  width: 0.34em;
  height: 0.34em;
  border-top: 0.13em solid currentColor;
  border-right: 0.13em solid currentColor;
  transform: rotate(45deg);
  margin-left: 0.15em;
}

#mv-cta {
  position: absolute;
  bottom: 20px;
  right: 50px;
  z-index: 999;
  background: #FFFFFF;
  border: 1px solid rgb(255, 99, 104);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  transition: all 0.5s ease;
}
#mv-cta.is-fixed {
  position: fixed;
  right: 20px;
  bottom: 90px;
  z-index: 9999;
}
#mv-cta a {
  display: block;
}
#mv-cta .head {
  background: linear-gradient(73.99deg, #FF6368 0%, #FF6368 70.9%, #FFA0A3 100%);
  color: #FFFFFF;
  padding: 10px 20px;
}
#mv-cta .head .point {
  display: inline-block;
  background: #FFFFFF;
  font-weight: 700;
  color: #404040;
  padding: 0 10px;
  margin-bottom: 5px;
  line-height: 1.2;
}
#mv-cta .head .point p {
  color: #FF6368;
  font-size: 2.4rem;
  font-family: "Jost", sans-serif;
  font-weight: 500;
}
#mv-cta .btm {
  padding: 5px 20px 7px;
  color: #FF6368;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
#mv-cta .btm p {
  font-size: 2.4rem;
}
#mv-cta .btm img {
  padding-top: 10px;
}
#mv-cta p {
  display: inline;
}

#catch {
  --catch: clamp(22px, 2.15vw, 41px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: var(--catch);
  gap: 0.1em;
}
#catch p {
  font-size: 1em;
  font-weight: 900;
  white-space: nowrap;
  line-height: 1.28;
}
#catch .c-sub {
  font-size: 0.58em;
  font-weight: 500;
  color: #404040;
  letter-spacing: 0.03em;
  margin-left: 5px;
}
#catch .c-sub:first-child {
  margin-left: 0;
}
#catch .c-strong {
  font-size: 1.2em;
  font-weight: 900;
  color: #004080;
  letter-spacing: -0.015em;
}
#catch .c-free {
  font-size: 2.3em;
  font-weight: 900;
  line-height: 1.26;
  letter-spacing: -0.035em;
  margin-left: -0.06em;
  color: #E8353D;
}
#catch .c-excl {
  font-size: 2em;
  font-weight: 900;
  color: #E8353D;
  margin-left: -0.16em;
  letter-spacing: -0.1em;
}

@media (min-width: 2000px) {
  #catch {
    --catch: clamp(42px, 2.6vw, 64px);
  }
  #mv .badge .item {
    font-size: clamp(12px, 0.9vw, 22px);
    width: clamp(150px, 8vw, 280px);
  }
  #mv .badge .item em {
    font-size: clamp(26px, 1.4vw, 45px);
  }
  #mv .badge .item p em {
    font-size: clamp(4rem, 2vw, 5rem);
  }
}
#mv-cta.sp {
  display: none;
}

#footer {
  position: relative;
  background: rgb(0, 64, 128);
  padding: 40px;
}
#footer .inner .footer-left {
  width: 50%;
  padding-right: 5%;
}
#footer .inner .footer-right {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}

.flogo {
  margin-bottom: 10px;
}
.flogo img {
  width: 100px;
}

.company {
  font-size: 3.2rem;
}

.address {
  font-size: 2.4rem;
}

.footer_navi {
  position: relative;
  margin-bottom: 60px;
}
.footer_navi ul li a {
  position: relative;
  display: inline-block;
  color: #404040;
  font-size: 2.4rem;
  padding-left: 1.5em;
}
.footer_navi ul li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url(../img/icon-heart.png) no-repeat center/contain;
}
.footer_navi ul li a:hover {
  opacity: 0.95;
}
.footer_navi ul li .dropdown {
  margin-top: 10px;
  padding: 8px 5px 5px;
}
.footer_navi ul li .dropdown .dropdown-ul {
  flex-direction: column;
}
.footer_navi ul li .dropdown .dropdown-li:first-of-type {
  display: block;
}
.footer_navi ul li .dropdown .dropdown-li a {
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0;
  border: none;
  display: block;
}
.footer_navi ul li .dropdown .dropdown-li a::after {
  display: none;
}
.footer_navi ul li .dropdown .dropdown-li a::before {
  content: "-";
  margin-right: 5px;
}

.ggmap {
  width: 100%;
}
.ggmap iframe {
  width: 100%;
  filter: grayscale(1);
  height: 724px;
}

.copyright {
  font-size: 1.2rem;
  text-align: center;
  color: #FFFFFF;
}

/* main wrapper
-------------------------*/
.container {
  /* デフォルト値（必要ならここを基準に各modifierが上書き） */
  --container-pb: 80px;
  --container-pi: 60px;
  /* ★今回の肝：画面が広いときは自動で中身幅を広げる（上限あり） */
  --container-max: clamp(1200px,
  		calc(100vw - (var(--container-pi) * 2)),
  		1800px
  );
  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-block: var(--container-pb);
  padding-inline: var(--container-pi);
  overflow-x: clip;
}

.container--base {
  --container-max: 1200px;
}

.container--wide {
  --container-max: clamp(1200px, 92vw, 1800px);
}

.container--full {
  --container-max: 100%;
}

.container--p-xl {
  --container-pb: 120px;
  --container-pi: 0;
}

.container--p-l {
  --container-pb: 80px;
  --container-pi: 60px;
}

.container--p-m {
  --container-pb: 60px;
  --container-pi: 0;
}

.container--p-s {
  --container-pb: 20px;
  --container-pi: 0;
}

.container--full {
  --container-max: 100%;
  --container-pi: 0px;
  max-width: 100%;
  padding-inline: 0;
}

.container--no-xpad {
  --container-pi: 0px !important;
  padding-inline: 0 !important;
}

.container--top-only {
  padding-block-end: 0 !important;
}

.container--btm-only {
  padding-block-start: 0 !important;
}

/* SPルール維持 */
@media (max-width: 767px) {
  .container {
    --container-pi: 20px;
    --container-pb: 64px;
  }
}
/* inner box
-------------------------*/
.box {
  position: relative;
  margin-inline: auto;
  z-index: 3;
  padding: clamp(16px, 4vw, 30px);
}
.box--bwidth {
  max-width: 1200px;
  margin-inline: auto;
}
.box--small {
  max-width: 900px;
  margin-inline: auto;
}
.box--small2 {
  max-width: 767px;
  margin-inline: auto;
}
.box--small3 {
  max-width: 1050px;
  margin-inline: auto;
}
.box--small4 {
  max-width: 1100px;
  margin-inline: auto;
}
.box--content-fit {
  display: grid;
  place-items: center;
}
.box--content-fit > * {
  inline-size: min(100%, var(--inner-max, max-content));
}
.box--content-fit img {
  max-inline-size: 100%;
}
.box--pd60 {
  padding: clamp(30px, 4vw, 60px);
}
.box--pd-30-60 {
  padding: 30px 60px;
}
.box--bd {
  background: #FFFFFF;
  border: 3px solid #15A9E0;
}
.box--more {
  --more-closed: 350px;
}
.box--more .more-content {
  max-height: var(--more-closed);
  overflow: hidden;
  transition: max-height 0.6s ease;
}
.box--more.is-open .more-content {
  max-height: 2000px;
}

.bg {
  position: relative;
}
.bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.bg--w::after {
  background: #FFFFFF;
  z-index: -1;
}
.bg--z-1::after {
  z-index: -1;
}
.bg--z-5::after {
  z-index: -5;
}
.bg--z-10::after {
  z-index: -10;
}
.bg--gray::after {
  background: #E8E7E4;
}
.bg--lightblue::after {
  background: rgb(243, 248, 252);
}
.bg--triangle {
  padding-bottom: 40px;
}
.bg--triangle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: #FFFFFF;
}
.bg--triangle::after {
  clip-path: polygon(100% 0, 100% 85%, 50% 100%, 0 85%, 0 0);
}

.bg-w {
  background: #FFFFFF;
}

.voice-section .title .gradation,
.container--full > .title .gradation {
  font-size: 1.08em;
  padding: 10px 26px;
}

.title,
#mv-cta .head .ttl,
#mv-cta .head .point span,
.campaign-bar__label,
#cta .ttl,
.reason-box .text .main,
.reason-box .text .sub,
.step-card__ttl,
.faq .faq-q,
.service-tabs__tab .text,
.onayami-box p,
.voices .name,
.campaign-bar__txt {
  text-wrap: balance;
  word-break: auto-phrase;
}

.faq .faq-a,
.step-card__txt,
.policy-box,
.b-btm-text,
.text,
.page-intro {
  text-wrap: pretty;
  word-break: auto-phrase;
}

.title {
  margin: 0 auto 40px;
  position: relative;
  font-size: 3.6rem;
  font-size: clamp(3rem, 4.2vw, 6rem);
  font-weight: 900;
  line-height: 1.25;
}
.title em,
.title strong {
  font-style: normal;
  font-weight: 900;
  font-size: 1.26em;
  line-height: 1;
}
.title:has(> .gradation) {
  font-size: clamp(1.8rem, 2.4vw, 3.4rem);
}
.title .gray {
  background: #5E5E5E;
  color: #FFFFFF;
  padding: 0 0.28em;
  font-size: 1.1em;
  font-weight: 900;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 12px 24px -10px rgba(0, 0, 0, 0.28);
}
.title .gradation {
  background: linear-gradient(84.91deg, #B6E4F9 -4.83%, #FFC8CB 104.88%);
  color: #004080;
  display: inline-block;
  font-size: 1.6em;
  line-height: 1.2;
  padding: 15px 30px;
  font-weight: 900;
  border-radius: 8px;
  text-wrap: balance;
  word-break: auto-phrase;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 12px 24px -10px rgba(0, 64, 128, 0.2);
}
.title .en {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  line-height: 0.95;
  font-size: clamp(5.6rem, 10.4vw, 15rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  background: linear-gradient(90deg, #15A9E0 0%, #6DD3FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 8px 18px rgba(0, 64, 128, 0.16));
}
.title .ja {
  font-weight: 900;
  font-size: clamp(1.6rem, 2.1vw, 3rem);
  color: #004080;
  display: block;
  letter-spacing: 0.02em;
}
.title--white .en,
.title--white .ja {
  color: #fff;
}
.title--m0 {
  margin: 0;
}
.title--mini {
  margin: 0 auto 20px;
}
.title--mini .ja::before {
  display: none;
}
.title--border {
  position: relative;
  padding-bottom: 8px;
  /* 細いライン（全幅） */
}
.title--border::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: #404040;
}
.title--border::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 6em;
  height: 2px;
  background-color: #404040;
}
.title--slash {
  font-size: clamp(1.8rem, 2.4vw, 3.4rem);
  position: relative;
  margin-bottom: 0;
}
.title--slash span {
  position: relative;
  display: inline-block;
  padding: 0 40px;
}
.title--slash span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 35px;
  height: 3px;
  background: #444;
  transform: translateY(-50%) rotate(-115deg);
}
.title--slash span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 35px;
  height: 3px;
  background: #444;
  transform: translateY(-50%) rotate(115deg);
}
.title.type2 {
  margin: 0 auto 40px;
}
.title.left-line {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.title.left-line::before {
  content: "";
  position: absolute;
  left: -1em;
  top: -0.7em;
  width: 48px;
  height: 43px;
  background: url(../img/problem_line.svg) no-repeat center/contain;
}

.text--12 {
  font-size: 1.2rem;
}
.text--14 {
  font-size: 1.4rem;
}
.text--16 {
  font-size: 1.6rem;
}
.text--24 {
  font-size: 2.4rem;
}
.text--32 {
  font-size: 3.2rem;
}
.text--40 {
  font-size: 4rem;
}

.line-h200 {
  line-height: 2;
}

.marker {
  display: inline;
  border-bottom: 0.07em solid #FF6368;
  padding-bottom: 0.04em;
}
.marker--y {
  border-bottom: 0.08em solid #FFD84D;
  padding-bottom: 0.04em;
}
.marker--pk {
  border-bottom: 0.07em solid #FF6368;
  padding-bottom: 0.04em;
}
.marker--bl {
  border-bottom: 0.07em solid #15A9E0;
  padding-bottom: 0.04em;
}
.marker--fill {
  display: inline-block;
  border-bottom: 0;
  padding: 0.02em 0.16em 0.07em;
  border-radius: 0.14em;
  background: #F54A52;
  color: #FFFFFF;
}

.text-link a {
  color: linear-gradient(90deg, #15A9E0 0%, #6DD3FF 100%);
  text-decoration: underline;
}
.text-link.white a {
  color: #FFFFFF;
}

.en {
  font-family: "Jost", sans-serif;
  font-weight: 500;
}

.accordion > .ttl {
  border: 1px solid linear-gradient(73.99deg, #FF6368 0%, #FF6368 70.9%, #FFA0A3 100%);
  position: relative;
  cursor: pointer;
  margin: 0;
  padding: 8px 48px;
  user-select: none;
}
.accordion > .ttl::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid linear-gradient(73.99deg, #FF6368 0%, #FF6368 70.9%, #FFA0A3 100%);
  border-bottom: 2px solid linear-gradient(73.99deg, #FF6368 0%, #FF6368 70.9%, #FFA0A3 100%);
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.25s ease;
}
.accordion > .inner {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}
.accordion > .inner h4 {
  padding: 10px;
}
.accordion.is-open > .ttl::after {
  transform: translateY(-50%) rotate(-135deg);
}
.accordion.is-open > .inner {
  opacity: 1;
}
.accordion .detail {
  background: linear-gradient(90deg, #15A9E0 0%, #6DD3FF 100%);
  border-top: 1px solid linear-gradient(73.99deg, #FF6368 0%, #FF6368 70.9%, #FFA0A3 100%);
  padding: 20px;
}
.accordion .detail .d-inner {
  max-width: 780px;
  margin: auto;
}

.page-intro {
  text-align: center;
  font-size: 3.2rem;
  margin-bottom: 80px;
}
.page-intro p:not(:first-child) {
  margin-top: 40px;
}

.btn {
  text-align: center;
  margin-top: 40px;
}
.btn a {
  --btn-tint: rgba(245, 74, 82, .40);
  position: relative;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 13px 25px 13px 20px;
  min-width: 260px;
  color: #FFFFFF;
  background: #F54A52;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  font-weight: 900;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06), 0 18px 32px -12px var(--btn-tint);
}
.btn a::after {
  content: "";
  width: 14px;
  height: 14px;
  background: url(../img/btn-arrow.png) no-repeat center/contain;
}
.btn a:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08), 0 24px 40px -12px var(--btn-tint);
}
.btn--right {
  text-align: right;
}
.btn--right a {
  text-align: center;
}
.btn--left {
  text-align: left;
}
.btn--center a {
  justify-content: center !important;
  margin: auto !important;
}
.btn--sbc a {
  --btn-tint: rgba(17, 147, 201, .40);
  background: #1193C9;
  width: 100px;
  padding: 10px 20px;
}
.btn--border {
  text-align: left;
}
.btn--border a,
.btn--border a.btn-border-link {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 220px;
  height: auto;
  padding: 0;
  gap: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  color: #404040;
  font-size: 2.4rem;
  font-weight: 400;
  text-decoration: none;
  transition: opacity 0.3s ease;
  /* ✅ 共通 .btn a の矢印（a::after）を必ず消す */
}
.btn--border a::after,
.btn--border a.btn-border-link::after {
  display: none !important;
  content: none !important;
  background: none !important;
  width: 0 !important;
  height: 0 !important;
}
.btn--border a,
.btn--border a.btn-border-link {
  /* ✅ 共通hoverの opacity を border用に */
}
.btn--border a:hover,
.btn--border a.btn-border-link:hover {
  opacity: 1;
}
.btn--border {
  /* --- 下線アニメ（あなたの元の指定を省略なしで維持） --- */
}
.btn--border a .btn-border-inner,
.btn--border a.btn-border-link .btn-border-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 4px;
  width: 100%;
}
.btn--border a .btn-border-inner::before,
.btn--border a.btn-border-link .btn-border-inner::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.4);
}
.btn--border a .btn-border-inner::after,
.btn--border a.btn-border-link .btn-border-inner::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #404040;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.btn--border a:hover .btn-border-inner::after,
.btn--border a.btn-border-link:hover .btn-border-inner::after {
  transform: scaleX(1);
}
.btn--border {
  /* --- 矢印アイコン（btn-border-icon相当）をCSSで再現：2枚重ねて入れ替え） --- */
}
.btn--border a::before,
.btn--border a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  background: url(../img/arrow.png) no-repeat center/contain;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}
.btn--border {
  /* top */
}
.btn--border a::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0) rotate(0deg);
}
.btn--border {
  /* bottom */
}
.btn--border a::after {
  opacity: 0;
  transform: translateY(-50%) translateX(-8px) rotate(-20deg);
}
.btn--border {
  /* hover入れ替え */
}
.btn--border a:hover::before {
  opacity: 0;
  transform: translateY(-50%) translateX(8px) rotate(20deg);
}
.btn--border a:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0) rotate(0deg);
}
.btn--m-t40 {
  margin-top: 40px;
}
.btn--m0 {
  margin-top: 0;
}

.news-list .news-item {
  border-bottom: 1px solid #404040;
}
.news-list .news-item .inner {
  padding: 20px;
  display: block;
  color: #404040;
}
.news-list .news-item .meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}
.news-list .news-item .meta .date {
  font-family: "Jost", sans-serif;
  font-weight: 500;
}
.news-list .news-item .meta .category {
  color: #FFFFFF;
  padding: 2px 10px;
  font-size: 1.2rem;
}
.news-list .news-item .meta .category.c01 {
  background: #404040;
}
.breadcrumb {
  max-width: 90%;
  margin: auto;
  padding: 30px;
  font-size: 12px;
}
.breadcrumb a {
  color: #404040;
  opacity: 0.6;
  text-decoration: underline;
}
.breadcrumb .kigou {
  font-size: 0.6em;
  padding: 0 0.5em;
}

.list--check li {
  padding: 8px;
  font-weight: 700;
  margin-bottom: 5px;
}
.list--check li span {
  font-weight: normal;
  font-size: 0.9em;
  display: block;
  padding: 10px;
  background: rgba(255, 255, 255, 0.2);
  margin-top: 10px;
}
.list--check li a {
  color: linear-gradient(90deg, #15A9E0 0%, #6DD3FF 100%);
  border-bottom: 1px dotted linear-gradient(90deg, #15A9E0 0%, #6DD3FF 100%);
}
.list--check li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  margin-right: 10px;
  color: linear-gradient(90deg, #15A9E0 0%, #6DD3FF 100%);
}
.list--check.type1 {
  display: flex;
  flex-wrap: wrap;
}
.list--check.type1 li {
  width: 48%;
}
.list--check.type1 li:nth-child(2n) {
  margin-left: 4%;
}
@media (max-width: 799px) {
  .list--check.type1 li {
    width: 95%;
    margin: 0 auto 5px;
  }
  .list--check.type1 li:nth-child(2n) {
    margin-left: auto;
  }
}
@media (max-width: 799px) {
  .list--check li {
    width: 98%;
    margin: 0 auto 10px;
    font-size: 1.2rem;
  }
}
.list--check2 li {
  padding: 10px 11px 10px 30px;
  position: relative;
  border-bottom: 2px dashed rgba(64, 64, 64, 0.3);
}
.list--check2 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 10px;
  color: linear-gradient(90deg, #15A9E0 0%, #6DD3FF 100%);
}
.list--inline li {
  display: inline-block;
  padding: 1px;
}
.list--inline li:not(:last-of-type):after {
  content: "/";
  margin: 0 1px;
  color: linear-gradient(90deg, #15A9E0 0%, #6DD3FF 100%);
  font-weight: normal;
}
.list--inline2 {
  text-align: center;
}
.list--inline2 li {
  display: inline-block;
  padding: 4px 15px;
  background: #fefefe;
  border: 1px solid linear-gradient(90deg, #15A9E0 0%, #6DD3FF 100%);
  font-weight: 700;
  border-radius: 30px;
}
.list--inline2 li:not(:last-child) {
  margin-right: 8px;
}
.list--inline3 li {
  display: inline-block;
}
.list--inline3 li:not(:last-of-type) {
  margin-right: 5px;
}
.list--num {
  list-style: none;
  padding-left: 0;
  counter-reset: num;
}
.list--num > li {
  counter-increment: num;
  display: flex;
  align-items: baseline;
  gap: clamp(10px, 2vw, 16px);
  line-height: 1.9;
}
.list--num > li::before {
  content: counter(num, decimal-leading-zero);
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-weight: 500;
  font-size: 5.6rem;
  background: linear-gradient(268.31deg, #FFB7B5 0%, #F0908D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  transform: translateY(0.04em);
  flex: 0 0 auto;
  line-height: 1;
}
.list--num > li > * {
  margin: 0;
}
.list--disc li {
  position: relative;
}
.list--disc li:not(:last-of-type) {
  margin-bottom: 5px;
}
.list--disc li:before {
  content: "●";
  color: linear-gradient(73.99deg, #FF6368 0%, #FF6368 70.9%, #FFA0A3 100%);
  font-size: 9px;
  margin-right: 5px;
}
.list--disc.sbc li:before {
  color: linear-gradient(90deg, #15A9E0 0%, #6DD3FF 100%);
}
.list--disc.type2 li:before {
  content: "・";
  color: #fff;
}
.list--disc.type3 li:not(:last-of-type) {
  margin-bottom: 20px;
}
.list--ol {
  padding-left: 0;
}
.list--ol > li {
  display: flex;
}
.list--ol > li:not(:last-of-type) {
  margin-bottom: 15px;
}
.list--ol > li::marker {
  content: none;
}
.list--ol > li .num {
  display: inline-block;
  border-radius: 50%;
  width: 2em;
  height: 2em;
  line-height: 2em;
  background: linear-gradient(80deg, #946B29 0%, #D9B95A 55%, #C0AC7B 100%);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-family: "Jost", sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 2rem;
  margin-right: 10px;
}
.list--ol > li .txt {
  color: linear-gradient(90deg, #15A9E0 0%, #6DD3FF 100%);
  font-size: 2rem;
  font-weight: 700;
}

.flow > li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  max-width: 750px;
  margin: auto;
  padding: 15px;
  border-radius: 5px;
  background: #FFFFFF;
}
.flow > li .icon {
  background: #FFFFFF;
  width: 200px;
  height: 150px;
}
.flow > li .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.flow > li .text {
  width: calc(100% - 220px);
}
.flow > li .text .flex {
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.flow > li .text .num {
  background: linear-gradient(90deg, #15A9E0 0%, #6DD3FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.flow > li .text .ja {
  color: linear-gradient(90deg, #15A9E0 0%, #6DD3FF 100%);
}
.flow > li:not(:last-child) {
  margin-bottom: 40px;
}
.flow > li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  width: 40px;
  height: 20px;
  background: linear-gradient(90deg, #15A9E0 0%, #6DD3FF 100%);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.flow2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}
.flow2 > li {
  position: relative;
}
.flow2 > li .img {
  position: relative;
  width: 145px;
  height: 145px;
  margin-bottom: 15px;
}
.flow2 > li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.flow2 > li .num {
  position: absolute;
  top: -0.2em;
  left: 0;
  font-family: "Jost", sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 4.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, #15A9E0 0%, #6DD3FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.flow2 > li:not(:last-child) {
  margin-bottom: 40px;
}
.flow2 > li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  width: 20px;
  height: 40px;
  background: linear-gradient(90deg, #15A9E0 0%, #6DD3FF 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.price {
  text-align: left;
  width: 5em;
}
.price .price-item {
  background: linear-gradient(90deg, #15A9E0 0%, #6DD3FF 100%);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.price .price-item .price-question {
  width: 100%;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
}
.price .price-item .price-question:hover {
  background: rgba(0, 0, 0, 0.02);
}
.price .price-item .price-question .title-html {
  flex: 1;
  font-size: 1.4rem;
  font-weight: 400;
}
.price .price-item .price-question .title-html p {
  margin: 0;
  display: inline;
}
.price .price-item .price-question .title-html strong {
  font-size: 1.6rem;
  font-weight: 700;
}
.price .price-item .price-question .toggle-label {
  font-size: 1.4rem;
  margin-right: 12px;
  white-space: nowrap;
}
.price .price-item .price-question .icon {
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 10px solid linear-gradient(90deg, #15A9E0 0%, #6DD3FF 100%);
  transition: transform 0.3s ease;
}
.price .price-item .price-question.active .icon {
  transform: rotate(180deg);
}
.price .price-item .price-answer {
  display: none;
  background: #fff;
  padding: 24px 28px;
  font-size: 1.6rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.price .price-item .price-answer .price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}
.price .price-item .price-answer .price-table td {
  padding: 10px 4px;
  border-bottom: 1px solid #ddd;
}
.price .price-item .price-answer .price-table td.t-right {
  text-align: right;
}
.price .price-item .price-answer.open {
  display: block;
}
.price table {
  width: 100%;
  margin-bottom: 10px;
}
.price table tr {
  border-bottom: 1px solid #ddd;
}
.price table tr td {
  padding: 15px 20px;
  font-size: 1.4rem;
}

.faq .faq-item {
  border-radius: 16px;
  background: #FFFFFF;
  overflow: hidden;
  box-shadow: 6px 8px 16px 0px rgba(0, 0, 0, 0.1);
}
.faq .faq-item:not(:last-child) {
  margin-bottom: 40px;
}
.faq .faq-item .faq-qline {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 20px;
  background: rgb(243, 248, 252);
  cursor: pointer;
  position: relative;
}
.faq .faq-item .faq-qline .badge {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1;
  color: #15A9E0;
  flex-shrink: 0;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  display: inline;
}
.faq .faq-item .faq-qline .faq-q {
  margin: 0;
  color: #404040;
  flex: 1;
}
.faq .faq-item .faq-qline {
  /* 右の三角 */
}
.faq .faq-item .faq-qline .faq-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  pointer-events: none;
  position: relative;
  flex-shrink: 0;
}
.faq .faq-item .faq-qline .faq-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 12px solid #00a3d9;
  /* 閉じている時：下向き */
  transform: rotate(0deg);
  transition: transform 0.25s ease;
}
.faq .faq-item .faq-aline {
  display: flex;
  align-items: center;
  gap: 18px;
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  border-top: 0;
  transition: max-height 0.3s ease, padding 0.3s ease, border 0.3s ease;
}
.faq .faq-item .faq-aline .badge {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1;
  color: #FF6368;
  flex-shrink: 0;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  display: inline;
}
.faq .faq-item .faq-aline .faq-a {
  margin: 0;
  color: #404040;
  flex: 1;
}
.faq .faq-item.is-open .faq-aline {
  max-height: 400px;
  padding: 15px 20px;
  border-top: 1px solid rgba(35, 24, 21, 0.12);
}
.faq .faq-item.is-open .faq-qline .faq-toggle::before {
  transform: rotate(180deg);
}

.radio-list label,
.check-list label {
  white-space: nowrap;
}

.tbl-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #404040;
}

.tbl {
  width: 100%;
  border-collapse: collapse;
  margin-inline: auto;
}
.tbl tr:last-child th,
.tbl tr:last-child td {
  border-bottom: none;
}
.tbl tr th,
.tbl tr td {
  padding: 15px 25px;
  border-bottom: 1px solid #404040;
  font-size: 2.4rem;
}
.tbl tr th {
  font-weight: 400;
  text-align: center;
  background: linear-gradient(90deg, #15A9E0 0%, #6DD3FF 100%);
  vertical-align: middle;
  border-right: 1px solid #404040;
}
.tbl tr td {
  background: #FFFFFF;
}
.tbl--calendar tr {
  font-weight: bold;
  border-top: 0.4px solid #404040;
  border-top: 0.4px solid #404040;
}
.tbl--calendar tr:last-child {
  border-bottom: 0.4px solid #404040;
}
.tbl--calendar tr th {
  padding-left: 15px;
  border-right: 0.4px solid #404040;
}
.tbl--calendar tr td:not(:last-child) {
  border-right: 0.4px solid #404040;
}
.tbl--calendar tr:nth-of-type(2) td, .tbl--calendar tr:nth-of-type(3) td {
  color: linear-gradient(73.99deg, #FF6368 0%, #FF6368 70.9%, #FFA0A3 100%);
}
.tbl--border tr {
  border-bottom: 1px solid #404040;
}
.tbl--border tr:first-child {
  border-top: 1px solid #404040;
}
.tbl--border tr th {
  background: linear-gradient(73.99deg, #FF6368 0%, #FF6368 70.9%, #FFA0A3 100%);
}
.tbl--border tr .link a {
  color: #404040;
}
.tbl--border tr .link a:hover {
  opacity: 0.6;
}

.l-column {
  --gap: 40px;
  --cols: 3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}
.l-column > li,
.l-column .col-item {
  flex: 0 0 calc((100% - var(--gap) * (var(--cols) - 1)) / var(--cols));
}
.l-column.col2 {
  --cols: 2;
}
.l-column.col3 {
  --cols: 3;
}
.l-column.col4 {
  --cols: 4;
}
.l-column.col5 {
  --cols: 5;
}
.l-column.reverse {
  flex-direction: row-reverse;
}
.l-column.al-top {
  align-items: flex-start;
}
.l-column.center {
  justify-content: center;
}
.l-column .img img {
  width: 100%;
  aspect-ratio: 39/28;
  object-fit: cover;
}

.flex {
  display: flex;
  /* Direction */
}
.flex.fd-row {
  flex-direction: row;
}
.flex.fd-col {
  flex-direction: column;
}

/* Align / Justify */
.ai-start {
  align-items: flex-start;
}

.ai-center {
  align-items: center;
}

.ai-end {
  align-items: flex-end;
}

.ai-stretch {
  align-items: stretch;
}

.jc-start {
  justify-content: flex-start;
}

.jc-center {
  justify-content: center;
}

.jc-end {
  justify-content: flex-end;
}

.jc-between {
  justify-content: space-between;
}

/* Wrap */
.fw-wrap {
  flex-wrap: wrap;
}

/* Gap */
.gap-10 {
  gap: 10px;
}

.gap-15 {
  gap: 15px;
}

.gap-20 {
  gap: 20px;
}

.gap-40 {
  gap: 40px;
}

.gap-80 {
  gap: 80px;
}

.w320 {
  width: 320px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.gallery img {
  display: inline-block;
  width: calc((100% - 30px) / 3);
}

.snapwidget-widget {
  display: block;
  max-width: 940px;
  /* 300px×3列 + 余白 */
  margin: 0 auto;
  /* 中央寄せ */
}

.spbr {
  display: none !important;
}

.sp-contents {
  display: none !important;
}

.relative {
  position: relative;
}

.shadow {
  box-shadow: 2px 2px 8px 0px rgba(35, 24, 21, 0.15);
}

.hidden {
  overflow: hidden;
}

.bold {
  font-weight: 600;
}

.bold2 {
  font-weight: 900;
}

.bigger {
  font-size: 1.2em;
  line-height: 2;
}

.smaller {
  font-size: 0.65em;
  letter-spacing: 0;
}

.u-jp-xl {
  font-size: 1.7em;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.u-jp-l {
  font-size: 1.3em;
  font-weight: 900;
  line-height: 1.15;
}

.u-jp-s {
  font-size: 0.78em;
  font-weight: 500;
}

.u-jp-xs {
  font-size: 0.62em;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.u-otl {
  paint-order: stroke fill;
  -webkit-text-stroke: 4px #FFFFFF;
}

.u-otl--thin {
  paint-order: stroke fill;
  -webkit-text-stroke: 2px #FFFFFF;
}

.u-otl--navy {
  paint-order: stroke fill;
  -webkit-text-stroke: 4px #004080;
}

.u-num {
  font-family: "Jost", sans-serif;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 0.01em;
}

.u-jp {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

#l-main p strong,
#l-main p b,
#l-main li strong,
#l-main li b,
#l-main dd strong,
#l-main dd b,
#l-main td strong,
#l-main td b {
  font-weight: 900;
  font-size: 1.14em;
  color: #004080;
}
#l-main p em,
#l-main li em,
#l-main dd em,
#l-main td em {
  font-style: normal;
  font-weight: 900;
  color: #D8232B;
}

.big-eng {
  font-size: 96px;
}

.text-scroll {
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: -200px;
}

.marquee {
  display: inline-flex;
  animation: marquee 25s linear infinite;
}

.big-eng {
  padding-right: 2rem;
  /* テキスト間の隙間（調整可） */
}

/* 最初から文字が見えるアニメーション */
@keyframes marquee {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.para-gap p + p {
  margin-top: 20px;
}
.para-gap--large p + p {
  margin-top: 30px;
}
.para-gap--mini p + p {
  margin-top: 12px;
}

.tcenter_pc {
  text-align: center;
}

.tcenter {
  text-align: center;
}

.tright {
  text-align: right;
}

.b-m5 {
  margin-bottom: 5px;
}

.b-m10 {
  margin-bottom: 10px;
}

.b-m20 {
  margin-bottom: 20px;
}

.b-m30 {
  margin-bottom: 30px;
}

.b-m40 {
  margin-bottom: 40px;
}

.b-m60 {
  margin-bottom: 60px;
}

.b-m80 {
  margin-bottom: 80px;
}

.t-m10 {
  margin-top: 10px;
}

.t-m20 {
  margin-top: 20px;
}

.b-r8 {
  border-radius: 8px;
}

.b-r16 {
  border-radius: 16px;
}
.b-r16.bg::after {
  border-radius: 16px;
}

.b-r20 {
  border-radius: 20px;
}

.b-r24 {
  border-radius: 24px;
}

.b-r50pe {
  border-radius: 50%;
}

.pd-16 {
  padding: 16px;
}

.pd-24 {
  padding: 24px;
}

.pd-20-35 {
  padding: 20px 35px;
}

.pd-top-20 {
  padding-top: 20px;
}

.asp-1-1 {
  aspect-ratio: 1/1;
}

.color01 {
  background: linear-gradient(90deg, #15A9E0 0%, #6DD3FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.color02 {
  color: linear-gradient(73.99deg, #FF6368 0%, #FF6368 70.9%, #FFA0A3 100%);
}

.color-w {
  color: #FFFFFF;
}

.img-cover {
  object-fit: cover;
}

.img-square {
  width: 100%;
  height: 316px;
  object-fit: cover;
  border-radius: 40px;
}

hr {
  border-top: 1px solid linear-gradient(73.99deg, #FF6368 0%, #FF6368 70.9%, #FFA0A3 100%);
}

.mi-auto {
  margin-inline: auto;
}

.voices {
  /* --- スライダー本体 --- */
}
.voices .voices-swiper {
  overflow: hidden;
  padding-inline: 16px;
}
@media (min-width: 768px) {
  .voices .voices-swiper {
    padding-inline: 24px;
  }
}
.voices .swiper-wrapper {
  display: flex;
}
.voices .swiper-slide {
  width: auto;
  padding-right: 24px;
}
@media (min-width: 640px) {
  .voices .swiper-slide {
    padding-right: 20px;
  }
}
@media (min-width: 768px) {
  .voices .swiper-slide {
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .voices .swiper-slide {
    padding-right: 28px;
  }
}
.voices {
  /* --- カード --- */
}
.voices .voice-card {
  border-radius: 20px;
  padding: 16px 18px;
  max-width: 500px;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.voices .voice-row {
  display: flex;
  gap: 18px;
}
.voices .avatar {
  flex: 0 0 140px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
}
.voices .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.voices {
  /* --- フッター（矢印＋ドット） --- */
}
.voices-foot {
  margin-top: 24px;
  text-align: center;
}
.voices-foot-inner {
  display: inline-flex;
  align-items: center;
  column-gap: 200px;
}
.voices {
  /* ページネーション（ドット） */
}
.voices-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.voices-pager .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(90deg, #15A9E0 0%, #6DD3FF 100%);
  opacity: 1;
  margin: 0;
  transition: background 0.2s, transform 0.2s;
}
.voices-pager .swiper-pagination-bullet-active {
  background: linear-gradient(90deg, #15A9E0 0%, #6DD3FF 100%);
  transform: scale(1.3);
}
.voices {
  /* 矢印ボタン */
}
.voices-prev, .voices-next {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(90deg, #15A9E0 0%, #6DD3FF 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  /* Swiper のデフォルト位置／サイズを念のため無効化 */
  position: relative;
  inset: auto;
  margin-top: 0;
}
.voices-prev::before, .voices-next::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  display: block;
}
.voices-prev::before {
  transform: rotate(225deg);
}
.voices-next::before {
  transform: rotate(45deg);
}

.flow-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 32px);
  align-items: stretch;
}
.flow-steps .step {
  position: relative;
}
.flow-steps .step::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(clamp(16px, 2.5vw, 32px) * -0.5);
  transform: translateY(-50%);
  border-left: 10px solid linear-gradient(73.99deg, #FF6368 0%, #FF6368 70.9%, #FFA0A3 100%);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
.flow-steps .step:last-child::after {
  display: none;
}
.flow-steps .step .step__badge {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -55%);
  width: clamp(92px, 9vw, 104px);
  height: clamp(92px, 9vw, 104px);
  border-radius: 50%;
  background: linear-gradient(73.99deg, #FF6368 0%, #FF6368 70.9%, #FFA0A3 100%);
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-align: center;
  line-height: 1;
  z-index: 10;
  font-weight: 800;
}
.flow-steps .step .step__badge .step__badge-label {
  font-size: clamp(10px, 1.2vw, 12px);
  letter-spacing: 0.08em;
  opacity: 0.9;
}
.flow-steps .step .step__badge .step__badge-num {
  font-size: clamp(28px, 3.2vw, 44px);
  margin-top: 2px;
}
.flow-steps .step .step__card {
  position: relative;
  background: #FFFFFF;
  border: 6px solid linear-gradient(73.99deg, #FF6368 0%, #FF6368 70.9%, #FFA0A3 100%);
  border-radius: 18px;
  padding: clamp(20px, 3vw, 32px) clamp(20px, 3vw, 32px) clamp(26px, 3.6vw, 40px);
  min-height: 360px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}
.flow-steps .step .step__card::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 22px;
  border: 4px solid transparent;
  pointer-events: none;
}
.flow-steps .step .step__icon img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.flow-steps .step .step__text {
  color: linear-gradient(73.99deg, #FF6368 0%, #FF6368 70.9%, #FFA0A3 100%);
}
.flow-steps .step.is-current .step__card::before {
  border-color: linear-gradient(73.99deg, #FF6368 0%, #FF6368 70.9%, #FFA0A3 100%);
}
.flow-steps.type2 {
  padding-top: 80px;
}
.flow-steps {
  /* ====== Responsive ====== */
}
@media (max-width: 1024px) {
  .flow-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .flow-steps .step::after {
    display: none;
  }
  .flow-steps {
    /* 2列以下は矢印を消す */
  }
}
@media (max-width: 599px) {
  .flow-steps {
    grid-template-columns: 1fr;
  }
}

.w240 {
  width: 240px;
}
.w240 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flex > .img.w240 {
  flex: 0 0 240px;
  display: block;
}

.h180 {
  height: 180px;
}

.as4-3 {
  aspect-ratio: 4/3;
}

.w400 {
  width: 400px;
}
.w400 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.h250 {
  height: 250px;
}

.l-h1 {
  line-height: 1;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 1.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.fade-up.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* 表示時に delay を追加 */
.fade-up.delay-300.is-active {
  transition-delay: 0.3s;
}

.fade-up.delay-500.is-active {
  transition-delay: 0.5s;
}

.fade-up.delay-800.is-active {
  transition-delay: 0.8s;
}

/* 左→右 + フェードイン */
.fade-in-left {
  animation: fadeInLeft 1s ease-out both;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-46px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 動きを減らす設定の人向け */
@media (prefers-reduced-motion: reduce) {
  .fade-in-left {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
.kiran {
  opacity: 1;
  overflow: hidden;
  position: relative;
}

/* 光の要素 */
.kiran::before {
  background-color: #fff;
  content: "";
  display: block;
  position: absolute;
  top: -100px;
  left: 0;
  width: 30px;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  /* ★ 5秒周期（0.5秒だけ光って、残りは待機） */
  animation: kiran 5s linear infinite;
}

/* 元の動きそのまま */
@keyframes kiran {
  /* 待機 */
  0% {
    transform: scale(2) rotate(45deg);
    opacity: 0;
  }
  /* キラン開始 */
  10% {
    transform: scale(2) rotate(45deg);
    opacity: 0;
  }
  14% {
    transform: scale(20) rotate(45deg);
    opacity: 0.6;
  }
  18% {
    transform: scale(30) rotate(45deg);
    opacity: 0.4;
  }
  26% {
    transform: scale(45) rotate(45deg);
    opacity: 0.2;
  }
  30% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
  /* 再び待機 */
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
#form {
  margin-top: 30px;
  width: 690px;
  max-width: 100%;
  margin-inline: auto;
}
#form .form-contents {
  background: transparent !important;
  padding: 0 !important;
}
#form .form-contents dl {
  font-size: 1.4rem !important;
  display: flex;
  flex-direction: column;
}
#form .form-contents dl dt {
  position: relative;
}
#form .form-contents dl dt:not(.pattern-exclusion) {
  width: 100% !important;
  padding-top: 10px !important;
}
#form .form-contents dl dt:not(.pattern-exclusion) span.required::before {
  display: none;
}
#form .form-contents dl dt:not(.pattern-exclusion) span.required::after {
  content: "*" !important;
  color: rgb(255, 99, 104);
  font-size: 2.4rem;
  text-align: center;
  padding: 0 5px;
}
#form .form-contents dl dd.radio-list {
  display: flex;
  gap: 30px;
}
#form .form-contents dl dd label {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}
#form .form-contents dl dd input[type=radio] {
  width: 22px;
  height: 22px;
  transform: translateY(-1px);
}
#form .form-contents dl dd:not(.pattern-exclusion) {
  width: 100% !important;
  padding-left: 0 !important;
  border-bottom: none !important;
  padding-bottom: 10px !important;
  padding-top: 10px !important;
}
#form .form-contents dl dd:not(.pattern-exclusion) input.textarea,
#form .form-contents dl dd:not(.pattern-exclusion) .textarea {
  border: none !important;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  border-radius: 8px !important;
  padding: 20px 15px !important;
  height: 48px !important;
}
#form .form-contents dl dd:not(.pattern-exclusion) .textarea {
  height: 4em !important;
}
#form .form-contents dl dd:not(.pattern-exclusion) input::placeholder,
#form .form-contents dl dd:not(.pattern-exclusion) textarea::placeholder {
  font-size: 14px !important;
  color: #B3B3B3 !important;
}
#form .form-contents .submit-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  align-items: center;
  padding: 13px 25px 13px 20px;
  min-width: 260px;
  margin-left: auto;
  margin-right: auto;
  color: #FFFFFF;
  background: linear-gradient(90deg, #15A9E0 0%, #6DD3FF 100%);
  border-radius: 999px;
  transition: 0.3s;
  font-weight: 700;
  justify-content: center;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.15);
  border: none;
  font-size: 19.2px !important;
}
#form .form-contents .submit-btn::after {
  content: "";
  width: 14px;
  height: 14px;
  display: block;
  background: url(../img/btn-arrow.png) no-repeat center/contain;
}
#form .form-contents .submit-btn:hover {
  box-shadow: none;
  transform: translateY(2px);
}

.policy-box {
  margin-top: 15px;
  margin-top: 3.5em;
}
.policy-box .mini {
  font-size: 1.2rem;
  margin-bottom: 15px;
}
.policy-box .ttl {
  font-weight: 700;
  font-size: 1rem;
}
.policy-box .para-gap {
  font-size: 1rem;
  background: #FFFFFF;
  padding: 10px 20px;
  overflow-y: scroll;
  max-height: 60px;
}
.policy-box .para-gap a {
  display: block;
}

.onayami-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 2rem;
}
.onayami-box .item {
  width: 50%;
  height: 190px;
}
.onayami-box .item p {
  width: 470px;
  height: 100%;
  background: url(../img/kumo.png) no-repeat center/contain;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 52px;
  line-height: 1.45;
  text-align: center;
  font-weight: 700;
  animation: floating-y 1s ease-in-out infinite alternate-reverse;
}
.onayami-box .item01 {
  width: 100%;
}
.onayami-box .item01 p {
  margin: auto;
}
.onayami-box .item02 p,
.onayami-box .item04 p {
  margin-left: auto;
}

@keyframes floating-y {
  0% {
    transform: translateY(-3%);
  }
  100% {
    transform: translateY(3%);
  }
}
.people img {
  width: 350px;
}

.people2 img {
  width: 555px;
}

.reason-box .ttl {
  display: flex;
  align-items: center;
  gap: 21px;
  margin-bottom: 27px;
}
.reason-box .ttl .badge {
  position: relative;
  width: 107px;
  aspect-ratio: 1/1;
  flex: 0 0 auto;
}
.reason-box .ttl .ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: ring-spin 12s linear infinite;
  transform-origin: center;
  will-change: transform;
}
.reason-box .ttl .num {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 67px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  background: linear-gradient(263.66deg, #A97626 -0.06%, #EDD17F 32.94%, #A97626 65.94%, #EDD17F 99.94%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Jost", sans-serif;
  font-weight: 500;
}
.reason-box .text .sub {
  font-size: 1.6rem;
  font-weight: 700;
}
.reason-box .text .main {
  margin: 0;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.3;
}
@keyframes ring-spin {
  to {
    transform: rotate(360deg);
  }
}

.service-tabs {
  /* ------------------------------
    * TAB NAV
    * ------------------------------ */
}
.service-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 22px;
  margin-bottom: 26px;
}
.service-tabs__tab {
  appearance: none;
  border: 0;
  background: #F6F6F6;
  color: #6A6A6A;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1;
  padding: 10px 24px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 6px 16px -6px rgba(0, 64, 128, 0.28);
  user-select: none;
}
.service-tabs__tab:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 12px 24px -10px rgba(0, 64, 128, 0.3);
}
.service-tabs__tab:focus-visible {
  outline: 2px solid rgba(26, 167, 223, 0.35);
  outline-offset: 2px;
}
.service-tabs__tab.is-active {
  background: #1193C9;
  color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 12px 24px -10px rgba(17, 147, 201, 0.42);
}
.service-tabs__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
}
.service-tabs__icon img {
  width: 25px;
  filter: grayscale(1);
}
.is-active .service-tabs__icon {
  background: rgba(255, 255, 255, 0.95);
}
.is-active .service-tabs__icon img {
  filter: none;
}
.service-tabs__slider {
  max-width: 920px;
  width: 100%;
  max-width: clamp(920px, 62vw, 1280px);
  margin: 0 auto;
}
.service-tabs .service-tabs-swiper {
  overflow: hidden;
}
.service-tabs__image {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  height: auto;
  display: block;
  border: 16px solid #404040;
  border-radius: 14px;
}
.service-tabs__progress {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 18px auto 0;
  padding: 0 16px;
}
.service-tabs__dot {
  width: 80px;
  height: 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
.service-tabs__dotFill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #15A9E0 0%, #6DD3FF 100%);
  border-radius: 999px;
}
.service-tabs__dot.is-active .service-tabs__dotFill {
  width: 100%;
  transition: width 6s linear;
}
.service-tabs {
  /* ------------------------------
    * CONTROLS (steps-btnと完全同一)
    * ------------------------------ */
}
.service-tabs__controls {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding-bottom: 10px;
  margin-top: 16px;
}
.service-tabs__btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(90deg, #15A9E0 0%, #6DD3FF 100%);
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.service-tabs__btn--prev, .service-tabs__btn--next {
  padding-bottom: 0.5em;
}
.service-tabs__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(26, 167, 223, 0.42);
}
.service-tabs__btn:focus-visible {
  outline: 3px solid rgba(26, 167, 223, 0.35);
  outline-offset: 3px;
}
.service-tabs__btn--toggle {
  font-size: 18px;
  /* ✅ ここがあなたのコードでズレてた箇所 */
}
.service-tabs__btn--toggle .service-tabs__btnIcon {
  display: inline-block;
}
.service-tabs {
  /* ------------------------------
    * type2
    * ------------------------------ */
}
.service-tabs.type2 .service-tabs__nav {
  gap: 30px;
}
.service-tabs.type2 .service-tabs__tab {
  width: calc((100% - 60px) / 3);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  font-weight: 700;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 6px 8px 16px 0px rgba(0, 0, 0, 0.1);
  color: #6A6A6A;
}
.service-tabs.type2 .service-tabs__tab .ttl {
  font-size: 1.6rem;
  color: #6A6A6A;
  text-align: left;
  position: relative;
  padding-bottom: 0.5em;
}
.service-tabs.type2 .service-tabs__tab .ttl::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1.5em;
  height: 2px;
  background: #E8E7E4;
  border-radius: 2px;
}
.service-tabs.type2 .service-tabs__tab .text {
  font-size: 1.4rem;
  text-align: left;
  line-height: 1.5;
}
.service-tabs.type2 .service-tabs__tab .img {
  position: absolute;
  width: 60px;
  right: 5px;
  top: -35px;
}
.service-tabs.type2 .service-tabs__tab.is-active {
  background: #FFFFFF;
  color: #404040;
}
.service-tabs.type2 .service-tabs__tab.is-active .ttl {
  color: #004080;
}
.service-tabs.type2 .service-tabs__tab.is-active .ttl::after {
  background: #15A9E0;
}
.service-tabs.type2 .service-tabs__slider {
  max-width: 100%;
}
.service-tabs.type2 .service-tabs__image {
  border: none;
  border-radius: 0;
  width: 100%;
  max-width: clamp(1160px, 76vw, 1440px);
  height: auto;
  border: 2px solid rgb(64, 64, 64);
}

#cta {
  text-align: center;
  background: url(../img/bg-cta.jpg) no-repeat center/cover;
  border-radius: 24px;
  padding: 40px 20px;
  max-width: 990px;
}
#cta .ttl {
  font-size: clamp(2.4rem, 3.1vw, 4.4rem);
  font-weight: 900;
  color: #004080;
  margin-bottom: 40px;
  line-height: 1.3;
}
#cta .ttl .sub {
  font-size: 0.38em;
  font-weight: 500;
  display: block;
  margin-top: 14px;
  color: #6A6A6A;
}
#cta .campaign-txt {
  font-size: clamp(2rem, 2.1vw, 3rem);
  font-weight: 900;
  line-height: 1.3;
  position: relative;
  width: fit-content;
  margin: auto;
  background: linear-gradient(#FF6368, #FF6368) no-repeat left bottom content-box;
  background-size: 100% 0.07em;
  padding: 0 1.5em;
}
#cta .campaign-txt span {
  color: #FF6368;
  font-size: 4rem;
}
#cta .campaign-txt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 40%;
  width: 15px;
  height: 26px;
  background: url(../img/ttl-line.svg) no-repeat center/contain;
}
#cta .campaign-txt::after {
  content: "";
  position: absolute;
  right: 0;
  top: 40%;
  width: 15px;
  height: 26px;
  background: url(../img/ttl-line2.svg) no-repeat center/contain;
}
#cta .btn {
  margin-top: 20px;
}
@media (min-width: 800px) {
  #cta .btn a {
    width: auto;
    min-width: 300px;
    padding: clamp(15px, 1.3vw, 19px) clamp(20px, 1.6vw, 28px);
    font-size: clamp(15px, 1.15vw, 18px);
  }
}

.slider-swiper {
  width: 100%;
  overflow: hidden;
  padding: 40px 0 !important;
}
.slider-swiper .swiper-slide {
  display: flex;
  width: auto;
  flex-shrink: 0;
  justify-content: flex-start;
}
.slider-swiper .swiper-slide img {
  display: block;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* reason：画像幅 457px */
.slider-swiper.js-slider-reason .swiper-slide img {
  width: 205px;
  max-width: 205px;
}

/* voice：画像幅 380px */
.slider-swiper.js-slider-voice .swiper-slide img {
  width: 380px;
  max-width: 380px;
}

.steps-slider {
  padding: 20px 0 10px;
  overflow: hidden;
}
.steps-slider .steps-swiper {
  width: 100%;
  padding: 10px 0 20px;
  overflow: hidden;
}
.steps-slider .swiper-slide {
  width: 360px;
  transition: transform 0.25s ease;
  opacity: 1;
  filter: none;
  height: auto;
  display: flex;
}
.steps-slider .swiper-wrapper {
  align-items: stretch;
}
.steps-slider .swiper-slide-active {
  transform: translateY(0);
}
.steps-slider .swiper-slide-active .step-card {
  transform: translateY(-2px);
}
.steps-slider .step-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 6px 8px 16px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transform: translateY(0);
  transition: transform 0.25s ease;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.steps-slider .step-card__media {
  position: relative;
  height: 203px;
}
.steps-slider .step-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.steps-slider .step-card__no {
  position: absolute;
  left: -5px;
  top: -5px;
  padding: 0 5px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 100px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  background: linear-gradient(90deg, #15A9E0 0%, #6DD3FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 0.9;
}
.steps-slider .step-card__body {
  padding: 18px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.steps-slider .step-card__ttl {
  margin: 0 0 10px;
  font-weight: 500;
  text-align: center;
  font-size: 1.6rem;
}
.steps-slider .step-card__txt {
  margin: 0;
  font-size: 12px;
  flex: 1;
}
.steps-slider .steps-progress {
  margin: 24px auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 18px;
}
.steps-slider .steps-progress .steps-progress__dot {
  height: 8px;
  width: 80px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.12);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.steps-slider .steps-progress .steps-progress__fill {
  position: absolute;
  inset: 0;
  width: 0%;
  background: linear-gradient(90deg, #15A9E0 0%, #6DD3FF 100%);
  border-radius: 999px;
  transition: width 0.25s ease;
}
.steps-slider .steps-progress .is-active .steps-progress__fill {
  width: 100%;
}
.steps-slider {
  /* controls */
}
.steps-slider .steps-controls {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding-bottom: 10px;
}
.steps-slider .steps-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(90deg, #15A9E0 0%, #6DD3FF 100%);
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.steps-slider .steps-btn--prev, .steps-slider .steps-btn--next {
  padding-bottom: 0.5em;
}
.steps-slider .steps-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(26, 167, 223, 0.42);
}
.steps-slider .steps-btn:focus-visible {
  outline: 3px solid rgba(26, 167, 223, 0.35);
  outline-offset: 3px;
}
.steps-slider .steps-btn--toggle {
  font-size: 18px;
}
.steps-slider .steps-btn--toggle .steps-btn__icon {
  display: inline-block;
}
.steps-slider {
  /* SP */
}
@media (max-width: 768px) {
  .steps-slider .step-card__media {
    height: 180px;
  }
  .steps-slider .step-card__no {
    font-size: 64px;
  }
  .steps-slider .step-card__ttl {
    font-size: 18px;
  }
  .steps-slider .step-card__txt {
    font-size: 13px;
  }
  .steps-slider .steps-btn {
    width: 50px;
    height: 50px;
  }
}

.slider-swiper.js-slider-reason,
.slider-swiper.js-slider-voice {
  overflow: hidden;
  padding-inline: 16px;
}
.slider-swiper.js-slider-reason .swiper-wrapper,
.slider-swiper.js-slider-voice .swiper-wrapper {
  transition-timing-function: linear !important;
  will-change: transform;
}
.slider-swiper.js-slider-reason .swiper-slide,
.slider-swiper.js-slider-voice .swiper-slide {
  width: auto;
  flex-shrink: 0;
}
.slider-swiper.js-slider-reason .swiper-slide img,
.slider-swiper.js-slider-voice .swiper-slide img {
  display: block;
  height: auto;
  max-width: none;
}

.b-btm-text {
  border-bottom: 1.5px solid #15A9E0;
  padding-bottom: 30px;
}

.container-pd {
  padding-inline: 60px;
}

/* =========================
  Page Top button
========================= */
#page-top {
  position: fixed;
  right: calc(16px + env(safe-area-inset-right));
  bottom: calc(16px + env(safe-area-inset-bottom));
  width: 64px;
  height: 64px;
  z-index: 9999;
  /* ふわっと出す */
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}
#page-top img {
  width: 100%;
  height: auto;
  display: block;
}
#page-top.is-show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#page-top:hover {
  transform: translateY(-2px);
}

.onayami-section {
  transform: scale(0.9);
  transform-origin: center center;
}

.reason-section {
  width: 900px;
  max-width: 100%;
  margin-inline: auto;
}

.voice-section {
  max-width: 100%;
  width: 804px;
  margin-inline: auto;
}

.faq {
  width: 990px;
  max-width: 100%;
}

.img-shadow img {
  filter: drop-shadow(6px 8px 16px rgba(0, 0, 0, 0.1));
}

#page-title {
  padding-left: 5%;
  padding-top: 40px;
  height: 150px;
}

.color-FF6469 {
  color: #FF6469;
}