@charset "utf-8";
/*--京pages.css--*/
/* ##########PC########## */
.shape{
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
    width: 100%;
}

    .shape::before{
        content: "";
        display: block;
        width: 100%;
        min-height: 400px;
        background-image: url(../shared/fig_bg_green.png);
        background-size: 0.8125rem auto;
        border-bottom-right-radius: 1000px 500px;
        border-bottom-left-radius: 1000px 500px;
        margin-left: -250px;
        margin-right: -250px;
        padding-left: 250px;
        padding-right: 250px;        
    }

/*topicpath*/
.topicpath{
    padding: 0.5rem 3vw 0;
}

    .topicpath ul{
        font-size: 0.84em;
        color: var(--base_color2);
    }

    .topicpath ul li{
        display: inline;
    }

        .topicpath ul li::after{
            font-family: FontAwesome;
            content:"\f105";
            margin: 0 0.8em 0 1em;
        }

        .topicpath ul li:last-child::after{
            content: none;
        }

        .topicpath ul li a{
            text-decoration: none;
            color: var(--base_color2);
        }

        .topicpath ul li a:hover{
            text-decoration: underline;
        }

        .topicpath ul li:first-child a{
            font-weight: 500;
        }


/*content_title*/
.content_title{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 0;
    padding-top: 4rem;
    margin-bottom: 4rem;
}

    .content_title::before{
        display: block;
        content: "";
        width: 57.5rem;
        aspect-ratio: 1 / 1;
        background: #fff;
        border-radius: 50%;
        position: absolute;
        top: 0;
        left: calc(50% - 28.75rem);
        z-index: 0;
    }

    .content_title .lbl_en{
        font-family: var(--font_family2);
        color: var(--base_color2);
        position: relative;
        z-index: 1;
        font-size: 1.18em;
        font-weight: 500;
        margin-bottom: 1.1em;
    }


    .content_title .lbl_ja{
        font-size: 2.5em;
        position: relative;
        z-index: 1;
        font-family: var(--font_family2);
        font-weight: 700;
        margin-bottom: 0.5em;
    }

    .content_title .icon{
        width: 4rem;
        position: relative;
        z-index: 1;
    }

        .content_title .icon img{
            max-width: 100%;
            height: auto;
        }



    /*page_title*/
    .index .page_title{
        display: none;
    }


.content_body{
    position: relative;
    z-index: 1;
    padding-bottom: 5rem;
    overflow: hidden;
}

/*column_wrapper*/
.column_wrapper{
    box-sizing: border-box;
    display: flex;
    margin: 0 auto;
    max-width: 1280px;
    /*padding: 0 2.5rem;*/
    padding: 0 3rem;
}

.contents.index .column_wrapper{
    /*padding: 0;*/
}

    .column_wrapper .column_main{
        flex: 1;
    }


/*2カラム*/
.column_wrapper.two_col{}

    .column_wrapper.two_col .column_sub{
        width: 15rem;
        margin-left: 2.5rem;
        position: relative;
    }

    .column_wrapper.two_col .column_sub .page_nav{
        position: sticky;
        top: 6.5rem;
        margin-bottom: 3rem;
    }

    .column_wrapper.two_col .column_sub .page_nav > ul{
        font-family: var(--font_family2);
    }

    .column_wrapper.two_col .column_sub .page_nav > ul > li{
        margin-bottom: 1rem;
    }

    .column_wrapper.two_col .column_sub .page_nav > ul > li > a,
    .column_wrapper.two_col .column_sub .page_nav > ul > li > .nolink{
        display: block;
        padding: 0.4rem 0 0.4rem 1.8rem;
        font-size: 1.25rem;
        border-radius: 0.25rem;
        color: #222;
        font-weight: 400;
        text-decoration: none;
        position: relative;
        transition: .3s all ease;
    }

    .column_wrapper.two_col .column_sub .page_nav > ul > li > .nolink{
        cursor: pointer;
    }

    .column_wrapper.two_col .column_sub .page_nav > ul > li.active > a,
    .column_wrapper.two_col .column_sub .page_nav > ul > li.active > .nolink{
        color: var(--base_color2);
    }

    .column_wrapper.two_col .column_sub .page_nav > ul > li > a:hover,
    .column_wrapper.two_col .column_sub .page_nav > ul > li > .nolink:hover{
        background: rgba(45,177,185,0.15);
    }

    .column_wrapper.two_col .column_sub .page_nav > ul > li > a::before,
    .column_wrapper.two_col .column_sub .page_nav > ul > li > .nolink::before{
        content:"";
        display: block;
        width: 1rem;
        aspect-ratio: 1 / 1;
        background: url(../shared/icon_arrow_r.png) no-repeat;
        background-size: contain;
        position: absolute;
        top: calc(50% - 0.5rem);
        left: 0.2rem;
    }

    .column_wrapper.two_col .column_sub .page_nav > ul > li.active > a::before,
    .column_wrapper.two_col .column_sub .page_nav > ul > li.active > .nolink::before,
    .column_wrapper.two_col .column_sub .page_nav > ul > li.open > .nolink::before{
        background: url(../shared/icon_arrow_u.png) no-repeat;
        background-size: contain;
    }

    .column_wrapper.two_col .column_sub .page_nav > ul > li > .child_nav{
        margin: 1rem 0 1rem 1rem;
        font-family: var(--font_family1);
        font-size: 0.95rem;
    }

    .column_wrapper.two_col .column_sub .page_nav > ul > li > .child_nav > ul{}

    .column_wrapper.two_col .column_sub .page_nav > ul > li > .child_nav > ul > li{
        padding: 0 0 0 1.2rem;
        position: relative;
        margin-bottom: 1.35rem;
    }

    .column_wrapper.two_col .column_sub .page_nav > ul > li > .child_nav > ul > li::before{
        content:"";
        display: block;
        width: 0.4rem;
        height: 2px;
        background: #444;
        position: absolute;
        top: calc(50% - 1px);
        left: 0;
        transition: .3s all ease;
    }

    .column_wrapper.two_col .column_sub .page_nav > ul > li > .child_nav > ul > li:hover::before{
        background: #086eb6;
    }

    .column_wrapper.two_col .column_sub .page_nav > ul > li > .child_nav > ul > li.current_page_item::before{
        background: #086eb6;
    }

    

    .column_wrapper.two_col .column_sub .page_nav > ul > li > .child_nav > ul > li > a{
        color: #222;
        text-decoration: none;
        font-weight: 400;
        transition: .3s all ease;
    }

    .column_wrapper.two_col .column_sub .page_nav > ul > li > .child_nav > ul > li > a:hover{
        color: #086eb6;
    }

    .column_wrapper.two_col .column_sub .page_nav > ul > li > .child_nav > ul > li.current_page_item > a{
        color: #086eb6;
    }

    /*開閉*/
    .column_wrapper.two_col .column_sub .page_nav > ul > li > .child_nav{
        display: none;
    }

    .column_wrapper.two_col .column_sub .page_nav > ul > li.active > .child_nav{
        display: block;
    }


/*page_title*/
.page_title{
    margin: 0 1rem 3.5em;
}

    .page_title h2{
        font-size: 2.25rem;
        color: var(--base_color1);
        font-family: var(--font_family2);
    }



/*page_body*/
.page_body{
    margin: 0 1rem;
    min-height: 400px;
    line-height: 2;
    position: relative;
    z-index: 0;
}

    .page_body h3{
        text-align: center;
        font-size: 1.75em;
        font-weight: 500;
        margin: 2.5em 0 1em 0;
        padding-bottom: 0.8em;
        line-height: 1.4;
        font-weight: 700;
        position: relative;
        clear: both;
    }

        .page_body h3::before{
            content: "";
            width: 4.5em;
            border-bottom: 4px solid var(--base_color2);
            position: absolute;
            bottom: 0;
            left: calc(50% - 2.25em);
        }



    .page_body h4{
        font-size: 1.4em;
        font-weight: 600;
        margin: 2.2em 0 1em 0;
        line-height: 1.4;
        position: relative;
        padding: 0.7em 1em 0.4em;
        color: var(--base_color1);
        font-family: var(--font_family2);
        overflow: hidden;
    }

        .page_body h4::before{
            content: "";
            display: block;
            width: 0.375rem;
            height: 100%;
            background: var(--base_color3);
            position: absolute;
            top: 0.25em;
            left: 0;
        }

    .page_body h3 + h4{
        margin-top: 1.5em;
    }

    .page_body h5{
        font-size: 1.1em;
        font-weight: 500;
        margin: 1.5em 0 0.3em 0;
        line-height: 1.4;
        position: relative;
        clear: both;
    }

    .page_body p {
        margin: 0 0 1em;
    }

    .page_body .wp-block-image figure {
        margin-bottom: 1em;
    }

    .page_body .wp-block-image figure.alignleft {
        margin-right: 2em;
    }

    .page_body .wp-block-image figure.alignright {
        margin-left: 2em;
    }

    .page_body ol,
    .page_body ul{
        line-height: 1.6;
    }

    .page_body ol{
        list-style: decimal;
        margin: 1em;
    }

        .page_body ol li{
            margin: 0 0 0.3em 1.3em;
        }

    .page_body ul{
        margin: 1em;
    }

        .page_body ul li{
            margin: 0 0 0.3em 0;
            padding-left: 0.85em;
            position: relative;
        }

            .page_body ul li:before{
                content: "";
                width: 0.25rem;
                height: 0.25rem;
                border-radius: 50%;
                display: block;
                background: #555;
                position: absolute;
                top: 0.6em;
                left: 0;
            }

        .page_body ul li a,
        .page_body ol li a{
            color: #222;
            transition: .3s all ease;
        }

        .page_body ul li a:hover,
        .page_body ol li a:hover{
            color: #086eb6;
        }

        .page_body ul li ol,
        .page_body ul li ul,
        .page_body ol li ul,
        .page_body ol li ol{
            margin: 0;
        }

        .page_body ul li ol > li{
            padding-left: 0;
            margin-left: 0.3em;
        }

        .page_body ul li ol > li::before{
            content: none;
        }

    .page_body img{
        max-width:100%;
        height: auto;
    }

    .page_body a{
        color: #003d84;
    }

    .page_body hr{
        border: none;
        border-bottom: 2px solid #ebecec;
        margin: 3em 0;
    }

    .page_body .goto_club_introduction{
        display: flex;
        justify-content: center;
        margin-top: 4em;
    }

        .page_body .goto_club_introduction a{
            display: flex;
            border-color: var(--base_color2);
            color: var(--base_color2);
            text-decoration: none;
            border: 1px solid var(--base_color2);
            font-size: 1.1em;
            padding: 0.5em 3em;
            border-radius: 100vh;
            transition: .3s all ease;
        }

        .page_body .goto_club_introduction a:hover{
            background: var(--base_color2);
            color: #fff;
        }


    /*電話番号リンクをPCでは無効化*/
    .page_body a[href^="tel"]{
        pointer-events: none;
        color: inherit;
        text-decoration: none;
    }

    .page_body table{
        margin: 0.5em 0;
        line-height: 1.6;
        border-top: 2px solid #7f7f7f;
        /*border-collapse: separate !important;*/
        position: relative;
    }
    
        .page_body table th,
        .page_body table td{
            border: 1px solid #ccc !important;
            padding: 0.8em;
        }

        .page_body table th:first-child,
        .page_body table td:first-child{
            border-left-color: rgba(255,255,255,0) !important;
        }

        .page_body table th:last-child,
        .page_body table td:last-child{
            border-right-color: rgba(255,255,255,0) !important;
        }

        .page_body table th{
            text-align: center;
            background: rgba(0,103,176,0.05);
            font-weight: 500;
        }

        .page_body table thead tr:first-child th,
        .page_body table tbody tr:first-child th{
            border-top: none !important;
        }


        .page_body table tbody th,
        .page_body table tbody td{
        }

        .page_body table tbody th{
            text-align: left;
        }

        .page_body .centering table tbody th{
            text-align: center;
        }

        .page_body table tbody td{
            background: #fff;
        }

        .page_body strong{
            font-weight: 600;
        }

        .page_body em{
            font-style: italic;
        }

        .page_body .page_back{
            margin-top: 3em;
            display: flex;
            justify-content: center;
            clear: both;
        }

            .page_body .page_back a{
                display: block;
                color: #222;
                text-decoration: none;
                border-bottom: 1px solid #222;
                font-size: 0.9em;
                font-weight: 500;
                padding: 0.1em 0.5em 0;
                transition: .3s all ease;
            }

            .page_body .page_back a:hover{
                
            }

    .page_body .figs_layout1{
        margin-bottom: 3em;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .page_body .figs_layout1 ul{
        margin-top: 2em;
        margin-left: 5em;
        margin-right: 5em;
        margin-bottom: 0.5em;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5em;
    }

        .page_body .figs_layout1 ul li{
            width: calc((100% - 1.5em) / 2);
            margin: 0;
            padding: 0;
        }

        .page_body .figs_layout1 ul li::before{
            content: none;
        }

    .page_body .figs_layout1 p{
        margin: 0;
    }

.nav-links{
    display: flex;
    justify-content: center;
    gap: 0.375em;
    margin: 2em 0;
}

    .nav-links .page-numbers{
        box-sizing: border-box;
        width: 2rem;
        height: 2rem;
        background: #eee;
        border: 1px solid rgba(255,255,255,0);
        line-height: 1;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #222;
        border-radius: 0.25rem;
        transition: .3s all ease;
    }

    .nav-links .page-numbers:hover{
        border-color: var(--base_color2);
        background: #fff;
    }

    .nav-links .page-numbers.current{
        background: var(--base_color2);
        color: #fff;
    }

    .nav-links .page-numbers.dots{
        background: none;
        width: auto;
        border-radius: 0;
    }

    .nav-links .page-numbers.dots:hover{
        background: none;
        border-color: rgba(255,255,255,0);
    }

    .nav-links .page-numbers.prev,
    .nav-links .page-numbers.next{
        background: none;
        width: auto;
        border-color: rgba(255,255,255,0);
        border-radius: 0;
    }

    .nav-links .page-numbers.prev:hover,
    .nav-links .page-numbers.next:hover{
        border-bottom-color: var(--base_color1);
    }

    .nav-links .page-numbers.prev{
        margin-right: 1em;
    }

    .nav-links .page-numbers.next{
        margin-left: 1em;
    }


/*カラム割*/
.column_wrapper.two_c{
    display: flex;
    flex-direction: row;
    gap: 3rem;
}

    .column_wrapper.two_c .column_main{
        width: auto;
        flex: 1;
    }

    .column_wrapper.two_c .column_sub{
        width: 10rem;
    }

        .column_sub .archives_box dl{
            line-height: 1.5;
            margin-bottom: 2em;
        }

        .column_sub .archives_box dl dt{
            font-weight: 500;
            border-bottom: 2px solid #cbcbcb;
            margin-bottom: 0.8em;
            text-align: center;
        }

        .column_sub .archives_box dl dd{
            padding: 0 0.5em;
        }

        .column_sub .archives_box dl dd ul{

        }

        .column_sub .archives_box dl dd ul li{
            margin-bottom: 0.3em;    
        }

        .column_sub .archives_box dl dd ul li a{
            color: #111;
            text-decoration: none;
            display: block;
            position: relative;
            padding-left: 1em;
            transition: .3s all ease;
        }

            .column_sub .archives_box dl dd ul li a::before{
                font-family: FontAwesome;
                content:"\f105";
                font-size: 0.9em;
                color: #555;
                display: inline-block;
                position: absolute;
                top: 0.05em;
                left: 0;
            }

        .column_sub .archives_box dl dd ul li a:hover,
        .column_sub .archives_box dl dd ul li a:hover::before{
            color: var(--base_color2);
        }

.index_nav_box{}

    .page_body .index_nav_box hr{
        border: none;
        border-top: 1px solid #ccc;
        margin: 4em 0 5em;
    }

    .page_body .index_nav_box h2{
        color: #212121;
        font-size: 2em;
        margin: 3em 2.5rem 1em;
        padding: 0;
        background: none;
    }

    .page_body .index_nav_box h2:nth-of-type(1){
        margin-top: 0;
    }

    .page_body .index_nav_box ul{
        margin: 0 2.5rem;
    }

    .page_body .index_nav_box ul li{
        margin: 0;
        padding: 0;
    }

        .page_body .index_nav_box ul li::before{
            content: none;
        }

    .page_body .index_nav_box .index_img_nav{
        display: flex;
        gap: 2rem;
        margin-bottom: 3em;
    }

        .page_body .index_nav_box .index_img_nav li{
            width: calc((100% - 4rem) / 3);
        }

            .page_body .index_nav_box .index_img_nav li a{
                display: flex;
                flex-direction: column;
                text-decoration: none;
            }

            .page_body .index_nav_box .index_img_nav li a .fig{
                border-radius: 0.5rem;
                margin-bottom: 0.3em;
                overflow: hidden;
                transition: .3s all ease;
            }

            .page_body .index_nav_box .index_img_nav li a:hover .fig{
                box-shadow: 0 0 5px 2px rgba(0,0,0,0.1);
            }

                .page_body .index_nav_box .index_img_nav li a .fig img{
                    transition: .3s all ease;
                }

                .page_body .index_nav_box .index_img_nav li a:hover .fig img{
                    transform: scale(1.05);
                    filter: brightness(1.1);
                }

                    .page_body .index_nav_box .index_img_nav li a .lbl{
                        color: #212121;
                        font-size: 1.25em;
                        font-weight: 700;
                        position: relative;
                    }

                    .page_body .index_nav_box .index_img_nav li a:hover .lbl{
                        color: #0f218b;
                    }

                        .page_body .index_nav_box .index_img_nav li a .lbl::after{
                            content: "";
                            width: 1rem;
                            aspect-ratio: 1 / 1;
                            background-image: url(../shared/icon/icon_arrow_blue.png);
                            background-repeat: no-repeat;
                            background-size: contain;
                            position: absolute;
                            top: calc(50% - 0.5rem);
                            right: 0;
                            transition: .3s all ease;
                        }

    .page_body .index_nav_box .index_nav_catch_img{
        overflow: hidden;
        margin: 0 2.5rem 1.5em 2.5rem;
        border-radius: 0.5rem;
    }

    .page_body .index_nav_box .index_rc_nav{
        display: flex;
        justify-content: center;
        gap: 2em;
    }

        .page_body .index_nav_box .index_rc_nav li{
           box-sizing: border-box;
           width: 17.5rem;
           height: 3.5rem;
        }

                .page_body .index_nav_box .index_rc_nav li a{
                    box-sizing: border-box;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: 100%;
                    height: 100%;
                    color: #212121;
                    border: 1px solid #9f9f9f;
                    border-radius: 100vh;
                    background: #fff;
                    text-decoration: none;
                    font-weight: 600;
                    padding-top: 0.25em;
                    position: relative;
                    transition: .3s all ease;
                }

                .page_body .index_nav_box .index_rc_nav li a::after{
                    content: "";
                    width: 1rem;
                    aspect-ratio: 1 / 1;
                    background-image: url(../shared/icon/icon_arrow_gray.png);
                    background-repeat: no-repeat;
                    background-size: contain;
                    position: absolute;
                    top: calc(50% - 0.5rem);
                    right: 0.75em;
                    transition: .3s all ease;
                }

                .page_body .index_nav_box .index_rc_nav li a:hover{
                    border-color: #0f218b;
                    color: #0f218b;
                }

                .page_body .index_nav_box .index_rc_nav li a:hover::after{
                    background-image: url(../shared/icon/icon_arrow_blue.png);
                }

    .page_body .index_nav_box .index_basic_nav{
        display: flex;
        flex-wrap: wrap;
        gap: 0 2em;
    }

        .page_body .index_nav_box .index_basic_nav > li{
            box-sizing: border-box;
            margin: 0;
            padding: 0.2em 0;
            width: calc((100% - 2em) / 2);
            border-bottom: 2px solid #ccc;
        }

        .page_body .index_nav_box .index_basic_nav > li:nth-child(1),
        .page_body .index_nav_box .index_basic_nav > li:nth-child(2){
            border-top: 4px solid #ccc;
        }

        .page_body .index_nav_box .index_basic_nav > li > a{
            box-sizing: border-box;
            display: flex;
            align-items: center;
            color: #0d228d;
            font-weight: 600;
            height: 3.6rem;
            padding: 0 2em 0 1em;
            font-size: 1.1em;
            background: #fff;
            text-decoration: none;
            position: relative;
            line-height: 1.3;
            border: 2px solid rgba(13,34,141,0);
            transition: .3s all ease;
        }

            .page_body .index_nav_box .index_basic_nav > li > a::after{
                content: "";
                width: 1rem;
                aspect-ratio: 1 / 1;
                background-image: url(../shared/icon/icon_arrow_blue.png);
                background-repeat: no-repeat;
                background-size: contain;
                position: absolute;
                top: calc(50% - 0.5rem);
                right: 0.75em;
                transition: .3s all ease;
            }

        .page_body .index_nav_box .index_basic_nav > li > a:hover{
            background: rgba(13,34,141,1);
            color: #fff;
        }

            .page_body .index_nav_box .index_basic_nav > li > a:hover::after{
                filter: brightness(0) invert(1);
            }

.products_activity_box{
    margin-top: 5em;
    display: none;
}

/*出すところだけ出す*/
.contents.thought.index .products_activity_box{
    display: block;
}

    .products_activity_box > .box_inner > ul{
        display: flex;
        justify-content: center;
        gap: 4em;
    }

    .products_activity_box > .box_inner > ul > li{}

        .products_activity_box > .box_inner > ul > li a{
            display: block;
            position: relative;
            width: 28rem;
            color: var(--base_color1);
            text-decoration: none;
            transition: .3s all ease;
        }

        .products_activity_box > .box_inner > ul > li a:hover{
            transform: scale(1.03);
        }

            .products_activity_box > .box_inner > ul > li a::before{
                content: "";
                display: block;
                width: 100%;
                aspect-ratio: 448 / 200;
                position:absolute;
                bottom: 0;
                left: 0;
                z-index: 0;
                background: rgba(0,0,0,0.1);
                border-radius: 1rem;
                transform: translate(0.25rem, 0.25rem);
                transition: .3s all ease;
            }

            .products_activity_box > .box_inner > ul > li.for_products a:hover::before{
                background: #188254;
            }

            .products_activity_box > .box_inner > ul > li.for_activity a:hover::before{
                background: #c89307;
            }

            .products_activity_box > .box_inner > ul > li a .fig{
                position: relative;
                z-index: 1;
            }

                .products_activity_box > .box_inner > ul > li a .fig img{
                    max-width: 100%;
                    height: auto;
                }

            .products_activity_box > .box_inner > ul > li a p{
                box-sizing: border-box;
                display: flex;
                justify-content: center;
                align-items: center;
                position: absolute;
                left: 0;
                bottom: 0;
                z-index: 2;
                background: rgba(255,255,255,0.8);
                width: 100%;
                height: 4.5rem;
                padding-top: 0.1em;
                line-height: 1.5;
                text-align: center;
                border-radius: 0 0 1rem 1rem;
            }

@media screen and (min-width:1px) and (max-width:1400px) {
}

@media screen and (min-width:1px) and (max-width:1280px) {

}

@media screen and (min-width:1px) and (max-width:1200px) {

}

/*ipad*/
@media screen and (min-width:1px) and (max-width:1024px){
    .column_wrapper{
        padding-left: 5vw;
        padding-right: 5vw;
    }

    .products_activity_box > .box_inner > ul{
        gap: 3em;
        padding: 0 3vw;
    }

        .products_activity_box > .box_inner > ul > li{
            width: calc((100% - 3vw - 3em) / 2);
        }

        .products_activity_box > .box_inner > ul > li a{
            width: 100%;
        }


}
/* ##########SP横向き########## */
@media screen and (min-width:1px) and (max-width:768px) {

}

/* ##########SP########## */
@media screen and (min-width:1px) and (max-width:575px) {


    .contents{
        overflow: hidden;
    }

    .topicpath{
        display: none;
    }

    .content_title{
        padding-top: 2rem;
        margin-bottom: 2rem;
    }

    .content_title .lbl_ja{
        font-size: 1.7em;
    }

    .content_title .icon{
        width: 3.5rem;
    }


    .page_body{
        line-height: 1.6;
        margin: 0;
    }

    .index .page_body{
        margin: 0;
    }

    .page_body h2{
    }

    .page_body h3{
        font-size: 1.3em;
        margin: 1.5em 0 1.3em 0;
    }

    .page_body h4{
        font-size: 1.15em;
        margin: 1.5em 0 0.7em 0;
    }

    .page_body h5{
        font-size: 1.05em;
        margin: 1em 0 0.4em 0;
    }

    .page_body p{
        margin: 0 0 1em;
    }

    .page_body ul,
    .page_body ol{
        margin: 0.5em 0;
    }

    .page_body hr{
        margin: 2em 0;
    }

    .page_body .sub_page_list ul li{
        font-size: 1.1em;
    }


    /*カラム割*/
    .column_wrapper.two_col{
        flex-direction: column;
        padding-top: 1rem;
    }

    .column_wrapper.two_col .column_main{
        flex: initial;
    }

    .column_wrapper.two_col .column_sub{
        width: auto;
        margin-left: 0;
        margin-top: 3em;
    }

    .column_wrapper.two_col .column_sub .page_nav{
        position: relative;
        top: 0;
        border-top: 1px solid #ccc;
        padding-top: 1em;
    }

    .index .column_wrapper.two_col .column_sub .page_nav{
        display: none;
    }

    .column_wrapper.two_col .column_sub .page_nav > ul > li{
        display: none;
    }

    .column_wrapper.two_col .column_sub .page_nav > ul > li.active{
        display: block;
    }


    .column_sub .archives_box dl dd ul{
        display: flex;
        flex-wrap: wrap;
        gap: 0 1em;
    }

        .column_sub .archives_box dl dd ul li{
            width: calc((100% - 1em) / 2);
        }

        .column_sub .archives_box dl.archive_year dd ul li{
            width: calc((100% - 3em) / 4);
        }

    .products_activity_box > .box_inner > ul{
        flex-direction: column;
        padding: 0 5vw;
        gap: 1.75em;
    }

        .products_activity_box > .box_inner > ul > li{
            width: 100%;
        }

    .page_body a[href^="tel"] {
        pointer-events:initial;
        cursor: pointer;
    }




}


/* ##########印刷用########## */
@media print{
    .column_wrapper{
        width: calc(100% - 4vw);
    }
}