@charset "UTF-8";

/*===============================================
<FILE INFO>
NAME: style.css (common.css + contents.css + GEM MODIFIED)
TYPE: StyleSheets
UPDATE: 2025/10/24 (GEM MODIFIED)
===============================================*/

/*===============
 RESET (common.css)
===============*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav.gnav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    font-weight: normal;
}

body {
    line-height: 1
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav.gnav,
section {
    display: block
}

ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: none
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent
}

del {
    text-decoration: line-through
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0
}

input,
select {
    vertical-align: middle
}

/*===============
 GENERAL (common.css + GEM MODIFIED)
===============*/

/* (GEM) 背景アニメーションの定義（浮遊する円） */
@keyframes bubbleFloat {
    0% {
        transform: translateY(0);
    }

    100% {
        /* (GEM) 画面3つ分の高さのうち、2つ分を上に移動させる */
        transform: translateY(-200vh);
    }
}

body {
    font-size: 15px;
    color: #333333;
    font-family: "Noto Sans JP", "Work Sans", sans-serif;
    line-height: 1.7;
    /* (GEM) body自体の背景色は透明にする */
    background-color: transparent;
    position: relative;
    /* 疑似要素の配置基準 */
    overflow-x: hidden;
    /* 横スクロール防止 */
}

/* (GEM) 疑似要素(::before)を画面固定の背景レイヤーとして使用 */
body::before {
    content: '';
    /* (GEM) 画面全体に固定 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    /* ビューポート幅 */
    height: 300vh;
    /* (GEM) アニメーション用に高さを3倍に */
    z-index: -1;
    /* (GEM) コンテンツの背面に配置 */

    /* (GEM) ベースとなる背景色 */
    background-color: #f8f9fa;

    /* (GEM) 複数の「丸い幾何学模様（円）」を配置（大小・高密度） */
    background-image:
        /* --- 既存の定義 --- */
        radial-gradient(circle at 10% 30%, rgba(210, 220, 230, 0.4) 80px, transparent 81px),
        radial-gradient(circle at 80% 20%, rgba(210, 220, 230, 0.3) 150px, transparent 151px),
        radial-gradient(circle at 40% 50%, rgba(210, 220, 230, 0.5) 60px, transparent 61px),
        radial-gradient(circle at 60% 80%, rgba(210, 220, 230, 0.4) 120px, transparent 121px),
        /* 2画面目 (100vh～199vh) */
        radial-gradient(circle at 20% 120%, rgba(210, 220, 230, 0.3) 100px, transparent 101px),
        radial-gradient(circle at 70% 150%, rgba(210, 220, 230, 0.4) 70px, transparent 71px),
        radial-gradient(circle at 30% 180%, rgba(210, 220, 230, 0.5) 130px, transparent 131px),
        /* 3画面目 (200vh～299vh) */
        radial-gradient(circle at 80% 210%, rgba(210, 220, 230, 0.4) 90px, transparent 91px),
        radial-gradient(circle at 15% 250%, rgba(210, 220, 230, 0.3) 160px, transparent 161px),
        radial-gradient(circle at 50% 280%, rgba(210, 220, 230, 0.5) 75px, transparent 76px),

        /* --- (GEM) ここから追加 --- */
        /* 小さいサイズ (1画面目) */
        radial-gradient(circle at 5% 5%, rgba(210, 220, 230, 0.6) 20px, transparent 21px),
        radial-gradient(circle at 25% 15%, rgba(210, 220, 230, 0.5) 30px, transparent 31px),
        radial-gradient(circle at 50% 35%, rgba(210, 220, 230, 0.6) 15px, transparent 16px),
        radial-gradient(circle at 90% 45%, rgba(210, 220, 230, 0.5) 25px, transparent 26px),
        radial-gradient(circle at 35% 65%, rgba(210, 220, 230, 0.6) 35px, transparent 36px),
        radial-gradient(circle at 85% 95%, rgba(210, 220, 230, 0.5) 22px, transparent 23px),
        /* 小さいサイズ (2画面目) */
        radial-gradient(circle at 5% 105%, rgba(210, 220, 230, 0.5) 25px, transparent 26px),
        radial-gradient(circle at 45% 135%, rgba(210, 220, 230, 0.6) 30px, transparent 31px),
        radial-gradient(circle at 95% 165%, rgba(210, 220, 230, 0.5) 18px, transparent 19px),
        radial-gradient(circle at 65% 195%, rgba(210, 220, 230, 0.6) 28px, transparent 29px),
        /* 小さいサイズ (3画面目) */
        radial-gradient(circle at 10% 205%, rgba(210, 220, 230, 0.6) 30px, transparent 31px),
        radial-gradient(circle at 30% 230%, rgba(210, 220, 230, 0.5) 20px, transparent 21px),
        radial-gradient(circle at 60% 260%, rgba(210, 220, 230, 0.6) 25px, transparent 26px),
        radial-gradient(circle at 90% 290%, rgba(210, 220, 230, 0.5) 35px, transparent 36px),
        /* 大きいサイズ (追加) */
        radial-gradient(circle at 20% 70%, rgba(210, 220, 230, 0.2) 200px, transparent 201px),
        radial-gradient(circle at 75% 110%, rgba(210, 220, 230, 0.2) 180px, transparent 181px),
        radial-gradient(circle at 40% 240%, rgba(210, 220, 230, 0.2) 220px, transparent 221px);

    background-repeat: no-repeat;
    /* (GEM) 繰り返しなし */

    /* (GEM) アニメーションを適用 (60秒かけて浮遊し、ループ) */
    animation: bubbleFloat 60s linear infinite;
}


#contents {
    position: relative;
    /* (GEM) body::beforeより手前に来るよう z-index を自動設定 */
    overflow: hidden;
    width: 80%;
    margin: 0 auto;
    background: #ffffff;
    /* コンテンツエリアは白 */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    /* 影を追加 */
}

@media screen and (min-width:1000px) {
    #contents {
        border-radius: 12px;
        /* (SMBC) PCで角丸 */
        margin-top: 20px;
        margin-bottom: 20px;
        overflow: hidden;
        /* 角丸を内部要素に適用するため */
    }

    #contents:before {
        position: absolute;
        top: 0;
        left: 0;
        width: 20%;
        height: 100%;
        content: '';
        background: #F0F0F0;
        /* 既存の左カラム背景色 */
        z-index: 0;
        /* (GEM) コンテンツ内の疑似要素 */
    }
}

/* (GEM) ロード時アニメーション */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#main {
    box-sizing: border-box;
    float: right;
    width: 80%;
    padding: 25px;
    /* パディングを調整 */
    animation: fadeIn 0.7s ease-out;
    /* (CyberAgent) アニメーション */
    position: relative;
    /* (GEM) z-indexのため */
}

#sub {
    box-sizing: border-box;
    float: left;
    width: 20%;
    background: #F0F0F0;
    /* 確実に背景色を指定 */
    position: relative;
    /* (GEM) z-indexのため */
}

@media screen and (max-width:1000px) {
    #contents {
        box-sizing: border-box;
        width: 100%;
    }

    #main {
        float: none;
        width: 100%;
        padding: 15px;
        /* SPのパディング */
    }

    #sub {
        float: none;
        width: 100%;
    }
}

/*===============
 FONT & MOJI (common.css + GEM MODIFIED)
===============*/
p {
    text-align: justify;
    font-size: 15px;
    line-height: 1.7em;
    /* 行間調整 */
}

p.p_right {
    text-align: right;
}

b {
    font-weight: bold;
}

a {
    color: #444;
    transition: color 0.3s ease;
    /* (CyberAgent) スムーズな色変更 */
}

a:hover {
    color: #CC0033;
    /* ホバー色を統一 */
}

h1 {
    color: #fbfbfb;
    font-size: 28px;
    line-height: 1.2;
}

/* (GEM) h3のデザインを刷新 (京葉銀行風) */
h3 {
    font-size: 24px;
    font-weight: bold;
    border-bottom: none;
    position: relative;
    margin-bottom: 20px;
    padding: 8px 0 8px 15px;
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-left: 6px solid #CC0033;
    border-radius: 0 8px 8px 0;
    /* (SMBC) 角丸 */
}

h3:after {
    display: none;
    /* 既存の二重下線を削除 */
}

/* (GEM) h3内のアイコン (京葉銀行風) */
h3>i {
    margin-right: 12px;
    color: #CC0033;
    font-size: 1.1em;
}

/* (GEM) モダンなテーブルデザイン（ストライプ） */
table {
    width: 100%;
    margin-bottom: 1.5em;
    border-collapse: collapse;
    /* (GEM) 枠線を重ねる */
    border-spacing: 0;
    border-radius: 8px;
    /* (GEM) 角丸 */
    overflow: hidden;
    /* (GEM) 角丸を適用するため */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
    /* (GEM) 全体に薄い枠線を追加 */
}

/* (GEM) th (ヘッダー) のスタイル */
th {
    padding: 14px 18px;
    /* (GEM) パディング調整 */
    text-align: left;
    vertical-align: middle;
    border: none;
    background: #e9ecef;
    /* (GEM) ヘッダー背景色を明確なグレーに */
    color: #333;
    /* (GEM) ヘッダー文字色 */
    font-weight: 600;
    border-bottom: 2px solid #d1d9e1;
    /* (GEM) ヘッダー下線を明確に */
    font-size: 14px;
    text-transform: uppercase;
    /* 強制的に大文字化 */
    letter-spacing: 0.5px;
    /* 字間を広げる */
}

td {
    padding: 14px 18px;
    /* (GEM) パディング調整 */
    text-align: left;
    border: none;
    border-bottom: 1px solid #f0f0f0;
    /* (GEM) 行間の薄い線 */
    background: #ffffff;
    vertical-align: middle;
}

/* (GEM) ストライプ（奇数行） */
tbody tr:nth-child(odd) td {
    background-color: #fdfdfd;
}

/* (GEM) テーブルの最終行の下線を削除 */
tbody tr:last-child td {
    border-bottom: none;
}

/* (GEM) ホバーエフェクト */
tbody tr:hover {
    background-color: #f0f5fb;
    /* (GEM) ホバー色を変更 */
}


.more {
    padding: 10px;
    text-align: right;
}

.more a {
    text-decoration: none;
    font-weight: bold;
}

.more a:hover {
    text-decoration: underline;
}

.more i {
    margin-right: 5px;
}

.outlink::after {
    font-family: "Font Awesome 5 Free";
    /* FontAwesome 5/6対応 */
    font-weight: 900;
    content: '\f35d';
    padding: 0 5px;
}

@media screen and (max-width:1000px) {
    h3 {
        font-size: 20px;
        padding-left: 10px;
    }

    h3>i {
        font-size: 1.0em;
    }

    /* (GEM) SP版テーブルのパディング調整 */
    th,
    td {
        padding: 12px;
    }
}

/*===============
 LOADING (common.css)
===============*/
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#loading img {
    width: 50px;
    height: 50px;
}

.fade-out {
    opacity: 0;
    transition: opacity 1s ease-out;
    pointer-events: none;
}

/*===============
 HEADER (common.css)
===============*/
header {
    position: relative;
    background: #F0F0F0;
    z-index: 10;
    /* (GEM) 背景レイヤーより手前 */
}

header h1 {
    padding: 15px 10px;
}

header img {
    width: 100%;
}

@media screen and (max-width:979px) {
    header h1 {
        text-align: center;
        padding: 15px 10px 10px 10px;
    }

    header img {
        width: 60%;
    }
}

.summary {
    margin: 0;
    padding: 7px;
    color: #ddd;
    background: #23292f;
    overflow: hidden;
    position: relative;
    /* (GEM) z-indexのため */
    z-index: 10;
}

.scroll span {
    display: inline-block;
    padding-left: 100%;
    white-space: nowrap;
    line-height: 1em;
    animation: scrollAnime 8s linear infinite;
}

@keyframes scrollAnime {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-100%)
    }
}

/*===============
 FOOTER (common.css)
===============*/
footer {
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
    clear: both;
    background: #23292f;
    position: relative;
    /* (GEM) z-indexのため */
    z-index: 10;
}

.footmenu {
    width: 100%;
    padding: 20px 0;
    overflow: hidden;
}

.footmenu ul {
    position: relative;
    float: left;
    left: 50%;
    margin: 0;
    padding: 0;
}

.footmenu li {
    position: relative;
    left: -50%;
    float: left;
    list-style: none;
    margin: 0;
    padding: 0 20px;
    font-size: 12px;
    text-align: center;
}

.footmenu a {
    color: #F5F5F5;
    text-decoration: none;
}

.footmenu a:hover {
    color: #ffffff;
}

.footer_logo {
    text-align: center;
    padding: 10px 0;
}

.footer_logo img {
    height: 30px;
}

.copyright {
    font-family: "Work Sans", sans-serif;
    clear: both;
    padding: 20px 0;
    font-size: 12px;
    text-align: center;
    color: #F5F5F5;
}

@media screen and (max-width:1000px) {
    footer {
        width: 100%;
    }

    .footer_logo {
        padding: 0;
    }

    .footer_logo img {
        width: 60%;
        height: auto;
    }
}

/*===============
 NAVIGATION (common.css + GEM MODIFIED)
===============*/
nav {
    overflow: hidden;
    position: relative;
}

nav h5 {
    display: none;
}

nav ul {
    margin: 0;
    padding: 0;
}

nav li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* (GEM) ナビゲーションのデザイン変更 (京葉銀行風アイコン + アニメーション) */
nav li a {
    display: flex;
    /* Flexboxでアイコンとテキストを横並び */
    align-items: center;
    padding: 16px 20px;
    color: #333;
    font-weight: bold;
    text-decoration: none;
    background: #F0F0F0;
    transition: all 0.3s ease;
    /* (CyberAgent) アニメーション */
    border-left: 5px solid transparent;
}

nav li a>i {
    width: 30px;
    font-size: 1.2em;
    margin-right: 10px;
    color: #CC0033;
    /* (京葉銀行) アイコンにアクセントカラー */
    transition: transform 0.3s ease;
}

nav li a:hover {
    color: #000;
    background: #e9e9e9;
    border-left: 5px solid #EA1C16;
    transform: translateX(3px);
    /* (CyberAgent) ホバーで少し動かす */
}

nav li a:hover>i {
    transform: scale(1.1);
    /* (CyberAgent) アイコンを少し大きく */
}


@media screen and (max-width:1000px) {
    nav {
        display: block;
        position: relative;
        width: 100%;
    }

    nav h5 {
        display: block;
        cursor: pointer;
        margin-bottom: 0;
        padding: 10px;
        color: #ddd;
        background: #CC0033;
        border: none;
    }

    /* (GEM) SP版navスタイルの調整 */
    nav li a {
        padding: 12px 30px;
        /* SP版のパディング */
        border-left: none;
    }

    nav li a:hover {
        transform: none;
        /* SP版ではトランスフォーム不要 */
        border-left: none;
        background: #e0e0e0;
    }

    #navBtn {
        display: inline-block;
        position: absolute;
        top: 8px;
        right: 10px;
        width: 30px;
        height: 30px;
        border-radius: 5%;
    }

    #navBtnIcon {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 14px;
        height: 2px;
        margin: -1px 0 0 -7px;
        background: #F0F0F0;
        transition: .2s;
    }

    #navBtnIcon:before,
    #navBtnIcon:after {
        display: block;
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        width: 14px;
        height: 2px;
        background: #F0F0F0;
        transition: 0.3s;
    }

    #navBtnIcon:before {
        margin-top: -6px;
    }

    #navBtnIcon:after {
        margin-top: 4px;
    }

    #navBtn .close {
        background: transparent;
    }

    #navBtn .close:before,
    #navBtn .close:after {
        margin-top: 0;
    }

    #navBtn .close:before {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
    }

    #navBtn .close:after {
        transform: rotate(-135deg);
        -webkit-transform: rotate(-135deg);
    }
}

/*===============
 NEWS (common.css + GEM MODIFIED)
===============*/
#news-list {
    list-style: none outside;
    margin: 0;
    padding: 0;
}

#news-list li {
    list-style: none;
    margin: 0;
}

/* (GEM) ニュースリストのデザイン変更 (SMBC風角丸 + CyberAgent風アニメーション) */
#news-list .item a {
    display: flex;
    flex-wrap: nowrap;
    text-decoration: none;
    color: #333;
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 12px;
    border-radius: 10px;
    /* (SMBC) 角丸 */
    transition: all 0.3s ease-in-out;
    /* (CyberAgent) アニメーション */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    background: #fff;
}

#news-list .item:first-child a {
    border-top: 1px solid #ddd;
    /* 既存スタイルを維持 */
}

#news-list .item a:hover {
    transform: translateY(-3px) scale(1.01);
    /* (CyberAgent) ホバーで浮き上がる */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-color: #CC0033;
    /* ホバーで枠線の色を変更 */
}

#news-list .item a:hover .title {
    text-decoration: none;
    color: #CC0033;
    /* ホバーでタイトル色を変更 */
}

#news-list .item .date {
    margin: 0;
    min-width: 140px;
    font-size: 16px;
    color: #888;
    /* 少し薄く */
    padding: 0 20px 0 0;
    font-weight: 500;
}

#news-list .item .category {
    margin: 0;
    min-width: 110px;
    padding: 0 20px 0 0;
}

#news-list .item .category span {
    background: #999;
    color: #FFF;
    text-align: center;
    display: inline-block;
    padding: 5px 20px;
    font-size: 12px;
    line-height: 1;
    border-radius: 50px;
    /* (SMBC) カテゴリタグをピル形状に */
    font-weight: bold;
}

#news-list .item .category span.shorei-kai {
    background: #CC0033;
}

#news-list .item .title {
    margin: 0;
    width: 100%;
    font-weight: 600;
}

#news-list .pdf::after {
    font-family: "Font Awesome 5 Free";
    /* FontAwesome 5/6対応 */
    font-weight: 900;
    content: '\f1c1';
    padding: 0 0.5em;
    color: #CC0033;
}

@media screen and (max-width: 1000px) {
    #news-list .item a {
        flex-wrap: wrap;
        padding: 15px;
    }

    #news-list .item a:hover {
        transform: none;
        /* SPではホバーアニメーションを抑制 */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    }

    #news-list .item .date {
        min-width: 100px;
    }

    #news-list .item .title {
        margin-top: 10px;
    }
}

/*===============
 Breadcrumb (common.css + GEM MODIFIED)
===============*/
.breadcrumb_area {
    padding: 8px 15px;
    /* パディング調整 */
    background-color: #EEE;
    border-radius: 8px;
    /* (SMBC) 角丸 */
    overflow: auto;
    white-space: nowrap;
    margin-bottom: 20px;
}

.breadcrumb {
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumb li {
    display: inline;
    list-style: none;
    font-weight: bold;
    font-size: 14px;
    /* サイズ調整 */
}

.breadcrumb li:after {
    font-family: "Font Awesome 5 Free";
    /* FontAwesome 5/6対応 */
    font-weight: 900;
    content: '\f054';
    padding: 0 0.4em;
    /* パディング調整 */
    color: #555;
    font-size: 0.8em;
    /* アイコンサイズ調整 */
}

.breadcrumb li:last-child:after {
    content: '';
}

.breadcrumb li a {
    text-decoration: none;
    color: #555;
}

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

/*===============
 Number List (common.css)
===============*/
.num_list>ol {
    counter-reset: number;
    list-style-type: none !important;
    padding: 0.5em;
}

.num_list>ol li {
    position: relative;
    text-align: justify;
    line-height: 1.7em;
    font-size: 16px;
    padding: 0.08em 0em 0.5em 35px;
}

.num_list>ol li:before {
    position: absolute;
    counter-increment: number;
    content: counter(number);
    display: inline-block;
    background: #CC0033;
    color: white;
    font-family: 'Avenir', 'Arial Black', 'Arial', sans-serif;
    font-weight: bold;
    left: 0;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    top: 0;
    transform: none;
    border-radius: 50%;
    /* (SMBC) 数字を丸く */
}

@media screen and (max-width: 1000px) {
    .num_list>ol li {
        font-size: 14px;
    }
}

/*===============
 ACCESS FROM ORVERSEA (common.css + GEM MODIFIED)
===============*/
#language-popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: #fff;
    padding: 25px;
    /* パディング調整 */
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    text-align: center;
    border-radius: 12px;
    /* (SMBC) 角丸 */
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    position: relative;
    animation-name: animatetop;
    animation-duration: 0.4s;
}

.popup-content p {
    line-height: 1.7em;
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

.close-btn {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: #000;
    text-decoration: none;
}

.popup-btn {
    display: inline-block;
    padding: 10px 25px;
    /* パディング調整 */
    margin-top: 15px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    /* (SMBC) ピル形状 */
    transition: all 0.3s ease;
    /* (CyberAgent) アニメーション */
    font-weight: bold;
}

.popup-btn:hover {
    background-color: #CC0033;
    /* ホバー色 */
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(204, 0, 51, 0.3);
}

/*===============================================
  CONTENTS.CSS
===============================================*/

/*===============
Pictures (contents.css + GEM MODIFIED)
===============*/
.top_pic img {
    width: 100%;
    border-radius: 12px;
    /* (SMBC) 角丸 */
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* 影 */
}

/*===============
Second Place (contents.css + GEM MODIFIED)
===============*/
/*===|h2_title|===*/
.h2_back_title {
    position: relative;
    margin-bottom: 20px;
    /* h3とのマージン確保 */
}

.h2_back_title h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #FFF;
    font-weight: bold;
    font-size: 36px;
    /* サイズ調整 */
    white-space: nowrap;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
    /* 影を強く */
}

.h2_back_title h2>i {
    margin-right: 15px;
    font-size: 0.9em;
}

.h2_back_title img {
    width: 100%;
    border-radius: 12px;
    /* (SMBC) 角丸 */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width:1000px) {
    .h2_back_title h2 {
        font-size: 22px;
        /* SP版のサイズ調整 */
    }
}

/*===|Navi Button (contents.css + GEM MODIFIED)|===*/
* html .topNavi {
    height: 1em;
    overflow: visible;
}

.topNavi {
    overflow: hidden;
    position: relative;
    margin-right: -1.030%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.topNaviColumn {
    display: inline;
    width: 32.302%;
    float: left;
    margin-right: 1.030%;
    margin-bottom: 10px;
}

.topNaviCon {
    position: relative;
    display: block;
    box-sizing: border-box;
    overflow: hidden;
    padding: 10px;
    text-decoration: none;
    color: #000;
    transition: all 0.3s ease;
    /* (CyberAgent) アニメーション */
    background: #f1f1f1;
    border: 1px solid #f1f1f1;
    border-radius: 8px;
    /* (SMBC) 角丸 */
}

.topNaviCon:hover {
    color: #000;
    background: #eee none repeat scroll 0 0;
    border: 1px solid #CC0033;
    /* ホバー色 */
    transform: translateY(-3px);
    /* (CyberAgent) アニメーション */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.topNaviCon h4 {
    margin: 10px;
    padding: 0;
    font-size: 18px;
    font-weight: bold;
    color: #444444;
    border: none;
}

.topNaviCon h4>i {
    font-size: 25px;
    width: 30px;
    padding-right: 10px;
    color: #CC0033;
    /* (京葉銀行) アイコン色 */
}

.topNaviCon:hover h4 {
    color: #CC0033;
}

.topNaviCon p {
    margin: 10px;
}

.topNaviPhoto img {
    width: 100%;
}

@media (max-width: 1000px) {
    .topNavi {
        margin-right: 0;
        padding: 0 10px;
    }

    .topNaviColumn {
        display: inline;
        width: 100%;
        float: left;
        margin-right: 2%;
        margin-bottom: 10px;
    }
}

/*===============
Col Setting (contents.css + GEM MODIFIED)
===============*/
/*===|Two|===*/
.twoCol {
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    -webkit-justify-content: censpace-betweenter;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    margin: 20px 0;
}

.twoCol .inner {
    position: relative;
    overflow: hidden;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    -webkit-justify-content: censpace-betweenter;
    justify-content: space-between;
    -ms-flex-direction: column-reverse;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    flex-direction: column;
    width: 48.98%;
    width: calc((480 / 980) *100%);
    height: auto;
    margin: 0 0 20px 0;
}

/* (GEM) Instagram埋め込みの角丸対応 */
.twoCol .inner .instagram-media {
    border-radius: 12px !important;
    /* (SMBC) 角丸 */
}


.twoCol .inner div:nth-child(2n+1) {
    clear: both;
}

.twoCol .inner .image {
    width: 100%;
    min-height: 0%;
}

.twoCol .inner img {
    width: 100%;
    border-radius: 8px;
    /* (SMBC) 角丸 */
}

@media screen and (max-width:767px) {
    .twoCol {
        display: block;
        margin-bottom: 20px;
    }

    .twoCol .inner {
        width: 100%;
        margin: 0 0 10px 0;
    }

    .twoCol .insta_sp {
        display: none;
    }
}

/*===|Three|===*/
.threeCol {
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    -webkit-justify-content: censpace-betweenter;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.threeCol .inner {
    position: relative;
    overflow: hidden;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    -webkit-justify-content: censpace-betweenter;
    justify-content: space-between;
    -ms-flex-direction: column-reverse;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    flex-direction: column;
    width: 32.14%;
    width: calc((315 / 980) *100%);
    margin: 0 0 20px 0;
}

.threeCol .inner:nth-child(3n+1) {
    clear: both;
}

.threeCol .inner h4 {
    width: 100%;
    margin-top: 0.5em;
    text-align: left;
}

.threeCol .inner p {
    width: 100%;
    margin-bottom: 0;
    text-align: justify;
}

.threeCol .inner .image {
    width: 100%;
    min-height: 0%;
}

.threeCol .inner img {
    width: 100%;
    border-radius: 8px;
    /* (SMBC) 角丸 */
}

.threeCol .inner .btn {
    margin-top: auto;
    padding-top: 20px;
}

.threeCol .inner .text {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    pointer-events: none;
}

@media screen and (max-width:1000px) {
    .threeCol {
        display: block;
        margin-bottom: 20px;
    }

    .threeCol .inner {
        width: 100%;
        margin: 0 0 10px 0;
    }
}

/*===|Four (contents.css + GEM MODIFIED)|===*/
/* (GEM) 指導員一覧のデザイン変更 */
.fourCol {
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    -webkit-justify-content: censpace-betweenter;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.fourCol .inner {
    position: relative;
    overflow: hidden;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    -webkit-justify-content: censpace-betweenter;
    justify-content: space-between;
    -ms-flex-direction: column-reverse;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    flex-direction: column;
    width: 23.46%;
    width: calc((230 / 980) *100%);
    margin: 0 0 20px 0;
}

.fourCol .inner>p {
    text-align: center;
    padding: 15px 0 0 0;
    font-size: 14px;
    line-height: 1.5;
    font-weight: bold;
}

.fourCol .inner>p>span {
    font-weight: 500;
    /* 役職は少し細く */
    font-size: 13px;
    color: #CC0033;
    display: block;
    /* 名前と役職を改行 */
}

.fourCol .inner img {
    width: 100%;
    border-radius: 8px;
    /* (SMBC) 角丸 */
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width:767px) {
    .fourCol {
        display: block;
        margin-bottom: 20px;
    }

    .fourCol .inner {
        box-sizing: border-box;
        width: 50%;
        margin: 0;
    }

    .fourCol .inner:nth-child(odd) {
        clear: both;
        float: left;
        padding: 0 5px 10px 0;
    }

    .fourCol .inner:nth-child(even) {
        float: right;
        padding: 0 0 10px 5px;
    }
}

/*===============
News Article Design (contents.css + GEM MODIFIED)
===============*/
.article_head img {
    width: 100%;
    border-radius: 12px;
    /* (SMBC) 角丸 */
}

.article_head h2 {
    text-align: justify;
    font-size: 25px;
    font-weight: bold;
    margin: 10px 10px 5px 0;
    padding-left: 10px;
    border-left: 5px double #FF3300;
}

.article_head ul.hash {
    background-color: #EEE;
    padding: 5px 20px;
    border-radius: 8px;
    /* (SMBC) 角丸 */
}

.article_head ul.hash li {
    display: inline-block;
    padding-right: 10px;
}

.article_head ul.hash li::before {
    content: "#";
}

.article_head table {
    width: 100%;
    border: none;
    margin: 10px 0;
    border-radius: 0;
    /* このテーブルはリセット */
    box-shadow: none;
    /* (GEM) 汎用テーブルの影をリセット */
}

.article_head th {
    border: none;
    text-align: right;
    padding: 0;
    /* パディングリセット */
    background: transparent;
    border-bottom: none;
    /* (GEM) 汎用スタイルリセット */
    font-size: inherit;
    text-transform: none;
    letter-spacing: inherit;
}

.article_head td {
    border: none;
    text-align: right;
    padding: 0;
    /* パディングリセット */
    border-bottom: none;
    /* (GEM) 汎用テーブルの下線をリセット */
}

.article_head tbody tr:nth-child(odd) td {
    background-color: transparent;
    /* (GEM) ストライプをリセット */
}

.article_head tbody tr:hover {
    background-color: transparent;
    /* (GEM) ホバーエフェクトをリセット */
}


.article_head td a {
    margin-left: 20px;
}

.article_head td i {
    font-size: 27px;
}

.border_article {
    width: 100%;
    border-bottom: 2px solid #ddd;
    margin-bottom: 10px;
}

article p {
    font-size: 16px;
    line-height: 1.7em;
    /* 行間調整 */
}

.article_photo {
    text-align: center;
    margin: 0 0 20px 0;
}

.article_photo img {
    width: 80%;
    border-radius: 12px;
    /* (SMBC) 角丸 */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1000px) {
    .article_head h2 {
        margin: 10px;
    }

    article p {
        font-size: 14px;
        line-height: 1.7em;
    }

    .article_photo img {
        width: 100%;
    }
}

/*===============
Thirds Pages Design (contents.css)
===============*/
.h2_thirds_design {
    width: 100%;
    background: #555;
    border-radius: 5px;
    margin-bottom: 10px;
}

.h2_thirds_design h2 {
    text-align: center;
    font-weight: bold;
    font-size: 25px;
    padding: 20px 0;
    color: #FFF;
}

@media (max-width: 1000px) {
    .h2_thirds_design h2 {
        font-size: 21px;
    }
}

/*===|Rules|===*/
.rules_inner {
    padding: 0 10px 0 20px;
}

p.chapter {
    font-weight: bold;
    padding-left: 5em;
    margin: 1em 0;
}

p.setsu {
    font-weight: bold;
    padding-left: 8em;
}

p.kan {
    font-weight: bold;
    padding-left: 11em;
}

p.honbun {
    text-indent: -1em;
    margin-left: 1em;
    padding: 0;
    margin: 0;
}

p.gou {
    text-indent: -1em;
    margin-left: 1em;
}

p.iroha {
    text-indent: -1em;
    margin-left: 2em;
}

.no-power_box {
    width: 100%;
    border: 4px solid #191970;
    border-radius: 8px;
    /* (SMBC) 角丸 */
    margin-bottom: 20px;
}

.no-power_box p {
    color: #191970;
    text-align: center;
    padding: 10px 0;
    font-size: 18px;
}

.no-power_box p>i {
    padding-right: 7px;
}

/*===============
A part of contents (contents.css + GEM MODIFIED)
===============*/
/*===|Pages Info Box|===*/
.pageinfobox {
    border: 3px solid #CCC;
    border-radius: 8px;
    /* (SMBC) 角丸 */
    margin: 40px 0;
    padding: 15px;
    /* パディング調整 */
    background: #fdfdfd;
}

.pageinfobox p {
    line-height: 1.6em;
    /* 行間調整 */
}

.pageinfobox .pib_title::before {
    font-weight: bold;
    font-size: 15px;
    content: "【このページに関する情報について】";
}

.pageinfobox span.date::before {
    content: "最終更新日：";
    padding-right: 10px;
}

.pageinfobox span.office::before {
    content: "問合わせ先：";
    padding-right: 10px;
}

.pageinfobox .pib_title_en::before {
    font-weight: bold;
    font-size: 15px;
    content: "[Information about this page]";
}

.pageinfobox span.date_en::before {
    content: "Last updated:";
    padding-right: 10px;
}

.pageinfobox span.office_en::before {
    content: "Contact:";
    padding-right: 10px;
}

/*===|Greeting|===*/
.photo {
    overflow: hidden;
    margin: 20px 0;
    padding: 30px 40px 0 40px;
    border-radius: 12px;
    /* (SMBC) 角丸 */
    background-color: #f5f5f5;
    /* 背景色変更 */
}

.imgR {
    float: right;
    margin: 0;
}

.imgR img {
    width: 300px;
    padding: 0;
    margin: 0;
    border-radius: 8px;
    /* (SMBC) 角丸 */
}

.photo span {
    text-align: center;
    font-size: 25px;
    font-weight: bold;
}

.photo p {
    margin-top: 20px;
    line-height: 2em;
}

@media (max-width: 1000px) {
    .photo {
        padding: 10px 0;
    }

    .imgR {
        float: none;
        text-align: center;
    }

    .imgR img {
        width: 60%;
    }

    .photo span {
        display: none;
    }

    .photo p {
        margin-top: 10px;
        text-align: center;
    }
}

/*===|Button (contents.css + GEM MODIFIED)|===*/
.btn_area {
    margin: 30px 0 0 30px;
}

.btn_type01 {
    color: #FFF;
    font-size: 15px;
    font-weight: bold;
    background: #333;
    padding: 12px 40px;
    /* パディング調整 */
    border-radius: 50px;
    /* (SMBC) ピル形状 */
    transition: all 0.3s ease;
    /* (CyberAgent) アニメーション */
    text-decoration: none;
}

.btn_type01:hover {
    color: #FFF;
    background: #CC0033;
    transform: scale(1.05);
    /* (CyberAgent) ホバー */
    box-shadow: 0 4px 10px rgba(204, 0, 51, 0.3);
}

.btn_type01>i {
    padding-right: 7px;
}

@media (max-width: 1000px) {
    .btn_area {
        margin: 20px 0 30px 0;
        text-align: center;
    }
}

/*===|Button (contents.css + GEM MODIFIED)|===*/
.btn_container {
    width: 100%;
}

.btn_container a {
    text-decoration: none;
}

.custom-button {
    display: flex;
    flex-grow: 1;
    width: 100%;
    align-items: center;
    gap: 10px;
    padding: 20px 0 20px 20px;
    border: none;
    border-radius: 8px;
    /* (SMBC) 角丸 */
    background-color: #444;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    /* (CyberAgent) アニメーション */
}

.custom-button:hover {
    background-color: #CC0033;
    transform: scale(1.02);
    box-shadow: 0 4px 10px rgba(204, 0, 51, 0.3);
}

.custom-button .icon::after {
    font-family: "Font Awesome 5 Free";
    /* FontAwesome 5/6対応 */
    font-weight: 900;
    content: '\f054';
    display: flex;
    align-items: center;
}

.custom-button .right {
    margin-left: auto;
    padding-right: 30px;
    font-size: 30px;
}

@media (max-width: 1000px) {
    .custom-button {
        font-size: 15px;
    }

    .custom-button .right {
        padding-right: 50px;
        font-size: 25px;
    }
}

/*===|Overview (contents.css + GEM MODIFIED)|===*/
/* (GEM) 概要テーブルのデザイン刷新 (SMBC/京葉銀行風) */
.overview table {
    width: 100%;
    margin-bottom: 1em;
    border-collapse: separate;
    border-spacing: 0 8px;
    /* 行間にスペース */
    border: none;
    border-radius: 0;
    /* 親の角丸をリセット */
    box-shadow: none;
    /* (GEM) 汎用テーブルの影をリセット */
}

.overview th {
    width: 20%;
    border: none;
    border-right: 3px solid #CC0033;
    /* (京葉銀行風) アクセント */
    font-weight: bold;
    background: Transparent;
    padding: 15px;
    text-align: left;
    vertical-align: top;
    border-bottom: none;
    /* (GEM) 汎用テーブルの下線をリセット */
    /* (GEM) 汎用スタイルリセット */
    font-size: inherit;
    text-transform: none;
    letter-spacing: inherit;
}

.overview td {
    padding: 15px;
    text-align: left;
    border: none;
    background: #f9f9f9;
    border-radius: 0 8px 8px 0;
    /* (SMBC) 角丸 */
    border-bottom: none;
    /* (GEM) 汎用テーブルの下線をリセット */
}

.overview tbody tr:nth-child(odd) td {
    background-color: #f9f9f9;
    /* (GEM) ストライプをリセット（元の色を維持） */
}

.overview tbody tr:hover {
    background-color: transparent;
    /* (GEM) ホバーエフェクトをリセット */
}


.overview td>img.mail {
    height: 15px;
    padding: 5px 0;
}

@media (max-width: 1000px) {
    .overview th {
        width: 100%;
        border-right: none;
        border-bottom: 3px solid #CC0033;
        /* SPでは下線 */
        display: block;
        text-align: left;
        padding: 10px;
        border-radius: 8px 8px 0 0;
        background: #f9f9f9;
    }

    .overview td {
        display: block;
        width: auto;
        padding: 10px;
        border-radius: 0 0 8px 8px;
        /* (SMBC) 角丸 */
        margin-bottom: 10px;
    }
}

/*===|accordion box (contents.css + GEM MODIFIED)|===*/
.accordion .toggle {
    display: none;
}

.accordion .Label {
    padding: 1em;
    display: block;
    color: #fff;
    background: #CC0033;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    /* (SMBC) 角丸 */
    cursor: pointer;
    transition: all 0.3s ease;
    /* (CyberAgent) アニメーション */
    position: relative;
    /* 疑似要素の配置基準 */
}

.accordion .Label:hover {
    background: #EA1C16;
}

.accordion .Label::before {
    content: "";
    width: 8px;
    /* サイズ調整 */
    height: 8px;
    /* サイズ調整 */
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 4px);
    /* 中央寄せ調整 */
    right: 20px;
    transform: rotate(135deg);
    transition: transform 0.3s ease;
    /* (CyberAgent) アイコンのアニメーション */
}

.accordion .Label,
.content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
}

.accordion .content {
    height: 0;
    margin-bottom: 0;
    padding: 0 10px;
    overflow: hidden;
    background: #fdfdfd;
    border-radius: 0 0 8px 8px;
    box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.05);
    /* 内側に影 */
}

.accordion .toggle:checked+.Label {
    border-radius: 8px 8px 0 0;
    /* 開いたときは下部の角丸をなくす */
}

.accordion .toggle:checked+.Label+.content {
    height: auto;
    padding: 20px;
    /* 開いたときのパディング */
    transition: all .3s;
    margin-bottom: 10px;
}

.accordion .toggle:checked+.Label::before {
    transform: rotate(-45deg) !important;
}

/* (GEM) Google Mapのiframeに角丸を適用 */
iframe {
    border-radius: 12px;
    border: 1px solid #ddd;
}