/* ================================================= *
 *        	maintenance
 * ================================================= */

#bankin {
    /* 375pxで14px、768pxで16pxになる計算式 */
    --fluid-font-size: calc(14px + (16 - 14) * ((100vw - 375px) / (768 - 375)));
}

/* 768px以上はフォントサイズを固定 */
@media (min-width: 768px) {
    #bankin {
        --fluid-font-size: 16px;
    }
}

/* 375px以下はフォントサイズを固定 */
@media (max-width: 375px) {
    #bankin {
        --fluid-font-size: 14px;
    }
}

#maintenance h1 {
    border-bottom: 45px solid #06ad70;
}

#maintenance ul.ttl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#maintenance ul.ttl li {
    background-color: rgba(6, 173, 112, 0.4);
}

#maintenance ul.ttl li.on,
#maintenance ul.ttl li:hover {
    background-color: #06ad70;
}

#maintenance ul.ttl li:first-of-type {
    margin-right: 10px;
}

#maintenance ul.ttl li:nth-of-type(2) {
    margin-right: 10px;
    margin-left: 10px;
}

#maintenance ul.ttl li:last-of-type {
    margin-left: 10px;
}

#maintenance .menu_content {
    padding: 40px 15px 0px;
}

#maintenance img {
    vertical-align: bottom;
}

#maintenance img.main {
    margin: 5px;
}

#maintenance #mainte .main_text {
    padding: 20px 0;
}

#maintenance #mainte #mainte__title {   
    font-size: 3rem;
    font-weight: bold;
    margin: 10px auto;
}

#maintenance #mainte ul.list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: space-around;
    -ms-flex-pack: space-around;
    justify-content: space-around;
    max-width: 750px;
    margin: 20px auto;
}

#maintenance #mainte ul.list li {
    width: 48%;
    padding: 1%;
}

#maintenance #mainte ul.list li img {
    width: 100%;
}

@media only screen and (max-width: 480px) {
    #maintenance #mainte ul.list li {
        width: 45%;
    }
}

@media only screen and (max-width: 768px) {
    #maintenance h1 {
        border-bottom: 20px solid #06ad70;
    }
}

.disnon {
    display: none;
}

#slidershow {
    display: none;
}


/* ------------------------------------
 *        	point
------------------------------------ */
.point_ttl {
    margin-bottom: 40px;
    font-size: calc(var(--fluid-font-size) * 2.5);
    font-weight: bold;
    background: #06ad70;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

@media (max-width: 768px) {
    .point_ttl {
        flex-direction: column;
        font-size: calc(var(--fluid-font-size) * 2.2);
        padding: 5px 0;
        gap: 2px;
    }
}

.point_ttl .ttl_point {
    /* margin-left: 0.5em; */
    display: flex;
    align-items: center;
}

.point_list {
    padding: 0 4%;
}

@media (max-width: 768px) {
    .point_ttl .ttl_point {
        margin-left: 0;
    }
}

.point_ttl .big {
    font-size: calc(var(--fluid-font-size) * 3.4375);
}

.point_item {
    position: relative;
    margin-bottom: 45px;
    border: 3px solid #06ad70;
    text-align: left;
}

.point_item:not(:last-of-type)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -35px;
    left: 0;
    width: 0px;
    height: 0px;
    margin: auto;
    border-style: solid;
    border-color: #003d92 transparent transparent transparent;
    border-width: 24px 25px 0 25px;
}

.point_item_ttl {
    background-color: #fff;
    color: #4d4d4d;
    font-size: calc(var(--fluid-font-size) * 1.4);
    font-weight: bold;
}


.point_item_ttl .main {
    background-color: #ed8614;
    color: #fff;
    display: flex;
}

@media (max-width: 768px) {
    .point_item_ttl {
        padding: 0;
    }

    .point_item_ttl .main {
        flex-direction: column;
        align-items: center;
        padding: 5px 0;
        background-color: #fff;
    }

    .point_item_ttl .text {
        background-color: #ed8614;
        padding: 5px;
        width: 100%;
        text-align: center;
    }
}

.point_item_ttl .text {
    display: flex;
    align-items: baseline;
}

@media (max-width: 768px) {
    .point_item_ttl .text {
        flex-direction: column;
        align-items: center;
        margin: auto;
    }
}

.point_item_ttl .number {
    display: inline-block;
    margin-right: 0.5rem;
    padding: 0rem 2.5rem 0.5rem 1rem;
    background-color: #06ad70;
    -webkit-clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
    font-size: calc(var(--fluid-font-size) * 1.8);
}

@media (max-width: 768px) {
    .point_item_ttl .number {    
        font-size: calc(var(--fluid-font-size) * 1.5);
        margin: 5px auto 8px;
    }
}
.point_item_ttl .point {
    color: yellow;
    font-size: calc(var(--fluid-font-size) * 1.6);
    padding-left: 5px;
}

@media (max-width: 768px) {
    .point_item_ttl .point {
        padding-left: unset;
    }
}

.point_item_data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px 15px 10px;
    align-items: center;
}

@media (max-width: 768px) {
    .point_item_data {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 3%;
        justify-content: center;
    }
}

.point_item_icon {
    width: 110px;
    margin: 25px 25px 0;
}

@media (max-width: 768px) {
    .point_item_icon {
        width: 30%;
        margin: 0 8% 0 2%;
    }

    .point_item_icon img {
        width: 100%;
    }
}

.point_item_txt {
    width: 70%;
    color: #040000;
    font-size: calc(var(--fluid-font-size) * 1.0625);
    line-height: 1.8;
    font-weight: 500;
    line-height: unset;
    align-self: flex-start;
}

.point_item_txt .red {
    color: red;
}

.point_item_txt .list-item {
    display: flex;
    align-items: baseline;
    margin-bottom: 8px;
}

.point_item_txt .list-marker {
    margin-right: 0.5em;
}

@media (max-width: 768px) {
    .point_item_txt {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        max-width: 100%;
        width: 100%;
    }
}

.point_item_txt .note {
    display: block;
    margin-top: 1.0em;
}

.point_item_img {
    width: 25%;
    margin-left: 25px;
}

@media (max-width: 768px) {
    .point_item_img {
        width: 60%;
        margin-left: 0;
        margin-bottom: 5px;
    }
}

.point_item_btn {
    position: relative;
    display: block;
    max-width: 358px;
    margin-top: 1.0em;
    padding: 0.4rem;
    border-radius: 3px;
    background-color: #0a6bcb;
    color: #fff;
    font-size: calc(var(--fluid-font-size) * 1.25);
    text-align: center;
}

.point_item_btn::after {
    content: "▶︎";
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 1.3rem;
}

/* お客様の声セクション全体 */
.voices-section {
    background-color: #fffbef;
    /* 背景のクリーム色 */
    padding: 30px 20px;
}

.section-title {
    text-align: center;
    font-size: calc(var(--fluid-font-size) * 1.25);
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 30px;
}

/* カードを囲むコンテナ */
.voices-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    /* カード間の余白 */
}

/* お客様の声カード */
.voice-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 10px 25px;
    display: flex;
    align-items: center;
    gap: 25px;
    border: 5px solid #06ad70;
}

.voice-avatar {
    width: 80px;
    height: 80px;
    border-radius: 10%;
    /* アバターを円形に */
    flex-shrink: 0;
    /* アバターが縮まないようにする */
}

.voice-text {
    margin: 0;
    line-height: 1.7;
    font-size: calc(var(--fluid-font-size) * 1.125);
    text-align: left;
}

/* スマートフォン向けのスタイル */
@media (max-width: 480px) {
    .voice-card {
        flex-direction: column;
        /* 縦並びに変更 */
        text-align: center;
    }
}
