@charset "UTF-8";

/* ==================================================
   Variables / Reset
================================================== */
:root {
  --red: #d71920;
  --red-hover: #bd1118;
  --black: #111;
  --white: #fff;
  --header-height: 92px;
  --wide-width: 1180px;
  --reason-width: 1100px;
  --content-width: 1080px;
  --header-width: 1240px;
  --desktop-gutter: 160px;
  --tablet-gutter: 80px;
  --sp-gutter: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  font-family:
    "Noto Sans JP",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    Meiryo,
    sans-serif;
  background: #fff;
}

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

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

button,
input,
textarea {
  font: inherit;
}

/* ==================================================
   Shared widths
================================================== */
.header__inner {
  width: min(calc(100% - var(--desktop-gutter)), var(--header-width));
  margin: 0 auto;
}

.fv__inner,
.problem-section__inner,
.search-section__inner,
.about-section__inner {
  width: min(calc(100% - var(--desktop-gutter)), var(--wide-width));
  margin: 0 auto;
}

.reason-section__inner {
  width: min(calc(100% - var(--desktop-gutter)), var(--reason-width));
  margin: 0 auto;
}

.service-section__inner,
.flow-section__inner,
.faq-section__inner,
.information-section__inner,
.company-section__inner,
.bottom-cta__inner,
.footer__inner {
  width: min(calc(100% - var(--desktop-gutter)), var(--content-width));
  margin: 0 auto;
}

/* ==================================================
   Header
================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: var(--header-height);
  background: #fff;
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
}

.header__logo {
  width: 200px;
  flex-shrink: 0;
}

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

.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  white-space: nowrap;
}

.header__nav a {
  position: relative;
  padding: 8px 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.header__nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.header__nav a:hover {
  color: var(--red);
}

.header__nav a:hover::after {
  transform: scaleX(1);
}

.header__contact,
.fv__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(180deg, #df252c 0%, var(--red) 100%);
  border-radius: 999px;
  box-shadow: 0 5px 12px rgba(134, 0, 8, 0.25);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.header__contact:hover,
.fv__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(134, 0, 8, 0.3);
}

.header__contact {
  width: auto;
  height: 58px;
  margin-left: 32px;
  padding: 0 34px;
  gap: 16px;
  font-size: 16px;
}

.mail-icon {
  position: relative;
  width: 27px;
  height: 20px;
  flex-shrink: 0;
  border: 2px solid currentColor;
}

.mail-icon::before,
.mail-icon::after {
  content: "";
  position: absolute;
  top: 3px;
  width: 16px;
  height: 2px;
  background: currentColor;
}

.mail-icon::before {
  left: 0;
  transform: rotate(36deg);
  transform-origin: left center;
}

.mail-icon::after {
  right: 0;
  transform: rotate(-36deg);
  transform-origin: right center;
}

.arrow {
  margin-left: auto;
  font-size: 29px;
  font-weight: 300;
  line-height: 1;
}

.header__menu {
  display: none;
}

/* ==================================================
   FV
================================================== */
.fv {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  height: 650px;
  overflow: hidden;
  background-image: url("./lp/images/fv-bg-pc.webp");
  background-repeat: no-repeat;
  background-position: center calc(50% + var(--fv-parallax, 0px));
  background-size: cover;
  will-change: background-position;
}

.fv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.32) 0%,
      rgba(255, 255, 255, 0.12) 42%,
      rgba(255, 255, 255, 0) 67%);
  pointer-events: none;
}

.fv__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.fv__content {
  width: 55%;
}

.fv__title {
  margin: 0;
  font-size: clamp(54px, 4.45vw, 78px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.025em;
}

.fv__title span {
  color: var(--red);
}

.fv__catch {
  margin: 34px 0 18px;
  font-size: clamp(25px, 1.9vw, 34px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.025em;
}

.fv__text {
  margin: 0;
  font-size: clamp(17px, 1.35vw, 24px);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

.fv__button {
  width: auto;
  min-height: 82px;
  margin-top: 38px;
  padding: 0 74px;
  gap: 27px;
  font-size: clamp(20px, 1.5vw, 27px);
}

.fv__title,
.fv__catch,
.fv__text,
.fv__button {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.85s ease,
    transform 0.85s ease;
}

.fv.is-loaded .fv__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.fv.is-loaded .fv__catch {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

.fv.is-loaded .fv__text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.fv.is-loaded .fv__button {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.55s;
}

/* ==================================================
   Problem
================================================== */
.problem-section {
  padding: 125px 0 120px;
  background: #f3f4f7;
}

.problem-section__title {
  margin: 0;
  text-align: center;
  font-size: clamp(28px, 2.4vw, 42px);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.025em;
}

.problem-section__title span {
  color: var(--red);
}

.problem-section__line {
  width: 60px;
  height: 4px;
  margin: 23px auto 80px;
  background: var(--red);
  border-radius: 999px;
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.problem-card {
  position: relative;
  min-height: 176px;
  padding: 49px 25px 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(23, 30, 50, 0.08);
}

.problem-card__check {
  position: absolute;
  top: -25px;
  left: 50%;
  width: 51px;
  height: 51px;
  border-radius: 50%;
  background: #dc252c;
  transform: translateX(-50%);
  box-shadow: 0 4px 10px rgba(178, 10, 20, 0.18);
}

.problem-card__check::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 13px;
  width: 23px;
  height: 12px;
  border-left: 5px solid #fff;
  border-bottom: 5px solid #fff;
  transform: rotate(-45deg);
}

.problem-card p {
  margin: 0;
  font-size: clamp(16px, 1.28vw, 23px);
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.025em;
}

.problem-card p span {
  color: var(--red);
}

.problem-section__message {
  margin-top: 47px;
  text-align: center;
  font-size: clamp(16px, 1.35vw, 23px);
  font-weight: 700;
  line-height: 1.9;
}

.problem-section__message p {
  margin: 0;
}

/* ==================================================
   Floating contact
================================================== */
.floating-contact {
  position: fixed;
  z-index: 900;
  top: 50%;
  right: 20px;
  width: 114px;
  overflow: hidden;
  border: 1px solid #e79499;
  border-radius: 58px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(45, 20, 25, 0.15);
  transform: translateY(-50%);
}

.floating-contact__item {
  min-height: 142px;
  padding: 25px 10px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.floating-contact__item svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-contact__item--mail {
  color: #fff;
  background: var(--red);
}

.floating-contact__item--tel {
  color: var(--red);
  background: #fff;
}

/* ==================================================
   Search
================================================== */
.search-section {
  padding: 125px 0 0px;
  overflow: hidden;
  background: #fff;
}

.search-section__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(70px, 7vw, 135px);
  align-items: center;
}

.search-section__content {
  padding-left: 30px;
}

.search-section__title {
  margin: 0;
  font-size: clamp(32px, 2vw, 52px);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: 0.025em;
}

.search-section__title span {
  color: var(--red);
}

.search-section__line {
  width: 62px;
  height: 4px;
  margin: 24px 0 34px;
  border-radius: 999px;
  background: var(--red);
}

.search-section__text {
  font-size: clamp(17px, 1.3vw, 22px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.015em;
}

.search-section__text p {
  margin: 0;
}

.search-section__text p+p {
  margin-top: 22px;
}

.search-section__text strong {
  font-weight: 800;
}

.search-section__visual {
  position: relative;
  width: 100%;
  padding: 28px 34px 0 0;
}

.search-section__frame {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - 6px);
  height: calc(100% - 35px);
  border-radius: 25px;
  background: var(--red);
}

.search-section__image {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1.4 / 1;
  border-radius: 22px;
  background: #eee;
}

.search-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ==================================================
   About
================================================== */
.about-section {
  padding: 125px 0 0px;
  overflow: hidden;
  background: #fff;
}

.about-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 6vw, 105px);
  align-items: center;
}

.about-section__image {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1.27 / 1;
  border-radius: 24px;
  background: #eee;
}

.about-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-section__content {
  padding-right: 10px;
}

.about-section__label {
  margin: 0 0 13px;
  font-size: clamp(22px, 1.7vw, 30px);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.025em;
}

.about-section__title {
  margin: 0;
  font-size: clamp(32px, 2vw, 52px);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.about-section__title span {
  display: inline;
  padding: 3px 10px 5px;
  color: #fff;
  background: var(--red);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.about-section__line {
  width: 62px;
  height: 4px;
  margin: 29px 0 34px;
  border-radius: 999px;
  background: var(--red);
}

.about-section__text {
  font-size: clamp(16px, 1.3vw, 22px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.015em;
}

.about-section__text p {
  margin: 0;
}

.about-section__text p+p {
  margin-top: 18px;
}

.about-section__text strong {
  font-weight: 800;
}

/* ==================================================
   Reason
================================================== */
.reason-section {
  padding: 125px 0 125px;
  background: #fff;
}

.reason-section__inner {
  padding: 78px 65px 90px;
  background: linear-gradient(135deg, #cf1823 0%, #e1262e 100%);
  border-radius: 32px;
}

.reason-section__heading {
  margin-bottom: 85px;
  text-align: center;
  color: #fff;
}

.reason-section__heading p {
  margin: 0 0 8px;
  font-size: clamp(20px, 1.8vw, 29px);
  font-weight: 800;
}

.reason-section__heading h2 {
  margin: 0;
  font-size: clamp(27px, 2.7vw, 42px);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.025em;
}

.reason-section__line {
  display: block;
  width: 54px;
  height: 4px;
  margin: 19px auto 0;
  border-radius: 999px;
  background: #fff;
}

.reason-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.reason-card {
  position: relative;
  overflow: visible;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 25px rgba(90, 0, 8, 0.2);
}

.reason-card__number {
  position: absolute;
  z-index: 3;
  top: -55px;
  left: 50%;
  width: 112px;
  height: 82px;
  padding-top: 15px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  background: #292933;
  border-radius: 60px 60px 0 0;
  transform: translateX(-50%);
}

.reason-card__head {
  position: relative;
  z-index: 4;
  min-height: 105px;
  padding: 20px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-size: clamp(16px, 1.35vw, 21px);
  font-weight: 800;
  line-height: 1.55;
  background: #292933;
  border-radius: 9px 9px 0 0;
}

.reason-card__body {
  padding: 18px 18px 27px;
}

.reason-card__image {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1.75 / 1;
  margin-bottom: 24px;
  background: #eee;
}

.reason-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.reason-card__body h3 {
  min-height: 73px;
  margin: 0 0 12px;
  color: var(--red);
  text-align: center;
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 800;
  line-height: 1.55;
}

.reason-card__body p {
  margin: 0;
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 500;
  line-height: 1.8;
}

/* ==================================================
   Service
================================================== */
.service-section {
  padding: 125px 0 125px;
  overflow: hidden;
  background: #f7f7f7;
}

.service-section__heading {
  margin-bottom: 58px;
}

.service-section__label {
  margin: 0 0 7px;
  font-size: clamp(20px, 1.6vw, 27px);
  font-weight: 800;
  line-height: 1.5;
}

.service-section__heading h2 {
  margin: 0;
  color: var(--red);
  font-size: clamp(27px, 2.55vw, 40px);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.025em;
}

.service-section__line {
  display: block;
  width: 50px;
  height: 4px;
  margin: 18px 0 25px;
  border-radius: 999px;
  background: var(--red);
}

.service-section__lead {
  margin: 0;
  font-size: clamp(15px, 1.2vw, 19px);
  font-weight: 600;
  line-height: 1.9;
}

.service-list {
  position: relative;
  display: grid;
  gap: 36px;
}

.service-list::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 100px;
  bottom: 100px;
  left: 128px;
  width: 2px;
  background: var(--red);
}

.service-card {
  position: relative;
  z-index: 1;
  min-height: 218px;
  padding: 36px 60px 36px 265px;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(35, 35, 45, 0.08);
}

.service-card--reverse {
  padding: 36px 265px 36px 60px;
}

.service-card__icon {
  position: absolute;
  top: 50%;
  left: 55px;
  width: 145px;
  height: 145px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #e22831 0%, #ca1520 100%);
  transform: translateY(-50%);
}

.service-card--reverse .service-card__icon {
  right: 55px;
  left: auto;
}

.service-card__icon img {
  width: 65px;
  height: 65px;
  object-fit: contain;
}

.service-card__content {
  width: 100%;
}

.service-card__content h3 {
  display: inline-block;
  margin: 0 0 16px;
  padding: 5px 14px 7px;
  color: #fff;
  background: var(--red);
  font-size: clamp(20px, 1.75vw, 28px);
  font-weight: 800;
  line-height: 1.4;
}

.service-card__content p {
  margin: 0;
  font-size: clamp(15px, 1.2vw, 19px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

.service-support {
  margin-top: 52px;
  padding: 38px 55px 40px;
  color: #fff;
  background: linear-gradient(135deg, #df242d 0%, #c9141f 100%);
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(160, 0, 10, 0.13);
}

.service-support h3 {
  display: inline-block;
  margin: 0 0 17px;
  padding: 3px 14px 5px;
  color: var(--red);
  background: #fff;
  font-size: clamp(20px, 1.65vw, 27px);
  font-weight: 800;
  line-height: 1.45;
}

.service-support p {
  margin: 0;
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 500;
  line-height: 2;
}

/* ==================================================
   Flow
================================================== */
.flow-section {
  padding: 125px 0 125px;
  background: #fff;
}

.flow-section__heading {
  margin-bottom: 92px;
  text-align: center;
}

.flow-section__heading h2 {
  margin: 0;
  font-size: clamp(29px, 2.5vw, 40px);
  font-weight: 800;
  line-height: 1.5;
}

.flow-section__heading h2 span {
  color: var(--red);
}

.flow-section__line {
  display: block;
  width: 48px;
  height: 4px;
  margin: 17px auto 0;
  border-radius: 999px;
  background: var(--red);
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 45px;
  row-gap: 90px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-card {
  position: relative;
  min-height: 235px;
  padding: 72px 25px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff3f3;
  border-radius: 16px;
  box-shadow: 0 8px 17px rgba(55, 25, 30, 0.12);
}

.flow-card__number {
  position: absolute;
  top: -53px;
  left: 50%;
  width: 108px;
  height: 108px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(145deg, #e2252d 0%, #ce1620 100%);
  border-radius: 50%;
  transform: translateX(-50%);
}

.flow-card__number small {
  margin-bottom: 1px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
}

.flow-card__number strong {
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}

.flow-card h3 {
  margin: 0 0 20px;
  color: var(--red);
  font-size: clamp(20px, 1.65vw, 26px);
  font-weight: 800;
  line-height: 1.5;
}

.flow-card p {
  margin: 0;
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 500;
  line-height: 1.9;
}

.flow-card:not(:nth-child(3n))::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -32px;
  width: 18px;
  height: 18px;
  border-top: 6px solid var(--red);
  border-right: 6px solid var(--red);
  transform: translateY(-50%) rotate(45deg);
}

/* ==================================================
   FAQ
================================================== */
.faq-section {
  padding: 125px 0 125px;
  background: #f7f7f7;
}

.faq-section__heading {
  margin-bottom: 65px;
  text-align: center;
}

.faq-section__heading h2 {
  margin: 0;
  font-size: clamp(29px, 2.5vw, 40px);
  font-weight: 800;
  line-height: 1.5;
}

.faq-section__line {
  display: block;
  width: 48px;
  height: 4px;
  margin: 17px auto 0;
  border-radius: 999px;
  background: var(--red);
}

.faq-list {
  display: grid;
  gap: 38px;
}

.faq-item {
  overflow: hidden;
  padding: 0 40px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(35, 35, 45, 0.08);
}

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

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

.faq-item__question {
  position: relative;
  min-height: 100px;
  padding: 28px 55px 25px 72px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.faq-item__title {
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 800;
  line-height: 1.6;
}

.faq-item__mark {
  color: var(--red);
  font-family: Arial, sans-serif;
  font-size: clamp(34px, 2.8vw, 47px);
  font-weight: 800;
  line-height: 1;
}

.faq-item__question>.faq-item__mark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq-item__arrow {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 17px;
  height: 17px;
  border-top: 3px solid #c9c9c9;
  border-left: 3px solid #c9c9c9;
  transform: translateY(-25%) rotate(45deg);
  transition: transform 0.25s ease;
}

.faq-item:not([open]) .faq-item__arrow {
  transform: translateY(-70%) rotate(225deg);
}

.faq-item__answer {
  position: relative;
  min-height: 105px;
  margin-left: 72px;
  padding: 26px 0 30px;
  border-top: 1px solid #d7d7d7;
}

.faq-item__answer>.faq-item__mark {
  position: absolute;
  top: 28px;
  left: -72px;
}

.faq-item__answer p {
  margin: 0;
  font-size: clamp(15px, 1.25vw, 19px);
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: 0.01em;
}

/* ==================================================
   Information
================================================== */
.information-section {
  padding: 125px 0 125px;
  background: #fff;
}

.information-section__heading {
  margin-bottom: 65px;
  text-align: center;
}

.information-section__heading h2 {
  margin: 0;
  font-size: clamp(29px, 2.5vw, 40px);
  font-weight: 800;
}

.information-section__heading>span {
  display: block;
  width: 48px;
  height: 4px;
  margin: 17px auto 38px;
  border-radius: 999px;
  background: var(--red);
}

.information-section__heading p {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.8;
}

.information-section__heading small {
  color: #999;
}

.information-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.information-title h3 {
  margin: 0;
  font-size: 28px;
}

.information-title a {
  font-size: 14px;
  font-weight: 700;
}

.news-area {
  margin-bottom: 55px;
}

.news-list {
  border-top: 1px solid #ddd;
}

.news-item {
  display: grid;
  grid-template-columns: 110px 100px 1fr 20px;
  gap: 20px;
  align-items: center;
  min-height: 68px;
  border-bottom: 1px solid #ddd;
}

.news-item time {
  color: #8c8c98;
  font-size: 13px;
  font-weight: 700;
}

.news-item__category {
  padding: 5px 12px;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  background: #92929d;
  border-radius: 7px;
}

.news-item p {
  margin: 0;
  font-weight: 600;
}

.news-item__arrow {
  font-size: 22px;
}

.seminar-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.seminar-card {
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.07);
}

.seminar-card__image {
  overflow: hidden;
  aspect-ratio: 1.35 / 1;
  background: #888;
}

.seminar-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.seminar-card:hover img {
  transform: scale(1.04);
}

.seminar-card__no-image {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #fff;
}

.seminar-card__content {
  padding: 20px 18px 24px;
}

.seminar-card__content h4 {
  margin: 0 0 10px;
  font-size: 17px;
}

.seminar-card__content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

.information-empty {
  grid-column: 1 / -1;
  padding: 30px;
  text-align: center;
  background: #f7f7f7;
}

/* ==================================================
   Company
================================================== */
.company-section {
  padding: 125px 0 125px;
  background: linear-gradient(135deg, #fff0f1 0%, #fff8f8 52%, #ffeded 100%);
}

.company-box {
  padding: 75px 110px 78px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(80, 25, 35, 0.07);
}

.company-section__heading {
  margin-bottom: 38px;
  text-align: center;
}

.company-section__heading h2 {
  margin: 0;
  font-size: clamp(29px, 2.5vw, 40px);
  font-weight: 800;
  line-height: 1.5;
}

.company-section__line {
  display: block;
  width: 48px;
  height: 4px;
  margin: 17px auto 0;
  border-radius: 999px;
  background: var(--red);
}

.company-list {
  margin: 0;
  border-top: 1px solid #dedede;
}

.company-list__row {
  display: grid;
  grid-template-columns: 185px 1fr;
  gap: 25px;
  padding: 23px 0;
  border-bottom: 1px solid #dedede;
}

.company-list dt {
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 800;
  line-height: 1.8;
}

.company-list dd {
  margin: 0;
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 500;
  line-height: 1.8;
}

.company-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.company-list li {
  position: relative;
  padding-left: 17px;
}

.company-list li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.company-sp-only {
  display: none;
}

/* ==================================================
   Bottom CTA
================================================== */
.bottom-cta {
  position: relative;
  overflow: hidden;
  padding: 125px 0 125px;
  color: #fff;
  background: #17304f;
}

.bottom-cta__bg {
  position: absolute;
  inset: -150px 0;
  background-image:
    linear-gradient(rgba(18, 43, 73, 0.82), rgba(18, 43, 73, 0.82)),
    url("./lp/images/bottom-cta-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: translate3d(0, var(--bottom-parallax, 0px), 0);
  will-change: transform;
}

.bottom-cta__inner {
  position: relative;
  z-index: 2;
}

.bottom-cta h2 {
  margin: 0 0 26px;
  font-size: clamp(34px, 3vw, 50px);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: 0.03em;
}

.bottom-cta__text {
  max-width: 1020px;
  font-size: clamp(15px, 1.2vw, 19px);
  font-weight: 500;
  line-height: 2;
}

.bottom-cta__text p {
  margin: 0;
}

.bottom-cta__text p+p {
  margin-top: 8px;
}

.bottom-cta__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  width: max-content;
  max-width: 100%;
  margin-top: 38px;
}

.bottom-cta__button {
  min-height: 74px;
  padding: 0 70px;
  display: flex;
  align-items: center;
  border-radius: 999px;
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.bottom-cta__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.24);
}

.bottom-cta__button--mail {
  gap: 40px;
  color: #fff;
  background: var(--red);
}

.bottom-cta__button--tel {
  gap: 30px;
  color: var(--red);
  background: #fff;
  border: 2px solid var(--red);
}

.bottom-cta__arrow {
  margin-left: auto;
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
}

.bottom-cta__mail-icon {
  position: relative;
  width: 34px;
  height: 25px;
  flex-shrink: 0;
  border: 2px solid currentColor;
}

.bottom-cta__mail-icon::before,
.bottom-cta__mail-icon::after {
  content: "";
  position: absolute;
  top: 4px;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.bottom-cta__mail-icon::before {
  left: 0;
  transform: rotate(36deg);
  transform-origin: left center;
}

.bottom-cta__mail-icon::after {
  right: 0;
  transform: rotate(-36deg);
  transform-origin: right center;
}

.bottom-cta__tel-icon {
  font-size: 33px;
  line-height: 1;
}

.bottom-cta__tel-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.bottom-cta__tel-text strong {
  font-size: clamp(20px, 1.8vw, 29px);
}

.bottom-cta__tel-text small {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 700;
}

/* ==================================================
   Footer
================================================== */
.footer {
  padding: 32px 0 25px;
  color: #fff;
  background: #292934;
}

.footer__inner {
  display: flex;
  align-items: center;
  gap: 70px;
}

.footer__logo {
  width: 110px;
  flex-shrink: 0;
}

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

.footer__content {
  flex: 1;
}

.footer__nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 13px 28px;
  font-size: 14px;
  font-weight: 700;
}

.footer__nav a {
  transition: opacity 0.2s ease;
}

.footer__nav a:hover {
  opacity: 0.7;
}

.footer__copyright {
  margin: 23px 0 0;
  text-align: center;
  font-size: 12px;
}

/* ==================================================
   Scroll reveal
================================================== */
.js-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pc {
  display: block;
}

.sp {
  display: none;
}

/* ==================================================
   Tablet: 1200px
================================================== */
@media (max-width: 1200px) {
  :root {
    --header-height: 96px;
  }

  .header__inner,
  .fv__inner,
  .problem-section__inner,
  .search-section__inner,
  .about-section__inner,
  .reason-section__inner,
  .service-section__inner,
  .flow-section__inner,
  .faq-section__inner,
  .information-section__inner,
  .company-section__inner,
  .bottom-cta__inner,
  .footer__inner {
    width: calc(100% - var(--tablet-gutter));
  }

  .header__nav {
    gap: 20px;
  }

  .header__nav a {
    font-size: 14px;
  }

  .header__contact {
    width: 235px;
    height: 58px;
    margin-left: 24px;
    padding: 0 22px;
    gap: 13px;
    font-size: 15px;
  }

  .header__contact .mail-icon {
    width: 26px;
    height: 24px;
  }

  .fv {
    height: 610px;
  }

  .fv__content {
    width: 57%;
  }

  .problem-section {
    padding: 100px 0;
  }

  .problem-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 24px;
  }

  .floating-contact {
    right: 10px;
    width: 95px;
  }

  .floating-contact__item {
    min-height: 120px;
    font-size: 13px;
  }
}

/* ==================================================
   Tablet: 1000px
================================================== */
@media (max-width: 1000px) {

  .search-section,
  .about-section {
    padding: 100px 0;
  }

  .search-section__inner,
  .about-section__inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .search-section__content {
    padding-left: 0;
  }

  .search-section__visual,
  .about-section__image {
    width: min(100%, 720px);
    margin: 0 auto;
  }

  .about-section__content {
    padding-right: 0;
  }

  .reason-section__inner {
    padding: 70px 35px 75px;
  }

  .reason-list {
    grid-template-columns: 1fr;
    gap: 85px;
  }

  .reason-card {
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .reason-card__head {
    font-size: 20px;
  }

  .reason-card__body h3 {
    min-height: auto;
  }
}

a.header__logo {
    width: 180px;
}

/* ==================================================
   Mobile navigation / 900px
================================================== */
@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .header__inner,
  .fv__inner {
    width: calc(100% - 32px);
  }

  .header__logo {
    width: 120px;
  }

  .header__contact {
    display: none;
  }

  .header__menu {
    display: grid;
    gap: 5px;
    margin-left: auto;
    padding: 10px;
    border: 0;
    background: transparent;
  }

  .header__menu span {
    display: block;
    width: 28px;
    height: 2px;
    background: #111;
  }

  .header__nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 24px 28px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  }

  .header__nav.is-open {
    display: flex;
  }

  .header__nav a {
    padding: 15px 4px;
    border-bottom: 1px solid #eee;
  }

  .fv {
    height: auto;
    min-height: 530px;
    background-image: url("./lp/images/fv-bg-sp.webp");
    background-position: center calc(100% + var(--fv-parallax, 0px));
  }

  .fv::before {
    background: linear-gradient(0deg, rgb(255 255 255 / 64%) 0%, rgb(255 255 255 / 75%) 43%, rgba(255, 255, 255, 0.08) 74%);
  }

  .fv__inner {
    min-height: 560px;
    align-items: flex-start;
  }

  .fv__content {
    width: 100%;
    padding: 110px 4px 100px;
  }

  .fv__title {
    font-size: clamp(40px, 9vw, 58px);
    text-shadow: 0px 1px 11px rgb(255 255 255);
  }

  .fv__catch {
    margin-top: 25px;
    font-size: 20px;
    text-shadow: 0px 1px 11px rgb(255 255 255);
  }

  .fv__text {
    font-size: 15px;
    line-height: 1.85;
    text-shadow: 0px 1px 11px rgb(255 255 255);
  }

  .fv__text br {
    display: none;
  }

  .fv__button {
    width: min(100%, 390px);
    min-height: 64px;
    margin-top: 27px;
    padding: 0 28px;
    gap: 18px;
    font-size: 17px;
  }

  .fv__button .mail-icon {
    width: 28px;
    height: 21px;
  }

  .service-section {
    padding: 95px 0 105px;
  }

  .service-list {
    gap: 28px;
  }

  .service-list::before {
    display: none;
  }

  .service-card,
  .service-card--reverse {
    min-height: auto;
    padding: 32px 35px 32px 190px;
  }

  .service-card__icon,
  .service-card--reverse .service-card__icon {
    right: auto;
    left: 35px;
    width: 125px;
    height: 125px;
  }

  .service-card__icon img {
    width: 55px;
    height: 55px;
  }

  .flow-section {
    padding: 100px 0 115px;
  }

  .flow-list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 42px;
  }

  .flow-card:not(:nth-child(3n))::after {
    display: none;
  }

  .flow-card:nth-child(odd)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -30px;
    width: 17px;
    height: 17px;
    display: block;
    border-top: 5px solid var(--red);
    border-right: 5px solid var(--red);
    transform: translateY(-50%) rotate(45deg);
  }

  .seminar-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .company-section {
    padding: 95px 0 105px;
  }

  .company-box {
    padding: 65px 60px;
  }

  .bottom-cta__buttons {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 600px;
  }

  .footer__inner {
    align-items: flex-start;
    gap: 40px;
  }

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

/* ==================================================
   Smartphone: 767px
================================================== */
@media (max-width: 767px) {

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .problem-section,
  .search-section,
  .about-section,
  .reason-section,
  .service-section,
  .flow-section,
  .faq-section,
  .information-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .problem-section__inner,
  .search-section__inner,
  .about-section__inner,
  .reason-section__inner,
  .service-section__inner,
  .flow-section__inner,
  .faq-section__inner,
  .information-section__inner,
  .company-section__inner,
  .bottom-cta__inner,
  .footer__inner {
    width: calc(100% - var(--sp-gutter));
  }

  .search-section {
    padding-bottom: 0px;
  }

  .about-section {
    padding-bottom: 0px;
  }

  .problem-section {
    padding-bottom: 70px;
  }

  .problem-section__title {
    font-size: 25px;
  }

  .problem-section__line {
    width: 45px;
    height: 3px;
    margin: 18px auto 58px;
  }

  .problem-list {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .problem-card {
    min-height: 145px;
    padding: 42px 20px 25px;
  }

  .problem-card p {
    font-size: 17px;
  }

  .problem-section__message {
    margin-top: 42px;
    font-size: 15px;
    text-align: left;
  }

  .floating-contact {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 0;
    border-radius: 0;
    transform: none;
  }

  .floating-contact__item {
    min-height: 62px;
    padding: 10px;
    flex-direction: row;
    gap: 9px;
    font-size: 13px;
  }

  .floating-contact__item svg {
    width: 23px;
    height: 23px;
  }

  .floating-contact__item span br {
    display: none;
  }

  .floating-contact__item--tel {
    border-top: 1px solid var(--red);
  }

  .search-section__inner {
    gap: 42px;
  }

  .search-section__title {
    font-size: 28px;
  }

  .search-section__line {
    width: 45px;
    height: 3px;
    margin: 18px 0 26px;
  }

  .search-section__text {
    font-size: 15px;
    line-height: 1.9;
  }

  .search-section__text br {
    display: none;
  }

  .search-section__text p+p {
    margin-top: 18px;
  }

  .search-section__visual {
    padding: 15px 17px 0 0;
  }

  .search-section__frame {
    height: calc(100% - 18px);
    border-radius: 16px;
  }

  .search-section__image {
    aspect-ratio: 1.3 / 1;
    border-radius: 14px;
  }

  .about-section__inner {
    gap: 34px;
  }

  .about-section__image {
    aspect-ratio: 1.25 / 1;
    border-radius: 15px;
  }

  .about-section__label {
    margin-bottom: 10px;
    font-size: 19px;
  }

  .about-section__title {
    font-size: 27px;
    line-height: 1.55;
  }

  .about-section__title span {
    padding: 3px 6px 4px;
  }

  .about-section__line {
    width: 45px;
    height: 3px;
    margin: 21px 0 26px;
  }

  .about-section__text {
    font-size: 15px;
    line-height: 1.9;
  }

  .about-section__text br {
    display: none;
  }

  .about-section__text p+p {
    margin-top: 18px;
  }

  .reason-section__inner {
    padding: 55px 16px 65px;
    border-radius: 20px;
  }

  .reason-section__heading {
    margin-bottom: 75px;
  }

  .reason-section__heading p {
    font-size: 18px;
  }

  .reason-section__heading h2 {
    font-size: 25px;
  }

  .reason-section__line {
    width: 43px;
    height: 3px;
  }

  .reason-list {
    gap: 78px;
  }

  .reason-card__number {
    top: -48px;
    width: 95px;
    height: 72px;
    padding-top: 13px;
    font-size: 24px;
  }

  .reason-card__head {
    min-height: 92px;
    padding: 18px 12px;
    font-size: 18px;
  }

  .reason-card__body {
    padding: 15px 15px 23px;
  }

  .reason-card__body h3 {
    font-size: 19px;
  }

  .reason-card__body p {
    font-size: 15px;
  }

  .service-section__heading {
    margin-bottom: 45px;
  }

  .service-section__label {
    font-size: 18px;
  }

  .service-section__heading h2 {
    font-size: 26px;
  }

  .service-section__line {
    width: 44px;
    height: 3px;
    margin: 15px 0 21px;
  }

  .service-section__lead {
    font-size: 15px;
  }

  .service-section__lead br {
    display: none;
  }

  .service-list {
    gap: 23px;
  }

  .service-card,
  .service-card--reverse {
    padding: 28px 20px;
    display: block;
    text-align: left;
  }

  .service-card__icon,
  .service-card--reverse .service-card__icon {
    position: static;
    width: 92px;
    height: 92px;
    margin: 0 auto 23px;
    transform: none;
  }

  .service-card__icon img {
    width: 43px;
    height: 43px;
  }

  .service-card__content h3 {
    margin-bottom: 13px;
    padding: 4px 9px 6px;
    font-size: 19px;
  }

  .service-card__content p {
    font-size: 15px;
    line-height: 1.85;
  }

  .service-support {
    margin-top: 32px;
    padding: 27px 21px 30px;
    border-radius: 13px;
  }

  .service-support h3 {
    font-size: 19px;
  }

  .service-support p {
    font-size: 14px;
    line-height: 1.9;
  }

  .flow-section {
    padding-bottom: 90px;
  }

  .flow-section__heading {
    margin-bottom: 82px;
  }

  .flow-section__heading h2 {
    font-size: 27px;
  }

  .flow-section__line {
    width: 43px;
    height: 3px;
    margin-top: 14px;
  }

  .flow-list {
    grid-template-columns: 1fr;
    gap: 110px;
  }

  .flow-card {
    min-height: 205px;
    padding: 65px 20px 27px;
  }

  .flow-card__number {
    top: -47px;
    width: 94px;
    height: 94px;
  }

  .flow-card__number small {
    font-size: 14px;
  }

  .flow-card__number strong {
    font-size: 33px;
  }

  .flow-card h3 {
    margin-bottom: 15px;
    font-size: 21px;
  }

  .flow-card p {
    font-size: 15px;
  }

  .flow-card:nth-child(odd)::after,
  .flow-card:not(:nth-child(3n))::after {
    display: none;
  }

  .flow-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: auto;
    right: auto;
    bottom: -42px;
    left: 50%;
    width: 16px;
    height: 16px;
    display: block;
    border-top: 5px solid var(--red);
    border-right: 5px solid var(--red);
    transform: translateX(-50%) rotate(135deg);
  }

  .faq-section,
  .information-section {
    padding-bottom: 70px;
  }

  .faq-section__heading,
  .information-section__heading {
    margin-bottom: 45px;
  }

  .faq-section__heading h2,
  .information-section__heading h2,
  .company-section__heading h2 {
    font-size: 27px;
  }

  .faq-section__line,
  .company-section__line {
    width: 43px;
    height: 3px;
    margin-top: 14px;
  }

  .faq-list {
    gap: 20px;
  }

  .faq-item {
    padding: 0 19px;
    border-radius: 13px;
  }

  .faq-item__question {
    min-height: 82px;
    padding: 20px 38px 20px 43px;
  }

  .faq-item__title {
    font-size: 16px;
  }

  .faq-item__mark {
    font-size: 29px;
  }

  .faq-item__arrow {
    right: 3px;
    width: 13px;
    height: 13px;
  }

  .faq-item__answer {
    min-height: auto;
    margin-left: 43px;
    padding: 20px 0 23px;
  }

  .faq-item__answer>.faq-item__mark {
    top: 22px;
    left: -43px;
  }

  .faq-item__answer p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.85;
  }

  .information-section__heading>span {
    width: 43px;
    height: 3px;
    margin: 14px auto 25px;
  }

  .information-section__heading p {
    font-size: 14px;
  }

  .information-section__heading p br {
    display: none;
  }

  .information-title h3 {
    font-size: 23px;
  }

  .news-item {
    grid-template-columns: 85px 75px 20px;
    gap: 8px;
    padding: 15px 0;
  }

  .news-item p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .seminar-list {
    grid-template-columns: 1fr 1fr;
    gap: 13px;
  }

  .seminar-card__content {
    padding: 14px 11px 18px;
  }

  .seminar-card__content h4 {
    font-size: 15px;
  }

  .seminar-card__content p {
    font-size: 12px;
  }

  .company-section {
    padding: 70px 0 70px;
  }

  .company-box {
    padding: 45px 20px 48px;
    border-radius: 14px;
  }

  .company-section__heading {
    margin-bottom: 30px;
  }

  .company-list__row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 3px;
  }

  .company-list dt {
    font-size: 15px;
  }

  .company-list dd {
    font-size: 14px;
  }

  .company-sp-only {
    display: block;
  }

  .bottom-cta {
    padding: 70px 0 70px;
  }

  .bottom-cta h2 {
    margin-bottom: 21px;
    font-size: 29px;
  }

  .bottom-cta__text {
    font-size: 14px;
    line-height: 1.9;
  }

  .bottom-cta__text br {
    display: none;
  }

  .bottom-cta__buttons {
    gap: 15px;
    margin-top: 29px;
  }

  .bottom-cta__button {
    min-height: 65px;
    padding: 0 23px;
    font-size: 17px;
  }

  .bottom-cta__tel-text strong {
    font-size: 20px;
  }

  .bottom-cta__tel-text small {
    font-size: 10px;
  }

  .bottom-cta__mail-icon {
    width: 27px;
    height: 20px;
  }

  .bottom-cta__tel-icon {
    font-size: 27px;
  }

  .footer {
    padding: 38px 0 95px;
  }

  .footer__inner {
    display: flex;
    flex-direction: column;
    gap: 0px;
  }

  .footer__logo {
    width: 120px;
    margin: 0 auto 28px;
  }

  .footer__nav {
    justify-content: center;
    gap: 14px 20px;
    font-size: 13px;
  }

  .footer__copyright {
    margin-top: 28px;
    font-size: 10px;
  }
}

/* ==================================================
   Reduced motion
================================================== */
@media (prefers-reduced-motion: reduce) {

  .fv__title,
  .fv__catch,
  .fv__text,
  .fv__button,
  .js-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .fv {
    background-position: center;
  }

  .bottom-cta__bg {
    transform: none;
  }
}

.arrow,
.bottom-cta__arrow {
  width: 11px;
  height: 11px;
  margin-left: auto;
  flex-shrink: 0;
  font-size: 0;
  line-height: 1;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

/* =================================
   メールアイコン修正
================================= */

.mail-icon,
.bottom-cta__mail-icon {
  display: block;
  flex-shrink: 0;
  border: 0;
  background-color: currentColor;

  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='2.5' y='4.5' width='19' height='15' rx='1' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M3.5 6l8.5 6.5L20.5 6' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;

  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='2.5' y='4.5' width='19' height='15' rx='1' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M3.5 6l8.5 6.5L20.5 6' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

/* ヘッダー・FV */
.mail-icon {
  width: 29px;
  height: 30px;
}

/* 最後のCTA */
.bottom-cta__mail-icon {
  width: 32px;
  height: 30px;
}

.mail-icon::before,
.mail-icon::after,
.bottom-cta__mail-icon::before,
.bottom-cta__mail-icon::after {
  content: none;
}

@media (max-width: 550px) {
  .bottom-cta__button {
    min-height: 65px;
    padding: 0 23px;
    font-size: 17px;
    width: 100%;
    display: grid;
    align-items: center;
    grid-auto-flow: column;
  }

  .fv__button {
    width: min(100%, 390px);
    min-height: 64px;
    margin-top: 27px;
    padding: 0 28px;
    gap: 18px;
    font-size: 17px;
    display: grid;
    justify-content: center;
    grid-auto-flow: column;
    align-items: center;
    justify-items: center;
  }

  .fv__title {
    font-size: clamp(30px, 8vw, 58px);
    text-shadow: 0px 1px 11px rgb(255 255 255);
  }

  .fv__catch {
    margin-top: 25px;
    font-size: 18px;
    text-shadow: 0px 1px 11px rgb(255 255 255);
  }

  .fv__inner {
    min-height: 600px;
    align-items: flex-start;
  }

  .fv__content {
    width: 100%;
    padding: 170px 4px 60px;
  }

  .news-item {
    display: grid;
    grid-template-columns: 30fr 11fr 1fr 1fr;
  }

  .fv {
    background-position: center calc(100% + var(--fv-parallax, -30px));
    min-height: 600px;
  }
}





.problem-card {
    flex-direction: column;
}
.problem-card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 16px;
}

.problem-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.flow-card {
  position: relative;
  padding-top: 70px;
  overflow: visible;
}

.flow-card__image {
  width: calc(100% - 40px);
  aspect-ratio: 16 / 9;
  margin: 0 auto 24px;
  overflow: hidden;
  border-radius: 14px;
}

.flow-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}









.market-data_line {
    margin: 23px auto 65px;
}

.market-data {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(220, 37, 53, 0.08), transparent 30%),
    #fff8f8;
}

.market-data__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.market-data__lead {
  margin-top: 28px;
  line-height: 2;
  text-align: center;
}

.market-data__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 58px;
}

.market-data__card {
  position: relative;
  min-height: 310px;
  padding: 42px 28px 32px;
  border: 1px solid rgba(220, 37, 53, 0.12);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 45px rgba(70, 35, 38, 0.08);
}

.market-data__label {
  min-height: 48px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
}

.market-data__number {
  margin-top: 24px;
  color: #d92337;
  font-size: 22px;
  font-weight: 800;
  white-space: nowrap;
}

.market-data__number span {
  margin-right: 4px;
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1;
}

.market-data__text {
  margin-top: 26px;
  font-size: 14px;
  line-height: 1.9;
}

.market-data__source {
  margin-top: 24px;
  color: #777;
  font-size: 11px;
  text-align: right;
}

@media (max-width: 767px) {
  .market-data {
    padding: 70px 20px;
  }

  .market-data__card {
    min-height: auto;
    padding: 28px 16px 24px;
    border-radius: 18px;
  }

  .market-data__number {
    font-size: 15px;
  }

  .market-data__number span {
    font-size: 36px;
  }

  .market-data__text {
    font-size: 12px;
  }
	.market-data__list {
        display: flex;
        gap: 12px;
        margin-top: 45px;
        justify-items: center;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
	    .market-data_line {
        width: 45px;
        height: 3px;
        margin: 18px auto 45px;
    }
}





.market-data__card {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.market-data__card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.market-data__card:nth-child(2) {
  transition-delay: 0.1s;
}

.market-data__card:nth-child(3) {
  transition-delay: 0.2s;
}

.market-data__card:nth-child(4) {
  transition-delay: 0.3s;
}