@charset "UTF-8";
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * line-heightの計算
******************************************/
/*****************************************
 * percentの計算
******************************************/
/*****************************************
 * emの計算
******************************************/
/*****************************************
 * 流動値（clamp）の計算
 * px の最小・最大値を渡すと px+vw の clamp を返す。
 * rem を使わないので、可変rootフォントの影響を受けない。
 * 例: left: fluid(20px, 97px);              // 768〜1440px で 20→97px
 *     width: fluid(70px, 166px, 375px, 768px); // 区間を指定も可
******************************************/
/*****************************************
 * 流動値（clamp / コンテナ基準）
 * ビューポートではなく、container-type 指定の祖先コンテナの inline-size に追従させる。
 * px+cqi の clamp を返す。増加・減少どちらの範囲も指定可。
 * 例: font-size: fluid-cq(12, 15, 320, 425);  // 320→425pxで 12→15px（増加）
 *     padding: fluid-cq(10, 7, 320, 425);     // 320→425pxで 10→7px（減少）
******************************************/
/* Grid */
.grid {
  --grid-cols-sm: 1;
  --grid-gap-sm: 0;
  --grid-cols: var(--grid-cols-sm);
  --grid-gap: var(--grid-gap-sm);
  display: block grid;
  grid-template-columns: repeat(var(--grid-cols), minmax(var(--grid-min-size, 0), 1fr));
  gap: var(--grid-gap);
}
@media (width >= 48rem) {
  .grid {
    --grid-cols-md: var(--grid-cols-sm);
    --grid-gap-md: var(--grid-gap-sm);
    --grid-cols: var(--grid-cols-md);
    --grid-gap: var(--grid-gap-md);
  }
}
@media (width >= 64rem) {
  .grid {
    --grid-cols-lg: var(--grid-cols-md);
    --grid-gap-lg: var(--grid-gap-md);
    --grid-cols: var(--grid-cols-lg);
    --grid-gap: var(--grid-gap-lg);
  }
}
.grid > * {
  --grid-col-sm: auto;
  --grid-row-sm: auto;
  --grid-order-sm: 0;
  --grid-col: var(--grid-col-sm);
  --grid-row: var(--grid-row-sm);
  --grid-order: var(--grid-order-sm);
  grid-column: var(--grid-col);
  grid-row: var(--grid-row);
  order: var(--grid-order);
}
@media (width >= 48rem) {
  .grid > * {
    --grid-col-md: var(--grid-col-sm);
    --grid-row-md: var(--grid-row-sm);
    --grid-order-md: var(--grid-order-sm);
    --grid-col: var(--grid-col-md);
    --grid-row: var(--grid-row-md);
    --grid-order: var(--grid-order-md);
  }
}
@media (width >= 64rem) {
  .grid > * {
    --grid-col-lg: var(--grid-col-md);
    --grid-row-lg: var(--grid-row-md);
    --grid-order-lg: var(--grid-order-md);
    --grid-col: var(--grid-col-lg);
    --grid-row: var(--grid-row-lg);
    --grid-order: var(--grid-order-lg);
  }
}

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
html {
  font-size: 16px;
}

:root {
  /* Space */
  --space-md: clamp(
    1rem,
    0.6479rem + 1.5023vi,
    2rem
  );
  --space-lg: clamp(
    1.5rem,
    0.9718rem + 2.2535vi,
    2rem
  );
}

body {
  font-family: "Zen Old Mincho", serif;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #000;
  padding-bottom: 10rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
  color: inherit;
  font: inherit;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

button,
::file-selector-button {
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  touch-action: manipulation;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

*:focus-visible {
  outline: 2px solid magenta;
  outline-offset: 2px;
}

/* ----------------------------------------
  container
---------------------------------------- */
.container {
  background-color: #fff;
  min-height: 100vh;
}

@media screen and (min-width: 500px) and (max-width: 1023px) {
  .container {
    width: 100%;
    max-width: 425px;
    margin-right: auto;
    margin-left: auto;
    overflow: hidden;
    box-shadow: 0 0 1.875rem rgba(0, 0, 0, 0.12);
  }
}
@media screen and (min-width: 1024px) {
  .container {
    background-color: transparent;
    min-height: unset;
    box-shadow: none;
  }
}
/* ----------------------------------------
  全画面背景（中央 layout__main は除外）
---------------------------------------- */
@media screen and (min-width: 1024px) {
  body {
    background-color: #03325F;
  }
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: url("../images/common/body_bg.webp");
    background-size: cover;
    background-position: center;
    mix-blend-mode: plus-lighter;
    opacity: 0.04;
    pointer-events: none;
  }
}
/* ----------------------------------------
  layout
---------------------------------------- */
.layout {
  display: block;
}

@media screen and (min-width: 1024px) {
  .layout {
    display: flex;
    align-items: flex-start;
    min-height: 100vh;
  }
}
.layout__main {
  min-width: 0;
  flex: 1;
  /* FAQ等のフォントを layout__main 幅基準（cqi）で可変にするためのコンテナ */
  container-type: inline-size;
}

@media screen and (min-width: 1024px) {
  .layout__main {
    width: 425px;
    flex: none;
    background-color: #fff;
  }
}
/* ----------------------------------------
  sidebar-left
---------------------------------------- */
.sidebar-left {
  display: none;
}

@media screen and (min-width: 1024px) {
  .sidebar-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-width: 0;
    min-height: 100vh;
    background-color: transparent;
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 2.5rem 0;
  }
}
.sidebar-left__nav {
  margin-inline: auto;
}

.sidebar-left__list {
  list-style: none;
  margin-inline: auto;
}

.sidebar-left__item {
  margin-top: 1.625rem;
}

.sidebar-left__item:first-child {
  margin-top: 0;
}

.sidebar-left__link {
  display: flex;
  align-items: center;
  gap: 0.1875rem;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(14px, -0.7692307692px + 1.4423076923vw, 20px);
  line-height: 1.3;
  white-space: nowrap;
  text-decoration: none;
  transition: transform 0.3s;
}

@media (any-hover: hover) {
  .sidebar-left__link:hover {
    opacity: 1;
    transform: translateX(0.375rem);
  }
}
.sidebar-left__link::before {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 1.4375rem;
  height: 1.4375rem;
  background-image: url("../images/common/cta-line_2.svg");
  background-size: 0.375rem 0.75rem;
  background-repeat: no-repeat;
  background-position: center;
}

/* ----------------------------------------
  sidebar-right
---------------------------------------- */
.sidebar-right {
  display: none;
}

@media screen and (min-width: 1024px) {
  .sidebar-right {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 0;
    min-height: 100vh;
    background-color: transparent;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
  }
}
.sidebar-right__inner {
  display: none;
}

@media screen and (min-width: 1024px) {
  .sidebar-right__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 20.875rem;
    padding-inline: 0.75rem;
  }
}
.sidebar-right__illust {
  display: none;
}

@media screen and (min-width: 1024px) {
  .sidebar-right__illust {
    display: block;
    width: 100%;
    max-width: 17.375rem;
  }
}
.sidebar-right__illust img {
  width: 100%;
  height: auto;
}

/* ---- CTA modifier for sidebar ---- */
.cta-line--sidebar {
  padding: 0;
}

@media screen and (min-width: 1024px) {
  .cta-line--sidebar {
    width: 100%;
    margin-top: 0;
    padding: 0;
  }
  .cta-line--sidebar .cta-line__inner {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(27.22deg, #03325F 0%, #07529A 86%) border-box;
    border: 2px solid transparent;
  }
  .cta-line--sidebar .cta-line__text {
    color: #07529A;
    font-size: clamp(14px, 9.0769230769px + 0.4807692308vw, 16px);
  }
  .cta-line--sidebar .cta-line__btn-text {
    font-size: clamp(13px, 5.6153846154px + 0.7211538462vw, 16px);
  }
  .cta-line--sidebar .cta-line__btn {
    gap: 0.625rem;
  }
}
.fv {
  width: 100%;
  line-height: 0;
  background-color: #07529A;
}

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

.cta-line {
  padding: 1.25rem 0;
}

.cta-line__bg-dot {
  position: absolute;
  inset: 0;
  width: 33.125rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0.04375rem, transparent 0.05rem);
  background-size: 0.524375rem 0.524375rem;
  background-repeat: repeat;
  background-position: center;
  pointer-events: none;
}

.cta-line__bg-photo {
  position: absolute;
  inset: 0;
  background-image: url("../images/common/cta-line_photo.webp");
  background-size: cover;
  background-position: center;
  mix-blend-mode: plus-lighter;
  opacity: 0.07;
  pointer-events: none;
}

.cta-line__inner {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: linear-gradient(27.22deg, #03325F 0%, #07529A 86%);
  width: 94.4%;
  padding: 1.5rem 1.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .cta-line__inner {
    padding: 1.75rem 1.875rem;
  }
}

.cta__line-group {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.cta-line__head {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-line__icon {
  flex-shrink: 0;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: clamp(1.5rem, 0.167rem + 6.667vi, 1.938rem);
}

.cta-line__icon img {
  width: 100%;
  height: 100%;
}

.cta-line__text {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: clamp(17px, 13.5714285714px + 0.4464285714vw, 20px);
  line-height: 1.3;
  color: #fff;
  text-align: center;
  margin-left: 0.375rem;
  letter-spacing: 0;
}

.cta-line__text span {
  letter-spacing: -0.0888888889em;
}

.cta-line__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.75rem;
  background-color: #FF6A00;
  padding: 0.875rem 1.25rem;
  text-decoration: none;
}

@media (any-hover: hover) {
  .cta-line__btn:hover {
    opacity: 0.8;
  }
}
.cta-line__btn-text {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(16px, 13.7142857143px + 0.2976190476vw, 18px);
  line-height: 1.2;
  color: #fff;
  white-space: nowrap;
}

.cta-line__btn-arrow {
  flex-shrink: 0;
  width: 0.375rem;
  height: 0.75rem;
}

.cta-line__btn-arrow img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ---- sticky: FV表示時から常時下部にベタ付けで固定 ---- */
.cta-line--sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
}

.cta-line--sticky .cta-line__inner {
  width: 100%;
}

@media screen and (min-width: 500px) and (max-width: 1023px) {
  .cta-line--sticky {
    left: 50%;
    right: auto;
    width: 100%;
    max-width: 425px;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 1024px) {
  .cta-line--sticky {
    display: none;
  }
}
/* =============================================
   reasons-overview
   選ばれる理由 overview
   ============================================= */
.reasons-overview {
  position: relative;
  padding: 2.1875rem 0 2rem;
  background-color: #fff;
  overflow: hidden;
}

.reasons-overview__bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/common/reasons-overview_bg.webp");
  background-size: cover;
  background-position: center top;
  mix-blend-mode: multiply;
  opacity: 0.4;
}

.reasons-overview__inner {
  position: relative;
  z-index: 1;
  padding: 2.5rem clamp(14px, 8.5714vw - 13.4286px, 20px) 0;
}

.reasons-overview__catch {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
  text-align: center;
  color: #3E3A39;
}

.reasons-overview__heading-wrap {
  margin-top: 1.25rem;
  position: relative;
  z-index: 1;
}

.reasons-overview__heading-bg {
  display: block;
  width: 18.75rem;
  height: 2.9375rem;
  margin: 0 auto;
  background: linear-gradient(to right, #03325F, #07529A);
  clip-path: polygon(0.8125rem 0%, 100% 0%, calc(100% - 0.8125rem) 100%, 0% 100%);
}

.reasons-overview__heading {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.4;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.reasons-overview__grid {
  --grid-cols-sm: 2;
  --grid-gap-sm: 10px;
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.reasons-overview__card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(50% - 5px);
  min-height: 3.75rem;
  padding: 0.75rem 0.625rem;
  background-image: linear-gradient(108.825deg, #dcedff 0%, #edf6ff 100%);
  border-radius: 0.375rem;
}

.reasons-overview__card--wide {
  width: 60%;
}

@media (max-width: 389px) {
  .reasons-overview__card {
    width: 100%;
    width: -webkit-fill-available;
    width: -moz-available;
    width: stretch;
  }
  .reasons-overview__card--wide {
    width: 100%;
    width: -webkit-fill-available;
    width: -moz-available;
    width: stretch;
  }
}
.reasons-overview__card-text {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  color: #3E3A39;
  text-align: center;
  font-size: 0.84375rem;
}

@media (max-width: 425px) {
  .reasons-overview__card-text {
    font-size: 0.84375rem;
  }
}
@media (max-width: 389px) {
  .reasons-overview__card-text {
    font-size: 1rem;
  }
}
.reasons-overview__card-text--has-num {
  line-height: 1.1;
}

.reasons-overview__card-num {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.1;
  color: #07529A;
}

.reasons-overview__card-sup {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 0.625rem;
  line-height: 1.1;
  color: #3E3A39;
}

.reasons-overview__notes {
  margin-top: 1rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 300;
  font-size: 0.625rem;
  line-height: 1.6;
  color: #666666;
}

.problem {
  position: relative;
  overflow: hidden;
  padding: 5.625rem 0 3.75rem;
  background-color: #fff;
}

.problem__bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/common/problem_bg_gradient.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.problem__bg-photo {
  position: absolute;
  inset: 0;
  background-image: url("../images/common/reasons-overview_bg.webp");
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
  opacity: 0.6;
}

.problem__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 clamp(14px, 8.5714vw - 13.4286px, 20px);
}

.problem__heading {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 0.357rem + 5.714vi, 1.875rem);
  line-height: 1.4;
  color: #fff;
  text-align: center;
  letter-spacing: -0.1em;
}

.problem__subheading {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(0.813rem, -0.14rem + 4.762vi, 1.125rem);
  line-height: 1.4;
  color: #fff;
  text-align: center;
}

.problem__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  width: 19rem;
  margin-top: 1.25rem;
}

.problem__block + .problem__block {
  margin-top: 1.3125rem;
}

.problem__label {
  padding: 0.125rem 1.625rem;
  background-image: linear-gradient(124.89deg, #DCEDFF 0%, #edf6ff 100%);
}

.problem__label-text {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(18px, 8px + 3.0769230769cqi, 20px);
  line-height: 1.6;
  color: #07529A;
  text-align: center;
  white-space: nowrap;
}

.problem__texts {
  display: flex;
  flex-direction: column;
}

.problem__text {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
  text-align: center;
  letter-spacing: 0;
}

.problem__result {
  width: 100%;
  margin-top: 1.9375rem;
  border: 1px solid #fff;
  padding: 0.625rem clamp(6px, -12.2857142857px + 5.7142857143vw, 10px) 0.75rem;
}

.problem__result-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4375rem;
}

.problem__result-heading {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}

.problem__result-divider {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  opacity: 0.5;
}

.problem__result-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 0.625rem;
  margin-inline: auto;
}

.problem__result-item {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(12px, 5.9047619048px + 1.9047619048vw, 14px);
  line-height: 1.6;
  color: #fff;
  white-space: nowrap;
}

.problem__result-item::before {
  content: "";
  display: block;
  width: clamp(1rem, -0.157rem + 5.769vi, 1.375rem);
  height: clamp(1rem, -0.157rem + 5.769vi, 1.375rem);
  background-image: url("../images/common/problem_check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.problem__result-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4375rem;
  margin-top: 0.625rem;
}

.problem__result-footer {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}

/* ========================================
   reasons: コアサポで成婚されたカップルへインタビュー
======================================== */
.reasons {
  padding: 60px 0 60px;
  background-color: #fff;
}

.reasons__inner {
  width: 100%;
  padding: 0 clamp(14px, 8.5714vw - 13.4286px, 20px);
}

/* セクション見出し */
.reasons__heading {
  margin-bottom: 2.5rem;
  overflow: hidden;
}

.reasons__heading-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(17.5rem, 72.727%);
  height: 2.75rem;
  background: #002447;
  clip-path: polygon(0% 0%, calc(100% - 1.375rem) 0%, 100% 100%, 1.375rem 100%);
  margin-inline: auto;
  position: relative;
  right: min(3.375rem, 14.026%);
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(1rem, 0.238rem + 3.81vi, 1.25rem);
  line-height: 1.4;
  color: #fff;
  white-space: nowrap;
  padding-left: 1.25rem;
}

.reasons__heading-main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(16.875rem, 70.13%);
  height: 2.75rem;
  background: linear-gradient(to right, #03325F, #07529A);
  clip-path: polygon(1.375rem 0%, 100% 0%, calc(100% - 1.375rem) 100%, 0% 100%);
  margin-top: -0.25rem;
  margin-inline: auto;
  position: relative;
  left: min(3.375rem, 14.026%);
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(1rem, 0.238rem + 3.81vi, 1.25rem);
  line-height: 1.4;
  color: #fff;
  white-space: nowrap;
}

/* カードリスト */
.reasons__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* 個別カード */
.reasons__card {
  position: relative;
  border: 1px solid #03325F;
  background-color: #fff;
}

/* Case バッジ */
.reasons__card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  background: linear-gradient(29deg, #03325f 0%, #07529a 86%);
}

.reasons__card-badge-text {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 0.488rem + 3.81vi, 1.5rem);
  line-height: 1.4;
  color: #fff;
  white-space: nowrap;
}

/* カード上部エリア（写真＋名前）*/
.reasons__card-header {
  display: flex;
  align-items: center;
  height: 100px;
  padding-inline: clamp(10px, -35.7142857143px + 14.2857142857vw, 20px);
}

.reasons__card-name {
  flex: 1;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(14px, 4.8571428571px + 2.8571428571vw, 16px);
  line-height: 1.4;
  color: #3E3A39;
}

.reasons__card-photo {
  flex-shrink: 0;
  width: 170px;
  height: 100px;
  overflow: hidden;
  background-color: #d9d9d9;
}

.reasons__card-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}

/* Q&Aリスト */
.reasons__qa-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px 10px 20px;
}

.reasons__qa-item {
  /* qa itemラッパー */
}

/* Q行 */
.reasons__qa-q {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 13px;
  background-color: #07529A;
  color: #fff;
}

.reasons__qa-q-label {
  flex-shrink: 0;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  width: 14px;
}

.reasons__qa-q-text {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.3;
  letter-spacing: 0.05em;
}

.reasons__qa-q-br {
  display: none;
}

@media (max-width: 370px) {
  .reasons__qa-q-br {
    display: inline;
  }
}
/* A行 */
.reasons__qa-a {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding: 8px 13px;
  background-color: #DCEDFF;
  color: #3E3A39;
}

.reasons__qa-a-label {
  flex-shrink: 0;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  width: 14px;
}

.reasons__qa-a-text {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.6;
  letter-spacing: 0;
  flex: 1;
}

.flow {
  position: relative;
  overflow: hidden;
  padding: 6.25rem 0 0rem;
  background-color: #fff;
}

.flow__bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/common/flow_bg_gradient.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.flow__bg-photo {
  position: absolute;
  top: 25rem;
  inset: 0;
  background-image: url("../images/common/cta-line_photo.webp");
  background-size: cover;
  background-position: center;
  mix-blend-mode: plus-lighter;
  opacity: 0.07;
}

.flow__inner {
  position: relative;
  z-index: 1;
  padding: 0 clamp(14px, 8.5714vw - 13.4286px, 20px) 6.25rem;
}

.flow__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.1;
}

.flow__heading-sub {
  font-size: clamp(1.625rem, 0.863rem + 3.81vi, 1.875rem);
}

.flow__heading-main {
  font-size: clamp(2rem, 0.476rem + 7.619vi, 2.5rem);
}

.flow__list {
  position: relative;
  margin-top: 2rem;
  list-style: none;
  padding: 0;
}

.flow__list {
  position: relative;
}

.flow__item {
  position: relative;
  z-index: 1;
}

.flow__item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 1.8125rem;
  left: 1.0625rem;
  width: 1px;
  bottom: -2rem;
  border-left: 1px dashed rgba(255, 255, 255, 0.6);
}

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

.flow__item-header {
  display: flex;
  align-items: stretch;
}

.flow__item-num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.1875rem;
  min-height: 1.8125rem;
  padding: 0.5rem 0.8125rem;
  background-color: #002447;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #fff;
  text-align: center;
}

.flow__item-title {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  padding: 0.5rem 0.625rem;
  background-color: #002447;
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-size: 1.125rem;
  line-height: 1.3;
  color: #fff;
}

.flow__item-body {
  margin-left: min(2.1875rem, 8.974cqi);
  padding: 0.5rem clamp(8px, -17px + 7.6923076923cqi, 13px);
  background-color: #F8F8F8;
}

.flow__item-text {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.6;
  font-size: 0.9375rem;
  color: #3E3A39;
}

/* =============================================
   voice
   コアサポなら！90日で出会いが見つかる理由
   ============================================= */
.voice {
  position: relative;
  padding: 2.5rem 0 7rem;
  background-color: #fff;
}

.voice__bg {
  position: absolute;
  top: -3.75rem;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/common/voice_bg.webp");
  background-size: cover;
  background-position: center top;
  mix-blend-mode: multiply;
  opacity: 0.4;
}

.voice__inner {
  position: relative;
  z-index: 1;
  padding: 0 clamp(14px, 8.5714vw - 13.4286px, 20px);
}

/* 見出し */
.voice__heading {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  background: linear-gradient(28.57deg, #03325f 0%, #07529a 86.31%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.voice__heading-catch {
  display: block;
  font-size: clamp(1rem, 0.238rem + 3.81vi, 1.25rem);
  line-height: 1.1;
}

.voice__heading-main {
  display: block;
  font-size: clamp(1.625rem, 0.863rem + 3.81vi, 1.875rem);
  line-height: 1.2;
  margin-top: 0;
}

/* カードリスト */
.voice__list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* カード共通 */
.voice__card {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 201px;
  background: linear-gradient(135deg, #03325f 0%, #07529a 100%);
  clip-path: polygon(1.25rem 0%, 100% 0%, 100% 100%, 0% 100%, 0% 1.25rem);
  display: flex;
  align-items: flex-start;
  padding: 20px clamp(8px, -22px + 9.2307692308cqi, 14px);
  margin-top: 12px;
}

.voice__card:first-child {
  margin-top: 0;
}

/* カード4：ヘッダー(48px) + イラスト(155px) の縦積み */
.voice__card--last {
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  min-height: 12.6875rem;
  padding: 0;
}

/* 左エリア：番号 + アイコン */
.voice__card-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
  flex-shrink: 0;
  gap: 10px;
}

.voice__card-num {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.3;
  color: #fff;
  text-align: center;
}

.voice__card-icon {
  width: clamp(4.125rem, 1.458rem + 13.333vi, 5rem);
  display: block;
  aspect-ratio: 1/1;
}

.voice__card-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* 右エリア：タイトル + 説明文 */
.voice__card-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 0;
  padding-left: clamp(6px, -34px + 12.3076923077cqi, 14px);
  flex: 1;
  color: #fff;
}

.voice__card-title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1.3;
  color: #fff;
}

.voice__card-text {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: clamp(14px, 4px + 3.0769230769cqi, 16px);
  line-height: 1.6;
  color: #fff;
  letter-spacing: -0.02em;
}

/* カード4 ラベル（番号 + テキスト） */
.voice__card-label {
  display: flex;
  align-items: center;
  height: 3rem;
  flex-shrink: 0;
}

.voice__card-label-num {
  width: 8.375rem;
  flex-shrink: 0;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.3;
  color: #fff;
  text-align: center;
}

.voice__card-label-text {
  flex: 1;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  color: #fff;
}

/* カード4 イラスト */
.voice__card-couple {
  width: 100%;
  height: 9.6875rem;
  overflow: hidden;
  flex-shrink: 0;
}

.voice__card-couple img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}

.cta-mid {
  position: relative;
  overflow: hidden;
  padding: 1.125rem 0 1.5rem;
  margin-top: 1.5rem;
}

.cta-mid__inner {
  background: linear-gradient(48.88deg, #03325f 0%, #07529a 86.31%);
  margin-inline: auto;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.cta-mid__bg-photo {
  position: absolute;
  inset: 0;
  mix-blend-mode: plus-lighter;
  opacity: 0.07;
  z-index: 0;
}

.cta-mid__bg-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}

.cta-mid__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem clamp(14px, -56px + 21.5384615385cqi, 28px) 1.5rem;
}

.cta-mid__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3125rem;
}

.cta-mid__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(18px, 8px + 3.0769230769cqi, 20px);
  line-height: 1.3;
  color: #fff;
  text-align: center;
}

.cta-mid__subtitle {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(12px, 2px + 3.0769230769cqi, 14px);
  line-height: 1.3;
  color: #fff;
  text-align: center;
}

.cta-mid__label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.375rem 1.25rem;
  background: #fff;
  border-radius: 1.875rem;
}

.cta-mid__label-text {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  color: #07529A;
  white-space: nowrap;
  letter-spacing: -0.07em;
}

.cta-mid__price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}

.cta-mid__price-original {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  color: #fff;
  white-space: nowrap;
}

.cta-mid__price-original-num {
  font-size: clamp(1.125rem, 0.744rem + 1.905vi, 1.25rem);
}

.cta-mid__price-arrow {
  width: 1.375rem;
  height: 1rem;
  flex-shrink: 0;
}

.cta-mid__price-arrow img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.cta-mid__price-free {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  color: #FFE500;
  white-space: nowrap;
  line-height: 1.3;
}

.cta-mid__price-free-num {
  font-size: clamp(2.5rem, 0.595rem + 9.524vi, 3.125rem);
  letter-spacing: 0.02em;
}

.cta-mid__price-free-unit {
  font-size: clamp(1.375rem, 0.804rem + 2.857vi, 1.563rem);
  letter-spacing: 0.03em;
}

.cta-mid__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.375rem, -0.387rem + 3.81vi, 0.625rem);
  padding: 0.875rem 1.25rem;
  background: #FF6A00;
  width: 100%;
  text-decoration: none;
}

@media (any-hover: hover) {
  .cta-mid__btn:hover {
    opacity: 0.85;
  }
}
.cta-mid__btn-text {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(14px, 4px + 3.0769230769cqi, 16px);
  line-height: 1.2;
  color: #fff;
  white-space: nowrap;
}

.cta-mid__btn-arrow {
  width: 0.375rem;
  height: 0.75rem;
  flex-shrink: 0;
  position: relative;
}

.cta-mid__btn-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(45deg);
  width: 0.375rem;
  height: 0.375rem;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
}

.cta-mid__note {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: clamp(9px, 4px + 1.5384615385cqi, 10px);
  line-height: 1.6;
  color: #fff;
  text-align: center;
}

/* ============================================================
   session
   ============================================================ */
.session {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 2.5rem 0 3.75rem;
  margin-top: -5rem;
}

.session__bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/common/session_bg.svg");
  background-size: cover;
  background-position: center top;
  pointer-events: none;
}

.session__inner {
  position: relative;
  z-index: 1;
  padding: 0 clamp(14px, 8.5714vw - 13.4286px, 20px);
}

.session__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(1.375rem, 0.613rem + 3.81vi, 1.625rem);
  line-height: 1.2;
  color: #fff;
  text-align: center;
  margin-top: 7.5rem;
}

.session__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.session__item {
  background-color: #fff;
  padding: 14px clamp(10px, -15px + 7.6923076923cqi, 15px) 18px;
}

.session__item-title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-size: clamp(15px, 0px + 4.6153846154cqi, 18px);
  line-height: 1.4;
  color: #07529A;
  text-align: center;
}

.session__item-body {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: clamp(14px, 4.8571428571px + 2.8571428571vw, 16px);
  line-height: 1.6;
  color: #3E3A39;
  margin-top: 0.3125rem;
}

.price {
  padding: 5rem 0 3.75rem;
  background: #fff url("../images/common/price_bg.png") center top/cover no-repeat;
}

.price__inner {
  padding: 0 clamp(14px, 8.5714vw - 13.4286px, 20px);
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}

/* ----------------------------------------
   見出し共通
---------------------------------------- */
.price__heading-wrap {
  position: relative;
  z-index: 10;
  width: 100%;
}

.price__heading-bg {
  display: block;
  width: 18.75rem;
  height: 2.9375rem;
  margin: 0 auto;
  background: linear-gradient(to right, #03325F, #07529A);
  clip-path: polygon(0.8125rem 0%, 100% 0%, calc(100% - 0.8125rem) 100%, 0% 100%);
}

.price__heading-text {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.4;
  color: #fff;
  white-space: nowrap;
  text-align: center;
}

/* ========================================
   料金テーブル
======================================== */
.price__fee {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.price__fee-table {
  margin-top: 1.25rem;
  width: 100%;
  background: #F8F8F8;
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
}

.price__fee-row {
  display: flex;
  gap: 0.1875rem;
  align-items: stretch;
  width: 100%;
  border-bottom: 0.25rem solid #fff;
}

.price__fee-row--free {
  border-bottom: none;
}

.price__fee-label {
  flex: 1;
  background: #DCEDFF;
  padding: 0.625rem clamp(12px, -28px + 12.3076923077cqi, 20px);
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  color: #3E3A39;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.price__fee-value {
  flex: 1;
  background: #fff;
  padding: 0.125rem 1rem 0.4375rem;
  display: flex;
  align-items: flex-end;
  gap: 0.125rem;
  min-height: 2.75rem;
}

.price__fee-num {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(16px, -4px + 6.1538461538cqi, 20px);
  line-height: 1.5;
  color: #3E3A39;
  white-space: nowrap;
}

.price__fee-num--free {
  font-size: 1.875rem;
  color: #07529A;
}

.price__fee-unit {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(14px, 4px + 3.0769230769cqi, 16px);
  line-height: 1.5;
  color: #3E3A39;
}

.price__fee-unit--free {
  color: #07529A;
}

.price__fee-tax {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #3E3A39;
}

/* ----------------------------------------
   全額返金ボックス
---------------------------------------- */
.price__refund {
  position: relative;
  z-index: 10;
  margin-top: 1.25rem;
  width: 100%;
}

.price__refund-box {
  background: #fff;
  border: 0.0625rem solid #03325F;
  padding: 0.75rem clamp(10px, -40px + 15.3846153846cqi, 20px) 0.9375rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.6875rem;
  width: 100%;
}

.price__refund-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.price__refund-title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.6;
  font-size: 1.375rem;
  text-align: center;
  background: linear-gradient(10deg, #03325F 0%, #07529A 86.31%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: 100%;
}

.price__refund-line {
  margin-top: 0.3125rem;
  width: 10rem;
  height: 0.0625rem;
  overflow: visible;
}

.price__refund-line img {
  width: 10rem;
  height: 0.0625rem;
}

.price__refund-desc {
  margin-top: 0.3125rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.6;
  font-size: 1.125rem;
  color: #3E3A39;
  text-align: center;
  letter-spacing: 0;
}

.price__refund-illust {
  flex-shrink: 0;
  width: 6.5625rem;
  height: 6.25rem;
}

@media (max-width: 374px) {
  .price__refund-illust {
    display: none;
  }
}
.price__refund-illust img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.price__refund-note {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 0.6875rem;
  line-height: 1.6;
  color: #3E3A39;
  text-align: center;
  opacity: 0.5;
  width: 100%;
}

/* ========================================
   比較テーブル
======================================== */
.price__compare {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.price__table {
  margin-top: 1.25rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
  background: #F8F8F8;
}

.price__table-header {
  display: flex;
  gap: 0.1875rem;
}

.price__table-head {
  flex: 1;
  padding: 0.5rem clamp(8px, -12px + 6.1538461538cqi, 12px);
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.4;
  color: #fff;
  text-align: left;
}

.price__table-head--mine {
  background: #002447;
  font-weight: 900;
}

.price__table-head--other {
  background: #07529A;
}

.price__table-category {
  background: #DCEDFF;
  padding: 0.375rem 1.25rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #3E3A39;
}

.price__table-row {
  display: flex;
  gap: 0.1875rem;
}

.price__table-cell {
  flex: 1;
  background: #fff;
  padding: 0.5rem clamp(6px, -24px + 9.2307692308cqi, 12px);
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(13px, 8px + 1.5384615385cqi, 14px);
  line-height: 1.4;
  letter-spacing: 0;
}

.price__table-cell--mine {
  font-weight: 700;
  color: #07529A;
}

.price__table-cell--other {
  font-weight: 500;
  color: #3E3A39;
}

/* ========================================
   CTA ブロック
======================================== */
.price__cta {
  position: relative;
  z-index: 10;
  width: 100%;
  overflow: hidden;
}

/* ============================================
   process / コアサポが大切にしているもの
   ============================================ */
.process {
  position: relative;
  padding: 3.75rem 0;
  background-color: #fff;
}

.process__bg-photo {
  position: absolute;
  top: -15rem;
  left: 0;
  right: 0;
  bottom: -3.75rem;
  background-image: url("../images/common/process_faq_bg.webp");
  background-size: cover;
  background-position: center -80px;
  mix-blend-mode: exclusion;
  opacity: 0.07;
}

.process__inner {
  position: relative;
  z-index: 1;
  padding: 0 clamp(14px, 8.5714vw - 13.4286px, 20px);
}

.process__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.4;
  text-align: center;
  color: #3E3A39;
}

.process__list {
  display: flex;
  flex-direction: column;
  margin-top: 1.25rem;
}

/* ---- カード共通 ---- */
.process__item {
  background-color: #fff;
  border: 1px solid #3E3A39;
}

.process__item-header {
  display: flex;
  align-items: center;
  height: 2.375rem;
  background-color: #3E3A39;
  padding: 0 0.625rem 0 clamp(10px, -40px + 15.3846153846cqi, 20px);
}

.process__item-num {
  flex-shrink: 0;
  width: clamp(20px, -45px + 20cqi, 33px);
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(18px, -12px + 9.2307692308cqi, 24px);
  line-height: 1.3;
  color: #fff;
}

.process__item-divider {
  flex-shrink: 0;
  width: 1px;
  height: 1.5rem;
  background-color: rgba(255, 255, 255, 0.5);
  margin-right: clamp(6px, -34px + 12.3076923077cqi, 14px);
}

.process__item-label {
  flex: 1;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(15px, 10px + 1.5384615385cqi, 16px);
  line-height: 1.4;
  letter-spacing: 0;
  color: #fff;
}

.process__item-body {
  padding: 0.875rem clamp(8px, -32px + 12.3076923077cqi, 16px) 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}

.process__item-text {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(14px, 4px + 3.0769230769cqi, 16px);
  line-height: 1.6;
  letter-spacing: 0;
  color: #3E3A39;
}

/* ---- コネクター ---- */
.process__connector {
  align-self: flex-start;
  padding-left: 2.0625rem;
  height: 1.5rem;
}

.process__connector img {
  display: block;
  width: 1px;
  height: 1.5rem;
}

.process__connector + .process__item,
.process__connector + .process__bantoku {
  margin-top: 1.25rem;
}

/* ---- 絆徳カード ---- */
.process__bantoku {
  background-color: #fff;
  border: 1px solid #3E3A39;
}

.process__bantoku-header {
  height: 2.375rem;
  background-color: #3E3A39;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process__bantoku-label {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  color: #fff;
}

.process__bantoku-body {
  padding: 0.875rem 0.625rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  text-align: center;
}

.process__bantoku-text {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(14px, 10.9523809524px + 0.9523809524vw, 15px);
  line-height: 1.6;
  color: #3E3A39;
  letter-spacing: 0;
}

/* ========================================
   faq
======================================== */
.faq {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 3.75rem 0;
  background-color: #fff;
}

.faq__bg-photo {
  position: absolute;
  top: -10.25rem;
  left: 0;
  right: 0;
  height: 30rem;
  background-image: url("../images/common/process_faq_bg.webp");
  background-size: cover;
  background-position: center top;
  mix-blend-mode: exclusion;
  opacity: 0.07;
}

.faq__inner {
  position: relative;
  z-index: 1;
  padding: 0 clamp(14px, 8.5714vw - 13.4286px, 20px);
}

.faq__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.4;
  text-align: center;
  background: linear-gradient(6.88deg, #03325F 0%, #07529A 86.31%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
  margin-top: 1.25rem;
}

.faq__item {
  display: flex;
  flex-direction: column;
}

.faq__question {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  background-color: #07529A;
  padding: 0.5rem clamp(7px, 19.1428571429px - 2.8571428571cqi, 10px);
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
}

.faq__question-label {
  flex-shrink: 0;
  width: 0.875rem;
  font-size: 1.125rem;
  line-height: 1.6;
  text-align: center;
}

.faq__question-text {
  flex: 1;
  font-size: clamp(14px, 7.9047619048px + 1.9047619048cqi, 16px);
  line-height: 1.3;
  letter-spacing: 0;
}

.faq__answer {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  background-color: #DCEDFF;
  padding: 0.5rem clamp(7px, -2.1428571429px + 2.8571428571cqi, 10px);
  color: #3E3A39;
}

.faq__answer-label {
  flex-shrink: 0;
  width: 0.875rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.6;
  text-align: center;
}

.faq__answer-text {
  flex: 1;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: clamp(14px, 10.9523809524px + 0.9523809524cqi, 15px);
  line-height: 1.6;
}

.cta-footer {
  padding: 1.25rem 0;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 28px;
  background-color: #F8F8F8;
}

.footer-nav__info {
  text-align: left;
}

.footer-nav__name {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #3E3A39;
}

.footer-nav__address {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.6;
  color: #3E3A39;
  margin-top: 0.5rem;
}

.footer-nav__tel {
  display: block;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.6;
  color: #3E3A39;
  text-decoration: none;
  margin-top: 0.5rem;
}

.footer-nav__copy {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 10px;
  line-height: 1.6;
  color: #3E3A39;
  text-align: center;
  opacity: 0.5;
}

.not-found-body {
  padding-bottom: 0;
  background-color: #3b79b7;
}

.not-found-body::before {
  content: none;
}

.not-found {
  min-height: 100vh;
  padding: 5rem 1.25rem 3.125rem;
  background-color: #3b79b7;
  color: #fff;
}

.not-found__inner {
  max-width: 42.5rem;
  margin-inline: auto;
}

.not-found__heading {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  text-align: center;
}

.not-found__heading-code {
  display: block;
  font-size: clamp(64px, 11.4285714286px + 6.8452380952vw, 110px);
  line-height: 1;
}

.not-found__heading-text {
  display: block;
  font-size: clamp(28px, 2.8571428571px + 3.2738095238vw, 50px);
  line-height: 1;
}

.not-found__lead {
  margin-top: clamp(12px, 2.8571428571px + 1.1904761905vw, 20px);
  font-family: "Hiragino Kaku Gothic Pro", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 300;
  font-size: clamp(16px, 3.4285714286px + 1.6369047619vw, 27px);
  line-height: 1.4;
  text-align: center;
}

.not-found__reasons-heading {
  margin-top: clamp(60px, -0.5714285714px + 7.8869047619vw, 113px);
  font-family: "Hiragino Kaku Gothic Pro", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 300;
  font-size: clamp(14px, 7.1428571429px + 0.8928571429vw, 20px);
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
}

.not-found__box {
  margin-top: 1rem;
  padding: 1.8125rem 1.875rem 1.875rem;
  background-color: #fff;
}

.not-found__list {
  padding-left: 1.75rem;
  font-family: "Hiragino Kaku Gothic Pro", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #666666;
  list-style: disc;
}

.not-found__list-item:not(:first-child) {
  margin-top: 0.25rem;
}
/*# sourceMappingURL=style.css.map */
