@charset "utf-8";

/*------------------------

ベース

------------------------*/
* {
    box-sizing: border-box;
}

html {
    overflow: auto;
    font-size: 62.5%;
    -webkit-text-size-adjust: 100%;
    box-sizing: border-box;
}

body {
    min-width: 1280px;
    height: 100%;
    background-color: #fafafa;
    overflow: hidden;
    font-family: "游ゴシック Medium", "YuGothic,YuGothicM", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.618;
    letter-spacing: .05em;
    word-wrap: break-word;
    word-break: break-all;
    font-feature-settings: "palt";
}

@media screen and (max-width: 980px) {
    body {
        min-width: 320px;
    }
}

@media screen and (min-width: 560px) {
    .page {
        width: 100%;
        min-height: 100vh;
        overflow-x: hidden;
    }

    .content {
        width: 100%;
        margin-top: 90px;
        position: relative;
        overflow: hidden;
    }
}

@media screen and (max-width: 980px) {
    .content {
        width: 100%;
        margin-top: 60px;
        position: relative;
        overflow: hidden;
    }
}

.beige {
    background-color: #f1efec;
}

.wrap {
    width: 1000px;
    margin: auto;
}

@media screen and (max-width: 980px) {
    .wrap {
        width: calc(100% - 48px);
        margin: auto;
    }
}

/*------------------------

画像

------------------------*/
img {
    max-width: 100%;
    vertical-align: bottom;
}

/*------------------------

googlemap

------------------------*/
.gmap {
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
    overflow: hidden;
}

.gmap iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/*------------------------

リンク

------------------------*/
a img {
    transition: .3s;
}

a {
    transition: .3s;
    color: #333;
    text-decoration: none;
}

a:hover img {
    opacity: .7;
}

@media screen and (min-width: 560px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}

/*------------------------

表示・非表示

------------------------*/
.view_pc {
    display: inline-block;
}

.view_sp {
    display: none;
}

@media screen and (max-width: 980px) {
    .view_pc {
        display: none !important;
    }

    .view_sp {
        display: inline-block;
    }
}

/*------------------------

ヘッダー

------------------------*/
.header {
    width: 100%;
    height: 90px;
    background: #fff;
    box-shadow: 0 0 4px rgba(0, 0, 0, .1);
    position: fixed;
    z-index: 999;
}

.box_head {
    width: 100%;
    padding: 0;
    display: flex;
}

.box_head h1 {
    width: 210px;
    height: 90px;
    background-image: -moz-linear-gradient(0deg, rgb(139, 114, 70) 0%, rgb(81, 63, 1) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(139, 114, 70) 0%, rgb(81, 63, 1) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(139, 114, 70) 0%, rgb(81, 63, 1) 100%);
}

.box_head h1 a {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav {
    margin-left: auto;
}

.nav ul {
    height: 100%;
    display: flex;
}

.nav li a {
    width: 100%;
    height: 100%;
    padding: 0 1.4vw;
    position: relative;
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.4rem;
}

.nav li a::after {
    width: 0;
    height: 2px;
    margin: auto;
    content: "";
    transition: all .2s cubic-bezier(.455, .03, .515, .955);
    background-image: -moz-linear-gradient(0deg, rgb(139, 114, 70) 0%, rgb(81, 63, 1) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(139, 114, 70) 0%, rgb(81, 63, 1) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(139, 114, 70) 0%, rgb(81, 63, 1) 100%);
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    display: block;
}

.nav li a:hover::after {
    width: 100%;
}

.nav_contact {
    width: 180px;
    margin-right: 20px;
    margin-left: 20px;
    display: flex;
    align-items: center;
}

a.btn_contact {
    width: 100%;
    margin: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #fff;
    text-align: center;
    z-index: 0;
}

a.btn_contact:before {
    width: 100%;
    height: 40px;
    content: "";
    transition: .5s;
    border-radius: 20px;
    background: linear-gradient(to right, rgb(139, 114, 70), rgb(81, 63, 1));
    position: absolute;
    left: 0;
    z-index: -1;
}

a.btn_contact:after {
    width: 100%;
    height: 40px;
    content: "";
    border-radius: 20px;
    background: linear-gradient(to right, rgb(81, 63, 1), rgb(139, 114, 70));
    position: absolute;
    left: 0;
    z-index: -2;
}

a.btn_contact:hover:before {
    opacity: 0;
}
@media screen and (max-width:1200px) {
    .nav li a {
        padding: 0 10px;
    }
    .box_head h1 a {
        padding: 30px 10px;
    }
    .box_head h1 {
        width: 120px;
    }
}

@media screen and (max-width:980px) {
    .header {
        height: 60px;
        top: 0;
    }

    .box_head {
        padding: 0;
    }

    .box_head h1 {
        width: calc(100% - 68px);
        height: 60px;
        padding: 10px 30px 10px 10px;
    }

    .box_head h1 a {
        padding: 0;
        justify-content: flex-start;
    }

    .box_head h1 a img {
        height: 40px;
    }

    .nav {
        display: none;
    }

    .nav_contact {
        display: none;
    }
}

/*------------------------

スマホナビ

------------------------*/
.nav_sp {
    display: none;
}

@media screen and (max-width:980px) {
    .nav_sp {
        display: block;
    }

    .zdo_drawer_menu .zdo_drawer_bg {
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, .7);
        position: fixed;
        top: 0;
        left: 0;
        display: none;
        z-index: 999;
    }

    .zdo_drawer_menu .zdo_drawer_button {
        width: 35px;
        padding: 0;
        cursor: pointer;
        border: none;
        outline: none;
        background: none;
        position: fixed;
        top: 11px;
        right: 15px;
        display: block;
        text-align: center;
        z-index: 1001;
    }

    .zdo_drawer_menu .zdo_drawer_button.active {
        transition: all .2s;
        top: 10px;
        right: 250px;
    }

    .zdo_drawer_menu .zdo_drawer_bar {
        height: 3px;
        margin: 7px 0 0;
        transition: all .2s;
        background-color: #523f02;
        display: block;
        transform-origin: 0 0;
    }

    .zdo_drawer_menu .zdo_drawer_button.active .zdo_drawer_bar {
        width: 35px;
        height: 3px;
        margin: 0;
        background-color: #fff;
    }

    .zdo_drawer_menu .zdo_drawer_button.active .zdo_drawer_bar1 {
        margin: 31px 0 0 !important;
        transform: rotate(-45deg);
    }

    .zdo_drawer_menu .zdo_drawer_button.active .zdo_drawer_bar2 {
        opacity: 0;
    }

    .zdo_drawer_menu .zdo_drawer_button.active .zdo_drawer_bar3 {
        margin: -31px 0 0 2.25px !important;
        transform: rotate(45deg);
    }

    .zdo_drawer_menu .zdo_drawer_button.active .zdo_drawer_close {
        display: block;
    }

    .zdo_drawer_menu .zdo_drawer_close {
        display: none;
    }

    .zdo_drawer_menu .zdo_drawer_nav_wrapper {
        width: 240px;
        height: 100%;
        padding: 60px 0 0;
        transition: all .2s;
        background: #523f02;
        position: fixed;
        top: 0;
        right: 0;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 1000;
        transform: translate(260px);
    }

    .zdo_drawer_menu .zdo_drawer_nav_wrapper.open {
        transform: translate(0);
    }

    .switch li a {
        padding: 20px 20px;
        cursor: pointer;
        display: block;
        font-weight: bold;
        line-height: 1.0;
        color: #fff;
    }

    .switch li a:hover {
        background: #ff2a01;
        color: #fff;
    }
}

/*------------------------

お問い合わせ

------------------------*/
.contact {
    padding: 70px 0;
    background-image: url(../img/contact.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.container_contact {
    display: flex;
}

.contact .title {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 2.313;
    color: #fff;
}

.contact .title span {
    padding-bottom: 3px;
    position: relative;
}

.contact .title span:before {
    width: 100%;
    height: 2px;
    content: "";
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
}

.contact .text {
    margin-top: 35px;
    font-size: 16px;
    line-height: 2.313;
    color: #fff;
}

.contact .right-box_contact {
    width: 400px;
    margin-left: auto;
}

.contact .tel,
.contact .contact-btn {
    position: relative;
}

.contact .tel:after,
.contact .contact-btn:after {
    width: 0;
    height: 0;
    content: "";
    border-width: 0 0 24px 24px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
    position: absolute;
    right: 0;
    bottom: 0;
}

.contact a {
    width: 100%;
    padding: 20px 0;
    border-bottom: 2px solid rgba(255, 255, 255, .45);
    position: relative;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    line-height: 2.313;
    color: #fff;
}

.contact a:after {
    width: 100%;
    height: 2px;
    content: "";
    transition: transform .3s;
    background: #fff;
    position: absolute;
    bottom: -2px;
    left: 0;
    display: block;
    transform: scaleX(0);
    transform-origin: right top;
}

.contact a:hover::after {
    transform: scaleX(1);
    transform-origin: left top;
}

.contact .tel-number {
    padding-left: 40px;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 22px;
}

.contact .tel-number:before {
    width: 30px;
    height: 30px;
    margin: auto;
    content: "";
    background-image: url(../img/icon_tel.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
}

.contact .business-hours {
    margin-left: 15px;
    font-size: 14px;
    font-weight: bold;
    line-height: 3.333;
    color: #fff;
}

.contact .contact-btn {
    margin-top: 10px;
}

.contact .contact-btn span {
    padding-left: 40px;
    position: relative;
}

.contact .contact-btn span:before {
    width: 35px;
    height: 28px;
    margin: auto;
    content: "";
    background-image: url(../img/icon_mail.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
}

@media only screen and (max-width: 980px) {
    .contact {
        padding: 50px 0;
    }

    .container_contact {
        flex-direction: column;
    }

    .contact .text {
        margin-top: 30px;
        font-size: 14px;
        line-height: 2;
    }

    .contact .right-box_contact {
        width: 100%;
        margin-top: 10px;
        margin-left: 0;
    }

    .contact .tel,
    .contact .contact-btn {
        position: relative;
    }

    .contact .tel:after,
    .contact .contact-btn:after {
        border-width: 0 0 16px 16px;
    }

    .contact a {
        padding: 15px 0;
        flex-wrap: wrap;
        justify-content: center;
        font-size: 18px;
    }

    .contact .tel-number {
        font-size: 30px;
        line-height: 1.618;
    }

    .contact .business-hours {
        margin-left: 0;
        font-size: 14px;
        line-height: 1.618;
    }

    .contact .contact-btn {
        margin-top: 10px;
    }
}

/*------------------------

フッター

------------------------*/
footer {
    padding: 90px 0;
    background-color: #8b7246;
    font-size: 14px;
    line-height: 1.929;
    color: #fff;
}

.footer-container {
    display: flex;
}

.footer-info {
    width: 30%;
}

.footer-info .name {
    padding-bottom: 10px;
    position: relative;
    font-size: 18px;
    font-weight: bold;
    line-height: 2.056;
    color: rgb(255, 255, 255);
}

.footer-info .name:before {
    width: 24px;
    height: 2px;
    content: "";
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
}

.footer-info .address {
    margin-top: 20px;
}

.footer-nav {
    width: 50%;
    display: flex;
}

.nav-list {
    margin: 0 0 0 70px;
    padding: 0 0 0 20px;
    border-left: 1px solid #fff;
    display: flex;
    flex-wrap: wrap;
}

.nav-list li {
    width: 100%;
}

.nav-list li+li {
    margin-top: 10px;
}

.nav-list a {
    -webkit-transition: .5s;
    transition: .5s;
    display: block;
    color: #fff;
}

.nav-list a:hover {
    color: rgba(255, 255, 255, .5);
}

.copyright {
    margin-top: 60px;
}

.copyright small {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 200;
    color: rgb(255, 255, 255);
}

@media only screen and (max-width: 980px) {
    footer {
        padding: 60px 0 100px;
        font-size: 12px;
    }

    .footer-container {
        flex-direction: column;
    }

    .footer-info {
        width: 100%;
    }

    .footer-info .name {
        font-size: 16px;
    }

    .footer-nav {
        width: 100%;
        margin-top: 40px;
        flex-direction: column;
    }

    .nav-list {
        margin: 0;
        padding: 0;
        border: 0;
    }

    .nav-list li {
        width: 50%;
    }

    .nav-list li+li {
        margin-top: 0;
    }

    .nav-list a {
        padding: 10px 20px;
        border-left: 1px solid #fff;
    }
}

/*------------------------

トップへ戻る

------------------------*/
.pagetop {
    position: fixed;
    right: 20px;
    bottom: 20px;
}

.pagetop a {
    width: 133px;
    height: 133px;
}

.pagetop a:hover {
    opacity: .7;
}

.pagetop a img {
    width: 133px;
    height: 133px;
}

@media screen and (max-width: 980px) {
    .pagetop {
        right: 5px;
        bottom: 5px;
    }

    .pagetop a,
    .pagetop a img {
        width: 60px;
        height: 60px;
    }
}

/*------------------------

見出し

------------------------*/
.bar01 {
    text-align: center;
}

.bar01 .title {
    padding-bottom: 15px;
    position: relative;
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.35;
    color: rgb(139, 114, 70);
    letter-spacing: .1em;
}

.bar01 .title:before {
    width: 100%;
    height: 2px;
    content: "";
    background-color: #8b7246;
    position: absolute;
    bottom: 0;
    left: 0;
}

@media only screen and (max-width: 980px) {
    .bar01 .title {
        font-size: 16px;
    }
}

/*------------------------

ボタン

------------------------*/
.btn01 {
    padding: 12px;
    -webkit-transition: .4s;
    transition: .4s;
    position: relative;
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 2.313;
    color: #fff;
    text-align: center;
    letter-spacing: .1em;
}

.btn01:before {
    width: 100%;
    height: 100%;
    content: "";
    transition: .5s;
    background: linear-gradient(to right, rgb(139, 114, 70), rgb(81, 63, 1));
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.btn01:after {
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(to right, rgb(81, 63, 1), rgb(139, 114, 70));
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}

.btn01:hover:before {
    opacity: 0;
}

@media only screen and (max-width: 980px) {
    .btn01 {
        font-size: 14px;
    }
}

.btn02 {
    padding: 12px;
    -webkit-transition: .4s;
    transition: .4s;
    border: 2px solid #fff;
    box-shadow: 0 0 7.2px rgba(45, 45, 45, .6);
    position: relative;
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 2.313;
    color: #fff;
    text-shadow: 0 0 7.2px rgba(45, 45, 45, .6);
    text-align: center;
    letter-spacing: .1em;
}

.btn02:hover {
    background-color: #fff;
    color: rgb(139, 114, 70);
    text-shadow: none;
}

@media only screen and (max-width: 980px) {
    .btn02 {
        font-size: 14px;
    }
}
