@charset "UTF-8";

/*=================
変数
==================*/
:root {
    --size-md: 1.6rem;
    --white: #fff;
    --brown: #a58254;
    --lightbrown: #f4efe8;
    --text-color: #444;
    --font-sans: "Noto Sans JP", sans-serif;
    --font-zen: "Zen Kurenaido", serif;
    --header-height-pc: 72px;
    --header-height-SP: 84px;
}


/*=================
共通設定
==================*/

.site-info,
.footer-info,
.footer-credits,
.powered-by,
.site-footer,
footer .site-info,
footer .powered-by,
footer .footer-credits {
    display: none;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#access {
    scroll-margin-top: 40px;
}

.sp {
    display: none;
}


html {
    font-size: 62.5%;
}

body {
    font-size: var(--size-md);
    color: var(--text-color);
    line-height: 1.5;
    font-family: var(--font-sans);
}

a {
    text-decoration: none;
    display: block;
    color: inherit;
    cursor: pointer;
}

img {
    object-fit: cover;
    display: block;
    max-width: 100%;
}

li {
    list-style-type: none;
}

i {
    display: block;
}

.section-inner {
    max-width: 1200px;
    margin-inline: auto;
}

.btn {
    width: 240px;
    margin-top: 32px;
    margin-inline: auto;
    background-color: var(--brown);
    border-radius: 8px;
    text-align: center;
}

.btn a {
    color: var(--white);
    padding-left: 16px;
    transition: 0.3s;
    font-weight: 600;
    display: inline-block;
    line-height: 2.5;
}

.btn a:after {
    content: "\e5cc";
    font-family: 'Material Icons';
    margin-left: 16px;
    transition: 0.3s;
    display: inline-block;
}

.btn a:hover::after {
    transform: translateX(10px);
}

.btn a:hover {
    opacity: 0.7;
}

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

    .sp {
        display: block;
    }

    .section-inner {
        max-width: 700px;
    }

    .btn {
        margin-inline: auto;
    }

}

/*=================
ヘッダー
==================*/
.header-inner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--lightbrown);
    z-index: 15;
}

.header-inner .title {
    margin-left: 32px;
    font-size: 20px;
    font-family: var(--font-zen);
    font-weight: 600;
}

.global-nav {
    margin-left: auto;
    padding-right: 80px;
}

.global-nav ul {
    display: flex;
    gap: 48px;
}

.global-nav a {
    text-decoration: none;
    transition: opacity .3s;
}

.hamburger {
    display: none;
}

.global-nav li.current-menu-item>a {
    text-decoration: underline;
    text-underline-offset: 0.4em;
}


.global-nav a:hover {
    opacity: 0.7;
}

@media screen and (max-width:768px) {
    .header-inner {
        height: 84px;
        display: block;
        background-color: transparent;
    }


    .title-wrap {
        position: fixed;
        top: 0;
        left: 0;
        height: 84px;
        align-items: center;
        line-height: 84px;
    }

    .header-inner .title {
        font-size: 18px;
        margin: 0 32px;
        height: 84px;
        color: var(--brown);
        opacity: 1;
        visibility: visible;
        transition: opacity 0.3s ease;
    }

    .title.is-hidden {
        opacity: 0;
        visibility: hidden;
    }

    .global-nav {
        display: none;
        margin-block-end: 0;
        width: 100vw;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 100;
        padding-left: 24px;
        padding-right: 24px;
        background-color: var(--brown);
        position: fixed;
        top: 0px;
    }

    .global-nav ul {
        width: 100%;
    }

    .global-nav li {
        white-space: nowrap;
        position: relative;
        width: 100%;
    }

    .global-nav a {
        display: block;
        width: 100%;
        gap: 0.6em;
    }

    .global-nav a::before {
        content: "arrow_circle_right";
        font-family: 'Material Icons';
        display: inline-block;
        color: var(--white);
        margin-right: 24px;
    }

    .global-nav li.current-menu-item {
        background-color: #fff;
    }

    .global-nav li.current-menu-item a {
        text-decoration: none;
        color: var(--brown);
        box-sizing: border-box;
    }

    .global-nav li.current-menu-item a::before {
        color: var(--brown);
    }

    .hamburger {
        display: block;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 999;
        cursor: pointer;
    }

    .hum_inner {
        position: relative;
        width: 40px;
        height: 24px;
        margin-bottom: 4px;
    }

    .hamburger span {
        position: absolute;
        left: 0;
        right: 0;
        height: 2px;
        background-color: var(--brown);
        transition: transform 0.4s, opacity 0.4s, background-color 0.4s;
        transform-origin: center center;
    }

    .hamburger span:nth-child(1) {
        top: 0;
    }

    .hamburger span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }

    .hamburger span:nth-child(3) {
        bottom: 0;
    }

    .hamburger p {
        font-size: 1rem;
        text-align: center;
        color: var(--brown);
    }

    .header-inner.open .global-nav {
        display: flex;
        transform: translateX(0);
        height: 70vh;
        background-color: var(--brown);
        opacity: 0.85;
        color: var(--white);
        z-index: 600;
    }

    .header-inner.open .global-nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        font-size: 2rem;
    }

    .header-inner.open ul a {
        display: block;
        padding-left: 50px;
        padding-top: 5px;
        padding-bottom: 5px;
        margin: 5px 0;
    }

    .hamburger.active {
        z-index: 999;
    }

    .hamburger.active .hum_inner {
        width: 30px;
    }

    .hamburger.active span:nth-child(1) {
        top: 90%;
        bottom: auto;
        transform: translateY(-50%) rotate(45deg);
        background-color: var(--white);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        top: 90%;
        bottom: auto;
        transform: translateY(-50%) rotate(-45deg);
        background-color: var(--white);
    }

    .hamburger.active p {
        display: none;
    }
}

/*=================
Main Visual
==================*/
.main-view {
    position: relative;
}

.main-view .page-title {
    position: absolute;
    top: 40%;
    left: 10%;
    font-size: 40px;
    color: var(--white);
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 1);
}

.top_img {
    width: 100vw;
    height: 400px;
    object-position: center center;
}

@media screen and (max-width:768px) {
    .main-view {
        padding-top: var(--header-height-SP);
    }

    .top_img {
        height: 200px;
    }

    .main-view .page-title {
        font-size: 28px;
    }
}

/*=================
フッター
==================*/
footer {
    margin-bottom: 24px;
}

.footer-inner {
    background-color: var(--lightbrown);
    padding-top: 48px;
    padding-bottom: 48px;
}

.footer-inner .section-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px
}

footer .footer-inner p {
    font-family: var(--font-zen);
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    margin-bottom: 24px;
}

.footer-inner .infoarea {
    margin-top: 12px;
}

footer .btn_mail {
    width: 240px;
    margin-inline: auto;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border: 2px solid var(--brown);
    background-color: var(--white);
}

.btn_mail a {
    padding-left: 16px;
    transition: 0.3s;
    font-weight: 600;
    display: inline-block;
    line-height: 2.5;
    transition: color 0.3s ease;
}

.btn_mail:hover {
    background-color: rgb(228, 226, 226);
}

footer .btn_mail::before {
    content: "\f0e0";
    font-family: "Font Awesome 7 Free";
    font-size: 20px;
    font-weight: 600;
    margin-right: 8px;
    display: inline-block;
}


.footer-menu ul {
    display: flex;
    justify-content: center;
    gap: 1px;
}

.footer-menu ul li {
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
}

.footer-menu ul li a:hover {
    opacity: 0.6;
}

.footer-menu ul li::after {
    content: "";
    width: 1px;
    height: 16px;
    background-color: var(--text-color);
    position: absolute;
    top: 5px;
    right: 0px;
}

.footer-menu ul li:nth-last-child(1)::after {
    display: none;
}

.footer-menu .sns {
    text-align: center;
}

.fa-facebook {
    color: #1877F2;
    font-size: 24px;
    transition: color 0.3s ease;
}

.copy_right p {
    margin-top: 12px;
    text-align: center;
    font-size: 14px;
}

@media screen and (max-width:768px) {
    .footer-inner {
        padding-left: 32px;
        padding-right: 32px;
    }

    footer .footer-inner p {
        font-size: 20px;
    }

    .footer-inner .section-inner {
        display: block;
    }


    .footer-menu ul {
        display: block;
    }

    .footer-menu ul li {
        margin-top: 12px;
        line-height: 2;
        text-align: center;
    }

    .footer-menu ul li::after {
        content: "";
        width: 0;
        height: 0;
    }

}

/*=================
問い合わせフォーム
==================*/

.contact {
    margin-top: var(--header-height-pc);
    padding-top: 40px;
}

.contact h1 {
    text-align: center;
    font-size: 24px;
}

.contact .note {
    margin-top: 16px;
    text-align: center;
}

.contact .note a {
    display: inline-block;
    color: #1877F2;
    font-weight: bold;
}

.contact .note .link {
    font-size: 14px;
    font-weight: normal;
}

.nowrap {
    white-space: nowrap;
}

.wpcf7 {
    margin-top: 24px;
    margin-bottom: 64px;
    margin-inline: auto;
    max-width: 600px;
    padding: 3rem 5rem;
    border: 1px solid var(--brown);
    border-radius: 12px;
}

.wpcf7 p {
    margin-bottom: 3rem;
}

.wpcf7 label {
    display: block;
    letter-spacing: 0.05em;
}

.wpcf7 label .wpcf7-form-control {
    display: block;
    margin-top: 0.8rem;
}

/* 入力欄共通 */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    padding: 1.4rem 1.6rem;
    border: 1px solid #d8d0c6;
    border-radius: 6px;
    background-color: #faf8f5;
    transition: border-color 0.3s ease;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
    outline: none;
    border-color: var(--brown);
    background-color: #fff;
}

.wpcf7 textarea {
    height: 200px;
    resize: none;
    overflow: hidden;
    line-height: 1.7;
}

.wpcf7 input[type="submit"] {
    display: inline-block;
    min-width: 220px;
    padding: 1.4rem 3rem;
    background-color: var(--brown);
    color: #fff;
    border: 1px solid var(--brown);
    border-radius: 10px;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wpcf7 input[type="submit"]:hover {
    background-color: #fff;
    color: var(--brown);
}

/* ボタン位置 */
.wpcf7 .wpcf7-submit {
    margin-top: 1rem;
}

/* エラーメッセージ */
.wpcf7-not-valid-tip {
    margin-top: 0.8rem;
    font-size: 1.3rem;
}

/* 送信完了メッセージ */
.wpcf7-response-output {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 6px;
    font-size: 1.4rem;
}

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

    .contact {
        margin-top: var(--header-height-SP);
    }

    .wpcf7 {
        margin-left: 32px;
        margin-right: 32px;
        padding: 3rem 2rem;
    }

    .wpcf7 p {
        margin-bottom: 2.4rem;
        font-size: 14px;
    }

    .wpcf7 input[type="text"],
    .wpcf7 input[type="email"],
    .wpcf7 input[type="tel"],
    .wpcf7 textarea,
    .wpcf7 select {
        padding: 1rem 1.6rem;
    }

    .wpcf7 input[type="submit"] {
        width: 100%;
    }
}