@charset "utf-8";

/* ---------------------------------------------------- */
/* 変数 */
/* ---------------------------------------------------- */
:root {
    --co_1: #000;
    --co_2: #fff;
    --co_3: #3b4043;
    --co_4: #004bb1;
    --co_5: #cdd6dd;
    --co_6: #f0f3f5;

    --ff_go_1: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    --ff_mi_1: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    --ff_mi_2: "Shippori Mincho", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    --ff_en_1: "Montserrat", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

/* ---------------------------------------------------- */
/* html body */
/* ---------------------------------------------------- */
html {
    width: 100%;
    height: 100%;
    -webkit-text-size-adjust: 100%;
    /* iPhone */
}

body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    color: var(--co_3);
    line-height: 1.5;
    font-family: var(--ff_mi_1);
    font-weight: 400;
    background-color: var(--co_2);
}

@media (min-width: 1000px) {
    body {
        min-width: 1140px;
        font-size: 16px;
    }
}

@media (max-width: 999px) {
    body {
        min-width: 320px;
        font-size: 14px;
    }
}

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

/* ---------------------------------------------------- */
/* a */
/* ---------------------------------------------------- */
a {
    color: var(--co_3);
    text-decoration: none;
    outline: none;
    transition: 0.3s ease-in-out;
}

a:hover {
    text-decoration: none;
}

/* ---------------------------------------------------- */
/* body */
/* ---------------------------------------------------- */
.body {
    max-height: 999999px;
    /* android chrome フォントサイズバグ回避 */
    opacity: 0;
}
@media (max-width: 999px) {
    .body::before {
        content: "";
        position: fixed;
        left: 0;
        top: 0;
        display: block;
        width: 100%;
        height: 100%;
        background-color: var(--co_2);
        z-index: 90;
        opacity: 0;
        pointer-events: none;
        transition: 0.3s ease-in-out;
    }
    .is_megamenu_show .body::before {
        opacity: 0.8;
    }
}

/* ---------------------------------------------------- */
/* contents */
/* ---------------------------------------------------- */
@media (min-width: 1000px) {
    /* .page_cp .contents {
        padding-top: 100px;
    } */
}

@media (max-width: 999px) {
    /* .page_cp .contents {
        padding-top: 50px;
    } */
}

/* ---------------------------------------------------- */
/* .header_1 */
/* ---------------------------------------------------- */

@media (min-width: 1000px) {
    .header_1 {
        position: fixed;
        left: 50%;
        top: 20px;
        transform: translateX(-50%);
        width: calc(100% - 40px);
        min-width: 1100px;
        height: 100px;
        background-color: rgba(255, 255, 255, 0.9);
        border-radius: 50px;
        overflow: hidden;
        z-index: 100;
        transition: 0.5s ease-in-out;
    }
    .is_page_scr .header_1 {
        box-shadow: 0px 0px 10px 0px rgba(0, 75, 177, 0.5);
    }

    .header_1 .header_inner {
        position: relative;
        width: 100%;
        height: 100%;
    }
    .header_1 .ttl_1 {
        position: absolute;
        left: 55px;
        top: 50%;
        transform: translateY(-50%);
        width: 200px;
    }
    .header_1 .ttl_1 a {
        display: block;
    }
    .header_1 .btn_toggle_megamenu {
        display: none;
    }

    .header_1 .toggle_megamenu {
        display: block !important;
    }

    .header_1 .nav_1 {
        position: absolute;
        right: 280px;
        top: 50%;
        transform: translateY(-50%);
    }
    .header_1 .nav_1 > ul {
        display: flex;
        justify-content: flex-end;
    }
    .header_1 .nav_1 > ul > li + li {
        margin-left: 40px;
    }

    .header_1 .nav_1 a {
        display: flex;
        align-items: center;
        line-height: 1;
        text-decoration: none;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        outline: none;
    }

    .header_1 .nav_1 a:hover {
        opacity: 0.6;
    }

    .header_1 .btn_1 {
        position: absolute;
        right: 0;
        bottom: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 240px;
        height: 100%;
        color: var(--co_2);
        line-height: 1;
        letter-spacing: 0.1em;
        background-color: var(--co_4);
        overflow: hidden;
        z-index: 200;
    }
    .header_1 .btn_1:hover {
        background-color: var(--co_5);
    }
}
@media (min-width: 1000px) and (max-width: 1350px) {
    .header_1 .nav_1 > ul > li + li {
        margin-left: 20px;
    }
}
@media (max-width: 999px) {
    .header_1 {
        position: fixed;
        left: 10px;
        top: 10px;
        width: calc(100% - 20px);
        height: 50px;
        background-color: var(--co_2);
        border-radius: 25px;
        z-index: 100;
        transition: 0.3s ease-in-out;
    }
    .is_page_scr .header_1 {
        box-shadow: 0px 0px 10px 0px rgba(0, 75, 177, 0.5);
    }
    .is_megamenu_show .header_1 {
        box-shadow: 0px 0px 0px 0px rgba(0, 75, 177, 0.5);
    }
    .header_1 .header_inner {
        position: relative;
        width: 100%;
        height: 100%;
    }
    .header_1 .ttl_1 {
        position: absolute;
        left: 30px;
        top: 50%;
        transform: translateY(-50%);
        display: block;
        width: 100px;
    }
    .header_1 .ttl_1 a {
        display: block;
    }

    .header_1 .btn_toggle_megamenu {
        position: absolute;
        right: 10px;
        top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        outline: none;
        transition: 0.3s ease-in-out;
        z-index: 110;
    }

    .header_1 .btn_toggle_megamenu > span {
        position: relative;
        display: block;
        width: 30px;
        height: 20px;
    }

    .header_1 .btn_toggle_megamenu > span > span,
    .header_1 .btn_toggle_megamenu > span:before,
    .header_1 .btn_toggle_megamenu > span:after {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--co_3);
        transform-origin: center center;
        transition: 0.3s ease-in-out;
        transform-origin: center;
    }

    .header_1 .btn_toggle_megamenu > span:before {
        transform: translateY(-8px);
    }

    .header_1 .btn_toggle_megamenu > span:after {
        transform: translateY(8px);
    }

    .header_1 .btn_toggle_megamenu.is_show > span > span,
    .header_1 .btn_toggle_megamenu.is_show > span:before,
    .header_1 .btn_toggle_megamenu.is_show > span:after {
        width: 100% !important;
    }
    .header_1 .btn_toggle_megamenu.is_show > span > span {
        opacity: 0;
    }
    .header_1 .btn_toggle_megamenu.is_show > span:before {
        transform: translateY(-50%) rotate(-45deg);
    }

    .header_1 .btn_toggle_megamenu.is_show > span:after {
        transform: translateY(-50%) rotate(45deg);
    }

    .header_1 .toggle_megamenu {
        display: none;
        position: fixed;
        left: 10px;
        top: 10px;
        width: calc(100% - 20px);
        height: calc(100% - 100px);
        background-color: var(--co_2);
        overflow-y: auto;
        border-radius: 25px;
        -webkit-overflow-scrolling: touch;
        box-shadow: 0px 0px 10px 0px rgba(0, 75, 177, 0.5);
        z-index: -1;
    }

    .header_1 .toggle_megamenu .toggle_inner {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 50px 20px;
        width: 100%;
        height: 100%;
    }

    .header_1 .nav_1 > ul > li + li {
        margin-top: 40px;
    }

    .header_1 .nav_1 a {
        display: block;
        font-size: 18px;
        line-height: 1;
        font-weight: 500;
        text-decoration: none;
        text-align: center;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        outline: none;
    }

    .header_1 .btn_1 {
        position: fixed;
        left: 0;
        bottom: -60px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 50px;
        color: var(--co_2);
        font-size: 15px;
        font-weight: 500;
        line-height: 1;
        background-color: var(--co_4);
        overflow: hidden;
        z-index: 200;
        transition: 0.3s ease-in-out;
    }
    .is_page_scr .header_1 .btn_1,
    .is_megamenu_show .header_1 .btn_1 {
        bottom: 0;
    }
}

/* ---------------------------------------------------- */
/* .footer_1 */
/* ---------------------------------------------------- */
.footer_1 {
    position: relative;
    padding-top: 100px;
    padding-bottom: 80px;
}

.footer_1 .footer_inner {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 1050px;
}

.footer_1 .ttl_1 {
    font-size: 25px;
    letter-spacing: 0.1em;
    line-height: 2.5;
    writing-mode: vertical-lr;
    white-space: nowrap;
    z-index: 10;
}

.footer_1 .contact_1 {
    position: absolute;
    right: 0;
    top: 155px;
    display: flex;
    width: 800px;
}

.footer_1 .contact_1 .clm {
    flex: initial;
    width: auto;
}

.footer_1 .contact_1 .clm + .clm {
    margin-left: 50px;
}

.footer_1 .contact_1 .name {
    margin-bottom: 20px;
    font-family: var(--ff_mi_1);
    font-size: 25px;
    font-weight: 500;
    line-height: 1.4;
}
.footer_1 .contact_1 .name > span:nth-of-type(1) {
    margin-right: 10px;
    font-size: 20px;
}
.footer_1 .contact_1 .desc {
    font-size: 15px;
}
.footer_1 .contact_1 .tel {
    display: flex;
    align-items: center;
    font-family: var(--ff_en_1);
    font-size: 40px;
    font-weight: 500;
    line-height: 1;
}
.footer_1 .contact_1 .tel > span {
    margin-left: 5px;
    font-size: 13px;
    font-weight: 400;
}

.footer_1 .contact_1 .btn {
    margin-top: 20px;
    min-width: 400px;
    height: 50px;
}

.footer_1 .nav_1 {
    position: absolute;
    right: 0;
    top: 0;
    padding: 40px 30px;
    width: 800px;
    border-top: 1px solid var(--co_1);
    border-bottom: 1px solid var(--co_1);
}
.footer_1 .nav_1 > ul {
    display: flex;
    justify-content: space-between;
}

.footer_1 .nav_1 a {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}

.footer_1 .nav_2 {
    position: absolute;
    right: 0;
    bottom: 15px;
    width: 800px;
}
.footer_1 .nav_2 > ul {
    display: flex;
    flex-wrap: wrap;
    margin-right: -30px;
}
.footer_1 .nav_2 > ul > li {
    margin-right: 30px;
}

.footer_1 .nav_2 a {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 13px;
}
.footer_1 .nav_2 a::before {
    content: "";
    display: block;
    margin-right: 10px;
    width: 20px;
    height: 18px;
    background-image: url(../img/ico/blank_1.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.footer_1 .copyright_1 {
    position: absolute;
    right: 0;
    bottom: 15px;
    font-size: 12px;
    line-height: 1;
}
@media (min-width: 1000px) {
    .footer_1 .nav_1 a:hover {
        opacity: 0.6;
    }
    .footer_1 .nav_2 a:hover {
        opacity: 0.6;
    }
}
@media (max-width: 999px) {
    .footer_1 {
        padding-top: 50px;
        padding-bottom: 100px;
    }
    .footer_1 .footer_inner {
        width: calc(100% - 30px);
    }

    .footer_1 .ttl_1 {
        margin: 0 auto 40px;
        width: max-content;
        font-size: 20px;
    }

    .footer_1 .contact_1 {
        position: static;
        display: block;
        width: auto;
    }

    .footer_1 .contact_1 .clm + .clm {
        margin-left: 0;
        margin-top: 20px;
    }

    .footer_1 .contact_1 .name {
        margin-bottom: 20px;
        font-size: 25px;
        text-align: center;
    }
    .footer_1 .contact_1 .name > span:nth-of-type(1) {
        margin-right: 10px;
        font-size: 20px;
    }
    .footer_1 .contact_1 .desc {
        font-size: 15px;
        text-align: center;
    }
    .footer_1 .contact_1 .tel {
        display: block;
        font-size: 30px;
        text-align: center;
    }
    .footer_1 .contact_1 .tel > span {
        display: block;
        margin-left: 0;
        margin-top: 5px;
        font-size: 13px;
    }

    .footer_1 .contact_1 .btn {
        margin: 20px auto 0;
        width: max-content;
        min-width: auto;
    }

    .footer_1 .nav_1 {
        display: none;
    }

    .footer_1 .nav_2 {
        margin-top: 50px;
        margin-bottom: 0;
        position: static;
        width: auto;
    }

    .footer_1 .nav_2 > ul {
        margin-right: 0;
        margin-bottom: -20px;
    }
    .footer_1 .nav_2 > ul > li {
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
    }

    .footer_1 .nav_2 a {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 13px;
    }

    .footer_1 .copyright_1 {
        position: static;
        margin-top: 50px;
        font-size: 11px;
        text-align: center;
    }
}
