/* support.css placeholder */
.page-hero.is-compact {
    position: relative;
    height: 220px;
    background-size: cover;
    background-position: center;
    margin: 0 0 16px;
    border-bottom: 1px solid #eef2f5;
    overflow: hidden;
}

.page-hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 120% at 50% 0%, rgba(57, 177, 103, .35) 0%, rgba(57, 177, 103, 0) 50%),
        linear-gradient(180deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2));
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
}

.page-hero-title {
    color: #fff;
    font-weight: 700;
    font-size: clamp(20px, 3.5vw, 28px);
    text-shadow: 0 2px 6px rgba(0, 0, 0, .35);
}

/*////////ヘッダーロゴ共通////////*/
.logo img {
    width: 70px;
    /* ロゴのサイズ */
    max-width: 100%;
    /* スマホでも崩れないように */
    height: auto;
    display: inline-block;
}

/* 共通申込ボタン*/
.apply-btnblue {
    background: linear-gradient(to bottom, #4d90fe, #6ea9ff);
    color: white;
    padding: 20px 50px;
    margin: auto;
    border: none;
    border-radius: 12px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    display: block;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 50%;
    position: relative;
    overflow: hidden;
    /* ← 光がはみ出ないように */
}

.apply-btnblue::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.5) 0%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
}

.apply-btnblue:hover::before {
    left: 125%;
    transition: left 0.6s ease;
}

.apply-btnblue:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}


.center-flex {
    margin: 30px;
    justify-content: center;
    align-items: center;
}


/* ===== footer共通===== */
/* ===== 注意書き背景エリア ===== */
.footer-note {
    background-color: #39B167;
    padding: 30px;
    font-size: 12px;
    line-height: 1.2;
    color: white;
}

.footer-note p {
    width: auto;
    text-align: left;
}

.footer-iinner {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding-top: 20px;
    padding-bottom: 20px;
}

/* ===== フッター内側 ===== */
.footer-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand img {
    width: 100px;
}

.footer-left {
    display: flex;
    text-align: center;
    width: 300px;
}

.footer-left p {
    width: 300px;
}

/* ===== フッターのメニューリスト ===== */
.footer-nav {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    font-family: "Noto Sans JP", sans-serif;
}

.footer-nav ul {
    list-style: none;
    padding: 0 0 0 20px;
    border-left: 1px solid #ccc;
    min-width: 140px;
    text-align: left;
}

.footer-nav ul:first-child {
    border-left: none;
    padding-left: 0;
}

.footer-nav li {
    font-size: 14px;
    margin-bottom: 6px;
}

.footer-nav li a {
    color: #333;
    text-decoration: none;
}

.footer-nav li a:hover {
    text-decoration: underline;
}

/* ===== コピーライト ===== */
.copyright {
    text-align: center;
    font-size: 12px;
    color: #666;
}

.articleimg>img {
    width: 700px;
    padding-top: 20px;
    padding-bottom: 20px;
}


/*共通黄色い下線*/
strong {
    font-weight: bold;
    background: linear-gradient(transparent 60%, #fef5b5 60%);
}

/*リンクを押したときのゆっくりな動き*/
html {
    scroll-behavior: smooth;
}

/*共通文字*/
.text-width {
    line-height: 1.7;
    color: #000000;
}

.text-width p {
    margin-bottom: 20px;
}



.column-hero {
    background-image: url("../images/index/index_img_03.png");
    background-size: cover;
    background-position: center;
    height: 252px;
    padding: 60px 20px;
}

.column-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 0 auto;
    flex-wrap: wrap;
    /* レスポンシブ対応 */
}

/*////////ヘッダーメニュー////////*/
.menu-bar {
    background: #39B167;
    font-family: sans-serif;
}

.main-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu>li {
    position: relative;
}

.main-menu>li>a {
    display: block;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    background-color: #39B167;
}

.main-menu>li:hover>a {
    background-color: #248148;
}



/*////////パンくず共通(articleの下から)////////*/
.breadcrumb-001 {
    display: flex;
    gap: 0 22px;
    list-style: none;
    padding: 0;
    font-size: .9em;
}

.breadcrumb-001 li {
    display: flex;
    align-items: center;
}

/*////////meinとaside////////*/
main {
    width: 700px;
}

aside {
    width: 300px;
}

/*////////まとめ共通////////*/
.loan-summary-box {
    background-color: #f4f4f4;
    padding: 25px 20px;
    border-left: 5px solid #ff9900;
    border-radius: 8px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.loan-summary-box.orange {
    border-left-color: #ff9900;
}

.loan-summary-box.green {
    border-left-color: #0ba169;
}

.loan-summary-box.blue {
    border-left-color: #87b5ff;
}

/*//////// aside共通 ////////*/
.toc-wrapper {
    width: 200px;
}

.toc-box {
    margin-bottom: 20px;
    border: 1px solid #39B167;
}

.toc-title {
    background-color: #39B167;
    color: white;
    text-align: center;
    padding: 8px;
    font-weight: bold;
}

.toc-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-box li {
    border-top: 1px solid #39B167;
    padding: 10px;
    text-align: center;
}

.toc-box li:first-child {
    border-top: none;
    /* 最初のliの線は消す */
}

aside {
    width: 200px;
}

/* .banner-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
    align-items: center;
    padding-bottom: 30px;
}
*/
.banner-column a img {
    width: 200px;
    display: block;
    transition: transform 0.2s ease;
}

.banner-column a img:hover {
    transform: scale(1.02);
}

.layout {
    display: flex;
    /*mainとaside横並び*/
    align-items: flex-start;
    /*上端で揃える*/
    padding-top: 20px;
    padding-bottom: 50px;
}

.layout aside {
    width: 260px;
}

/*main700+aside300=1000px*/
.wrapper {
    max-width: 1000px;
    /* 横幅の最大値*/
    margin: 0 auto;
    /* 中央寄せ */
}

.flex {
    display: flex;
}

/*////////目次 ////////*/
/* 親コンテナ */
.loan-container {
    background-color: #f9f9f9;
    padding: 2em;
    border-radius: 8px;
    font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    line-height: 1.7;
}

/* h2見出し */
.loan-heading {
    font-size: 30px;
    margin-bottom: 1em;
    border-left: 5px solid #ffa500;
    padding-left: 0.5em;
    font-weight: bold;
}

/* メインリスト */
.loan-list {
    list-style-type: disc;
    padding-left: 1.5em;
    list-style: none;
    font-weight: bold;
}

.loan-list>li {
    margin-bottom: 1em;
}

.loan-container ol,
.loan-faq {
    color: #555555;
}

.loan-list ol {
    list-style-type: decimal;
    margin-top: 0.5em;
    padding-left: 1.5em;
    list-style: none;
}

/* 内側の通常リスト（ul） */
.loan-list ul {
    list-style-type: disc;
    margin-top: 0.5em;
    padding-left: 1.5em;
    list-style: none;
}


/*////////ここから下記事ページ ////////*/
body {
    font-family: "Arial", sans-serif;
    background-color: #fff;
    margin: 0;
}

h1 {
    font-size: 31px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-left: 10px;
}

.loan-bullets {
    list-style-type: disc;
    padding-left: 1.5em;
    margin-bottom: 1em;
}

.loan-bullets li {
    margin-bottom: 0.5em;
}

.loan-warning-title {
    font-weight: bold;
    background-color: transparent;
    display: inline-block;
    margin-top: 1em;
}

.loan-warning-list {
    list-style-type: disc;
    padding-left: 1.5em;
}

.loan-warning-list li {
    margin-bottom: 0.5em;
}

.loan-highlight {
    background-color: #6b4f32;
    color: #fff8e7;
    padding: 0.1em 0.4em;
    border-radius: 4px;
    font-weight: bold;
}



/* 内側の番号付きリスト（ol） */

h2 {
    font-size: 23px;
    color: #000000;
    font-weight: bold;
}

.list h2 {
    padding-bottom: 15px;
}

/*//////////年収100万円以下でも通りやすいカードローン3選//////////*/
.loan-items>li::before {
    counter-increment: none;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2em;
    font-weight: bold;
}

.loan-items ul {
    list-style-type: disc;
    padding-left: 1.2em;
    margin-top: 0.5em;
}

.loan-items li ul li {
    margin-bottom: 0.4em;
}

.loan-head {
    font-weight: bold;
    font-size: 20px;
    margin-top: 10px;
}

.list p {
    padding-bottom: 5px;
}

.step-box img {
    width: 40px;
    height: auto;
    position: absolute;
    top: -20px;
    left: 10px;
}

/*ボタンを真ん中にする指定*/
.page-support .support-btn-box {
    text-align: center;
    margin: 30px 0;
}



/* ==========================
返済シュミレーション
========================== */

/* === FAQセクション全体 === */
.faq-section {
    margin-bottom: 40px;
}

/* === セクション見出し（オレンジ背景）=== */
.faq-section h2 {
    background-color: #f89c3c;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    margin: 30px 0 10px;
}

/* === 各質問枠 === */
.faq-item {
    border: 1px solid #531313;
    background-color: #fef1e2;
    margin-bottom: 8px;
    border-radius: 4px;
    overflow: hidden;
    transition: 0.3s ease;
}

/* === 質問タイトル（クリック部分）=== */
.faq-question {
    padding: 15px 20px;
    font-weight: bold;
    font-size: 16px;
    position: relative;
    cursor: pointer;
    width: 700px;
    text-align: left;
    background-color: #f3e4b2;
    border: #d97b00 2px solid;
}

/* === プラスアイコン（右側）=== */
.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #d97b00;
    transition: transform 0.3s;
}

/* === 回答部分（初期は非表示）=== */
.faq-answer {
    display: none;
    padding: 15px 20px;
    border-top: 1px solid #ddd;
    background-color: #fff8ee;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.faq-box {
    padding-bottom: 10px;
}


.container h2 {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    padding-bottom: 20px;
    padding-top: 20px;
    color: #50402c;
}

section {
    /*padding-top: 40px;*/
}
/* ==========================
カミングスーン用CSS
========================== */
/* === カミングスーンバッチ（管理画面用） === */
.coming-soon-badge {
    width: 120px;
    display: inline-block;
    padding: 0.2em 0.6em;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 999px;
    border: 1px solid #0ba169;
    background-color: #0ba169;
    color: #fff;
    line-height: 1.5;
    margin: 0.5rem 0.5em 0 0.5em;
}

/* === カミングスーンページ（固定ページ（page-coming-soon.php）） === */
.l-main .coming-soon-section {
    margin-top: 3rem;
}

.coming-soon-section .section-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    border-left: 4px solid #39B167;
    padding-left: .8rem;
    font-weight: 700;
}

.coming-soon-section .post-list {
    display: grid;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.coming-soon-section .post-list-item a {
    display: flex;
    gap: .8rem;
    text-decoration: none;
}

.coming-soon-section .thumb img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

/* ==========================
運用情報用CSS
========================== */
.operator-table {
    width: 100%;
    border-collapse: collapse;
}

.operator-table th,
.operator-table td {
    padding: 8px 12px;
    border-bottom: 1px solid #eee;
}

.operator-table th {
    width: 30%;
    text-align: left;
    background: #f7f7f7;
    font-weight: 600;
}

/* =========================================
   親テーマ support.css からの追加分
   （子テーマには無かったものだけ）
   ========================================= */

/* ▼ トップヒーロー（旧デザイン用） */
.hero-inner {
    background-image: url("../images/index/index_img_03.png");
    background-size: cover;
    background-position: center;
    height: 252px;
    padding: 60px 20px;
}

/* 中のレイアウト */
.hero-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 0 auto;
    flex-wrap: wrap;
    /* レスポンシブ対応 */
}

.hero-image {
    width: 200px;
}

/* イラスト画像 */
.hero-image img {
    width: 100%;
}

/* テキスト画像 */
.hero-text img {
    width: 500px;
    max-width: 100%;
}

/* ▼ 共通ボタン（グリーンの丸ボタン） */
.btn {
    background: linear-gradient(to bottom, #5cd67e, #38b000);
    /* 明るめ→濃い緑 */
    color: #fff;
    padding: 20px 50px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(56, 176, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.5);
    /* 外＆内側の光沢 */
    transition: all 0.3s ease;
}

.btn:hover {
    transform: scale(1.05);
}

.btn-box {
    text-align: center;
    margin: 30px 0;
}

/* ▼ パンくずの HOME アイコン＆区切り矢印＆リンク色 */
.breadcrumb-001 li:first-child::before {
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: 4px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 20C20 20.5523 19.5523 21 19 21H5C4.44772 21 4 20.5523 4 20V11L1 11L11.3273 1.6115C11.7087 1.26475 12.2913 1.26475 12.6727 1.6115L23 11L20 11V20ZM11 13V19H13V13H11Z' fill='%23333333'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    content: '';
}

.breadcrumb-001 li:not(:last-child)::after {
    display: inline-block;
    transform: rotate(45deg);
    width: .3em;
    height: .3em;
    margin-left: 10px;
    border-top: 1px solid #333333;
    border-right: 1px solid #333333;
    content: '';
}

.breadcrumb-001 a {
    color: #333333;
    text-decoration: none;
}

/* ▼ サイドのバナー縦並びコンテナ */
.banner-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* バナー同士余白 */
    margin-top: 30px;
    align-items: center;
    padding-bottom: 30px;
}

/* ▼ 返済シミュレーション／フロー用コンテナ一式 */
.container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    border: 2px solid #FFA500;
    border-radius: 10px;
    background-color: #FFF8E1;
}

.tabs {
    display: flex;
    justify-content: space-around;
    padding: 15px;
    background-color: #FFA500;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.tabs span {
    font-size: 14px;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 30px;
}

.step-box {
    width: 500px;
    background-color: #FFCF9F;
    color: black;
    padding: 15px;
    font-weight: bold;
    font-size: 16px;
    border-radius: 5px;
    position: relative;
    text-align: center;
}

.step-box2 {
    width: 500px;
    background-color: #FFAE5D;
    color: black;
    padding: 15px;
    font-weight: bold;
    font-size: 16px;
    border-radius: 5px;
    position: relative;
    text-align: center;
}

.line {
    width: 5px;
    height: 20px;
    background-color: #FFCF9F;
}

/* ▼ 比較ボックス（オレンジの2列比較） */
.compare-box {
    max-width: 700px;
    margin: 40px auto;
    font-family: sans-serif;
    font-size: 15px;
    text-align: center;
}

/* オレンジ背景の帯（土台） */
.compare-header-bg {
    background-color: #fca652;
    border-radius: 6px 6px 0 0;
    padding: 0;
}

/* 見出しテキスト（セルを上に載せる） */
.compare-header {
    display: flex;
    color: white;
    font-weight: bold;
}

.compare-header .compare-cell {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
    border-right: 1px solid rgba(255, 255, 255, 0.4);
}

.compare-header .compare-cell:last-child {
    border-right: none;
}

/* 本体（ベージュ＋影＋段差） */
.compare-body {
    background-color: #fde8d0;
    color: #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: -8px;
    border-radius: 0 0 6px 6px;
}

/* カードローンを利用する際の注意点：最初の段落だけ余白追加 */
.content p:first-child {
    margin-top: 20px;
}

/* 共通セル */
.compare-cell {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
    border-right: 1px solid rgba(255, 255, 255, 0.4);
}

/* ▼ FAQ：開いたときに + → - に変える */
.faq-item.active .faq-question::after {
    content: "-";
}

/* ▼ その他：フロー用セクション見出し */
.flow-container h2 {
    font-weight: bold;
    text-align: center;
    font-size: 24px;
    padding-bottom: 20px;
    padding-top: 30px;
}