/* Reset & Basic Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    /* 行間を少し広めに */
    color: #5a5a5a;
    /* 少し柔らかいグレー */
    background-color: #fffcf8;
    /* ごく薄いクリーム色 */
    font-size: 16px;
}

a {
    color: #ff80ab;
    /* アクセントのピンク */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #f06292;
    /* 少し濃いピンク */
}

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

ul {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: 700;
    color: #795548;
    /* ブラウン系 */
    margin-bottom: 0.8em;
    line-height: 1.4;
    /* 見出しの行間調整 */
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.8rem;
}

/* 少し小さく */
h3 {
    font-size: 1.4rem;
}

/* 少し小さく */
h4 {
    font-size: 1.15rem;
    color: #a1887f;
}

/* 少し小さく、色調整 */


.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- ヘッダー --- */
.site-header {
    background-color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

#headernav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 40px;
}

#headernav nav ul {
    display: flex;
}

#headernav nav li {
    margin-left: 25px;
}

#headernav nav a {
    color: #555;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    font-size: 0.95rem;
}

#headernav nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff80ab;
    /* ピンク */
    transition: width 0.3s ease;
}

#headernav nav a:hover::after,
#headernav nav a.active::after {
    width: 100%;
}

/* ハンバーガーメニューアイコン */
#menu-icon {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-icon-bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}

#menu-icon.active .menu-icon-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

#menu-icon.active .menu-icon-bar:nth-child(2) {
    opacity: 0;
}

#menu-icon.active .menu-icon-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* --- ページヘッダー --- */
.page-header {
    background: linear-gradient(135deg, #fff0f5, #f5f5dc);
    /* ピンクからベージュへ */
    padding: 60px 0;
    /* 少し高めに */
    text-align: center;
    margin-bottom: 50px;
    border-bottom: 3px dotted #ffcce0;
    /* ピンクの点線 */
}

.page-header h1 {
    color: #f06292;
    /* 濃いピンク */
    font-size: 2.6rem;
    /* 少し大きく */
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
}

.page-header h1 .icon-yellow {
    /* アイコンの色 */
    color: #fffacd;
    /* ライトイエロー */
    margin-right: 15px;
    font-size: 1em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.page-header p {
    font-size: 1.15rem;
    color: #887;
    /* 少し濃いめのグレー */
    margin-bottom: 0;
    font-weight: 500;
}

/* --- メインコンテンツ --- */
.main-content {
    padding: 20px 0;
}

section {
    padding: 50px 0;
    /* セクション間の余白 */
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    /* 少し大きく */
    color: #a1887f;
    /* ブラウン系 */
    position: relative;
    padding-bottom: 15px;
}

/* ドットの下線 */
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    /* 少し長めに */
    height: 5px;
    background-image: radial-gradient(circle, #ffcce0 1.5px, transparent 1.5px);
    /* ピンクのドット */
    background-size: 8px 8px;
    /* ドットの間隔 */
}

/* --- サービス紹介セクション --- */
.service-intro-section {
    text-align: center;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.intro-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.intro-item:hover {
    transform: translateY(-5px);
}

.intro-item .icon {
    font-size: 2.5rem;
    color: #bcaaa4;
    /* 薄いブラウン */
    margin-bottom: 15px;
}

.intro-item h4 {
    font-size: 1.1rem;
    color: #795548;
    /* ブラウン */
    margin-bottom: 10px;
}

.intro-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.intro-message {
    font-size: 1.1rem;
    font-weight: 500;
    color: #795548;
    margin-top: 30px;
    padding: 15px;
    background-color: #f5f5dc;
    /* ベージュ */
    border-radius: 10px;
    display: inline-block;
}

/* --- 料金プラン比較表 --- */
.pricing-table-section {
    background-color: #fdf5e6;
    /* 薄いオレンジ系 */
    padding: 50px 0;
    border-radius: 20px;
    margin-bottom: 50px;
}

.table-wrapper {
    overflow-x: auto;
    /* 横スクロール可能に */
    margin: 0 auto;
    max-width: 100%;
}

table {
    width: 100%;
    border-collapse: separate;
    /* セル間のスペース */
    border-spacing: 0 10px;
    /* 縦方向のスペース */
    min-width: 800px;
    /* テーブルの最小幅 */
}

th,
td {
    padding: 15px;
    text-align: center;
    vertical-align: middle;
    font-size: 0.95rem;
}

thead th {
    background-color: #fff;
    color: #a1887f;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 10px 10px 0 0;
    position: sticky;
    /* ヘッダー固定 */
    top: 0;
    z-index: 1;
}

thead th:first-child {
    text-align: left;
    border-radius: 10px 0 0 0;
}

thead th:last-child {
    border-radius: 0 10px 0 0;
}

thead th i {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #ffcce0;
    /* ピンク */
}

thead th:nth-child(3) i {
    color: #ff80ab;
}

/* おすすめプランのアイコン色 */
thead th:nth-child(4) i {
    color: #f5f5dc;
}

/* プレミアムプランのアイコン色 */


tbody tr {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

tbody tr:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

tbody td:first-child {
    text-align: left;
    font-weight: 500;
    color: #795548;
    border-radius: 10px 0 0 10px;
}

tbody td:last-child {
    border-radius: 0 10px 10px 0;
}

tbody td strong {
    font-size: 1.2em;
    font-weight: 700;
}

tbody td small {
    font-size: 0.8em;
    color: #aaa;
    display: block;
}

tfoot td {
    background-color: transparent;
    box-shadow: none;
    padding-top: 15px;
}

.details-link {
    display: inline-block;
    padding: 5px 15px;
    background-color: #eee;
    color: #777;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
}

.details-link:hover {
    background-color: #ddd;
    color: #555;
    text-decoration: none;
}

.table-note {
    text-align: right;
    font-size: 0.85rem;
    color: #aaa;
    margin-top: 10px;
}

/* --- 各プラン詳細 --- */
.plan-details-section {
    /* display: grid; */
    /* 削除 */
    /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
    /* 削除 */
    /* gap: 30px; */
    /* 削除 */
    margin-bottom: 50px;
    /* align-items: stretch; */
    /* 削除 */
}

/* ▼▼▼ 追加: プランカード用グリッドコンテナ ▼▼▼ */
.plan-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
    /* グリッドアイテムの高さを揃える */
}

/* ▲▲▲ 追加: プランカード用グリッドコンテナ ▲▲▲ */


.plan-detail-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
    display: flex;
    /* Flexboxコンテナにする */
    flex-direction: column;
    /* 子要素を縦に並べる */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.plan-header {
    padding: 20px;
    text-align: center;
    color: #fff;
    flex-shrink: 0;
    /* ヘッダーは縮まない */
}

.plan-header.free {
    background-color: #bcaaa4;
}

/* 薄いブラウン */
.plan-header.standard {
    background-color: #ff80ab;
}

/* ピンク */
.plan-header.premium {
    background-color: #a1887f;
}

/* ブラウン */

.plan-header h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.plan-header h3 i {
    margin-right: 8px;
}

.plan-price {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0;
}

.plan-price .unit {
    font-size: 0.6em;
    font-weight: 400;
}

.plan-price-annual {
    font-size: 0.9rem;
    margin-top: 5px;
    opacity: 0.9;
}

.plan-price-annual small {
    font-size: 0.9em;
}

.plan-body {
    padding: 25px;
    flex-grow: 1;
    /* 残りのスペースを埋める */
    display: flex;
    /* Flexboxコンテナにする */
    flex-direction: column;
    /* 子要素を縦に並べる */
}

.plan-body h4 {
    font-size: 1.1rem;
    color: #795548;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
    flex-shrink: 0;
    /* 見出しは縮まない */
}

.plan-body h4 i {
    margin-right: 8px;
    color: #ffcce0;
}

.plan-body ul {
    margin-bottom: 20px;
    font-size: 0.95rem;
    /* flex-grow: 1; */
    /* ul自体は伸び縮み不要 */
    flex-shrink: 0;
    /* リストも縮まない */
}

.plan-body ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.plan-body ul li::before {
    content: '＊';
    /* かわいい印 */
    position: absolute;
    left: 0;
    color: #ffcce0;
    /* ピンク */
    font-weight: 700;
}

.plan-body ul li strong {
    font-weight: 700;
    color: #5a5a5a;
}

.plan-body ul li small {
    font-size: 0.85em;
    color: #aaa;
}

.plan-cta {
    margin-top: auto;
    /* ボタンを下部に押し出す */
    text-align: center;
    padding-top: 20px;
    /* ボタンの上の余白 */
    flex-shrink: 0;
    /* ボタンエリアは縮まない */
}

/* --- オプションサービス --- */
.options-section {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 50px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 20px;
}

.option-item {
    text-align: center;
}

.option-item .icon {
    font-size: 2.2rem;
    color: #bcaaa4;
    /* 薄いブラウン */
    margin-bottom: 10px;
}

.option-item h4 {
    font-size: 1.05rem;
    color: #795548;
    margin-bottom: 8px;
}

.option-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.options-note {
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 20px;
}

/* --- 従来型プラン --- */
.legacy-plan-section {
    background-color: #f5f5f5;
    /* 薄いグレー */
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 50px;
}

.legacy-note {
    background-color: #fff9e6;
    border: 1px solid #ffe58f;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.legacy-note i {
    margin-right: 8px;
    color: #ffc107;
}

.legacy-details h4 {
    font-size: 1.2rem;
    color: #777;
    margin-top: 20px;
    margin-bottom: 10px;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 5px;
}

.legacy-details h4 i {
    margin-right: 8px;
}

.legacy-details ul {
    margin-bottom: 15px;
    padding-left: 20px;
    list-style: disc;
    font-size: 0.95rem;
}

.legacy-details ul li {
    margin-bottom: 5px;
}

.legacy-details ul ul {
    margin-top: 5px;
    margin-bottom: 5px;
    list-style: circle;
}

.legacy-details p {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.legacy-cta {
    text-align: center;
    margin-top: 30px;
}

/* --- ご利用の流れ --- */
.process-section {
    background-color: #e6e6fa;
    /* ラベンダー */
    padding: 50px 0;
    border-radius: 20px;
    margin-bottom: 50px;
}

.process-steps {
    counter-reset: process-counter;
    margin-top: 40px;
    position: relative;
    padding-left: 40px;
    max-width: 700px;
    /* 中央寄せ */
    margin-left: auto;
    margin-right: auto;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 15px;
    bottom: 15px;
    width: 4px;
    background: linear-gradient(#d1c4e9, #b39ddb);
    /* パープル系 */
    border-radius: 2px;
}

.process-steps li {
    margin-bottom: 30px;
    position: relative;
    background-color: #fff;
    padding: 20px 20px 20px 80px;
    /* 左パディングを広げて番号とアイコンのスペース確保 */
    border-radius: 15px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
    min-height: 50px;
}

/* ▼▼▼ 修正 ▼▼▼ */
.process-steps li::before {
    /* カウンター番号 */
    counter-increment: process-counter;
    content: counter(process-counter);
    position: absolute;
    left: -20px;
    /* 縦線に重ねる */
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    line-height: 40px;
    /* heightと同じ値で垂直中央揃え */
    text-align: center;
    /* 水平中央揃え */
    background-color: #b39ddb;
    /* パープル */
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2em;
    border: 3px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.process-steps li .step-icon {
    /* アイコン */
    position: absolute;
    left: 30px;
    /* 番号の右隣に配置 */
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    /* アイコンサイズ調整 */
    color: #b39ddb;
    /* アイコンの色 */
}

/* ▲▲▲ 修正 ▲▲▲ */

.process-steps li h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #5d4037;
    margin-bottom: 8px;
}

.process-steps li p {
    margin: 0;
    font-size: 0.95rem;
}

/* --- お問い合わせセクション --- */
.contact-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff0f5;
    /* 薄いピンク */
    border-radius: 15px;
}

.contact-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-button-container {
    margin-top: 20px;
}

/* --- 共通CTAボタン --- */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    /* 少し大きめ */
    border-radius: 30px;
    /* 丸く */
    font-weight: 700;
    font-size: 1.1rem;
    /* 少し大きめ */
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: none;
    line-height: 1.4;
    /* ボタン内テキストの行間 */
}

.cta-button i {
    margin-left: 10px;
}

.cta-button.primary {
    background: linear-gradient(135deg, #ff80ab, #f06292);
    /* ピンク系グラデ */
    color: #fff;
    box-shadow: 0 5px 15px rgba(240, 98, 146, 0.3);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #f06292, #e91e63);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.4);
    color: #fff;
    text-decoration: none;
}

.cta-button.secondary {
    background-color: #fff;
    color: #ff80ab;
    border: 2px solid #ffcce0;
    /* 薄いピンクの枠線 */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.cta-button.secondary:hover {
    background-color: #fff0f5;
    /* さらに薄いピンク */
    border-color: #ff80ab;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    color: #f06292;
    text-decoration: none;
}


/* --- フッターナビゲーションエリア --- */
#footer_navi {
    background-color: #fff8f4;
    /* 薄いクリーム色 */
    padding: 40px 0;
    border-top: 1px solid #eee;
}

.daisosha_service h3 {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: #a1887f;
    /* ブラウン系 */
}

.service-button-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.service-button-list li {
    flex-basis: calc(33.333% - 15px);
    min-width: 220px;
}

.cta-button-service {
    display: block;
    padding: 12px 20px;
    background-color: #fff;
    color: #776;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid #eee;
}

.cta-button-service:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
    color: #ff80ab;
    /* ピンク */
    border-color: #ffcce0;
    /* 薄いピンク */
}

.cta-button-service .button-icon {
    margin-right: 8px;
}

.cta-button-service .arrow {
    margin-left: 8px;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.cta-button-service:hover .arrow {
    transform: translateX(4px);
}

/* --- フッター --- */
#footer_wrapper {
    background-color: #a1887f;
    /* ブラウン系 */
    color: #eee;
    padding: 30px 0;
}

#footer ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

#footer li {
    margin: 5px 15px;
}

#footer a {
    color: #fff;
    font-size: 0.9rem;
}

#footer a:hover {
    color: #ffcce0;
}

.copyright {
    width: 100%;
    text-align: center;
    font-size: 0.85rem;
    margin-top: 15px;
    color: #ddd;
}

.copyright a {
    color: #eee;
    font-weight: bold;
}

.copyright a:hover {
    color: #ffcce0;
}

#footer img[alt="正当なCSSです!"] {
    opacity: 0.7;
    margin-top: 10px;
}

/* --- ページトップへ戻るボタン --- */
.page-top {
    display: none;
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #ff80ab;
    /* ピンク */
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-top:hover {
    background-color: #f06292;
    /* 濃いピンク */
    transform: scale(1.1);
}

/* --- レスポンシブ --- */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    #headernav {
        position: relative;
    }

    #menu-icon {
        display: block;
    }

    #headernav nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
        z-index: 1000;
    }

    #headernav nav.active {
        display: block;
    }

    #headernav nav ul {
        flex-direction: column;
        align-items: center;
    }

    #headernav nav li {
        margin: 10px 0;
        margin-left: 0;
    }

    .intro-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    /* ▼▼▼ 修正: 768px以下でもグリッドを維持 ▼▼▼ */
    .plan-grid-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    /* ▲▲▲ 修正 ▲▲▲ */

    .options-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .process-steps {
        padding-left: 25px;
    }

    .process-steps::before {
        left: 10px;
    }

    .process-steps li {
        padding: 15px 15px 15px 70px;
        /* パディング調整 */
    }

    .process-steps li::before {
        left: -18px;
        /* 位置調整 */
        width: 35px;
        height: 35px;
        font-size: 1em;
        line-height: 35px;
        /* 修正 */
    }

    /* ▼▼▼ 追加: アイコン位置調整 ▼▼▼ */
    .process-steps li .step-icon {
        left: 25px;
        /* 位置調整 */
        font-size: 1.6rem;
    }

    /* ▲▲▲ 追加 ▲▲▲ */

    .service-button-list li {
        flex-basis: calc(50% - 10px);
    }

    #footer ul {
        flex-direction: column;
    }

    #footer li {
        margin: 8px 0;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    .page-header h1 {
        font-size: 1.9rem;
    }

    .page-header p {
        font-size: 1.05rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .cta-button {
        font-size: 1rem;
        padding: 12px 30px;
    }

    .options-grid {
        grid-template-columns: 1fr;
    }

    .process-steps li {
        padding: 15px 15px 15px 60px;
        /* パディング調整 */
    }

    .process-steps li::before {
        left: -15px;
        /* 位置調整 */
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 0.9em;
    }

    .process-steps li .step-icon {
        left: 20px;
        /* 位置調整 */
        font-size: 1.4rem;
    }

    .process-steps li h4 {
        font-size: 1.05rem;
    }

    .process-steps li p {
        font-size: 0.9rem;
    }

    .service-button-list li {
        flex-basis: 100%;
    }

    /* ▼▼▼ 修正: 480px以下で1カラムに ▼▼▼ */
    .plan-grid-container {
        grid-template-columns: 1fr;
    }

    /* ▲▲▲ 修正 ▲▲▲ */
}