/*    基本CSS設定    */
body{
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;/*フォント*/
}
img{
    pointer-events: none;
}
a{
    width: 100%;
    height: 100%;
}
/*　　ヘッダー　　*/
#header{
    width: 100%;
    position:fixed;
    top:0;
    left:0;
    z-index: 21;
}
.header_wrapper{
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
}
/*ロゴ*/
#logo{
    font-size: 0;
}
.logo_url{
    display: block;
}
/*グローバルメニュー*/
.menu{
    display: flex;
}
.main_menu_item{
    width: 100%;
    color: #333;
    font-size: 16px;
    font-weight: 700;
}
.main_menu_language{
    color: #333;
    border-radius: 100px;
    cursor: pointer;
    position: relative;
}
.main_menu_language::after{
    content: "▼";
    font-size: 14px;
    margin: 2px 0 0 0;
    position: absolute;
    right: 0px;
}
/*main*/
.page_wrap {
    margin: 42px auto;
}
.breadcrumb ol{
    display: flex;
}
.breadcrumb li::before {
    content: ">";
}
.breadcrumb li:first-child::before {
    content: "";
}
.breadcrumb a{
    font-size: 13px;
    color: #333;
    padding: 0 10px;
}
@media screen and (min-width:891px) {
    .page_wrap {
        max-width: 1200px;
        width: calc(100% - 60px);
        padding: 0 30px;
    }
    .breadcrumb{
        padding: 14px 0 0;
    }
}
@media screen and (max-width:890px) {
    .page_wrap {
        width: 100%;
    }
    .breadcrumb{
        padding: 10px 0 0;
    }
}
/*パソコン*/
@media screen and (min-width: 1025px) {
    /*スマホ非表示*/
    .sp{
        display: none;
    }
    /*ヘッダー*/
    #header{
        height: 80px;
    }
    .header_wrapper{
        padding: 0 40px;
    }
    /*ロゴ*/
    #logo{
        margin: 22px 0;
    }
    .logo_img{
        width: 200.391px;
        height: 36px;
    }
    /*グローバルメニュー*/
    #navigation{
        width: 700px;
    }
    .menu{
        justify-content: space-around;
    }
    .main_menu_item{
        height: 80px;
        line-height: 80px;
    }
    .main_menu_item:hover{
        color: #15B1E3;
    }
    .main_menu_language:hover{
        color: #15B1E3;
    }
    /*ハンバーガーメニュー背景*/
    #hm_bg{
        display: none;
    }
}
/*タブレット*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
    /*ヘッダー*/
    #header{
        height: 60px;
    }
    .header_wrapper{
        padding: 0 20px;
    }
    /*ロゴ*/
    #logo{
        margin: 12px 0;
    }
    .logo_img{
        width: 200.391px;
        height: 36px;
    }
    /*グローバルメニュー*/
    #navigation{
        padding: 60px 0 0 0;
    }
    .main_menu_item {
        width: 100%;
        color: #333;
        font-size: 20px;
        font-weight: 700;
    }
    /*ハンバーガーメニュー*/
    #hamburger_menu {
        width: 36px;
        height: 28px;
        top: 16px;
        right: 18px;
    }
    .hamburger_line,
    .hamburger_line::before,
    .hamburger_line::after {
        width: 36px;
        height: 4px;
    }
    .hamburger_line::before {
        top: -11px;
    }
    .hamburger_line::after {
        top: 11px;
    }
}
@media screen and (max-width: 1024px) {
    /*グローバルメニュー*/
    #navigation{
        display: inline;
        width: 320px;
        height: 100%;
        background: #ffffff;
        position: fixed;
        top: 0;
        right: -320px;
        z-index: 22;
        transition: .3s;
    }
    .hmon #navigation{
        display: inline;
        right: 0;
        transition: .3s;
    }
    .menu{
        width: 100%;
        height: 100%;
        padding: 0 30px;
        flex-flow: column;
    }
    .main_menu_item{
        display: block;
        height: 100%;
        line-height: 50px;
    }
    .main_menu_language{
        line-height: 60px;
        padding: 0 24px 0 0;
    }
    /*ハンバーガーメニュー背景*/
    #hm_bg{
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.8);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 21;
        opacity: 0;
        transition: all .3s ease;
        pointer-events: none
    }
    .hmon #hm_bg{
        opacity: 1;
        transition: all .3s ease;
        pointer-events:all
    }
    /*ハンバーガーメニュー*/
    #hamburger_menu {
        display: block;
        background: transparent;
        position: absolute;
        z-index: 30;
        text-decoration: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        cursor: pointer;
        transition: all .3s ease-in-out;
    }
    .hamburger_line {
        background: #000000;
        margin: auto;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        transition: inherit;
    }
    .hamburger_line::before,
    .hamburger_line::after {
        content: '';
        display: block;
        background: #000000;
        position: absolute;
        transition: inherit;
    }
    #hamburger_menu[aria-expanded="true"] .hamburger_line {
        background: transparent;
    }
    #hamburger_menu[aria-expanded="true"] .hamburger_line::before,
    #hamburger_menu[aria-expanded="true"] .hamburger_line::after {
        top: 0;
    }
    #hamburger_menu[aria-expanded="true"] .hamburger_line::before {
        transform: rotate(45deg);
    }
    #hamburger_menu[aria-expanded="true"] .hamburger_line::after {
        transform: rotate(-45deg);
    }
    .hamburger_text {
        position:absolute;width:0;height:0;overflow:hidden
    }
}
/*スマートフォン*/
@media screen and (max-width: 767px) {
    /*ヘッダー*/
    #header{
        height: 54px;
    }
    .header_wrapper{
        padding: 0 14px;
    }
    /*ロゴ*/
    #logo{
        margin: 12px 0;
    }
    .logo_img{
        width: 167px;
        height: 30px;
    }
    /*グローバルメニュー*/
    #navigation{
        padding: 54px 0 0 0;
    }
    /*ハンバーガーメニュー*/
    #hamburger_menu {
        width: 30px;
        height: 21px;
        top: 16.5px;
        right: 14px;
    }
    .hamburger_line {
        width: 30px;
        height: 3px;
    }
    .hamburger_line::before,
    .hamburger_line::after {
        width: 30px;
        height: 3px;
    }
    .hamburger_line::before {
        top: -9px;
    }
    .hamburger_line::after {
        top: 9px;
    }
}
