/* ========================================
   変数定義
   ======================================== */
/* :root {
    --color-main: #7BC6C6;
    --color-main-light: #A8DCDC;
    --color-main-dark: #4FAFAF;
    --color-accent: #F3CDA0;
    --required-color: #D89B5A;
    --color-bg-light: #EAEAEA;
    --color-bg-gray: #F8F9F9;
    --color-bg-white: #FEFEFE;
    --color-text-dark: #2F2F2F;
    --color-text-medium: #555555;
    --color-text-light: #000000;
    --color-border: rgba(0, 0, 0, 0.08);
    --max-width: 1100px;
} */

:root {
    /* ===== メインカラー（サイトの軸） ===== */
    --color-main: #9ECFCF;
    /* ティール（ロゴ・見出し補助） */
    --color-main-light: #CFE9E9;
    /* 薄め背景・装飾 */
    --color-main-dark: #6FB3B3;
    /* hover・強調 */

    /* ===== アクセント（CTA・重要箇所） ===== */
    --color-accent: #E07A3F;
    /* ロゴに寄せたオレンジ */
    --color-accent-light: #F3C3A3;
    --required-color: #D6652C;
    /* 必須・強調用（やや濃い） */

    /* ===== 背景 ===== */
    --color-bg-base: #FFFFFF;
    --color-bg-light: #FFFAF8;
    /* セクション背景（薄ピンク） */
    --color-bg-gray: #F4F7F7;
    /* カード・囲い */
    --color-bg-white: #FDF2EC;

    /* ===== テキスト ===== */
    --color-text-dark: #2E3A3A;
    /* 見出し（真っ黒禁止） */
    --color-text-medium: #5F6F6F;
    /* 本文 */
    --color-text-light: #8FAAAA;
    /* 補足・サブ */

    /* ===== ボーダー ===== */
    --color-border: rgba(158, 207, 207, 0.35);

    /* ===== レイアウト ===== */
    --max-width: 1100px;
}


/* ========================================
   リセット & ベーススタイル
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* レスポンシブ対応：htmlのfont-size調整 */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
}

@media (max-width: 300px) {
    html {
        font-size: 14px;
    }
}

body {
    font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    color: var(--color-text-medium);
    line-height: 1.7;
    background-color: #fff;
}

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

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

ul,
ol {
    list-style: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* タイポグラフィ - レスポンシブ対応 */
h1 {
    font-size: 40px;
    font-weight: 400;
    color: var(--color-text-dark);
    line-height: 1.3;
}

h2 {
    font-size: 32px;
    font-weight: 400;
    color: var(--color-text-dark);
    line-height: 1.4;
}

h3 {
    font-size: 24px;
    font-weight: 400;
    color: var(--color-text-dark);
    line-height: 1.5;
}

h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1.6em;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text-medium);
}

/* タブレット対応（768px前後） */
@media (max-width: 1023px) and (min-width: 769px) {
    h1 {
        font-size: 32px;
        line-height: 1.3;
    }

    h2 {
        font-size: 24px;
        line-height: 1.4;
    }

    h3 {
        font-size: 20px;
        line-height: 1.5;
    }

    p {
        font-size: 16px;
        line-height: 1.7;
    }
}

/* スマホ対応（768px以下） */
@media (max-width: 768px) {
    h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    h2 {
        font-size: 20px;
        line-height: 1.4;
    }

    h3 {
        font-size: 18px;
        line-height: 1.5;
    }

    p {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* 小さいスマホ対応（300px以下） */
@media (max-width: 300px) {
    h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    h2 {
        font-size: 18px;
        line-height: 1.4;
    }

    h3 {
        font-size: 16px;
        line-height: 1.5;
    }

    p {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* ========================================
   共通コンポーネント
   ======================================== */
/* セクションタイトル */
.section-title {
    position: relative;
    font-size: 36px;
    font-weight: 400;
    color: var(--color-text-dark);
    text-align: center;
    line-height: 1.19;
}

.section-title::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #9fcfd0;
    margin: 16px auto 0;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
}

.section-title--accent {
    position: relative;
}

.header__logo {
    height: 40px;
}

.footer__logo {
    height: 38px;
}

.section-title--accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 865px;
    height: 4px;
    background-color: var(--color-accent);
    z-index: -1;
}

.concerns__header {
    text-align: center;
}

/* セクションラベル */
.section-label {
    font-family: 'Marcellus SC', serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #9ECFCF;
    text-align: center;
    margin-bottom: 4px;
}

/* ボタン */
.btn {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
    min-width: 388px;
    /* 背景グラデーション */
    background: linear-gradient(90deg,
            rgba(79, 175, 175, 1) 0%,
            rgba(126, 202, 195, 1) 50%,
            rgba(79, 175, 175, 1) 100%);
    background-size: 200% 100%;
    background-position: center;

    transition: background-position 0.6s ease;

    @media (max-width: 768px) {
        padding: 20px 24px;
        font-size: 16px;
    }

    @media (max-width: 518px) {
        min-width: 300px;
    }

    @media (max-width: 373px) {
        padding: 16px 16px;
        min-width: 100%;
    }
}

.btn--primary {
    border-radius: 14px;

    @media (max-width: 768px) {
        width: 100%;
        max-width: 340px;
        height: 60px;
    }
}

.btn svg {
    transition: transform 0.3s ease;
}

.btn:hover {
    background-position: 100% 0;
}

.btn:hover svg {
    transform: translateX(6px);
}

.btn:active {
    transform: translateY(0);
}

.btn p {
    position: relative;
    color: #FFFFFF;
}

.btn--secondary {
    border-radius: 50px;

    @media (max-width: 768px) {
        width: 100%;
        max-width: 300px;
        height: 60px;
    }
}

.btn--outline {
    border-radius: 14px;

    @media (max-width: 768px) {
        width: 100%;
        max-width: 300px;
    }
}


.btn--outline-reverse {
    border-radius: 50px;
    background: #fff;
    border: 1px solid var(--color-main-dark);
    color: var(--color-main-dark);
    padding: 24px;
    width: 356px;
    height: 72px;
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;

    @media (max-width: 768px) {
        width: 100%;
        max-width: 300px;
        height: 60px;
    }
}

.btn--outline-reverse:hover {
    background: var(--color-main-dark);
    color: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.btn-icon {
    fill: currentColor;
    transition: fill 0.3s ease;
}



.btn--line {
    line-height: 1.2;
    background: #fff;
    color: var(--color-main-dark);
    padding: 16px 24px;
    border-radius: 12px;
    width: 356px;
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    @media (max-width: 768px) {
        width: 100%;
        max-width: 300px;
    }
}

.btn--line:hover, .btn--teal:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    transform: scale(1.01);
}

.btn--line:active, .btn--teal:active {
    transform: scale(0.98);
}

.btn--outline-white {
    line-height: 1.2;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 12px;
    padding: 16px 24px;
    width: 356px;
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    @media (max-width: 768px) {
        width: 100%;
        max-width: 300px;
        height: 50px;
    }
}

.btn--outline-white:hover {
    box-shadow: 0 6px 12px rgb(238, 238, 238);
    transform: scale(1.01);
}

.btn--outline-white:active {
    transform: scale(0.98);
}

/* インナー */
.inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;

    @media (max-width: 768px) {
        padding: 0 16px;
    }
}

/* ========================================
   ヘッダー
   ======================================== */
.header {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .header__inner {
        padding: 0 16px;
    }
}

.header__logo {
    z-index: 1001;
}

.header__logo-link {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.14em;
    color: var(--color-accent);
}

.header__nav {
    display: block;
}

@media (max-width: 768px) {
    .header__nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: var(--color-bg-light);
        padding-top: 80px;
        z-index: 999;
        transform: translateX(100%);
        transition: transform 0.4s ease;
    }

    .header__nav.is-active {
        display: block;
        transform: translateX(0);
    }
}

.header__nav-list {
    display: flex;
    align-items: center;
    gap: 24px;
}
@media (max-width: 875px) and (min-width: 769px) {
    .header__nav-list {
        gap: 10px;
    }
}
@media (max-width: 768px) {
    .header__nav-list {
        flex-direction: column;
        gap: 32px;
        align-items: flex-start;
        padding: 0 24px;
    }
}

.header__nav-link {
    position: relative;
    font-size: 16px;
    color: var(--color-text-medium);
    padding: 8px 0;
    text-decoration: none;
}

.header__nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
    height: 1px;
    background-color: var(--color-accent);

    transform: scaleX(0);
    transform-origin: right;

    transition: transform 0.4s ease;
}

.header__nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

@media (max-width: 768px) {
    .header__hamburger {
        display: flex;
    }
}

.header__hamburger-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-text-dark);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* 初期位置 */
.header__hamburger-line:nth-child(1) {
    top: 0;
}

.header__hamburger-line:nth-child(2) {
    top: 11px;
}

.header__hamburger-line:nth-child(3) {
    bottom: 0;
}

/* ✕状態 */
.header__hamburger.is-active .header__hamburger-line:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
}

.header__hamburger.is-active .header__hamburger-line:nth-child(2) {
    opacity: 0;
}

.header__hamburger.is-active .header__hamburger-line:nth-child(3) {
    bottom: auto;
    top: 11px;
    transform: rotate(-45deg);
}


/* ========================================
   ファーストビュー
   ======================================== */
.fv {
    position: relative;
    padding: 132px 0;
    background: rgba(255, 255, 255, 0.4);
    overflow: hidden;
    min-height: 700px;
    z-index: 1;
}

@media (max-width: 768px) {
    .fv {
        padding: 80px 0 60px;
        min-height: auto;
    }
}

@media (max-width: 384px) {
    .fv {
        padding: 80px 0;
    }
}

.fv__image {
    margin-top: 70px;
    position: absolute;
    top: 119px;
    right: 23%;
    width: 908px;
    height: 512px;
    border-radius: 50px;
    overflow: hidden;
    z-index: 0;
}

@media (max-width: 1400px) {
    .fv__image {
        right: 10%;
    }
}

@media (max-width: 1200px) {
    .fv__image {
        right: 7%;
    }
}

@media (max-width: 1028px) {
    .fv__image {
        left: 50%;
        transform: translateX(-50%);
        padding: 0 18px;
        width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .fv__image {
        margin-top: -14px;
    }
}

@media (max-width: 600px) {
    .fv__image {
        max-height: 463px;
        margin-top: 60px;
    }
}

@media (max-width: 384px) {
    .fv__image {
        max-height: 463px;
        margin-top: 0;
    }
}

.fv__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fv__inner {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 174px;
    display: flex;
    align-items: center;
}

@media (max-width: 1200px) {
    .fv__inner {
        padding: 0 48px;
    }
}

@media (max-width: 1028px) {
    .fv__inner {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .fv__inner {
        padding: 0 16px;
    }
}

.fv__content {
    text-align: center;
    max-width: 844px;
}

.fv__tag {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-main);
    margin-bottom: 24px;
    line-height: 1.19;
}

@media (max-width: 768px) {
    .fv__tag {
        font-size: 14px;
        margin-bottom: 16px;
    }
}

.fv__title {
    font-family: 'Inter', sans-serif;
    font-size: 58px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-text-dark);
    text-align: center;
    margin-bottom: 32px;
    text-shadow: 3px 3px 8px #FFF, -3px -3px 8px #FFF, -3px 3px 8px #FFF, 3px -3px 8px #FFF, 0 3px 8px #FFF, 0 -3px 8px #FFF, -3px 0 8px #FFF, 3px 0 8px #FFF;
}

.width478 {
    display: none;
}

@media (max-width: 478px) {
    .width478 {
        display: block;
    }
}

.color-blue {
    color: var(--color-accent);
}

@media (max-width: 1280px) {
    .fv__title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .fv__title {
        font-size: 32px;
        margin-bottom: 24px;
    }
}

.fv__description {
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    .fv__description {
        margin-bottom: 32px;
    }
}

.fv__description-text {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 500;
    color: var(--color-text-dark);
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .fv__description-text {
        font-size: 16px;
    }
}

.fv__description-sub {
    font-size: 16px;
    line-height: 1.19;
    font-weight: 500;
    color: var(--color-text-dark);
}

.fv__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.fv__cta-note {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-text-dark);
    line-height: 1.7;
}

.btn-area {
    color: #FFF;
    width: 100%;
}

/* ========================================
   悩み訴求セクション
   ======================================== */
.width910 {
    display: none;
}

@media (min-width: 769px) and (max-width: 910px) {
    .width910 {
        display: block;
    }

    .section-title--accent::after {
        max-width: 480px;
    }
}

@media (max-width: 704px) {
    .width910 {
        display: block;
    }

    .section-title--accent::after {
        max-width: 360px;
    }
}

.concerns {
    padding: 80px 0;

    @media (max-width: 768px) {
        padding: 60px 0;
    }

    @media (max-width: 428px) {
        padding: 40px 0;
    }
}

.concerns__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;

    @media (max-width: 768px) {
        padding: 0 16px;
    }
}

.concerns__header {
    text-align: center;
    margin-bottom: 64px;

    @media (max-width: 768px) {
        margin-bottom: 40px;
    }
}

.concerns__description {
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text-medium);
    margin-top: 16px;
}

.concerns__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;

    @media (max-width: 768px) {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 32px;
    }
}

.concerns__message {
    background: var(--color-bg-gray);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    margin: 0 auto;

    @media (max-width: 768px) {
        padding: 24px 16px;
    }
}

.concerns__message-text {
    font-size: 18px;
    line-height: 1.61;
    color: var(--color-text-dark);
    margin-bottom: 16px;
    font-weight: 400;
}

.concerns__message-sub {
    font-size: 14px;
    line-height: 1.71;
    color: var(--color-text-medium);
}


.concern-card {
    background: #fff;
    border: 2px solid var(--color-bg-gray);
    border-radius: 4px;
    padding: 24px;
    box-shadow: 2px 2px 2px rgb(238, 238, 238);

    @media (max-width: 768px) {
        padding: 20px;
    }
}

.concern-card__icon {
    margin-bottom: 16px;
}

.concern-card__icon-img {
    width: 53px;
    height: 40px;
}

.concern-card__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--color-text-dark);
    margin-bottom: 16px;
}

.concern-card__text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-medium);
}

.about-bg-area {
    background-color: var(--color-bg-white);
}

.service-bg,
.about-bg {
    width: 100%;
}

/* ========================================
   サービス紹介
   ======================================== */
.service {
    padding: 80px 0;
    background: var(--color-bg-gray);

    @media (max-width: 768px) {
        padding: 60px 0;
    }

    @media (max-width: 428px) {
        padding: 40px 0;
    }
}

.service__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;

    @media (max-width: 768px) {
        padding: 0 16px;
    }
}

.service__header {
    text-align: center;
    margin-bottom: 64px;

    @media (max-width: 768px) {
        margin-bottom: 40px;
    }
}

.service__description {
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text-medium);
    margin-top: 16px;
}

.service__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;

    @media (max-width: 968px) {
        gap: 18px;
    }

    @media (max-width: 768px) {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    @media (max-width: 580px) {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


.service-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 32px;
    box-shadow: 0 3px 3px rgb(238, 238, 238);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

    @media (max-width: 1028px) {
        padding: 16px;
    }

    @media (max-width: 768px) {
        padding: 24px;
        gap: 20px;
    }
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgb(238, 238, 238);
}

.service-card__icon {
    width: 64px;
    height: 64px;
    background-color: var(--color-main);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.orange {
    background-color: var(--color-accent);
}

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

.service-card__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;

    @media (max-width: 768px) {
        gap: 18px;
    }
}

.service-card__title {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--color-text-dark);
    text-align: center;
}

.service-card__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.service-card__item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-card__check {
    width: 20px;
    height: 20px;
}

.service-card__text {
    font-size: 14px;
    line-height: 1.57;
    color: var(--color-text-medium);
}


/* ========================================
   料金セクション
   ======================================== */
.width525 {
    display: none;
}

@media (min-width: 482px) and (max-width: 525px) {
    .width525 {
        display: block;
    }
}

.price {
    padding: 80px 0;
    background: var(--color-bg-base);
    position: relative;

    @media (max-width: 768px) {
        padding: 60px 0;
    }

    @media (max-width: 428px) {
        padding: 40px 0;
    }
}

.price__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;

    @media (max-width: 768px) {
        padding: 0 16px;
    }
}

.price__header {
    text-align: center;
    margin-bottom: 64px;

    @media (max-width: 768px) {
        margin-bottom: 24px;
    }
}

.price__description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-medium);
    margin-top: 16px;
}

.price__content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 18px;
}

.price__image-wrapper {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 306px;
    z-index: 0;

    @media (max-width: 525px) {
        top: 80px;
    }

    @media (max-width: 387px) {
        top: 120px;
    }
}

.price__bg-image {
    width: 100%;
    height: 306px;
    object-fit: cover;
}

.price__card {
    position: relative;
    z-index: 1;
    background: rgba(254, 254, 254, 0.6);
    backdrop-filter: blur(40px);
    border-radius: 40px;
    padding: 0 64px 40px 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 876px;
    width: 100%;
    backdrop-filter: blur(15px);

    @media (max-width: 768px) {
        padding: 32px 24px;
        border-radius: 24px;
    }
}

.price__list {
    display: flex;
    gap: 16px;
    flex-direction: column;
    border: 1px solid rgba(161, 161, 161, 0.5);
    border-radius: 14px;
    padding: 16px;
    width: 100%;
    max-width: 366px;
    background-color: #FFFFFF;
}

.price__item {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.05em;
    color: var(--color-text-medium);
    text-align: center;

    @media (max-width: 360px) {
        font-size: 14px;
    }
}

.price__note {
    font-size: 14px;
    line-height: 1.71;
    letter-spacing: 0.05em;
    color: var(--color-text-medium);
    text-align: center;
}

.price-btn {
    display: flex;
    justify-content: center;
    border-radius: 50px;
}

.price-btn .btn,
.btn--primary p {
    font-size: 18px;
    font-weight: 500;
}

/* ========================================
   強み・特徴セクション
   ======================================== */
.strength {
    padding: 80px 0;
    background: var(--color-bg-light);

    @media (max-width: 768px) {
        padding: 60px 0;
    }

    @media (max-width: 428px) {
        padding: 40px 0;
    }
}

.strength__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;

    @media (max-width: 768px) {
        padding: 0 16px;
    }
}

.strength__header {
    text-align: center;
    margin-bottom: 64px;

    @media (max-width: 768px) {
        margin-bottom: 40px;
    }
}

.strength__description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-medium);
    margin-top: 16px;
}

.strength__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 48px;

    @media (max-width: 768px) {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 32px;
    }
}

.strength__cta {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 1024px;
    margin: 0 auto;

    @media (max-width: 768px) {
        padding: 24px 16px;
    }
}

.strength__cta-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.61;
    color: var(--color-text-dark);
}

.strength__cta-sub {
    font-size: 14px;
    line-height: 1.71;
    color: var(--color-text-medium);
}


.strength-card {
    padding: 24px;
    display: flex;
    gap: 16px;

    @media (max-width: 768px) {
        padding: 0;
    }
}

.strength-card__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: var(--color-accent);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    @media (max-width: 768px) {
        margin-bottom: 8px;
    }
}

.strength-card__icon-img {
    width: 20px;
    height: 18px;
}

.strength-card__content {
    flex: 1;
}

.strength-card__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    color: var(--color-text-dark);
    margin-bottom: 16px;

    @media (max-width: 768px) {
        margin-bottom: 8px;
    }
}

.strength-card__text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-medium);
}


/* ========================================
   制作実績
   ======================================== */
.works {
    padding: 80px 0;
    background: var(--color-bg-base);

    @media (max-width: 768px) {
        padding: 60px 0;
    }

    @media (max-width: 428px) {
        padding: 40px 0;
    }
}

.works__inner {
    max-width: 1238px;
    margin: 0 auto;
    padding: 0 20px;

    @media (max-width: 768px) {
        padding: 0 16px;
    }
}

.works__header {
    text-align: center;
    margin-bottom: 64px;

    @media (max-width: 768px) {
        margin-bottom: 40px;
    }
}

.works__description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-medium);
    margin-top: 16px;
}

.works__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;

    @media (max-width: 968px) {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    @media (max-width: 768px) {
        gap: 20px;
        margin-bottom: 32px;
    }

    @media (max-width: 580px) {
        grid-template-columns: 1fr;
    }
}

.works__cta {
    text-align: center;
}


.work-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.work-card__image {
    padding: 0 8px;
    width: auto;
    max-height: 481px;
    overflow: hidden;

}

.work-card__img {
    margin: 0 auto;
    width: auto;
    height: 100%;
    border-radius: 14px 14px 0 0;
    object-fit: cover;
}

.work-card__content {
    padding: 24px;

    @media (max-width: 768px) {
        padding: 20px;
    }
}

.work-card__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-text-dark);
    margin-bottom: 14px;
}

.work-card__flow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 8px;
    margin-bottom: 16px;
}

.work-card__flow__before img {
    width: 10px;
    height: 14px;
}


.work-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.42;
}

.work-card__badge--problem {
    background: #FFF5F0;
    color: #E4B37A;
}

.work-card__badge--solution {
    background: #F0F8F8;
    color: var(--color-main);
}

.work-card__badge--result {
    background: var(--color-bg-gray);
    color: var(--color-text-dark);
}

.work-card__arrow {
    font-size: 12px;
    color: var(--color-main);
}

.work-card__detail {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-text-medium);
    margin-bottom: 16px;
}

.work-card__before-after {
    padding-top: 16px;
    border-top: 1px solid #E5E5E5;
}

.work-card__before-after-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.work-card__before-after-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-medium);
}


/* ========================================
   お客様の声
   ======================================== */
.en-title {
    position: absolute;
    font-family: 'Marcellus SC', serif;
    font-size: 92px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #fff9f6;
    text-align: center;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 0;

    @media (max-width: 768px) {
        top: 0;
        gap: 8px;
    }

    @media (max-width: 452px) {
        font-size: 64px;
        top: 23px;
    }

    @media (max-width: 314px) {
        top: 30px;
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0.1em;
        text-align: center;
        margin-bottom: 4px;
    }
}

.en-title::before,
.en-title::after {
    content: "";
    display: block;
    width: 120px;
    height: 2px;
    background-color: #fff9f6;
    opacity: 0.8;

    @media (max-width: 768px) {
        width: 60px;
    }

    @media (max-width: 574px) {
        width: 0px;
    }
}

.testimonials {
    position: relative;
    max-width: 100%;
    padding: 80px 0;
    background: var(--color-bg-white);

    @media (max-width: 768px) {
        padding: 60px 0;
    }

    @media (max-width: 428px) {
        padding: 40px 0;
    }
}

.testimonials__inner {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1;

    @media (max-width: 768px) {
        padding: 0 16px;
    }
}

.testimonials__header {
    text-align: center;
    margin-bottom: 64px;

    @media (max-width: 768px) {
        margin-bottom: 40px;
    }
}

.testimonials__description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-medium);
    margin-top: 16px;
}

.testimonials__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;

    @media (max-width: 768px) {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}


.testimonial-card {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 10px 24px rgba(190, 150, 130, 0.14);
    display: flex;
    flex-direction: column;
    gap: 16px;

    @media (max-width: 768px) {
        padding: 20px;
    }
}

.testimonial-card__profile {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-card__image {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card__info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.testimonial-card__name {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.36;
    color: var(--color-text-dark);
}

.testimonial-card__position {
    font-size: 12px;
    line-height: 1.42;
    color: var(--color-text-medium);
}

.testimonial-card__text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-medium);
}


/* ========================================
   自己紹介
   ======================================== */
.about {
    position: relative;
    padding: 80px 0;
    background: var(--color-bg-light);

    @media (max-width: 768px) {
        padding: 60px 0;
    }

    @media (max-width: 428px) {
        padding: 40px 0;
    }
}

.always {
    position: absolute;
    top: 200px;
    left: 32%;

    @media (max-width: 1480px) {
        left: 20%;
    }

    @media (max-width: 768px) {
        top: 150px;
        left: 0;
        padding-left: 8px;
    }
}

.about__inner {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;

    @media (max-width: 768px) {
        padding: 0 16px;
    }
}

.about__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    max-width: 865px;
    margin: 0 auto;

    @media (max-width: 968px) {
        flex-direction: column;
        gap: 32px;
    }
}

.about__image {
    flex-shrink: 0;
}

.about__img {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    object-fit: cover;

    @media (max-width: 768px) {
        width: 100px;
        height: 100px;
    }
}

.about__text {
    flex: 1;
    text-align: center;
}

.about__title {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.38;
    color: var(--color-text-dark);
    margin-bottom: 8px;
    margin-top: 4px;

    @media (max-width: 768px) {
        font-size: 20px;
    }
}

.about__role {
    font-size: 14px;
    line-height: 1.36;
    color: var(--color-text-medium);
    margin-bottom: 24px;
}

.about__description {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    text-align: left;

    @media (max-width: 768px) {
        padding: 24px 16px;
    }
}

.about__role {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-medium);
    margin-bottom: 24px;
}

.about__description p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-medium);
    margin-bottom: 24px;

    @media (max-width: 360px) {
        font-size: 14px;
    }
}

.about:last-child {
    margin-bottom: 0;
}

/* ========================================
   CTAセクション
   ======================================== */
.cta {
    padding: 80px 0 80px 0;
    /* background: linear-gradient(
    180deg,
    #F2FAFA 0%,
    #EAF6F6 100%
    ); */
    background-color: #8ECFCF;
    color: #fff;

    @media (max-width: 768px) {
        padding: 60px 0 60px 0;
    }
}

.cta__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;

    @media (max-width: 768px) {
        padding: 0 16px;
    }
}

.cta__content {
    text-align: center;
    margin-bottom: 64px;
    max-width: 865px;
    margin-left: auto;
    margin-right: auto;

    @media (max-width: 768px) {
        margin-bottom: 40px;
    }

    @media (max-width: 550px) {
        margin-bottom: 8px;
    }
}

.cta__title {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.11;
    margin-bottom: 16px;
    color: #FFFFFF;

    @media (max-width: 768px) {
        font-size: 24px;
    }
}

.cta__description {
    font-size: 16px;
    line-height: 1.63;
    color: #FFFFFF;
}

.cta__form-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;

    @media (max-width: 768px) {
        gap: 40px;
    }
}

.cta__benefits {
    border-radius: 24px;
    padding: 48px;
    width: 100%;
    max-width: 798px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 16px;

    @media (max-width: 550px) {
        padding: 24px 16px
    }
}

.cta__benefits-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-text-medium);
    text-align: center;
}

.report-title {
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 0 auto;
}

.cta__benefits-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta__benefits-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.cta__benefits-li {
    display: flex;
    flex-direction: column;
}

.under-line {
    width: 100%;
}

.cta__benefits-check {
    width: 20px;
    height: 20px;
    background: var(--color-main);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}

.cta__benefits-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-medium);
}

.cta__buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cta__buttons-divider {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #FFF;
}

.cta__note {
    font-size: 12px;
    line-height: 1.33;
    color: #FFF;
    text-align: center;
}


/* ========================================
   フッター
   ======================================== */
.footer {
    margin-top: 8px;
    padding: 0 0 64px 0;
    background: #FBF9FA;
    border-top: 2px solid var(--color-accent);

    @media (max-width: 768px) {
        padding: 8px 0 48px 0;
    }
}

.footer__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 48px 16px 0;

}

.footer__content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;

    @media (max-width: 968px) {
        flex-direction: column;
        gap: 40px;
    }

    @media (max-width: 768px) {
        gap: 32px;
        margin-bottom: 32px;
    }
}

.footer__brand {
    max-width: 230px;
}

.footer__logo {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.14em;
    color: var(--color-text-dark);
    margin-bottom: 16px;
}

.footer__tagline {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.14em;
    line-height: 1.6;
    color: var(--color-text-medium);
}

.footer__nav {
    padding: 8px;

}

.container {
    max-width: 1140px;
    margin: 0 auto;
}

.footer__nav-item {
    padding: 0 16px;

    @media (max-width: 768px) {
        padding: 8px;
    }
}

.footer__nav-block {
    min-width: 186px;
}

.footer__nav-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.38;
    color: var(--color-text-dark);
    margin-bottom: 16px;
}

.footer__nav-list {
    display: flex;
    margin: 0 auto;

    @media (max-width: 768px) {
        flex-direction: column;
    }
}

@media (min-width: 769px) {
    .footer__nav-list li {
        border-right: 1px solid #0000000f;
    }

    .footer__nav-list li:first-child {
        border-left: 1px solid #0000000f;
    }
}

@media (max-width: 768px) {
    .footer__nav-list li {
        border-bottom: 1px solid #0000000f;
    }

    .footer__nav-list li:first-child {
        border-top: 1px solid #0000000f;
    }
}

.footer__nav-link {
    font-size: 12px;
    line-height: 1.38;
    color: var(--color-text-medium);

    .footer:hover {
        opacity: 1;
        color: var(--color-main);
    }
}

.footer__copyright {
    text-align: center;
    padding-top: 32px;

    @media (max-width: 768px) {
        padding-top: 24px;
    }
}

.footer__copyright-text {
    font-size: 14px;
    color: var(--color-text-medium);
}

/* ========================================
   サービスページ
   ======================================== */
.service-intro {
    position: relative;
    width: 100%;
    padding: 72px 0 80px;
    background: linear-gradient(180deg,
            #fdf7f4 0%,
            #fffaf8 60%,
            #ffffff 100%);

    @media (max-width: 768px) {
        padding: 56px 0 64px;
    }

    @media (max-width: 428px) {
        padding: 40px 0 48px;
    }
}

.containers {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 16px;
    z-index: 1;
}

.lead-text {
    margin-top: 16px;
}

.lead-text {
    text-align: center;
}

.customer-flow {
    width: 100%;
    padding: 80px 0;
    position: relative;
    overflow: hidden;

    @media (max-width: 768px) {
        padding: 60px 0;
    }

    @media (max-width: 428px) {
        padding: 40px 0;
    }
}

.frow-bg {
    position: absolute;
    width: 100%;
    top: 50%;
    z-index: 0;
    pointer-events: none;

    @media (max-width: 628px) {
        display: none;
    }
}

.frow-path {
    fill: none;
    stroke: var(--color-accent);
    stroke-width: 2.5;
    stroke-linecap: round;

    stroke-dasharray: 1600;
    stroke-dashoffset: 1600;

    animation: draw-flow 3s ease-out forwards;
}

@keyframes draw-flow {
    to {
        stroke-dashoffset: 0;
    }
}

.flow-text {
    font-size: 16px;
    line-height: 1.7em;
    margin-top: 16px;
}

.customer-flow .container {
    position: relative;
    max-width: 872px;
    z-index: 1;
    padding: 0 16px;
}

.flow-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    border: 1px solid #C2C2C2;
    box-shadow: 0 3px 3px rgb(238, 238, 238);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flow-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgb(238, 238, 238);
}

.child-1 {
    margin-top: 20px;

    @media (max-width: 872px) {
        margin-top: 0;
    }
}

.child-2 {
    margin-top: 40px;

    @media (max-width: 872px) {
        margin-top: 0;
    }
}

.child-3 {
    margin-top: 60px;

    @media (max-width: 872px) {
        margin-top: 0;
    }
}

.flow-grid {
    min-height: 268px;
    padding: 40px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 24px;
    align-items: start;

    @media (max-width: 872px) {
        align-items: stretch;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    @media (max-width: 428px) {
        align-items: stretch;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 16px;
    }
}

.flow-icon {
    width: 48px;
    min-height: 48px;
    border-radius: 50%;
    color: #fff;
    font-weight: bold;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;

    @media (max-width: 872px) {
        margin: 0 auto 16px;
    }
}

.flow-icon.teal {
    background: var(--color-main);
}

.flow-icon.gold {
    background: var(--color-accent);
}

.flow-step {
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 700;
    ;

    @media (max-width: 872px) {
        margin-bottom: 8px;
    }
}

.flow-desc {
    font-size: 14px;
    line-height: 1.7em;
}

.flow-note {
    text-align: right;
    font-weight: 700;
}

.service-number {
    font-family: 'Marcellus SC', serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-align: left;
    margin-bottom: 4px;
}

.teal-text {
    color: var(--color-main);
}

.gold-text {
    color: var(--color-accent);
}

.services {
    padding: 80px 0;
    background-color: #fffaf8;

    @media (max-width: 768px) {
        padding: 60px 0;
    }

    @media (max-width: 428px) {
        padding: 40px 0;
    }
}

.services .container {
    max-width: 1120px;
    display: flex;
    flex-direction: column;
    gap: 56px;
    padding: 0 16px;
}

.services-grid {
    display: flex;
    gap: 40px;
    align-items: center;

    @media (max-width: 768px) {
        flex-direction: column;
        gap: 24px;
    }
}

.child {
    flex: 1;
}

.service-description {
    margin: 24px 0;
}

.services ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.services li {
    display: flex;
    gap: 8px;
    align-items: center;
}

.service-image {
    border-radius: 16px;
    opacity: 0.85;
    scale: 0.8;

    @media (max-width: 768px) {
        order: 1;
    }
}

.service-text {
    @media (max-width: 768px) {
        order: 2;
    }
}

.service-text h3 {
    font-weight: 700;
}

.flow-section {
    padding: 80px 0;
    background-color: #FDF7F4;

    @media (max-width: 768px) {
        padding: 60px 0;
    }

    @media (max-width: 428px) {
        padding: 40px 0;
    }
}

.flow-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 64px;
}

.hexagon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hexagon-number {
    position: absolute;
    font-family: 'Marcellus SC', serif;
    color: #fff;
    font-size: 20px;
    line-height: 1.6em;
    letter-spacing: 0.1em;
}

.flow-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

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

.pink-text {
    color: #F3C6CF;
}

.hexagon-overlay {
    display: flex;
    gap: 14px;
    align-items: center;
}

.step-label {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    background-color: var(--color-bg-base);
}

.frow-number {
    font-family: 'Marcellus SC', serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-align: left;
}

.hexagon-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cta .container {
    text-align: center;
}

.cta__description {
    margin-bottom: 32px
}

.btn--teal {
    line-height: 1.2;
    background: #fff;
    color: var(--color-main-dark);
    padding: 16px 24px;
    border-radius: 12px;
    width: 356px;
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    @media (max-width: 768px) {
        width: 100%;
        max-width: 300px;
    }
}


/* ========================================
   料金プランページ
   ======================================== */
/* .service-intro__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 80px 32px 80px 32px;

    @media (max-width: 768px) {
        padding: 60px 16px;
        gap: 12px;
    }

    @media (max-width: 300px) {
        padding: 40px 12px;
    }
} */

.lead-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-medium);
    text-align: center;
    margin-top: 16px;

    @media (max-width: 768px) {
        font-size: 14px;
    }
}

/* プランカードセクション */
.price-plans {
    background: var(--color-bg-base);
    padding: 80px 0;

    @media (max-width: 1200px) {
        padding: 80px 0;
    }

    @media (max-width: 768px) {
        padding: 60px 0;
    }

    @media (max-width: 428px) {
        padding: 40px 0;
    }
}

.price-plans .container {
    max-width: 1190px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 0 16px;
}

.price-plans__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;

    @media (max-width: 768px) {
        gap: 40px;
    }
}

.price-plans__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;

    @media (max-width: 1200px) {
        gap: 24px;
    }

    @media (max-width: 768px) {
        flex-direction: column;
        gap: 16px;
        padding: 0;
    }
}

.price-plan-card {
    position: relative;
    background: #FFFFFF;
    border: 1px solid #C2C2C2;
    border-radius: 14px;
    box-shadow: 0 3px 3px rgb(238, 238, 238);
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 362px;
    min-height: 604px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    @media (max-width: 787px) {
        min-height: auto;
        padding: 24px;
    }

    @media (max-width: 300px) {
        padding: 16px;
    }
}

.price-plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgb(238, 238, 238);
}

.price-plan-card--standard {
    background: #EDF7F7;
    border: 2px solid var(--color-main);
    max-width: 362px;
    min-height: 604px;

    @media (max-width: 787px) {
        min-height: auto;
    }
}

.price-plan-card__badge {
    position: absolute;
    top: -11.53px;
    left: 15.5px;
    width: 58.13px;
    height: 83.75px;
    background: url('../images/rabel.svg') no-repeat;
    background-size: contain;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;

    @media (max-width: 768px) {
        top: -8px;
        left: 12px;
        width: 45px;
        height: 65px;
    }

    @media (max-width: 300px) {
        top: -6px;
        left: 10px;
        width: 38px;
        height: 55px;
    }
}

.price-plan-card__badge-text {
    position: relative;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.05em;
    color: var(--color-text-medium);
    text-align: center;
    margin-top: -15px;

    @media (max-width: 768px) {
        font-size: 11px;
        margin-top: 5px;
    }

    @media (max-width: 300px) {
        font-size: 9px;
        margin-top: 4px;
    }
}

.price-plan-card__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    width: 100%;

    @media (max-width: 768px) {
        gap: 24px;
    }
}

.price-plan-card__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.price-plan-card__label {
    font-family: 'Marcellus SC', serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    color: var(--color-main);
    width: 142px;

    @media (max-width: 768px) {
        font-size: 12px;
    }
}

.price-plan-card__label--premium {
    color: var(--color-accent);
}

.price-plan-card__title-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.price-plan-card__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.29;
    text-align: center;
    color: var(--color-text-dark);

    @media (max-width: 768px) {
        font-size: 20px;
    }

    @media (max-width: 300px) {
        font-size: 18px;
    }
}

.price-plan-card__price {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.08;
    text-align: center;
    color: var(--color-text-dark);

    @media (max-width: 768px) {
        font-size: 24px;
    }

    @media (max-width: 300px) {
        font-size: 24px;
    }
}

.price-plan-card__description {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    color: var(--color-text-medium);

    @media (max-width: 768px) {
        font-size: 13px;
    }
}

.price-plan-card__features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-plan-card__feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-plan-card__check {
    width: 24px;
    height: 24px;
    flex-shrink: 0;

    @media (max-width: 768px) {
        width: 20px;
        height: 20px;
    }
}

.price-plan-card__feature span {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    color: var(--color-text-medium);

    @media (max-width: 768px) {
        font-size: 13px;
    }
}

.price-plan-card__recommend {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    background: linear-gradient(
    90deg,
    #c3ab6b 0%,
    #e6d3a3 25%,
    #d4b56d 50%,
    #e6d3a3 75%,
    #c3ab6b 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: auto;

    @media (max-width: 768px) {
        font-size: 12px;
        margin-top: 16px;
    }
}

.price-plans__note {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.625;
    text-align: center;
    margin: 0 auto;
    color: var(--color-text-medium);
    max-width: 950px;

    @media (max-width: 768px) {
        font-size: 14px;
        padding: 0 16px;
    }

    @media (max-width: 300px) {
        font-size: 12px;
        padding: 0 8px;
    }
}

/* 補助金セクション */
.subsidy-section .container {
    max-width: 1190px;
    padding: 0 16px;
}

.subsidy-section {
    background: var(--color-bg-base);
    padding: 80px 0;

    @media (max-width: 1200px) {
        padding: 80px 0;
    }

    @media (max-width: 768px) {
        padding: 60px 0;
    }

    @media (max-width: 428px) {
        padding: 40px 0;
    }
}

.subsidy-section__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.subsidy-section__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: var(--color-bg-light);
    border-radius: 16px;
    width: 100%;
    max-width: 1190px;

    @media (max-width: 768px) {
        padding: 24px 16px;
        gap: 20px;
    }

    @media (max-width: 300px) {
        padding: 20px 12px;
    }
}

.subsidy-section__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.61;
    text-align: center;
    color: var(--color-text-dark);
    max-width: 380px;

    @media (max-width: 768px) {
        font-size: 16px;
    }

    @media (max-width: 300px) {
        font-size: 14px;
    }
}

.subsidy-section__cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    width: 100%;

    @media (max-width: 768px) {
        flex-direction: column;
        gap: 16px;
    }
}

.subsidy-card {
    background: #FFFFFF;
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 530px;

    @media (max-width: 768px) {
        padding: 20px;
        max-width: 100%;
    }

    @media (max-width: 300px) {
        padding: 16px;
    }
}

.subsidy-card__title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.375;
    color: var(--color-main);
    text-align: left;

    @media (max-width: 768px) {
        font-size: 14px;
    }
}

.subsidy-card__amount {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.75;
    color: var(--color-main);
    text-align: left;

    @media (max-width: 768px) {
        font-size: 16px;
    }
}

.subsidy-card__description {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-medium);
    text-align: left;

    @media (max-width: 768px) {
        font-size: 13px;
    }
}

.subsidy-section__note {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.71;
    text-align: center;
    color: var(--color-text-medium);

    @media (max-width: 768px) {
        font-size: 12px;
    }
}

/* オプションセクション */
.option-section {
    background: var(--color-bg-white);
    padding: 80px 0;

    @media (max-width: 1200px) {
        padding: 80px 0;
    }

    @media (max-width: 768px) {
        padding: 60px 0;
    }

    @media (max-width: 428px) {
        padding: 40px 0;
    }
}

.option-section__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    max-width: 1182px;
    margin: 0 auto;

    @media (max-width: 768px) {
        gap: 40px;
    }
}

.option-section__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
    width: 100%;
}

.option-section__header h2 {
    width: 100%;
}

.faq-section__header h2 {
    width: 100%;
}

.option-section__description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    margin-top: 16px;
    color: var(--color-text-medium);

    @media (max-width: 768px) {
        font-size: 14px;
    }
}

.option-section__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    padding: 0 16px;

    @media (max-width: 768px) {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.option-card {
    background: #FFFFFF;
    border: 1px solid #E6D6CE;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(190, 150, 130, 0.12);
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;

    @media (max-width: 768px) {
        padding: 20px;
    }

    @media (max-width: 300px) {
        padding: 16px;
        gap: 12px;
    }
}

.option-card__title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    color: var(--color-text-dark);

    @media (max-width: 768px) {
        font-size: 14px;
    }

    @media (max-width: 300px) {
        font-size: 13px;
    }
}

.option-card__price {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    color: var(--color-main);

    @media (max-width: 768px) {
        font-size: 14px;
    }
}

/* FAQセクション */
.faq-section {
    background-color: var(--color-bg-light);
    padding: 80px 0;

    @media (max-width: 1200px) {
        padding: 80px 0;
    }

    @media (max-width: 768px) {
        padding: 60px 0;
    }

    @media (max-width: 428px) {
        padding: 40px 0;
    }
}

.faq-section__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    max-width: 900px;
    margin: 0 auto;

    @media (max-width: 768px) {
        gap: 40px;
    }
}

.faq-section__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 16px;
    width: 100%;
    cursor: pointer;
    position: relative;

    @media (max-width: 768px) {
        gap: 8px;
    }
}

.faq-section__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    padding: 0 16px;

    @media (max-width: 768px) {
        gap: 16px;
    }
}

.faq-item {
    background: #FFFFFF;
    border: 1px solid #E6DAD5;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(200, 170, 155, 0.12);
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: 1s ease;

    @media (max-width: 768px) {
        padding: 20px;
        gap: 16px;
    }

    @media (max-width: 300px) {
        padding: 16px;
        gap: 12px;
    }
}

.faq-item__question {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    color: var(--color-text-dark);
    text-align: left;

    @media (max-width: 768px) {
        font-size: 14px;
    }

    @media (max-width: 300px) {
        font-size: 13px;
    }
}

.text-blue {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    color: var(--color-main);
    text-align: left;

    @media (max-width: 768px) {
        font-size: 14px;
    }

    @media (max-width: 300px) {
        font-size: 13px;
    }
}

.font__16 {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-dark);
    text-align: left;

    @media (max-width: 768px) {
        font-size: 14px;
    }

    @media (max-width: 300px) {
        font-size: 13px;
    }
}

.faq-item__answer {
    padding-left: 24px;
    padding-top: 0;
    padding-bottom: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 1.0s ease;

    @media (max-width: 768px) {
        padding-left: 16px;
    }

    @media (max-width: 300px) {
        padding-left: 12px;
    }
}

.faq-item.is-open .faq-item__answer {
    max-height: 2000px;
}

.faq-item__answer-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-medium);
    text-align: left;
    margin-top: 24px;

    @media (max-width: 768px) {
        font-size: 13px;
    }

    @media (max-width: 300px) {
        font-size: 12px;
    }
}

.question-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.text-orange {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    color: var(--color-accent);
    text-align: left;

    @media (max-width: 768px) {
        font-size: 13px;
    }

    @media (max-width: 300px) {
        font-size: 12px;
    }
}

/* CTAセクション（料金ページ用） */
.cta-price {
    background: #8ECFCF;
    padding: 80px 32px;

    @media (max-width: 768px) {
        padding: 40px 16px;
    }

    @media (max-width: 300px) {
        padding: 32px 12px;
    }
}

.cta-price__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 865px;
    margin: 0 auto;

    @media (max-width: 768px) {
        gap: 32px;
    }
}

.cta-price__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-aline: center;
    width: 100%;
}

.cta-price__title {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.11;
    text-align: center;
    color: #FFFFFF;

    @media (max-width: 768px) {
        font-size: 24px;
    }

    @media (max-width: 300px) {
        font-size: 24px;
    }
}

.cta-price__description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.625;
    text-align: center;
    color: #FFFFFF;

    @media (max-width: 768px) {
        font-size: 14px;
    }

    @media (max-width: 300px) {
        font-size: 12px;
    }
}

.cta-price__button {
    display: flex;
    justify-content: center;
}

.cta-price__button .btn {
    background: #FFFFFF;
    color: var(--color-main-dark);
    border-radius: 12px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    min-width: 356px;

    @media (max-width: 768px) {
        min-width: 300px;
        width: 100%;
        max-width: 100%;
    }

    @media (max-width: 300px) {
        min-width: 100%;
        padding: 14px 20px;
        font-size: 14px;
    }
}

.contact {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 16px;
    line-height: 1.7em;
    color: var(--color-text-dark);
}

.required {
    font-size: 12px;
    color: var(--required-color);
    margin-left: 4px;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.6;
}

.contact textarea {
    resize: vertical;
    min-height: 180px;
}

.form-privacy {
    font-size: 13px;
}

.privacy-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--color-text-dark);
    cursor: pointer;
}

.privacy-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.form-privacy a {
    color: var(--required-color);
    text-decoration: underline;
}

.form-privacy .required {
    color: var(--required-color);
    margin-right: 2px;
}

.contact-note {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.form-submit {
    margin-top: 24px;
}

.form-submit input {
    min-width: 100px;
    width: 100px;
    background: linear-gradient(90deg, rgba(79, 175, 175, 1) 0%, rgba(126, 202, 195, 1) 50%, rgba(79, 175, 175, 1) 100%);
    background-size: 200% 100%;
    background-position: center;
    transition: background-position 0.6s ease;
    /* ボタン用の濃いアクセント */
    color: #fff;
    border: none;
    padding: 12px 32px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
}

.form-submit input:hover {
    background-position: 100% 0;
}


.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
}

/* フォーカス時 */
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #666;
}


.cta-price__button .btn svg path {
    fill: var(--color-main);
}

.policy,
.about-section {
    max-width: 1024px;
    margin: 0 auto;
    padding: 40px 16px;
}

.policy-title {
    font-size: 16px;
    font-weight: 700;
    margin: 25px auto 15px auto;
}

.policy p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-medium);
}

.policy li {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-medium);
}

.about-section p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-medium);
    margin-bottom: 1em;
}

.about-title {
    font-size: 20px;
    font-weight: 700;
    display: inline-block;
    margin: 25px auto 15px auto;
}

.about-title::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #9fcfd0;
    margin: 16px auto 0;
}

.about-container {
    background: linear-gradient(90deg, #ffffff 0%, #fffaf8 70%, #fdf7f4 100%);
    box-shadow: rgb(238, 238, 238) 5px 5px 10px -5px;
    padding: 32px 16px;
    border-radius: 16px;
}

.about-list {
    display: grid;
    grid-template-columns: 100px 1fr;
    column-gap: 24px;
    margin-bottom: 8px;

    @media (max-width: 500px) {
        grid-template-columns: 70px 1fr;
        column-gap: 16px;
    }
}

.sns-area {
    display: flex;
    align-items: center;
}

.sns-icon {
    width: 40px;
    height: 40px;
    margin-right: 8px;
    display: inline-block;
}

.sns-area {
    margin-top: 32px;
}

.sns-link {
    padding-top: 2px;
}

.cursor-logo {
    position: fixed;
    top: 0;
    left: 0;
    width: 96px;
    height: 96px;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.cursor-logo img {
    width: 100%;
    height: 100%;
    opacity: 0.8;
    display: block;
    animation: cursorRotate 20s linear infinite;
    /* 回転アニメーション追加 */
}

@media (max-width: 768px) {
    .cursor-logo {
        display: none;
    }
}

/* 回転アニメーション */
@keyframes cursorRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* CF7自動ラップをリセット */
.wpcf7-form-control-wrap {
    display: block;
    margin: 0;
    padding: 0;
}

/* チェックボックス内の余分な span は display: inline; で整列 */
/* .wpcf7-form-control-wrap span {
    display: inline;
} */

.wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 4px;
}

.privacy-label {
    font-size: 16px;
    line-height: 1.7em;
}

.wpcf7-list-item {
    margin: 0;
}

.wpcf7-not-valid-tip {
    font-size: 12px;
    color: var(--required-color);
    margin-top: 4px;
}

.breadcrumb__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 16px;
}

.blog-list {
    padding-bottom: 80px;
}

.blog-list__title {
    text-align: center;
    font-size: 30px;

    @media (max-width: 768px) {
        font-size: 20px;
    }
}

.blog-list__title::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(237deg, var(--color-accent) 0%, var(--color-main) 100%);
    border-radius: 50px;
    margin: 12px auto 0;
}

.blog-list__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1108px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 64px;
    margin-top: 48px;

    @media (max-width: 968px) {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    @media (max-width: 768px) {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 32px;
    }

    @media (max-width: 580px) {
        gap: 24px;
    }
}

/* ========================================
   ブログ詳細ページ
   ======================================== */
.single-post {
    padding: 0 0 80px;
    background-color: #fff;

    @media (max-width: 768px) {
        padding: 0 0 64px;
    }

    @media (max-width: 428px) {
        padding: 0 0 48px;
    }
}

.single-post__inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 48px;

    @media (max-width: 768px) {
        gap: 32px;
    }
}

.single-post__header {
    text-align: center;
    padding-top: 80px;

    @media (max-width: 768px) {
        padding-top: 60px;
    }

    @media (max-width: 428px) {
        padding-top: 40px;
    }
}

.cta-price h4 {
    color: #FFF;
    text-align: center;

    @media (max-width: 768px) {
        font-size: 18px;
    }
}

.single-post__title {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.05em;
    color: var(--color-text-dark);
    display: inline-block;
    position: relative;
    margin: 0;
    padding-bottom: 12px;

    @media (max-width: 768px) {
        font-size: 24px;
    }
}

.single-post__title::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: var(--color-accent);
    border-radius: 50px;
    margin: 12px auto 0;
}

.single-post__thumb {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    background-color: #D9D9D9;
}

.single-post__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.single-post__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.single-post__meta {
    color: var(--color-text-dark);
}

.single-post__date {
    font-size: 16px;
    line-height: 2em;
    letter-spacing: 0.05em;
}

/* ブロックエディタ本文 */
.entry-content {
    color: var(--color-text-dark);
}

.entry-content p {
    font-size: 16px;
    line-height: 2em;
    letter-spacing: 0.05em;
    margin-bottom: 12px;

    @media (max-width: 768px) {
        font-size: 14px;
    }
}

.entry-content h2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.05em;
    color: var(--color-text-dark);
    margin: 60px 0 28px;
    position: relative;
    padding: 20px 20px 20px 40px;
    display: block;
    text-indent: -25px;
    background: #FDF2EC;
    border-radius: 50px 0px 0px 50px;
}

.entry-content h2::before {
    content: "●";
    color: #fff;
    margin-right: 8px;
}

.entry-content h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.05em;
    color: var(--color-text-dark);
    margin: 20px 0 12px;
    padding: 15px 20px;
    display: block;
    position: relative;
    border-left: 8px solid #E07A3F;
}

.entry-content h3::before {
    position: absolute;
    content: '';
    left: -8px;
    bottom: 0;
    width: 8px;
    height: 50%;
    background-color: #efc6ae;
}

/* =========================
   タブレット以下（〜1024px）
========================= */
@media screen and (max-width: 1024px) {

  .entry-content h2 {
    font-size: 22px;
    margin: 50px 0 24px;
    padding: 18px 18px 18px 36px;
    text-indent: -22px;
  }

  .entry-content h3 {
    font-size: 18px;
    margin: 18px 0 10px;
    padding: 14px 18px;
    border-left: 6px solid #E07A3F;
  }

  .entry-content h3::before {
    left: -6px;
    width: 6px;
  }
}

/* =========================
   スマホ（〜768px）
========================= */
@media screen and (max-width: 768px) {

  .entry-content h2 {
    font-size: 18px;
    line-height: 1.6;
    margin: 50px 0 20px;
    padding: 14px 14px 14px 32px;
    text-indent: -18px;
    border-radius: 30px 0 0 30px;
  }

  .entry-content h2::before {
    font-size: 14px;
    margin-right: 6px;
  }

  .entry-content h3 {
    font-size: 16px;
    line-height: 1.6;
    margin: 16px 0 8px;
    padding: 12px 14px;
    border-left: 5px solid #E07A3F;
  }

  .entry-content h3::before {
    left: -5px;
    width: 5px;
    height: 50%;
  }
}

/* =========================
   小さめスマホ（〜480px）
========================= */
@media screen and (max-width: 480px) {

  .entry-content h2 {
    font-size: 17px;
    padding: 12px 12px 12px 28px;
    text-indent: -16px;
  }

  .entry-content h3 {
    font-size: 15px;
    padding: 10px 12px;
  }
}


.entry-content img {
    border-radius: 14px;
}

.single-post__back {
    padding-top: 24px;
}

.single-post__back-link {
    font-size: 16px;
    line-height: 2em;
    letter-spacing: 0.05em;
    color: var(--color-text-dark);
    text-decoration: none;
    display: inline-block;
}

.single-post__back-link:hover {
    opacity: 0.7;
}

.blog-card__image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card__title {
    font-size: 18px;
}

.blog-card__content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.blog-card__date,
.blog-card__excerpt {
    line-height: 1.7em;
}

.blog-list__more .page-numbers {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 16px;
    color: var(--color-text-medium);
    /* text-decoration: underline dotted var(--color-main);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px; */
}

.pagination__icon {
    display: flex;
    align-items: center;
}

.pagination {
    margin-top: 64px;
}

.pagination ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination a,
.pagination span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination a {
    background: linear-gradient(180deg,
            #fdf7f4 0%,
            #fffaf8 60%,
            #ffffff 100%);
    border: 1px solid #E6E2DD;
    color: #3A3A3A;
}

.pagination a:hover {
    background: #F6F4F1;
}

.pagination .current {
    background: #3A3A3A;
    color: #fff;
}

.pagination__icon svg {
    width: 16px;
    height: 16px;
}

.pagination .prev a,
.pagination .next a {
    border: none;
}

.pagination .prev a:hover,
.pagination .next a:hover {
    background-color: transparent;
    transform: translateX(-2px);
}

.pagination .next a:hover {
    transform: translateX(2px);
}

.single-post__back {
    margin-top: 64px;
}

.single-post__back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #3A3A3A;
    text-decoration: none;
    position: relative;
}

.single-post__back-icon {
    display: inline-flex;
    transition: transform 0.3s ease;
}

.single-post__back-link:hover {
    color: #6F5B5B;
}

.single-post__back-link:hover .single-post__back-icon {
    transform: translateX(-4px);
}

.wpcf7 form .wpcf7-response-output {
    margin: 2em 0 0 0;
    padding: 0;
    border: none;
}

.wpcf7 form.sent .wpcf7-response-output {
    border: none;
}

.fv__content.fade-in,
.concerns__inner.fade-in,
.service__inner.fade-in,
.price__inner.fade-in,
.strength__inner.fade-in,
.works__inner.fade-in,
.testimonials__inner.fade-in,
.about__inner.fade-in,
.cta__inner.fade-in,
.container-inner.fade-in,
.about-container.fade-in,
.customer-flow.fade-in,
.about-message.fade-in,
.price-plans.fade-in,
.container.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* 子要素用 */
.fade-item {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in .fade-item {
    opacity: 1;
    transform: translateY(0);
}