/* ========================================
   背景
   ======================================== */
body {
    background-color: #F5DED8;
    color: #303030;
    font-family: "Zen Kaku Gothic New", sans-serif;
}
body::before {
    content: '';
    display: block;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: -1;
    background-image: url("../img/pc_background.webp");
    background-size: cover;
    background-repeat: no-repeat;
}
body::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;     
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    background-image: url("../img/line.png");
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
}

span {
    display: inline-block;
}

@media screen and (max-width: 1280px) {
    body::after {
        display: none;
    }
}

/* ========================================
   アニメーション
   ======================================== */
.js-fadein {
    opacity: 0;
    transform: translateY(20px);
    /* 0.8sかけてじわっと戻る */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.js-fadein.is-active {
    opacity: 1;
    transform: translateY(0);
}

/* 基本のアニメーション設定（以前お伝えしたもの） */
.js-fadein {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.js-fadein.is-active {
    opacity: 1;
    transform: translateY(0);
}

.solution-lead .solution-title {
    transition-delay: 0s;
}

.solution-lead .solution-lead-copy {
    transition-delay: 0.8s;
}

.solution-lead .image {
    transition-delay: 1.5s;
}

/* 1. 見出し：すぐ動く */
.point-intro .point-intro__title {
    transition-delay: 0s;
}

/* 2. テキスト：0.4秒後に動く */
.point-intro .point-intro__text {
    transition-delay: 0.8s;
}

/* 3. 画像：0.8秒後に動く */
.point-intro .image {
    transition-delay: 1.5s;
}

.features-list .js-fadein {
    transition: opacity 1.0s ease-out, transform 1.0s ease-out;
}

.features-list__item:nth-child(1) { transition-delay: 0.2s; }
.features-list__item:nth-child(2) { transition-delay: 0.4s; }
.features-list__item:nth-child(3) { transition-delay: 0.6s; }
.features-list__item:nth-child(4) { transition-delay: 0.8s; }
.features-list__item:nth-child(5) { transition-delay: 1.0s; }
.features-list__item:nth-child(6) { transition-delay: 1.2s; }
.features-list__item:nth-child(7) { transition-delay: 1.4s; }
.features-list__item:nth-child(8) { transition-delay: 1.6s; }

/* ========================================
   メインコンテンツ
   ======================================== */
.w_1440 {
    max-width: 1440px;
    width: 100%;
    margin: auto;
}

.haader {
    max-width: 1440px;
    width: 100%;
    margin: auto;
    display: flex;
    align-items: flex-start;
    position: fixed;
    top: min(28.32vh, 290px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}

.haader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
    margin-left: min(13.125vw, 189px);
}

.haader__logo {
    width: 22.22vw;
    max-width: 320px;
}

.haader__btn-wrapper {
    position: relative;
}

.haader__btn {
    width: 33.88vw;
    max-width: 488px;
    height: auto;
    transition: all .3s ease;
    box-shadow: 0px 10px 16px 0px rgba(141, 68, 80, 0.3);
    border-radius: 100px;
}

.haader__btn-wrapper:hover .haader__btn {
    transform: scale(1.05);
}

.lp {
    float: right;
    position: relative;
    width: 27vw;
    margin-right: 13.8vw;
    margin-top: 2.7vw;
    max-width: 390px;
    border-radius: 24px 24px 0px 0px;
    box-shadow: 0px 0px 50px 0px rgba(141, 68, 80, 0.2);
}

@media screen and (min-width: 1440px) {
    .lp {
        margin-right: 200px;
        margin-top: 40px;
    }
}

.lp .image {
    position: relative;
    width: 100%;
    height: auto;
}

.main_visual_container {
    background-image: url(/img/main_bc.webp);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 24px 24px 0px 0px;
}

.main_visual_container-sp {
    display: none;
}

.main_visual {
    border-radius: 24px 24px 0px 0px;
    padding-block: 40px 62px;
    position: relative;
    z-index: 99999;
}

.main-visual__btn-wrapper {
    position: absolute;
    bottom: 32%;
    right: 12px;
    z-index: 99999;
    width: min(11.11vw, 160px);
    height: auto;
    border-radius: 50%;
    box-shadow: 0px 10px 16px 0px rgba(141, 68, 80, 0.3);

    animation: fuwafuwa 2s ease-in-out infinite;
}

@keyframes fuwafuwa {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.images {
    position: relative;
    z-index: 99999;
    width: 100%;
    padding-inline: 24px;
    background: white;
}

.lp .image img {
    width: 100%;
    height: 100%;
    display: block;
    margin-bottom: -1px;
}

@media screen and (max-width: 1280px) {
    .lp {
        max-width: 100%;
        width: 100%;
        margin-right: 0px;
        margin-top: 0px;
    }
    .main_visual_container {
        border-radius: 0px;
        display: none !important;
    }
    .main_visual_container-sp {
        display: block;
    }
	.main-visual__btn-wrapper {
		width: 40vw;
		height: 40vw;
		bottom: 25%
	}
    .haader {
        display: none;
    }
}

/* ========================================
   p-problem
   ======================================== */
.p-problem {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-block: 120px;
}
.problem_wrapper {
    display: flex;
    flex-direction: column;
    gap: 56px;
}
.problem__image--wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.note {
    font-weight: 400;
    font-size: 11px;
    line-height: 1.4;
    text-align: right;
}

/* ========================================
   solution
   ======================================== */
.solution {
    display: flex;
    flex-direction: column;
    gap: 120px;
    background-color: #FAEEF2;
    padding-block: 120px;
    padding-inline: 0px;
}
.solution-lead {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}
.solution-title {
    font-weight: 700;
    font-size: 28px;
    line-height: 1.8;
    text-align: center;
    width: 100%;
    padding-inline: 24px;
}
.solution-lead-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-inline: 24px;
}
.solution-lead-text {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
    padding-inline: 4.5px;
}
.solution-lead-text__brand {
    font-weight: 700;
    font-size: 36px;
    line-height: 1;
    letter-spacing: -0.06em;
    color: #FFEEB8;
    padding: 4px;
    background-color: #D26779;
    border-radius: 4px;
}
.solution-lead-text__suffix {
    font-weight: 700;
    font-size: 28px;
    line-height: 1.4;
}
.solution_wrapper {
    display: flex;
    flex-direction: column;
    gap: 56px;
    padding-inline: 24px;
}
.solution_wrapper .image {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ========================================
   point
   ======================================== */
.point {
    display: flex;
    flex-direction: column;
    gap: 120px;
    padding-block: 120px;
}
.point-intro {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}
.point-intro__title {
    font-weight: 700;
    font-size: 36px;
    line-height: 1.6;
    text-align: center;
    color: #D26779;
}
.point-intro__title span {
    font-weight: 700;
    font-size: 28px;
    line-height: 1.6;
    text-align: center;
    color: #303030;
}
.point-intro__text {
    font-weight: 700;
    font-size: 28px;
    line-height: 1.7;
    text-align: center;
}
.point-intro__text span {
    font-weight: 700;
    font-size: 36px;
    line-height: 1.7;
    color: #D26779;
}
.point_wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* ========================================
   problem-solving
   ======================================== */
.problem-solving {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-block: 120px;
    background-color: #FAEEF2;
}
.problem-solving__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.6;
    text-align: center;
}
.problem-solving__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.problem-solving__title span:last-child {
    font-size: 26px;
    line-height: 1.6;
    color: #D26779;
}
.problem-solving__lead {
    font-weight: 400;
    font-size: 16px;
    line-height: 2.0;
    text-align: center;
}

/* ========================================
   uservoice
   ======================================== */
.uservoice {
    display: flex;
    flex-direction: column;
    gap: 56px;
    padding-block: 120px;
    overflow: hidden;
}
.uservoice-voice__header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}
.uservoice-voice__title {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.4;
    text-align: center;
}
.uservoice-voice__subtitle {
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.04em;
    color: #D26779;

    display: flex;
    align-items: center;
    gap: 8px;
}
.uservoice-voice__subtitle::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #D26779;
}
.uservoice-voice__subtitle::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #D26779;
}
iframe {
    width: 100%;
    height: 192px;
}

/* ========================================
   features
   ======================================== */
.features {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-block: 120px;
    background-color: #FAEEF2;
}
.features__header {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}
.features-list__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
    list-style: none;
    padding-inline: 21px;
}
.features-list__item {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    text-align: center;
    color: #D26779;

    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 140px;
    width: 100%;
    max-height: 140px;
    height: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;;
    background-color: #fff;
    border: solid 2px #D26779;
}
.seminar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
}
.seminar__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
}
.seminar__text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.seminar__arrow {
    width: 56px;
    height: auto;
}
@media screen and (max-width: 1280px) {
	.features-list__item {
		max-width: 100%;
		max-height: 100%;
	}
}
/* ========================================
   plan
   ======================================== */
.plan {
	display: flex;
	flex-direction: column;
	gap: 40px;
	padding-inline: 24px;
	padding-block: 120px;
	background: white;
	position: relative;
    z-index: 999999;
}

/* ========================================
   cost
   ======================================== */
.cost-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.cost-comparison-lead {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    text-align: center;
}
.cost-comparison-lead__emphasis {
    font-size: 24px;
}
.cost-comparison-lead__bold {
    font-size: 30px;
    color: #D26779;
}
.cost-comparison-table__wrapper {
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.cost-comparison-table__wrapper::-webkit-scrollbar {
    display: none;
}
.cost-comparison-table__wrapper img {
    width: 644px;
    height: auto;
}
@media screen and (max-width: 1280px) {
	.cost-comparison-table__wrapper img {
		width: 165vw;
	}
}
/* ========================================
   qanda
   ======================================== */
.qanda {
    display: flex;
    flex-direction: column;
    gap: 56px;
    padding-block: 120px;
    background-color: #FAEEF2;
}

.faq-inner {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* アコーディオンのカード */
.faq-item {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* 質問部分 */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
	justify-content: space-between;
    gap: 16px;
    padding: 24px 16px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.faq-question-inner {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.faq-prefix {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    height: 100%;
}

.faq-prefix.q {
  color: #303030; /* 落ち着いたピンク */
}

.faq-item.is-open .faq-prefix.q {
    color: #d8727e; /* 開いている時の濃いピンク */
}

.faq-prefix.a {
    color: #333;
}

.faq-txt {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
	color: #303030;
}

/* 開閉アイコン（丸い矢印） */
.faq-icon img {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

/* 開いている時のアイコンの動き */
.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

/* 回答部分 */
.faq-answer {
  display: none; /* 初期状態は非表示 */
}

.faq-answer-inner {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding-inline: 16px;
  padding-bottom: 24px;
}

.faq-answer-txt {
  font-size: 16px;
  line-height: 1.8;
}

/* ========================================
   CTA（PC版）
   ======================================== */
.btn-wrapper {
    position: relative;
    width: 100%;
}
.btn {
    position: fixed;
    bottom: 20px;
    z-index: -9;
    opacity: 0;
    transition: opacity 0.3s ease;
    right: 13.8vw;
    width: 27vw;
    max-width: 390px;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.btn.is-visible {
    opacity: 1;
    pointer-events: auto;
	z-index: 9999999;
}

.linkarea {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 100000;
}

/* ボタン本体の設定 */
.btn a, .btn img {
    pointer-events: auto;
    display: block;
}

.btn img {
    width: 280px;      /* ボタン自体のサイズ固定 */
    max-width: 95%;    /* 枠からはみ出さないようガード */
    height: auto;
    box-shadow: 0px 8px 12px 0px rgba(141, 68, 80, 0.2);
    border-radius: 100px;
    transition: transform 0.2s;
}

.btn:hover img {
    transform: scale(1.05);
}

/* ========================================
   ブレイクポイントごとの同期
   ======================================== */
@media screen and (min-width: 1440px) {
    .btn {
        right: calc((100vw - 1440px) / 2 + 200px);
        width: 280px;
    }
}

@media screen and (max-width: 1280px) {
    .btn {
        right: 0;
        width: 100%;
        max-width: none;
        padding-inline: 20px;
    }
    .btn img {
        width: 100%;
        max-width: 280px;
    }
}
/* ========================================
   cta-block
   ======================================== */
.cta-block {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding-block: 64px;
    overflow: hidden;
}
.cta-block__slider {
    display: flex;
    gap: 8px;
    list-style: none;
    width: max-content;
}
.cta-block__slider--left {
    animation: infinity-scroll-left 8s linear infinite;
    will-change: transform;
}

.cta-block__slider li {
    flex-shrink: 0;
}

.cta-block__slider li img {
    width: 144px;
    height: auto;
    display: block;
}

@keyframes infinity-scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 4px));
    }
}

.cta-block__slider--right {
    animation: infinity-scroll-right 8s linear infinite;
    will-change: transform;
}

@keyframes infinity-scroll-right {
    from {
        transform: translateX(calc(-50% - 4px)); 
    }
    to {
        transform: translateX(0);
    }
}
.cta-block__message {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.cta-block__message p {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.08em;
    text-align: center;

    width: 100%;
    padding-bottom: 16px;
    border-bottom: solid 1px #EDE2DF;
}
.cta-block__message p:last-child {
    border-bottom: unset;
}
.cta-block__button {
    position: relative;
	max-width: 342px;
	width: 100%;
	margin: auto;
}
.cta-block__button img {
    width: 100%;
    transition: all .3s ease;
}
.cta-block__button:hover img {
    transform: scale(1.05);
}

/* ========================================
   footer
   ======================================== */
footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding: 32px 24px;
    background-color: #E8E5E6;
	z-index: 99999999;
    position: relative;
}
.site-footer__logo {
    max-width: 266px;
    width: 100%;
    height: auto;
}
.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}
.site-footer__link {
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    color: #767676;
    text-decoration: none;
    padding-right: 16px;
    border-right: solid 1px #B3B3B3;
}
.site-footer__link:last-child {
    border-right: unset;
}

.scroll-hint-icon {
    width: 104px !important;
}

.scroll-hint-icon-white {
    background: rgba(48, 48, 48, 0.6) !important;
    padding-inline: 8px !important;
    padding-block: 12px 8px !important;
}

.scroll-hint-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-hint-text {
    font-weight: 700 !important;
    font-size: 9px !important;
    line-height: 1.4 !important;
    text-align: center !important;
    color: white !important;
    order: 3;
    margin-top: 4px;
}

.scroll-hint-icon:before {
    background-image: url(/img/scroll-hint.png) !important;
    order: 2;
}

.scroll-hint-icon:after {
    background-image: url(/img/scroll-hint-bar.png) !important;
    background-size: contain;
    position: unset !important;
    order: 1;
    margin-left: unset !important;
}

.scroll-hint-shadow-wrap::after {
    background: unset !important;
}