/* ======================================= */
/* 1. リセット & 基本設定 */
/* ======================================= */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6, p, ul, ol {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

html {
    font-size: 62.5%; 
}

body {
    font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
    line-height: 1.6;
    color: #2c3e57;
}

.container {
    width: 95%;
    max-width: 1200px; 
    margin: 0 auto;
}

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

section {
    padding: 40px 0;
    text-align: center;
}

h1 {
    font-size: 1em;
}

h2 {
    font-size: 3.2rem;
    line-height: 1.3;
}

.sub-heading {
    display: block;
    font-size: 2.2rem;
    line-height: 1.4;
    font-weight: bold;
    margin-bottom: 15px;
}

.sub-heading span {
    padding: 0px 8px;
}

.font-size-M {
    font-size: 1.8rem;
}

.font-size-S {
    font-size: 1.4rem;
}

.sp-only {
    display: none !important;
}

.basic-h2 {
    position: relative;
}
.basic-h2::before {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    color: #fe956f;
    opacity: 0.2;
    font-size: 3.0em;
    text-transform: uppercase;
    z-index: -1;
}


/* ======================================= */
/* 2. ヘッダー */
/* ======================================= */

.header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed; /* 画面に対して固定 */
    top: 0;          /* 画面の上端に配置 */
    left: 0;         /* 画面の左端に配置 */
    width: 100%;     /* 幅を画面全体に広げる */
    z-index: 1000;
}

.header .container {
    display: flex; /* ロゴとCTAを横並びにする */
    justify-content: space-between; /* 両端寄せ */
    align-items: center; /* 垂直方向中央揃え */
    /* ※ 既存の column/text-align:left の設定をここで上書き */
}

.header h1 img {
    width: 250px;
}

/* CTAコンテナ: 常に横並びを維持 */
.header-cta {
    display: flex;
    gap: 10px; /* CTAボタン間のスペース */
    align-items: center;
}

/* CTAボタンの共通スタイル */
.header-cta a {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.6rem;
    white-space: nowrap; /* テキストの折り返しを防ぐ */
    text-align: center;
    transition: background-color 0.3s;
    box-shadow: 0 0 3px gray;
    width: 200px;
}

/* 電話CTA (例: 青系) */
.cta-phone {
    background-image: linear-gradient(90deg, #4896cd, #075ba8);
    color: #fff;
}

/* 申込CTA (例: オレンジ系) */
.cta-form-link {
    background-image: linear-gradient(90deg, #fe956f, #ee644c);
    color: #fff;
}

/* ホバーエフェクト（任意） */
.cta-form-link:hover {
    background-color: #fe956f;
}
.cta-phone:hover {
    background-color: #4896cd;
}

/* ======================================= */
/* 3. ヒーローセクション */
/* ======================================= */

.hero {
    background-image: url(../img/fv_base.webp);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 20px 0 0;
    text-align: center;
    padding-top: 100px;
}

.hero .container img {
    max-width: 1200px;
    height: auto;
}

.fv-sp {
    display: none !important;
}

/* ======================================= */
/* 4. CTAセクション */
/* ======================================= */
.cta {
    background-image: url(../img/cta_base.webp);
    background-size: 100% auto;
    background-repeat: no-repeat;
    text-align: center;
}

.cta_box {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
}

.cta .sub-heading span {
    background-color: #2c3e57;
    color: #fff;
}

.cta_form {
    display: block;
    margin: 10px auto 30px;
    background-image: linear-gradient(90deg, #fe956f, #ee644c);
    color: #fff;
    font-size: 3.2rem;
    font-weight: bold;
    max-width: 700px;
    width: 100%;
    padding: 15px;
    box-shadow: 0 0 5px gray;
    position: relative; /* 疑似要素の位置基準を設定 */
    overflow: hidden;   /* 疑似要素がボタンの境界からはみ出さないように隠す */
    z-index: 1;         /* 疑似要素より手前に表示されるように設定 */
    transition: transform 0.3s ease;
}

.cta_form::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%; /* 左端から開始 */
    width: 50%; /* 光沢の幅 */
    height: 100%;
    background: rgba(255, 255, 255, 0.4); /* 白い半透明の光沢 */
    transform: skewX(-20deg); /* 斜めの形にする */
    z-index: 2;
    
    /* アニメーションの指定 */
    animation: shine 3s infinite linear; /* shineアニメーションを2秒間隔で無限に繰り返す */
}

/* キーフレーム: 光沢を左から右へ移動させるアニメーションを定義 */
@keyframes shine {
    /* 0% から 40% の間で移動を完了させる (例: 全体の40%の時間で移動) */
    0% {
        left: -75%; /* 開始位置 */
    }
    20% { /* 2.0秒周期の場合、0.8秒の時点で移動完了 */
        left: 125%; /* 終了位置 */
    }
    100% {
        left: 125%; /* 40%から100%の間（残りの1.2秒間）は停止位置を維持 */
    }
}

/* 押し込み効果の追加 (オプション) */
.cta_form:hover {
    transform: scale(0.98); /* クリック時にわずかに縮小させる */
}

.cta-group {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 900px;
    width: 100%;
    margin: auto;
}

.cta-item {
    flex-basis: 50%;
    text-align: center;
    padding: 0 30px;
}

.phone-cta {
    border-right: 1px solid #ddd;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 2.2rem;
}

.phone-number-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tel-icon {
    width: 50px;
    height: auto;
    margin-right: 10px;
}

.pc-only .phone-number-text {
    font-size: 3.2rem;
    font-weight: bold;
    background: linear-gradient(45deg, #075ba8 0%, #4896cd 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}

.line-detail-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.qr-code-img {
    width: 100px;
    height: auto;
}

.line-id-area {
    text-align: center;
}

.line-id-label {
    margin-top: 5px;
    color: #06c755;
    font-weight: bold;
}

/* ======================================= */
/* 5. お悩みセクション */
/* ======================================= */

.problem {
    background-color: #ebf0f6;
    position: relative;
    padding-bottom: 50px;
    z-index: 0;
}
.problem::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 50px;
    background-color: #ebf0f6; 
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}

.problem .basic-h2::before {
    content: 'WORRIES';
}

.problem-list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.problem-item {
    flex: 1;
    font-size: 1.8rem;
    font-weight: bold;
}

.problem-item img {
    max-width: 350px;
    margin-bottom: 10px;
}

/* ======================================= */
/* 6. 解決セクション */
/* ======================================= */

.solution {
    padding-top: 90px;
}

.solution .basic-h2::before {
    content: 'SOLUTION';
}

.logo-text {
    text-indent: 100%; 
    white-space: nowrap;
    overflow: hidden;
    display: inline-block; 
    width: 350px;
    height: 50px; 
    background-image: url('../img/cashfactor.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle; 
}

.solution-list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 800px;
    margin: 30px auto;
}

.solution-item {
    flex: 1;
    background-image: linear-gradient(90deg, #4896cd, #075ba8);
    color: #fff;
    font-weight:bold;
    font-size: 2.4rem;
    border-radius: 5px;
    padding: 8px;
}

.solution img {
    width: 80%;
    margin: auto;
}

/* ======================================= */
/* 7. 選ばれる理由セクション */
/* ======================================= */

.reason {
    background-color: #e7eff8;
    position: relative;
    z-index: 0;
}

.reason h2 span {
    color: #092676;
}

.reason h2 span span {
    font-size: 5.0rem;
}

.reason .basic-h2::before {
    content: 'REASON';
    top: -10px;
}

.reason-list {
    margin-top: 30px;
}

.reason-item {
    background-color: #fff;
    margin-bottom: 30px;
    padding: 20px 40px;
    display: flex; 
    justify-content: center;
    align-items: top;
    text-align: left;
}

.reason-img {
    flex-basis: 30%; 
    padding-left: 50px;
}

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

.reason-body {
    flex-basis: 70%;
    font-size: 1.6rem;
}

.reason-body h3 {
    font-size: 2.4rem;
    color: #092676;
    display: flex;
    align-items: center;
    gap: 10px;
}

.reason-body h3 span {
    font-size: 5.0rem;
    font-weight: bold;
    background: linear-gradient(90deg, #fe956f, #ee644c);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}

/* ======================================= */
/* 8. 比較セクション */
/* ======================================= */
.comparison {
  position: relative;
}

.comparison .basic-h2::before {
    content: 'COMPARISON';
}

.comparison img {
    width: 80%;
    margin: 20px auto;
}

.comparison p {
    font-size: 2.0rem;
    background-color: #2c3e57;
    color: #fff;
    width: 80%;
    margin: auto;
    padding: 10px;
    font-weight: bold;
}

/* ======================================= */
/* 9. コンサルティングセクション */
/* ======================================= */

.consulting {
    background-image: url(../img/consulting_base.webp);
    background-size: 100% auto;
    background-repeat: no-repeat;
    text-align: center;
}

.consulting .sub-heading span {
    background-color: #fff;
    color: #2c3e57;
    border: 2px solid #2c3e57;
}

.consulting-img {
    margin: 40px auto;
}

.consulting-body {
    background-color: #fff;
    position: relative;
}

.consulting-body img {
    position: absolute;
    bottom: 0;
    left: 15px;
    max-width: 200px;
}

.consulting p {
    font-size: 1.6rem;
    text-align: left;
    padding: 15px 15px 15px 230px;
    font-weight: bold;
}

/* ======================================= */
/* 10. ご利用事例セクション */
/* ======================================= */

.usecase {
    background-color: #2857a2;
    background-image: url(../img/usecase_base.webp);
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: top 15px center;
}

.usecase .sub-heading span {
    color: #fff;
    border: 2px solid #fff;
}

.usecase h2 {
    color: #fff;
}

.usecase-list {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 30px;
}

.usecase-box {
    flex: 1; 
    background-color: #fff;
    padding: 20px;
}

.usecase-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.usecase-img {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    margin-right: 15px;
    overflow: hidden;
    border-radius: 50%;
}

.usecase-img img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.usecase-detail {
    flex-grow: 1; 
    text-align: left;
}

.usecase-detail .industry {
    font-size: 2.2rem;
    font-weight: bold;
    background-image: linear-gradient(90deg, #4896cd, #075ba8);
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
}

.data-item {
    font-size: 1.6rem;
}

.usecase-detail .highlight {
    font-weight: bold;
}

.usecase-text {
    text-align: left;
    font-size: 1.4rem;
    line-height: 2.5rem;
}

.usecase-text span {
    color: #003e9a;
    font-weight: bold;
    font-size: 1.6rem;
    padding-left: 3px;
}

.usecase-text-2 {
    color: #fff;
    font-size: 2.4rem;
    font-weight: bold;
    margin-top: 40px;
    line-height: 3.0rem;
}

/* ======================================= */
/* 11. ご利用の流れセクション */
/* ======================================= */

.flow .sub-heading span {
    border: 2px solid #2c3e57;
}

.flow-list {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    padding: 20px 0;
}

.flow-step {
    flex-basis: calc(25% - 20px);
    flex-grow: 1;
    flex-shrink: 1;
    text-align: center;
    padding: 15px;
}

.flow-step h3 {
    font-size: 2.2rem;
    color: #003e9a;
    margin: 10px 0;
}

.flow-step p {
    font-size: 1.4rem;
    text-align: left;
}

.step-image img {
    max-width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.flow-arrow {
    flex-shrink: 0;
    width: 30px; 
    height: 30px;
    align-self: center; 
    position: relative;
    font-size: 0; 
}

.flow-arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 15px;
    border-color: transparent transparent transparent #003e9a;
}

/* ======================================= */
/* 12. よくあるご質問セクション */
/* ======================================= */

.faq {
    background-color: #ebf0f6;
    position: relative;
    z-index: 0;
}

.faq h2 {
    margin-bottom: 40px;
}

.faq .basic-h2::before {
    content: 'Q&A';
    top: -40px;
    font-family: "Inter", sans-serif;
}

.faq-item {
    background-color: #fff;
    margin-bottom: 10px;
    border-radius: 4px;
    overflow: hidden;
}

.faq-check {
    display: none;
}

.faq-question-area {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    background-color: #fff;
    border-radius: 4px;
}

.faq-q, .faq-a {
    font-weight: bold;
    font-size: 2.8rem;
    color: #010fa1;
    margin-right: 15px;
    flex-shrink: 0;
    font-family: "Inter", sans-serif;
}

.faq-a {
    color: #ef634c;
}

.faq-text {
    font-size: 1.8rem;
    font-weight: bold;
    flex-grow: 1;
    text-align: left;
}

.faq-toggle-btn {
    position: relative;
    width: 20px;
    height: 20px;
    background-color: #2c3e57;
    border-radius: 50%;
    flex-shrink: 0;
    margin-left: 20px;
    transition: transform 0.3s;
}

.faq-toggle-btn::before,
.faq-toggle-btn::after {
    content: '';
    position: absolute;
    background-color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s;
}

.faq-toggle-btn::before {
    width: 10px;
    height: 2px;
}

.faq-toggle-btn::after {
    width: 2px;
    height: 10px;
}

.faq-answer-area {
    max-height: 0; 
    transition: max-height 0.5s ease-out;
    background-color: #fff;
}

.faq-divider {
    height: 1px;
    background-color: #ddd;
    margin: 0 20px;
}

.faq-answer-content {
    display: flex;
    align-items: center;
    padding: 15px 20px;
}

.faq-answer-content p {
    font-size: 1.6rem;
    color: #333;
    line-height: 1.6;
    text-align: left;
}

.faq-check:checked ~ .faq-answer-area {
    max-height: 500px;
}

.faq-check:checked ~ .faq-question-area .faq-toggle-btn::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

/* ======================================= */
/* 13. 会社概要セクション */
/* ======================================= */

.form-message {
    font-size: 1.4rem;
    margin-top: 20px;
}
/* ======================================= */
/* 14. 会社概要セクション */
/* ======================================= */

.company {
    background-color: #ebf0f6;
}

.company h2 img {
    margin: auto;
    width: 250px;
}

.company-table {
    width: 100%;
    max-width: 700px;
    border-collapse: collapse; 
    margin: 40px auto 0;
    text-align: left;
}

.company-table tr {
    border-bottom: 1px solid #2c3e57;
}

.company-table tr:last-child {
    border-bottom: none;
}

.company-table th, 
.company-table td {
    padding: 15px 10px;
    border: none; 
}

.company-table th {
    width: 150px;
    font-weight: bold;
    font-size: 1.8rem;
}

.company-table td {
    font-weight: normal;
    font-size: 1.6rem;
}

/* ======================================= */
/* 15. フッター */
/* ======================================= */

.footer {
    background-color: #2c3e57;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

/* ======================================= */
/* 16. フォーム */
/* ======================================= */
.form {
    padding-bottom: 0;
}

.number {
    display: none;
}

.form-wrap {
    text-align: left;
    max-width: 800px;
    margin: 40px auto;
}

.form-wrap .title {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 30px;
    padding-left: 15px;
    border-left: 4px solid #003e9a;
    border-bottom: 1px solid #003e9a;
    color: #003e9a;
    margin-top: 30px;
}

.form-wrap .row .dt {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.required-text {
    background-color: #fa4141;
    color: #fff;
    padding: 2px 5px;
    margin-left: 5px;
    border-radius: 3px;
    font-size: 1.4rem;
}

.no {
    background-color: #4d4d4d;
}

.form-wrap select {
    width: 100%;
    height: 40px;
    border: #003e9a solid 1px;
    margin-bottom: 10px;
    font-size: 1.6rem;
    border-radius: 8px;
    padding-left: 10px;
}

.form-wrap input {
    width: 100%;
    height: 40px;
    border: #003e9a solid 1px;
    margin-bottom: 10px;
    font-size: 1.6rem;
    border-radius: 8px;
    padding-left: 10px;
}

.form-wrap textarea {
    width: 100%;
    height: 150px;
    border: #003e9a solid 1px;
    margin-bottom: 30px;
    font-size: 1.6rem;
    border-radius: 8px;
    padding-left: 10px;
}

.lead2 {
    font-size: 1.4rem;
}

.privacy-box {
    border: 1px solid #003e9a;
    padding: 18px;
    border-radius: 10px;
    background: #fff;
    height: 350px;
    overflow: scroll;
    margin: 30px auto 60px;
}

.privacy-box .p-title {
    font-size: 1.6rem;
    font-weight: 600;
}

.privacy-box .sub-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 20px;
}

.privacy-box p {
    font-size: 1.4rem;
}

.submit {
    text-align: center;
    margin: auto;
    width: 90%;
    max-width: 400px;
}

.submit input {
    cursor: pointer;
    background-image: linear-gradient(90deg, #fe956f, #ee644c);
    color: #fff;
    font-weight: bold;
    border: none;
    box-shadow: 0 0 3px gray;
    border-radius: 30px;
    padding: 8px 15px;
    font-size: 2.5rem;
    min-height: 60px;
}

.submit input:hover {
    opacity: .6;
}

.wpcf7-not-valid-tip {
    color: red;
    font-size: 1.4rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.wpcf7-response-output {
    font-size: 1.4rem;
    margin: 0 auto !important;
}

.page-mv {
    margin-top: 40px;
    background: #003e9a;
    color: #fff;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    padding: 50px 0;
    line-height: 1;
}

.gray-section {
    background: #f0f0f0;
    padding: 60px 0;
}

.gray-section .box {
    margin: 0 auto;
    margin-bottom: 60px;
    padding: 30px 0;
    background: #fff;
    text-align: center;
    font-size: 18px;
    border-radius: 5px;
    -webkit-box-shadow: 0 2px 4px #b4c8dc;
    box-shadow: 0 2px 4px #b4c8dc;
    max-width: 860px;
}

.top-back a {
    margin: 0 auto;
    cursor: pointer;
    -webkit-transition: .3s;
    transition: .3s;
    color: #fff;
    background: #f56823;
    font-size: 20px;
    border-radius: 50px;
    text-align: center;
    -webkit-box-shadow: 0 6px 0px #763211;
    box-shadow: 0 6px 0px #763211;
    padding: 20px 10px;
    width: 100%;
    max-width: 400px;
    font-weight: bold;
    margin-bottom: 50px;
    transition: .3s;
    border: none !important;
    display: block;
    margin-top: 50px;
}

/* ======================================= */
/* 17. レスポンシブ対応 (メディアクエリ) */
/* ======================================= */

@media (max-width: 768px) {
    /* ヘッダー全体の設定 */
    .header .container {
        /* モバイルでもロゴとCTAは横並びを維持 */
        flex-direction: row; 
        justify-content: space-between;
        padding: 0 15px; /* 左右にパディングを追加 */
        min-height: 60px; /* 最低の高さを確保 */
    }
    
    /* ロゴのサイズを小さく調整 */
    .header h1 img {
        width: 150px; /* モバイルでのロゴサイズ */
    }
    
    /* CTAコンテナの横並びを維持 */
    .header-cta {
        gap: 10px; /* ボタン間のスペースを狭める */
        margin: 0 0px 10px 20px;
    }
    
    /* CTAボタンを小さく調整 */
    .header-cta a {
        padding: 5px 8px;
        font-size: 1.4rem; /* フォントサイズを小さく */
        width: 170px;
    }

    /* ... その他既存のメディアクエリのスタイル ... */
}

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

    h2 {
        font-size: 2.2em;
        margin-bottom: 10px;
    }

    .sub-heading {
        display: block;
        font-size: 1.8rem;
        line-height: 1.4;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .sp-only {
        display: block !important;
    }

    .pc-only {
        display: none !important;
    }

    /* ヘッダー */
    .header .container {
        flex-direction: column;
        text-align: left;
        margin: 0;
    }

    .header h1 {
        width: 150px;
    }

    /* ヒーローセクション */
    .hero {
        padding-top: 80px;
        background-image: none;
    }

    .hero .container {
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .hero h2 {
        font-size: 2.5em;
    }

    .fv-sp {
        display: block !important;
        width: 100%;
    }

    .fv-pc {
        display: none !important;
    }

    /* お悩みセクション */
    .problem {
        padding-bottom: 20px;
    }

    .problem::after {
        bottom: -30px;
        height: 30px;

    }

    .problem-list {
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
        margin-left: 2px;
    }
    
    .problem-item {
        text-align: center;
        font-size: 1.6rem;
    }
    
    .problem-item h3 {
        text-align: center;
    }

    .problem-item img {
        width: 300px;
        margin: auto;
    }

    .solution {
        padding-top: 50px;
    }

    .solution-list {
        flex-direction: column;
        gap: 10px;
        width: 70%;
        margin: 20px auto 10px;
    }

    .solution-item {
      font-size: 2.0rem;
    }

    .solution img {
      width: 100%;
      max-width: 600px;
      margin: auto;
    }

    /* CTAセクション */
    .cta {
        background-image: url(../img/cta_base.webp);
        background-size: auto 100%;
        background-position: left;
        }

    .cta h2 {
        font-size: 2.0rem;
    }
    .cta_box {
        padding: 20px 10px;
    }

    .cta_form {
        margin: 0px auto 10px;
        color: #fff;
        font-size: 2.6rem;
        padding: 15px;
    }

    .cta-group {
        flex-direction: column;
        padding: 0px;
    }

    .cta-item {
        flex-basis: 100%;
        padding: 10px 0;
        width: 100%;
    }

    .cta-title {
        font-size: 1.6rem;
        width: 100%;
    }

    .phone-cta {
        border-right: none;
    }

    .phone-number-box {
        background-image: linear-gradient(90deg, #4896cd, #075ba8);
        padding: 10px 0;
        box-shadow: 0 0 5px gray;
    }

    .phone-number-box a {
        color: #fff;
        font-weight: bold;
        font-size: 2.6rem;
    }

    .line-box {
        background-color: #06c755;
        background-image: none;
    }

    /* 選ばれる理由セクション */
    .reason-body h3 {
        font-size: 2.0rem;
        gap: 5px;
    }

    .reason-body h3 span {
        font-size: 3.8rem;
    }

    .reason-list {
        margin-top: 10px;
    }

    .reason-item {
        flex-direction: column;
        padding: 10px;
        text-align: left;
        margin-bottom: 10px;
    }

    .reason-img {
        flex-basis: auto;
        width: 90%;
        margin: 10px auto;
        padding-left: 0;
        text-align: center;
    }

    .reason-body {
        flex-basis: auto;
    }

    .comparison .basic-h2::before {
        font-size: 2.2em;
    }


    .comparison img {
        width: 100%;
    }

    .comparison p {
        font-size: 1.6rem;
        width: 100%;
    }

    .consulting {
        background-size: auto 100%;
    }

    .consulting-img {
        margin: 10px auto 20px;
    }

    .consulting p {
        padding: 10px;
    }


    
    /* ご利用事例セクション */
    .usecase {
        background-size: 100%;
        background-position: top center;
    }
    .usecase-list {
        flex-direction: column;
        gap: 20px;
        margin-top: 10px;
    }
    
    .usecase-box {
        text-align: center;
    }
    
    .usecase-header {
        justify-content: center;
    }

    .usecase-text-2 {
        font-size: 2.0rem;
    }
    
    /* ご利用の流れセクション */
    .flow {
        padding: 40px 0 20px;
    }
    .flow-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    
    .flow-step {
        flex-basis: auto;
        margin-bottom: 10px;
        padding: 10px;
        border: 1px solid #003e9a;
    }

    .flow-step h3 {
        margin: 0;
        font-size: 1.8rem;
    }

    .step-image img {
        width: 40%;
    }

    .flow-arrow {
        transform: none;
        height: 30px;
        width: 30px;
    }

    .flow-arrow::after {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        border-width: 15px 15px 0 15px;
        border-color: #003e9a transparent transparent transparent;
    }
    
    .flow-list .flow-arrow:last-of-type {
        display: none;
    }

    .faq h2 {
        margin-bottom: 20px;
    }


    .faq-text {
        font-size: 1.6rem;
    }

    .faq-answer-content p {
        font-size: 1.4rem;
    }

    .form-message {
        font-size: 1.2rem;
    }




    /* 会社概要セクション（追加のスマホスタイル） */
    .company {
        padding: 20px 0;
    }
    .company h2 img {
        width: 200px;
    }
    .company-table {
        margin: 0;
    }
    .company-table th {
        width: 120px; /* 項目名の幅を狭くする */
        font-size: 1.6rem;
    }

    .company-table td {
        font-size: 1.4rem;
    }


    .page-mv {
        font-size: 2.5rem;
        padding: 30px 0;
        margin-top: 80px;
    }

    .gray-section {
        padding: 30px 10px;
    }

    .gray-section .box {
        font-size: 1.4rem;
        padding: 20px 5px;
        margin-bottom: 30px;
    }

    .top-back a {
        font-size: 1.8rem;
        padding: 10px;
        margin-bottom: 20px;
        margin-top: 20px;
        width: 250px;
    }
}



