@font-face {
    font-family: "Noto Sans JP";
    src: url("./fonts/NotoSansJP/NotoSansJP-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Noto Sans JP";
    src: url("./fonts/NotoSansJP/NotoSansJP-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Noto Sans JP";
    src: url("./fonts/NotoSansJP/NotoSansJP-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    margin: 0;
    font-size: 32px;
    color: #514741;
}

/* ボタン押下スクロール用 */
html {
    scroll-behavior: smooth;
}

/* ==========================
   コモンクラス
========================== */
/* margin調整 */
.pcmb-small {
    margin-bottom: 0.3em;
}

.my-0 {
    margin-top: 0;
    margin-bottom: 0;
}

.mt-medium {
    margin-top: 2em;
}

/* 寄せ */
.text-center {
    text-align: center;
}

.img-center {
    margin: 0 auto;
    display: block;
}

/* 前後に括弧付け */
.with-bracket::before {
    content: "（";
    font-size: 1.5em;
    top: 0.2em;
    position: relative;
}

.with-bracket::after {
    content: "）";
    font-size: 1.5em;
    top: 0.2em;
    position: relative;
}

/* アンダーライン */
.decoration-underline {
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.text-underline {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.text-underline::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 100%;
    height: 0.6em;
    background-color: #ffffff;
    transform: translateX(-50%);
    z-index: -1;
}

/* アンダーライン色 */
.underline-orange:after {
    background-color: #f6e2c4;
}

/* 点線（横線） */
.dashed-divider {
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(to right,
            #514741 0,
            #514741 8px,
            transparent 8px,
            transparent 16px);
    margin: 0;
}

.underline-dashed {
    text-decoration: underline;
    text-decoration-style: dashed;
    text-decoration-thickness: from-font;
    text-underline-offset: 0.2em;
}


/* 横並び調整用 */
.support-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 20px;
    flex-wrap: nowrap;
}

.support-top,
.support-bottom {
    white-space: nowrap;
}



@media (min-width: 768px) {
    .support-row {
        flex-direction: row;
        align-items: flex-end;
    }
}

@media (max-width: 767px) {

    .support-row {
        flex-direction: column;
        gap: 10px;
    }

    .support-top,
    .support-bottom {
        white-space: normal;
        text-align: center;
    }

}

/* 文字色 */
.color-gray {
    color: #343131;
}

.color-blue {
    color: #9ad2d9;
}

.color-orange {
    color: #f27f3e;
}

.color-pink {
    color: #f3a2b1;
}

.color-lightsalmon {
    color: #FFA07A;
}

.color-white {
    color: #fff;
}

/* 文字太さ */
.bold {
    font-weight: 700;
}

/* 背景色 */
.bg-women {
    background-color: #ffc4d9;
}

.bg-men {
    background-color: #86d1e9;
}

.bg-wheat {
    background: #f2dfa7;
}

.bg-dark-bubble {
    background: #666666;
}

.bg-light-bubble {
    background: #999999;
}

/* 画面サイズ毎の表示・非表示 */
.sp-only {
    display: none;
}

.pc-only {
    display: block;
}

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

    .pc-only {
        display: none;
    }
}

/* 画面サイズで改行を表示・非表示 */
@media (min-width: 768px) {
    .pc-responsive-text br {
        display: inline;
    }

    .sp-responsive-text br {
        display: none;
    }
}

@media (max-width: 767px) {
    .sp-responsive-text br {
        display: inline;
    }

    .pc-responsive-text br {
        display: none;
    }
}

/* ==========================
   ヒーローセクション
========================== */
section.hero-section {
    line-height: 0;
}

section.hero-section h1.title {
    text-align: center;
    font-size: 64px;
    position: relative;
}

section.hero-section img.hero-img {
    width: 100%;
}

section.hero-section img.catchphrase-img {
    position: absolute;
    top: 7%;
    left: 30%;
    transform: translateX(-50%);
    width: 40%;
}

section.hero-section img.hero-caption-img {
    position: absolute;
    top: calc(14vw);
    left: 30%;
    transform: translateX(-50%);
    width: 40%;
}

section.hero-section img.subheading-img {
    position: absolute;
    top: 0;
    left: 55%;
    width: 15%;
}

section.hero-section .hero-title {
    font-size: 1.1em;
    position: absolute;
    top: calc(24vw);
    left: 40%;
    transform: translateX(-50%);
}

section.hero-guide {
    position: absolute;
    top: calc(29vw);
    left: 30%;
    transform: translateX(-50%);
    background: none !important;
    width: 40%;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}

section.hero-guide .guide-main {
    font-size: 0.9em !important;
}

section.hero-guide .guide-sub {
    font-size: 0.6em !important;
}

section.hero-guide .guide-main::before {
    left: 10px !important;
    width: 4vw !important;
}

section.hero-guide .guide-main::after {
    right: 10px !important;
    width: 4vw !important;
}

section.hero-guide .cta-button {
    font-size: 0.8em;
    width: 80%;
    justify-content: center;
}

@media (max-width: 767px) {
    section.hero-guide {
        top: calc(150vw);
        left: 50%;
        width: 100%;
    }

    section.hero-guide .guide-main {
        width: 70%;
        margin: 0 auto 0.6em auto;
        font-size: 0.8em !important;
    }

    section.hero-guide .guide-main::before {
        left: -35px !important;
        width: 8vw !important;
    }

    section.hero-guide .guide-main::after {
        right: -35px !important;
        width: 8vw !important;
    }

    section.hero-guide .cta-button {
        font-size: 0.6em;
    }

}

/* ==========================
   ガイドセクション
========================== */
section.guide-section {
    text-align: center;
    padding-top: 1em;
    padding-bottom: 1em;
    background: linear-gradient(to bottom, #f5dabc, #f3cab0)
}

section.guide-section .bottom-adjust {
    height: 3em;
}

section.guide-section .guide-sub {
    font-size: 0.6em;
    color: #444;
    margin-top: 0;
    margin-bottom: 0;
}

section.guide-section .guide-main {
    position: relative;
    display: block;
    margin-top: 0;
    margin-bottom: 0.6em;
}

section.guide-section .guide-main::before,
section.guide-section .guide-main::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 3em;
    height: 1px;
    background: #202020;
}

section.guide-section .guide-main::before {
    left: calc(25vw);
}

section.guide-section .guide-main::after {
    right: calc(25vw);
}

section.guide-section img.guide-button-img {
    width: 80%;
    margin: 0 auto;
    display: block;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1em 2em;
    font-size: 1.3em;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    border-radius: 3em;

    background: linear-gradient(to right, rgb(228 159 33), rgb(246 122 77));

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform .2s, box-shadow .2s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.cta-button .arrow {
    width: 10px;
    height: 10px;

    border-top: 3px solid white;
    border-right: 3px solid white;

    transform: rotate(45deg);
    margin-left: 5px;
}

@media (max-width: 767px) {
    section.guide-section .bottom-adjust {
        height: 1em;
    }

    section.guide-section .guide-main::before {
        left: 0;
    }

    section.guide-section .guide-main::after {
        right: 0;
    }

    section.guide-section .guide-main::before,
    section.guide-section .guide-main::after {
        width: 1em;
    }

    .cta-button {
        font-size: 0.7em;
    }
}

@media (max-width: 450px) {
    section.guide-section .guide-main {
        font-size: 0.9em;
    }
}

/* ==========================
   ウォーリーセクション
========================== */
section.worries-section {
    background: #f6f0ea;
    padding-bottom: 2em;
}

section.worries-section .worries-row {
    display: flex;
    gap: 20px;
    margin: 0 auto;
}

section.worries-section .worries-box {
    flex: 1;
    min-height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f6f0ea;
}

section.worries-section .worries-bubble {
    font-size: 0.7em;
    position: relative;
    padding: 0.8em 2em;
    border-radius: 3em;
}

section.worries-section .bubble1 {
    width: calc(30vw);
    height: 2.8em;
    left: calc(2vw);
}

section.worries-section .bubble1-arrow-img {
    position: absolute;
    left: calc(5vw);
    top: 4.39em;
    width: 2em;
}

section.worries-section .bubble2 {
    width: calc(25vw);
    height: 2.8em;
    left: calc(13vw);
    top: -5px;
}

section.worries-section .bubble2-arrow-img {
    position: absolute;
    left: calc(25vw);
    top: 4.38em;
    width: 2em;
}

section.worries-section .bubble3 {
    width: calc(30vw);
    height: 2.8em;
    left: 0;
    top: -10px;
}

section.worries-section .bubble3-arrow-img {
    position: absolute;
    left: calc(4vw);
    top: 4.38em;
    width: 2em;
}

section.worries-section .bubble4 {
    height: 2.8em;
    width: calc(30vw);
    left: 0;
}

section.worries-section .bubble4-arrow-img {
    position: absolute;
    left: calc(2vw);
    top: 4.4em;
    width: 2em;
}

section.worries-section .bubble5 {
    width: calc(25vw);
    height: 4.3em;
    left: calc(7vw);
    top: -5px;
}

section.worries-section .bubble5-arrow-img {
    position: absolute;
    left: calc(20vw);
    top: 5.9em;
    width: 2em;
}


section.worries-section img.worry-img {
    width: 30%;
}

section.worries-section p.worries-title {
    font-weight: 700;
    font-size: 1.3em;
}

section.worries-section p.worries-title span {
    font-size: 1.2em;
}

section.worries-section div.worries-content {
    width: 80%;
    margin: 0 auto;
    border: 4px solid #f5a33c;
    border-radius: 1em;
    text-align: center;
    padding: 1em;
    background: #fff;
}

section.worries-section div.worries-content-sub {
    padding-bottom: 1em;
}

section.worries-section div.worries-content-main {
    font-size: 1.3em;
    font-weight: 700;
}

section.worries-section img.self-acceptance-img {
    width: 300px;
    max-width: 40vw;
    height: auto;
    position: relative;
    top: 0.7em;
}

@media (max-width: 1100px) {
    section.worries-section .worries-bubble {
        font-size: 0.6em;
    }
}

@media (max-width: 1000px) {
    section.worries-section .worries-bubble {
        font-size: 0.5em;
    }
}

@media (max-width: 800px) {
    section.worries-section .worries-bubble {
        font-size: 0.4em;
    }
}

@media (max-width: 767px) {
    section.worries-section .worries-row {
        display: inline;
    }

    section.worries-section .worries-box {
        display: block;
        margin: 0 auto;
    }

    section.worries-section .worries-bubble {
        font-size: 0.8em;
    }

    section.worries-section .bubble1 {
        width: calc(60vw);
        left: calc(10vw);
    }

    section.worries-section .bubble1-arrow-img {
        position: absolute;
        left: calc(8vw);
        top: 4.4em;
    }

    section.worries-section .bubble2 {
        width: calc(50vw);
        left: calc(30vw);

    }

    section.worries-section .bubble2-arrow-img {
        position: absolute;
        left: calc(50vw);
        top: 4.4em;
        transform: scaleX(-1);
    }

    section.worries-section .bubble4 {
        width: calc(60vw);
        left: calc(10vw);
        top: -2.5em;
    }

    section.worries-section .bubble4-arrow-img {
        position: absolute;
        left: calc(8vw);
        top: 4.4em;
        transform: scaleX(-1);
    }

    section.worries-section .bubble5 {
        width: calc(50vw);
        left: calc(30vw);
        top: -2.9em;
    }

    section.worries-section .bubble5-arrow-img {
        position: absolute;
        left: calc(45vw);
        top: 5.9em;
    }

    section.worries-section .bubble3 {
        width: calc(60vw);
        left: calc(8vw);
        top: 14em;
    }

    section.worries-section .bubble3-arrow-img {
        position: absolute;
        left: calc(8vw);
        top: 4.4em;
    }

    section.worries-section img.worry-img {
        margin-top: 50px;
    }

    section.worries-section p.worries-title {
        font-size: 1em;
    }

    section.worries-section p.worries-title span {
        font-size: 1.1em;
    }

    .with-bracket::before,
    .with-bracket::after {
        font-size: 2.5em;
        top: -0.1em;
    }

    section.worries-section div.worries-content {
        font-size: 0.7em;
    }

    section.worries-section div.worries-content-sub {
        line-height: 0;
        margin-top: 0.5em;
        padding-bottom: 0.5em;
    }

    section.worries-section div.worries-content-main {
        font-size: 1.3em;
        font-weight: 700;
    }

    section.worries-section img.self-acceptance-img {
        width: 80%;
        max-width: fit-content;
    }
}

@media (max-width: 640px) {
    section.worries-section .worries-bubble {
        font-size: 0.7em;
    }
}

@media (max-width: 550px) {
    section.worries-section .worries-bubble {
        font-size: 0.6em;
    }
}

@media (max-width: 480px) {
    section.worries-section .worries-bubble {
        font-size: 0.5em;
    }
}

@media (max-width: 400px) {
    section.worries-section .worries-bubble {
        font-size: 0.4em;
    }
}

/* ==========================
   リーズンセクション
========================== */
section.reasons-section {
    text-align: center;
    padding-top: 2em;
    padding-bottom: 1em;
    background: #f8efd3;
}

section.reasons-section .reason-badge {
    display: inline-block;
    background: #9ad2d9;
    color: #fff;
    padding: 0.5em 4em;
    font-weight: bold;
    border-radius: 999px;
    position: relative;
    line-height: 1;
}

section.reasons-section .reason-badge::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #9ad2d9;
}

section.reasons-section img.reason-title-img {
    display: block;
    margin: 1em auto;
    width: 40%;
}

section.reasons-section .reason-box {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px 30px;
    margin: 80px auto;
    max-width: 1100px;
    width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

section.reasons-section .reason1-caption-img {
    position: absolute;
    left: 40%;
    top: -41px;
}

section.reasons-section .reason2-caption-img {
    position: absolute;
    left: 40%;
    top: -38px;
}

section.reasons-section .reason3-caption-img {
    position: absolute;
    left: 40%;
    top: -38px;
}

section.reasons-section .reason4-caption-img {
    position: absolute;
    left: 40%;
    top: -36px;
}

section.reasons-section .reason5-caption-img {
    position: absolute;
    left: 40%;
    top: -36px;
}

section.reasons-section .reason-label {
    position: absolute;
    top: -20px;
    left: 45%;
    transform: translateX(-50%);
    padding: 6px 20px;
    font-size: 0.5em;
    z-index: 10;
}

section.reasons-section .reason-num {
    position: absolute;
    top: -0.9em;
    left: calc(45% + 67px);
    transform: translateX(-50%);
    font-size: 2em;
    font-weight: bold;
    z-index: 11;
}

section.reasons-section .reason-title-sp {
    display: none;
}

section.reasons-section .reason-img {
    float: right;
    width: 45%;
    max-width: 350px;
    margin-left: 25px;
    margin-bottom: 10px;
}

section.reasons-section .reason-content {
    overflow: hidden;
    text-align: left;
}

section.reasons-section .reason-title-pc {
    font-size: 1.2em;
    margin-bottom: 16px;
}

section.reasons-section .reason-text p {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    font-size: 0.9em;
}

section.reasons-section img.reproducible-changes-img {
    width: 80%;
    margin: 0 auto;
    display: block;
}

section.reasons-section .habit-example-badge {
    display: inline-block;
    background: #514741;
    color: #fff;
    padding: 0.5em 2em;
    font-weight: bold;
    border-radius: 999px;
    position: relative;
    line-height: 1;
    font-size: 0.7em;
    left: 37%;
    z-index: 1;
}

section.reasons-section .habit-example-badge::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #514741;
}

section.reasons-section .habit-box {
    background: #f2dfa7;
    padding: 2em;
    position: relative;
    top: -1em;
    border-radius: 1em;
    font-size: 0.7em;
}

section.reasons-section .habit-box .rounded-checkbox {
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

section.reasons-section .habit-box .rounded-checkbox input {
    display: none;
}

section.reasons-section .habit-box .rounded-checkbox span {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    border: 2px solid #f69b28;
    background: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
    position: relative;
}

/* チェック状態 */
section.reasons-section .habit-box .rounded-checkbox input:checked+span {
    background: #f69b28;
    border-color: #f69b28;
}

section.reasons-section .habit-box .rounded-checkbox input:checked+span::after {
    content: "✓";
    color: #fff;
}


@media (min-width: 768px) {
    section.reasons-section .habit-example-badge {
        left: calc(17vw);
    }

    section.reasons-section .habit-box {
        width: 55%;
    }
}

@media (max-width: 767px) {
    section.reasons-section .reason-badge {
        padding: 0.5em 1em;
        font-size: 0.8em;
    }

    section.reasons-section img.reason-title-img {
        width: 100%;
        padding-bottom: 1em;
    }

    section.reasons-section .reason-label {
        left: 35%;
    }

    section.reasons-section .reason-num {
        left: calc(35% + 60px);
        font-size: 1.5em;
    }

    section.reasons-section .reason-box {
        width: 80%;
        margin: 0 auto 2em auto;
    }

    section.reasons-section .reason1-caption-img,
    section.reasons-section .reason2-caption-img,
    section.reasons-section .reason3-caption-img,
    section.reasons-section .reason4-caption-img,
    section.reasons-section .reason5-caption-img {
        left: calc(25vw);
    }

    section.reasons-section .reason-title-sp {
        text-align: center;
        display: block;
        font-weight: bold;
        margin-bottom: 16px;
        line-height: 1.6;
    }

    section.reasons-section .reason-title-pc {
        display: none;
    }

    section.reasons-section .reason-img {
        float: none;
        width: 100%;
        max-width: none;
        margin: 12px 0;
        display: block;
    }

    section.reasons-section .reason-content {
        overflow: visible;
        font-size: 0.6em;
    }

    section.reasons-section img.reproducible-changes-img {
        width: 100%;
    }

    section.reasons-section .habit-box {
        font-size: 0.8em;
    }

    section.reasons-section .habit-box .rounded-checkbox span {
        height: 1.5em;
        width: 2em;
    }
}

/* ==========================
   勧誘セクション
========================== */
section.solicitation-section {
    text-align: center;
    padding-top: 2em;
    background: linear-gradient(to bottom, #f8eed1, #f5dabc);
}

/* 共通 */
.title-img {
  display: block;
  margin: 10px auto;
  max-width: 100%;
  height: auto;
}

/* PC表示 */
.pc-only {
  display: block;
}

/* SP非表示 */
.sp-only {
  display: none;
}

/* SP表示切り替え */
@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }
  .title-img {
  max-width: 90%;
}
}


section.solicitation-section p.solicitation-text {
    margin: 0;
    font-size: 1.2em;
}

@media (max-width: 767px) {
    section.solicitation-section .solicitation-img {
        width: 40%;
    }

    section.solicitation-section p.solicitation-title {
        font-size: 1.5em;
    }

    section.solicitation-section p.solicitation-text {
        font-size: 0.8em;
    }
}

/* ==========================
   思考セクション
========================== */
section.thoughts-section {
    position: relative;
    background: #fff;
    padding: 2rem;
}

section.thoughts-section::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 51px;
    background: #fff;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    z-index: 2;
}

section.thoughts-section::before {
    content: "";
    position: absolute;
    bottom: -55px;
    left: 0;
    width: 100%;
    height: 55px;
    background: rgba(0, 0, 0, 0.25);
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    transform: translateY(2px);
    z-index: 1;
    filter: blur(32px);
}

section.thoughts-section .thought-title {
    font-size: 2em;
    font-weight: 700;
    text-align: center;
    border-bottom: 4px solid;
    width: 13em;
    margin: 0 auto;
}

section.thoughts-section .thought-title span {
    font-size: 1.1em;
}

section.thoughts-section img.thought-action-img {
    position: relative;
    left: 40%;
    width: 3em;
    top: 1em;
}

section.thoughts-section img.thought-caption-img {
    width: 60%;
    margin: 0 auto;
    display: block;
    margin-bottom: 2em;
}

/* カード全体レイアウト（スマホは1列） */
section.thoughts-section .thoughts-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

section.thoughts-section .thoughts-card {
    background: #fff;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);

}

section.thoughts-section .thoughts-card img {
    width: 100%;
    height: auto;
    display: block;
}

section.thoughts-section .thought-body {
    font-size: 0.8em;
    padding: 0 2em;
    text-align: left;
    background: #d6e2ec;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    height: 5em;
    display: flex;
    align-items: center;
}

section.thoughts-section .thought-text {
    margin: 0 auto;
}

section.thoughts-section .thought-explanation {
    text-align: center;
}

section.thoughts-section .thought-explanation-font1 {
    margin-top: 3em;
    margin-bottom: 0.5em;
}

section.thoughts-section .thought-explanation-font2 {
    font-size: 1.3em;
    margin-bottom: 1em;
}

section.thoughts-section .thought-explanation-font3 {
    font-size: 1.6em;
    margin: 0.5em auto;
}

section.thoughts-section .thought-explanation-font3 span {
    font-size: 1.1em;
    font-weight: 700;
    color: #fff;
    background: #f1aa6a;
}

@media (min-width: 768px) {
    section.thoughts-section .thoughts-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 900px) {
    section.thoughts-section .thought-title {
        font-size: 1.6em;
    }
}

@media (max-width: 767px) {
    section.thoughts-section .thought-title {
        width: 8em;
        font-size: 1.3em;
    }

    section.thoughts-section img.thought-action-img {
        left: 70%;
    }

    section.thoughts-section img.thought-caption-img {
        width: 90%;
        margin-top: 0.3em;
    }

    section.thoughts-section .thought-body {
        font-size: 0.6em;
    }

    section.thoughts-section .thought-explanation-font1 {
        font-size: 0.6em;
        margin-top: 2em;
        margin-bottom: 1em;
    }

    section.thoughts-section .thought-explanation-font2,
    section.thoughts-section .thought-explanation-font3 {
        font-size: 0.7em;
    }
}

@media (max-width: 450px) {
    section.thoughts-section .thought-body {
        font-size: 0.5em;
    }
}

/* ==========================
   ディティールセクション
========================== */
section.detail-section {
    text-align: center;
    padding-top: 5em;
    padding-bottom: 2em;
    background: #f8edd0;
}

section.detail-section .detail-container {
    background: #fff;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 2em;
    border-radius: 16px;
}

section.detail-section .detail-content {
    padding-bottom: 2em;
}


section.detail-section img.detail1-img {
    width: 80vw;
    max-width: none;
    position: relative;
    margin-left: calc(50% - 50vw);
    display: block;
    object-fit: cover;
    top: -2em;
}

section.detail-section .detail-content1-caption {
    font-size: 1.8em;
    font-weight: 700;
    margin-top: 0;
}

section.detail-section .detail-content1-text {
    margin: 1.5em;
    font-size: 1.2em;
}

section.detail-section .detail-content1-text span {
    font-weight: 700;
}

section.detail-section .detail-content1-list {
    margin-top: 1em;
    font-weight: 700;
}

section.detail-section .detail-content-list-wrapper {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.7em;
    text-align: left;
}

section.detail-section .detail-content-list-wrapper img {
    width: 100px;
}

section.detail-section .detail-content1-conclusion {
    margin-top: 1em;
    margin-bottom: 1em;
    font-size: 1.3em;
}

section.detail-section img.detail2-img {
    width: 80vw;
    max-width: none;
    position: relative;
    left: calc(19.3vw);
    margin-left: calc(50% - 50vw);
    display: block;
    object-fit: cover;
}

section.detail-section .detail-content2-part1 {
    position: relative;
    top: -1em;
    font-size: 1.2em;
    height: 0;

    text-shadow:
        0 0 6px #fff,
        0 0 12px #fff,
        0 0 18px #fff;
}

section.detail-section .detail-content2-part2 {
    font-size: 1.5em;
    font-weight: 700;
    position: relative;
    width: fit-content;
    margin: 0 auto;
    top: 0.5em;
}

section.detail-section .detail-content2-bubble {
    float: left;
    left: -3em;
    top: -3.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom right, #f4cdb2, #f8edd0);
    color: #fff;
    border-radius: 50%;
    position: absolute;
    font-weight: bold;
    font-size: 0.5em;
    width: 4em;
    height: 4em;
    text-align: center;
}

section.detail-section .detail-content2-bubble::after {
    content: "";
    position: absolute;
    width: 0.1em;
    border-left: 10px solid #f8edd0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    left: 3.25em;
    bottom: 0;
    top: 3.25em;
    rotate: 45deg;
}

section.detail-section .detail-content2-part3 {
    margin-top: 1.4em;

}

section.detail-section .detail-content3-caption {
    font-size: 2em;
    font-weight: 700;
    margin: 0 auto;
}

section.detail-section .detail-content3-text {
    font-size: 1.5em;
    font-weight: 700;
    margin: 0.5em auto;
}

section.detail-section .detail-content3-text span {
    font-size: 1.2em;
}

section.detail-section .guide-button-img {
    display: block;
    position: relative;
    top: -1.5em;
    width: 60%;
    margin: 0 auto;
}

section.detail-section .self-acceptance-caption-img {
    width: 50%;
    max-width: 500px;
    margin-top: 1em;
}

section.detail-section .knock-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

section.detail-section .knock-img {
    display: block;
    width: 50%;
}

section.detail-section .knock-texts {
    position: absolute;
    top: 0;
    right: 2em;
    height: 20em;
    display: flex;
    gap: 1em;
}

section.detail-section .knock-texts .knock-text:first-child {
    margin-top: 2em;
}

section.detail-section .knock-texts .knock-text:last-child {
    margin-bottom: 2em;
}

section.detail-section .knock-text {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-weight: bold;
    font-size: 1.3em;
    background: #f8efd3;
    padding: 0.5em;
}

section.detail-section .knock-cta {
    top: -1em;
    position: relative;
}

@media (max-width: 767px) {
    section.detail-section img.detail1-img {
        width: 94vw;
    }

    section.detail-section .detail-content1-caption {
        font-size: 1.3em;
    }

    section.detail-section .detail-content1-text {
        font-size: 0.8em;
    }

    section.detail-section .detail-content-list-wrapper .detail-icon {
        width: 60px;
        top: 10px;
        position: relative;
    }

    section.detail-section .detail-content-list-wrapper img {
        width: 100%;
    }

    section.detail-section .detail-content-list-wrapper .sp-responsive-text {
        font-size: 0.6em;
    }

    section.detail-section .detail-content1-conclusion {
        font-size: 0.8em;
        margin-bottom: 0;
    }

    section.detail-section .detail-content2-part1 {
        font-size: 1em;
    }

    section.detail-section img.detail2-img {
        width: 92.5vw;
        left: calc(5.7vw);
    }

    section.detail-section .detail-content2-part2 {
        font-size: 1.3em;
    }

    section.detail-section .detail-content2-part3 {
        font-size: 0.9em;
    }

    section.detail-section .detail-content2-bubble {
        top: -0.3em;
        left: -1em;
        width: 3.5em;
        height: 3.5em;
    }

    section.detail-section .detail-content2-bubble::after {
        font-size: 3em;
        left: 0.97em;
        top: auto;
    }

    section.detail-section .detail-content3-caption {
        font-size: 1.5em;
    }

    section.detail-section .detail-content3-text {
        font-size: 1em;
    }

    section.detail-section .knock-texts {
        gap: 0.4em;
        height: 8.5em;
        right: 0.5em;
    }

    section.detail-section .knock-text {
        font-size: 0.6em;
    }

    section.detail-section .knock-cta {
        top: -1em;
    }

    section.detail-section .knock-cta .cta-button {
        font-size: 0.6em;
    }
	
	section.detail-section .knock-img{
		width: 70%;
	}
}

@media (max-width: 450px) {
    section.detail-section .knock-cta {
        top: 0.5em;
    }

    section.detail-section .detail-content1-text {
        font-size: 0.7em;
    }

    section.detail-section .detail-content-list-wrapper .sp-responsive-text {
        font-size: 0.5em;
    }
}

/* ==========================
   ボイスセクション
========================== */
section.voices-section {
    background: #f7f0e5;
    padding-top: 3em;
    padding-bottom: 3em;
}

section.voices-section .voices-title {
    text-align: center;
    font-size: 1.2em;
    font-weight: 700;
}

section.voices-section .voices-title span {
    font-size: 1.5em;
}

.voices-lead{
	font-size: 0.8em;
	text-align: center;
}


section.voices-section img.voice-caption-img {
    margin: 0 auto;
    width: 7em;
    display: block;
    margin-bottom: 1em;
}

section.voices-section .voices-wrapper {
    width: 90%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    box-sizing: border-box;
    margin: auto;
}

section.voices-section .voices-card {
    background: #fff;
    border-radius: 8px;
    padding: 0.7em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
    font-size: 0.7em;
}

section.voices-section .image-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}

section.voices-section .voices-card img {
    width: 100%;
}

section.voices-section .voices-card-title {
    font-size: 1.1em;
    font-weight: 700;
    margin-bottom: 0.3em;
}

section.voices-section .label-circle {
    width: 6em;
    height: 6em;
    border-radius: 50%;
    position: absolute;
    bottom: 1em;
    right: 0.5em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 0.8em;
    font-weight: 600;
    color: #fff;
}

section.voices-section .label-circle::before {
    content: "";
    position: absolute;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    border: 2px dashed white;
    border-radius: 50%;
}

section.voices-section .label-circle div {
    display: block;
    width: 100%;
}

section.voices-section .label-circle span {
    font-size: 1.5em;
}

@media (min-width: 768px) {
    section.voices-section .voices-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    section.voices-section .voices-card {
        font-size: 0.6em;
    }

    section.voices-section .voices-title {
        font-size: 0.9em;
    }

    section.voices-section .voices-card-title {
        font-size: 1.2em;
    }

    section.voices-section img.voice-caption-img {
        width: 5em;
    }
	.voices-lead{
		font-size: 0.6em;
	}
}

@media (max-width: 450px) {
    section.voices-section .voices-title {
        font-size: 0.8em;
    }

    section.voices-section .voices-card-title {
        font-size: 1em;
    }
}

/* ==========================
   プロフィールセクション
========================== */
/* ===== Profile (PC) ===== */
.p-profile{
  padding: 88px 0 80px;
  /* 背景：やわらかいベージュグラデ + うっすら光 */
  background:#f9efd2;
  color:#3a3a3a;
}

.p-profile__inner{
  width: min(980px, 92%);
  margin: 0 auto;
}

/* Heading */
.p-profile__head{
  text-align:center;
  margin-bottom: 28px;
}
.p-profile__title{
  font-size: 1.5em;
  letter-spacing: .08em;
  margin: 0;
  font-weight: 700;
}
.p-profile__subtitle{
  margin: 10px 0 0;
  font-size: 30px;
  letter-spacing: .08em;
  color: rgba(210, 183, 120, .75);
  font-family: "Times New Roman", Georgia, serif;
  font-style: italic;
}

/* Top layout */
.p-profile__top{
  display:grid;
  grid-template-columns: 300px 1fr;
  gap: 36px;
  align-items: center;
  margin-top: 22px;
}

.p-profile__photo{
  margin: 0;
  border-radius: 14px;
  overflow:hidden;
  background:#fff;
  box-shadow: 0 14px 28px rgba(0,0,0,.08);
}
.p-profile__photo img{
  display:block;
  width:100%;
  height:auto;
}

.p-profile__role{
  margin: 0 0 14px;
  font-size: 24px;
  letter-spacing: .08em;
  color:#5a5a5a;
}

.p-profile__name{
  margin: 0;
  font-size: 44px;
  font-weight: 800;
  color:#e08a3c; /* オレンジ */
  letter-spacing: .06em;
  line-height: 1.1;
}
.p-profile__name-en{
  margin: 8px 0 10px;
  font-size: 12px;
  letter-spacing: .18em;
  color:#6a6a6a;
}
.p-profile__catch{
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: .06em;
}

/* Quote */
.p-profile__quote{
  margin: 34px 0 10px;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: .06em;
}

/* dashed separators */
.p-profile__sep{
  height:1px;
  width:100%;
  margin: 14px 0 18px;
  background-image: repeating-linear-gradient(
    to right,
    rgba(120,120,120,.45) 0px,
    rgba(120,120,120,.45) 6px,
    rgba(120,120,120,0) 6px,
    rgba(120,120,120,0) 12px
  );
}

/* body text */
.p-profile__text{
  font-size: 23px;
  line-height: 2.1;
  letter-spacing: .04em;
}
.p-profile__text p{
  margin: 0 0 0px;
}

.p-profile__text .is-accent{
  color:#e08a3c;
  font-weight: 700;
}

/* Block title inside */
.p-profile__block-title{
  margin: 24px 0 6px;
  font-size: 1em;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1.7;
}

/* final CTA line */
.p-profile__cta{
  margin-top: 16px;
  font-weight: 800;
  color:#e08a3c;
}

/* Bottom card */
.p-profile__card{
  margin-top: 42px;
  background: rgba(255,255,255,.78);
  border-radius: 18px;
  padding: 26px 26px;
  display:grid;
  grid-template-columns: 1fr 260px;
  gap: 22px;
  align-items:center;
}

.p-profile__card-text{
  font-size: 29px;
  line-height: 2.0;
  letter-spacing: .04em;
  color:#3c3c3c;
}

.p-profile__card-photo{
  margin:0;
  border-radius: 14px;
  overflow:hidden;
  background:#fff;
}
.p-profile__card-photo img{
  display:block;
  width:100%;
  height:auto;
}

.profile-caption-img {
	width: 30%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
}

.marker{
  background: linear-gradient(
    transparent 55%,
    rgba(242, 223, 167, 0.35) 55%
  );
  font-weight: 700;
  padding: 0 4px;
  color: #e85e56;
}


/* ===== Profile (SP) ===== */
@media (max-width: 768px){

  .p-profile{
    padding: 56px 0 56px;
  }

  .p-profile__inner{
    width: min(680px, 92%);
  }

  /* Heading */
  .p-profile__title{
    font-size: 28px;
    letter-spacing: .06em;
  }
  .p-profile__subtitle{
    font-size: 22px;
    margin-top: 8px;
  }

  /* Top: 2カラム→縦積み */
  .p-profile__top{
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 16px;
  }

  .p-profile__photo{
    max-width: 320px;
    margin: 0 auto;
    border-radius: 14px;
  }

  .p-profile__meta{
    text-align: center;
  }

  .p-profile__role{
    font-size: 13px;
    margin-bottom: 10px;
  }

  .p-profile__name{
    font-size: 32px;
    letter-spacing: .05em;
  }

  .p-profile__name-en{
    font-size: 11px;
    letter-spacing: .14em;
  }

  .p-profile__catch{
    font-size: 16px;
    line-height: 1.7;
    margin-top: 8px;
  }

  /* Quote */
  .p-profile__quote{
    margin: 22px 0 8px;
    font-size: 22px;
    line-height: 1.8;
  }

  .p-profile__sep{
    margin: 12px 0 14px;
  }

  /* Text */
  .p-profile__text{
    font-size: 20px;
    line-height: 2.0;
    letter-spacing: .03em;
  }

  .p-profile__block-title{
    font-size: 22px;
    line-height: 1.8;
    margin: 18px 0 6px;
  }

  .p-profile__cta{
    font-size: 20px;
    line-height: 1.9;
  }

  /* Bottom card: 横並び→縦積み */
  .p-profile__card{
    margin-top: 28px;
    padding: 18px 16px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .p-profile__card-text{
    font-size: 20px;
    line-height: 1.95;
  }

  .p-profile__card-photo{
    max-width: 320px;
    margin: 0 auto;
  }

  /* マーカー：SPは少し薄く＆折り返し対応 */
  .marker{
    background: linear-gradient(
      transparent 58%,
      rgba(224, 138, 60, 0.28) 58%
    );
    padding: 0 3px;
  }
}


@media (max-width: 450px) {
    section.profile-section .profile-suggestion-title {
        font-size: 1.1em;
    }

    section.profile-section .profile-suggestion-text {
        font-size: 1em;
    }
}

/* ==========================
   メッセージセクション
========================== */
section.message-section {
    margin-bottom: 1em;
}

section.message-section .message-title {
    text-align: center;
    position: relative;
    top: -1em;
    font-size: 1.3em;
}

section.message-section .message-conclusion {
    width: 80%;
    margin: 0.2em auto 0 auto;
    font-size: 1em;
}

section.message-section .message-conclusion div {
    margin-bottom: 0.5em;
}

@media (max-width: 767px) {
    section.message-section .message-title {
        font-size: 1em;
    }

    section.message-section .message-conclusion {
        font-size: 0.7em;
    }
}

@media (max-width: 450px) {
    section.message-section .message-conclusion {
        font-size: 0.6em;
    }
}

/* ==========================
   コンタクトセクション
========================== */
section.contact-section {
    padding: 3em 0;
    font-size: 0.7em;
    background: linear-gradient(to bottom, #f5dabc, #eec9b0);
}

section.contact-section .contact-container {
    width: 80%;
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 1em 2em 3em 2em;
    border-radius: 3em;
}

@media (max-width: 450px) {
section.contact-section .contact-container {
    width: 70%;
	}
}

section.contact-section .form-label-row {
    display: flex;
    align-items: center;
    gap: 0.5em;
    margin-bottom: 0.3em;
}

section.contact-section label {
    font-weight: bold;
}

section.contact-section .required {
    background: red;
    color: #fff;
    font-size: 1em;
    padding: 0.1em 0.3em;
    border-radius: 4px;
}

section.contact-section .optional {
    background: #ccc;
    color: #fff;
    font-size: 1em;
    padding: 0.1em 0.3em;
    border-radius: 4px;
    min-width: 2.3em;
}

section.contact-section .form-input-row {
    margin-bottom: 1em;
}

section.contact-section input[type="text"],
section.contact-section input[type="email"],
section.contact-section select,
section.contact-section textarea {
    width: 100%;
    padding: 1em;
    font-size: 1em;
    border: 3px solid #ddd;
    border-radius: 8px;
    box-sizing: border-box;
}

section.contact-section input:focus,
section.contact-section select:focus,
section.contact-section textarea:focus {
    border: 3px solid #ddd !important;
    outline: none;
    box-shadow: none;
    border-color: #aaa;
}

section.contact-section input::placeholder,
section.contact-section textarea::placeholder {
    color: #ccc;
    opacity: 1;
}

section.contact-section textarea {
    min-height: 10em;
}

section.contact-section .select-row {
    display: flex;
    gap: 1rem;
	margin-bottom: 5px;
}

section.contact-section .select-row select {
    flex: 1;
}

section.contact-section .form-button-row {
    text-align: center;
}

.contact-section button[type="submit"] {
    background: linear-gradient(to right, rgb(228 159 33), rgb(246 122 77));
    color: #fff;
    border: none;
    border-radius: 2em;
    padding: 0.8em 2em;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 500px;
}

.contact-section button[type="submit"]:hover {
    filter: brightness(1.1);
}

section.contact-section .error-message {
    font-weight: 700;
    color: #fd3232;
    text-align: center;
    margin-bottom: 1em;
}

section.contact-section .back-button-row {
    text-align: center;
    margin-top: 3em;
}

section.contact-section .back-button-row a {
    display: inline-block;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    background: linear-gradient(to right, rgb(228 159 33), rgb(246 122 77));
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

section.contact-section .back-button-row a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}


@media (max-width: 767px) {
    section.contact-section .error-message {
        font-size: 0.9em;
    }

    section.contact-section .input-message-label {
        font-size: 0.9em;
    }

    section.contact-section select {
        font-size: 0.9em;
    }

    section.contact-section .form-label-row {
        font-size: 0.9em;
    }
}

@media (max-width: 450px) {
    section.contact-section .error-message {
        font-size: 0.8em;
    }

    section.contact-section .form-label-row {
        font-size: 0.8em;
    }

    section.contact-section select {
        font-size: 0.7em;
    }
}

.form-note-row {
  margin-top: 0;
}

.form-note {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 18px;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 450px) {
    .form-note {
        font-size: 12px;
    }
}


/* ==========================
   フッターセクション
========================== */
section.footer-section {
    color: #fff;
    text-align: center;
    font-size: 0.6em;
    background: #f3b27a;
    padding: 1em;
}