/* ==========================================
   ゆうちょ銀行デザイン限定特典 枠組み用スタイル
========================================== */

/* タイトル（緑背景・四隅角丸） */
.tokuten_title {
    background-color: #009900;
    color: #FFF;
    font-size: 180%;
    line-height: 1.5;
    font-weight: bold;
    text-align: center;
    padding: 10px 0;
    border-radius: 15px; /* 四隅を角丸に */
    margin: 0;
    position: relative;
    z-index: 2; /* 下の枠線より前面に出して線を隠す */
}

/* 特典の緑枠ボックス（罫線をタイトルに繋げる） */
.tokuten_box {
    border: 2px solid #009900;
    background-color: #fff;
    border-radius: 10px; /* 箱自体も角丸にして統一感を出しています */
    overflow: hidden; /* ★ここが超重要！はみ出した直角の緑を、枠の角丸に合わせてカットします★ */
    position: relative;
    z-index: 1;
}
/* ★追加：タイトル帯（緑背景）の余白をなくして枠にピタッとくっつける★ */
#contents .tokuten_box p.catgtext {
    margin: 0 !important;
    padding: 12px 0 !important;
}
.tokuten_box_ttl {
    padding: 20px 55px 0 55px;
}

/* 「現金3,000円」の赤文字・特大強調 */
.tokuten_box .tokuten_emp {
    font-size: 180%;
    font-weight: bold;
    color: #e3442a;
    display: block;
    margin: 10px 0;
}

/* 適用条件等 の見出し（左に緑の縦線） */
.tokuten_box .condition_title {
    font-weight: bold;
    font-size: 110%;
    color: #333;
    border-left: 4px solid #009900;
    padding-left: 10px;
    margin-bottom: 15px;
    line-height: 1.2;
}

/* リスト（・）のスタイル */
.tokuten_box .condition_list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}
.tokuten_box .condition_list li {
    padding-left: 1em;
    text-indent: -1em;
    line-height: 1.5;
}

/* 注意事項（※）のスタイル */
.tokuten_box .notes_list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.tokuten_box .notes_list li {
    padding-left: 1em;
    text-indent: -1em;
    margin-bottom: 0.5em;
    line-height: 1.5;
}
#contents .tokuten_box p.midashi01 {
    font-size: 180%;
    font-weight: bold;
    color: #C00000;
}
#contents .tokuten_box p.midashi02 {
    font-size: 300%;
    font-weight: bold;
}
#contents .tokuten_box p.midashi02 span {
    font-size: 140%;
    font-weight: bold;
    color: #7F6000;
}
.hf_line {
    border: 1px solid #7F6000;
}
.#contents .list_indent.number > li {
    text-indent: -1.4em;
    padding-left: 1.4em;
    font-size: 100%;
    line-height: 1.57;
    margin-bottom: 0;
}

@media screen and (max-width: 479px) {
.tokuten_box_ttl {
    padding: 20px 20px 0 20px;
}
#contents .tokuten_box p.midashi02 {
    font-size: 260%;
}
#contents .tokuten_box p.midashi02 span {
    font-size: 150%;
}
    }

/* ==========================================
   アコーディオン（詳細はこちら）用スタイル
========================================== */
#contents .slide_content_title_detail {
    border: 2px #009900 solid !important;
    border-radius: 10px !important;
    background: #fff !important;
    cursor: pointer;
    margin-bottom: 0;
    background-color: #009900 !important;
}
#contents .slide_content_title_detail div.wrap {
    position: relative;
    text-align: center;
    padding: 15px 40px !important; 
    border: none !important;
}
#contents .slide_content_title_detail div.wrap.open {
    border-radius: 10px 10px 0 0 !important;
    border-bottom: 2px #009900 solid !important;
}
#contents .slide_content_title_detail h3 {
    display: inline-block !important;
    font-size: 110% !important;
    font-weight: bold !important;
    color: #fff !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

/* ★ボタンの外枠（白フチ・丸）の共通設定★ */
#contents .slide_content_title_detail div.wrap .slide_content_btn {
    position: absolute !important;
    right: 15px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 24px !important;
    height: 24px !important;
    margin: 0 !important;
    background: transparent !important; /* 画像やグラデーションは使わない */
    border: 2px solid #fff !important; /* 白いフチ */
    border-radius: 50% !important; /* まん丸にする */
    box-sizing: border-box !important;
}

/* ★横線（「－」の部分：開閉どちらでも表示）★ */
#contents .slide_content_title_detail div.wrap .slide_content_btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background-color: #fff;
    transform: translate(-50%, -50%);
}

/* ★縦線（閉じた状態[close]のみ表示して「＋」にする）★ */
#contents .slide_content_title_detail div.wrap.close .slide_content_btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 12px;
    background-color: #fff;
    transform: translate(-50%, -50%);
}

/* ★開いた状態[open]は縦線を消して「－」にする★ */
#contents .slide_content_title_detail div.wrap.open .slide_content_btn::after {
    content: none !important;
    display: none !important;
}

#contents .slide_content_area_detail {
    border-left: 2px #009900 solid !important;
    border-right: 2px #009900 solid !important;
    border-bottom: 2px #009900 solid !important;
    border-radius: 0 0 10px 10px !important;
    padding: 20px !important;
    display: none; 
}

#contents .tokuten_box .slideContent {
    margin-bottom: 0 !important; /* 枠の底にピッタリくっつける */
}

/* アコーディオンのタイトル部分 */
#contents .slide_content_title_detail {
    border: none !important; /* 枠と線がダブるので線を消す */
    border-top: 2px solid #009900 !important; /* 上だけに線を引いて区切る */
    border-radius: 0 0 8px 8px !important; /* ★外枠に合わせて下側だけ角丸にする */
    background-color: #009900 !important;
}

/* 開いたときのタイトル部分の角丸をリセット */
#contents .slide_content_title_detail div.wrap.open {
    border-radius: 0 !important;
    border-bottom: none !important;
}

/* アコーディオンの中身（開いたときのエリア） */
#contents .slide_content_area_detail {
    border: none !important; /* 枠とダブるので線を消す */
    border-radius: 0 0 8px 8px !important; /* ★外枠に合わせて下側だけ角丸にする */
    padding: 20px !important;
    display: none; 
}


/* ==========================================
   ｄカード GOLD Uの魅力 セクション用スタイル
========================================== */
.dcard_gold_u {
    border: 2px solid #B48900;
    border-radius: 15px;
    background-color: #F2F2F2;
    margin-bottom: 20px;
}
/* 金の背景に白文字タイトル */
.charm_title {
    background-color: #B48900;
    color: #fff;
    font-size: 180%;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
    padding: 12px 0;
    margin-bottom: 20px;
    border: 2px solid #B48900;
    border-radius: 10px;
}
.recommend_box {
    margin: 0 20px 20px;
    border-radius: 10px;
    background-color: #fff;
    padding: 15px;
}
.recommend_left {
    width: 65%;
}
.recommend_right {
    width: 32%;
    text-align: center;
}
.recommend_right img {
    max-width: 100%;
    height: auto;
}

/* 枠内の「こんな方におすすめ！」緑文字 */
.recommend_box_ttl {
    color: #009900;
    font-size: 130%;
    font-weight: bold;
    margin: 0 0 15px 0;
}

/* チェックマークリスト */
.recommend_list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.recommend_list li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 10px;
    font-weight: bold;
    line-height: 1.4;
    font-size: 100%;
    color: #333;
}
.recommend_list li:last-child {
    margin-bottom: 0;
}
.dcard_gold_u .recommend_box .ttl span::before {
    content: "\2611";
    color: #B48900;
    font-size: 130%;
    position: absolute;
    top: 0.36em;
    left: 1em;
}
.dcard_gold_u .recommend_box .ttl span {
    margin-left: 1.8em;
    font-size: 140%;
    font-weight: bold;
    color: #B48900;
}
#contents sup.notes {
    font-size: 66%;
    line-height: 1.57;
}

/* ｄカード GOLD U なら（黄色アンダーライン） */
.dcard_nara_ttl {
    font-size: 150%;
    font-weight: bold;
    text-align: center;
    margin: 30px 0 20px;
    color: #333;
}
.dcard_nara_ttl span {
    background: linear-gradient(transparent 60%, #ffff66 60%);
    padding: 0 5px;
}

/* ポイント1・2の2カラム枠 */
.points_container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.point_box {
    border: 2px solid #009900;
    border-radius: 10px;
    width: 48%; /* 横幅半分ずつ */
    padding: 15px 10px;
    background-color: #fff;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.point_badge {
    background-color: #ed7d31; /* オレンジ */
    color: #fff;
    font-weight: bold;
    font-size: 110%;
    padding: 4px 20px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
}
.point_box_txt {
    font-size: 95%;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 10px;
}
.point_box_red {
    font-size: 110%;
    font-weight: bold;
    color: #e3442a;
    line-height: 1.4;
    margin-bottom: 10px;
}
.point_box_red .emp_l {
    font-size: 160%; /* 10%などを大きく */
}
.point_box_note {
    font-size: 80%;
    text-align: left;
    display: inline-block;
    text-indent: -1em;
    padding-left: 1em;
    margin: auto 0 0 0; /* 下に揃える */
}

/* ==========================================
   利用無料のラウンジ例 用スタイル（新規セクション）
========================================== */

/* 全体のコンテナ */
.lounge_section {
    display: flex;
    justify-content: space-between;
    align-items: center; /* タイトルとリストを中央揃え */
    padding: 15px 15px 0 15px;
    background-color: #fff; /* 必要に応じて背景色を調整 */
}

/* 左側のタイトルエリア */
.lounge_section .lounge_title_area {
    flex: 1; /* 親要素の幅に対して均等に割り当て */
    text-align: center;
    border: 2px solid #B48900; /* ★ここが重要：金色の罫線 */
    border-radius: 10px; /* 角丸 */
    padding: 10px 15px;
    font-weight: bold;
    color: #333;
    margin-right: 30px; /* 右側のリストエリアとの間隔 */
}

/* リスト全体のスタイル */
.lounge_section .lounge_list {
    list-style: none; /* 標準の黒丸を非表示 */
    padding: 0;
    margin: 0;
}

/* リストアイテム（各行）のスタイル：幅を約半分にする */
.lounge_section .lounge_list li {
    position: relative;
    padding-left: 1.2em;
    line-height: 1.5;
    color: #333;
    box-sizing: border-box;
}

/* ご指定の金色（#B48900）を使ったリストマーク（●） */
.lounge_section .lounge_list li::before {
    content: "●";
    color: #B48900; /* ★ここが重要：金色を指定 */
    position: absolute;
    left: 0;
    top: 0;
}

/* ▼ スマホ画面用の設定（画面幅が768px以下の場合） ▼ */
/* ==========================================
   利用無料のラウンジ例 用スタイル（新規セクション）
========================================== */

/* 全体のコンテナ */
.lounge_section {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* ★変更：center から stretch にして左右の高さを揃える */
    padding: 15px;
    background-color: #fff;
}

/* 左側のタイトルエリア */
.lounge_section .lounge_title_area {
    flex: 1;
    /* ★追加：伸びた枠の中で、文字を上下左右の中央に配置する */
    display: flex;
    align-items: center;
    justify-content: center;
    
    text-align: center;
    border: 2px solid #B48900; 
    border-radius: 10px; 
    padding: 10px 15px;
    font-weight: bold;
    color: #333;
    margin-right: 20px; 
}

/* リスト全体のスタイル */
.lounge_section .lounge_list {
    flex: 2; /* ★追加：右側のエリアを左側より広く取る（バランス調整） */
    list-style: none;
    padding: 0;
    margin: 0;
}

/* リストアイテム（各行）のスタイル */
.lounge_section .lounge_list li {
    position: relative;
    padding-left: 1.2em;
    line-height: 1.5;
    color: #333;
    box-sizing: border-box;
}

/* ご指定の金色（#B48900）を使ったリストマーク（●） */
.lounge_section .lounge_list li::before {
    content: "●";
    color: #B48900; 
    position: absolute;
    left: 0;
    top: 0;
}

/* ▼ スマホ画面用の設定 ▼ */
@media screen and (max-width: 479px) {
    .lounge_section {
        flex-direction: column; 
        align-items: stretch; /* スマホでも横幅いっぱいに伸ばす */
    }
    .lounge_section .lounge_title_area {
        margin-right: 0;
        margin-bottom: 15px; 
        width: 100%; 
        box-sizing: border-box;
    }
    .lounge_section .lounge_list {
        width: 100%;
    }
    .lounge_section .lounge_list li {
        width: 100%; 
    }
}



/* ==========================================
   ドコモユーザーならさらにおトク！ セクション用スタイル
========================================== */
.gain {
    border: 2px solid #C00000;
    border-radius: 15px;
    background-color: #F2F2F2;
    margin-bottom: 20px;
}
.gain_title {
    background-color: #C00000;
    color: #fff;
    font-size: 180%;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
    padding: 12px 0;
    margin-bottom: 20px;
    border: 2px solid #C00000;
    border-radius: 10px;
}
.gain .recommend_box .ttl span::before {
    content: "\2611";
    color: #C00000;
    font-size: 130%;
    position: absolute;
    top: 0.36em;
    left: 1em;
}
.gain .recommend_box .ttl span {
    margin-left: 1.8em;
    font-size: 140%;
    font-weight: bold;
    color: #C00000;
}
.web_link {
    line-height: 1.8;
}
.web_link .txt {
    font-size: 150%;
}
.web_link .midashi {
    font-size: 160%;
}
#contents .web_link .btn p {
    font-size: 150%;
    font-weight: bold;
    color: #fff;
    background-color: #B48900;
    padding: 10px 50px;
    width: 130px;
    margin: auto;
    border-radius: 10px;
    padding-right: 30px;
}
#contents .web_link .btn p:hover {
    opacity: 0.7;
}
.web_link .btn a {
    text-decoration: none;
    display: contents;
}


/* ==========================================
   条件文   セクション用スタイル
========================================== */
.statement .ttl {
    border-bottom: 1px solid;
	padding-bottom: 10px;

}
#contents .statement .list_indent.square > li {
    text-indent: -1.4em;
    padding-left: 1.4em;
    font-size: 100%;
    line-height: 1.57;
}
#contents .statement .list_indent.square > li.s01 {
    text-indent: -1em;
    padding-left: 2.4em;
    font-size: 100%;
    line-height: 1.57;
}


/* ==========================================
   お問い合わせ セクション用スタイル
========================================== */

.inquiry_title {
    background-color: #B48900;
    color: #fff;
    font-size: 180%;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
    padding: 12px 0;
    margin-bottom: 20px;
    border: 2px solid #B48900;
    border-radius: 10px;
}
.inquiry_top {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

#contents .inquiry_top p {
    font-size: 150%;
    margin-bottom: 20px;
}
.inquiry_top h3 {
    font-size: 150%;
    margin-bottom: 10px;
}
.inquiry_top .gold {
    color: #B48900;
}
.inquiry_top .link_area {
    color: #333;
}
.inquiry_top .link_area a.underline {
    text-decoration: underline;
}
.inquiry_top .link_area .icon_link {
    margin-left: 5px;
}

.inquiry_bottom {
    display: flex;
    justify-content: space-between;
}
.inquiry_col {
    width: 48%;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.inquiry_col h3 {
    font-size: 110%;
    color: #fff;
    text-align: center;
    padding: 10px;
    margin: 0;
    line-height: 1.3;
}
#contents .inquiry_col.docomo h3 {
    background-color: #C00000;
    padding: 5px;
}
#contents .inquiry_col.yucho h3 {
    background-color: #009900;
    padding: 5px;
}
.inquiry_col .cont {
    padding: 15px;
    background-color: #fff;
    flex: 1; /* 高さを揃えるため */
}
.inquiry_list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.inquiry_list li {
    line-height: 1.5;
    margin-bottom: 8px;
    color: #333;
}
.inquiry_list li:last-child {
    margin-bottom: 0;
}
.inquiry_list li .tel_red {
    color: #e3442a;
}
.inquiry_list li .tel_green {
    color: #009900;
}
.inquiry_list li.fnt_b {
    font-weight: bold;
}
/* インデント調整 */
.inquiry_list li.dot_indent {
    text-indent: -1em;
    padding-left: 1em;
}
.inquiry_list li.note_indent {
    text-indent: -1em;
    padding-left: 1.3em; /* ※マークの分を考慮 */
}

.inquiry_list li br {
    display: block;
}

/* 外部リンクアイコン表示用追加スタイル（提供された画像通りにするため） */
.inquiry_detail_box .icon_link {
    background: url(images/icon_link.png) no-repeat right center;
    display: inline-block;
    width: 20px; /* アイコンの幅に合わせて調整 */
    height: 15px; /* アイコンの高さに合わせて調整 */
    margin-left: 5px;
    vertical-align: middle;
}
.inquiry_detail_box .icon_link .txt_n {
    display: none; /* アクセシビリティ用テキストを非表示にする（既存外部CSSの設定が不明なため） */
}

#contents h3.ttl_bg_red.fnt_b,
#contents h3.ttl_bg_green.fnt_b {
    margin-bottom: 0;
}

/* ▼ スマホ画面用の設定 ▼ */
@media screen and (max-width: 479px) {
    .inquiry_detail_box {
        padding: 15px;
    }
    .inquiry_bottom {
        flex-direction: column;
    }
    .inquiry_col {
        width: 100%;
        margin-bottom: 15px;
    }
    .inquiry_col:last-child {
        margin-bottom: 0;
    }
    .inquiry_col h3 {
        font-size: 100%;
    }
    #contents .inquiry_top p {
        font-size: 130%;
    }
}


/* ==========================================
    セクション用スタイル
========================================== */
.btn-floationg-bnr {
	background: rgba(180, 137, 0, 0.6);
}
.btn-floationg-bnr a {
	text-decoration: none;
}
.btn-floationg-bnr button {
	width: 410px;
	color: #B48900 !important;
}
.btn-floationg-bnr button:after {
    background: #B48900;
}

@media screen and (max-width: 479px) {
.btn-floationg-bnr button {
    width: 280px;
}