@charset "utf-8";

/*********************************************************************
*
*  For ALL
*
*********************************************************************/

/* ---------------------------------------------------- */
/* html body */
/* ---------------------------------------------------- */
html {
    width: 100%;
    height: 100%;
    -webkit-text-size-adjust: 100%;
    /* iPhone */
    overflow-y: scroll;
    font-size: 62.5%;
}

body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    color: #0A1733;
    line-height: 1.5;
    font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    font-weight: 400;
    background-color: #FFF;
    overflow: hidden;
}

@media (min-width: 768px) {
    body {
        min-width: 1180px;
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    body {
        min-width: 320px;
        font-size: 1.5rem;
    }
}

/* ---------------------------------------------------- */
/* img */
/* ---------------------------------------------------- */
img {
    display: block;
    width: 100%;
    height: auto;
}

/* ---------------------------------------------------- */
/* a */
/* ---------------------------------------------------- */
a {
    color: #0A1733;
    text-decoration: none;
    outline: none;
    transition: 0.3s ease-in-out;
}

a:hover {
    text-decoration: none;
}

/* ---------------------------------------------------- */
/* body_wrap */
/* ---------------------------------------------------- */
.body_wrap {
    max-height: 999999px;
    /* android chrome フォントサイズバグ回避 */
    opacity: 0;
}

/* ---------------------------------------------------- */
/* contents_wrap */
/* ---------------------------------------------------- */
.contents_wrap {
    padding-top: 100px;
}

@media (max-width: 767px) {
    .contents_wrap {
        padding-top: 40px;
    }
}

/* ---------------------------------------------------- */
/* header */
/* ---------------------------------------------------- */
@media (min-width: 768px) {
    header {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        min-width: 1180px;
        background-color: #FFF;
        z-index: 100;
    }

    header .header_inner {
        position: relative;
        height: 100px;
    }

    header .site_logo {
        position: absolute;
        left: 0;
        top: 0;
        display: block;
        width: 316px;
        height: 100%;
        background-color: #0A174B;
        background-image: url(../img/logo/kmc_1_1.svg);
        background-size: 184px auto;
        background-position: center;
        background-repeat: no-repeat;
    }

    header .btn_toggle_menu {
        display: none;
    }

    header .toggle_wrap {
        display: block !important;
        opacity: 1 !important;
    }

    header .toggle_wrap .logo {
        display: none;
    }

    header .nav_h_wrap {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    header .nav_h_wrap>ul {
        display: flex;
        justify-content: center;
    }

    header .nav_h_wrap>ul+ul {
        margin-top: 10px;
    }

    header .nav_h_wrap>ul>li+li {
        margin-left: 20px;
        padding-left: 20px;
        border-left: 2px solid #0A1733;
    }

    header .nav_h_wrap>ul>li>a {
        display: block;
        height: 100%;
        font-size: 2.4rem;
        font-weight: 800;
        line-height: 20px;
        letter-spacing: 0.15em;
        text-decoration: none;
    }

    header .nav_hs_wrap {
        position: absolute;
        right: 35px;
        top: 50%;
        transform: translateY(-50%);
    }

    header .nav_hs_wrap>ul {
        display: flex;
    }

    header .nav_hs_wrap>ul>li+li {
        margin-left: 15px;
    }

    header .nav_hs_wrap a {
        display: block;
        width: 54px;
        height: 54px;
        background-color: #0A1733;
        border-radius: 50%;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    header .nav_hs_wrap a.tw {
        background-image: url(../img/ico/tw_1.svg);
    }

    header .nav_hs_wrap a.in {
        background-image: url(../img/ico/in_1.svg);
    }
    header .nav_hs_wrap a.yt {
        background-image: url(../img/ico/yt_1.svg);
    }
}

@media (max-width: 1300px) {
    header .nav_h_wrap>ul>li+li {
        margin-left: 15px;
        padding-left: 15px;
    }
    header .nav_h_wrap>ul>li>a {
        font-size: 2.0rem;
    }
}

@media (max-width: 767px) {
    header {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        background-color: #FFF;
        z-index: 100;
    }

    header .header_inner {
        position: relative;
        height: 40px;
    }

    header .site_logo {
        position: absolute;
        left: 0;
        top: 0;
        display: block;
        width: 110px;
        height: 100%;
        background-color: #0A174B;
        background-image: url(../img/logo/kmc_1_1.svg);
        background-repeat: no-repeat;
        background-size: 70% auto;
        background-position: center;
    }

    header .btn_toggle_menu {
        position: absolute;
        right: 0;
        top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 55px;
        height: 100%;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        outline: none;
        z-index: 110;
    }

    header .btn_toggle_menu div {
        position: relative;
        width: 28px;
        height: 20px;
    }

    header .btn_toggle_menu div>span span,
    header .btn_toggle_menu div>span:before,
    header .btn_toggle_menu div>span:after {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        display: block;
        width: 100%;
        height: 2px;
        background-color: #0A174B;
        transform-origin: center center;
        transition: 0.3s ease-in-out;
    }

    header .btn_toggle_menu div>span span {
        transform: translateY(-1px);
    }

    header .btn_toggle_menu div>span:before {
        transform: translateY(-9px);
    }

    header .btn_toggle_menu div>span:after {
        transform: translateY(7px);
    }

    header .btn_toggle_menu.is_show div>span span,
    header .btn_toggle_menu.is_show div>span:before,
    header .btn_toggle_menu.is_show div>span:after {
        width: 100% !important;
    }

    header .btn_toggle_menu.is_show div>span span {
        opacity: 0;
    }

    header .btn_toggle_menu.is_show div>span:before {
        transform: translateY(-50%) rotate(-45deg);
    }

    header .btn_toggle_menu.is_show div>span:after {
        bottom: 0;
        transform: translateY(-50%) rotate(45deg);
    }

    header .toggle_wrap {
        display: none;
        position: fixed;
        left: 0;
        top: 40px;
        width: 100%;
        height: calc(100% - 40px);
        background-color: #FFF;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 100;
    }

    header .toggle_wrap .toggle_inner {
        padding: 40px 0;
    }

    header .nav_h_wrap {
        padding: 20px 0;
    }

    header .nav_h_wrap>ul+ul {
        margin-top: 20px;
    }

    header .nav_h_wrap>ul>li+li {
        margin-top: 20px;
    }

    header .nav_h_wrap>ul>li>a {
        display: block;
        font-size: 2.2rem;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0.1em;
        text-decoration: none;
        text-align: center;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        outline: none;
    }

    header .nav_hs_wrap {
        display: none;
    }
}

/* ---------------------------------------------------- */
/* footer */
/* ---------------------------------------------------- */
footer {
    position: relative;
    padding: 30px 0;
    background-color: #c0c1c2;
}

footer .footer_inner {
    position: relative;
    margin: 0 auto;
    width: 1000px;
}

footer .nav_fs_wrap {
    display: none;
}

footer .sponsor_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

footer .sponsor_wrap .ttl {
    font-size: 1.4rem;
}

footer .sponsor_wrap>ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .sponsor_wrap>ul>li {
    padding: 0 15px;
}


footer .sponsor_wrap img {
    width: auto;
    height: 50px;
}

footer .copyright {
    font-size: 1.2rem;
    text-align: center;
}

footer .btn_fixed {
    display: none;
    position: fixed;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 160px;
    background-image: url(../img/bnr/fixed_1.svg);
    background-size: 50% auto;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #0A174B;
    transition: 0.3s ease-in-out;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    z-index: 10;
}

.is_page_scroll footer .btn_fixed {
    right: 0;
}

@media (max-width: 767px) {
    footer {
        padding: 25px 0 20px;
    }

    footer .footer_inner {
        width: calc(100% - 40px);
    }

    footer .nav_fs_wrap {
        display: block;
        margin-bottom: 20px;
    }

    footer .nav_fs_wrap>ul {
        display: flex;
        justify-content: center;
    }

    footer .nav_fs_wrap>ul>li+li {
        margin-left: 15px;
    }

    footer .nav_fs_wrap a {
        display: block;
        width: 40px;
        height: 40px;
        background-color: #FFF;
        border-radius: 50%;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    footer .nav_fs_wrap a.tw {
        background-image: url(../img/ico/tw_2.svg);
    }

    footer .nav_fs_wrap a.in {
        background-image: url(../img/ico/in_2.svg);
    }
    footer .nav_fs_wrap a.yt {
        background-image: url(../img/ico/yt_2.svg);
    }
    footer .sponsor_wrap {
        display: block;
        margin-bottom: 20px;
    }
    
    footer .sponsor_wrap .ttl {
        margin-bottom: 5px;
        text-align: center;
    }
    
    footer .sponsor_wrap>ul>li {
        padding: 0 10px;
    }
    
    footer .sponsor_wrap img {
        height: 40px;
    }
    footer .copyright {
        font-size: 1.0rem;
    }

    footer .btn_fixed {
        width: 50px;
        height: 100px;
    }
}