@charset "utf-8";
@import url("root.css");


/* ------------------------------------------ */
/* レイアウトのためのCSS */
html {
    font-size: 100%;
}

body {
    background: var(--white);
    font-family: var(--font-family-def);
    color: var(--black);
    font-size: 1rem;
    line-height: 1.85;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    word-wrap: break-word;
}

a:link {
    color: var(--black)
}

a:visited {
    color: var(--brown)
}

a:hover {
    color: var(--red)
}

a:active {
    color: var(--red)
}

@media screen and (max-width:768px) {
    body {
        font-size: .8rem;

        line-height: 1.5;
    }
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    color: var(--gray);
    text-decoration: none;
    outline: none;
}

p {
    font-family: var(--font-family-def);
}

img {
    width: 100%;
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    line-height: 1;
}

* {
    box-sizing: border-box
}

figure {
    margin: 0
}

/* ------------------------------------------ */
/* 汎用css */
.fixed {
    position: fixed;
}

.absolute {
    position: absolute;
}


.gap1 {
    gap: 1rem;
}

.gap2 {
    gap: 2rem
}


.bk-lightgray {
    background-color: var(--lgray);
}

.bk-white {
    background-color: var(--white);
}

.bk-pink {
    background-color: var(--pink);
}

/* ------------------------------------------
baskground 
------------------------------------------ */
.bk-renga {
    background-image: url(../images/bk_renga.jpg);
    background-size: cover;
}

/* <br class="br-sp">はスマートフォンのみ改行する */
@media screen and (min-width:768px) {
    .br-sp {
        display: none;
    }
}

/* ------------------------------------------ */
/* レイアウトarea */

#wrapper {
    position: relative;
}

.container {
    overflow-x: hidden;
}

.inner {
    margin: 0 auto;
}

.inner_wide {
    width: 100%;
}



@media screen and (max-width:1199px) {
    .inner {
        width: 100%;
    }

    .p_xl {
        padding: 4rem 3rem 4rem;
    }
}

@media screen and (max-width:768px) {
    .inner {
        width: 100%;
    }

    .inner_wide {
        width: 100%;
    }

    .p_xl {
        padding: 3.5rem 2rem 0;
    }

    .p_sm {
        padding: 3.5rem 2rem 0;
    }

    .p_sm_wide {
        padding: 3.5rem 0 0;
    }
}

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


.header-area {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1.5rem 0px 1.5rem;
    width: var(--pcwidth);
    margin: 0 auto;
}

@media screen and (max-width:1199px) {
    .header-area {
        width: 100%;
        padding: 1.25rem 3rem;
    }
}

@media screen and (max-width:768px) {
    .header-area {
        padding: 1rem 1.5rem 1rem;
    }
}

.header-area img.logo {
    width: 195px;
    height: auto;
    display: block;
}

.header-area ul {
    display: flex;
    gap: 0 2rem;

}

.header-area ul li a {
    font-family: var(--font-family-title);
    font-weight: 700;
}


.header-area #g-nav {
    margin-left: auto;
}

@media screen and (max-width:767px) {
    .header-area {
        width: 100%;
        flex-direction: column;
        padding: 1rem 0
    }

    .header-area a {
        display: block;
        margin: auto;
    }

}

/* ------------------------------------------ */
/* キービジュアル------------------------*/
.key {
    position: relative;
}

.key_d {
    position: absolute;
    background-color: #570b0b79;
    width: 534px;
    height: 274px;
    top: 10%;
    right: 10%;
    padding: 2rem;
    text-align: center;
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 3rem;
    font-size: 22px;
}

@media screen and (max-width:767px) {
    .key {
        width: 100%;
        position: relative;
    }

    .key img {
        width: 100%;
        height: 80vh;
        object-fit: cover;
        object-position: left center;
    }

    .key_d {
        position: absolute;
        background-color: #570b0b79;
        width: 90%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 1rem;
        text-align: center;
        color: white;
        font-weight: 700;
        justify-content: center;
        line-height: 2.5;
        font-size: 1.05rem;
    }

}



/* ------------------------------------------ */
/* タイポグラフィ ------------------------*/

.home h2,
article h1 {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-family-title);
    color: var(--black);
}

.home h2,
article h1 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

}

.home h2::before,
.home h2::after,
article h1:before,
article h1:after {
    content: '';
    width: 15%;
    height: 2px;
    background-color: var(--gray);
}

.title h2::before,
article h1:before {
    margin-right: 2rem;
}

.title h2::after,
article h1:after {
    margin-left: 2rem;
}

.title p {
    font-size: 3.5rem;
    color: var(--ightgray);
    text-align: center;
    margin: -2rem 0 3rem;
    font-family: var(--font-family-subtitle);
    font-weight: 500;
    filter: opacity(.4);
}

.page-post h2 {
    font-size: 1.25rem;
}

@media screen and (max-width:767px) {
    .title p {
        font-size: 2.5rem;
        margin: -1rem 0 2rem;
    }
}

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

.blog_list {
    row-gap: 2rem;
}

.blog_list li a {
    border: 1px solid #ddd;
    box-shadow: 1px 1px 3px #dddddd85;
    background-color: var(--white);
    padding: 2rem;
    display: block;
}

.blog_list li h2 {
    font-size: 1.25rem;
}

.blog_list li time {
    font-size: 0.9rem;
    text-align: right;
    display: block;
}

.blog_list li h2 {
    margin-top: 2rem;
}


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



.menu_list figcaption {
    padding: 1.5rem;
}

.menu_list figcaption h3 {
    font-family: var(--font-family-title);
    font-weight: 700;
    font-size: 1.25rem;
}

.menu_list figcaption p {
    font-size: .8rem;
}

.btn_andmore {
    background-color: var(--brown);
    display: block;
    width: 70%;
    margin: 4rem auto 0;
    text-align: center;
    color: var(--white) !important;
    padding: 0.5rem 0;
    border-radius: 100vh;
    font-family: var(--font-family-title);
    font-size: 1.25rem;
}

.btn_andmore:hover {
    background-color: var(--red);
    color: var(--white);
}

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

.order_list {
    display: flex;
    justify-content: center;
    gap: 0 2rem;
}

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

#footer {
    background-color: var(--brown);
    color: var(--white);
    /* margin-top: 4rem; */
    font-size: 1rem;
    position: relative;
}



#footer figure img {
    width: 195px;
    height: auto;
}

#footer h2 {
    font-size: 1rem;
    color: var(--white);
}

.copyright {
    text-align: center;
    margin-top: 3rem;
}

/* 上へ戻る */
#footer .back_to_top {
    color: var(--white);
    position: absolute;
    right: 2rem;
    top: -3rem;
    display: block;
    background-color: var(--brown);
    padding: 1rem 1.25rem;
    border-radius: .25rem;
}