@charset "utf-8";

/* ---------------------------------------------------- */
/* 変数 */
/* ---------------------------------------------------- */
:root {
    --co_1: #fff;
    --co_2: #000;
    --co_3: #555;
    --co_4: #5aafaf;
    --co_5: #e8999f;
    --co_6: #deb676;
    --co_7: #f1f7f7;
    --co_8: #7dbedb;
}

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

body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    color: var(--co_3);
    line-height: 1.6;
    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: var(--co_1);
    overflow: hidden;
}

body::before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
}

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

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

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

/* svg {
    display: block;
    width: 100%;
    height: 100%;
} */

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

@media (min-width: 1000px) {
    a:hover {
        text-decoration: none;
    }
}

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

/* ---------------------------------------------------- */
/* contents_wrap */
/* ---------------------------------------------------- */
@media (min-width: 1000px) {
    .contents_wrap {
        padding-top: 120px;
    }
}

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

/* ---------------------------------------------------- */
/* .header_1 */
/* ---------------------------------------------------- */
@media (min-width: 1000px) {
    .header_1 {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 120px;
        background-color: var(--co_1);
        z-index: 200;
        transition: 0.3s ease;
    }

    .header_1 .header_inner {
        position: relative;
        margin: 0 auto;
        min-width: 1100px;
        max-width: 1400px;
        height: 100%;
    }

    .header_1 .site_ttl_1 {
        position: absolute;
        left: 20px;
        top: 45px;
        width: 250px;
    }

    .header_1 .site_ttl_1 a {
        display: block;
    }

    .header_1 .desc_1 {
        position: absolute;
        left: 20px;
        top: 20px;
        font-size: 10px;
    }

    .header_1 .tel_1 {
        position: absolute;
        right: 150px;
        top: 25px;
        display: flex;
        align-items: center;
        color: var(--co_3);
        font-size: 30px;
        font-weight: 500;
        line-height: 1;
        text-decoration: none;
    }
    .header_1 .tel_1::before {
        content: "";
        display: block;
        margin-right: 10px;
        width: 30px;
        height: 30px;
        background-image: url(../img/ico/tel_1.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }
    .header_1 .btn_1 {
        position: absolute;
        right: 0;
        top: 0;
        display: flex;
        justify-content: center;
        align-content: center;
        flex-wrap: wrap;
        width: 120px;
        height: 100%;
        color: var(--co_1);
        font-size: 16px;
        font-weight: 500;
        line-height: 1;
        text-align: center;
        text-decoration: none;
        background-color: var(--co_5);
    }
    .header_1 .btn_1::before {
        content: "";
        display: block;
        margin-bottom: 10px;
        width: 100%;
        height: 50px;
        background-image: url(../img/ico/reservation_1.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }
    .header_1 .nav_1 {
        position: absolute;
        right: 150px;
        bottom: 0;
    }

    .header_1 .nav_1 .main-menu {
        display: flex;
    }
    .header_1 .nav_1 .main-menu > li {
        position: relative;
    }
    .header_1 .nav_1 .main-menu > li + li {
        margin-left: 30px;
    }
    .header_1 .nav_1 .main-menu > li::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 0;
        height: 5px;
        background-color: var(--co_5);
        transition: 0.3s ease;
    }

    .header_1 .nav_1 .main-menu > li:hover::after {
        width: 100%;
    }
    .header_1 .nav_1 .main-menu > li > a {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 0 25px;
        height: 100%;
        color: var(--co_3);
        line-height: 1;
        text-align: center;
        text-decoration: none;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        outline: none;
    }

    .header_1 .nav_1 .sub-menu {
        display: none;
        position: absolute;
        left: 0;
        bottom: 0;
        transform: translateY(100%);
        padding: 10px 0;
        min-width: calc(100% + 20px);
        background-color: #fff;
    }

    .header_1 .nav_1 .sub-menu > li {
        position: relative;
    }

    .header_1 .nav_1 .sub-menu > li > a {
        display: block;
        padding: 10px 20px;
        color: var(--co_3);
        line-height: 1;
        text-decoration: none;
        white-space: nowrap;
    }

    .header_1 .nav_1 .sub-menu > li > a::before {
        content: "・";
    }
    .header_1 .nav_1 .sub-menu > li > a:hover {
        color: var(--co_5);
    }

    .header_1 .nav_2 {
        display: none;
    }
}
@media (min-width: 1000px) and (max-width: 1400px) {
}
@media (max-width: 999px) {
    .header_1 {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 75px;
        background-color: #fff;
        z-index: 200;
    }
    .header_1 .header_inner {
        position: relative;
        height: 100%;
    }
    .header_1 .site_ttl_1 {
        position: absolute;
        left: 20px;
        top: 25px;
        width: 180px;
        z-index: 110;
    }
    .header_1 .site_ttl_1 a {
        display: block;
    }

    .header_1 .desc_1 {
        position: absolute;
        left: 10px;
        top: 5px;
        font-size: 9px;
        z-index: 110;
    }

    .header_1 .tel_1 {
        display: none;
    }
    .header_1 .btn_1 {
        display: none;
    }
    .header_1 .nav_1 {
        margin-top: 30px;
    }
    .header_1 .nav_1 .main-menu > li {
        position: relative;
    }
    .header_1 .nav_1 .main-menu > li > a {
        position: relative;
        display: flex;
        align-items: center;
        padding: 15px 20px;
        font-size: 16px;
        color: var(--co_3);
        text-decoration: none;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        outline: none;
    }

    .header_1 .nav_1 .main-menu > li > a > span > span:nth-of-type(2) {
        display: none;
    }

    .header_1 .nav_1 .main-menu > li.menu-item-has-children > i {
        position: absolute;
        right: 10px;
        top: 20px;
        display: block;
        width: 20px;
        height: 20px;
    }

    .header_1 .nav_1 .main-menu > li.menu-item-has-children > i::before,
    .header_1 .nav_1 .main-menu > li.menu-item-has-children > i::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        display: block;
        background-color: var(--co_4);
        transition: 0.3s ease;
    }

    .header_1 .nav_1 .main-menu > li.menu-item-has-children > i::before {
        width: 4px;
        height: 100%;
    }

    .header_1 .nav_1 .main-menu > li.menu-item-has-children > i::after {
        width: 100%;
        height: 4px;
    }

    .header_1 .nav_1 .main-menu > li.menu-item-has-children.is_children_show > i::before {
        opacity: 0;
    }

    .header_1 .nav_1 .sub-menu {
        display: none;
        padding-bottom: 10px;
    }

    .header_1 .nav_1 .sub-menu > li {
        position: relative;
        display: flex;
    }

    .header_1 .nav_1 .sub-menu > li > a {
        display: block;
        padding: 10px 0 10px 30px;
        color: var(--co_3);
        font-size: 14px;
        line-height: 1;
        text-decoration: none;
        white-space: nowrap;
    }

    .header_1 .nav_2 {
        margin-top: 30px;
        padding: 20px;
        background-color: #f1f7f7;
        border-radius: 10px;
    }

    .header_1 .nav_2 > ul > li + li {
        margin-top: 20px;
    }

    .header_1 .nav_2 .ttl {
        margin-bottom: 10px;
        font-size: 12px;
        font-weight: 500;
        text-align: center;
    }
    .header_1 .nav_2 .tel a {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 40px;
        color: var(--co_3);
        font-size: 22px;
        font-weight: 500;
        text-align: center;
        text-decoration: none;
        background-color: var(--co_1);
        border: 2px solid var(--co_12);
        border-radius: 40px;
    }
    .header_1 .nav_2 .tel i {
        display: block;
        margin-right: 10px;
        width: 30px;
        height: 30px;
        background-image: url(../img/ico/tel_1.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }

    .header_1 .nav_2 .reservation a,
    .header_1 .nav_2 .interview a {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 40px;
        color: var(--co_1);
        font-size: 16px;
        text-align: center;
        text-decoration: none;
    }
    .header_1 .nav_2 .reservation a {
        background-color: var(--co_5);
    }
    .header_1 .nav_2 .interview a {
        background-color: var(--co_6);
    }
    /* .header_1 .nav_2 .reservation a::after,
    .header_1 .nav_2 .interview a::after {
        content: "";
        position: absolute;
        right: 20px;
        top: 50%;
        display: block;
        width: 10px;
        height: 10px;
        border-top: 2px solid var(--co_1);
        border-right: 2px solid var(--co_1);
        transform: translateY(-50%) rotate(45deg);
        background: none;
    } */
    .header_1 .nav_2 .reservation i,
    .header_1 .nav_2 .interview i {
        margin-right: 10px;
        width: 20px;
        height: 20px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        transition: 0.3s ease;
    }

    .header_1 .nav_2 .reservation i {
        background-image: url(../img/ico/reservation_1.svg);
    }

    .header_1 .nav_2 .interview i {
        background-image: url(../img/ico/interview_1.svg);
    }

    .header_1 .btn_toggle_megamenu {
        position: absolute;
        right: 0;
        top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 75px;
        height: 75px;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        outline: none;
        background-color: var(--co_4);
        z-index: 110;
    }

    .header_1 .btn_toggle_megamenu div {
        position: relative;
        width: 20px;
        height: 30px;
    }

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

    .header_1 .btn_toggle_megamenu div > span span {
        display: none;
    }

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

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

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

    .header_1 .btn_toggle_megamenu.is_show div > span span {
        opacity: 0;
    }

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

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

    .header_1 .toggle_megamenu_wrap {
        position: relative;
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #fff;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 100;
    }

    .header_1 .toggle_megamenu_wrap .toggle_inner {
        padding: 75px 20px 30px;
    }
}

/* ---------------------------------------------------- */
/* .footer_1 */
/* ---------------------------------------------------- */
.footer_1 {
    position: relative;
    padding-top: 90px;
    background-color: #f8f8f8;
}

.footer_1 .footer_inner {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    max-width: 1100px;
}
.footer_1 .clms_wrap_1 {
    display: flex;
    justify-content: space-between;
}
.footer_1 .clms_wrap_1 > .clm_wrap:nth-of-type(1) {
    flex: initial;
    width: auto;
}
.footer_1 .clms_wrap_1 > .clm_wrap:nth-of-type(2) {
    flex: auto;
    width: auto;
}
.footer_1 .site_ttl_1 {
    margin-bottom: 20px;
    width: 350px;
}

.footer_1 .address_1 {
    margin-bottom: 10px;
}

.footer_1 .tel_1 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    width: max-content;
    color: var(--co_3);
    font-size: 30px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
}
.footer_1 .tel_1::before {
    content: "";
    display: block;
    margin-right: 10px;
    width: 30px;
    height: 30px;
    background-image: url(../img/ico/tel_1.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.footer_1 .btn_1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 44px;
    color: var(--co_1);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    background-color: var(--co_5);
}
.footer_1 .btn_1::before {
    content: "";
    display: block;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    background-image: url(../img/ico/reservation_1.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.footer_1 .list_1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer_1 .list_1 dt {
    flex: none;
    width: 90px;
    color: var(--co_4);
    font-weight: 700;
}

.footer_1 .list_1 dd {
    flex: auto;
    width: calc(100% - 90px);
}
.footer_1 .nav_1 {
    margin-bottom: 50px;
}

.footer_1 .nav_1 .main-menu {
    display: flex;
    justify-content: flex-end;
}

.footer_1 .nav_1 .main-menu > li + li {
    margin-left: 20px;
}

.footer_1 .nav_1 .main-menu > li > a {
    color: var(--co_3);
    text-decoration: none;
}
.footer_1 .businessday_1 {
    margin-left: auto;
    margin-right: 0;
    padding: 20px;
    width: 500px;
    background-color: var(--co_1);
    border-radius: 20px;
}
.footer_1 .businessday_1 table {
    width: auto;
}
.footer_1 .copyright_1 {
    margin-top: 60px;
    padding: 20px;
    font-size: 12px;
    text-align: center;
    border-top: 1px solid var(--co_3);
}

.footer_1 .btn_pagetop_1 {
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    width: 170px;
    height: 170px;
    background-image: url(../img/ico/pagetop_1.svg);
    background-position: right bottom;
    background-size: contain;
    background-repeat: no-repeat;
}

@media (min-width: 1000px) {
    .footer_1 .nav_1 a:hover {
        opacity: 0.6;
    }
    .footer_1 .nav_2 {
        position: fixed;
        right: -100px;
        top: 200px;
        z-index: 10;
        transition: 0.3s ease;
    }
    .is_page_scr .footer_1 .nav_2 {
        right: 0;
    }

    .footer_1 .nav_2 > ul > li + li {
        margin-top: 20px;
    }
    .footer_1 .nav_2 a {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        width: 75px;
        height: 200px;
        color: var(--co_1);
        font-size: 15px;
        letter-spacing: 0.1em;
        text-align: center;
        writing-mode: vertical-rl;
        text-decoration: none;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        outline: none;
        border-radius: 10px 0 0 10px;
    }
    .footer_1 .nav_2 > ul > li.reservation a {
        background-color: var(--co_5);
    }
    .footer_1 .nav_2 > ul > li.interview a {
        background-color: var(--co_6);
    }
    .footer_1 .nav_2 a::before {
        content: "";
        display: block;
        margin-bottom: 10px;
        width: 20px;
        height: 20px;
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }
    .footer_1 .nav_2 > ul > li.reservation a::before {
        background-image: url(../img/ico/reservation_1.svg);
    }
    .footer_1 .nav_2 > ul > li.interview a::before {
        background-image: url(../img/ico/interview_1.svg);
    }
}
@media (max-width: 999px) {
    .footer_1 {
        padding-top: 60px;
        padding-bottom: 50px;
    }

    .footer_1 .footer_inner {
        width: calc(100% - 40px);
    }
    .footer_1 .clms_wrap_1 {
        display: block;
    }
    .footer_1 .clms_wrap_1 > .clm_wrap:nth-of-type(1) {
        width: auto;
    }
    .footer_1 .site_ttl_1 {
        margin: 0 auto 20px;
        width: 250px;
    }

    .footer_1 .address_1 {
        margin-bottom: 20px;
        text-align: center;
    }

    .footer_1 .tel_1 {
        margin: 0 auto 10px;
        padding: 10px 20px;
        width: auto;
        background-color: var(--co_1);
        border-radius: 20px;
    }
    .footer_1 .btn_1 {
        margin-bottom: 20px;
        width: auto;
    }
    .footer_1 .list_1 {
        margin: 0 auto 20px;
        max-width: max-content;
    }

    .footer_1 .businessday_1 {
        width: auto;
    }
    .footer_1 .nav_1 {
        display: none;
    }
    .footer_1 .nav_2 {
        position: fixed;
        left: 0;
        bottom: -100px;
        display: block;
        padding: 6px;
        width: 100%;
        background-color: var(--co_1);
        z-index: 10;
        transition: 0.3s ease;
    }
    .is_page_scr .footer_1 .nav_2 {
        bottom: 0;
    }
    .footer_1 .nav_2 > ul {
        display: flex;
        justify-content: space-between;
    }
    .footer_1 .nav_2 > ul > li {
        width: calc(100% / 2 - 3px);
    }
    .footer_1 .nav_2 a {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        height: 45px;
        color: var(--co_1);
        font-size: 15px;
        text-align: center;
        text-decoration: none;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        outline: none;
    }
    .footer_1 .nav_2 > ul > li.reservation a {
        background-color: var(--co_5);
    }
    .footer_1 .nav_2 > ul > li.interview a {
        background-color: var(--co_6);
    }
    .footer_1 .nav_2 a::before {
        content: "";
        display: block;
        margin-right: 10px;
        width: 16px;
        height: 16px;
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }
    .footer_1 .nav_2 > ul > li.reservation a::before {
        background-image: url(../img/ico/reservation_1.svg);
    }
    .footer_1 .nav_2 > ul > li.interview a::before {
        background-image: url(../img/ico/interview_1.svg);
    }
    .footer_1 .nav_2 a span {
        margin-right: 5px;
        font-size: 12px;
    }
    .footer_1 .copyright_1 {
        margin-top: 40px;
        font-size: 11px;
    }

    .footer_1 .btn_pagetop_1 {
        right: -10px;
        bottom: 57px;
        width: 80px;
        height: 80px;
    }
}
/* ---------------------------------------------------- */
/* .sec_post_wrap */
/* ---------------------------------------------------- */
.sec_post_wrap {
    padding-bottom: 100px;
}

.sec_archive_wrap {
    padding-bottom: 100px;
}
