/* -----------------------------------------
style.css
----------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


/* ===================
common
=================== */

/* 見出し */
main {

    h2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 0;
        color: #143967;
        font-size: clamp(2.05rem, 5.33vw, 3.6rem);
        text-align: center;
    }
    h2::before {
        content: "";
        display: block;
        width: 46px;
        height: 60px;
        background-image: url(/contents/zenrin/images/h2_img.png);
    }
}

.zenrin_blk_bg {
    background-color: var(--light-background-color);
    background-image: url(/contents/zenrin/images/zenrin_blk_bg_img.png);
    background-size: contain;
}

.lead_txt {
    margin-bottom: 2rem;
    font-size: min(4.1vw, 1.77rem);
    font-weight: 700;
    line-height: 1.75;

    @media (min-width: 768px) {
        margin: 4rem auto;
    }

    @media (min-width: 1040px) {
            text-align: center;
    }
}

/* ===================
CTA
=================== */
.cta_blk {
    display: flex;
    justify-content: center;
    column-gap: 3.2rem;
    margin-top: min(10.6vw, 6.4rem);

    .button.button2 {
        background-color: #F05235;

        br { /*ダウンロードボタンを表示するときは消去*/
                display: none;
            }

        @media (min-width: 768px) {
            br {
                display: none;
            }
        }

        &:hover {
            background-color: var(--primary-color);
        }
    }

    p {
        flex: 1;
    }
}

/* ===================
header
=================== */
.header {
    display: flex;
    align-items: center;
    min-height: 6rem;

    p {
        margin: 0;
    }

    img {
        width: 11.7vw;
        min-width: 120px;
        max-width: 150px;
    }
}

#mainNav {

    li {
        padding: 0 2rem;

        a {
            color: #fff;
        }

        @media (min-width: 768px) {
            padding: 0;
        }
    }

    .header_nav_zenrin a {
        background-color: var(--primary-color);
    }

    .header_nav_line-inquiry a {
        background: #FFFFFF;
        border: solid 1px #000;
        color: #000;
        transition: .3s ease-in-out;

        &:hover {
            border-color: var(--primary-color);
            color: var(--white-text-color);
        }
    }

    .header_nav_admission a {
        background-color: #1643B6;
        background-image: url(/contents/zenrin/images/head-icon-entry.png);
        background-repeat: no-repeat;
        background-position: center left 10px;
        transition: .3s ease-in-out;
    }

}


/* ===================
footer
=================== */
.footMenu {
    a {
        position: relative;

        &::after {       
            position: absolute;
            left: 0;
            content: '';
            width: 100%;
            height: 1px;
            background: #fff;
            bottom: -2px;
            transform: scale(0, 1);
            transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
            transition: transform 0.3s;   /*変形の時間*/
        }
        &:hover::after {
            transform: scale(1, 1);
        }
    }
}

/* ===================
MV
=================== */
#mv {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-image: linear-gradient(to bottom, transparent 0%, transparent 70%, #8d9491 100%),url(/contents/zenrin/images/mv_img.png);
    background-size: auto 40lvh;
    background-position: right 1px top;
    background-repeat: no-repeat;
    align-items: center;

    @media (min-width: 768px) {
        background-image: url(/contents/zenrin/images/mv_img.png);
        justify-content: center;
        background-size: auto 100%;
        background-position: right top;
    }

    @media (min-width: 1366px) {  
        background-image: linear-gradient(to right, transparent 0%, transparent 93%, #8d9491 100%), url(/contents/zenrin/images/mv_img.png);
        background-position: right calc(50vw - 800px) top;
    }

    & > div {
        display: flex;
        flex-direction: column;
        row-gap: 2rem;
        margin: 0;
    }

    .mv_inner {
        max-width: 580px;
        margin: 0px;
        padding: 2rem;
        background-color: rgba(255, 255, 255, 0.8);
        border-radius: 1rem;
    }

    p {
        margin: 0;
        font-size: 1.4rem;
        font-weight: 700;
    }

    hgroup {
        p {
            font-weight: 400;
        }

        h1 {
            margin-bottom: 1rem;
            font-size: 3.2rem;
            line-height: 1.2;

            @media (min-width: 768px) {                
            font-size: min(4.6875vw, 4rem);

                br {
                    display: none;
                }
            }
        }

        @media (min-width: 768px) {        
            .button {
                max-width: 300px;
                max-height: 40px;
                font-size: 1.8rem;
            }
        }
    
    }
}

/* ===================
#zenrin_blk01
=================== */
#zenrin_blk01 {

    h2 {
        margin-top: -5.5rem;
    }

    .zenrin_blk01_list {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 4rem 0;

        li {
            text-align: center;

            p {
                margin: 0;
            }

            strong {
                color: var(--primary-color);
            }

            img {
                margin-bottom: 0.8rem;
            }
        }
    }   

    @media (min-width: 768px) {
        .zenrin_blk01_list {
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: center;

            li {
                width: 48%;
            }
        }
    }

    
    @media (min-width: 768px) {
        .zenrin_blk01_list {
            flex-wrap: nowrap;

            li {
                flex: 1;
            }
        }
            
    }

    h3 {
        margin-top: 6rem;
        padding: 2.6rem 0;
        background-color: var(--primary-color);
        border-radius: 1rem;
        color: #fff;
        font-size: min(6.4vw, 4rem);
        text-align: center;
        position: relative;

        span {
            font-size: 80%;
        }

        strong {
            display: inline-block;
            margin: 0 0.5rem;
            color: #EEFF00;
        }

        @media (min-width: 1024px) {
            br {
                display: none;
            }
        }
    }

    h3::before {
        content: url(/contents/zenrin/images/arrow_down_img.png);
        display: block;
        position: absolute;
        top: -28px;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
    }

    .movie_wrapper {
        display: flex;
        flex-direction: column;
        gap: min(4.246vw, 5.8rem);
        margin-bottom: clamp(4rem, 5.2vw, 6.4rem);

        iframe {
            width: 100%;
            aspect-ratio: 16 / 9;
        }
    }
 
    @media (min-width: 1024px) {
        .movie_wrapper {
            flex-direction: row;

            p {
                width: 55%;
            }

            .movie {
                width: 45%;
                border: solid 1px #707070;
            }
        }
    }

}
    

/* ===================
#zenrin_blk02
=================== */
#zenrin_blk02 {

    div:not(.cta_blk) {
        margin-top: 0;
    }

    /*カルーセル*/
    .splide {
        width: calc(100vw - 4rem);
        max-width: 1100px;
        margin-bottom: min(10vw, 6.4rem);
    }

    .splide__list {
        margin: 0;
        position: relative;
        counter-reset: slider 0;
    }

    .splide__list > li {
        background-color: #fff;
        border-radius: 1rem;
        overflow: hidden;
        position: relative;

        h3 {
            width: 100%;
            margin: 0;
            padding: 1.2rem 1rem 1.2rem calc(min(6.4vw, 3.6rem) + 2.4rem);
            background-color: var(--primary-color);
            border-top-right-radius: 1rem;
            border-top-left-radius: 1rem;
            color: #fff;
            font-size: min(4.3vw, 2.4rem);
        }

        figure {
            width: 100%;
            height:fit-content;
            margin: 0;
        }

        ul {
            margin: clamp(1.6rem, 2vw, 2.8rem);

            li {
                font-size: min(3.73vw, 1.6rem);
                margin-bottom: 1.6rem;
            }

            strong {
                display: block;
                font-size: min(4.266vw, 1.6rem);
            }
        }
    }

    @media (min-width: 768px) {
        .splide__list > li {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: 6rem 1fr;
            grid-column-gap: 0px;
            grid-row-gap: 0px;

            h3 {
                grid-area: 1 / 1 / 2 / 3;
                border-top-left-radius: 0;
            }
            
            figure {
                height: 100%;
                background-color: #fff;

                img {
                    height: 100%;
                    object-fit: cover;
                }
            }
        }
    }

    @media (min-width: 1024px) {
        .splide__list > li {
            display: grid;
            grid-template-columns: 46.7% 1fr;
            grid-template-rows: 60px 1fr;            

            h3 {
                grid-area: 1 / 2 / 2 / 3;
                padding-left: clamp(1.6rem, 2vw, 2.8rem);
            }

            figure {
                grid-area: 1 / 1 / 3 / 2; 
            }
        
            .splide__list > li li {
                grid-area: 2 / 2 / 3 / 3;
            }
        }
    }

    .splide__list > .splide__slide:not(.splide__slide--clone)::before {
        counter-increment: slider 1;
        content: counter(slider) " ";
        display: flex;
        align-items: center;
        justify-content: center;
        width: calc(min(6.4vw, 3.6rem) + 2.4rem);
        height: calc(min(6.4vw, 3.6rem) + 2.4rem);
        position: absolute;
        top: 0;
        left: 0;
        background-color: var(--primary-color);
        color: #EEFF00;
        font-family: 'Roboto', sans-serif;
        font-size: min(5.33vw, 4rem);
        font-weight: 900;
        line-height: calc(min(6.4vw, 3.6rem) + 2.4rem);
    }

    .splide__pagination.splide__pagination--ltr {
        display: flex;
        margin-top: 2.4rem;
        justify-content: center;
        gap: 2rem;     

        .splide__pagination__page {
            width: 20px;
            height: 20px;
            padding: 0;
            background-color: #ccc;
        }

        .splide__pagination__page.is-active {
            background-color: var(--primary-color);
        }
    }
}

.zenrin_blk02_inner {
    padding: clamp(2rem, 2.6vw, 4.8rem);
    background-color: #fff;
    border-radius: 1rem;
    position: relative;

    h3 {
        margin-top: 0;
        padding-bottom: 1rem;
        border-bottom: solid 1px #707070;
        color: #143967;
        font-size: clamp(2.4rem, 6.15vw, 3.2rem);
        line-height: 1.2;
        text-align: center;
    }

    ul {
        display: flex;
        flex-direction: column;
        gap: 2.4rem;
        margin-bottom: 2rem;

        li {

            p {
                padding: 1.6rem;
                background-color: #B0DDE3;
                border-radius: 1rem;
                position: relative;
            }

            p::after {
                content: "";
                display: block;
                height: 14px;
                width: 18px;
                background-color: #B0DDE3;
                clip-path: polygon(0 0, 100% 0, 50% 100%);
                position: absolute;
                bottom: 1px;
                left: 50%;
                translate: -50% 100%;
            }

            img {
                width: 90%;
                margin: 1.6rem auto 0;
            }
        }
    }

    > p {
        margin-bottom: 0;
        padding: 0.5rem;
        background-color: var(--primary-color);
        color: #EEFF00;
        font-size: min(4.8vw, 2.4rem);
        text-align: center;
    }

    @media (min-width: 768px) {
        h3 br {
            display: none;
        }

        ul {
            flex-direction: row;
            align-items: flex-end;

            li img {
                width: 100%;
            }
        }

        > p br {
            display: none;
        }
    }

    

    @media (min-width:1024px) {
        h3 {
            width: calc(calc(100% / 3) - 2.4rem);
            position: absolute;
            top: clamp(2rem, 2.6vw, 4rem);
            left: 50%;
            transform: translateX(-50%);
            -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
        }

        h3 br {
            display: block;
        }
    }
}

/* ===================
料金
=================== */

.priceFlow {
    display: block;
}

.priceFlow>dl {
    margin-bottom: 2rem;
    background-color: #FFFFFF;
    display: block;
    padding: 0 0 2rem;
    border: .5rem solid #1CABBB;
    border-radius: .4rem;
}

.priceFlow>dl:first-child {
    width: 100%;
    /* モバイルでは全体幅に */
    margin: 0 0 2rem 0;
    /* モバイルでの間隔 */
}

.priceFlow>dl:last-child {
    width: 100%;
    /* モバイルでは全体幅に */
}

.priceFlow>dl>dt {
    background-color: var(--primary-color);
    margin: 0 0 1.5rem;
    padding: 1.5rem;
    border-bottom: 5px solid var(--primary-color);
    color: #EEFF00;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
}

.priceFlow>dl>dd {
    margin-left: 0;
    text-align: center;

    p {
        margin: 0;
    }
}

.priceFlow>dl>dd .price p {
    width: 100%;
    margin-bottom: 0;
    color: #074E68;
    font-size: 2.4rem;
    /* デスクトップのデフォルトサイズだが、モバイルで調整がないためそのまま */
    line-height: 1.2;
    text-align: center;
    letter-spacing: -.1rem;
}

.priceFlow>dl.register>dd .price .note1 {
    color: var(--primary-dark-color);
    font-size: 10rem;
    line-height: .8;
}

.priceFlow>dl.monthly>dd {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-left: 0;
}

.priceFlow>dl.monthly>dd.half>div {
    flex-basis: calc((100% - 2rem) / 2);
}

.priceFlow>dl.monthly>dd>div:first-child {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 2rem;
    padding: 0 0 6rem 0;
    background: url("/common/images/icon-plus.png") no-repeat center bottom;
}

.priceFlow>dl.monthly>dd>div:first-child>p {
    padding-right: 0;
    /* モバイル用 */
}

.priceFlow>dl.monthly>dd div:first-child .price {
    white-space: nowrap;
    /* デスクトップのデフォルトだが、モバイルで調整がないためそのまま */
    padding-right: 0;
    /* モバイル用 */
    background: none;
    /* モバイル用 */
}

.priceFlow>dl.monthly>dd>div:last-child {
    align-self: center;
    flex: 1;
}

.price_bottomArrow {
    position: relative;
}

.price_bottomArrow::after {
    content: "";
    height: 60px;
    width: 48px;
    background-color: #e1f0f2;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    position: absolute;
    bottom: 0;
    left: 50%;
    translate: -50% 100%;
}

.priceFlow>dl.monthly>dd .price p .note1 {
    font-size: 2.8rem;
}

.priceFlow>dl.monthly>dd .price p .note2 {
    margin: 0 0.8rem;
    color: #3187A6;
    font-size: 5rem;
    letter-spacing: -.2rem;
}

.priceFlow>dl.monthly>dd .price p .note3 {
    color: #3187A6;
    font-size: 2.4rem;
}

.priceFlow>dl.monthly>dd .price dl {
    display: table;
    margin: 2rem auto 0 auto;
    font-size: 1.4rem;
    text-align: left;
}

.priceFlow>dl.monthly>dd .price dl dt,
.priceFlow>dl.monthly>dd .price dl dd {
    display: table-cell;
}

.priceFlow>dl>dd .priceTable table {
    margin: 0 auto;
}

.priceFlow>dl>dd .priceTable table td {
    padding: 0 1rem;
}

.priceFlow>dl>dd .priceTable .number,
.priceFlow>dl>dd .priceTable .price {
    color: #074E68;
    font-weight: bold;
    text-align: right;
}

.priceFlow>dl>dd .priceTable .number span {
    font-size: 2.4rem;
}

.priceFlow>dl>dd .priceTable .price span {
    color: #3187A6;
    font-size: 2.4rem;
}

.priceFlow>dl>dd .priceTable .monthly_addition {
    font-size: 1.3rem;
    text-align: left;
}

#price>h3 {
    width: 100%;
    max-width: 350px;
    margin: 40px auto 24px;
    background-color: #0059A0;
    color: #FBFF26;
    text-align: center;
}

#price>p:not(.btnBlock) {
    font-size: 1.6rem;
}

.compliance-gchecker main>section>.price_img01 {
    max-width: 650px;
    margin: 1.6rem auto;
}

.compliance-gchecker main>section>.regist-addition {
    margin-bottom: 2.4rem;
    max-width: 650px;
    list-style: none;
}

.regist-addition li {
    margin-bottom: 0;
    font-size: 1.4rem;
}

.regist-addition li::marker {
    content: "※";
}

.compliance-gchecker main>section#price>.btnBlock a {
    padding-left: unset;
    padding-right: unset;
}

.priceFlow > dl > dd p.monthly_addition {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

#price > h3 {
    display: flex;
    width: 100%;
    max-width: 350px;
    margin: 40px auto 24px;
    padding: 0;
    background-color: rgb(0, 89, 160);
    color: rgb(251, 255, 38);
    text-align: center;
    font-size: 2.4rem;
    flex-direction: column;
    align-items: center;
}

#price > h3::after {
    display: block;
    content: "";
    width: 100%;
    height: 2rem;
    background-color: #FFFFFF;
    border-style: solid;
    border-right: 175px solid transparent;
    border-left: 175px solid transparent;
    border-top: 20px solid rgb(0, 89, 160);
    border-bottom: 0;
}


/*
 * デスクトップ用のスタイル（768px以上で適用）
 */
@media (min-width: 768px) {

    .priceFlow {
        display: flex;
        justify-content: space-between;
    }

    .priceFlow>dl {
        margin: 0;
    }

    .priceFlow>dl:first-child {
        width: calc(30% - 6rem);
        margin: 0;
    }

    .priceFlow>dl:last-child {
        width: calc(100% - calc(30% - 6rem) - 2rem);
    }

    .priceFlow>dl>dt {
        font-size: 2.4rem;
        /* デスクトップ用 */
    }

    .priceFlow>dl.monthly>dd {
        flex-direction: row;
        align-items: flex-start;
        width: fit-content;
        margin: 0 auto;
        padding: 1.6rem 1.6rem 0;
    }

    .priceFlow>dl.monthly>dd>div:first-child {
        padding-right: 7rem;
        /* デスクトップ用 */
        background: url("/common/images/icon-plus.png") no-repeat 93% center;
        /* デスクトップ用 */
        width: auto;
        /* デスクトップに戻す */
        margin-bottom: 0;
        /* デスクトップに戻す */
        padding-bottom: 0;
        /* デスクトップに戻す */
    }

    .priceFlow>dl.monthly>dd>div:first-child>p {
        padding-right: initial;
        /* デスクトップに戻す */
    }

    .priceFlow>dl.monthly>dd div:first-child .price {
        background: initial;
        /* デスクトップに戻す */
        padding-right: initial;
        /* デスクトップに戻す */
    }
}

.price_blk_pc {
    display: none;
}

main section > .priceFlow {
    margin-bottom: 2rem;
}
main section > .price_blk {
    margin-top: 2rem;
}

.price_blk_inner {
    padding: 1.6rem;
    background-color: var(--light-background-color);
    border-radius: 1rem;

    h3 {
        margin: 1.6rem 0 0;
        padding-bottom: 1rem;
        border-bottom: solid 1px #707070;
        color: #143967;
        font-size: clamp(2.4rem, 6.15vw, 3.2rem);
        line-height: 1.2;
        text-align: center;
    }

    table {
        width: 100%;
        padding: 0;
        background-color: var(--white-text-color);
        border-collapse: collapse;
        border-spacing: 0;
    }
    
    table:last-of-type {
        margin-top: 1rem;
    }

    caption {
        margin-bottom: 0.5rem;
        color: var(--primary-dark-color);
        font-weight: 700;
        text-align: left;
    }

    table:not(:first-child) caption {
        margin-top: 3.2rem;
    }
    

    td, th {
        padding: 1rem;
        border-bottom: dotted 1px #000;
        font-size: min(3.73vw, 1.6rem);
        text-align: center;
    }

    p {
        margin-top: 0.5rem;
        font-size: 1.4rem;
    }
}

@media (min-width: 1024px) {
    .register>.entry {
        margin-top: 0;
    }

    .price_blk_inner {
        display: grid;
        grid-template-columns: 1fr 12% 42%;
        grid-template-rows: 34% 50% 1fr;
        grid-column-gap: 0px;
        grid-row-gap: 0px;
        padding: min(4.21vw, 4.8rem) min(4.21vw, 4.8rem) 14rem;
    }

    .price_blk_inner > *:not(.price_blk_pc) {
        display: none;
    }
    
    .price_blk_pc {
        display: flex;
        flex-direction: column;
        width: fit-content;
        padding: 1.8rem;
        background-color: #B0DDE3;
        border-radius: 1rem;

        h3, h4 {
            margin: 0;
            border: none;
            color: #000;
            font-size: 1.8rem;
            text-align: left;
        }
    }
    .price_blk_pc_01 {
        grid-area: 3 / 1 / 4 / 3;
    }
    .price_blk_pc_02 {
        grid-area: 3 / 3 / 4 / 4;
    }
    .price_blk_pc_01, .price_blk_pc_02 {
        height: fit-content;
        margin: 40px auto 0;
        position: relative;
        
        &::before {
            content: "";
            position: absolute;
            top: 1px;
            left: 50%;
            background-color: #B0DDE3;
            height: 24px;
            width: 24px;
            clip-path: polygon(50% 0, 100% 100%, 0 100%);
            translate: -50% -100%;
        }
    }

    .price_blk_pc_03 {
        margin-top: 40px;
        position: relative;
        grid-area: 1 / 2 / 2 / 4;

        &::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 1px;
            background-color: #B0DDE3;
            height: 24px;
            width: 24px;
            clip-path: polygon(0 50%, 100% 0, 100% 100%);
            translate: -100% -50%;
        }
    }

    .price_blk_pc.price_blk_pc_img {
        display: block;
        margin: 0 auto;
        padding: 0;
        background-color: transparent;
        grid-area: 1 / 1 / 4 / 4;
    }
}


/* ===================
zenrin_blk04
=================== */

/* .lead_txt {
    br {
        display: none;

        @media (min-width: 1140px) {
            display: block;
        }
    }
} */

.admission_blk {
    background-color: #ffffff;
    border-radius: 1rem;
    overflow: hidden;

    > p {
        margin: 2.4rem 0 0;
        padding: 2.7rem 1rem 1.4rem;
        background-color: var(--primary-color);
        color: #EEFF00;
        font-size: min(4.26vw, 2.4rem);
        text-align: center;
        position: relative;

        @media (min-width:768px) {
            margin: 0;
        }
    }

    > p::before {
        content: url(/contents/zenrin/images/arrow_down_img.png);
        display: block;
        position: absolute;
        top: -28px;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
    }
}

.admission_blk_wrapper {  
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: min(5.333vw, 2rem) min(2.6vw, 3.2rem);
    justify-content: space-between;
    padding: min(5.33vw, 3rem) min(5.33vw, 4rem) min(5.33vw, 4.6rem);

    dl {
        display: flex;
        width: calc(50% - min(2.6vw, 3.2rem));
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        margin: 0;
    }

    dt {
        display: flex;
        justify-content: center;
        width: 100%;
        height: min(14.6vw, 11rem);
        padding: min(1.33vw, 2.7rem);
        border-radius: 1rem;
        border: solid 1px #143967;
        color: #143967;
        font-size: min(3.73vw, 1.8rem);
        font-weight: 700;
        text-align: center;
        flex-direction: column;

        span {
            font-size: 80%;
        }
    }

    dd {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0;
        color: #143967;
        font-size: clamp(1.35rem, 1.75vw, 2.1rem);
        font-weight: 700;
    }

    dd::before {
        display: block;
        margin: 0.5rem 0;
        content: "▼";
        color: #CCCCCC;
        font-size: 2.1rem;
    }

    .admission_item_zenrin dt {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        color: var(--white-text-color);
    }
}

@media (min-width: 1024px) {
        .admission_blk_wrapper {
            flex-wrap: nowrap;

            dl {
                flex: 1;
            }
        }
    }

.admission-flow {

    h3 {
        color: #143967;
        font-size: min(4.8vw, 2.1rem);

        @media (min-width: 1140px) {
            text-align: center;;
        }
    }

    > ol {
        display: flex;
        flex-direction: column;
        column-gap: 2rem;
        row-gap: 0;
        padding: min(5.33vw, 3rem) 2rem min(5.33vw, 4.6rem);
        background-color: #fff;
        border-radius: 1rem;
        text-align: center;

        @media (min-width: 768px) {
            flex-direction: row;
            justify-content: center;
            padding: min(5.33vw, 3rem) min(2.6vw, 4rem) min(5.33vw, 4.6rem);
        }

        > li {

            > p {
                margin: 0 0 1rem;
                padding: 0.6rem 1rem;
                background-color: var(--light-background-color);
                border-radius: 1rem;
                font-size: min(4.5vw, 2.1rem);
                font-weight: 700;
            }

            .admission-flow_txt01 {
                background-color: var(--primary-color);
                color: #EEFF00;
            }

            @media (min-width: 768px) {
                width: calc(100% - clamp(15rem, 18.5vw, 19rem));
                max-width: 700px;
            }
        }

        li.admission-flow_item02 {

            @media (min-width: 768px) {
                width: 18.5vw;
                min-width: 150px;
                max-width: 190px;
            }
        }

        > li > ol,
        > li > dl {
            width: 90%;
            margin: 0 auto;
        }

        > li > ol {
            display: flex;
            flex-direction: column;
            counter-reset: listnum;

            @media (min-width: 768px) {
                width: 100%;
                flex-direction: row;
            }

            > li {
                flex: 1;
                background-color: #E0E0E0;
                position: relative;
                margin-bottom: 30px;
                font-size: min(4.26vw, 1.8rem);
                font-weight: 500;

                @media (min-width: 768px) {
                    display: flex;
                    flex-direction: column;
                    width: calc(calc(100% / 3) - 3.2rem);
                    margin-bottom: 0;
                    margin-right: 3.2rem;
                    padding: 0 0 1.4rem 1rem;
                }

                @media (min-width: 1024px) {     
                    display: flex;               
                    align-items: center;
                    flex-direction: row;
                    justify-content: flex-start;
                    gap: 1.6rem;
                    height: 110px;
                    padding: 0 0 0 1.8rem;
                    text-align: left;
                }
            } 

             > li::before {
                counter-increment: listnum;
                content: counter(listnum);
                display: block;
                color: #143967;
                font-family: "Roboto", sans-serif;
                font-size: 2.8rem;
                font-weight: 700;

                @media (min-width: 1024px) {
                    font-size: 4rem;
                }
             }

            > li::after {
                content: "";
                display: block;
                height: calc(tan(60deg) * 30px / 2);
                width: 100%;
                margin-top: -1px;
                background: #E0E0E0;
                clip-path: polygon(0 0, 100% 0, 50% 100%);
                position: absolute;

                @media (min-width: 768px) {
                    width: 3.2rem;
                    height: 100%;
                    clip-path: polygon(0 0, 100% 50%, 0 100%);
                    top: 0;
                    right: -3.14rem;
                }
            }

            > li br {
                display: none;

                @media (min-width:1024px) {
                    display: block;
                }
            } 

        }


        > li > dl {
            background-color: #E0E0E0;
            border: solid 2px #999;

            @media (min-width: 768px) {
                display: flex;
                flex-direction: column;
                justify-content: space-evenly;
                width: 100%;
                height: 100%;
            }
        }

        dt {
            padding: 1rem 1rem 0;
            color: #143967;
            font-size: min(4.8vw, 2.1rem);
            font-weight: 700;
        }

        dd {
            margin: 0;
            padding: 1rem;
            font-weight: 500;
        }
    }

}

.zenrin-last_txt {
    margin-top: 3.2rem;
    padding: clamp(1.6rem, 2vw, 3rem);
    background-color: rgba(255, 255, 255, 0.7);
    border: solid 1px #333333;
}