@charset "UTF-8";

/* main-common
-------------------------------*/
body{
    font-size: 16px;
    line-height: 1.7em;
}
#access {
    display: block;
    padding-top: 120px;
    margin-top: -120px;
    height: 0;
}

.sp {
    display: none !important;
}

a {
    transition: 0.3s;
}

a[href^="tel:"] {
    pointer-events: none;
}

main {
    margin-bottom: 60px;
}

.Btn_box ul {
    display: flex;
    justify-content: space-between;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 30px;
}

.Btn_box li {
    width: 32%;
}

.Btn_box li img {
    width: 100%;
}

.Btn_box a img {
    transition: 0.3s;
}

.Btn_box a:hover img {
    filter: brightness(80%);
}

main h2 {
    font-size: 34px;
    line-height: 46px;
    text-align: center;
    margin-bottom: 40px;
}

main .lead {
    text-align: center;
    line-height: 28px;
    margin-bottom: 40px;
}

.Btn a,
form#mail_form input#form_submit_button {
    background: url(../images/common/btn_bg.png) no-repeat center top;
    display: block;
    width: 345px;
    margin: 30px auto 80px;
    padding: 15px 0;
    border-radius: 30px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.Btn a:hover,
form#mail_form input#form_submit_button:hover {
    width: 370px;
}

.arrow_r a,
.arrow_l a,
form#mail_form #form_submit {
    position: relative;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.arrow_r a::before,
.arrow_l a::before,
form#mail_form #form_submit::before {
    content: '';
    width: 8px;
    height: 7px;
    border: 0;
    border-top: solid 1px #fff;
    position: absolute;
    top: 47%;
    right: 31px;
    margin-top: -2px;
    transform: rotate(45deg);
    transition: 0.3s;
}

form#mail_form #form_submit::before {
    top: 49%;
}

.arrow_r a::after,
.arrow_l a::after,
form#mail_form #form_submit::after {
    content: '';
    width: 20px;
    background: #fff;
    position: absolute;
    top: 50%;
    right: 29px;
    height: 1px;
    transition: 0.3s;
}

.arrow_r a:hover::before,
form#mail_form #form_submit:hover::before {
    right: 20px;
}

.arrow_r a:hover::after,
form#mail_form #form_submit:hover::after {
    right: 18px;
}

.arrow_l a::before {
    right: auto;
    left: 31px;
    transform: rotate(-45deg);
}

.arrow_l a::after {
    right: auto;
    left: 29px;
}

.arrow_l a:hover::before {
    left: 20px;
}

.arrow_l a:hover::after {
    left: 18px;
}

.Tit_box {
    background-size: cover;
    width: 100%;
    height: 357px;
    text-align: center;
    position: relative;
    margin-bottom: 60px;
}

.Tit_box h1 {
    font-size: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    padding-top: 57px;
    width: 100%;
    line-height: 1.3em;
}


/* header
-------------------------------*/

@media screen and (min-width: 1001px) {
    header {
        background: url(../images/common/header_bg.png) no-repeat center top;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 999;
        width: 100%;
        height: 180px;
        padding: 15px 20px;
        box-sizing: border-box;
    }
    header .logo {
        width: 203px;
        padding-top: 10px;
        position: absolute;
        top: 16px;
        left: 20px;
    }
    header .logo a {
        display: block;
    }
    header nav ul {
        display: flex;
        justify-content: center;
        max-width: 80%;
        margin: 0 auto;
        padding-top: 31px;
    }
    header nav li a {
        position: relative;
        display: block;
        font-size: 20px;
        margin: 0 15px;
        letter-spacing: -0.06em;
        font-weight: bold;
    }
    header nav li a span {
        letter-spacing: -0.16em;
    }
    header nav li a::after {
        content: "";
        display: block;
        background: #f08e9a;
        height: 2px;
        position: absolute;
        bottom: -4px;
        width: 100%;
        opacity: 0;
        transition: 0.3s;
    }
    header nav li a.here::after,
    header nav li a:hover::after {
        bottom: -10px;
        opacity: 1;
    }
    header .contact_box .tel a {
        font-family: 'Crimson Text', serif;
    }
    header .contact_box {
        display: flex;
        justify-content: space-between;
        padding-top: 5px;
        margin-left: 40px;
        max-width: 300px;
        top: 12px;
        right: 20px;
        position: absolute;
    }
    header .contact_box .tel a .t {
        font-size: 32px;
        background: url(/images/common/tel.svg) no-repeat left bottom;
        padding-left: 22px;
        display: block;
    }
    header .contact_box .tel a span.mincho {
        font-size: 16px;
        display: block;
    }
    header .contact_box .mail a {
        display: block;
        width: 48px;
        height: 48px;
        position: relative;
        background: url(/images/common/mail_bg.png) no-repeat center 50%;
        margin-left: 20px;
        padding-top: 20px;
    }
    header .contact_box .mail a:hover {
        scale: 1.1;
    }
    header .contact_box .mail a img {
        width: 23px;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        text-align: center;
        /*一応BOX内の文字も中央寄せ*/
    }
    @media screen and (max-width: 1190px) {
        header nav li.n01 {
            display: none;
        }
    }
    header .nav-button {
        display: none;
    }
    header .nav-wrap.open {
        display: block;
    }
    header .nav-wrap.close {
        display: none;
    }
    header .nav-button {
        position: absolute;
        right: 20px;
    }
}

@media screen and (max-width: 1001px) {
    header .sp {
        display: block !important;
    }
    header .pc {
        display: none !important;
    }
    header .nav-button {
        display: block;
    }
    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 999;
        width: 100%;
        height: 62px;
        padding: 10px 20px;
        box-sizing: border-box;
        background: url(../images/common/header_bg.png) repeat-x center top;
        background-size: auto 100%;
    }
    header .logo {
        width: 143px;
        padding-top: 4px;
    }
    header .logo img {
        width: 100%;
    }
    header nav ul {
        margin: 0 auto;
        padding-top: 31px;
        text-align: center;
        display: block;
        max-width: auto;
    }
    header nav li a {
        position: relative;
        display: block;
        font-size: 20px;
        margin: 0 0;
        letter-spacing: -0.06em;
        font-weight: bold;
    }
    header nav li a span {
        letter-spacing: -0.16em;
    }
    header .contact_box .tel a {
        font-family: 'Crimson Text', serif;
    }
    header .contact_box {
        padding-top: 5px;
        text-align: center;
    }
    header .contact_box .tel {
        margin: 1em 2em;
    }
    header .contact_box .tel a {
        font-size: 40px;
        padding-left: 24px;
        display: block;
        padding-bottom: 3px;
        position: relative;
    }
    header .contact_box .tel a .t {
        position: relative;
    }
    header .contact_box .tel a .t::after {
        content: "";
        display: block;
        background: url(/images/common/tel.svg) no-repeat left bottom;
        background-size: 22px;
        position: absolute;
        bottom: 9px;
        left: -27px;
        width: 22px;
        height: 30px;
    }
    header .contact_box .tel a span.mincho {
        font-size: 18px;
        display: block;
        padding-bottom: 5px;
    }
    header .contact_box .mail a {
        display: flex;
        justify-content: center;
        position: relative;
        background: url(/images/common/mail_bg02.png) no-repeat center 50%;
        background-size: cover;
        padding: 12px 0;
        border-radius: 40px;
        color: #fff;
        font-size: 24px;
        margin: 0 auto;
        width: 300px;
    }
    header .contact_box .mail a img {
        width: 33px;
        padding-right: 10px;
    }

header .sp_contactbtn_top a{
    display: block;
    width: 50px;
    height: 50px;
    position: relative;
}
header .sp_contactbtn_top .m{
    position: absolute;
    top: 6px;
    right: 98px;
}
header .sp_contactbtn_top .t{
    position: absolute;
    top: 6px;
    right: 57px;
}
header .sp_contactbtn_top .m img{
    width: 21px;
}

header .sp_contactbtn_top .t img{
    width: 15px;
}

header .sp_contactbtn_top li img{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform : translate(-50%,-50%);
    transform : translate(-50%,-50%);
    width: 100px;
    text-align: center;/*一応BOX内の文字も中央寄せ*/
}
    .nav-button {
        display: block;
        cursor: pointer;
    }
    .nav-wrap {
        position: fixed;
        left: 0;
        top: 0;
        display: none;
        z-index: 10;
        background-color: rgba(0, 0, 0, 0.7);
        width: 100%;
        height: 100%;
        background: #f6f2e6;
    }
    .nav-wrap .nav {
        height: 100%;
        position: relative;
        overflow-x: hidden;
        overflow-y: auto;
    }
    .nav-wrap li {
        display: block;
        margin: 2em 0;
    }
    .nav-wrap a {
        font-size: 20px;
    }
    header .header_inner .open {
        display: block !important;
    }
    /*メニューボタン*/
    .nav-button,
    .nav-button span {
        display: inline-block;
        transition: all 0.4s;
        box-sizing: border-box;
    }
    .nav-button {
        z-index: 20;
        position: absolute;
        width: 32px;
        height: 27px;
        top: 18px;
        right: 20px;
    }
    .nav-button span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #f08e9a;
        border-radius: 4px;
    }
    .nav-button span:nth-of-type(1) {
        top: 0;
    }
    .nav-button span:nth-of-type(2) {
        top: 12px;
    }
    .nav-button span:nth-of-type(3) {
        bottom: 0;
    }
    .nav-button.active span:nth-of-type(1) {
        -webkit-transform: translateY(16px) rotate(-45deg);
        transform: translateY(16px) rotate(-45deg);
        top: -8px;
    }
    .nav-button.active span:nth-of-type(2) {
        opacity: 0;
    }
    .nav-button.active span:nth-of-type(3) {
        -webkit-transform: translateY(-16px) rotate(45deg);
        transform: translateY(-16px) rotate(45deg);
    }
}


/* footer
-------------------------------*/

footer .Contact_area {
    background: url(/images/common/contact_bg.jpg) no-repeat center 50%;
    background-size: cover;
    width: 100%;
    height: 520px;
    position: relative;
}

footer .Contact_area .c_inner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    /*一応BOX内の文字も中央寄せ*/
}

footer .Contact_area h2 {
    color: #fff;
    font-size: 40px;
    text-align: center;
    margin-bottom: 30px;
}

footer .contact_box .tel a {
    font-family: 'Crimson Text', serif;
}

footer .contact_box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5px;
    min-width: 840px;
}

footer .contact_box li {
    margin: 0 10px;
}

footer .contact_box .tel a {
    font-size: 62px;
    background: url(/images/common/tel02.svg) no-repeat left 62%;
    background-size: 34px auto;
    padding: 20px 0 20px 38px;
    display: block;
    color: #fff;
}

footer .contact_box .tel a span {
    display: block;
}

footer .contact_box .mail a {
    display: block;
    width: 351px;
    height: 48px;
    position: relative;
    background: url(/images/common/mail_bg02.png) no-repeat center 50%;
    background-size: cover;
    margin-left: 20px;
    padding-top: 20px;
    border-radius: 40px;
    color: #fff;
    font-size: 26px;
    padding-left: 30px;
}

footer .contact_box .mail a:hover {
    width: 371px;
}

footer .contact_box .mail a img {
    width: 23px;
    position: absolute;
    top: 50%;
    left: 23%;
    margin-top: -9px;
}
footer .c_inner .txt{
    text-align: center;
    color: #fff;
    font-size: 18px;
    margin-top: 20px;
}
footer .timebox{
    background: #ecead9;
    padding: 80px 0;
}
footer .timetxt{
    text-align: center;
    font-size: 14px;
    margin: 5px 0;
}
footer .timebox table{
    background: #f6f2e6;
    border: solid 1px #cfc8bf;
    width: 604px;
    margin: 0 auto;
    

}
footer .timebox h2{
    font-size: 34px;
line-height: 46px;
text-align: center;
margin-bottom: 10px;
}
footer .timebox .lead{
    text-align: center;
    line-height: 28px;
    margin-bottom: 20px;
}


footer .timebox table th,
footer .timebox table td{
    text-align: center;
    padding: 7px 10px;
    border: solid 1px #cfc8bf;
}
footer .timebox table th{
    background: #e6e2c2;
    font-size: 18px;
}
footer .timebox table th.t{
    text-align: right;
    background: none;
    padding: 7px 30px;
    width: 180px;

}
footer .timebox table td{
    color: #8ab864;
    font-size: 16px;

}
footer .timebox table td.g{
    color:#628942 ;
    
}
footer .Accessmap{
    padding: 80px 0;
}
footer .Accessmap h2{
    font-size: 34px;
line-height: 46px;
text-align: center;
margin-bottom: 10px;
}
footer .Accessmap address{
    text-align: center;
    line-height: 28px;
    margin-bottom: 20px;
}
footer .Accessmap address .mincho{
    font-size: 20px;
}
footer .Accessmap .Map02{
    width: 716px;
    margin: 0 auto;
}
footer .Accessmap .Map02 img{
    width: 100%;
    height: auto;
}

footer .Shop_box .inner {
    max-width: 960px;
    margin: 0 auto 60px;
    padding: 0 20px;
    display: flex;
}

footer .Shop_box address {
    line-height: 1.4em;
}

footer .Shop_box address strong {
    display: block;
    margin-bottom: 5px;
}

footer .Shop_box .p {
    max-width: 300px;
}

footer .Shop_box .p img {
    width: 100%;
}

footer .Shop_box .d {
    background: url(/images/common/map.svg) no-repeat right top;
    background-size: 200px;
}

footer .Shop_box .d {
    max-width: 580px;
    padding: 0 40px;
}

footer .Shop_box p strong {
    font-size: 22px;
    padding-right: 20px;
}

footer .Shop_box p {
    margin-bottom: 20px;
}

footer .Shop_box .time {
    margin-top: 56px;
}

footer .Shop_box .time figure img {
    width: 100%;
}

footer .Map iframe {
    width: 100%;
}

footer .Map iframe,
footer .Map object,
footer .Map embed {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
}

footer .copy {
    text-align: center;
    padding: 10px 0;
    letter-spacing: 0.03em;
}

footer .Btn_box {
    padding: 60px 0;
    background: #f0e9d6;
}