@charset "utf-8";
/*--京home.css--*/
/* ##########PC########## */
.contents{
    padding-bottom: 0;
}

    .mainvisual_news_box{}

    /*mainvisual*/
    .mainvisual{
        position: relative;
    }

        .mainvisual img{
            max-width: 100%;
            height: auto;
        }

        .mainvisual > .box_inner{
            background: #d6e8b7;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 1;
            padding-top: 1.5rem;
            padding-bottom: 2rem;
        }

        .mainvisual > .box_inner:before{
            content: "";
            display: block;
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 0;
            background-image: url(../shared/home/bg_home_catch.png);
            background-position: center top;
            background-repeat: no-repeat;
            background-size: cover;
        }

        .mainvisual > .box_inner:after{
            content: "";
            display: block;
            width: 100%;
            height: 20rem;
            position: absolute;
            bottom: 0;
            left: 0;
            z-index: 1;
            background: #ffffff;
            background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
        }

            .mainvisual > .box_inner .fig_main{
                width: 928px;
                position: relative;
                z-index: 2;
                transition: .8s all ease;
                opacity: 0;
                filter: blur(4px);
            }

            .mainvisual.show > .box_inner .fig_main{
                opacity: 1;
                filter: blur(0);
            }

            .mainvisual > .box_inner .figs_sub{
                position: relative;
            }

                .mainvisual > .box_inner .figs_sub::before,
                .mainvisual > .box_inner .figs_sub::after{
                    content: "";
                    display: block;
                    width: 8rem;
                    aspect-ratio: 256 / 224;
                    background-position: center;
                    background-repeat: no-repeat;
                    background-size: contain;
                    position: absolute;
                    top: -2rem;
                    z-index: 0;
                }

                .mainvisual > .box_inner .figs_sub::before{
                    background-image: url(../shared/home/fig_flower_l.png);
                    left: calc(50% - 33rem);
                }

                .mainvisual > .box_inner .figs_sub::after{
                    background-image: url(../shared/home/fig_flower_r.png);
                    right: calc(50% - 33rem);
                }


                .mainvisual > .box_inner .figs_sub ul{
                    display: flex;
                    justify-content: center;
                    gap: 1rem;
                    position: relative;
                    z-index: 2;
                }

                    .mainvisual > .box_inner .figs_sub ul li{
                        width: 19.5rem;
                        transition: .5s all ease;
                        opacity: 0;
                        transform: translateY(1rem);
                    }

                    .mainvisual > .box_inner .figs_sub ul li:last-child{
                        margin-right: 0;
                    }

                    .mainvisual > .box_inner .figs_sub ul li.fig_sub1{
                        transition-delay: .5s;
                    }

                    .mainvisual > .box_inner .figs_sub ul li.fig_sub2{
                        transition-delay: .8s;
                    }

                    .mainvisual > .box_inner .figs_sub ul li.fig_sub3{
                        transition-delay: 1.1s;
                    }

                    .mainvisual.show > .box_inner .figs_sub ul li{
                        opacity: 1;
                        transform: translateY(0);
                    }


    /*news_box*/
    .news_box_wrapper{
        background: #00469b;
        padding: 1.25rem 0;
    }

    .news_box{
        width: 980px;
        display: flex;
        align-items: center;
        margin: 0 auto;
    }

    .news_box.show{
        transform: translateY(0);
        opacity: 1;
    }

        .news_box dl{
            display: flex;
            align-items: center;
            width: 100%;
            height: 100%;
        }

            .news_box dl dt{
                font-weight: 700;
                color: #fff;
                font-size: 1.6em;
            }

            .news_box dl dd{
                flex: 1;
                margin-left: 1.5em;
                background: #fff;
                padding: 1em 1.5em;
                border-radius: 100vh;
            }

                .news_box dl dd ul li{
                    display: flex;
                }

                .news_box dl dd ul li .entry_date{
                    width: 6em;
                }

                .news_box dl dd ul li .entry_title{
                    flex: 1;
                }



/*各ボックス共通指定*/
.common_content_box{
    padding: 60px 0 44px;
}

    .common_content_box > .box_header{
        display: flex;
        justify-content: center;
        margin-bottom: 1.7rem;
    }

        .common_content_box > .box_header h2{
            font-weight: 900;
            font-size: 1.7rem;
        }


    .common_content_box > .box_inner{
        font-size: 0.92rem;
        line-height: 1.7;
    }

    .common_content_box > .box_footer{
        margin-top: 40px;
        display: flex;
        justify-content: center;
    }

        .common_content_box > .box_footer a{
            box-sizing: border-box;
            display: flex;
            align-items: center;
            height: 3.125rem;
            border-radius: 100vh;
            background: #00469b;
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1em;
            padding:0 3em;
            transition: .3s all ease;
        }

        .common_content_box > .box_footer a:hover{
            box-shadow: 0 3px 0 0 rgba(0,0,0,0.2);
            text-shadow: 1px 2px 0 rgba(0,0,0,0.5);
        }

        .common_content_box > .box_footer .end_msg{
            font-weight: bold;
            font-size: 1.1em;
            color: #dd2715;
            line-height: 1.4;
            text-align: center;
        }

        .common_content_box > .box_footer .yet_msg{
            background: #dd2715;
            color: #fff;
            font-size: 1.2em;
            font-weight: 700;
            padding: 0.75em 1.5em;
        }

/*uses_box*/
.uses_box{
    transition: .5s all ease;
    transition-delay: 1s;
    opacity: 0;
    transform: translateY(20px);
}

.uses_box.show{
    opacity: 1;
    transform: translateY(0);
}

.uses_common_box{
    box-sizing: border-box;
    width: 740px;
    margin: 0 auto;
    border: 2px solid #00469b;
    border-radius: 14px;
    padding: 1em;
    margin-bottom: 1.4em;
}

.uses_common_box.uses_period dl{
    display: flex;
    align-items: center;
    line-height: 1.2;
}

    .uses_common_box.uses_period dl dt{
        color: #00469b;
        font-size: 1.05em;
        font-weight: 700;
        width: 8rem;
    }

        .uses_common_box.uses_period dl dt:before{
            content: "《";
            margin-right: 0.2em;
        }

        .uses_common_box.uses_period dl dt:after{
            content: "》";
            margin-left: 0.2em;
        }

    .uses_common_box.uses_period dl dd{
        font-weight: 900;
        font-size: 1.4em;
        width: calc(100% - 8rem);
    }

.uses_common_box.uses_cond dl{
    box-sizing: border-box;
    display: flex;
    width: 100%;
    border-bottom: 2px solid #ccc;
    padding: 0.6em 0.9em;
}

.uses_common_box.uses_cond dl:first-child{
    padding-top: 0.3em;
    align-items: center;
    line-height: 1.6;
}

.uses_common_box.uses_cond dl:last-child{
    border-bottom: none;
    padding-bottom: 0.3em;
}

    .uses_common_box.uses_cond dl dt{
        font-size: 1.05em;
        width: 7rem;
        font-weight: bold;
        color: #333;
    }

    .uses_common_box.uses_cond dl dd{
        width: calc(100% - 7rem);
    }

        .uses_common_box.uses_cond dl dd .lbl_price{
            font-weight: 900;
            font-size: 1.4em;
        }

    .uses_common_box.uses_cond dl dd .emp{
        font-weight: bold;
        text-decoration: underline;
        color: #dd2715;
    }

        .uses_common_box.uses_cond dl dd .hikikae_venue_date{
            /*background: rgba(196,0,38,0.05);*/
            background: rgba(9,66,127,0.08);
            border-radius: 8px;
            padding: 0.5em 0.9em;
            margin-top: 1em;
            line-height: 1.4;
        }

            .uses_common_box.uses_cond dl dd .hikikae_venue_date dl{
                padding: 0.3em 0;
                border-bottom: none;
                align-items: stretch;
            }

                .uses_common_box.uses_cond dl dd .hikikae_venue_date dl dt{
                    font-size: 1em;
                    width: 7.5em;
                }

                    .uses_common_box.uses_cond dl dd .hikikae_venue_date dl dt:after{
                        content: "：";
                    }

                .uses_common_box.uses_cond dl dd .hikikae_venue_date dl dd{
                    width: calc(100% - 7.5em);
                }

.uses_common_box.uses_cond dl.r_happyo_uketori{
    flex-direction: column;
    align-items: center;
    background: #ffebed;
    margin-top: 0.5em;
    border-radius: 0.5rem;
    padding-top: 1em;
    padding-bottom: 1em;
}

    .uses_common_box.uses_cond dl.r_happyo_uketori dt{
        width: auto;
        border-bottom: 1px dotted #aaa;
        margin-bottom: 0.4em;
        padding-bottom: 0.1em;
        font-size: 1.1em;
    }

    .uses_common_box.uses_cond dl.r_happyo_uketori dd{
        text-align: center;
    }


.uses_common_box.uses_notice dl{
    display: flex;
}

    .uses_common_box.uses_notice dl dt{
        color: #00469b;
        font-size: 1.05em;
        font-weight: 700;
        width: 8rem;
    }

        .uses_common_box.uses_notice dl dt:before{
            content: "《";
            margin-right: 0.2em;
        }

        .uses_common_box.uses_notice dl dt:after{
            content: "》";
            margin-left: 0.2em;
        }

    .uses_common_box.uses_notice dl dd{
        width: calc(100% - 8rem);
    }

        .uses_common_box.uses_notice dl dd ul{}

            .uses_common_box.uses_notice dl dd ul li{
                padding-left: 1em;
                position: relative;
            }

            .uses_common_box.uses_notice dl dd ul li.emp{
                color: #dd2715;
            }

                .uses_common_box.uses_notice dl dd ul li:before{
                    content: "※";
                    position: absolute;
                    top: 0;
                    left: 0;
                }

.apply_box{
    background-image: url("../shared/bg_pattern1.png");
    background-size: 0.5rem auto;
    transition: .5s all ease;
    transition-delay: 1s;
    transform: translateY(20px);
    opacity: 0;
}

.apply_box.show{
    transform: translateY(0);
    opacity: 1;
}

        .apply_box > .box_inner .apply_msg{
            width: 700px;
            margin: 0 auto 3em;
        }

        .apply_box > .box_inner .apply_flow{
            width: 800px;
            margin: 0 auto 3em;
        }

            .apply_box > .box_inner .apply_flow ul{
                display: flex;
            }

                .apply_box > .box_inner .apply_flow ul li{
                    width: 220px;
                    margin-right: 70px;
                    position: relative;
                }

                .apply_box > .box_inner .apply_flow ul li:last-child{
                    margin-right: 0;
                }

                    .apply_box > .box_inner .apply_flow ul li:before{
                        content: "";
                        display: block;
                        width: 40px;
                        height: 40px;
                        background-image: url("../shared/home/fig_flow_arr.png");
                        background-repeat: no-repeat;
                        background-size: contain;
                        position: absolute;
                        top: 62px;
                        right: -55px;
                    }

                    .apply_box > .box_inner .apply_flow ul li:last-child:before{
                        content: none;
                    }

                    .apply_box > .box_inner .apply_flow ul li .fig{
                        margin-bottom: 1.5em;
                    }

                        .apply_box > .box_inner .apply_flow ul li .fig img{
                            max-width: 100%;
                            height: auto;
                        }

                    .apply_box > .box_inner .apply_flow ul li dl{}

                        .apply_box > .box_inner .apply_flow ul li dl dt{
                            font-size: 1.14em;
                            font-weight: bold;
                            text-align: center;
                            margin-bottom: 0.6em;
                        }

                        .apply_box > .box_inner .apply_flow ul li dl dd{
                            font-size: 0.94em;
                        }

                            .apply_box > .box_inner .apply_flow ul li dl dd .emp{
                                font-weight: bold;
                                text-decoration: underline;
                                color: #dd2715;
                            }


        .apply_box > .box_inner .apply_period{
            width: 740px;
            margin: 0 auto;
            border-top: 2px solid #212121;
            border-bottom: 2px solid #212121;
            padding: 1em;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5em;
        }

            .apply_box > .box_inner .apply_period dl{
                display: flex;
                flex-direction: column;
                align-items: center;
                line-height: 1.4;
                gap: 0.3em;
            }

                .apply_box > .box_inner .apply_period dl dt{
                    color: #00469b;
                    font-size: 1.1em;
                    font-weight: bold;
                    margin-right: 1em;
                }

                    .apply_box > .box_inner .apply_period dl dt:before{
                        content: "《";
                        margin-right: 0.2em;
                    }

                    .apply_box > .box_inner .apply_period dl dt:after{
                        content: "》";
                        margin-left: 0.2em;
                    }

                .apply_box > .box_inner .apply_period dl dd{
                    font-weight: 900;
                    font-size: 1.4em;
                }

    .apply_box > .box_footer a .lbl1{
        margin-right: 0.5em;
    }

.shop_box{
    transition: .5s all ease;
    transition-delay: 1s;
    opacity: 0;
    transform: translateY(20px);
    padding-bottom: 6rem;
    padding-top: 0rem;
}

.shop_box.show{
    opacity: 1;
    transform: translateY(0);
}

    .shop_box > .box_header h2{
        line-height: 1.4
    }

    .shop_box > .box_inner{
        width: 660px;
        margin: 0 auto;
        text-align: center;
    }

.contact_box{
    /*background-image: url("../shared/bg_pattern3.png");
    background-size: 80px 80px;*/
    background: #fff;
    transition: .5s all ease;
    transition-delay: 1s;
    opacity: 0;
    transform: translateY(20px);
}

.contact_box.show{
    opacity: 1;
    transform: translateY(0);
}

    .contact_box > .box_inner{
        text-align: center;
    }

        .contact_box > .box_inner a{
            color: #111;
            transition: .3s all ease;
            text-decoration: none;
            pointer-events: none;
        }

        .contact_box > .box_inner a:hover{
            opacity: 0.8;
        }

        .contact_box > .box_inner .tel_fax{
            display: flex;
            justify-content: center;
        }

            .contact_box > .box_inner .tel_fax dt:after{
                content: "：";
            }

            .contact_box > .box_inner .tel_fax dd{
                margin-right: 2em;
            }

            .contact_box > .box_inner .tel_fax dd:last-child{
                margin-right: 0;
            }

.ext_links_box{
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.84em;
}

    .ext_links_box ul{
        display: flex;
        justify-content: center;
    }

        .ext_links_box ul li{
            margin-right: 5em;
            background-image: url("../shared/icon_ext_link.png");
            background-size: 13px auto;
            background-repeat: no-repeat;
            padding-left: 20px;
        }

        .ext_links_box ul li:last-child{
            margin-right: 0;
        }

            .ext_links_box ul li a{
                color: #333;
                text-decoration: none;
                transition: .3s all ease;
            }

            .ext_links_box ul li a:hover{
                text-decoration: underline;
                opacity: 0.8;
            }

/*当選者の方へ*/
.tousen_box{
    box-sizing: border-box;
    line-height: 1.5;
    width: 740px;
    margin: 3rem auto 0;
    background: rgba(255,226,0,0.2);
    padding: 2em;
    border-radius: 1rem;
}

    .tousen_box > .box_header{
        display: flex;
        justify-content: center;
        margin-bottom: 1em;
    }

        .tousen_box > .box_header h2{
            font-weight: 900;
            font-size: 1.7rem;
        }

    .tousen_box > .box_inner .msg_c{
        text-align: center;
    }

    .tousen_box > .box_inner .info{
        display: flex;
        flex-direction: column;
        margin: 1em 0;
        padding: 1em;
        background: rgba(255,255,255,1);
        border-radius: 1rem;
    }

    .tousen_box > .box_inner .info dl{
        display: flex;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        padding: 0.5em;
    }

    .tousen_box > .box_inner .info dl:last-child{
        border-bottom: none;
    }

    .tousen_box > .box_inner .info dl dt{
        font-weight: 500;
        width: 7.5em;
    }

    .tousen_box > .box_inner .info dl dd{
        flex: 1;
    }

        .tousen_box > .box_inner .info dl dd ul li{
            position: relative;
            padding-left: 1.3em;
        }

        .tousen_box > .box_inner .info dl dd ul li::before{
            content: "※";
            position: absolute;
            top: 0;
            left: 0;
        }

@media screen and (min-width:1px) and (max-width:1400px) {
}

@media screen and (min-width:1px) and (max-width:1024px) {
    .mainvisual > .box_inner:before{
        background-size: contain;
    }
}



/* ##########SP横向き########## */
@media screen and (min-width:1px) and (max-width:768px) {


}

/* ##########SP########## */
@media screen and (min-width:1px) and (max-width:575px) {

    /*mainvisual*/
    .mainvisual{}
    
        .mainvisual > .box_inner{
            padding-top: 5vw;
        }

            .mainvisual > .box_inner .fig_main{
                width: 100%;
            }

                .mainvisual > .box_inner .figs_sub ul{
                    gap: 0.5rem;
                    padding: 0 3vw;
                }

                .mainvisual > .box_inner .figs_sub ul li{
                    width: calc((100% - 1rem) / 3);
                }

            .mainvisual > .box_inner .promoter_info{
                padding: 5vw 0 3vw;
            }

                .mainvisual > .box_inner .promoter_info dl{
                    font-size: 0.86rem;
                }

    /*news_box*/
    .news_box_wrapper{
        padding: 0.5rem 0;
    }
    
    .news_box{
        width: 94vw;
        flex-direction: column;
        align-items: center;
    }

        .news_box dl dt{
            font-size: 1.1em;
        }

        .news_box dl dd{
            margin-left: 1em;
            padding: 0.4em 1em;
        }

            .news_box dl dd ul li{
                flex-direction: column;
                line-height: 1.4;
                font-size: 0.7em;
            }


/*各ボックス共通指定*/
.common_content_box{
    padding: 1.6em 0 1.2em;
}

    .common_content_box > .box_header{
        margin-bottom: 1em;
    }

        .common_content_box > .box_header h2{
            font-size: 1.4rem;
        }

    .common_content_box > .box_inner{
        font-size: 0.84rem;
    }

    .common_content_box > .box_footer{
        margin-top: 1em;
    }

        .common_content_box > .box_footer a{
            height: 10vw;
            border-radius: 5vw;
            font-size: 0.96rem;
            padding:0 2em;
            line-height: 1.4;
            letter-spacing: 0;
        }

/*uses_box*/
.uses_box{}

.uses_common_box{
    width: 92vw;
    padding: 0.8em;
    margin-bottom: 1em;
}

.uses_common_box.uses_period dl{
    flex-direction: column;
}

    .uses_common_box.uses_period dl dt{
        width: auto;
        margin-bottom: 0.3em;
    }

    .uses_common_box.uses_period dl dd{
        font-size: 1.2em;
        width: 100%;
        text-align: center;
    }

    .uses_common_box.uses_period dl dd .lbl1,
    .uses_common_box.uses_period dl dd .lbl2{
        box-sizing: border-box;
        width: 100%;
        text-align: center;
    }

    .uses_common_box.uses_period dl dd .lbl1{
        margin-bottom: 0.3em;
        padding-right: 5em;
    }

    .uses_common_box.uses_period dl dd .lbl2{
        padding-left: 5em;
    }


.uses_common_box.uses_cond dl{
    padding: 0.6em;
}

.uses_common_box.uses_cond dl:first-child{
    padding-top: 0.2em;
    align-items: flex-start;
    line-height: 1.4;
}

.uses_common_box.uses_cond dl:last-child{
    border-bottom: none;
    padding-bottom: 0.2em;
}

    .uses_common_box.uses_cond dl dt{
        font-size: 1em;
        width: 4.5rem;
    }

    .uses_common_box.uses_cond dl dd{
        width: calc(100% - 4.5rem);
    }

        .uses_common_box.uses_cond dl dd .lbl_price{
            font-size: 1.2em;
        }
    
        .uses_common_box.uses_cond dl dd .hikikae_venue_date{
        }

            .uses_common_box.uses_cond dl dd .hikikae_venue_date dl{
            }

                .uses_common_box.uses_cond dl dd .hikikae_venue_date dl dt{
                    width: 3em;
                }
    
                .uses_common_box.uses_cond dl dd .hikikae_venue_date dl dt:after{
                    content: none;
                }

                .uses_common_box.uses_cond dl dd .hikikae_venue_date dl dd{
                    box-sizing: border-box;
                    width: calc(100% - 3em);
                    padding-left: 1em;
                }
    
.uses_common_box.uses_cond dl.r_happyo_uketori{
    padding: 1rem;
}
    
    .uses_common_box.uses_cond dl.r_happyo_uketori dd{
        width: 100%;
        text-align: left;
    }
    

.uses_common_box.uses_notice dl{
    flex-direction: column;
    align-items: center;
}

    .uses_common_box.uses_notice dl dt{
        width: auto;
    }

    .uses_common_box.uses_notice dl dd{
        width: 100%;
    }

        .uses_common_box.uses_notice dl dd ul{
            font-size: 0.9em;
            line-height: 1.5;
        }

    .common_content_box > .box_footer .yet_msg{
        margin: 0 4vw;
        font-size: 0.8em;
        padding: 0.75em 0;
        width: calc(100% - 6vw);
        text-align: center;
    }


.apply_box{

}


        .apply_box > .box_inner .apply_msg{
            width: 90vw;
            margin: 0 auto 2em;
            line-height: 1.5;
        }

        .apply_box > .box_inner .apply_flow{
            width: 90vw;
            margin: 0 auto 2em;
        }

            .apply_box > .box_inner .apply_flow ul{
                flex-direction: column;
            }

                .apply_box > .box_inner .apply_flow ul li{
                    width: 100%;
                    margin-right: 0;
                    display: flex;
                    margin-bottom: 8vw;
                }

                .apply_box > .box_inner .apply_flow ul li:last-child{
                    margin-bottom: 0;
                }

                    .apply_box > .box_inner .apply_flow ul li:before{
                        width: 6vw;
                        height: 6vw;
                        top: auto;
                        bottom: -7vw;
                        right: calc(50% - 3vw);
                        transform: rotate(90deg);
                    }

                    .apply_box > .box_inner .apply_flow ul li .fig{
                        margin-bottom: 0;
                        width: 30%;
                    }

                        .apply_box > .box_inner .apply_flow ul li .fig img{
                            max-width: 100%;
                            height: auto;
                        }

                    .apply_box > .box_inner .apply_flow ul li dl{
                        box-sizing: border-box;
                        width: 70%;
                        padding-left: 4vw;
                    }

                        .apply_box > .box_inner .apply_flow ul li dl dt{
                            font-size: 1.1em;
                            text-align: left;
                            margin-bottom: 0.3em;
                        }

                        .apply_box > .box_inner .apply_flow ul li dl dd{
                            font-size: 0.94em;
                            line-height: 1.4;
                        }

        .apply_box > .box_inner .apply_period{
            width: 92vw;
            padding: 1em 0;
        }

            .apply_box > .box_inner .apply_period dl{
            }

                .apply_box > .box_inner .apply_period dl dd{
                    font-size: 1.15em;
                    text-align: center;
                }
    
    .apply_box > .box_footer a{
        justify-content: center;
        flex-direction: column;
        height: 14vw;
        border-radius: 7vw;
    }
    
        .apply_box > .box_footer a .lbl1{
            margin-right: 0;
        }

.shop_box{
    padding: 0 0 2.5em;
}

    .shop_box > .box_inner{
        width: 90%;
        line-height: 1.5;
        text-align: left;
    }
    
    .shop_box > .box_inner p br{
        display: none;
    }

.contact_box{
    background-size: 14vw calc(14vw / 90 * 100);
}

    .contact_box > .box_inner{
        line-height: 1.5;
        font-size: 0.76rem;
    }

    .contact_box > .box_inner a {
        text-decoration: underline;
        pointer-events: initial;
    }

.ext_links_box{
    height: auto;
    font-size: 0.7rem;
    padding: 4vw;
}

    .ext_links_box ul{
        justify-content: center;
        flex-direction: column;
    }

        .ext_links_box ul li{
            margin-right: 0;
            margin-bottom: 1em;
            background-size: 2.8vw auto;
            padding-left: 3.4vw;
        }

        .ext_links_box ul li:last-child{
            margin-bottom: 0;
        }

    /*当選者の方へ*/
    .tousen_box{
        width: 92vw;
        margin: 1.5rem auto 0;
        padding: 1em;
    }

        .tousen_box > .box_header h2{
            font-size: 1.4rem;
            text-align: center;
            line-height: 1.2;
        }

        .tousen_box > .box_inner{
            font-size: 0.84rem;
        }

        .tousen_box > .box_inner .msg_c{
            text-align: left;
        }

        .tousen_box > .box_inner .msg_c br{
            display: none;
        }

        .tousen_box > .box_inner .info dl{
            flex-direction: column;
            padding: 0.5em 0;
        }

        .tousen_box > .box_inner .info dl dt{
            width: auto;
            margin-bottom: 0.2em;
        }

        .tousen_box > .box_inner .info dl dd{
            box-sizing: border-box;
            flex: auto;
            width: 100%;
            padding-left: 0.5em;
        }

            .tousen_box > .box_inner .info dl dd ul li{
                position: relative;
                padding-left: 1.3em;
            }

            .tousen_box > .box_inner .info dl dd ul li::before{
                content: "※";
                position: absolute;
                top: 0;
                left: 0;
            }

}


/* ##########印刷用########## */
@media print{
    .mainvisual > .box_inner .fig1,
    .mainvisual > .box_inner .fig2,
    .mainvisual > .box_inner .fig3,
    .mainvisual > .box_inner .fig4,
    .mainvisual > .box_inner .fig5
    .news_box,
    .uses_box,
    .apply_box,
    .shop_box,
    .contact_box{
        opacity: 1 !important;
        transform: none !important;
    }


}