@charset "utf-8";

/* reset
------------------------------------------------------------------- */
/* A Modern CSS Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0
}

ul[role="list"],
ol[role="list"] {
    list-style: none
}

html:focus-within {
    scroll-behavior: smooth
}

body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
}

a:not([class]) {
    text-decoration-skip-ink: auto;
}

img,
picture {
    max-width: 100%;
    display: block;
}

input,
button,
textarea,
select {
    font: inherit;
}

@media(prefers-reduced-motion:reduce) {
    html:focus-within {
        scroll-behavior: auto
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important
    }
}

img {
    vertical-align: middle;
}

h1,
h2,
h3,
h4 {
    font-weight: normal;
}

a {
    color: inherit;
}

/* 全体構造
------------------------------------------------------------------- */
html {
    font-size: 62.5%;
    /* font-size 1em = 10px on default browser settings */
    font-weight: 400;
    color: #333333;
    background-color: #FFFFFF;
}

body {
    font-family: 'Noto Sans JP', "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.6rem;
    line-height: 1.6;
}

@media screen and (max-width:940px) {
    .container {
        margin-left: 20px;
        margin-right: 20px;
    }
}

a img {
    transition: 0.3s ease-in-out;
}

a:hover img {
    opacity: 0.8;
    filter: alpha(opacity=80);
    transition: 0.3s ease-in-out;
}

@media screen and (max-width:1100px) {}

@media screen and (max-width:767px) {}

@media screen and (max-width: 559px) {}

/* メイン
------------------------------------------------------------------- */
.keyimage {
    max-width: 1800px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.keyimage h1 {
    width: 40%;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo-box {
    display: flex;
    margin: 30px 0 60px 0;
}

@media screen and (max-width:600px) {
    .logo-box {
        margin: 15px 0 40px 0;
    }
}

.logo-box div {
    width: 50%;
    padding: 10px;
}

.logo-box img {
    max-width: 330px;
    width: 100%;
    margin: 0 auto;
}

.main-box {
    margin-bottom: 60px;
}

.main-text {
    font-size: 2.0rem;
    line-height: 2;
    font-family: 'Noto Serif JP', serif;
}

.main-text p {
    margin-bottom: 1em;
}

.main-name {
    font-size: 1.5rem;
    font-family: 'Noto Serif JP', serif;
    display: flex;
    justify-content: flex-end;
}

.main-name .main-name-text {
    text-align: right;
    display: block;
    margin-bottom: 0.5em;
}

.main-name .main-name-text {
    font-size: 2.0rem;
}

@media screen and (max-width:767px) {

    .main-text,
    .main-name .main-name-text {
        font-size: 1.6rem;
    }
}

.image-box {
    background: #E9EFF4;
    width: 100%;
    padding-top: 2%;
}

.image-box figure {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.sitelink-wrapper {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.sitelink-wrapper::before {
    content: '';
    display: inline-block;
    width: 98px;
    height: 143px;
    background-image: url(/gappei/img/character_82bank.png);
    background-size: contain;
    top: 40px;
    left: 10px;
    position: absolute;
}

.sitelink-wrapper::after {
    content: '';
    display: inline-block;
    width: 98px;
    height: 143px;
    background-image: url(/gappei/img/character_naganobank.png);
    background-size: contain;
    top: 40px;
    right: 10px;
    position: absolute;
}

.sitelink-box {
    font-size: 1.6rem;
    line-height: 1.5;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 80px 130px;
}

/* 2022-0152(20240828) 追加 */
.sitelink-normal {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.sitelink-box2 {
    font-size: 1.6rem;
    line-height: 1.5;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0px 130px 10px;
}

.sitelink-button2 {
    width: 47%;
    margin: auto;
}

/* 2022-0152(20240828) 追加 */

.sitelink-button {
    width: 47%;
}

@media screen and (max-width:767px) {
    .sitelink-box {
        display: block;
        padding: 60px 130px;
    }
    .sitelink-button {
        width: 100%;
    }
/* 2022-0152(20240828) 追加 */
    .sitelink-box2 {
        display: block;
        padding: 0px 130px 60px;
    }
    .sitelink-button2 {
        width: 100%;
    }
/* 2022-0152(20240828) 追加 */
}

@media screen and (max-width:600px) {
    .sitelink-box {
        padding: 40px 77px;
    }
    
/* 2022-0152(20240828) 追加 */
    .sitelink-box2 {
        padding: 0px 77px 40px;
    }
/* 2022-0152(20240828) 追加 */

    .sitelink-wrapper::before {
        width: 70px;
        height: 102px;
        top: 20px;
        left: 3px;
    }

    .sitelink-wrapper::after {
        width: 70px;
        height: 102px;
        top: 80px;
        right: 3px;
    }
}

.sitelink-button a {
    color: #000;
    text-decoration: none;
    text-align: center;
    background: #FFF;
    border: 1px solid #D3D3D3;
    border-radius: 5px;
    display: block;
    position: relative;
    padding: 12px 34px 12px 12px;
    margin-bottom: 15px;
    transition: 0.3s ease-in-out;
    box-shadow: 2px 2px #8E8E8E;
}

.sitelink-button a::after {
    content: " ";
    position: absolute;
    width: 8px;
    height: 8px;
    border-top: 2px solid #D90000;
    border-right: 2px solid #D90000;
    margin-top: -4px;
    top: 50%;
    right: 20px;
    transform: rotate(45deg);
}

.sitelink-button a:hover {
    color: #D90000;
}

/* 2022-0152(20240828) 追加 */
.sitelink-button2 a {
    color: #000;
    text-decoration: none;
    text-align: center;
    background: #FFF;
    border: 1px solid #D3D3D3;
    border-radius: 5px;
    display: block;
    position: relative;
    padding: 12px 34px 12px 12px;
    margin-bottom: 15px;
    transition: 0.3s ease-in-out;
    box-shadow: 2px 2px #8E8E8E;
}

.sitelink-button2 a::after {
    content: " ";
    position: absolute;
    width: 8px;
    height: 8px;
    border-top: 2px solid #D90000;
    border-right: 2px solid #D90000;
    margin-top: -4px;
    top: 50%;
    right: 20px;
    transform: rotate(45deg);
}

.sitelink-button2 a:hover {
    color: #D90000;
}
/* 2022-0152(20240828) 追加 */

.link-box-wrapper {
    background: #696969;
    width: 100%;
    padding: 40px 20px;
}

.link-box {
    font-size: 1.6rem;
    line-height: 1.5;
    max-width: 520px;
    margin: 0 auto;
}

@media screen and (max-width:767px) {

    .sitelink-box,
    .link-box {
        font-size: 1.4rem;
    }
}

.link-text {
    text-align: center;
    margin-bottom: 30px;
}

.link-text a {
    color: #FFF;
    transition: color 0.3s, text-decoration 0.3s;
}

.link-text a:hover {
    text-decoration-color: transparent;
}

.link-button a {
    color: #FFF;
    text-decoration: none;
    width: 100%;
    border: 1px solid #FFFFFF;
    border-radius: 5px;
    display: block;
    position: relative;
    padding: 12px 34px 12px 12px;
    margin-bottom: 15px;
    transition: 0.3s ease-in-out;
}

.link-button a::after {
    content: " ";
    position: absolute;
    width: 8px;
    height: 8px;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    margin-top: -4px;
    top: 50%;
    right: 20px;
    transform: rotate(45deg);
}

.link-button a:hover {
    color: #000000;
    background: #FFF;
}

.link-button a:hover::after {
    border-top: 2px solid #696969;
    border-right: 2px solid #696969;
}

.link-button span {
    display: inline-block;
}

/* 231211追加 */
.flex {
    display: flex;
}

.logo-box {
    justify-content: center;
    margin: 60px 0;
}

.logo-box div {
    width: 100%;
    max-width: 600px;
}

.logo-box img {
    max-width: initial;
}

/* リンクエリア */
.link_area {
    background-color: #F7F7F7;
    padding: 30px 70px;
    margin-bottom: 64px;
}

.link_area .flex {
    flex-wrap: wrap;
}

.link_area ul li {
    width: 50%;
    font-weight: bold;
}
/* 2022-0152(20240828) 変更 */
.link_area ul li:nth-child(n+6) {
    margin-top: 1em;
}

.link_area ul li a {
    color: #333;
}

/* お知らせ */
.notice {
    font-family: 'Noto Serif JP', serif;
}

.notice h2 {
    font-size: 3rem;
    text-align: center;
    background-color: #F0FCF9;
    padding: 10px;
    margin-bottom: 48px;
}

.notice .attention {
    margin-top: 0.9em;
    font-size: 0.9em;
}

.notice .anker_link {
    margin-bottom: 104px;
}

.notice .anker_link .flex {
    max-width: 784px;
    justify-content: space-between;
    margin: auto;
}

.notice .anker_link ul li {
    width: calc(50% - 12px);
    text-align: center;
    border: 1px solid #333;
    border-bottom: 2px solid #333;
    box-sizing: border-box;

}

.notice .anker_link ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: #333;
    text-decoration: none;
    padding: 15px;
}

.notice .anker_link ul li a::before,
.notice .anker_link ul li a::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 9px solid transparent;
    border-left: 9px solid transparent;
    border-top: 11px solid #333;
    border-bottom: 0;
}

.notice .anker_link ul li a::before {
    margin-right: 1em;
}

.notice .anker_link ul li a::after {
    margin-left: 1em;
}

.notice .anker_link ul li a:hover {
    opacity: 0.7;
}

/* 2022-0152(20240828) 追加 */
.notice h3.menu {
    border-bottom: 3px solid #31BCB1;
    margin-top: 2em;
    margin-bottom: 1em;
    display: block;
    padding: 0 1em;
    font-size: 1.3em;
}

.notice .notice_list {
    padding-left: 1.5em;
    list-style: none;
}
.notice .notice_list li{
    position: relative;
    font-size: 0.9em;
}
.notice .notice_list li::before{
    position: absolute;
    top: 0.7em;
    left: -0.7em;
    transform: rotate(-45deg);
    width: .4em;
    height: .4em;
    content: "";
    border-bottom: 2px solid #111;
    border-right: 2px solid #111;
}

.plaza_list{
    padding-left: 1.5em;
    list-style: none;
}
.plaza_list li{
    position: relative;
}
.plaza_list li::before{
    position: absolute;
    top: 0.9em;
    left: -1em;
    transform: translateY(-50%);
    width: 0px;
    height: 0px;
    border: 0.4em solid transparent;
    border-left:0.6em solid #111111;
    content: "";
}

/* ご挨拶 */
.greeting_list {
    margin-bottom: 20px;
}

.greeting_list:last-child {
    margin-bottom: 0;
}

.greeting_title {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1em;
    border: 1px solid #333;
    border-radius: 4px;
    margin: 10px 80px;
}

.greeting_title .open {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.greeting_title .open::before {
    content: "";
    display: block;
    width: 15px;
    height: 8px;
    background: url(/gappei/img/arrow.png) no-repeat;
        background-size: auto;
    background-size: cover;
    margin-right: 15px;
    transform: scale(-1);
}

.greeting_close {
    font-family: 'Noto Sans JP', "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    cursor: pointer;
    margin-top: 60px;
}

.greeting_close span {
    display: flex;
    justify-content: center;
    align-items: center;
}

.greeting_close span::before {
    content: "";
    display: block;
    width: 15px;
    height: 8px;
    background: url(/gappei/img/arrow.png) no-repeat;
    background-size: cover;
    margin-right: 15px;
}

/* 合併に関するニュースリリース */
.release {
    margin-bottom: 2em;
}

.release dl{
    display: flex;
    border-bottom: dotted 1px #aaa;
    padding-top: 5px;
}

.release .release_list dt{
    width: 130px;
    margin-left: 2em;
}

.release .release_list dd{
    padding-left: 1.5em;
    margin-bottom: 0.5em;
}


/* お取引に関するご案内 */
.information {
    margin-bottom: 2em;
}

.information .information_list{
    padding-left: 1.5em;
}
.information .information_list li{
    position: relative;
}
.information .information_list li::before{
    position: absolute;
    top: 0.9em;
    left: -1em;
    transform: translateY(-50%);
    width: 0px;
    height: 0px;
    border: 0.4em solid transparent;
    border-left:0.6em solid #111111;
    content: "";
}

/* 2022-0152(20240828) 追加 */

.merger_title {
    font-size: 2.6rem;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 231218 追加 */
.merger_text {
    margin-top: 5px;
    font-size: 1.7rem;
    text-align: center;
}
.merger_text2 {
    margin-top: -55px;
    font-size: 1.7rem;
    text-align: center;
    margin-bottom: 34px;
}

.merger_title::before,
.merger_title::after {
    content: "";
    display: block;
/*    width: 15vw;	*/
	width: 12vw;
    height: 1px;
    max-width: 190px;
    background-color: #333;
}

/* 合併リスト */
.list_box .list_item {
    width: calc(50% - 15px);
}

.list_box .list_item:nth-child(n+3) {
    margin-top: 50px;
}

.list_box .list_item .subject {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    background-color: #31BCB1;
    text-align: center;
    padding: 10px;
}

.list_box .list_item .content {
    background-color: #fff;
    text-align: center;
    box-shadow: 0px 1px 0px 1px #EFEFEF;
    border-bottom: 1px solid #333;
    padding: 10px 0 15px;
    height: 90%;
}

.list_box .list_item .content h4 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.list_box .list_item .content .content_list dt {
    min-width: 97px;
    background-color: #EFEFEF;
    padding: 10px;
}

.list_box .list_item .content .content_list dd {
    width: 100%;
    border-top: 1px solid #EFEFEF;
    text-align: left;
    padding: 10px 20px;
}

.list_box .list_item .content .content_list:last-of-type dt {
    border-top: 1px solid #fff;
}

.list_box .list_item .content .content_list:last-of-type dd {
    border-bottom: 1px solid #EFEFEF;
}

#before_merger {
    margin-bottom: 104px;
}

/* 2022-0152(20240828) 変更 */
#before_merger .list_box {
    background-color: #F7F7F7;
    padding: 60px 30px;
    margin-top: 0px;
    flex-wrap: wrap;
    justify-content: space-between;
}

#before_merger .list_box .list_item .map {
    margin: 30px 30px 20px;
    cursor: pointer;
    position: relative;
}

#before_merger .map_btn {
    display: block;
    max-width: 220px;
    color: #31BCB1;
    background-color: #F0FCF9;
    border: 1px solid #31BCB1;
    border-radius: 999px;
    font-family: initial;
    text-decoration: none;
    padding: 5px 0;
    margin: 15px auto 0;
    position: relative;
}

#before_merger .map_btn:hover {
    opacity: 0.7;
}

#before_merger .map_btn::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 8px solid #31bcb1;
    border-right: 0;
    position: absolute;
    top: 30%;
    right: 12px;
}

/* 2022-0152(20240828) 追加 */
#before_merger .area_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 2.4rem;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 15px 40px;
}

#before_merger .area_content {
    background-color: #F7F7F7;
    padding: 50px 30px;
    flex-wrap: wrap;
    justify-content: space-between;
}

#before_merger .finished_list {
    margin-bottom: 20px;
}

#before_merger .finished_list:last-child {
    margin-bottom: 0;
}

#before_merger .finished_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 2.4rem;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 15px 40px;
}

#before_merger .finished_title .open {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

#before_merger .finished_title .open::before,
#before_merger .finished_title .open::after {
    content: "";
    display: block;
    width: 25px;
    height: 2px;
    background-color: #333;
}

#before_merger .finished_title .open::before {
    position: relative;
}

#before_merger .finished_title .open::after {
    position: absolute;
    transform: rotate(90deg);
    transition: .5s;
}

#before_merger .finished_title .open.clicked::after {
    transform: rotate(0deg);
    transition: .5s;
}

#before_merger .finished_close {
    font-family: 'Noto Sans JP', "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    cursor: pointer;
    margin-top: 60px;
}

#before_merger .finished_close span {
    display: flex;
    justify-content: center;
    align-items: center;
}

#before_merger .finished_close span::before {
    content: "";
    display: block;
    width: 15px;
    height: 8px;
    background: url(/gappei/img/arrow.png) no-repeat;
    background-size: cover;
    margin-right: 15px;
}

/* 2022-0152(20240828) 追加 */

#after_merger .area_list {
    margin-bottom: 20px;
}

#after_merger .area_list:last-child {
    margin-bottom: 0;
}

#after_merger .area_content {
    background-color: #F0FCF9;
    padding: 50px 30px;
    flex-wrap: wrap;
    justify-content: space-between;
}

#after_merger .merger_title {
    margin-bottom: 64px;
}

#after_merger .area_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 2.4rem;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 15px 40px;
}

#after_merger .area_title .open {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

#after_merger .area_title .open::before,
#after_merger .area_title .open::after {
    content: "";
    display: block;
    width: 25px;
    height: 2px;
    background-color: #333;
}

#after_merger .area_title .open::before {
    position: relative;
}

#after_merger .area_title .open::after {
    position: absolute;
    transform: rotate(90deg);
    transition: .5s;
}

#after_merger .area_title .open.clicked::after {
    transform: rotate(0deg);
    transition: .5s;
}

#after_merger .city {
    font-size: 2.4rem;
    color: #113E0C;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

#after_merger .city:nth-of-type(n+2) {
    margin-top: 50px;
}

#after_merger .city::after {
    content: "";
    display: inline-block;
    width: 85%;
    height: 1px;
    background-color: #113E0C;
}

#after_merger .list_box {
    flex-wrap: wrap;
    justify-content: space-between;
}

#after_merger .list_box .list_item .map {
    margin: 30px 30px 20px;
    cursor: pointer;
    position: relative;
}

.oneColumn.aC {
    margin-top: 100px;
}

/* 231214 追加 */
.area_content .area_close {
    font-family: 'Noto Sans JP', "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    cursor: pointer;
    margin-top: 60px;
}

.area_content .area_close span {
    display: flex;
    justify-content: center;
    align-items: center;
}

.area_content .area_close span::before {
    content: "";
    display: block;
    width: 15px;
    height: 8px;
    background: url(/gappei/img/arrow.png) no-repeat;
    background-size: cover;
    margin-right: 15px;
}

.expansion_box {
    width: 30px;
    height: 30px;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 3px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;

}

.expansion_box .expansion {
    max-width: 15px;
}

.link-box-wrapper .flex {
    justify-content: space-between;
}

.link-box-wrapper .flex .link-text a {
    font-size: 1.6rem;
}

/* 2025-0006(20250430) 追加 */
#before_atm {
    margin-bottom: 104px;
}

#before_atm .list_box {
    background-color: #F7F7F7;
    padding: 60px 30px;
    margin-top: 0px;
    flex-wrap: wrap;
    justify-content: space-between;
}

#before_atm .list_box .list_item .map {
    margin: 30px 30px 20px;
    cursor: pointer;
    position: relative;
}

#before_atm .map_btn {
    display: block;
    max-width: 220px;
    color: #31BCB1;
    background-color: #F0FCF9;
    border: 1px solid #31BCB1;
    border-radius: 999px;
    font-family: initial;
    text-decoration: none;
    padding: 5px 0;
    margin: 15px auto 0;
    position: relative;
}

#before_atm .map_btn:hover {
    opacity: 0.7;
}

#before_atm .map_btn::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 8px solid #31bcb1;
    border-right: 0;
    position: absolute;
    top: 30%;
    right: 12px;
}

#before_atm .area_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 2.4rem;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 15px 40px;
}

#before_atm .area_content {
    background-color: #F0FCF9;
    padding: 50px 30px;
    flex-wrap: wrap;
    justify-content: space-between;
}

#before_atm .finished_list {
    margin-bottom: 20px;
}

#before_atm .finished_list:last-child {
    margin-bottom: 0;
}

#before_atm .finished_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 2.4rem;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 15px 40px;
}

#before_atm .finished_title .open {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

#before_atm .finished_title .open::before,
#before_atm .finished_title .open::after {
    content: "";
    display: block;
    width: 25px;
    height: 2px;
    background-color: #333;
}

#before_atm .finished_title .open::before {
    position: relative;
}

#before_atm .finished_title .open::after {
    position: absolute;
    transform: rotate(90deg);
    transition: .5s;
}

#before_atm .finished_title .open.clicked::after {
    transform: rotate(0deg);
    transition: .5s;
}

#before_atm .finished_close {
    font-family: 'Noto Sans JP', "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    cursor: pointer;
    margin-top: 60px;
}

#before_atm .finished_close span {
    display: flex;
    justify-content: center;
    align-items: center;
}

#before_atm .finished_close span::before {
    content: "";
    display: block;
    width: 15px;
    height: 8px;
    background: url(/gappei/img/arrow.png) no-repeat;
    background-size: cover;
    margin-right: 15px;
}

#after_atm .area_list {
    margin-bottom: 20px;
}

#after_atm .area_list:last-child {
    margin-bottom: 0;
}

#after_atm .area_content {
    background-color: #F7F7F7;
    padding: 50px 30px;
    flex-wrap: wrap;
    justify-content: space-between;
}

#after_atm .atm_title {
    margin-bottom: 64px;
}

#after_atm .area_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 2.4rem;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 15px 40px;
}

#after_atm .area_title .open {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

#after_atm .area_title .open::before,
#after_atm .area_title .open::after {
    content: "";
    display: block;
    width: 25px;
    height: 2px;
    background-color: #333;
}

#after_atm .area_title .open::before {
    position: relative;
}

#after_atm .area_title .open::after {
    position: absolute;
    transform: rotate(90deg);
    transition: .5s;
}

#after_atm .area_title .open.clicked::after {
    transform: rotate(0deg);
    transition: .5s;
}

#after_atm .city {
    font-size: 2.4rem;
    color: #113E0C;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

#after_atm .city:nth-of-type(n+2) {
    margin-top: 50px;
}

#after_atm .city::after {
    content: "";
    display: inline-block;
    width: 85%;
    height: 1px;
    background-color: #113E0C;
}

#after_atm .list_box {
    flex-wrap: wrap;
    justify-content: space-between;
}

#after_atm .list_box .list_item .map {
    margin: 30px 30px 20px;
    cursor: pointer;
    position: relative;
}

/* table */
.table_atm {
	width: 100%;
	text-align: center;
	border-collapse: collapse;
	border-spacing: 0;
	background: #FFFFFF;
}

.table_atm th {
	padding: 10px;
	background: #C6E0B4;
	border: solid 1px #808080;
}

.table_atm td {
	padding 10px;
	border: solid 1px #808080;
	vertical-align: middle;
}

.table_atm td.spot {
	text-align: left !important;
	padding-left: 0.5em;
}

.table_min {
	min-width: 500px;
}

/* noteNumList */
[class*="noteNumList"] {
	margin-top: 1.5em;
}

[class*="noteNumList"] > li {
	line-height: 1.5;
}

[class*="noteNumList"] > li:first-child {
	margin-top: 0;
}

.noteNumList01 {
	counter-reset: noteNumList01;
}

.noteNumList01.start02 { counter-reset: noteNumList01 1;}
.noteNumList01.start03 { counter-reset: noteNumList01 2;}
.noteNumList01.start04 { counter-reset: noteNumList01 3;}
.noteNumList01.start05 { counter-reset: noteNumList01 4;}
.noteNumList01.start06 { counter-reset: noteNumList01 5;}
.noteNumList01.start07 { counter-reset: noteNumList01 6;}
.noteNumList01.start08 { counter-reset: noteNumList01 7;}
.noteNumList01.start09 { counter-reset: noteNumList01 8;}
.noteNumList01.start10 { counter-reset: noteNumList01 9;}
.noteNumList01.start11 { counter-reset: noteNumList01 10;}

.noteNumList01 > li {
	margin-top: 0.2em;
  padding-left: 2.2em;
  text-indent: -2.2em;
	color: #777777;
}

.noteNumList01 > li > [class*="normalList"],
.noteNumList01 > li > [class*="numberList"] {
	margin-top: 0;
}

.noteNumList01 > li > [class*="normalList"] > li,
.noteNumList01 > li > [class*="iconLink"],
.noteNumList01 > li > [class*="btnLink"] {
	margin-top: 0.2em;
  text-indent: 0;
}

.noteNumList01 > li > [class*="numberList"] > li {
	margin-top: 0.2em;
}

.noteNumList01 > li:nth-child(n+10) {
  padding-left: 2.8em;
  text-indent: -2.8em;
}

.noteNumList01 > li:before {
	margin-right: 0.5em;
  counter-increment: noteNumList01;
  content: "※"counter(noteNumList01);
}

.noteNumList01.start02 { counter-reset: noteNumList01 1;}
.noteNumList01.start03 { counter-reset: noteNumList01 2;}
.noteNumList01.start04 { counter-reset: noteNumList01 3;}
.noteNumList01.start05 { counter-reset: noteNumList01 4;}
.noteNumList01.start06 { counter-reset: noteNumList01 5;}
.noteNumList01.start07 { counter-reset: noteNumList01 6;}
.noteNumList01.start08 { counter-reset: noteNumList01 7;}
.noteNumList01.start09 { counter-reset: noteNumList01 8;}
.noteNumList01.start10 { counter-reset: noteNumList01 9;}
.noteNumList01.start11 { counter-reset: noteNumList01 10;}
.noteNumList01 > li.value02:before {
  content: "※2";
}

.noteNumList01 > li.value03:before {
  content: "※3";
}

.noteNumList01 > li.value04:before {
  content: "※4";
}

/* common */

.pcElement {
	display: inline;
}

.spElement {
	display: none;
}

.aL {
	text-align: left !important;
}

.aC {
	text-align: center !important;
}

.aR {
	text-align: right !important;
}

.haishi {
	background: #D9D9D9;
}

@media screen and (max-width:767px) {
    .keyimage h1 {
        width: 70%;
    }

    .logo-box {
        margin: 30px 0;
    }

    .logo-box div {
        width: 64vw;
    }

    .link_area {
        padding: 40px 20px;
        margin-bottom: 48px;
    }

    .link_area .flex {
        display: block;
    }

    .link_area ul li {
        width: 100%;
    }

    .link_area ul li:nth-child(6) {
        margin-bottom: 1em;
    }

    .notice h2 {
        font-size: 2.4rem;
        margin-bottom: 32px;
    }

    .notice .anker_link {
        margin-bottom: 72px;
    }

    .notice .anker_link .flex {
        max-width: 90%;
        flex-direction: column;
    }

    .notice .anker_link ul li {
        width: 100%;
    }

    .notice .anker_link ul li:first-child {
        margin-bottom: 1em;
    }

    .notice .anker_link ul li a {
        padding: 10px;
    }

    .list_box .list_box {
        padding: 40px 20px;
        flex-direction: column;
    }

    .list_box .list_item {
        width: 100%;
    }

    .list_box .list_item:nth-child(n+2) {
        margin-top: 32px;
    }

    .list_box .list_item .content h4 {
        font-size: 1.6rem;
    }

    .list_box .list_item .content .content_list {
        font-size: 1.4rem;
    }

    .list_box .list_item .content .content_list dt {
        min-width: 67px;
        padding: 5px 10px;
    }

    .list_box .list_item .content .content_list dd {
        padding: 5px 10px;
    }

    .merger_title {
        font-size: 2rem;
        text-align: center;
    }
/* 2022-0152(20240828) 追加 */
    .release {
        margin-bottom: 2em;
    }
    .release dl{
        display: block;
    }

    .release .release_list dt{
        width: auto;
        margin-left: 1em;
    }

    .release .release_list dd{
        margin-left: 2em;
    }
    .information {
        margin-bottom: 2em;
    }
/* 2022-0152(20240828) 追加 */

/* 231218 追加 */
    .merger_text {
        font-size: 1.5rem;
        text-align: center;
        margin-top: 5px;
        margin-bottom: 24px;
    }
    .merger_text2 {
        font-size: 1.28rem;
        text-align: center;
        margin-top: -20px;
    }

    #before_merger {
        margin-bottom: 72px;
    }

    #before_merger .list_box {
        padding: 40px 20px;
        margin-top: 0;
    }

/* 2022-0152(20240828) 追加 */
    #before_merger .finished_title {
        font-size: 1.8rem;
        padding: 10px 20px;
    }

    #before_merger .finished_title .open {
        width: 20px;
        height: 20px;
    }

    #before_merger .finished_title .open::before,
    #before_merger .finished_title .open::after {
        width: 20px;
    }
/* 2022-0152(20240828) 追加 */

    #after_merger .merger_title {
        margin-bottom: 24px;
    }

    #after_merger .city {
        font-size: 1.8rem;
    }

    #after_merger .city::after {
        width: 75%;
    }

    #after_merger .area_title {
        font-size: 1.8rem;
        padding: 10px 20px;
    }

    #after_merger .area_title .open {
        width: 20px;
        height: 20px;
    }

    #after_merger .area_title .open::before,
    #after_merger .area_title .open::after {
        width: 20px;
    }

    #after_merger .area_content {
        padding: 40px 20px;
    }

    #after_merger .city:nth-of-type(n+2) {
        margin-top: 40px;
    }

    #after_merger .list_box .list_item .map {
        margin: 20px 20px 10px;
    }

    /* 231214 追加 */
    .area_content .area_close {
        margin-top: 50px;
    }

    .link-box-wrapper .flex {
        flex-direction: column;
    }
    
    .link-box-wrapper .flex .link-text a {
        font-size: 1.4rem;
    }
    
	/* 2025-0006 (20250430) 追加 */
    #before_atm {
        margin-bottom: 72px;
    }

    #before_atm .area_content {
        padding: 50px 10px;
    }

    #before_atm .list_box {
        padding: 40px 20px;
        margin-top: 0;
    }

    #before_atm .finished_title {
        font-size: 1.8rem;
        padding: 10px 20px;
    }

    #before_atm .finished_title .open {
        width: 20px;
        height: 20px;
    }

    #before_atm .finished_title .open::before,
    #before_atm .finished_title .open::after {
        width: 20px;
    }

    #after_atm .atm_title {
        margin-bottom: 24px;
    }

    #after_atm .city {
        font-size: 1.8rem;
    }

    #after_atm .city::after {
        width: 75%;
    }

    #after_atm .area_title {
        font-size: 1.8rem;
        padding: 10px 20px;
    }

    #after_atm .area_title .open {
        width: 20px;
        height: 20px;
    }

    #after_atm .area_title .open::before,
    #after_atm .area_title .open::after {
        width: 20px;
    }

    #after_atm .area_content {
        padding: 40px 10px;
    }

    #after_atm .city:nth-of-type(n+2) {
        margin-top: 40px;
    }

    #after_atm .list_box .list_item .map {
        margin: 20px 20px 10px;
    }
    
    .table_wrap {
        overflow-x: auto;
    }
    
    /* noteNumList */
	.noteNumList01 > li {
		margin-top: 0.2em;
	  padding-left: 2.1em;
	  text-indent: -2.1em;
		color: #777777;
	}
	
	.noteNumList01 > li:nth-child(n+10) {
	  padding-left: 2.7em;
	  text-indent: -2.7em;
	}
	
	/* common */
	.pcElement {
		display: none;
	}
	
	.spElement {
		display: inline;
	}

}

/* モーダル */
.modal_content,
.modal_overlay {
    display: none;
    position: fixed;
}

.modal_content.open,
.modal_overlay.open {
    display: block;
}

.modal_content {
    width: 90vw;
    max-width: 700px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 998;
}

.modal_content .img_box {
    position: relative;
}

.modal_content .btn_box {
    position: absolute;
    top: 10px;
    right: 10px;
}

.modal_content .close {
    display: block;
    width: 30px;
    height: 30px;
    background-color: #31BCB1;
    border-radius: 999px;
    cursor: pointer;
    z-index: 999;
    position: relative;
}

.modal_content .close::before,
.modal_content .close::after {
    content: "";
    display: block;
    width: 15px;
    height: 2px;
    background-color: #fff;
    position: absolute;
}

.modal_content .close::before {
    transform: translate(-50%) rotate(45deg);
    top: 50%;
    left: 50%;
}

.modal_content .close::after {
    transform: translate(-50%) rotate(-45deg);
    top: 50%;
    left: 50%;
}

.modal_overlay {
    width: 100%;
    height: 100%;
    background: grey;
    opacity: .6;
    top: 0;
    left: 0;
    right: 0;
    z-index: 997;
}