@charset "UTF-8";
@import url("css/ress.min.css");

/*
theme Name: holland
Author: holland
Description: holland
*/

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
    /*pxだと10px;*/
}

@media screen and (max-width: 1000px) {
    html {
        font-size: 57%;
        /*pxだと9.12px;*/
    }
}

body {
    width: 100%;
    height: auto;
    color: #3d3e3e;
    font-family: "Avenir", "Helvetica Neue", "Helvetica", "Arial", "Hiragino Sans",
        "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo,
        "ＭＳ Ｐゴシック", "MS PGothic";
    position: relative;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    display: block;
    color: #000;
    text-decoration-line: none;
}

a:hover {
    opacity: 0.8;
}

a img:hover {
    opacity: 0.8;
}

.underline {
    border-bottom: 3px solid #000;
    padding-bottom: 1rem;
}

.pc-none {
    display: none;
}

.sp-none {
    display: block;
}

@media screen and (max-width: 900px) {
    .pc-none {
        display: block;
    }

    .sp-none {
        display: none;
    }
}

.clear {
    clear: both;
}

/*ヘッダー
-------------------------------------*/
header {
    width: 100%;
    background: #f5f4ed;
}

.header-inner {
    width: 94%;
    height: 78px;
    margin: 0 auto;
    padding-top: 12px;
    display: flex;
    justify-content: space-between;
}

header .logo-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo-area img {
    width: 67.62px;
    height: 53px;
}

header .shop-name {
    height: 38px;
    line-height: 1.5;
    margin-left: 1.5rem;
}

header .shop-name h1 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #01592d;
    margin-top: 0.2rem;
}

header .shop-name p {
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    color: #01592d;
}

/*メインナビゲーション*/
nav {}

nav ul {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 55px;
}

nav li {
    position: relative;
    white-space: nowrap;
    padding: 0 4rem;
    height: 29px;
    display: flex;
    align-items: center;
    border-left: 1px dotted #01592d;
}

nav li:last-child {
    padding: 0 0 0 4rem;
}

nav li a {
    display: block;
    width: 100%;
    height: 29px;
    line-height: 29px;
    text-decoration: none;
    text-align: center;
    font-size: 1.5rem;
    color: #01592d;
}

@media screen and (min-width: 901px) {

    /* PC時はMENUボタンを非表示 */
    .toggle_btn {
        display: none !important;
    }

    #navi {
        display: block !important;
    }

    .contact-area {
        display: block !important;
    }

    .logo-sp {
        display: none !important;
    }

    .contact-area-sp {
        display: none !important;
    }
}

@media screen and (max-width: 900px) {
    header {
        height: 60px;
    }

    .header-inner {
        height: 60px;
    }

    header .logo-sp {
        width: 190px;
        margin: 68px auto 50px;
        text-align: center;
    }

    header .logo-sp img {
        width: 66.34px;
        margin: 0 auto;
    }

    header .logo-sp p {
        font-size: 1.3rem;
        font-weight: 600;
        color: #01592d;
        padding-top: 1rem;
    }

    header .logo-area img {
        width: auto;
        height: 35px;
    }

    header .shop-name {
        height: 30px;
    }

    header .shop-name p {
        font-size: 0.9rem;
        text-align: left;
    }

    header .shop-name h1 {
        font-size: 1.3rem;
    }

    nav {
        display: block;
        position: fixed;
        top: 0;
        right: -256px;
        width: 256px;
        height: 100vh;
        background: #ffffff;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transition: all 0.5s;
        z-index: 200;
        opacity: 0;
    }

    .open nav {
        right: 0;
        opacity: 1;
        background: #f5f4ed;
    }

    nav .inner {
        padding: 25px;
    }

    nav .inner ul {
        display: block;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    nav .inner ul li {
        position: relative;
        margin: 0;
        padding: 0;
    }

    nav li {
        border: none;
        height: auto;
        display: block;
    }

    nav li:last-child {
        padding: 0 0.5em;
    }

    nav .inner ul li a {
        display: block;
        color: #01592d;
        font-size: 1.5rem;
        padding: 0.6rem 1em;
        height: auto;
        text-decoration: none;
        transition-duration: 0.2s;
        text-align: left;
        animation-name: fadein;
        animation-duration: 1.8s;
        animation-timing-function: ease-out;
    }

    nav .inner ul li a.fade01 {
        animation-delay: 0;
    }

    nav .inner ul li a.fade02 {
        animation-delay: 0.2s;
    }

    nav .inner ul li a.fade03 {
        animation-delay: 0.4s;
    }

    nav .inner ul li a.fade04 {
        animation-delay: 0.6s;
    }

    nav .inner ul li a.fade05 {
        animation-delay: 0.8s;
    }

    nav .inner ul li a:hover {
        background: #e4e4e4;
    }

    @keyframes fadein {
        0% {
            opacity: 0;
            transform: translateX(100px);
        }

        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /*ハンバーガーボタン*/
    .toggle_btn {
        display: block;
        position: fixed;
        top: 20px;
        right: 25px;
        width: 20px;
        height: 20px;
        transition: all 0.5s;
        cursor: pointer;
        z-index: 3;
    }

    .toggle_btn span {
        display: block;
        position: absolute;
        left: 0;
        width: 20px;
        height: 2px;
        background-color: #01592d;
        border-radius: 4px;
        transition: all 0.5s;
    }

    .toggle_btn span:nth-child(1) {
        top: 4px;
    }

    .toggle_btn span:nth-child(2) {
        top: 10px;
    }

    .toggle_btn span:nth-child(3) {
        top: 16px;
    }

    .open .toggle_btn {
        z-index: 300;
    }

    .open .toggle_btn span {
        background-color: #01592d;
    }

    .open .toggle_btn span:nth-child(1) {
        -webkit-transform: translateY(10px) rotate(-315deg);
        transform: translateY(10px) rotate(-315deg);
        top: 0;
    }

    .open .toggle_btn span:nth-child(2) {
        opacity: 0;
    }

    .open .toggle_btn span:nth-child(3) {
        -webkit-transform: translateY(-10px) rotate(315deg);
        transform: translateY(-10px) rotate(315deg);
        top: 20px;
    }

    #mask {
        display: none;
        transition: all 0.5s;
    }

    .open #mask {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #000;
        opacity: 0.8;
        z-index: 2;
        cursor: pointer;
    }
}

@media screen and (max-width: 500px) {
    header h1 {
        padding-top: 0;
        padding-left: 0;
        padding-right: 0;
        width: 200px;
    }
}

/*コンテナ
-------------------------------------*/
main {}

.container {
    max-width: 960px;
    width: 90%;
    margin: 0 auto;
}

.container02 {
    margin-top: 60px;
}

@media screen and (max-width: 900px) {
    .container02 {}
}

.container-full {
    width: 100%;
}

/*フッター
-------------------------------------*/
footer {
    background: #01592d;
    color: #fff;
    padding: 24px 0;
}

.footer-inner {
    width: 94%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 900px) {
    .footer-inner {
        width: 90%;
    }
}

footer .logo-area {
    width: auto;
    height: 59px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .logo-area img {
    margin-right: 1.5rem;
}

footer .logo-area p {
    font-size: 1.3rem;
}

nav.footer-nav {
    padding-top: 0;
}

nav.footer-nav a {
    padding: 0;
}

footer nav ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0;
    padding: 0 60px 0 0;
    height: 59px;
}

.footer-nav ul li,
.footer-nav ul li a {
    color: #fff;
    font-size: 1.4rem;
}

@media screen and (max-width: 900px) {
    .footer-inner {
        display: block;
    }

    footer .logo-area {
        width: 220px;
        margin: 0 auto 30px;
    }

    nav.footer-nav {
        padding-top: 0;
        opacity: 1;
        position: static;
        width: 100%;
        height: auto;
        background: #01592d;
    }

    footer nav ul {
        height: auto;
        padding: 0;
    }

    .footer-nav ul li {
        padding: 0 1rem;
    }
}

@media screen and (max-width: 500px) {
    footer {
        padding: 3rem 0 1rem;
    }

    footer ul.menu {
        padding-top: 3rem;
        margin-bottom: 1rem;
    }
}

/*コピーライト
-------------------------------------*/
.copyright {
    padding: 0 6% 20px;
    background: #01592d;
    color: #fff;
    font-size: 1.2rem;
    text-align: right;
}

@media screen and (max-width: 900px) {
    .copyright {
        padding: 20px 0;
        text-align: center;
    }
}

.copyright a {
    color: #000;
    text-decoration: none;
    display: inline-block;
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
    position: fixed;
    bottom: 17%;
    right: 3%;
    width: 40px;
    height: 40px;
    background: #666;
}

#pagetop a {
    position: relative;
    display: block;
    color: #fff;
    width: 40px;
    height: 40px;
    text-decoration: none;
}

#pagetop a:hover {
    background: #999;
}

#pagetop a::after {
    content: "▲";
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    position: absolute;
    top: 10px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}

/*パンくずリスト
-----------------------------------*/
.breadcrumb {
    padding: 0;
    line-height: 40px;
}

.breadcrumb ul {
    padding: 0;
}

.breadcrumb li {
    list-style-type: none;
    display: inline-block;
}

.breadcrumb li,
.breadcrumb li a {
    color: #3b4043;
    font-size: 1.2rem;
}

.breadcrumb .fas {
    padding: 0 1rem;
}

@media screen and (max-width: 500px) {
    .breadcrumb {
        line-height: 40px;
    }

    .topimg {
        margin-bottom: 20px;
    }
}

/*CONTACT FORM7用スタイル
-----------------------------------*/
.form-wrap {
    width: 630px;
    margin: 60px auto 77px;
}

.form-wrap p {
    margin-bottom: 1em;
}

input.wpcf7-form-control,
input.wpcf7-text,
input.wpcf7-validates-as-required {
    width: 100%;
}

input.wpcf7-submit {
    display: block;
    width: 200px;
    margin: 1em auto;
    background: #000;
    color: #fff;
}

textarea.wpcf7-form-control,
textarea.wpcf7-textarea {
    width: 100%;
}

span.wpcf7-list-item-label {
    font-weight: 300;
}

span.require {
    font-size: 0.6em;
    display: inline-block;
    padding: 0.2em 0.8em;
    background: #ffa10a;
    color: #fff;
    border-radius: 5px;
    margin-left: 1em;
}

input.wpcf7-submit {
    width: 120px;
    height: 32px;
    background: #000;
}

/* 900px以下の表示 */
@media (max-width: 900px) {
    .form-wrap {
        width: 94%;
        margin: 0 auto;
    }
}

/* 500px以下の表示 */
@media screen and (max-width: 500px) {}
