@charset "utf-8";
/*--base_sp.css-スマートフォン用の基本スタイルを定義------*/

/* スマートフォン用の基本スタイル */
@media screen and (min-width:1px) and (max-width:479px) {
    html {
        font-size: 3.6vw;
    }

    body{
        padding-top: 7.5rem;
    }

    .header_inner{
        display: block;
        height: 7.5rem;
        padding: 0.3rem 0.5rem;
    }

    .site_identity{
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
        width: 100%;
    }

    .header_logo{
        margin: 0 auto;
    }

    /*スマホのみ表示*/
    .site_ttl_en{
        display: block;
        font-size: 0.5rem;
        margin-right: auto;
    }

    .header_logo{
        color: #222;
        padding-right: 2rem;
        font-weight: 600;
    }

    .logo_image{
        width: 3.25rem;
        height: auto;
    }

    .site_title.sp{
        display: block;
        line-height: 1.4;
    }

    .site_title.sp .lbl01{
        font-size: 1.25rem;

    }

    .site_title.sp .lbl02{
        font-size: 1.65rem;
    }

    .site_title.pc{
        display: none;
    }

    .site_ttl_kana{
        display: block;
        font-size: 0.8rem;
        margin: 0 auto;
        color: #0f57a5;
        text-align: center;
    }

    /*.nav_oc*/
    .nav_oc{
        width: 3.875rem;
        height: 3.875rem;
        position: fixed;
        top: 0.8rem;
        right: 0.5rem;
    }

    .menu-trigger{
        padding-bottom: 0.8rem;
    }

    .menu-trigger .lines{
        width: 1.5rem;
        height: 0.9rem;
        margin-bottom: 0.2rem;
    }

    .menu-trigger .lines span{
        width: 1.5rem;
        height: 1px;
    }

    .menu-trigger .lbl{
        font-size: 0.7rem;
    }

    .menu-trigger.active .lines span:nth-of-type(1){
        transform: rotate(28deg) scaleX(1.1);
    }

    .menu-trigger.active .lines span:nth-of-type(3){
        transform: rotate(-28deg) scaleX(1.1);
    }

    .footer_main{
        padding: 2rem 0 1rem 0;
    }

    .footer_main_inner{
        padding: 0 5vw;
    }

    .footer_info{
        width: 100%;
        padding: 0 0 1rem 0;
        align-items: center;
    }

    .footer_logo{
        text-align: center;
        padding-right: 2rem;
    }

    .footer_address p{
        padding-left: 0;
        text-align: center;
    }

    .footer_copyright{
        padding: 0 5vw;
        text-align: left;
    }

    /*ページトップ*/
    .pagetop{
        width:16vw;
        height:16vw;
        bottom:16vw;
        right:4vw;
    }

    /*ヘッダ固定によるアンカーずれ対応*/
    *[id^="anc_"]{
        padding-top: 7.5rem;
        margin-top:-7.5rem;
    }

    br.sp{
        display: block;
    }
    

}