@charset "utf-8";

/* ==========================================================================
   1. Base Layout (.fee-main-content 内限定)
   ========================================================================== */
/* ★変更: 共通パーツに影響しないよう、独自のクラス名でスコープを限定 */
.fee-main-content {
    color: #333;
    line-height: 1.6;
}

/* セクションのデザイン */
.fee-main-content .section-wrap {
    margin-top: 0;
    margin-bottom: 0;
    padding: 30px 20px; 
    border-bottom: 1px solid #eaeaea;
}

.fee-main-content .section-wrap:nth-of-type(even) {
    background-color: #f9f9f9;
}
.fee-main-content .section-wrap:nth-of-type(odd) {
    background-color: #fff;
}

/* テキスト幅制限 */
.fee-main-content .text-limit {
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

.fee-main-content p {
    font-size: 15px;
    /* margin-bottom: 15px; */
    letter-spacing: 0.05em;
    color: #444;
}

.fee-main-content .img-center {
    text-align: center;
    margin-bottom: 30px;
}

/* 画像スタイル */
.fee-main-content .img-limit {
    max-width: 800px;
    width: 100%;
    height: auto;
    box-shadow: none;
    border: 1px solid #eee;
    border-radius: 4px;
    background: #fff;
    display: inline-block; 
    margin: 0 auto;
}

/* PC/SP 表示切り替え */
.fee-main-content .pconly { display: block; }
.fee-main-content .sponly { display: none; }

@media screen and (max-width: 768px) {
    .fee-main-content .pconly { display: none !important; }
    .fee-main-content .sponly { display: block !important; }
    .fee-main-content .img-limit { max-width: 100%; }
    .fee-main-content .section-wrap { padding: 20px 15px; } 
}

/* ==========================================================================
   2. Headings (見出し)
   ========================================================================== */

/* H2: 左揃え・タイト */
.fee-main-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    text-align: left;
    margin-top: 0;
    /* margin-bottom: 15px; */
    padding-bottom: 10px;
    position: relative;
    border: none;
    background: none;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.fee-main-content h2::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ccc;
}
.fee-main-content h2::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #65ab31; 
    border-radius: 2px;
}


/* ==========================================================================
   特定のH2用カスタマイズ (中央揃え)
   ========================================================================== */
   .fee-main-content h2.center-title {
    text-align: center;
}

/* 緑色の下線を中央に配置するための調整 */
.fee-main-content h2.center-title::after {
    left: 50%;
    transform: translateX(-50%);
}
/* H3: 中見出し */
.fee-main-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    padding: 10px 15px;
    margin-bottom: 25px;
    margin-top: 0;
    background-color: #e9e9e9; 
    border-left: 5px solid #555; 
    border-radius: 2px;
    border-bottom: none;
    line-height: 1.4;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* H4: 小見出し */
.fee-main-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    padding-left: 12px;
    border-left: 4px solid #65ab31;
    display: block;
    line-height: 1.4;
    background: none;
}
.fee-main-content h4::before { display: none; }

/* ==========================================================================
   3. Tables (はみ出し対策強化)
   ========================================================================== */
.fee-main-content .table-scroll {
    width: 100%;
    max-width: 900px;
    /* margin: 0 auto 30px; */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
}

.fee-main-content table.table {
    width: 100%;
    min-width: 700px; 
    border-collapse: collapse;
    table-layout: fixed; 
    background-color: #fff;
    margin: 0;
    border: none;
}

/* サービス説明文内のテーブル */
.fee-main-content .service-txt .table-scroll {
    overflow-x: visible;
    border: none;
}
.fee-main-content .service-txt table.table {
    min-width: 100%;
    width: 100%;
    table-layout: auto;
    border: 1px solid #ddd;
}

/* 決済画像の調整 */
.fee-main-content .payment-table img {
    max-width: 120px;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* セル共通 */
.fee-main-content table.table th,
.fee-main-content table.table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eaeaea;
    border-right: 1px solid #eaeaea;
    vertical-align: middle;
    line-height: 1.5;
    /* ★修正: はみ出し防止設定を強化 */
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-all; /* 長い英数字や括弧も強制的に改行 */
    width: 100%;
}

.fee-main-content table.table th:last-child,
.fee-main-content table.table td:last-child {
    border-right: none;
}

/* 見出しセル */
.fee-main-content table.table th {
    background-color: #f9f9f9;
    color: #444;
    font-weight: 700;
    text-align: left;
    white-space: normal;
}
.fee-main-content .service-txt table.table th { white-space: normal; }

.fee-main-content table.compare01 th.change-head {
    background-color: #444; 
    color: #fff;
    border-color: #555;
    text-align: center;
}

.fee-main-content .cell-highlight {
    background-color: #fffbf0;
    font-weight: bold;
}

/* 赤字 */
.fee-main-content .price-red {
    color: #cc0000;
    font-family: "Lato", sans-serif;
    font-weight: bold;
    display: inline-block; /* 改行可能にするためblock要素化を検討、一旦inline-block */
    white-space: normal; /* ★修正: 金額部分も必要なら改行許可 */
}

/* 注釈 */
.fee-main-content table.table small {
    display: block;
    margin-top: 5px;
    font-size: 0.85em;
    color: #777;
    font-weight: normal;
    line-height: 1.4;
    white-space: normal;
    word-break: break-all; /* 注釈も強制改行 */
}

/* ==========================================================================
   4. Components
   ========================================================================== */
.fee-main-content .note-area {
    background-color: #fff;
    border: 1px dashed #bbb;
    padding: 20px;
    font-size: 0.9em;
    color: #666;
    margin-bottom: 30px;
    border-radius: 4px;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}
.fee-main-content .note-link {
    display: block;
    text-align: right;
    color: #666;
    font-size: 0.85em;
    margin-bottom: 5px;
    text-decoration: underline;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

/* 枠付きボックス */
.fee-main-content .box-border {
    border: 1px solid #ddd;
    padding: 30px;
    background-color: #fff;
    margin-bottom: 40px;
    border-radius: 4px;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}
.fee-main-content .box-border h3 {
    background: none;
    color: #333;
    border: none;
    padding: 0;
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 1px solid #ccc;
    display: inline-block;
    width: 100%;
    font-size: 20px;
}

/* ハードウェアバナー */
.fee-main-content .hardware-banner {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fff;
    padding: 20px 30px;
    margin-bottom: 40px;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.fee-main-content .hardware-text { flex: 1; }
.fee-main-content .hardware-banner h3 {
    background: none;
    color: #333;
    border: none;
    padding: 0;
    margin-bottom: 10px;
    margin-top: 0;
    font-size: 20px;
    text-align: left;
}
.fee-main-content .hardware-btn-area { flex: 0 0 200px; }

/* サービスブロック */
.fee-main-content .service-block {
    display: flex;
    gap: 40px;
    align-items:center;
    margin-bottom: 40px;

}
.fee-main-content .service-img { flex: 0 0 390px; text-align: center; }
.fee-main-content .service-img img { max-width: 100%; border:1px solid #eee; }
.fee-main-content .service-txt { flex: 1; min-width: 0; }

@media screen and (max-width: 768px) {
    .fee-main-content .service-block { display: block; }
    .fee-main-content .service-img { width: 100%; max-width: 300px; margin: 0 auto 20px; }
    .fee-main-content .box-border { padding: 20px; }
    
    .fee-main-content .hardware-banner { display: block; text-align: center; padding: 20px; }
    .fee-main-content .hardware-banner h3 { text-align: center; }
    .fee-main-content .hardware-btn-area { margin-top: 20px; width: 100%; }
}

.fee-main-content ul.list { list-style: disc inside; margin-left: 0.5em; color: #555; }

/* ==========================================================================
   5. Support Section Designs
   ========================================================================== */
/* 無料電話サポート（枠なし・シンプル） */
.fee-main-content .support-plain {
    padding: 0 0 30px 0;
    margin-bottom: 20px;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
    border: none;
    background: none;
}

/* ユーザー専用ページ用の枠デザイン */
.fee-main-content .support-user-box {
    border: 2px solid #e0e0e0;
    background-color: #fdfdfd;
    padding: 25px;
    border-radius: 6px;
    margin-top: 25px;
    position: relative;
}
.fee-main-content .support-user-box h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    color: #222;
    border-left: 6px solid #65ab31; 
    padding-left: 10px;
    background: none;
}

/* 有償サポート（カード型） */
.fee-main-content .support-paid-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto 30px;
}
.fee-main-content .support-paid-card {
    flex: 1;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 25px;
    min-width: 280px;
}
.fee-main-content .support-paid-header {
    background: #f4f4f4;
    margin: -25px -25px 20px -25px;
    padding: 15px;
    font-weight: bold;
    text-align: center;
    border-bottom: 1px solid #ddd;
    color: #333;
}
.fee-main-content .support-time {
    display: block;
    font-size: 1.2em;
    color: #cc0000;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}

/* ==========================================================================
   6. Buttons
   ========================================================================== */
.fee-main-content .btn-detail {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    padding: 14px 20px;
    background: #65ab31; 
    color: #fff !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s;
    border: 1px solid #65ab31;
}
.fee-main-content .btn-detail:hover {
    background: #fff;
    color: #65ab31 !important;
    transform: translateY(-2px);
}
.fee-main-content .btn-detail::after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 10px;
    font-size: 14px;
}

.fee-main-content .btn-apply {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 18px;
    background: linear-gradient(to bottom, #ff9900, #ff6600);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2em;
    text-align: center;
    box-shadow: 0 4px 8px rgba(255, 102, 0, 0.2);
    transition: all 0.3s;
}
.fee-main-content .btn-apply:hover {
    background: linear-gradient(to bottom, #ffaa33, #ff7700);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 102, 0, 0.3);
}
.fee-main-content .btn-apply::after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 10px;
    font-size: 14px;
}

/* ==========================================================================
   7. Flow Steps
   ========================================================================== */
.fee-main-content .flow-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.fee-main-content .flow-item {
    position: relative;
    width: 23%;
    background: #fff;
    border-radius: 8px;
    padding: 20px 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
    border-bottom: 4px solid #ff9900;
}

.fee-main-content .flow-item::after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff9900;
    font-size: 18px;
}
.fee-main-content .flow-item:last-child::after { display: none; }

.fee-main-content .flow-icon {
    width: 50px;
    height: 50px;
    background: #fff3e0;
    color: #ff6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: -40px auto 10px;
    border: 3px solid #fff;
}

.fee-main-content .step-label {
    display: block;
    font-family: 'Lato', sans-serif;
    font-weight: bold;
    color: #ffffff!important;
    font-size: 14px;
    margin-bottom: 5px;
}

.fee-main-content h3.step-title {
    font-size: 16px !important;
    color: #333 !important;
    border: none !important;
    border-left: none !important;
    padding: 0 !important;
    margin-bottom: 10px !important;
    background: none !important;
    margin-top: 0 !important;
    font-weight: bold !important;
    text-align: center !important;
    max-width: 100%;
}

.fee-main-content .step-text {
    font-size: 13px !important;
    text-align: left;
    line-height: 1.5;
    color: #555;
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .fee-main-content .flow-container { display: block; }
    .fee-main-content .flow-item { width: 100%; margin-bottom: 30px; padding-top: 25px; }
    .fee-main-content .flow-icon { margin-top: -50px; }
    .fee-main-content .flow-item::after {
        content: "\f078";
        right: 0; left: 0; top: auto; bottom: -25px;
        transform: none; margin: auto;
        width: 20px; height: 20px;
    }
}

/* --- キャッシュレス決済端末連携ソリューション用スタイル --- */
.payment-linkage-box {
    text-align: center;
    background-color: #fff;
    padding: 30px 15px; /* 上下の余白を少し確保 */
    border-radius: 10px;
    margin: 30px auto;
    border: 1px solid #eee;
}

.payment-linkage-box .main-pos-area {
    display: flex;
    justify-content: center;
    position: relative;
    margin: 0 0 45px; /* 下の要素との距離 */
}

/* 連携の矢印 */
.payment-linkage-box .main-pos-area::before {
    content: "";
    width: 6px;
    height: 40px;
    background: #3a60b9;
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
}

/* 「連携」テキスト */
.payment-linkage-box .main-pos-area::after {
    content: "連携";
    font-size: 1.6rem;
    font-weight: bold;
    color: #3a60b9;
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(10px);
}

/* 連携メッセージ帯 */
.payment-linkage-box .linkage-message {
    width: 100%;
    color: #fff;
    font-size: 1.3rem;
    font-weight: bold;
    background: #3a60b9;
    padding: 10px;
    margin: 0 0 25px;
    border-radius: 4px;
    line-height: 1.4;
}

/* 端末グリッド */
.payment-linkage-box .terminals-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    align-items: start;
}

.payment-linkage-box .terminal-item {
    display: flex;
    flex-flow: column;
    align-items: center;
    position: relative;
    isolation: isolate; /* 重なり順の基準を作成 */
}

/* ★ご指定の修正箇所（背景の円） */
.payment-linkage-box .terminal-item::after {
    content: "";
    width: 100%;
    height: 58px; /* 指定の高さ */
    background: #f3f3f3; /* 指定の色 */
    border-radius: 50%;
    position: absolute;
    top: 30px; /* 指定の位置 */
    left: 0;
    z-index: 0;
}

.payment-linkage-box .terminal-item img {
    height: 80px; 
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin: 0 0 5px; /* 画像下の余白を微調整 */
    position: relative;
    z-index: 1; /* 円の上に表示 */
}

.payment-linkage-box .terminal-item p {
    font-size: 14px;
    line-height: 1.3;
    font-weight: bold;
    color: #333;
    margin: 0;
    position: relative;
    z-index: 1; /* 円の上に表示 */
}

/* スマホ表示調整 */
@media screen and (max-width: 768px) {
    .payment-linkage-box .terminals-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 10px;
    }
    
    .payment-linkage-box .main-pos-area::after {
        font-size: 1.4rem;
        transform: translateX(15px);
    }
    
    .payment-linkage-box .terminal-item p {
        font-size: 12px;
    }
}

/* --- 料金強調ボックス --- */
.price-highlight-box {
    background-color: #fff;
    border: 2px solid #65ab31; /* ブランドカラーの緑 */
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin: 0 auto 30px; /* 下に余白 */
    max-width: 600px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.05);
}

/* ラベル（何の費用か） */
.price-highlight-box .ph-label {
    display: block;
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
    background: #e9f5e9; /* 薄い緑背景でラベルっぽく */
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
}

/* 金額 */
.price-highlight-box .ph-price {
    display: block;
    font-size: 2.8rem; /* とにかく大きく */
    font-weight: bold;
    color: #cc0000; /* 赤字 */
    font-family: "Lato", sans-serif;
    line-height: 1.2;
    margin: 5px 0;
}

/* 単位（円など） */
.price-highlight-box .ph-unit {
    font-size: 1.2rem;
    color: #333;
    font-weight: bold;
}

/* 補足（税別、月額など） */
.price-highlight-box .ph-sub {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

/* スマホ調整 */
@media screen and (max-width: 768px) {
    .price-highlight-box .ph-price {
        font-size: 2.2rem;
    }
}

/* ==============================================
   料金強調エリア（左ラベル・右金額縦並び版）
   ============================================== */
   .price-highlight-box {
    /* ▼ボックス設定 */
    background-color: #fcfcfc;
    border: 1px solid #ddd;
    border-left: 8px solid #65ab31; /* アクセント（元の緑） */
    border-radius: 6px;
    
    /* ▼配置とサイズ */
    width: fit-content;
    min-width: 390px;
    max-width: 100%;
    margin: 20px 0 10px 0;
    padding: 15px 25px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
    
    /* ▼レイアウト：横並び（左にラベル、右に金額群） */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px; /* ラベルと金額の間の余白 */
}

/* ラベル（濃い緑に変更） */
.price-highlight-box .ph-label {
    flex-shrink: 0; /* 幅が縮まないように */
    font-size: 1.3rem;
    font-weight: bold;
    /* ▼ご指定の「もっと濃い緑」 */
    color: #2e7d32; 
    margin: 0;
    line-height: 1.3;
    letter-spacing: 0.05em;
}

/* 右側のコンテンツラッパー（金額と補足を縦に積む） */
.price-highlight-box .ph-content {
    display: flex;
    flex-direction: column; /* 縦並び */
    align-items: flex-start; /* 左揃え */
    justify-content: center;
}

/* 金額ラッパー */
.price-highlight-box .ph-price-wrap {
    display: flex;
    align-items: baseline;
    line-height: 1;
    margin-bottom: 5px; /* 補足との間隔 */
}

/* 金額（数字部分） */
.price-highlight-box .ph-number {
    font-size: 3.0rem;
    font-weight: 800;
    color: #cc0000;
    font-family: "Lato", sans-serif;
    letter-spacing: -0.03em;
    margin-right: 4px;
}

/* 単位 */
.price-highlight-box .ph-unit {
    font-size: 1.3rem;
    font-weight: bold;
    color: #222;
}

/* 補足（金額の下に配置） */
.price-highlight-box .ph-sub {
    font-size: 0.95rem;
    font-weight: bold;
    color: #555;
    line-height: 1.2;
    margin: 0;
}

/* --- キャッシュレス決済連携ボックス（変更なし） --- */
.payment-linkage-box {
    text-align: center;
    background-color: #fff;
    padding: 30px 15px;
    border-radius: 10px;
    margin: 30px auto;
    border: 1px solid #eee;
}
.payment-linkage-box .main-pos-area {
    display: flex;
    justify-content: center;
    position: relative;
    margin: 0 0 45px;
}
.payment-linkage-box .main-pos-area::before {
    content: "";
    width: 6px;
    height: 40px;
    background: #3a60b9;
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
}
.payment-linkage-box .main-pos-area::after {
    content: "連携";
    font-size: 1.6rem;
    font-weight: bold;
    color: #3a60b9;
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(10px);
}
.payment-linkage-box .linkage-message {
    width: 100%;
    color: #fff;
    font-size: 1.3rem;
    font-weight: bold;
    background: #3a60b9;
    padding: 10px;
    margin: 0 0 25px;
    border-radius: 4px;
    line-height: 1.4;
}
.payment-linkage-box .terminals-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    align-items: start;
}
.payment-linkage-box .terminal-item {
    display: flex;
    flex-flow: column;
    align-items: center;
    position: relative;
    isolation: isolate;
}
.payment-linkage-box .terminal-item::after {
    content: "";
    width: 100%;
    height: 58px;
    background: #f3f3f3;
    border-radius: 50%;
    position: absolute;
    top: 30px;
    left: 0;
    z-index: 0;
}
.payment-linkage-box .terminal-item img {
    height: 80px; 
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin: 0 0 5px; 
    position: relative;
    z-index: 1;
}
.payment-linkage-box .terminal-item p {
    font-size: 14px;
    line-height: 1.3;
    font-weight: bold;
    color: #333;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* スマホ表示調整 */
@media screen and (max-width: 768px) {
    .price-highlight-box {
        flex-direction: column; /* スマホでは縦積みに戻す */
        align-items: flex-start;
        gap: 10px;
        width: 100%;
        padding: 20px;
    }
    .price-highlight-box .ph-content {
        align-items: flex-start;
    }
    .price-highlight-box .ph-number {
        font-size: 2.8rem;
    }
    
    .payment-linkage-box .terminals-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 10px;
    }
    .payment-linkage-box .main-pos-area::after {
        font-size: 1.4rem;
        transform: translateX(15px);
    }
    .payment-linkage-box .terminal-item p {
        font-size: 12px;
    }
}

/* サービスロゴ配置用 */
.service-logo-container {
    max-width: 900px;
    margin: 0 auto 10px; /* 中央揃え & 下に少し余白 */
    text-align: left;    /* 左揃え（h3に合わせるならleft、中央ならcenter） */
}
.service-logo-img {
    height: 50px;       /* 高さを固定してサイズを統一 */
    width: auto;
    display: block;
    object-fit: contain;
}

@media screen and (max-width: 768px) {
    .service-logo-img {
        height: 40px;   /* スマホでは少し小さく */
    }
}