@charset "utf-8";

:root {
  --color-accent: #2624A3;
  --color-main-text: #464646;
  --color-sub-text: #757575;
  --color-sub-text-2: #313131;
  --color-ink: #101726;
  --color-muted: #5b6376;
  --color-primary: #0b5fff;
  --color-primary-dark: #07399b;
  --color-border: #e0e5ee;
  --shadow-soft: 0 12px 30px rgba(13, 20, 43, 0.08);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: 1140px;
  --font-noto: 'Noto Sans JP', sans-serif;
  --font-montserrat: 'Montserrat', sans-serif;
  --font-ryo: ryo-gothic-plusn, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Hiragino Kaku Gothic Std",
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Yu Gothic",
    "YuGothic",
    "Meiryo",
    sans-serif;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.7;
}


ul {
  list-style: none;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  padding: 120px 0;
}

.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 1340px;
  max-width: calc(100% - 40px);
  margin: 27px auto 0;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 67.76px;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  box-sizing: border-box;
  font-family: var(--font-noto);
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__logo-img {
  height: 28px;
  width: auto;
}

.header__buttons {
  display: flex;
  align-items: center;
  gap: clamp(6px, 0.8vw, 12px);
  flex-shrink: 0;
}

.header__btn {
  display: inline-flex;
  height: 38px;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 6px;
  padding: 0 28px 0 14px;
  border-radius: 50px;
  color: #ffffff !important;
  text-decoration: none !important;
  /* font-size: clamp(11px, 0.95vw, 13px); */
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1;
  box-sizing: border-box;
}

.header__btn--trial {
  background: #1A17D3;
  font-size: 14px;
  min-width: clamp(155px, 14vw, 205px);
}

.header__btn--document {
  background: #FF8800;
  min-width: clamp(130px, 11vw, 160px);
  position: relative;
}
.header__btn--document::before {
  position: absolute;
  content: '';
  height: 20px;
  width: 89px;
  background: url(../img/header-bubble.png) center / contain no-repeat;
  top: -12px;
  left: 9px;
}
.header__btn > svg {
  flex-shrink: 0;
}

.header__btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 8.25px;
  height: 8.25px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}

.header__btn-arrow svg {
  width: 8.25px;
  height: 8.25px;
}

/* 矢印はホバー・タップで動かさず常に固定（ズレ防止） */

@media (max-width: 1200px) {
  .container {
    padding-block: 50px;
  }
}


/* FV */
.fv {
  position: relative;
  width: 100%;
  background-image: url('../img/bg_fv001.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 50px;
  padding-bottom: 70px;
  box-sizing: border-box;
}
.fv002 {
  background-image: url('../img/bg_fv002.jpg');
  padding-bottom: 0;
}
.fv__inner {
  max-width: 1142px;
  margin: 0 auto;
  position: relative;
  line-height: 0;
}

.fv__image {
  width: calc(100% - 40px);
  display: block;
  margin-inline: auto;
}
.fv002 .fv__image {
  margin-bottom: 6px;
}

.fv__btn {
  position: absolute;
  bottom: 14%;
  left: 2%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FF8800;
  color: #ffffff !important;
  border-radius: 50px;
  padding: 22px 17px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-decoration: none !important;
  box-shadow: 0 5px 0 #944F00;
  white-space: nowrap;
  min-width: 300px;
  width: min(24vw, 345px);
  min-height: 54px;
}

.fv__btn::before,
.fv__btn::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  font-weight: 400;
}

@media (hover: hover) and (pointer: fine) {
  .fv__btn:hover {
    box-shadow: 0 2px 0 #CC5500;
  }
}

.fv__btn-arrow {
  font-size: 20px;
  font-weight: 400;
}

.fv__btn--trial {
  display: none;
}

.fv__btn--cases {
  background: transparent;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  width: min(28vw, 400px);
  min-width: unset;
  min-height: unset;
  height: auto;
  white-space: normal;
  bottom: 8%;
}

.fv__btn--cases::before,
.fv__btn--cases::after {
  content: none;
}

.fv__btn--cases img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}

@media (hover: hover) and (pointer: fine) {
  .fv__btn--cases:hover {
    box-shadow: none;
    opacity: 0.9;
  }
}

@media (max-width: 1200px) {
  .fv {
    padding-bottom: 40px;
  }
  .fv__image {
    width: calc(100% - 80px);
  }
}


@media (max-width: 768px) {
  .fv {
    padding-top: 0;
    padding-bottom: 0;
  }
  .header {
    display: none;
  }
}

  .fv__btn--cases {
    display: none;
  }
@media (max-width: 768px) {
  .fv__image {
    width: 100%;
  }

  .fv__btns {
    position: static;
    transform: none;
    display: contents;
  }

  .fv__btn {
    position: relative;
    width: 88.46%;
    max-width: 345px;
    height: 54px;
    min-width: unset;
    min-height: unset;
    font-size: 20px;
    padding: 0;
    box-sizing: border-box;
  }

  .fv__btn--trial {
    display: none;
  }

  .fv__btn--cases {
    display: block;
    position: fixed;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 92%;
    max-width: 400px;
    height: auto;
    margin: 0;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.18));
  }

  body {
    padding-bottom: 90px;
  }
}

/* ===== support companies ===== */
.support-companies {
  max-width: 750px;
  background: #fff;
  padding: 57px 20px;
  box-sizing: border-box;
  margin-inline: auto;
}
.support-companies__wraper {
  border-radius: 23px;
  border: 1px solid #D4D4D4;
}
.support-companies__title {
  background-color: #2624A3;
  padding-block: 22px;
  color: #fff;  
  font-size: 28px;
  font-weight: bold;
  border-top-left-radius: 23px;
  border-top-right-radius: 23px;
  text-align: center;
}


.support-companies__picture {
  display: block;
  padding: 2% 3%;
}

.support-companies__image {
  display: block;
  width: min(100%, 750px);
  height: auto;
  margin-inline: auto;
}

@media (max-width: 768px) {
  .support-companies {
    padding: 16px 0;
    max-width: 600px;
  }

  .support-companies__image {
    width: min(100%, 500px);
  }
  .support-companies__title {
    font-size: 24px;
  }
}

/* ===== Common ===== */
.section__title {
  display: flex;
  align-items: center;
  gap: 16px;
}

.section__title-text {
  font-family: 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 900;
  color: #D9D9D9;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.section__title-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, #2624A3 0 20px, #C8C8C8 20px 100%);
}

.section__title-line--right {
  background: linear-gradient(to left, #2624A3 0 20px, #C8C8C8 20px 100%);
}

.section__title--pc {
  margin: 0 auto 60px;
}

.section__title--pc .section__title-text {
  font-size: 64px;
}

.section__title--sp {
  display: none;
}

.section__title--sp .section__title-text {
  font-size: 56px;
}
.color-main-text {
  color: var(--color-main-text);
}
.color-accent {
  color: var(--color-accent);
}
.bold {
  font-weight: bold;
}
@media (max-width: 768px) {
  .section__title--pc {
    display: none;
  }

  .section__title--sp {
    display: flex;
    width: calc(100% + 40px);
    max-width: 100%;
    box-sizing: border-box;
    margin-bottom: 24px;
    overflow: hidden;
  }
  .reason .section__title--sp {
    margin-bottom: -10px;
  }
  .section__title--sp .section__title-line {
    flex: 1 1 0;
    min-width: 24px;
  }

  .section__title-text {
    color: rgba(51, 51, 51, 0.03);
  }

  .about .section__title--sp .section__title-text,
  .issue .section__title--sp .section__title-text {
    font-size: 73px;
  }

  .reason .section__title--sp .section__title-text,
  .flow .section__title--sp .section__title-text {
    font-size: 60px;
  }

  .faq .section__title--sp .section__title-text {
    font-size: 66px;
  }
  .use_cases .section__title-text {
    font-size: 45px;
  }
}

.section__subTitle {
  font-family: 'Hiragino Kaku Gothic Std', 'Noto Sans JP', sans-serif;
  font-size: 33px;
  font-weight: 800;
  line-height: 1;
  color: var(--color-accent);
  margin: 0 0 24px;
  text-align: center;
}

.section__subTitle--desc, 
.normalText {
  font-family: var(--font-ryo);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  color: #464646;
  margin: 0;
  text-align: center;
}


.sp-only {
  display: none;
}
.pc-only {
  display: block;
}

@media screen and (max-width:768px) {
  .section__subTitle {
    font-size: clamp(1rem, 7.1vw, 1.8rem);
    text-align: left;
  }
  .section__subTitle--desc {
    font-size: 17px;
    text-align: left;
    font-weight: 800;
  }
  .normalText {
    font-size: 15px;
    font-weight: 400;
  }
  
}

.about {
  background: #ffffff;
  position: relative;
  z-index: 0;
  padding-block: 52px 120px;
}
.about__text {
  width: calc(100% - 40px);
  margin-inline: auto;
}

.figure-wrap {
  width: 100%;
  max-width: 100%;
  text-align: center;
  padding: 0 ;
  margin: 60px auto 0px;
  box-sizing: border-box;
}

.figure-wrap__img {
  display: inline-block;
  max-width: 700px;
  height: auto;
}

@media screen and (max-width:768px) {
  .figure-wrap__img {
    max-width: 100%;
  }
}

@media (max-width: 1140px) {
  .figure-wrap {
    padding-left: 20px;
    padding-right: 20px;
    display: block;
    margin-top: 16px;
    margin-bottom: 50px;
    text-align: center;
  }
}

.about02 {
  background: #F0F1F5;
  position: relative;
  z-index: 0;
  padding-block: 120px;
}
.about02 .section__title-text {
  color: rgba(255, 255, 255, 0.75);
}
.issue {
  background-color: #F0F1F5; 
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

.issue__section__subTitle {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 60px;
  line-height: 1.4;
}
.section__title-text--issue {
  color: rgba(0, 72, 255, 0.32);
}
.issue__text {
  text-align: center;
}
.issue__triangle {
  margin: 60px auto;
}
.issue__text--s {
  font-family:  var(--font-ryo);
  font-size: 22px;
  line-height: 1.4;
  color: var(--color-main-text);
  font-weight: 700;
  margin: 60px auto 25px;
}
.issue__text--l {
  background-color: var(--color-accent);
  color: #fff;
  width: fit-content;
  padding: 15px 11px;
  font-size: 33px;
  line-height: 1.2;
  font-weight: 800;
  margin: 0 auto 11px;
  text-align: center;
}
.issue__text--m {
  margin-block: 25px;
}
.issue02 {
  max-width: 934px;
  margin: 60px auto 25px;
}
.issue02__note {
  font-size: 9px;
  color: #707070;
  text-align: center;
  letter-spacing: 0.03em;
}
.about__text,
.about02__text {
  width: calc(100% - 40px);
  margin-inline: auto;
}
.about02__content {
  width: min(calc(100% - 40px), 1140px);
  margin: 64px auto 0;
}
.about02-location {
  max-width: 936px;
  margin-inline: auto;
}
.about02-location__list {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px;
}
.about02-location__photo-wrap {
  position: relative;
}
.about02-location__item {
  visibility: visible;
}
.about02-location__photo {
  width: 100%;
  aspect-ratio: 432 / 287;
  object-fit: cover;
}
.about02-location__label {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 164px;
  min-height: 42px;
  padding: 5px 20px;
  border-radius: 6px;
  background: #132660;
  color: #fff;
  font-family: var(--font-ryo);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}
.about02-location__label img {
  width: 24px;
  height: 25px;
  object-fit: contain;
}
.about02-location__address {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-top: 44px;
  color: var(--color-main-text);
  font-family: var(--font-ryo);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}
.about02-location__address img {
  width: 21px;
  flex: 0 0 21px;
  margin-top: 2px;
}
.about02-feature {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}
.about02-feature__card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 12px;
  row-gap: 12px;
  min-height: 183px;
  padding: clamp(20px, 1.6vw, 28px) clamp(16px, 1.3vw, 20px);
  border-radius: 11px;
  background: #fff;
  text-align: center;
}
.about02-feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.about02-feature__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about02-feature__title {
  color: var(--color-accent);
  font-family: "ryo-gothic-plusn", var(--font-ryo);
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 800;
  line-height: 1.8;
  letter-spacing: 0;
  min-height: 0;
  padding-left: 0;
  text-align: left;
  flex: 1 1 0;
  min-width: 0;
  white-space: nowrap;
}
.about02-feature__title span {
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1;
  letter-spacing: 0;
}
.about02-feature__card:nth-child(3) .about02-feature__title {
  font-size: clamp(18px, 1.5vw, 23px);
}
.about02-feature__card:nth-child(4) .about02-feature__title {
  font-size: clamp(16px, 1.3vw, 20px);
}
.about02-feature__text {
  width: 100%;
  margin-top: 0;
  color: var(--color-main-text);
  font-family: "ryo-gothic-plusn", var(--font-ryo);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 950px) {
  .about02 {
      padding-block: 50px;
  }
  .about02 .section__subTitle--desc {
    font-weight: 500;
  }
  .about02__text {
    width: calc(100% - 40px);
    margin-inline: auto;
    margin-top: -30px;
    padding-top: 0;
  }

  .about02-feature {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 18px;
    max-width: 620px;
    margin: 54px auto 0;
  }
  .about02-feature__card {
    position: relative;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 12px;
    min-height: 168px;
    padding: 44px 18px 20px;
  }
  .about02-feature__icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .about02-feature__title {
    flex: 0 1 auto;
    min-width: auto;
    font-size: clamp(20px, 2.7vw, 24px);
    text-align: center;
    white-space: normal;
  }
  .about02-feature__card:nth-child(4) .about02-feature__title {
    font-size: clamp(18px, 2.4vw, 21px);
  }
  .about02-feature__title span {
    font-size: clamp(34px, 4.5vw, 40px);
  }
}
@media screen and (max-width: 934px) {
  .issue02 {
    max-width: 100%;
  }
  .issue__text--s {
    text-align: left;
    margin-bottom: 8px;
  }
  .issue__triangle {
    margin-block: 27px 37px;
  }
}
@media (max-width: 768px) {
  .sp-only {
    display: block;
  }
  .pc-only {
    display: none;
  }

  .about {
      padding-block: 50px;
  }
  .about02 {
    padding-block: 30px 54px;
  }
  .about__text,
  .about02__text {
    margin-top: -30px;
    padding-top: 0;
  }
  .about02__content {
    width: calc(100% - 40px);
    margin-top: 52px;
  }
  .about02-location__list {
    display: flex !important;
    gap: 0;
  }
  .about02-location__photo {
    aspect-ratio: 350 / 233;
  }
  .about02-location__label {
    bottom: -17px;
    min-width: 118px;
    min-height: 34px;
    gap: 6px;
    padding: 4px 12px 5px;
    font-size: 20px;
  }
  .about02-location__label img {
    width: 18px;
    height: 18px;
  }
  .about02-location__address {
    gap: 10px;
    margin-top: 31px;
    font-size: 15px;
    line-height: 1.55;
  }
  .about02-location__address img {
    width: 19px;
    flex-basis: 19px;
  }
  .about02-location .splide__pagination {
    position: static;
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 18px;
  }
  .about02-location .splide__pagination__page {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50%;
    background: #D9D9D9;
    opacity: 1;
  }
  .about02-location .splide__pagination__page.is-active {
    transform: none;
    background: #132660;
  }
  .about02-feature__card {
    min-height: 155px;
    gap: 9px;
    padding: 42px 12px 15px;
    border-radius: 7px;
  }
  /* .about02-feature__icon {
    width: 55px;
    height: 55px;
  }
  .about02-feature__icon img {
    width: 100%;
    height: 100%;
  } */
  .about02-feature__title {
    font-size: clamp(14px, 4.5vw, 19px);
    text-align: center;
  }
  .about02-feature__card:nth-child(3) .about02-feature__title {
    font-size: clamp(19px, 5.5vw, 23px);
  }
  .about02-feature__card:nth-child(4) .about02-feature__title {
    font-size: clamp(15px, 4.5vw, 19px);
  }
  .about02-feature__title span {
    font-size: clamp(26px, 7.5vw, 31px);
  }
  .about02-feature__text {
    margin-top: 0;
    font-size: clamp(12px, 3.5vw, 15px);
    line-height: 1.45;
  }

  .issue .section__title-text {
    color: rgba(255, 255, 255, 0.7);
  }

  .issue__section__subTitle {
    margin-top: -40px;
    gap: 4px;
    margin-bottom: 23px;
  }

  .issue__text--m {
    margin-block: 14px 12px;
    text-align: left;
  }
  .issue__text--l {
    margin-left: 0;
    font-size: clamp(18px, 6.4vw, 25px);
    padding: 1.5px 7px;
    margin-bottom: 6px;
  }

  .issue01 {
    max-width: min(100%, 350px);
    margin-inline: auto;
  }
  .issue02 {
    margin-top: 0;
    max-width: min(100%, 350px);
    margin-inline: auto;
  }
  .issue02__note {
    text-align: left;
  }
}

.use_cases {
  background-color: #FAFAFA;
}
.use_cases__subTitle {
  font-size: 33px;
  color: var(--color-main-text);
  font-weight: 800;
  text-align: center;
  margin-bottom: 25px;
  line-height: 1;
}
.use_cases__lead {
  text-align: center;
}
.use_cases__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 356.9px));
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34.65px);
  max-width: 1140px;
  margin: 60px auto 0;
}

.usecase-card {
  position: relative;
  width: 100%;
  padding-top: clamp(24px, 2.57vw, 37px);
  aspect-ratio: 356.9 / 400.35;
  border: 1px solid #6367C1;
  border-radius: 7px;
  background: #ffffff;
  padding: clamp(24px, 2.57vw, 37px) clamp(10px, 1.25vw, 18px) clamp(13px, 1.39vw, 20px);
  display: flex;
  flex-direction: column;
}

.usecase-card__title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: fit-content;
  height: 26px;
  max-width: calc(100% + 4px);
  padding-inline-start: 13px;
  padding-inline-end: 17px;
  border-radius: 999px;
  background-color: #5452CB;
  background-image: url('../img/bg_title_usecase.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #ffffff;
  font-family:  var(--font-ryo);
  font-size: clamp(13px, 1.04vw, 15px);
  font-weight: 700;
  line-height: 26px;
  text-align: center;
  white-space: nowrap;
}

/* .usecase-card__media {
  height: 63%;
  flex: 0 0 63%;
  overflow: hidden;
  background: #F2F5FA;
} */

.usecase-card__media img {
  width: 100%;
  max-width: none;
}

.usecase-card__text {
  margin-top: 9px;
  color: #757575;
  font-size: clamp(11px, 1.11vw, 16px);
  font-weight: 600;
  line-height: 1.6;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .use_cases__list {
    grid-template-columns: 1fr;
    gap: 35px;
    margin: 28px auto 0;
    max-width: 350px;
  }
  .use_cases__subTitle {
    text-align: left;
    font-size: clamp(14px, 7vw, 28px);
    margin-top: -30px;
    margin-bottom: 8px;
  }
  .use_cases .nomalText {
    text-align: left;
  }
  .usecase-card {
    padding: 36px 14px 22px;
    aspect-ratio: auto;
  }
  .usecase-card__title {
    padding-inline: 5%;
  }
  .usecase-card__text {
    font-size: 15px;
  }
}

.reason {
  background: #ffffff;
  position: relative;
  z-index: 0;
}


.reason-bold {
  font-weight: bold;
}


.reason__heading {
  font-family: 'Hiragino Kaku Gothic Std', 'Noto Sans JP', sans-serif;
  font-size: 33px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-main-text);
  margin: 0 0 24px;
  text-align: center;
}

.reason__body {
  font-family: "ryo-gothic-plusn", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-main-text);
  margin: 0 0 60px;
  text-align: center;
}

.reason__accent {
  color: var(--color-accent);
  font-weight: 500;
}

.sp-only {
  display: none;
}

@media (max-width: 768px) {
  .sp-only {
    display: block;
  }

  .reason {
    padding: 50px 0 0;
  }

  .reason__inner {
    padding: 0;
  }


  .reason__heading {
    font-size: 28px;
    text-align: left;
  }


  .reason__body {
    font-size: 15px;
    margin: 0 0 23px;
    text-align: left;
  }
}

.reason__list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 1140px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.reason__item-head {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.reason__point-img {
  display: block;
  width: 145px;
  height: auto;
  flex-shrink: 0;
}

.reason__item-title {
  font-family: 'Hiragino Kaku Gothic Std', 'Noto Sans JP', sans-serif;
  font-size: 33px;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.4;
  margin: 0;
}

.reason__item-body {
  font-family: "ryo-gothic-plusn", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.9;
  color: var(--color-main-text);
  margin: 0 0 25px;
}

.reason__item-figure {
  display: block;
  text-align: center;
  max-width: 636px;
  margin-inline: auto;
}
.reason__item-figure01 {
  max-width: 698px;
}
.reason__item-figure img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .reason__item-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 16px;
  }

  .reason__point-img {
    width: 100px;
  }

  .reason__item-title {
    font-size: 22px;
    margin-top: -20px;
  }

  .reason__item-body {
    font-size: 14px;
    line-height: 1.8;
    margin: 0 0 24px;
  }
  .reason__item-figure {
    max-width: 350px;
    margin-inline: auto;
  }
}


.more-btn__wrap {
  text-align: center;
}

.more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-block: 100px 0px;
  position: relative;
  width: 464px;
  height: 73px;
  background: #828282;
  border-radius: 50px;
  padding: 0 22px;
  box-sizing: border-box;
  color: #ffffff !important;
  text-decoration: none !important;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 27px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 5px 0 #2D2D2D;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  .more-btn:hover {
    box-shadow: 0 2px 0 #333333;
  }
}

.more-btn::after {
  content: '';
  position: absolute;
  right: 23px;
  top: 50%;
  transform: translateY(calc(-50% - 3px)) rotate(135deg);
  width: 13px;
  height: 13px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}

.more-btn--open::after {
  transform: translateY(calc(-50% + 3px)) rotate(-45deg);
}

@media (max-width: 768px) {
  .more-btn {
    max-width: 345px;
    width: calc(100% - 40px);
    height: 54px;
    font-size: 20px;
    padding: 0 16px;
    margin-top: 50px;
  }
}

.reason04__btns {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
}

.reason04__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 464px;
  height: 73px;
  border-radius: 50px;
  padding: 0 22px;
  box-sizing: border-box;
  text-decoration: none !important;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 27px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.reason04__btn--orange {
  background: #FF8800;
  color: #ffffff !important;
  box-shadow: 0 5px 0 #CC5500;
}

@media (hover: hover) and (pointer: fine) {
  .reason04__btn--orange:hover {
    box-shadow: 0 2px 0 #CC5500;
  }
}

.reason04__btn--white {
  background: #ffffff;
  color: #2624A3 !important;
  box-shadow: 0 5px 0 #B8B8B8;
}

@media (hover: hover) and (pointer: fine) {
  .reason04__btn--white:hover {
    box-shadow: 0 2px 0 #B8B8B8;
  }
}

.reason04__btn--orange::after,
.reason04__btn--white::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.reason04__btn--orange::after {
  border-color: #ffffff;
}

.reason04__btn--white::after {
  border-color: #2624A3;
}

@media (max-width: 1000px) {
  .reason04 {
    margin-block: 61px 0px;
  }

  .reason04__btns {
    width: 100%;
    margin-inline: auto;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }

  .reason04__btn {
    max-width: 345px;
    width: 100%;
    height: 54px;
    font-size: clamp(12px, 4.1vw, 20px);
  }
}

.reasons05__more--title {
  margin: 120px auto 60px;
  font-size: 33px;
  color: var(--color-main-text);
  font-weight: 800;
}

.reasons05__more {
  display: none;
}

.reasons05__features--list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  row-gap: 60px;
  column-gap: 4.2%;
  list-style: none;
  padding: 0;
  margin: 120px 0 0 0;
}

.reasons05__features--list > li {
  grid-column: span 2;
  width: 100%;
  max-width: 346px;
}

.reasons05__features--list > li:nth-child(1) { justify-self: start; }
.reasons05__features--list > li:nth-child(2) { justify-self: center; }
.reasons05__features--list > li:nth-child(3) { justify-self: end; }

.reasons05__features--list > li:nth-child(4),
.reasons05__features--list > li:nth-child(5) {
  grid-column: span 3;
  max-width: 458px;
  min-height:434px
}
.reasons05__features--list > li:nth-child(4) { justify-self: center; }
.reasons05__features--list > li:nth-child(5) { justify-self: center; }

.reason05-card {
  overflow: hidden;
  border: 0.8px solid #2624A3;
  border-radius: 7px;
  background: #F4F7FC;
}

.reason05-card__title {
  font-family:  var(--font-ryo);
  background: #2624A3;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  padding-block: 9.5px;
  text-align: center;
}

.reason05-card__visual {
  background: #F4F7FC;
}

  .reason05-card__visual01, 
  .reason05-card__visual02, 
  .reason05-card__visual03, 
  .reason05-card__visual04, 
  .reason05-card__visual05 {
  width: auto;
  max-width: none;
  margin: 17px auto 0;
  height: 107px;
}

.reason05-card--wide .reason05-card__visual {
  min-height: 113px;
}
.reason05-card__text {
  padding: 13px 15px;
  color: #727272;
  font-family:  var(--font-ryo);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  text-align: left;
}

.reasons05__support {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 549px));
  justify-content: space-between;
  column-gap: 42px;
  row-gap: 42px;
  padding: 0;
  list-style: none;
}
.reasons05__support li {
  width: 100%;
}

.reason05-support {
  display: block;
  min-height: 210px;
  padding: 18px 22px;
  border: 0.8px solid #2624A3;
  border-radius: 8px;
  background: #ffffff;
  text-align: left;
}

.reason05-support__head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 17px;
}

.reason05-support__icon {
  height: 50px;
  aspect-ratio: 1 / 1;
  flex: 0 0 50px;
  overflow: hidden;
}

.reason05-support__icon img {
  max-width: 100%;
}

.reason05-support__title {
  margin: 0;
  color: #2624A3;
  font-size: 24px;
  font-family:  var(--font-ryo);
  font-weight: 900;
  line-height: 1.4;
}

.reason05-support__text {
  margin: 0;
  color: #757575;
  font-size: 16px;
  font-family:  var(--font-ryo);
  font-weight: 500;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .reasons05__support {
    grid-template-columns: 1fr;
    row-gap: 18px;
  }
  .reasons05__more--title {
    font-size: 22px;
    margin-block: 50px 26px;
  }
  .reasons05__features--list {
    grid-template-columns: 1fr;
    margin-top: 50px;
    row-gap: 24px;
  }
  .reasons05__features--list > li:nth-child(1) { order: 1; }
  .reasons05__features--list > li:nth-child(4) { order: 2; }
  .reasons05__features--list > li:nth-child(2) { order: 3; }
  .reasons05__features--list > li:nth-child(3) { order: 4; }
  .reasons05__features--list > li:nth-child(5) { order: 5; }
  .reasons05__features--list > li,
  .reasons05__features--list > li:nth-child(4),
  .reasons05__features--list > li:nth-child(5) {
    grid-column: span 1;
    max-width: 100%;
  }
  .reason05-card__title {
    font-size: 18px;
    padding: 13px 16px;
  }
  /* .reason05-card__visual,
  .reason05-card--wide .reason05-card__visual {
    height: 118px;
  } */
  /* .reason05-card__visual img,
  .reason05-card--wide .reason05-card__visual img {
    transform: translateY(-48px);
  } */
  .reason05-card__text {
    padding: 18px 20px 22px;
    font-size: 15px;
    line-height: 1.8;
  }
  .reason05-support {
    min-height: 0;
    padding: 16px;
  }
  .reason05-support__head {
    gap: 14px;
    margin-bottom: 6px;
  }
  .reason05-support__icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }
  .reason05-support__title {
    font-size: 19px;
  }
  .reason05-support__text {
    font-size: 14px;
  }
  .reason05-card__visual01 {
    height: 80px;
  }
  .reason05-card__visual02 {
    height: 138px;
  }
  .reason05-card__visual03 {
    height: 116px;
  }
  .reason05-card__visual04 {
    height: 181px;
  }
  .reason05-card__visual05 {
    height: 140px;
  }
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: min(2.4vw, 35px);
  max-width: 1142px;
  margin-inline: auto;
}

.features__card {
  aspect-ratio: auto;
  min-height: 199px;
  padding: 16px 12px 16px 10px;
  background: #F1F5F9;
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  column-gap: 2px;
  align-content: start;
  text-align: left;
  border-radius: 6.5px;
}

.features__icon {
  width: 18px;
  height: 18px;
  margin: 5px;
  grid-column: 1;
  grid-row: 1;
}

.features__card-title {
  color: #2624A3;
  font-size: 17px;
  font-family:  var(--font-ryo);
  font-weight: 700;
  line-height: 1.8;
  grid-column: 2;
  grid-row: 1;
  margin-left: 8px;
}

.features__card-text {
  color: #8B8B8B;
  font-family:  var(--font-ryo);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  grid-column: 2;
  margin-left: 5px;
}

.middleCta {
  background: url(../img/middle_cta_bg.webp) center / cover;
  background-repeat: no-repeat;
  border-radius: 24.48px;
  max-width: 1141px;
  width: 100%;
  margin-inline: auto;
  margin-bottom: 120px;
}
.middleCta__container {
  padding-block: 49px 55px;
}
.middleCta__title--wrapper {
  background-color: #fff;
  padding: 6px min(2vw, 16px);
  display: flex;
  width: fit-content;
  margin-bottom: 19px;
}
.middleCta__top {
  display: flex;
  max-width: 895px;
  margin-inline: auto;
  justify-content: center;
}
.middleCta__top--img {
  position: relative;
}
.middleCta__top--img img {
  position: relative;
  z-index: 1;
  height: 159.5px;
  width: auto;
  object-fit: contain;
}

.middleCta__top--img::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: -14px;
  right: -70px;
  background-image: url(../img/middlecta_wave.svg);
  width: 159.5px;
  height: 31.28px;
}
.middleCta__text {
  padding-top: 15px;
}
.middleCta__title {
background: linear-gradient(94deg, #1F35AA 0%, #354EDC 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
  font-size: clamp(32px, 3vw, 49px);
  line-height: 1;
  letter-spacing: 0; 
  width: fit-content;
}
.middleCta__lead{
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-ryo);
  font-size: 17px;
  line-height: 1.8;
  text-align: center;
  font-weight: 500;
}
.middleCta__copy {
  color: #2C44C8;
  background-color: #fff;
  padding: 2px 8px;
  font-size: 20px;
  line-height: 1.3;
  text-align: center;
  font-weight: 700;
  display: flex;
  width: fit-content;
  margin: 50px auto 26px;
  font-family: var(--font-ryo);
}

.middleCta__content {
  max-width: 841px;
  width: calc(100% - 40px);
  margin-inline: auto;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .middleCta {
    background: url(../img/middle_cta_sp_bg.webp) center / cover;
    background-repeat: no-repeat;
    border-radius: 30px;
    max-width: 100%;
    padding-block: 31px;
    margin-bottom: 0;
  }
  .middleCta__top {
    width: 82%;
  }
  .middleCta__title--wrapper {
    background-color: transparent;
    padding: 0;
    display: block;
  }
  .middleCta__title {
    display: block;
    width: auto;
    background: none;
    line-height: 1.35;
    font-size: clamp(18px, 5.5vw, 24px);
  }
  .middleCta__title span {
    display: inline-block;
    padding: 4px 8px;
    background:
      linear-gradient(94deg, #1F35AA 0%, #354EDC 100%) text,
      linear-gradient(#fff, #fff) border-box;
    -webkit-background-clip: text, border-box;
    background-clip: text, border-box;
    color: transparent;
  }
  .middleCta__title span:first-of-type {
    margin-bottom: 3px;
  }
  .middleCta__copy {
    display: none;
  }
  .middleCta__content {
    max-width: 350px;
    width: calc(100% - 40px);
  }
  .middleCta__top--img {
    flex-shrink: 0;
  }
  .middleCta__top--img img {
    height: 121px;
    width: auto;
    aspect-ratio: 108.17 / 121;
  }

  .middleCta__top--img::before {
    content: '';
    position: absolute;
    top: -14px;
    right: -35px;
    background-image: url(../img/middlecta_wave.svg);
    width: 122px;
    height: 23px;
  }
}

.features {
  background-color: #FAFAFA;
}
.features__lead {
  font-family:  var(--font-ryo);
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 768px) {
.features__lead {
  margin-bottom: 26px;
  text-align: left;
}
  .features__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
  }
  .features__card {
    min-height: 0;
    padding: 8px 20px 8px 16px;
    border-radius: 8px;
    grid-template-columns: 34px 1fr;
    column-gap: 10px;
    align-items: center;
    border-radius: 10px;
  }
  .features__icon {
    width: 34px;
    height: 34px;
    margin: 0;
    grid-row: 1 / 3;
    align-self: center;
  }
  .features__card-title {
    margin: 0 0 2px;
    font-size: 15px;
    line-height: 1.45;
  }
  .features__card-text {
    font-size: 13px;
    line-height: 1.65;
    margin-left: 0;
  }
}
/* ===============================
  PLAN セクション
   =============================== */

.plan__pc {
  display: block;
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
  height: auto;
}
.plan {
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
  color: #464646;
}

.plan__sp {
  display: none;
}

.plan__section-label {
  max-width: 368px;
  width: 100%;
  margin-right: 0;
  padding-left: 20px;
}


.plan__lead {
  line-height: 1.8;
  margin-bottom: 40px;
}

.plan__cards {
  display: grid;
  grid-template-columns: 340px 372px;
  justify-content: center;
  align-items: start;
  gap: 48px;
  padding-top: 0;
}

.plan-card {
  --card-width: 340px;
  --card-height: 522px;
  --card-ratio: 340 / 522;
  --body-top: 62px;
  --body-left: 0px;
  --body-right: 0px;
  --body-bottom: 0px;
  position: relative;
  width: min(100%, var(--card-width));
  aspect-ratio: var(--card-ratio);
  box-sizing: border-box;
  color: #ffffff;
  text-align: center;
  background: transparent;
}

.plan-card__body {
  position: absolute;
  top: var(--body-top);
  left: var(--body-left);
  right: var(--body-right);
  bottom: var(--body-bottom);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 19px 16px 14px;
  border-radius: 10px;
  font-family:  var(--font-ryo);
}

.plan-card--scenario .plan-card__body {
  background: #417293;
}

.plan-card--agent {
  --card-width: 372px;
  --card-height: 554px;
  --card-ratio: 372 / 554;
  --body-top: 62px;
  --body-left: 16px;
  --body-right: 16px;
  --body-bottom: 32px;
  border: none;
  box-shadow: none;
}

.plan-card--agent::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid #E60012;
  pointer-events: none;
}

.plan-card--agent .plan-card__body {
  background: #2624A3;
}

.plan-card__label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  min-width: 183px;
  height: 36px;
  padding: 0 18px;
  border-radius: 8.52px;
  color: #ffffff;
  font-family:  var(--font-ryo);
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.plan-card--scenario .plan-card__label {
  background: #417293;
}

.plan-card--agent .plan-card__label {
  top: 0;
  background: #2624A3;
}

.plan-card__label::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -9px;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 9px solid #417293;
}

.plan-card--agent .plan-card__label::after {
  border-top-color: #2624A3;
}

.plan-card__badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 71px;
  height: 71px;
  overflow: hidden;
  color: #ffffff;
  font-family: var(--font-montserrat);
  font-size: 0;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  z-index: 1;
}

.plan-card__badge::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 102px;
  height: 28px;
  background: #E60012;
  transform: translate(-30px, 13px) rotate(-45deg);
}

.plan-card__badge::after {
  content: 'NEW';
  position: absolute;
  top: 13px;
  left: -30px;
  width: 102px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-45deg);
  color: #ffffff;
  font-size: 17px;
  font-weight: 500;
}

.plan-card--agent .plan-card__badge {
  top: -16px;
}

.plan-card__icon {
  width: 31px;
  height: 31px;
  margin-bottom: 5px;
  padding: 4px;
  border-radius: 3px;
  background: #ffffff;
  box-sizing: border-box;
}

.plan-card__title {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.plan-card__title span {
  font-size: 24px;
}

.plan-card__lead {
  width: 100%;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  text-align: left;
}

.plan-card__list {
  width: 100%;
  min-height: 258px;
  margin-top: 14px;
  padding: 15px 26px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  text-align: left;
  box-sizing: border-box;
}

.plan-card__list li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  align-items: center;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.plan-card__list li + li {
  margin-top: 5px;
}

.plan-card__list li::before {
  content: '';
  width: 14px;
  height: 9px;
  margin-top: 6px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}

.plan__tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding-bottom: 13px;
}

.plan__tab {
  position: relative;
  width: 159px;
  height: 43px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 700;
  background: #D9D9D9;
  color: #727272;
}

.plan__tab::after {
  content: '';
  position: absolute;
  bottom: -13px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 13px solid transparent;
}

.plan__tab--agent.plan__tab--active {
  background: #2624A3;
  color: #fff;
}

.plan__tab--agent.plan__tab--active::after {
  border-top-color: #2624A3;
}

.plan__tab--scenario.plan__tab--active {
  background: #417293;
  color: #fff;
}

.plan__tab--scenario.plan__tab--active::after {
  border-top-color: #417293;
}

.plan__contents {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.plan__panel {
  display: none;
}

.plan__panel--active {
  display: block;
}
.plans__note {
  max-width: 728px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin: 25px auto 0;
}

@media (max-width: 768px) {
  .plan__pc {
    display: none;
  }

  .plan__sp {
    display: block;
  }

  .plan__contents {
    margin-top: 20px;
  }

  .plan__panel {
    width: 100%;
  }

  .plan-card {
    --card-width: 340px;
    width: min(var(--card-width), calc(100vw - 30px));
    aspect-ratio: auto;
    margin-inline: auto;
  }

  .plan-card__label {
    display: none;
  }

  .plan-card__body {
    position: relative;
    top: 0;
    left: auto;
    right: auto;
    bottom: auto;
    height: 100%;
    min-height: 462px;
    margin: 16px;
    padding: 19px 16px 14px;
  }

  .plan-card--agent .plan-card__body {
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    height: 100%;
    min-height: 462px;
    margin: 16px;
  }

  .plan-card__title span {
    font-size: 23px;
  }

  .plan-card__lead {
    font-size: 14px;
  }

  .plan-card__list {
    min-height: 258px;
    padding: 15px 24px;
  }

  .plan-card__list li {
    font-size: 15px;
  }

  .plan__lead {
    text-align: left;
    margin-bottom: 27px;
  }

  .plans__note {
    margin-top: 14px;
    max-width: 350px;
  }

  .plan__note img {
    width: 100%;
    height: auto;
  }

  .plan__panel--agent img {
    max-width: 364px;
  }
  .plan-card--agent::before {
    bottom: -16px;
  }
}

.plan-case__image {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  height: auto;
}
.case {
  background: #ffffff;
}
.case__content {
  max-width: 1140px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 88px;
  margin-inline: auto;
}
.case__lead {
  text-align: center;
  margin-bottom: 57px;
}
.case__subTitle {
  margin-block: 69px 60px;
}

.case__content::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  border-left: 2px dashed var(--color-accent);
  transform: translateX(-50%);
}

.case-card {
  position: relative;
  min-width: 0;
}

.case-card__header {
  position: relative;
  min-height: 82px;
  margin-bottom: 20px;
}

.case-card__eyebrow {
  position: relative;
  z-index: 1;
  color: var(--color-accent);
  font-family: var(--font-montserrat);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
}

.case-card__title {
  position: relative;
  z-index: 1;
  margin-top: 2px;
  color: var(--color-main-text);
  font-family: var(--font-noto);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0;
}

.case-card__number {
  position: absolute;
  z-index: 0;
  top: -13px;
  left: 104px;
  width: 65px;
  max-width: none;
  pointer-events: none;
}

.case-card:nth-child(2) .case-card__number {
  top: -8px;
  left: 118px;
  width: 63px;
}

.case-card__steps {
  display: flex;
  flex-direction: column;
}

.case-step {
  position: relative;
  display: flex;
  align-items: center;
  /* min-height: 138px; */
  border: 1px solid #CECECE;
  border-radius: 10px;
  background: #F4F4F4;
  overflow: visible;
}

.case-step--before {
  padding: 10px 9px 24px clamp(86px, 9vw, 103px);
}
.case-step--before01 {
  height: 138px;
}
.case-step--before02 {
  padding-bottom: 9px;
  height: 138px;
}
.case-step--after {
  gap: 12px;
  border-color: #CBCAF2;
  background: #ffffff;
  padding: 12px 16px 9px;
}

.case-step__body {
  min-width: 0;
}

.case-step__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  height: 22px;
  margin-bottom: 3px;
  padding: 3px 10px;
  border-radius: 999px;
  background: #eeeeff;
  color: #5c58c8;
  font-family: var(--font-montserrat);
  font-size: 11px;
  font-weight: 300;
  line-height: 1;
}

.case-step--after .case-step__label {
  background: var(--color-accent);
  color: #ffffff;
}

.case-step__text {
  color: var(--color-main-text);
  font-family: var(--font-ryo);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0;
}

.case-step__text span {
  color: var(--color-accent);
  font-weight: 700;
}

.case-step__image {
  position: absolute;
  z-index: 1;
  max-width: none;
  pointer-events: none;
  height: auto;
}

.case-step__image--bf01 {
  left: clamp(8px, 1.2vw, 13px);
  top: -7px;
  bottom: 0;
  width: auto;
  height: calc(100% + 7px);
}

.case-step__image--bf02 {
  left: 0px;
  top: -7px;
  bottom: 0;
  width: auto;
  height: calc(100% + 7px);
}

.case-step__image--af01 {
  position: static;
  flex: 0 0 auto;
  width: clamp(62px, 7vw, 78px);
  max-width: 28%;
}

.case-step__image--af02 {
  position: static;
  flex: 0 0 auto;
  width: clamp(58px, 7vw, 78px);
  max-width: 28%;
}

.case-card__arrow {
  position: relative;
  width: 4px;
  height: 30px;
  margin: 15px auto 18px;
  background-image: radial-gradient(circle, var(--color-accent) 0 1px, transparent 2px);
  background-position: center top;
  background-size: 4px 7px;
  background-repeat: repeat-y;
}

.case-card__arrow::before,
.case-card__arrow::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 10px;
  height: 2px;
  background: var(--color-accent);
  transform-origin: center;
}

.case-card__arrow::before {
  transform: translateX(-84%) rotate(45deg);
}

.case-card__arrow::after {
  transform: translateX(-16%) rotate(-45deg);
}

@media screen and (max-width: 1025px) {
  .case__content {
    max-width: 500px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .case__content::before {
    display: none;
  }
  .case__lead {
    text-align: left;
  }
  .case__subTitle {
    line-height: 1.4;
    margin-block: 25px 30px;
  }
  .case-card__header {
    min-height: 66px;
    margin-bottom: 20px;
  }
  .case-card__eyebrow {
    font-size: 13px;
  }
  .case-card__title {
    font-size: 24px;
    line-height: 1.3;
  }
  .case-card__number {
    top: -11px;
    left: 108px;
    width: 66px;
  }
  .case-card:nth-child(2) .case-card__number {
    top: -7px;
    left: 112px;
    width: 63px;
  }
  .case-card__steps {
    gap: 0;
  }
  .case-step {
    min-height: 116px;
  }
  .case-step--before {
    height: clamp(116px, 32vw, 138px);
    padding: 8px 4px 8px clamp(84px, 25vw, 98px);
  }
  .case-step--before02 {
    padding-left: clamp(96px, 28vw, 112px);
  }
  .case-step--after {
    gap: 10px;
    padding: 10px 8px 8px;
  }
  .case-step__label {
    height: 20px;
    min-width: 62px;
    margin-bottom: 5px;
    font-size: 11px;
  }
  .case-step__text {
    font-size: clamp(9px, 3.4vw, 14px);
    line-height: 1.75;
  }
  .case-card__arrow {
    margin: 15px auto 18px;
  }
  .case-step__image--bf01 {
    left: clamp(8px, 3vw, 13px);
    top: -7px;
    bottom: 0;
    width: auto;
    height: calc(100% + 7px);
  }
  .case-step__image--bf02 {
    left: 0px;
    top: -7px;
    bottom: 0;
    width: auto;
    height: calc(100% + 7px);
  }
  .case-step__image--af01 {
    width: clamp(58px, 18vw, 78px);
    max-width: 26%;
  }
  .case-step__image--af02 {
    width: clamp(54px, 18vw, 78px);
    max-width: 26%;
  }
}
/* ===============================
   FLOW セクション
   =============================== */
.flow {
  background-color: #F6F7F9;
  text-align: center;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

.flow__items {
  max-width: 1182px;
  width: calc(100% - 40px);
  margin: 60px auto 0;
  display: flex;
  gap: 6px;
}

.flow__item {
  border: 2.38px solid #2624A3;
  padding: 14px 18px;
  list-style: none;
  max-width: 247px;
  width: 100%;
  aspect-ratio: 247 / 235;
  border-radius: 15.88px;
  background: #ffffff;
}
.flow__arrow {
  width: 40px;
  height: auto;
  aspect-ratio: 1 / 1;
}
.flow__num {
  color: #2624A3;
  font-size: 9.98px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: 0.3em;
  line-height: 1.4;
}
.flow__item-title{
  color: var(--color-sub-text-2);
  font-family:  var(--font-ryo);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
}
.flow__item-img{
  margin: 6.5px auto;
}
.flow__item-img01 {
  width: 97px;
  height: auto;
}
.flow__item-img02 {
  width: 101.46px;
  height: auto;
}
.flow__item-img03 {
  width: 99px;
  height: auto;
}
.flow__item-img04 {
  width: 98.27px;
  height: auto;
}
.flow__item-body{
  font-family:  var(--font-ryo);
  color: var(--color-sub-text-2);
  font-size:14px;
  line-height: 1.6;
  font-weight: 500;
  display: inline-block;
  margin-inline: auto;
}
.flow__item-body02 {
  text-align: left;
}
.flow__sp {
  display: none;
}

.flow__title {
  text-align: left;
  margin-bottom: 24px;
}


.flow__title-heading {
  font-size: 28px;
  font-weight: 700;
  color: #464646;
  margin-bottom: 12px;
  line-height: 1.4;
  padding-inline: 20px;
}

.flow__title-lead {
  font-size: 15px;
  color: #464646;
  line-height: 1.8;
  padding-inline: 20px;
  margin-bottom: 32px;
  text-align: left;
}

@media (max-width: 768px) {
  .flow__title-heading,
  .flow__title-lead {
    padding-inline: 20px;
    text-align: left;
  }

  .flow__items {
    display: none;
  }

  .flow__sp {
    display: block;
    margin-top: 32px;
  }

  .flow__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 100px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 10;
  }
  .flow__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
  }

  .flow__pagination-step {
    display: flex;
    align-items: center;
  }

  .flow__pagination-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #2624A3;
    background: #fff;
    color: #2624A3;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
  }

  .flow__pagination-step--active .flow__pagination-circle {
    background: #2624A3;
    color: #fff;
  }

  .flow__pagination-line {
    width: 28px;
    height: 0.4px;
    background: #2624A3;
  }

  .flow__slider-wrapper {
    position: relative;
    max-width: 346px;
    width: 89%;
    margin: 0 auto;
    overflow: visible;
  }

  .flow__slider,
  .flow__slider .splide__track {
    overflow: hidden;
  }

  .flow__slider .flow__item {
    box-sizing: border-box;
    max-width: none;
    width: 100%;
  }

  /* .flow__slider .splide__slide img {
    width: 100%;
    max-width: 346px;
    height: auto;
    display: block;
  } */

  .flow__arrow--prev {
    left: -20px;
  }

  .flow__arrow--next {
    right: -20px;
  }

  .flow__arrow img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
  }

  .flow__arrow:disabled {
    opacity: 0.3;
    cursor: default;
  }
  .flow__item {
    padding: 20px ;
    aspect-ratio: 1 / 1;
  }
  .flow__item-title {
    font-size: 24px;
  }
  .flow__num {
  font-size: 12px;
  }
  .flow__item-body {
    font-size: 16px;
  }
  .flow__item-img{
    margin: 9px auto;
    width: auto;
    height: 131.6px;
  }
}

/* ===============================
   FAQ セクション
   =============================== */
.faq {
  font-family: 'Noto Sans JP', sans-serif;
  color: #464646;
  max-width: 1139px;
  margin: 0 auto;
}

.faq__heading {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #464646;
}

.faq__item {
  font-family:  var(--font-ryo);
  border-bottom: 4px dotted #E6D9D9;
  padding: 20px 0;
}

.faq__question {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  list-style: none;
  padding-right: 40px;
  position: relative;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #2624A3;
  flex-shrink: 0;
  line-height: 1.5;
}

.faq__question-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  flex: 1;
}

.faq__icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(38, 36, 163, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq__icon::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-right: 1.4px solid #2624A3;
  border-bottom: 1.4px solid #2624A3;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 0.3s;
}

.faq__item--open .faq__icon::before {
  transform: rotate(-135deg);
  margin-top: 3px;
}

.faq__answer {
  display: none;
  padding-top: 16px;
}

.faq__item--open .faq__answer {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-right: 30px;
}

.faq__answer-text {
  font-size: 20px;
  line-height: 1.8;
  flex: 1;
  font-weight: 500;
}

@media (max-width: 768px) {
  .faq__heading {
    font-size: 26px;
    text-align: left;
    margin: 0 auto 32px;
    padding-inline: 20px;
  }
  .faq__question-text,
  .faq__answer-text {
    font-size: 16px;
  }
  .faq__label {
    font-size: 16px;
  }

  .faq__icon {
    top: 20px;
    width: 25px;
    height: 25px;
  }

  .faq__icon::before {
    width: 4px;
    height: 4px;
    margin-top: 3px;
  }

  .faq__item {
    margin-inline: 20px;
  }
}

.bottom {
  position: relative;
  width: 100%;
  background-image: url('../img/bottom_bg.webp');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  padding: 124px 0 149px;
}

.bottom__inner {
  max-width: 1140px;
  width: calc(100% - 40px);
  display: flex;
  gap: 4%;
  margin: 0 auto;
}

.bottom__content--img {
  width: 100%;
  aspect-ratio: 349.72 / 331;
  max-width: 350px;
  display: block;
  flex-shrink: 0;
  margin-inline: auto;
}
.bottom__content--title {
  font-family:  var(--font-ryo);
  font-size: clamp(36px, 3.4vw, 49px);
  font-weight: 800;
  margin-bottom: 25px;
  color: var(--color-main-text);
}
.bottom__content--desc {
  font-family:  var(--font-ryo);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 60px;
}
.bottom__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FF8800;
  color: #ffffff !important;
  border-radius: 50px;
  padding: 22px 17px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 1.7vw, 25px);
  text-decoration: none !important;
  box-shadow: 0 5px 0 #944F00;
  white-space: nowrap;
  min-width: 300px;
  width: min(30vw, 437px);
  max-height: 69px;
}

.bottom__btn::before,
.bottom__btn::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

@media (hover: hover) and (pointer: fine) {
  .bottom__btn:hover {
    box-shadow: 0 2px 0 #944F00;
  }
}
  .bottom__btn--sp {
    display: none;
  }
  .bottom__btn--pc {
    display: flex;
  }

@media (max-width: 768px) {
  .bottom {
    background-image: url('../img/bottom_bg_sp.webp');
  }

  .bottom__content--title {
    font-size: clamp(24px, 9.2vw, 36px);
  }
  .bottom__content--desc {
    font-size: 15px;
  }

  .bottom__inner {
    flex-direction: column;
    inset: 0;
  }

  .bottom__content-img {
    display: none;
  }

  .bottom {
    padding-block: 44px 56px;
  }
  .bottom__btn {
    max-width: 345px;
    margin: 30px auto 0;
    width: calc(100% - 40px);
    height: 54px;
    min-height: unset;
    font-size: 20px;
    padding: 0;
    box-sizing: border-box;
  }
  .bottom__btn--sp {
    display: flex;
    left: 50%;
    transform: translateX(-50%);
  }
  .bottom__btn--pc {
    display: none;
  }

}

.footer {
  background-color: #F6F7F9;
  border-radius: 30px 30px 0 0;
  padding: 36px 20px 17px;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
}

.footer__logo {
  display: block;
  width: 157px;
  height: 42px;
  margin: 0 auto 18px;
}

.footer__nav {
  list-style: none;
  margin: 0 0 9px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.footer__nav-item {
  display: flex;
  align-items: center;
  font-size: 10px;
  color: #464646;
}

.footer__nav-item+.footer__nav-item::before {
  content: '｜';
  color: #464646;
  font-size: 10px;
  margin: 0 4px;
}

.footer__nav-link {
  color: #464646;
  text-decoration: none;
  font-size: 10px;
  font-family: 'Noto Sans JP', sans-serif;
}

.footer__copyright {
  font-family: 'Montserrat', sans-serif;
  font-weight: 100;
  font-size: 10px;
  color: #ffffff;
}

.s_footer-peraichi {
  display: none;
}
/* ===== 資料ダウンロード フォーム一体型セクション ===== */
.formsec {
  background-color: #F6F7F9;
  padding: 64px 20px 88px;
  scroll-margin-top: 80px;
}
.formsec__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.formsec__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 700;
  color: #2D2D2D;
  margin-bottom: 12px;
}
.formsec__desc {
  font-size: 16px;
  line-height: 1.8;
  color: #555555;
  margin-bottom: 36px;
}
.formsec .formrun-embed {
  text-align: left;
}

@media (max-width: 768px) {
  .formsec {
    padding: 44px 16px 56px;
    scroll-margin-top: 64px;
  }
  .formsec__desc {
    font-size: 14px;
    margin-bottom: 28px;
  }
}

/* スマホでは .fv__btn--cases のホバー演出を無効化（transformは中央寄せ維持のため触らない） */
@media (max-width: 768px) {
  .fv__btn--cases:hover,
  .fv__btn--cases:active,
  .fv__btn--cases:focus {
    opacity: 1;
    box-shadow: none;
  }
}

/* ===== フォームセクションの資料画像 ===== */
.formsec__img {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin: 0 auto 36px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .formsec__img {
    margin-bottom: 28px;
  }
}

/* ===== 離脱防止ポップアップ ===== */
.exit-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.exit-popup.is-open {
  display: flex;
}
.exit-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}
.exit-popup__box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
  animation: exitPopupIn 0.25s ease;
}
@keyframes exitPopupIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.exit-popup__close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #2D2D2D;
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.exit-popup__media {
  display: block;
}
.exit-popup__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.exit-popup__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 16px 20px;
  background: #FF8800;
  color: #ffffff !important;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 18px;
  border-radius: 50px;
  text-decoration: none !important;
  box-shadow: 0 4px 0 #CC5500;
}
@media (max-width: 768px) {
  .exit-popup {
    padding: 16px;
  }
  .exit-popup__box {
    padding: 20px 16px;
  }
  .exit-popup__btn {
    font-size: 16px;
    padding: 14px 16px;
  }
}
