@charset "UTF-8";

/*==========================
共通
===========================*/
* {
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 2.1;
    font-weight: 400;
    margin: 0;
    padding: 0;
    font-size: 16px;
}

h2 {
    font-size: 2.8em;
    color: #ED6A81;
    /* font-family: "Hannari", 'Noto Serif JP', serif; */
    padding: 1em;
    font-weight: 500;
}

.wf-hannari {
    font-family: "Hannari", 'Noto Serif JP', serif;
}

a.btn {
    color: #fff !important;
    background: #ED6A81;
    padding: 13px 30px;
    border-radius: 30px;
    margin: 3em 0;
    display: inline-block;
}

a.btn:hover {
    opacity: 0.7;
}

a:link {
    color: #412210;
    transition: 0.6s;
    text-decoration: none;
}

a:visited {
    color: #412210;
}

a:hover {
    color: #ED6A81;
    transition: 0.3s;
}

a:active {
    color: #412210;
}

.small {
    font-size: 0.8em;
}

.pc_only {
    display: block;
}

.sp_only {
    display: none;
}

.xsp_only {
    display: none;
}

.t_r {
    text-align: right;
}

.t_l {
    text-align: left;
}

.bold {
    font-weight: 600;
}

.size_up {
    font-size: 2em;
}

.size_down {
    font-size: 0.7em;
}

@media screen and (max-width: 768px) {
    .pc_only {
        display: none;
    }

    .sp_only {
        display: block;
    }

    .xsp_only {
        display: none;
    }

    .t_r {
        text-align: center;
    }

    .t_l {
        text-align: center;
    }

    h2 {
        font-size: 2em;
        padding: 1em;
    }

    a.btn {
        padding: 13px 30px;
        border-radius: 30px;
        margin: 3em 0;
        display: inline-block;
    }
}

@media screen and (max-width: 480px) {
    body {
        font-weight: 500;
    }

    .xsp_only {
        display: block;
    }

    h2 {
        font-size: 1.7em;
        padding: 1em;
    }
}

/*==========================
レイアウト
===========================*/
.container {
    max-width: 1280px;
    margin: 0 auto;
}

@media screen and (max-width: 960px) {
    .container {
        width: 100%;
        padding: 0 3%;
    }
}

/*==========================
ヘッダー
===========================*/
header {
    z-index: 10;
    position: relative;
}

#header_group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 40px;
}

nav {
    display: block;
}

.logo img {
    height: 120px;
    padding: 0;
    margin: 10px 0;
}

header nav ul {
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    font-size: 16px;
    font-family: 'Noto Serif JP', serif;
    margin-left: auto;
    border-radius: 30px;
    height: 60px;
    padding-left: 20px;
    box-shadow: 3px 3px 10px 1px rgba(0, 0, 0, 0.1);
}

header nav ul li {
    padding: 0 1em;
}

header nav ul li:last-child {
    padding: 0 0 0 1.4em;
}

header nav ul .reserve img {
    height: 60px;
}

img.point {
    width: 150px;
    position: absolute;
    top: 17px;
    right: 75px;
}

#nav_btn {
    display: none;
}

@media screen and (max-width: 1100px) {
    #header_group {
        margin: 0 30px;
    }

    header nav ul li {
        font-size: 0.9em;
        padding: 0.75em;
    }
}

@media screen and (max-width: 960px) {
    header {
        z-index: 100;
        position: relative;
        background: #fff;
    }

    .logo img {
        height: 42px;
        margin: 0;
    }

    #header_group {
        margin: 0 0 0 5px;
        height: 60px;
    }

    header nav ul {
        padding-left: 15px;
        box-shadow: 3px 3px 10px 1px rgba(0, 0, 0, 0.1);
        height: 50px;
    }

    header nav ul li {
        font-size: 0.8em;
        padding: 1em;
    }

    header nav ul .reserve img {
        height: 50px !important;
    }

    img.point {
        display: none;
    }

    header nav ul .reserve {
        display: none;
    }

    #nav_btn {
        display: block;
    }

    .nav_icon {
        display: flex;
        justify-content: center;
    }

    #nav_btn img {
        width: 60px;
    }
}

/*ハンバーガーメニュー*/
@media screen and (max-width: 960px) {

    /*メニュー部分*/
    nav {
        display: none;
        position: absolute;
        top: 0;
        width: 70%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        left: 0;
        z-index: 90;
    }

    header nav ul {
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        right: 0px;
        bottom: 0px;
        left: 0px;
        margin: auto;
        border-radius: 0;
        padding: 3em 2em 0;
        box-shadow: none;
        padding-top: 5em;
        background: none;
    }

    header nav ul li {
        margin: 0 auto;
        text-align: left;
        padding: 0.5em 1em;
        font-size: 1.2em;
        border-bottom: 1px dashed #412210;
    }

    header nav ul li:last-child {
        border: none;
    }

    header nav ul li a {
        display: block;
        color: #ED6A81;
    }
}

@media screen and (max-width: 960px) {

    /*開閉ボタン*/
    #nav_toggle {
        display: block;
        width: 60px;
        height: 60px;
        position: relative;
        z-index: 100;
        padding: 19px;
    }

    #nav_toggle div {
        position: relative;
    }

    #nav_toggle span {
        display: block;
        height: 3px;
        background: #ED6A81;
        position: absolute;
        width: 100%;
        left: 0;
        transition: 0.5s ease-in-out;
    }

    #nav_toggle span:nth-child(1) {
        top: 0px;
    }

    #nav_toggle span:nth-child(2) {
        top: 10px;
    }

    #nav_toggle span:nth-child(3) {
        top: 20px;
    }

    /*開閉ボタンopen時*/
    .open #nav_toggle span:nth-child(1) {
        top: 12px;
        transform: rotate(135deg);
    }

    .open #nav_toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }

    .open #nav_toggle span:nth-child(3) {
        top: 12px;
        transform: rotate(-135deg);
    }
}


/*==========================
フッター
===========================*/
footer {
    color: #412210;
    font-size: 13px;
    background: #fff;
    font-weight: 500;
}

footer a:link {
    color: #412210;
}

footer a:visited {
    color: #412210;
}

footer a:hover {
    color: #ED6A81;
    transition: 0.3s;
}

footer a:active {
    color: #412210;
}

footer .footer_group {
    display: flex;
    padding: 4em 3em 6em;
    margin-right: 2em;
    margin: 0 auto;
}

footer .company {
    padding-right: 5%;
}

footer .company .comp {
    font-size: 13px;
    font-weight: 600;
    line-height: 3;
}

footer .company p {
    line-height: 2;
    margin: 0 auto;
}

footer .footer_nav {
    margin: 0 auto;
}

footer .footer_nav a {
    color: #ED6A81;
}

footer .footer_nav a:hover {
    opacity: 0.7;
}

footer .footer_nav li {
    line-height: 2;
    font-weight: 600;
    border-bottom: 2px solid #ED6A81;
    width: 120px;
    margin-right: 1.5em;
}

footer .copy {
    background: url("../common/img/bg.jpg") no-repeat;
}

footer .copy p {
    text-align: center;
    padding: 1.5em;
    margin: 0;
    vertical-align: bottom;
    font-size: 11px;
}

footer .fa {
    width: 36px;
    font-size: 22px;
    padding-top: 0.8em;
}

.footer-btn {
    position: relative;
    text-align: right;
}

.footer-btn img {
    position: absolute;
    bottom: 105px;
    right: 40px;
    width: 250px;
}

.footer-btn img.sec {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 250px;
}

.f-logo img {
    height: 150px;
    padding: 0;
    margin-bottom: 10px;
}

@media screen and (min-width: 481px) and (max-width: 1000px) {
    footer .footer_group {
        display: block;
        padding: 2em 2em;
    }

    footer .company {
        padding: 0 0 2em 0;
    }

    footer .footer_nav {
        float: left;
        width: 34%;
        margin-bottom: 2em;
    }

    .clearfix:after {
        content: "";
        display: block;
        clear: both;
    }

    .footer-btn img {
        bottom: 385px;
        right: 40px;
        width: 220px;
    }

    .footer-btn img.sec {
        bottom: 325px;
        right: 40px;
        width: 220px;
    }
}

@media screen and (max-width: 480px) {
    footer {
        text-align: center;
    }

    footer .footer_group {
        display: block;
        padding: 2em 1em;
    }

    footer .company {
        padding: 0 0 2em 0;
    }

    footer .footer_nav {
        float: none;
        width: auto;
        margin-bottom: 1em;
    }

    footer .fa {
        padding-top: 1em;
    }

    .footer-btn img {
        bottom: 89px;
        right: 15px;
        width: 200px;
    }

    .footer-btn img.sec {
        bottom: 37px;
        right: 15px;
        width: 200px;
    }
}

@media screen and (max-width: 325px) {
    .footer-btn img {
        bottom: 83px;
        right: 10px;
        width: 170px;
    }

    .footer-btn img.sec {
        bottom: 38px;
        right: 10px;
        width: 170px;
    }

    footer .footer_nav li {
        width: 110px;
    }
}