@charset "utf-8";

/* ---------------------------------------------------- */
/* 変数 */
/* ---------------------------------------------------- */
:root {
    --co_1: #fff;
    --co_2: #000;
    --co_3: #333;
    --co_4: #036eb8;
    --co_5: #73caf3;
    --co_6: #edf4f7;
    --co_7: #f3a9c9;
    --co_8: #ffeaf3;
    --co_9: #6a6a6a;
}

/* ---------------------------------------------------- */
/* 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;
}

@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: 130px;
    }
}

@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: 50%;
        transform: translateY(-50%);
    }
    .header_1 .site_ttl_1 .desc {
        margin-bottom: 5px;
        font-size: 12px;
        line-height: 1;
    }
    .header_1 .site_ttl_1 a {
        display: block;
        width: 380px;
    }
    .header_1 .btn_1 {
        position: absolute;
        right: 570px;
        top: 27px;
        display: flex;
        align-items: center;
        font-size: 32px;
        line-height: 1;
        font-weight: 500;
        text-decoration: none;
    }
    .header_1 .btn_1::before {
        content: "";
        display: block;
        margin-right: 5px;
        width: 24px;
        height: 24px;
        background-image: url(../img/ico/tel_1.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }
    .header_1 .btn_2 {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        justify-content: center;
        align-items: center;
        width: 160px;
        height: 60px;
        color: var(--co_1);
        font-size: 16px;
        font-weight: 700;
        line-height: 1;
        text-decoration: none;
        background-color: var(--co_7);
        border-radius: 10px;
    }
    .header_1 .btn_2::before {
        content: "";
        display: block;
        margin-right: 5px;
        width: 30px;
        height: 30px;
        background-image: url(../img/ico/reservation_1.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    .header_1 .nav_1 {
        position: absolute;
        right: 200px;
        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: 40px;
    }
    .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-bottom: 20px;
        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 .main-menu > li.menu-item-has-children > a {
        padding-right: 15px;
    }
    .header_1 .nav_1 .main-menu > li.menu-item-has-children > a::after {
        content: "";
        position: absolute;
        right: 0;
        top: 6px;
        display: block;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 5px 4px 0px 4px;
        border-color: var(--co_5) transparent transparent transparent;
    }
    .header_1 .nav_1 .main-menu > li.menu-item-has-children.is_children_show > a::after {
        transform: scaleY(-1);
    }
    .header_1 .nav_1 .sub-menu {
        display: flex;
        flex-wrap: wrap;
        position: absolute;
        left: 0;
        bottom: 0;
        transform: translateY(100%);
        padding: 10px 0;
        width: 380px;
        background-color: var(--co_1);
        border-radius: 0 0 20px 20px;
        box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.05);
        opacity: 0;
        pointer-events: none;
        transition: 0.3s ease;
    }
    .header_1 .nav_1 .is_children_show .sub-menu {
        opacity: 1;
        pointer-events: all;
    }
    .header_1 .nav_1 .sub-menu > li {
        position: relative;
        width: calc(100% / 2);
        max-width: max-content;
    }

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

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

    .header_1 .nav_2 {
        position: absolute;
        right: 200px;
        top: 18px;
        padding: 10px 30px;
        background-color: var(--co_6);
        border-radius: 20px;
    }
    .header_1 .nav_2 > ul {
        display: flex;
    }
    .header_1 .nav_2 > ul > li + li {
        margin-left: 30px;
    }
    .header_1 .nav_2 a {
        position: relative;
        padding-right: 15px;
        color: var(--co_9);
        line-height: 1;
        text-decoration: none;
    }
    .header_1 .nav_2 a::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        display: block;
        width: 8px;
        height: 8px;
        border-top: 1px solid var(--co_5);
        border-right: 1px solid var(--co_5);
        transform: translateY(-50%) rotate(45deg);
        transition: 0.3s ease-in-out;
    }

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

    .header_1 .toggle_megamenu_wrap {
        display: block !important;
    }
}
@media (min-width: 1000px) and (max-width: 1300px) {
    .header_1 .btn_1 {
        display: none;
    }
    .header_1 .nav_1 .main-menu > li + li {
        margin-left: 20px;
    }
}
@media (max-width: 999px) {
    .header_1 {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 75px;
        background-color: var(--co_1);
        z-index: 200;
    }

    .header_1 .header_inner {
        position: relative;
        height: 100%;
    }
    .header_1 .site_ttl_1 {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 110;
    }
    .header_1 .site_ttl_1 .desc {
        margin-bottom: 5px;
        font-size: 7px;
        line-height: 1;
    }
    .header_1 .site_ttl_1 a {
        display: block;
        width: 250px;
    }
    .header_1 .btn_1 {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 20px auto 0;
        width: 100%;
        height: 50px;
        color: var(--co_4);
        font-size: 22px;
        font-weight: 500;
        line-height: 1;
        text-decoration: none;
        border: 2px solid var(--co_4);
        border-radius: 30px;
    }
    .header_1 .btn_1::before {
        content: "";
        display: block;
        margin-right: 5px;
        width: 24px;
        height: 24px;
        background-image: url(../img/ico/tel_1.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }
    .header_1 .btn_2 {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 20px auto 0;
        width: 100%;
        height: 50px;
        color: var(--co_1);
        font-size: 16px;
        font-weight: 700;
        line-height: 1;
        text-decoration: none;
        background-color: var(--co_7);
        border-radius: 30px;
    }
    .header_1 .btn_2::before {
        content: "";
        display: block;
        margin-right: 5px;
        width: 30px;
        height: 30px;
        background-image: url(../img/ico/reservation_1.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }
    .header_1 .btn_2::after {
        content: "";
        position: absolute;
        right: 20px;
        top: 50%;
        display: block;
        width: 8px;
        height: 8px;
        border-top: 1px solid var(--co_1);
        border-right: 1px solid var(--co_1);
        transform: translateY(-50%) rotate(45deg);
        transition: 0.3s ease-in-out;
    }

    .header_1 .nav_1 .main-menu > li,
    .header_1 .nav_2 .main-menu > li {
        position: relative;
    }
    .header_1 .nav_1 .main-menu > li + li,
    .header_1 .nav_2 .main-menu > li + li {
        border-top: 1px solid var(--co_9);
    }

    .header_1 .nav_1 .main-menu > li > a,
    .header_1 .nav_2 .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),
    .header_1 .nav_2 .main-menu > li > a > span > span:nth-of-type(2) {
        display: none;
    }

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

    .header_1 .nav_1 .main-menu > li.menu-item-has-children > i::after,
    .header_1 .nav_2 .main-menu > li.menu-item-has-children > i::after {
        content: "";
        display: block;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 10px 8px 0px 8px;
        border-color: var(--co_5) transparent transparent transparent;
    }
    .header_1 .nav_1 .main-menu > li.menu-item-has-children.is_children_show > i::after,
    .header_1 .nav_2 .main-menu > li.menu-item-has-children.is_children_show > i::after {
        transform: scaleY(-1);
    }
    .header_1 .nav_1 .sub-menu,
    .header_1 .nav_2 .sub-menu {
        display: none;
        padding-bottom: 10px;
    }

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

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

    .header_1 .nav_1 .sub-menu > li > a::before,
    .header_1 .nav_2 .sub-menu > li > a::before {
        content: "・";
        color: var(--co_5);
    }
    .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: var(--co_1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 100;
    }

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

/* ---------------------------------------------------- */
/* .footer_1 */
/* ---------------------------------------------------- */
.footer_1 {
    position: relative;
    padding-top: 70px;
    padding-bottom: 20px;
    background-color: var(--co_1);
    background-image: url(../img/bg/1.svg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 105% 110px;
}

.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 {
    flex: initial;
    width: auto;
}
.footer_1 .site_ttl_1 {
    margin-bottom: 10px;
}
.footer_1 .site_ttl_1 a {
    display: block;
    width: 420px;
}

.footer_1 .desc_1 {
    margin-bottom: 10px;
    text-align: center;
}
.footer_1 .data_1 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.footer_1 .data_1 > span:nth-of-type(1) {
    padding: 5px 10px;
    margin-right: 10px;
    color: var(--co_4);
    font-size: 11px;
    background-color: var(--co_6);
    line-height: 1;
}
.footer_1 .btn_1 {
    display: flex;
    align-items: center;
    margin: 0 auto 20px;
    width: max-content;
    font-size: 22px;
    line-height: 1;
    font-weight: 500;
    text-decoration: none;
}
.footer_1 .btn_1::before {
    content: "";
    display: block;
    margin-right: 5px;
    width: 20px;
    height: 20px;
    background-image: url(../img/ico/tel_1.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.footer_1 .btn_2 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    width: 260px;
    height: 50px;
    color: var(--co_1);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    background-color: var(--co_7);
    border-radius: 30px;
}
.footer_1 .btn_2::before {
    content: "";
    display: block;
    margin-right: 5px;
    width: 30px;
    height: 30px;
    background-image: url(../img/ico/reservation_1.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.footer_1 .btn_2::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1px solid var(--co_1);
    border-right: 1px solid var(--co_1);
    transform: translateY(-50%) rotate(45deg);
    transition: 0.3s ease-in-out;
}
.footer_1 .nav_1 {
    display: flex;
}
.footer_1 .nav_1 > ul + ul {
    margin-left: 200px;
}
.footer_1 .nav_1 a {
    color: var(--co_3);
    text-decoration: none;
}
.footer_1 .nav_1 .main-menu > li + li {
    margin-top: 25px;
}
.footer_1 .nav_1 .main-menu > li > a {
    font-weight: 500;
}
.footer_1 .nav_1 .sub-menu {
    margin-left: 10px;
}
.footer_1 .nav_1 .sub-menu > li {
    margin-top: 10px;
}
.footer_1 .nav_1 .sub-menu > li > a {
    display: block;
    color: var(--co_9);
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
}

.footer_1 .nav_1 .sub-menu > li > a::before {
    content: "・";
    color: var(--co_5);
}
.footer_1 .nav_2 {
    display: none;
}
.footer_1 .copyright_1 {
    margin-top: 90px;
    color: var(--co_1);
    font-size: 12px;
    text-align: center;
}
.footer_1 .btn_pagetop {
    position: absolute;
    right: 40px;
    bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    width: 120px;
    height: 120px;
    color: var(--co_1);
    line-height: 1;
    text-decoration: none;
    background-color: var(--co_5);
    border-radius: 100%;
}
.footer_1 .btn_pagetop::before {
    content: "";
    display: block;
    margin-bottom: 10px;
    width: 100%;
    height: 40px;
    background-image: url(../img/logo/uraga_2.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
@media (min-width: 1000px) {
    .footer_1 .nav_1 a:hover {
        opacity: 0.6;
    }
}
@media (max-width: 999px) {
    .footer_1 {
        padding-top: 40px;
        padding-bottom: 80px;
        background-size: 3000px 250px;
    }

    .footer_1 .footer_inner {
        width: calc(100% - 40px);
        height: auto;
    }

    .footer_1 .clms_wrap_1 {
        display: block;
    }

    .footer_1 .site_ttl_1 {
        margin-bottom: 10px;
    }
    .footer_1 .site_ttl_1 a {
        margin: 0 auto 20px;
        width: 300px;
    }

    .footer_1 .desc_1 {
        margin-bottom: 10px;
        text-align: center;
    }
    .footer_1 .data_1 {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }
    .footer_1 .data_1 > span:nth-of-type(1) {
        padding: 5px 10px;
        margin-right: 10px;
        color: var(--co_4);
        font-size: 11px;
        background-color: var(--co_6);
        line-height: 1;
    }

    .footer_1 .btn_1 {
        display: flex;
        justify-content: center;
        margin: 0 auto 20px;
        width: 90%;
        height: 50px;
        border: 2px solid var(--co_4);
        border-radius: 30px;
    }
    .footer_1 .btn_2 {
        margin: 0 auto 20px;
        width: 90%;
    }
    .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: 16px;
        font-weight: 500;
        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_7);
    }
    .footer_1 .nav_2 > ul > li.tel a {
        background-color: var(--co_5);
    }
    .footer_1 .nav_2 a::before {
        content: "";
        display: block;
        margin-right: 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.tel a::before {
        background-image: url(../img/ico/tel_1_b.svg);
    }
    .footer_1 .copyright_1 {
        margin-top: 80px;
        font-size: 11px;
    }
    .footer_1 .btn_pagetop {
        right: 20px;
        bottom: 80px;
        width: 80px;
        height: 80px;
    }
    .footer_1 .btn_pagetop::before {
        margin-bottom: 10px;
        height: 25px;
    }
}
/* ---------------------------------------------------- */
/* .sec_post_wrap */
/* ---------------------------------------------------- */
.sec_post_wrap {
    padding-bottom: 100px;
}

.sec_archive_wrap {
    padding-bottom: 100px;
}
