@charset "UTF-8";
/* =========================================================
   Responsive Space Toolkit
   ---------------------------------------------------------
   - 6段階のスペーススケール（xxl / xl / lg / md / sm / xs）をPC・SPで個別にpx指定
   - clamp() は使わず、SP側はメディアクエリで置き換え
   - すべて !default 指定のため、利用側で @use ".../space" with (...) による上書きが可能
   - 値の取得には space-value()、プロパティ適用には mixin space() を利用
   ---------------------------------------------------------
   使用例:
     @use "@/styles/mixins/space" as space;
     .hero {
       @include space.space(margin-bottom, xxl);
     }
     .card {
       @include space.space-x(md);
     }
========================================================= */
/* =========================================================
   Fluid Typography Toolkit
   ---------------------------------------------------------
   - 主要ビューポートは 390px〜1440px を既定値に設定（現行スマホ〜大型ノートまでを想定）
   - clamp() 生成時のルートフォントサイズは 16px を基準に算出
   - 設定／バリアントはすべて !default 指定なので、@use ".../typography" with (...) で容易にカスタマイズ可能
   - `properties` の default 以外のキーは $typography-breakpoints に登録した名称を参照
   - `size.min` / `size.max` は viewport min / max 時点の rem 値（大小にかかわらずスケール可能）
   ---------------------------------------------------------
   使用例:
     @use "@/styles/mixins/typography" as typo with (
       $typography-settings: (
         viewport: (min: 414, max: 1600)
       )
     );
     .heading {
       @include typo.headline;
     }
   ---------------------------------------------------------
   設計方針:
     1. 最小／最大ビューポートは実機の中央値を採用し、スケール外では clamp の端に張り付く挙動とする
     2. バリアントのプロパティは default（PC相当）を必須とし、必要なブレークポイントのみ上書き
     3. ブレークポイント名を追加すれば、properties から即座に参照できる柔軟な構造を維持
========================================================= */
/* Variant size reference (viewport-min → viewport-max, root-font-size × 16px)
   display: 44–60px
   headline: 34–40px

   title-l: 24–32px
   title-s: 20–24px

   body-l: 18–20px
   body-m: 16–18px
   body-s: 14–16px
   body-xs: 12–14px

   label-l: 16–18px
   label-s: 12–14px
*/
/* CSS Reset - Modern Best Practices */
/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin and padding */
* {
  margin: 0;
  padding: 0;
}

/* HTML and Body */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6,
p {
  overflow-wrap: break-word;
}

/* Lists */
ul,
ol {
  list-style: none;
}

/* Media */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Forms */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Remove default button styles */
button,
input[type=submit],
input[type=reset] {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

/* Accessibility */
:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* Remove spinners from number inputs */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 40px;
}
@media (max-width: 768px) {
  .container {
    padding-inline: 28px;
  }
}

html body {
  color: #3f3f3f;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8285714286rem + 0.1904761905vw, 1rem);
  line-height: 1.6;
  letter-spacing: 0.01em;
  font-weight: 400;
}

.sectionInner {
  max-width: 700px;
  margin: 0 auto;
  padding-inline: 40px;
}
@media (max-width: 768px) {
  .sectionInner {
    padding-inline: 28px;
  }
}

#about {
  background-color: rgba(255, 241, 129, 0.05);
  font-family: "Noto Serif JP", serif;
  padding-block: 40px;
}
@media (max-width: 768px) {
  #about {
    padding-block: 28px;
  }
}
#about .aboutContainer {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  #about .aboutContainer {
    gap: 16px;
  }
}
#about .aboutContainer .copy {
  text-align: center;
  font-size: clamp(1.25rem, 1.1571428571rem + 0.380952381vw, 1.5rem);
  line-height: 1.45;
  letter-spacing: 0;
  font-weight: 700;
}
@media (max-width: 768px) {
  #about .aboutContainer .copy {
    line-height: 1.5;
    letter-spacing: 0.01em;
    font-weight: 700;
  }
}
#about .aboutContainer .copy .accent {
  font-size: clamp(1.5rem, 1.3142857143rem + 0.7619047619vw, 2rem);
  line-height: 1.4;
  letter-spacing: 0;
  font-weight: 700;
}
@media (max-width: 768px) {
  #about .aboutContainer .copy .accent {
    line-height: 1.4;
    letter-spacing: 0.01em;
    font-weight: 700;
  }
}
#about .aboutContainer .images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  #about .aboutContainer .images {
    gap: 16px;
  }
}
#about .aboutContainer .images img:nth-of-type(1) {
  grid-column: 1/3;
}
#about .aboutContainer .desc {
  font-size: clamp(1rem, 0.9535714286rem + 0.1904761905vw, 1.125rem);
  line-height: 1.4;
  letter-spacing: 0.08em;
  font-weight: 700;
}
#about .aboutContainer .note {
  font-size: clamp(0.875rem, 0.8285714286rem + 0.1904761905vw, 1rem);
  line-height: 1.6;
  letter-spacing: 0.01em;
  font-weight: 400;
}

.ctaBtn:hover {
  opacity: 0.8;
}

.compare {
  font-size: clamp(12px, 2vw, 20px);
  font-weight: bold;
  width: 100%;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .compare {
    margin-top: 28px;
  }
}
.compare col.colGroup {
  width: 10%;
}
.compare col.colItem {
  width: 30%;
}
.compare col.colMypace,
.compare col.colStandard,
.compare col.colPremium,
.compare col.colSmalead,
.compare col.colA,
.compare col.colB {
  width: 20%;
}
.compare thead th {
  text-align: center;
  height: clamp(52px, 13vw, 60px);
}
.compare tbody {
  border: 1px solid #a6a6a6;
}
.compare tbody th,
.compare tbody td {
  border-bottom: 1px solid #f5f5f5;
}
.compare tbody th.group {
  text-align: center;
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: pre;
  background-color: #a6a6a6;
  color: #fff;
}
.compare tbody th.item {
  text-align: left;
  padding: 10px;
}
@media (max-width: 768px) {
  .compare tbody th.item {
    padding: 8px;
  }
}
.compare tbody td {
  text-align: center;
  height: clamp(52px, 13vw, 60px);
}
.compare tbody tr:last-child th,
.compare tbody tr:last-child td {
  border-bottom: none;
}
.compare.comparePlan col.colStandard {
  background-color: rgba(233, 125, 137, 0.2);
  border: 1px solid #e97d89;
}
.compare.comparePlan th.colStandard {
  position: relative;
  background-color: #e97d89;
  color: #fff;
  overflow: visible;
}
.compare.comparePlan th.colStandard img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  transform: translate(0, -120%);
}
.compare.comparePlan col.colMypace,
.compare.comparePlan col.colPremium {
  background-color: rgba(52, 196, 230, 0.2);
}
.compare.comparePlan th.colMypace,
.compare.comparePlan th.colPremium {
  background-color: #34c4e6;
  color: #fff;
}
.compare.compareCompetitor col.colSmalead {
  background-color: #e97d89;
  border: 1px solid #e97d89;
  color: #fff;
}
.compare.compareCompetitor th.colSmalead {
  background-color: #fff;
  border: 1px solid #e97d89;
}
.compare.compareCompetitor tbody td:first-of-type {
  color: #fff;
}
.compare.compareCompetitor th.colA,
.compare.compareCompetitor th.colB {
  background-color: #a6a6a6;
  color: #fff;
}

.cta {
  background-color: #e97d89;
  padding-block: 40px;
}
@media (max-width: 768px) {
  .cta {
    padding-block: 28px;
  }
}
.cta .contactContaier {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .cta .contactContaier {
    gap: 16px;
  }
}
.cta .ctaHeader {
  width: 100%;
}
.cta .ctaHeader img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.cta .ctaInner {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: white;
  border-radius: 4px;
  padding: 20px;
  gap: 20px;
}
@media (max-width: 768px) {
  .cta .ctaInner {
    padding: 16px;
  }
}
@media (max-width: 768px) {
  .cta .ctaInner {
    gap: 16px;
  }
}
.cta .ctaInner .ctaListItem {
  display: flex;
  align-items: center;
}
.cta .ctaInner .ctaListItem::before {
  content: "";
  display: block;
  background-image: url("images/ctaCheck.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  flex-shrink: 0;
}
.cta .ctaInner .ctaMainList .ctaListItem {
  border-bottom: 1px dotted #e97d89;
  gap: 20px;
  padding-block: 20px;
  font-size: clamp(18px, 4.5vw, 30px);
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 768px) {
  .cta .ctaInner .ctaMainList .ctaListItem {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .cta .ctaInner .ctaMainList .ctaListItem {
    padding-block: 16px;
  }
}
.cta .ctaInner .ctaMainList .ctaListItem:last-child {
  border: none;
}
.cta .ctaInner .ctaMainList .ctaListItem::before {
  width: 24px;
  height: 24px;
}
.cta .ctaInner .ctaBtns {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 1;
  gap: 20px;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .cta .ctaInner .ctaBtns {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .cta .ctaInner .ctaBtns {
    padding-bottom: 16px;
  }
}
.cta .ctaInner .ctaSubList {
  display: flex;
  border-top: 1px solid #e97d89;
  border-bottom: 1px solid #e97d89;
  padding-block: 20px;
}
@media (max-width: 768px) {
  .cta .ctaInner .ctaSubList {
    padding-block: 16px;
  }
}
.cta .ctaInner .ctaSubList .ctaListItem {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: clamp(10px, 3vw, 24px);
  line-height: 1;
}
.cta .ctaInner .ctaSubList .ctaListItem::before {
  width: 16px;
  height: 16px;
}

#faq {
  padding-block: 40px;
  background-color: #34c4e6;
  color: white;
}
@media (max-width: 768px) {
  #faq {
    padding-block: 28px;
  }
}
#faq .faqContainer {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 768px) {
  #faq .faqContainer {
    gap: 28px;
  }
}
#faq .faqHeading {
  text-align: center;
  font-size: clamp(1.5rem, 1.3142857143rem + 0.7619047619vw, 2rem);
  line-height: 1.4;
  letter-spacing: 0;
  font-weight: 700;
}
@media (max-width: 768px) {
  #faq .faqHeading {
    line-height: 1.4;
    letter-spacing: 0.01em;
    font-weight: 700;
  }
}
#faq .faqList {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  #faq .faqList {
    gap: 16px;
  }
}
#faq .faqItem {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
}
#faq .faqItem.is-open .faqQuestion .iconClose {
  display: none;
}
#faq .faqItem.is-open .faqQuestion .iconOpen {
  display: block;
}
#faq .faqItem.is-open .faqAnswer {
  display: block;
}
#faq .faqItem.is-open .icon::after {
  transform: rotate(90deg);
}
#faq .faqQuestion {
  width: 100%;
  color: #34c4e6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s;
  padding: 20px;
  gap: 10px;
  font-size: clamp(1rem, 0.9535714286rem + 0.1904761905vw, 1.125rem);
  line-height: 1.4;
  letter-spacing: 0.08em;
  font-weight: 700;
}
@media (max-width: 768px) {
  #faq .faqQuestion {
    padding: 16px;
  }
}
@media (max-width: 768px) {
  #faq .faqQuestion {
    gap: 8px;
  }
}
#faq .faqQuestion span {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #34c4e6;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  line-height: 1;
}
#faq .faqQuestion p {
  flex: 1;
}
#faq .faqQuestion .icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  fill: #34c4e6;
}
#faq .faqQuestion .iconClose {
  display: block;
}
#faq .faqQuestion .iconOpen {
  display: none;
}
#faq .faqAnswer {
  display: none;
  padding: 20px;
  color: #3f3f3f;
}
@media (max-width: 768px) {
  #faq .faqAnswer {
    padding: 16px;
  }
}
#faq .faqAnswer p {
  font-size: clamp(0.875rem, 0.8285714286rem + 0.1904761905vw, 1rem);
  line-height: 1.6;
  letter-spacing: 0.01em;
  font-weight: 400;
}

#flow {
  display: flex;
  flex-direction: column;
  padding-block: 40px;
  gap: 40px;
}
@media (max-width: 768px) {
  #flow {
    padding-block: 28px;
  }
}
@media (max-width: 768px) {
  #flow {
    gap: 28px;
  }
}
#flow .flowHeader .flowLead {
  text-align: center;
  font-size: clamp(1.25rem, 1.1571428571rem + 0.380952381vw, 1.5rem);
  line-height: 1.45;
  letter-spacing: 0;
  font-weight: 700;
}
@media (max-width: 768px) {
  #flow .flowHeader .flowLead {
    line-height: 1.5;
    letter-spacing: 0.01em;
    font-weight: 700;
  }
}
#flow .flowHeader .flowLead .accent {
  font-size: clamp(1.5rem, 1.3142857143rem + 0.7619047619vw, 2rem);
  line-height: 1.4;
  letter-spacing: 0;
  font-weight: 700;
}
@media (max-width: 768px) {
  #flow .flowHeader .flowLead .accent {
    line-height: 1.4;
    letter-spacing: 0.01em;
    font-weight: 700;
  }
}
#flow .flowContainer {
  max-width: 1024px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-inline: 40px;
}
@media (max-width: 768px) {
  #flow .flowContainer {
    gap: 28px;
  }
}
@media (max-width: 768px) {
  #flow .flowContainer {
    padding-inline: 28px;
  }
}
#flow .flowCarousel {
  position: relative;
}
#flow .flowTrack {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: auto;
  gap: 20px;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  #flow .flowTrack {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  #flow .flowTrack {
    padding-bottom: 16px;
  }
}
#flow .flowTrack.is-snap-disabled {
  scroll-snap-type: none;
}
#flow .flowTrack::-webkit-scrollbar {
  height: 4px;
}
#flow .flowTrack::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 999px;
}
#flow .flowCard {
  margin-top: 30px;
  position: relative;
  overflow: visible;
  flex: 0 0 100%;
  scroll-snap-align: start;
  background-color: #ffffff;
  border: 1px solid #e4e4e4;
  display: flex;
  flex-direction: column;
  min-height: 400px;
  padding: 20px;
  gap: 20px;
}
@media (max-width: 768px) {
  #flow .flowCard {
    padding: 16px;
  }
}
@media (max-width: 768px) {
  #flow .flowCard {
    gap: 16px;
  }
}
#flow .flowCard .flowNumber {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
}
#flow .flowCard .flowNumber img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
#flow .flowCard .flowCardTitle {
  text-align: center;
  color: #34c4e6;
  margin-top: 30px;
  font-size: clamp(1.25rem, 1.1571428571rem + 0.380952381vw, 1.5rem);
  line-height: 1.45;
  letter-spacing: 0;
  font-weight: 700;
}
@media (max-width: 768px) {
  #flow .flowCard .flowCardTitle {
    line-height: 1.5;
    letter-spacing: 0.01em;
    font-weight: 700;
  }
}
#flow .flowCard .flowCardImage img {
  width: 100%;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
#flow .flowCard .flowCardBody {
  color: #3f3f3f;
  font-size: clamp(0.875rem, 0.8285714286rem + 0.1904761905vw, 1rem);
  line-height: 1.6;
  letter-spacing: 0.01em;
  font-weight: 400;
}
#flow .flowBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #34c4e6;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
#flow .flowBtn.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}
#flow .flowPrev {
  left: 0;
  transform: translateX(-50%);
}
#flow .flowNext {
  right: 0;
  transform: translateX(50%);
}
@media (min-width: 992px) {
  #flow .flowBtn {
    display: none;
  }
  #flow .flowTrack {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
    overflow: visible;
    scroll-snap-type: none;
    margin: 0;
    padding-bottom: 0;
  }
  #flow .flowCard {
    flex: 1 1 auto;
    min-height: auto;
  }
  #flow .flowControls {
    display: none;
  }
}

.footer {
  background: #3f3f3f;
  color: white;
  padding-block: 40px;
}
@media (max-width: 768px) {
  .footer {
    padding-block: 28px;
  }
}
.footer .footerContainer {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .footer .footerContainer {
    gap: 16px;
  }
}
.footer .footerContainer nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .footer .footerContainer nav ul {
    gap: 8px;
  }
}
.footer .footerContainer nav ul li a {
  font-size: clamp(0.75rem, 0.7035714286rem + 0.1904761905vw, 0.875rem);
  line-height: 1.4;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.footer .footerContainer p {
  font-size: clamp(0.75rem, 0.7035714286rem + 0.1904761905vw, 0.875rem);
  line-height: 1.6;
  letter-spacing: 0.01em;
  font-weight: 400;
  text-align: center;
  color: #a6a6a6;
}

.header {
  background-color: white;
  height: 80px;
  position: sticky;
  top: 0;
  z-index: 100;
  padding-left: 40px;
}
@media (max-width: 768px) {
  .header {
    padding-left: 28px;
  }
}
@media (max-width: 768px) {
  .header {
    padding-inline: 40px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .header {
    padding-inline: 28px;
  }
}
.header .headerContainer {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo {
  height: 40px;
}
.header .nav {
  height: 100%;
}
.header .nav ul {
  height: 100%;
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .header .nav ul {
    gap: 16px;
  }
}
.header .nav ul li {
  display: flex;
  align-items: center;
}
.header .nav ul li a {
  height: 100%;
  display: flex;
  align-items: center;
  font-size: clamp(0.875rem, 0.8285714286rem + 0.1904761905vw, 1rem);
  line-height: 1.6;
  letter-spacing: 0.01em;
  font-weight: 400;
  transition: 0.3s ease-out;
  width: 100%;
}
.header .nav ul .navContact {
  background-color: #e97d89;
  color: white;
  transition: 0.3s ease-out;
}
.header .nav ul .navContact:hover {
  background-color: #3f3f3f;
}
.header .nav ul .navContact a {
  padding: 20px;
}
@media (max-width: 768px) {
  .header .nav ul .navContact a {
    padding: 16px;
  }
}
.header .navPc {
  display: block;
}
.header .navPc ul li a:hover {
  font-weight: 600;
}
.header .navSp {
  display: none;
}
.header .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
}
.header .hamburger span {
  width: 25px;
  height: 3px;
  background: #3f3f3f;
  transition: all 0.3s ease;
}
.header .hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}
@media (max-width: 768px) {
  .header .navPc {
    display: none;
  }
  .header .navSp {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(80vw, 340px);
    background: white;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding: 40px;
    gap: 40px;
    z-index: 1000;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .header .navSp {
    padding: 28px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .header .navSp {
    gap: 28px;
  }
}
@media (max-width: 768px) {
  .header .navSp.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  .header .navSp .navClose {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background: transparent;
    color: #3f3f3f;
    cursor: pointer;
    gap: 10px;
    font-size: clamp(1rem, 0.9535714286rem + 0.1904761905vw, 1.125rem);
    line-height: 1.6;
    letter-spacing: 0.01em;
    font-weight: 400;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .header .navSp .navClose {
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .header .navSp .navClose span {
    display: inline-flex;
    align-items: center;
  }
  .header .navSp .navClose .navCloseIcon {
    position: relative;
    width: 20px;
    height: 20px;
  }
  .header .navSp .navClose .navCloseIcon::before, .header .navSp .navClose .navCloseIcon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #3f3f3f;
  }
  .header .navSp .navClose .navCloseIcon::before {
    transform: translateY(-50%) rotate(45deg);
  }
  .header .navSp .navClose .navCloseIcon::after {
    transform: translateY(-50%) rotate(-45deg);
  }
  .header .navSp .navContact {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background-color: #e97d89;
    color: white;
    padding: 10px;
    margin-inline: 20px;
    font-size: clamp(0.75rem, 0.7035714286rem + 0.1904761905vw, 0.875rem);
    line-height: 1.6;
    letter-spacing: 0.01em;
    font-weight: 400;
    transition: 0.3s ease-out;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .header .navSp .navContact {
    padding: 8px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .header .navSp .navContact {
    margin-inline: 16px;
  }
}
@media (max-width: 768px) {
  .header .navSp .navContact:hover {
    background-color: #3f3f3f;
  }
  .header .navSp ul {
    flex-direction: column;
    gap: 1px;
  }
  .header .navSp ul li {
    background-color: #34c4e6;
    color: white;
  }
  .header .navSp ul li a {
    display: flex;
    gap: 4px;
    padding: 20px;
    font-size: clamp(0.75rem, 0.7035714286rem + 0.1904761905vw, 0.875rem);
    line-height: 1.4;
    letter-spacing: 0.08em;
    font-weight: 700;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .header .navSp ul li a {
    padding: 16px;
  }
}
@media (max-width: 768px) {
  .header .navSp ul li a::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle, transparent 15%, white 15%);
  }
  .header .hamburger {
    display: flex;
  }
}

.navOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 900;
  pointer-events: none;
}
.navOverlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#hero {
  background-color: #34c4e6;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  #hero {
    gap: 16px;
  }
}
#hero .heroImage {
  position: relative;
}
#hero .heroImage .heroImageLarge {
  aspect-ratio: 13/7;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  #hero .heroImage .heroImageLarge {
    display: none;
  }
}
#hero .heroImage .heroImageSmall {
  aspect-ratio: 4/5;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: none;
}
@media (max-width: 768px) {
  #hero .heroImage .heroImageSmall {
    display: block;
  }
}
#hero .heroImage .heroBackground {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
}
@media (max-width: 768px) {
  #hero .heroImage .heroBackground {
    display: block;
  }
}
#hero .heroAchievement {
  display: flex;
  flex-direction: row;
  display: none;
  gap: 20px;
  padding-inline: 40px;
}
@media (max-width: 768px) {
  #hero .heroAchievement {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  #hero .heroAchievement {
    padding-inline: 28px;
  }
}
@media (max-width: 768px) {
  #hero .heroAchievement {
    flex-direction: column;
    display: block;
  }
}
#hero .heroAchievement .images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  #hero .heroAchievement .images {
    display: none;
  }
}
#hero .heroAchievement p {
  display: none;
  color: white;
  font-size: 10px;
}
@media (max-width: 768px) {
  #hero .heroAchievement p {
    display: block;
  }
}

#heroCta {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-inline: 20px;
  padding-block: 40px;
}
@media (max-width: 768px) {
  #heroCta {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  #heroCta {
    padding-inline: 16px;
  }
}
@media (max-width: 768px) {
  #heroCta {
    padding-block: 28px;
  }
}
@media (max-width: 768px) {
  #heroCta {
    background-color: #34c4e6;
  }
}
#heroCta .ctaBtns {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 80px;
}
@media (max-width: 768px) {
  #heroCta .ctaBtns {
    gap: 56px;
  }
}
@media (max-width: 768px) {
  #heroCta .ctaBtns {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  #heroCta .ctaBtns {
    gap: 16px;
  }
}

#voice {
  display: flex;
  flex-direction: column;
  padding-block: 40px;
  gap: 40px;
}
@media (max-width: 768px) {
  #voice {
    padding-block: 28px;
  }
}
@media (max-width: 768px) {
  #voice {
    gap: 28px;
  }
}
#voice .voiceHeader {
  width: 100%;
}
#voice .voiceContainer {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 40px;
}
@media (max-width: 768px) {
  #voice .voiceContainer {
    padding-inline: 28px;
  }
}
#voice .voiceCarousel {
  position: relative;
}
#voice .voiceTrack {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: auto;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  #voice .voiceTrack {
    padding-bottom: 16px;
  }
}
#voice .voiceTrack.is-snap-disabled {
  scroll-snap-type: none;
}
@media (max-width: 768px) {
  #voice .voiceTrack {
    gap: 16px;
  }
}
#voice .voiceTrack::-webkit-scrollbar {
  height: 4px;
}
#voice .voiceTrack::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 999px;
}
#voice .voiceCard {
  flex: 0 0 100%;
  scroll-snap-align: start;
  background: #ffffff;
  border: 1px solid #e4e4e4;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-inline: 10px;
  padding-block: 20px;
}
@media (max-width: 768px) {
  #voice .voiceCard {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  #voice .voiceCard {
    padding-inline: 8px;
  }
}
@media (max-width: 768px) {
  #voice .voiceCard {
    padding-block: 16px;
  }
}
#voice .voiceTitle {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
#voice .voiceTitle span {
  font-size: 16px;
  line-height: 2;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #34c4e6;
  color: white;
  padding-inline: 10px;
}
@media (max-width: 768px) {
  #voice .voiceTitle span {
    padding-inline: 8px;
  }
}
#voice .voiceImage img {
  margin-top: -32px;
}
#voice .voiceBody {
  font-size: clamp(0.875rem, 0.8285714286rem + 0.1904761905vw, 1rem);
  line-height: 1.6;
  letter-spacing: 0.01em;
  font-weight: 400;
  padding-inline: 20px;
  line-height: 1.7;
  color: #3f3f3f;
}
@media (max-width: 768px) {
  #voice .voiceBody {
    padding-inline: 16px;
  }
}
#voice .voiceBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #34c4e6;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
#voice .voiceBtn.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}
#voice .voicePrev {
  left: 0;
  transform: translate(-50%, -50%);
}
#voice .voiceNext {
  right: 0;
  transform: translate(50%, -50%);
}
@media (min-width: 992px) {
  #voice .voiceBtn {
    display: none;
  }
  #voice .voiceTrack {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    scroll-snap-type: none;
  }
  #voice .voiceCard {
    flex: 1 1 auto;
  }
}

.reason .reasonHeader {
  background-color: #34c4e6;
  padding-block: 20px;
}
@media (max-width: 768px) {
  .reason .reasonHeader {
    padding-block: 16px;
  }
}
.reason .reasonHeader .sectionInner {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .reason .reasonHeader .sectionInner {
    gap: 16px;
  }
}
.reason .reasonHeader img {
  width: clamp(64px, 16vw, 96px);
  -o-object-fit: contain;
     object-fit: contain;
}
.reason .reasonHeader .reasonHeading {
  color: white;
  font-size: clamp(18px, 4.5vw, 22px);
}
.reason .reasonHeader .reasonHeading .accent {
  color: #fff181;
  border-bottom: 3px solid rgba(255, 255, 255, 0.4);
  font-size: clamp(1.5rem, 1.3142857143rem + 0.7619047619vw, 2rem);
  line-height: 1.4;
  letter-spacing: 0;
  font-weight: 700;
}
@media (max-width: 768px) {
  .reason .reasonHeader .reasonHeading .accent {
    line-height: 1.4;
    letter-spacing: 0.01em;
    font-weight: 700;
  }
}
.reason .reasonHeader .reasonHeading .accentYellow {
  color: #fff181;
  border-bottom: 3px solid #fff181;
  font-size: clamp(1.5rem, 1.3142857143rem + 0.7619047619vw, 2rem);
  line-height: 1.4;
  letter-spacing: 0;
  font-weight: 700;
}
@media (max-width: 768px) {
  .reason .reasonHeader .reasonHeading .accentYellow {
    line-height: 1.4;
    letter-spacing: 0.01em;
    font-weight: 700;
  }
}
.reason .reasonLead {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-block: 40px;
}
@media (max-width: 768px) {
  .reason .reasonLead {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .reason .reasonLead {
    padding-block: 28px;
  }
}
.reason .reasonLead .reasonLeadTitle {
  text-align: center;
  font-size: clamp(1.25rem, 1.1571428571rem + 0.380952381vw, 1.5rem);
  line-height: 1.45;
  letter-spacing: 0;
  font-weight: 700;
}
@media (max-width: 768px) {
  .reason .reasonLead .reasonLeadTitle {
    line-height: 1.5;
    letter-spacing: 0.01em;
    font-weight: 700;
  }
}
.reason .reasonLead .reasonLeadTitle .accent {
  font-size: clamp(1.5rem, 1.3142857143rem + 0.7619047619vw, 2rem);
  line-height: 1.4;
  letter-spacing: 0;
  font-weight: 700;
}
@media (max-width: 768px) {
  .reason .reasonLead .reasonLeadTitle .accent {
    line-height: 1.4;
    letter-spacing: 0.01em;
    font-weight: 700;
  }
}
.reason .reasonLead .dashedTilt {
  height: 12px;
  background-image: repeating-linear-gradient(to right, #34c4e6 0 2px, transparent 2px 8px);
  transform: skewX(-20deg);
}
.reason .reasonLead .reasonLeadText {
  font-size: clamp(1rem, 0.9535714286rem + 0.1904761905vw, 1.125rem);
  line-height: 1.4;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.reason .reasonList {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-block: 40px;
}
@media (max-width: 768px) {
  .reason .reasonList {
    gap: 28px;
  }
}
@media (max-width: 768px) {
  .reason .reasonList {
    padding-block: 28px;
  }
}
.reason .reasonList .reasonItem {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .reason .reasonList .reasonItem {
    gap: 16px;
  }
}
.reason .reasonList .reasonItem .reasonItemTitle {
  flex: 0 0 auto;
  align-self: flex-start;
  display: inline-block;
  color: #34c4e6;
  border-bottom: 1px dashed #34c4e6;
  font-size: clamp(1.25rem, 1.1571428571rem + 0.380952381vw, 1.5rem);
  line-height: 1.45;
  letter-spacing: 0;
  font-weight: 700;
}
@media (max-width: 768px) {
  .reason .reasonList .reasonItem .reasonItemTitle {
    line-height: 1.5;
    letter-spacing: 0.01em;
    font-weight: 700;
  }
}
.reason .reasonList .reasonItem .reasonItemText {
  font-size: clamp(1rem, 0.9535714286rem + 0.1904761905vw, 1.125rem);
  line-height: 1.4;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.reason .reasonList .reasonItem .reasonItemFigure {
  display: flex;
  flex-direction: column;
  border: 1px solid #e4e4e4;
  border-radius: 10px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  gap: 20px;
  padding: 20px;
}
@media (max-width: 768px) {
  .reason .reasonList .reasonItem .reasonItemFigure {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .reason .reasonList .reasonItem .reasonItemFigure {
    padding: 16px;
  }
}
.reason .reasonList .reasonItem .reasonItemFigure .reasonNote {
  text-align: end;
}
.reason .reasonNote {
  color: #a6a6a6;
  font-size: clamp(0.75rem, 0.7035714286rem + 0.1904761905vw, 0.875rem);
  line-height: 1.6;
  letter-spacing: 0.01em;
  font-weight: 400;
}

#reason-1 {
  background-color: #fffbf7;
}
#reason-1 .reasonLead {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-block: 40px;
}
@media (max-width: 768px) {
  #reason-1 .reasonLead {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  #reason-1 .reasonLead {
    padding-block: 28px;
  }
}
#reason-1 .reasonLead p {
  font-size: clamp(1rem, 0.9535714286rem + 0.1904761905vw, 1.125rem);
  line-height: 1.4;
  letter-spacing: 0.08em;
  font-weight: 700;
}
#reason-1 .reasonImage {
  background: linear-gradient(135deg, rgba(220, 248, 255, 0.3), rgba(255, 231, 234, 0.3));
  width: 100%;
  position: relative;
  padding-block: 40px;
  margin-top: 20px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  #reason-1 .reasonImage {
    padding-block: 28px;
  }
}
@media (max-width: 768px) {
  #reason-1 .reasonImage {
    margin-top: 16px;
  }
}
@media (max-width: 768px) {
  #reason-1 .reasonImage {
    margin-bottom: 56px;
  }
}
#reason-1 .reasonImage::before, #reason-1 .reasonImage::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: repeating-linear-gradient(to right, #a6a6a6 0 10px, transparent 10px 15px);
}
#reason-1 .reasonImage:before {
  top: 0;
}
#reason-1 .reasonImage::after {
  bottom: 0;
}
#reason-1 .reasonImage .reasonImageCopy {
  position: absolute;
  top: -20px;
  width: 100%;
}
#reason-1 .reasonImage .reasonImageCopy .reasonImageCopyInner {
  max-width: 620px;
  margin: 0 auto;
}
#reason-1 .reasonImage .reasonImageCopy .reasonImageCopyInner span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #34c4e6;
  color: #ffffff;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  padding-block: 10px;
  padding-inline: 40px;
  font-size: clamp(1.25rem, 1.1571428571rem + 0.380952381vw, 1.5rem);
  line-height: 1.45;
  letter-spacing: 0;
  font-weight: 700;
}
@media (max-width: 768px) {
  #reason-1 .reasonImage .reasonImageCopy .reasonImageCopyInner span {
    padding-block: 8px;
  }
}
@media (max-width: 768px) {
  #reason-1 .reasonImage .reasonImageCopy .reasonImageCopyInner span {
    padding-inline: 28px;
  }
}
@media (max-width: 768px) {
  #reason-1 .reasonImage .reasonImageCopy .reasonImageCopyInner span {
    line-height: 1.5;
    letter-spacing: 0.01em;
    font-weight: 700;
  }
}
#reason-1 .reasonImage img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#reason-1 .marriageSuccess p {
  text-align: center;
  color: #34c4e6;
}
#reason-1 .marriageSuccess p:nth-of-type(1) {
  font-size: clamp(1.5rem, 1.3142857143rem + 0.7619047619vw, 2rem);
  line-height: 1.4;
  letter-spacing: 0;
  font-weight: 700;
}
@media (max-width: 768px) {
  #reason-1 .marriageSuccess p:nth-of-type(1) {
    line-height: 1.4;
    letter-spacing: 0.01em;
    font-weight: 700;
  }
}
#reason-1 .marriageSuccess p:nth-of-type(2) {
  font-size: clamp(1.25rem, 1.1571428571rem + 0.380952381vw, 1.5rem);
  line-height: 1.45;
  letter-spacing: 0;
  font-weight: 700;
}
@media (max-width: 768px) {
  #reason-1 .marriageSuccess p:nth-of-type(2) {
    line-height: 1.5;
    letter-spacing: 0.01em;
    font-weight: 700;
  }
}
#reason-1 .supportSystem {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(220, 248, 255, 0.3), rgba(255, 231, 234, 0.3));
  gap: 20px;
  padding-top: 80px;
  padding-bottom: 40px;
  margin-top: 120px;
}
@media (max-width: 768px) {
  #reason-1 .supportSystem {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  #reason-1 .supportSystem {
    padding-top: 56px;
  }
}
@media (max-width: 768px) {
  #reason-1 .supportSystem {
    padding-bottom: 28px;
  }
}
@media (max-width: 768px) {
  #reason-1 .supportSystem {
    margin-top: 84px;
  }
}
#reason-1 .supportSystem .supportSystemHeader {
  position: absolute;
  top: -20px;
  width: 100%;
}
#reason-1 .supportSystem .supportSystemHeader .supportSystemHeaderInner {
  max-width: 620px;
  margin: 0 auto;
}
#reason-1 .supportSystem .supportSystemHeader .supportSystemHeaderInner h3 {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #34c4e6;
  color: #ffffff;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  padding-block: 10px;
  padding-inline: 40px;
  font-size: clamp(1.25rem, 1.1571428571rem + 0.380952381vw, 1.5rem);
  line-height: 1.45;
  letter-spacing: 0;
  font-weight: 700;
}
@media (max-width: 768px) {
  #reason-1 .supportSystem .supportSystemHeader .supportSystemHeaderInner h3 {
    padding-block: 8px;
  }
}
@media (max-width: 768px) {
  #reason-1 .supportSystem .supportSystemHeader .supportSystemHeaderInner h3 {
    padding-inline: 28px;
  }
}
@media (max-width: 768px) {
  #reason-1 .supportSystem .supportSystemHeader .supportSystemHeaderInner h3 {
    line-height: 1.5;
    letter-spacing: 0.01em;
    font-weight: 700;
  }
}
#reason-1 .supportSystem .supportSystemHeader .supportSystemHeaderInner h3 span {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(10%, -120%) rotate(5deg);
  color: #34c4e6;
  font-size: clamp(1rem, 0.9535714286rem + 0.1904761905vw, 1.125rem);
  line-height: 1.4;
  letter-spacing: 0.08em;
  font-weight: 700;
}

#reason-3 .reasonMedia {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 768px) {
  #reason-3 .reasonMedia {
    gap: 28px;
  }
}
#reason-3 .reasonMedia .reasonMediaCard {
  background-color: white;
  border: 1px solid #e4e4e4;
  border-radius: 10px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 20px;
}
@media (max-width: 768px) {
  #reason-3 .reasonMedia .reasonMediaCard {
    padding: 16px;
  }
}
#reason-3 .reasonMedia .reasonMediaCard img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
#reason-3 .reasonMedia .reasonMediaArrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  #reason-3 .reasonMedia .reasonMediaArrow {
    gap: 16px;
  }
}
#reason-3 .reasonMedia .reasonMediaArrow img {
  width: 48px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
#reason-3 .reasonMedia .reasonMediaArrow span {
  font-size: clamp(1.25rem, 1.1571428571rem + 0.380952381vw, 1.5rem);
  line-height: 1.45;
  letter-spacing: 0;
  font-weight: 700;
}
@media (max-width: 768px) {
  #reason-3 .reasonMedia .reasonMediaArrow span {
    line-height: 1.5;
    letter-spacing: 0.01em;
    font-weight: 700;
  }
}
#reason-3 .reasonMedia .reasonMediaCardAccent img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
#reason-3 .tableContainer {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-block: 40px;
}
@media (max-width: 768px) {
  #reason-3 .tableContainer {
    gap: 28px;
  }
}
@media (max-width: 768px) {
  #reason-3 .tableContainer {
    padding-block: 28px;
  }
}
#reason-3 .tableContainer .tableLead {
  text-align: center;
  font-size: clamp(1.25rem, 1.1571428571rem + 0.380952381vw, 1.5rem);
  line-height: 1.45;
  letter-spacing: 0;
  font-weight: 700;
}
@media (max-width: 768px) {
  #reason-3 .tableContainer .tableLead {
    line-height: 1.5;
    letter-spacing: 0.01em;
    font-weight: 700;
  }
}
#reason-3 .tableContainer .tableLead .accent {
  font-size: clamp(1.5rem, 1.3142857143rem + 0.7619047619vw, 2rem);
  line-height: 1.4;
  letter-spacing: 0;
  font-weight: 700;
}
@media (max-width: 768px) {
  #reason-3 .tableContainer .tableLead .accent {
    line-height: 1.4;
    letter-spacing: 0.01em;
    font-weight: 700;
  }
}
#reason-3 .tableContainer .tableImg {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
#reason-3 .tableContainer .tableNote {
  font-size: clamp(0.875rem, 0.8285714286rem + 0.1904761905vw, 1rem);
  line-height: 1.6;
  letter-spacing: 0.01em;
  font-weight: 400;
  color: #3f3f3f;
}

.reasonCards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .reasonCards {
    gap: 28px;
  }
}

.reasonCard {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 15px 0 rgba(112, 112, 112, 0.25);
  gap: 20px;
  padding-top: 40px;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .reasonCard {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .reasonCard {
    padding-top: 28px;
  }
}
@media (max-width: 768px) {
  .reasonCard {
    padding-bottom: 16px;
  }
}
.reasonCard .reasonCardIndex {
  margin-top: -64px;
  color: #34c4e6;
  font-size: 64px;
  font-weight: bold;
  line-height: 1;
  padding-inline: 20px;
}
@media (max-width: 768px) {
  .reasonCard .reasonCardIndex {
    padding-inline: 16px;
  }
}
.reasonCard .reasonCardHeading {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: baseline;
  background-color: #c6eef8;
  border-top: 2px solid #3f3f3f;
  border-right: 2px solid #3f3f3f;
  border-bottom: 2px solid #3f3f3f;
  gap: 10px;
  padding-inline: 20px;
  padding-block: 20px;
  font-size: clamp(1rem, 0.9535714286rem + 0.1904761905vw, 1.125rem);
  line-height: 1.4;
  letter-spacing: 0.08em;
  font-weight: 700;
}
@media (max-width: 768px) {
  .reasonCard .reasonCardHeading {
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .reasonCard .reasonCardHeading {
    padding-inline: 16px;
  }
}
@media (max-width: 768px) {
  .reasonCard .reasonCardHeading {
    padding-block: 16px;
  }
}
.reasonCard .reasonCardHeading .accent {
  font-size: clamp(1.5rem, 1.3142857143rem + 0.7619047619vw, 2rem);
  line-height: 1.4;
  letter-spacing: 0;
  font-weight: 700;
}
@media (max-width: 768px) {
  .reasonCard .reasonCardHeading .accent {
    line-height: 1.4;
    letter-spacing: 0.01em;
    font-weight: 700;
  }
}
.reasonCard .reasonCardHeading::after {
  content: "";
  position: absolute;
  top: 8px;
  right: -8px;
  width: 100%;
  height: 100%;
  border-right: 2px solid #3f3f3f;
  border-bottom: 2px solid #3f3f3f;
}
.reasonCard .reasonCardBody {
  padding-inline: 20px;
  font-size: clamp(1rem, 0.9535714286rem + 0.1904761905vw, 1.125rem);
  line-height: 1.4;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-weight: 400;
}
@media (max-width: 768px) {
  .reasonCard .reasonCardBody {
    padding-inline: 16px;
  }
}
.reasonCard .reasonCardBody .accent {
  color: #34c4e6;
  font-weight: 700;
}
.reasonCard .imgWrapper {
  display: flex;
  flex-direction: column;
  padding-inline: 20px;
  gap: 20px;
}
@media (max-width: 768px) {
  .reasonCard .imgWrapper {
    padding-inline: 16px;
  }
}
@media (max-width: 768px) {
  .reasonCard .imgWrapper {
    gap: 16px;
  }
}
.reasonCard .imgWrapper span {
  background-color: #34c4e6;
  color: #ffffff;
  text-align: center;
  border-radius: 999px;
  padding: 10px;
  font-size: clamp(1rem, 0.9535714286rem + 0.1904761905vw, 1.125rem);
  line-height: 1.4;
  letter-spacing: 0.08em;
  font-weight: 700;
}
@media (max-width: 768px) {
  .reasonCard .imgWrapper span {
    padding: 8px;
  }
}
.reasonCard .divider {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-inline: 20px;
}
@media (max-width: 768px) {
  .reasonCard .divider {
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .reasonCard .divider {
    padding-inline: 16px;
  }
}
.reasonCard .divider .line {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background-color: #a6a6a6;
}
.reasonCard .divider .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background-color: #34c4e6;
}
.reasonCard .message {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 32px;
  padding-inline: 20px;
  gap: 40px;
  font-size: clamp(1rem, 0.9535714286rem + 0.1904761905vw, 1.125rem);
  line-height: 1.4;
  letter-spacing: 0.08em;
  font-weight: 700;
}
@media (max-width: 768px) {
  .reasonCard .message {
    padding-inline: 16px;
  }
}
@media (max-width: 768px) {
  .reasonCard .message {
    gap: 28px;
  }
}
.reasonCard .message .messageHeader {
  position: relative;
  text-align: center;
  background: #faf6f2;
  border: 2px solid #3f3f3f;
  border-radius: 999px;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 20px;
  padding-block: 10px;
}
@media (max-width: 768px) {
  .reasonCard .message .messageHeader {
    padding-inline: 16px;
  }
}
@media (max-width: 768px) {
  .reasonCard .message .messageHeader {
    padding-block: 8px;
  }
}
.reasonCard .message .messageHeader::before {
  content: "";
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 32px;
  background-image: url("images/messageHeader.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.reasonCard .message .messageHeader::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #faf6f2;
  border-right: 2px solid #3f3f3f;
  border-bottom: 2px solid #3f3f3f;
  transform: translate(-50%, 55%) rotate(45deg);
  transform-origin: center center;
}
.reasonCard .message .messageQA {
  font-size: clamp(14px, 3.5vw, 24px);
  width: 100%;
  display: flex;
  color: white;
  gap: 20px;
}
@media (max-width: 768px) {
  .reasonCard .message .messageQA {
    gap: 16px;
  }
}
.reasonCard .message .messageQA img {
  width: clamp(60px, 15vw, 100px);
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top center;
     object-position: top center;
}
.reasonCard .message .messageQuestion {
  position: relative;
  background-color: #e97d89;
  border-radius: 8px;
  height: -moz-fit-content;
  height: fit-content;
  padding: 20px;
}
@media (max-width: 768px) {
  .reasonCard .message .messageQuestion {
    padding: 16px;
  }
}
.reasonCard .message .messageQuestion::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-right: 10px solid #e97d89;
  border-bottom: 10px solid #e97d89;
  border-left: 10px solid transparent;
}
.reasonCard .message .messageAnswer {
  position: relative;
  background-color: #34c4e6;
  border-radius: 8px;
  height: -moz-fit-content;
  height: fit-content;
  padding: 20px;
}
@media (max-width: 768px) {
  .reasonCard .message .messageAnswer {
    padding: 16px;
  }
}
.reasonCard .message .messageAnswer::before {
  content: "";
  position: absolute;
  right: -20px;
  top: 20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #34c4e6;
  border-left: 10px solid #34c4e6;
}

.reasonCardArrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 80px 0 80px;
  border-color: #34c4e6 transparent transparent transparent;
}

#reasonIntro .reasonIntroBackgroundTop {
  position: relative;
  text-align: center;
  background-color: #fef4a6;
  padding-block: 20px;
}
@media (max-width: 768px) {
  #reasonIntro .reasonIntroBackgroundTop {
    padding-block: 16px;
  }
}
#reasonIntro .reasonIntroBackgroundTop::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 12px solid #fef4a6;
}
#reasonIntro .reasonIntroBackgroundTop .reasonIntroBackgroundTopContainer {
  display: flex;
  justify-content: center;
}
#reasonIntro .reasonIntroBackgroundTop p {
  width: -moz-fit-content;
  width: fit-content;
  background-image: linear-gradient(to bottom, transparent 80%, #ffaa00 80%);
  background-repeat: no-repeat;
  font-size: clamp(1.25rem, 1.1571428571rem + 0.380952381vw, 1.5rem);
  line-height: 1.45;
  letter-spacing: 0;
  font-weight: 700;
}
@media (max-width: 768px) {
  #reasonIntro .reasonIntroBackgroundTop p {
    line-height: 1.5;
    letter-spacing: 0.01em;
    font-weight: 700;
  }
}
#reasonIntro .reasonIntroBackgroundBottom {
  text-align: center;
  background-color: #34c4e6;
  padding-block: 20px;
}
@media (max-width: 768px) {
  #reasonIntro .reasonIntroBackgroundBottom {
    padding-block: 16px;
  }
}
#reasonIntro .reasonIntroContainer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-block: 40px;
}
@media (max-width: 768px) {
  #reasonIntro .reasonIntroContainer {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  #reasonIntro .reasonIntroContainer {
    padding-block: 28px;
  }
}
#reasonIntro .reasonIntroContainer p {
  font-size: clamp(0.875rem, 0.8285714286rem + 0.1904761905vw, 1rem);
  line-height: 1.6;
  letter-spacing: 0.01em;
  font-weight: 400;
}
#reasonIntro .reasonIntroContainer .reasonIntroCard {
  display: flex;
  flex-direction: column;
  background-color: white;
  border: 1px solid #e4e4e4;
  border-radius: 10px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  gap: 20px;
  padding: 20px;
}
@media (max-width: 768px) {
  #reasonIntro .reasonIntroContainer .reasonIntroCard {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  #reasonIntro .reasonIntroContainer .reasonIntroCard {
    padding: 16px;
  }
}
#reasonIntro .reasonIntroContainer .reasonIntroPoints .reasonIntroPointList {
  background-color: white;
  border: 1px solid #a6a6a6;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-block: 20px;
}
@media (max-width: 768px) {
  #reasonIntro .reasonIntroContainer .reasonIntroPoints .reasonIntroPointList {
    gap: 28px;
  }
}
@media (max-width: 768px) {
  #reasonIntro .reasonIntroContainer .reasonIntroPoints .reasonIntroPointList {
    padding-block: 16px;
  }
}
#reasonIntro .reasonIntroContainer .reasonIntroPoints .reasonIntroPoint {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-inline: 10px;
}
@media (max-width: 768px) {
  #reasonIntro .reasonIntroContainer .reasonIntroPoints .reasonIntroPoint {
    gap: 8px;
  }
}
@media (max-width: 768px) {
  #reasonIntro .reasonIntroContainer .reasonIntroPoints .reasonIntroPoint {
    padding-inline: 8px;
  }
}
#reasonIntro .reasonIntroContainer .reasonIntroPoints .reasonIntroPoint::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 100%;
  height: 1px;
  background-image: repeating-linear-gradient(to right, #a6a6a6 0, #a6a6a6 5px, transparent 5px, transparent 10px);
}
@media (max-width: 768px) {
  #reasonIntro .reasonIntroContainer .reasonIntroPoints .reasonIntroPoint::after {
    bottom: -14px;
  }
}
#reasonIntro .reasonIntroContainer .reasonIntroPoints .reasonIntroPoint:last-child::after {
  display: none;
}
#reasonIntro .reasonIntroContainer .reasonIntroPoints .reasonIntroPoint img {
  width: 56px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
#reasonIntro .reasonIntroContainer .reasonIntroPoints .reasonIntroPoint p {
  display: flex;
  flex-direction: column;
  font-size: clamp(1.125rem, 1.0785714286rem + 0.1904761905vw, 1.25rem);
  line-height: 1.7;
  letter-spacing: 0.01em;
  font-weight: 400;
}
@media (max-width: 768px) {
  #reasonIntro .reasonIntroContainer .reasonIntroPoints .reasonIntroPoint p {
    line-height: 1.6;
    letter-spacing: 0.01em;
    font-weight: 400;
  }
}
#reasonIntro .reasonIntroContainer .reasonIntroPoints .reasonIntroPoint p .accent {
  font-size: clamp(1.25rem, 1.1571428571rem + 0.380952381vw, 1.5rem);
  line-height: 1.45;
  letter-spacing: 0;
  font-weight: 700;
  background-image: linear-gradient(to bottom, transparent 70%, #fff181 70%);
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  #reasonIntro .reasonIntroContainer .reasonIntroPoints .reasonIntroPoint p .accent {
    line-height: 1.5;
    letter-spacing: 0.01em;
    font-weight: 700;
  }
}

#vision {
  background-color: rgba(232, 244, 247, 0.6);
}
#vision .visionContainer {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  padding-bottom: 160px;
  gap: 20px;
}
@media (max-width: 768px) {
  #vision .visionContainer {
    padding-top: 56px;
  }
}
@media (max-width: 768px) {
  #vision .visionContainer {
    padding-bottom: 112px;
  }
}
@media (max-width: 768px) {
  #vision .visionContainer {
    gap: 16px;
  }
}
#vision .visionContainer .visionHeading {
  display: flex;
  align-items: center;
  color: #34c4e6;
  font-size: clamp(1rem, 0.9535714286rem + 0.1904761905vw, 1.125rem);
  line-height: 1.4;
  letter-spacing: 0.08em;
  font-weight: 700;
  gap: 10px;
}
@media (max-width: 768px) {
  #vision .visionContainer .visionHeading {
    gap: 8px;
  }
}
#vision .visionContainer .visionHeading::after {
  content: "";
  flex: 0.5;
  height: 2px;
  background: #34c4e6;
}
#vision .visionContainer .visionLead {
  color: #34c4e6;
  font-size: clamp(1.5rem, 1.3142857143rem + 0.7619047619vw, 2rem);
  line-height: 1.4;
  letter-spacing: 0;
  font-weight: 700;
}
@media (max-width: 768px) {
  #vision .visionContainer .visionLead {
    line-height: 1.4;
    letter-spacing: 0.01em;
    font-weight: 700;
  }
}
#vision .visionContainer .visionCopy {
  font-size: clamp(0.875rem, 0.8285714286rem + 0.1904761905vw, 1rem);
  line-height: 1.6;
  letter-spacing: 0.01em;
  font-weight: 400;
  color: #3f3f3f;
  line-height: 2.5;
}
#vision .visionContainer .visionHighlighted {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 768px) {
  #vision .visionContainer .visionHighlighted {
    gap: 8px;
  }
}
#vision .visionContainer .visionHighlighted .visionAccent {
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 4px;
  background: linear-gradient(#34c4e6, #61e1ff);
  color: white;
  padding: 10px;
  font-size: clamp(1rem, 0.9535714286rem + 0.1904761905vw, 1.125rem);
  line-height: 1.4;
  letter-spacing: 0.08em;
  font-weight: 700;
}
@media (max-width: 768px) {
  #vision .visionContainer .visionHighlighted .visionAccent {
    padding: 8px;
  }
}
#vision .visionBackground {
  position: absolute;
  bottom: 0;
  right: 4vw;
  width: 35vw;
  max-width: 200px;
  z-index: -1;
}

#worry {
  background-color: #f4f4f4;
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  #worry {
    gap: 56px;
  }
}
@media (max-width: 768px) {
  #worry {
    padding-bottom: 56px;
  }
}
#worry .worryHeader {
  background-color: #fff;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  border-radius: 0 0 50% 50%;
  padding-block: 40px;
}
@media (max-width: 768px) {
  #worry .worryHeader {
    padding-block: 28px;
  }
}
#worry .worryHeader img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}/*# sourceMappingURL=styles.css.map */