@charset "utf-8";

/* ---------------------------------------------------- */
/* 変数 */
/* ---------------------------------------------------- */
:root {
    --co_1: #fff;
    --co_2: #000;
    --co_3: #333;
    --co_4: #3c8358;
    --co_5: #f2724c;
    --co_6: #fff8dd;
    --co_7: #ecf7f0;
    --co_8: #fff1ed;
    --co_9: #fdd43d;
}

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

.page-honin .body_wrap {
    background-color: var(--co_7);
}

.page-bunin .body_wrap {
    background-color: var(--co_8);
}

/* ---------------------------------------------------- */
/* 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: 130px;
        background-color: var(--co_1);
        z-index: 200;
        transition: 0.3s ease;
    }

    .page-honin .header_1 {
        background-color: var(--co_7);
    }

    .page-bunin .header_1 {
        background-color: var(--co_8);
    }

    .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%);
        width: 200px;
    }

    .header_1 .site_ttl_1 a {
        display: block;
    }

    .header_1 .site_ttl_1 .desc {
        margin-top: 5px;
        color: var(--co_5);
        font-size: 12px;
        line-height: 1;
        text-align: center;
    }

    .header_1 .tel_1 {
        position: absolute;
        right: 320px;
        top: 31px;
        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;
    }
    .page-bunin .header_1 .tel_1::before {
        background-image: url(../img/ico/tel_1_b.svg);
    }
    .header_1 .nav_1 {
        position: absolute;
        right: 40px;
        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_4);
        transition: 0.3s ease;
    }
    .page-bunin .header_1 .nav_1 .main-menu > li::after {
        background-color: var(--co_5);
    }

    .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: var(--co_1);
    }

    .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_4);
    }
    .page-bunin .header_1 .nav_1 .sub-menu > li > a:hover {
        color: var(--co_5);
    }

    .header_1 .nav_2 {
        position: absolute;
        right: 40px;
        top: 18px;
    }
    .header_1 .nav_2 > ul {
        display: flex;
        height: 100%;
    }
    .header_1 .nav_2 > ul > li {
        transition: 0.3s ease;
    }
    .header_1 .nav_2 > ul > li + li {
        margin-left: 10px;
    }
    .header_1 .nav_2 a {
        position: relative;
        display: flex;
        justify-content: center;
        align-content: center;
        align-items: center;
        width: 250px;
        height: 50px;
        color: var(--co_1);
        font-size: 15px;
        line-height: 1.4;
        text-align: center;
        text-decoration: none;
        background-color: var(--co_2);
        border-radius: 25px;
    }

    .header_1 .nav_2 .reservation a {
        background-color: var(--co_4);
    }
    .page-bunin .header_1 .nav_2 .reservation a {
        background-color: var(--co_5);
    }
    .header_1 .nav_2 .honin a {
        background-color: var(--co_4);
    }
    .header_1 .nav_2 .bunin a {
        background-color: var(--co_5);
    }
    .header_1 .nav_2 a::before {
        content: "";
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 12px;
        height: 12px;
        background-image: url(../img/ico/arrow_1.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }
    .header_1 .nav_2 i {
        margin-right: 10px;
        width: 22px;
        height: 22px;
        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 .btn_toggle_megamenu {
        display: block !important;
    }

    .header_1 .toggle_megamenu_wrap {
        display: block !important;
    }
}
@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: var(--co_1);
        z-index: 200;
    }
    .page-honin .header_1 {
        background-color: var(--co_7);
    }

    .page-bunin .header_1 {
        background-color: var(--co_8);
    }
    .header_1 .header_inner {
        position: relative;
        height: 100%;
    }
    .header_1 .site_ttl_1 {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 120px;
        z-index: 110;
    }
    .header_1 .site_ttl_1 a {
        display: block;
    }

    .header_1 .site_ttl_1 .desc {
        margin-top: 5px;
        color: var(--co_5);
        font-size: 10px;
        line-height: 1;
        text-align: center;
    }

    .header_1 .tel_1 {
        margin-top: 40px;
        display: flex;
        justify-content: center;
        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;
    }
    .page-bunin .header_1 .tel_1::before {
        background-image: url(../img/ico/tel_1_b.svg);
    }
    .header_1 .nav_1 {
        margin-top: 30px;
    }
    .header_1 .nav_1 .main-menu > li {
        position: relative;
        border-bottom: 1px solid var(--co_4);
    }
    .page-bunin .header_1 .nav_1 .main-menu > li {
        border-color: var(--co_5);
    }
    .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: 20px;
        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: 40px;
    }
    .header_1 .nav_2 > ul > li {
        transition: 0.3s ease;
    }
    .header_1 .nav_2 > ul > li + li {
        margin-top: 10px;
    }
    .header_1 .nav_2 a {
        position: relative;
        display: flex;
        justify-content: center;
        align-content: center;
        align-items: center;
        margin: 0 auto;
        width: calc(100% - 40px);
        height: 50px;
        color: var(--co_1);
        font-size: 15px;
        line-height: 1.4;
        text-align: center;
        text-decoration: none;
        background-color: #000;
        border-radius: 25px;
    }

    .header_1 .nav_2 .reservation a {
        background-color: var(--co_4);
    }
    .page-bunin .header_1 .nav_2 .reservation a {
        background-color: var(--co_5);
    }
    .header_1 .nav_2 .honin a {
        background-color: var(--co_4);
    }
    .header_1 .nav_2 .bunin a {
        background-color: var(--co_5);
    }
    .header_1 .nav_2 a::before {
        content: "";
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 12px;
        height: 12px;
        background-image: url(../img/ico/arrow_1.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }
    .header_1 .nav_2 i {
        margin-right: 10px;
        width: 22px;
        height: 22px;
        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 .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;
    }

    .page-bunin .header_1 .btn_toggle_megamenu {
        background-color: var(--co_5);
    }

    .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;
    }

    .page-honin .toggle_megamenu_wrap {
        background-color: var(--co_7);
    }

    .page-bunin .toggle_megamenu_wrap {
        background-color: var(--co_8);
    }

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

/* ---------------------------------------------------- */
/* .footer_1 */
/* ---------------------------------------------------- */
.footer_1 {
    position: relative;
    padding-bottom: 70px;
    background-color: var(--co_1);
}

.footer_1 .footer_inner {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    max-width: 1100px;
    height: 400px;
}
.footer_1 .site_ttl_1 {
    position: absolute;
    top: 80px;
    left: 0;
}
.page-honin .footer_1 .site_ttl_1,
.page-bunin .footer_1 .site_ttl_1 {
    top: 160px;
    display: flex;
    align-items: center;
}
.footer_1 .site_ttl_1 a {
    display: block;
    width: 270px;
}
.footer_1 .site_ttl_1 a + a {
    margin-top: 20px;
}
.page-honin .footer_1 .site_ttl_1 a + a,
.page-bunin .footer_1 .site_ttl_1 a + a {
    margin-top: 0;
    margin-left: 30px;
}
.footer_1 .nav_1 {
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
}
.footer_1 .nav_1 > ul {
    display: flex;
    justify-content: flex-end;
}
.page-honin .footer_1 .nav_1 > ul,
.page-bunin .footer_1 .nav_1 > ul {
    justify-content: center;
}
.footer_1 .nav_1 > ul > li + li {
    display: flex;
    padding-left: 30px;
    margin-left: 30px;
    border-left: 1px solid #c1c1c1;
}
.footer_1 .nav_1 a {
    display: block;
    color: var(--co_3);
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
}
.footer_1 .nav_2 {
    position: absolute;
    right: 0;
    top: 150px;
    width: 480px;
}
.footer_1 .nav_2 > ul {
    display: flex;
    flex-wrap: wrap;
    margin-right: -25px;
    margin-bottom: -25px;
}
.footer_1 .nav_2 > ul > li {
    margin-right: 25px;
    margin-bottom: 25px;
    width: calc(100% / 2 - 25px);
}

.footer_1 .nav_2 > ul > li.top {
    width: calc(100% - 25px);
}

.footer_1 .nav_2 a {
    position: relative;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    width: auto;
    height: 50px;
    color: var(--co_1);
    font-size: 15px;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
    background-color: var(--co_2);
    border-radius: 25px;
}

.footer_1 .nav_2 .top a {
    color: var(--co_4);
    background-color: var(--co_1);
    border: 1px solid var(--co_4);
}

.footer_1 .nav_2 .honin a {
    background-color: var(--co_4);
}
.footer_1 .nav_2 .bunin a {
    background-color: var(--co_5);
}
.footer_1 .nav_2 a::before {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-image: url(../img/ico/arrow_1.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.footer_1 .nav_2 .top a::before {
    background-image: url(../img/ico/arrow_1_b.svg);
}
.footer_1 .nav_2 i {
    margin-right: 10px;
    width: 22px;
    height: 22px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: 0.3s ease;
}

.footer_1 .nav_2 .top i {
    background-image: url(../img/ico/top_1.svg);
}
.footer_1 .btn_pagetop_1 {
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    width: 140px;
}
.footer_1 .copyright_1 {
    position: absolute;
    right: 0;
    bottom: 50px;
    font-size: 14px;
}
.footer_1 .btn_1 {
    position: fixed;
    right: 0;
    top: 200px;
    display: block;
    width: 200px;
    z-index: 20;
    transform: translateX(100%);
    transition: 0.3s ease;
}
.is_page_scr .footer_1 .btn_1 {
    transform: translateX(0);
}

@media (min-width: 1000px) {
    .footer_1 .nav_1 a:hover {
        opacity: 0.6;
    }
    .footer_1 .nav_3 {
        display: none;
    }
}
@media (max-width: 999px) {
    .footer_1 {
        padding-top: 20px;
        padding-bottom: 65px;
    }

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

    .footer_1 .site_ttl_1 {
        display: none !important;
    }
    .footer_1 .nav_1 {
        display: none;
    }
    .footer_1 .nav_2 {
        display: none;
    }

    .footer_1 .nav_3 {
        position: fixed;
        left: 0;
        bottom: -100px;
        display: block;
        width: 100%;
        background-color: var(--co_1);
        z-index: 10;
        transition: 0.3s ease;
    }
    .is_page_scr .footer_1 .nav_3 {
        bottom: 0;
        padding: 2px;
        background-color: var(--co_1);
    }
    .footer_1 .nav_3 > ul {
        display: flex;
        justify-content: space-between;
    }
    .footer_1 .nav_3 > ul > li {
        width: calc(100% / 2 - 1px);
    }
    .footer_1 .nav_3 a {
        position: relative;
        display: flex;
        justify-content: center;
        align-content: center;
        flex-wrap: wrap;
        height: 50px;
        color: var(--co_1);
        text-align: center;
        text-decoration: none;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        outline: none;
    }
    .page-honin .footer_1 .nav_3 a {
        background-color: var(--co_4);
    }

    .page-bunin .footer_1 .nav_3 a {
        background-color: var(--co_5);
    }

    .footer_1 .nav_3 a::before {
        content: "";
        display: block;
        margin-bottom: 2px;
        width: 100%;
        height: 15px;
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }
    .footer_1 .nav_3 > ul > li.reservation a::before {
        background-image: url(../img/ico/reservation_1.svg);
    }
    .footer_1 .nav_3 > ul > li.tel a::before {
        background-image: url(../img/ico/tel_1_c.svg);
    }
    .footer_1 .nav_3 a span {
        margin-right: 5px;
        font-size: 11px;
    }

    .footer_1 .btn_pagetop_1 {
        position: absolute;
        right: 0;
        bottom: 55px;
        display: block;
        width: 70px;
    }
    .footer_1 .copyright_1 {
        position: static;
        font-size: 11px;
        text-align: center;
    }
    .footer_1 .btn_1 {
        top: auto;
        bottom: 70px;
        width: 120px;
    }
}
/* ---------------------------------------------------- */
/* .sec_post_wrap */
/* ---------------------------------------------------- */
.sec_post_wrap {
    padding-bottom: 100px;
}

.sec_archive_wrap {
    padding-bottom: 100px;
}
