@charset "utf-8";
@import url("reset.css");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Zen+Maru+Gothic:wght@400;500;700&display=swap');
/*--京base.css--*/
:root {
    --base_color1: #FFE696; /*マイページのデフォルト*/
    --base_color2: #ffdc6b; /*マイページのhover*/
    --base_color3: #34495E; /*ハンバーガーメニューのデフォルトおよびページトップ*/
    --base_color4: #123b64; /*ハンバーガーメニューのhover*/
    --base_color5: #21578c; /*フッター*/
    --base_color6: #5475aa; /*メニューのhoverライン色、ハンバーガーメニュー項目のhover*/
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}
input[type="submit"]:focus,
input[type="button"]:focus {
    outline-offset: -2px;
}

html {
    font-size: 16px;
}

/*
font-family: "Noto Sans JP", sans-serif;
font-family: "Zen Maru Gothic", sans-serif;
font-family: "Poppins", sans-serif;
*/

body {
    width: 100%;
    height: 100%;
    color: #111;
    font-family: "Noto Sans JP", sans-serif;
    background-color: #fff;
    line-height: 1.0;
    -webkit-text-size-adjust: 100%;
}

button,
input[type="search"],
input[type="text"],
input[type="password"],
input[type="submit"]{
    font-family: 'Noto Sans JP', sans-serif;
    -webkit-appearance: none;
    appearance: none;
}

img{
    vertical-align:bottom;
}

#container{
    width: 100%;
    position: relative;
}

/*----------header----------*/
header{
    box-sizing: border-box;
    width: 100%;
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    transition: .5s all ease;
}

    header > .box_inner{
        height: 5rem;
        padding-left: 2.5vw;
        padding-right: 6.5rem;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: .3s all ease;
    }

        header > .box_inner img{
            max-width: 100%;
            height: auto;
        }

        header > .box_inner .site_title{}

                header > .box_inner .site_title a{
                    display: flex;
                    align-items: center;
                    text-decoration: none;
                    gap: 1rem;
                }

                    header > .box_inner .site_title a .fig{
                        width: 8.5rem;
                    }

                        header > .box_inner .site_title a .fig img{
                            max-width: 100%;
                            height: auto;
                        }

                    header > .box_inner .site_title a .lbl{
                        line-height: 1.3;
                        font-size: 0.94rem;
                        color: #1a1a1a;
                    }

        header > .box_inner .navs{
            display: flex;
            align-items: center;
            height: 100%;
        }

        header > .box_inner .global_nav{
            margin-right: 2rem;
        }

            header > .box_inner .global_nav ul{
                display: flex;
            }

                header > .box_inner .global_nav ul li{}

                    header > .box_inner .global_nav ul li a{
                        position: relative;
                        color: #1a1a1a;
                        font-weight: 600;
                        text-decoration: none;
                        padding: 1em 1.25em;
                    }

                        header > .box_inner .global_nav ul li a::before{
                            content: "";
                            width: calc(100% - 2em);
                            height: 0;
                            border-bottom: 2px solid var(--base_color6);
                            position: absolute;
                            bottom: 0.5em;
                            left: 1em;
                            transition: .4s all ease;
                            opacity: 0;
                            transform: scaleX(0);
                        }

                        header > .box_inner .global_nav ul li a:hover::before{
                            opacity: 1;
                            transform: scaleX(1);
                        }

                        header > .box_inner .global_nav ul li a::after{
                            content: "";
                            width: 0;
                            height: 1em;
                            border-right: 2px solid rgba(0,0,0,0.25);
                            position: absolute;
                            top: 1.3em;
                            right: 0;
                        }

                        header > .box_inner .global_nav ul li:last-child a::after{
                            content: none;
                        }

            header > .box_inner .navs .btn_mypage{
                width: 6.5rem;
                height: 100%;
            }

                header > .box_inner .navs .btn_mypage a{
                    box-sizing: border-box;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: flex-end;
                    gap: 0.625rem;
                    background: var(--base_color1);
                    height: 100%;
                    padding-bottom: 0.5rem;
                    text-decoration: none;
                    transition: .4s all ease;
                }

                header > .box_inner .navs .btn_mypage a:hover{
                    background: var(--base_color2);
                }

                    header > .box_inner .navs .btn_mypage a .fig{
                        width: 1.5rem;
                    }

                    header > .box_inner .navs .btn_mypage a .lbl{
                        color: #1a1a1a;
                        font-size: 0.9rem;
                    }


/*small_header*/
.small_header header {
    box-shadow: 0 5px 10px -10px rgb(0 0 0 / 30%);
}
 
/*----------contents----------*/
.contents{
    position:relative;
    top:0;
    left:0;
    z-index:2;
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: #F4F4F4;
    line-height: 1.6;
}

    .contents .page_body{
        /*overflow-x: hidden;*/
    }


/*-----footer-----*/
footer{
    background-color: var(--base_color5);
    border-top: 0.5rem solid #fff;
}

    footer > .box_inner {
        padding: 2rem;
    }

        footer .copyright{
            line-height: 1.4;
            font-size: 0.8rem;
            text-align: center;
            color: #fff;
        }

/*-----nav_oc-----*/
.nav_oc{
    width: 6.5rem;
    height: 5rem;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 11;
    transition: .3s all ease;
}

    .menu-trigger{
        box-sizing: border-box;
        width: 100%;
        height: 100%;
        background: none;
        border: none;
        cursor: pointer;
        outline: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        gap: 0.625rem;
        padding: 0 0 0.5rem 0;
        position: relative;
        background: var(--base_color3);
        transition: .3s all ease;
    }

    .menu-trigger:hover{
        background: var(--base_color4);
    }

        .menu-trigger .lines{
            position: relative;
            display: block;
            width: 1.5rem;
            height: 1rem;
            transition: .3s all ease;
        }

            .menu-trigger .lines span {
                display: inline-block;
                transition: all .4s;
                box-sizing: border-box;
                background-color: #fff;
                position: absolute;
                width: 1.5rem;
                left: 0;
                height: 1px;
            }

            .menu-trigger .lines span:nth-of-type(1) {
                top: 0;
            }

            .menu-trigger .lines span:nth-of-type(2) {
                top: calc(50% - 1px);
            }
            .menu-trigger .lines span:nth-of-type(3) {
                bottom: 0;
            }

            .menu-trigger.active .lines span:nth-of-type(1) {
                transform: rotate(30deg) scaleX(1.3);
                transform-origin: left top;
            }

            .menu-trigger.active .lines span:nth-of-type(2) {
                opacity: 0;
            }

            .menu-trigger.active .lines span:nth-of-type(3) {
                transform: rotate(-30deg) scaleX(1.3);
                transform-origin: left bottom;
            }

        .menu-trigger .lbl{
            color: #fff;
        }

/*-----side_nav-----*/
.side_nav{
    box-sizing: border-box;
    position: fixed;
    top: 5rem;
    right: 0;
    z-index: -1;
    opacity: 0;
    width: 20rem;
    transition: .3s all ease;
    background: rgba(255,255,255,0);
    display: block;
    flex-direction: column;
    align-items: center;
    padding-top: 1.5rem;
}

.side_nav.active{
    z-index: 10;
    opacity: 1;
    background: rgba(255,255,255,0.99);
    box-shadow: 0 1rem 1rem -0.5rem rgba(0,0,0,0.2);
}

    .side_nav a{
        color: #111;
        text-decoration: none;
    }

    .side_global_nav{
        line-height: 1.4;
        padding: 0 0 1.5rem;
    }

        .side_global_nav ul li{
            font-size: 1.4rem;
            font-weight: 500;
        }

        .side_global_nav ul li a{
            display: block;
            padding: 0.5em 1.5rem;
            transition: .3s all ease;
        }

        .side_global_nav ul li a:hover{
            background: var(--base_color6);
            color: #fff;
        }

            .side_global_nav ul li ul{
                padding-left: 1em;
            }

                .side_global_nav ul li ul li a{
                    font-size: 0.84em;
                    padding: 0.5em;
                }


/*ページトップ*/
.pagetop{
    width:5rem;
    height:5rem;
    position:fixed;
    bottom:3rem;
    right:3.75rem;
     transform:translateY(100px);
    transition:.3s all ease;
    opacity:0;
    z-index: -1;
}

.pagetop.show{
    transform:translateY(0);
    opacity:1;
    z-index:10;
}

    .pagetop a{
        box-sizing: border-box;
        display:flex;
        justify-content: center;
        align-items: center;
        transition:.5s all ease;
        width:100%;
        height:100%;
        text-decoration:none;
        border-radius: 50%;
        background: var(--base_color3);
        padding-bottom: 0.2rem;
    }
    
    .pagetop a:hover{
        filter: brightness(1.1);
    }


    .pagetop a:before{
        font-family: FontAwesome;
        content:"\f106";
        color: #fff;
        font-size: 2.4rem;
    }

/*モーダル*/
.mfp-content{
    max-width: 500px;
}

.mypage_login_box{
    background: #F4F4F4;
    border-radius: 1rem;
    line-height: 1.5;
    padding: 2em;
}

    .mypage_login_box > dl{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .mypage_login_box > dl > dt{
            font-size: 1.2em;
            font-weight: 700;
            margin-bottom: 0.5em;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

            .mypage_login_box > dl > dt::before{
                content: "";
                display: inline-block;
                width: 1.5rem;
                aspect-ratio: 1 / 1;
                background-image: url(../shared/icon_mypage.png);
                background-repeat: no-repeat;
                background-size: contain;
            }

        .mypage_login_box > dl > dd{}

            .mypage_login_box > dl > dd .login_message{
                color: #c40026;
                font-weight: 500;
                text-align: center;
                margin-bottom: 0.5em;
            }

            .mypage_login_box > dl > dd .input_box{
                display: flex;
                flex-direction: column;
                gap: 1em;
                margin-top: 0.5em;
                margin-bottom: 1.5em;
            }

            .mypage_login_box > dl > dd .input_box dl{
                display: flex;
                flex-direction: column;
                align-items: center;
            }


                .mypage_login_box > dl > dd .input_box dl dt{
                    font-weight: 500;
                    margin-bottom: 0.2em;
                }

                .mypage_login_box > dl > dd .input_box dl input[type="text"],
                .mypage_login_box > dl > dd .input_box dl input[type="password"]{
                    box-sizing: border-box;
                    font-size: 1.1em;
                    padding: 0.5em;
                    width: 20em;
                    border: 1px solid var(--base_color3);
                    border-radius: 0.25rem;
                }

            .mypage_login_box > dl > dd .submit_box{
                display: flex;
                justify-content: center;
            }

                .mypage_login_box > dl > dd .submit_box button{
                    height: 3rem;
                    font-size: 1em;
                    padding: 0 3em 0 3.1em;
                    letter-spacing: 0.1em;
                    border-radius: 100vh;
                    background: var(--base_color3);
                    color: #fff;
                    border: none;
                    font-weight: 500;
                    cursor: pointer;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 0.5em;
                    transition: .3s all ease;
                }

                .mypage_login_box > dl > dd .submit_box button:hover{
                    opacity: 0.9;
                    box-shadow: 3px 3px 0 0 rgba(0,0,0,0.2);
                }

                    .mypage_login_box > dl > dd .submit_box button::before{
                        font-family: FontAwesome;
                        content:"\f090";
                        font-size: 1.5em;
                        font-weight: normal;
                    }


/*ヘッダ固定によるアンカーずれ対応*/
*[id^="anc_"]{
    padding-top: 150px;
    margin-top:-150px;
    display: block;
}


/*改行のPC,SPでの表示切替*/
br.pc,
img.pc,
span.pc{
    display:inline;
}

br.sp,
img.sp,
span.sp{
    display:none;
}

.ta_center{
    text-align:center;
}

.ta_left{
    text-align:left;
}

.ta_right{
    text-align:right;
}

/*WP汎用*/
.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.alignright {
  float: right;
  margin-bottom: 20px;
  margin-left: 20px;
}
.alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
.wp-caption,
[class*='wp-image'] {
  display: block;
  max-width: 100% !important;
  /*margin-top: 1.5em;*/
  text-align: center;
  margin: 0 auto;
}
.wp-caption-text {
  margin-top: 0;
}

.wp-caption{
    width: auto !important;
}

a[href^="tel:"]{
    pointer-events: none;
}

/*1280px以下*/
@media screen and (min-width:1px) and (max-width:1280px){
}

/*1200px以下*/
@media screen and (min-width:1px) and (max-width:1200px){
}

/*1100px以下*/
@media screen and (min-width:1px) and (max-width:1100px){
}

/*ipad*/
@media screen and (min-width:1px) and (max-width:1024px){
    html {
        font-size: 1.6vw;
    }
}

/* ##########印刷用########## */
@media print{
    html{
        width: 1024px;
    }
    
    header{
        position:relative;
    }
   
    
    .contents{
        padding-top: 0;
    }
    
    .pagetop{
        display: none;
    }
    
}