@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Shippori+Mincho&display=swap');
:root {
    --brown: #B5874F;
}

.sp {
    display: none;
}

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

@media screen and (max-width:768px) {
    .sp {
        display: block;
    }
    .pc {
        display: none;
    }
    a[href^="tel:"] {
        text-decoration: underline;
    }
}


html {
    font-family: "Shippori Mincho", serif;
    color: #231815;
}

html.is-fixed {
    overflow: hidden;
}
 
.inner {
    padding: 0 25px;
    height: 100%;
    max-width: 1250px;
    margin-inline:auto;
}

@media screen and (max-width:768px) {
    .inner {
        padding: 0 20px;
    }
}

img {
    display: inline-block;
    max-width: 100%;
}

a {
    transition: all 0.3s;
}

a:hover {
    opacity: 0.8;
}

/* btn */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #282828;
    font-size: 1rem;
    font-weight: 900;
    width: 15.75rem;
    height: 3.65rem;
    font-feature-settings: "palt";
    letter-spacing: 0.06em;
    border: 1px solid #282828;
    box-sizing: border-box;
    z-index: 1;
}

.btn--white {
    color: #282828;
    background: #FFF;
    border-color: white;
}

.btn::before {
    position: absolute;
    content: "";
    width: 1rem;
    height: 1rem;
    right: 0.875rem;
    bottom: 1.025rem;
    background: #000;
    clip-path: polygon(50% 0%, 50% 100%, 100% 50%);
}

.btn--white::after {
    border-color: white;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn:hover {
    background-color: white;
    opacity: 1;
}

.btn--white:hover {
    color: black;
}

.btn:hover::after {
    background-color: white;
}

/* title */
.title {
    height: 8.0625rem;
}

.title img {
    height: 100%;
    width: auto;
}

/* header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 21.375rem;
    height: 100vh;
    background: url(../img/bg_header.jpg) center center / cover no-repeat;
    z-index: 10;
    overflow-y: scroll;
    padding-bottom: 5.125rem;
}

.header__inner {

}

.header__logo {
    width: 16.4375rem;
    margin-inline: auto;
    margin-top: 4.4rem;
}

.header__logo a {
    display: block;
}

.header__nav {
    margin-top: 4.125rem;
}

.header__hamburger {
    display: none;
}

.header__drawer {
    display: none;
}

@media screen and (max-width:768px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 3.75rem;
        background: none;
        padding: 0;
        z-index: 11;
        overflow: initial;
    }
    .header__inner {
        padding: 0 10px;
        display: flex;
        align-items: center;
        height: 100%;
    }
    .header__nav {
        display: none;
    }
    .header__logo {
        margin-top: 4rem;
        width: 8rem;
        margin-inline: initial;
        margin-left: -2rem;
    }
    .header__hamburger {
        position: relative;
        display: block;
        width: 2rem;
        height: 100%;
        margin-left: auto;
        z-index: 1;
    }
    .header__hamburger span {
        display: inline-block;
        width: 100%;
        height: 2px;
        position: absolute;
        background-color: white;
        transition: all 0.3s;
    }
    .header__hamburger span:nth-child(1) {
        top: 35%;
    }
    .header__hamburger span:nth-child(2) {
        top: 50%;
        
    }
    .header__hamburger span:nth-child(3) {
        top: 65%;
    }
    .header__hamburger.is-active span:nth-child(1) {
        top: 50%;
        transform: rotate(45deg);
        background-color: #000;
    }
    .header__hamburger.is-active span:nth-child(2) {
        opacity: 0;
    }
    .header__hamburger.is-active span:nth-child(3) {
        top: 50%;
        transform: rotate(-45deg);
        background-color: #000;
    }
    .header__drawer {
        display: none;
        overflow-y: scroll;
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        background: url(../img/bg_header.jpg) center center / cover no-repeat;
        right: 0;
    }
    .drawer__inner {
        position: relative;
        width: 100%;
        height: 100%;
        min-height: 450px;
    }
    .drawer__nav {
        position: absolute;
        width: fit-content;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }
}

/* 下層ページヘッダー */
.sub-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5.625rem;
    z-index: 10;
    background: url(../img/bg_header.jpg) center center / cover no-repeat;
}

.sub-header__inner {
    display: flex;
    align-items: center;
    padding: 0 20px;
    height: 100%;
}

.sub-header__logo {
    width: 10rem;
    margin-top: 4rem;
}

.sub-header__logo img {
}

.sub-header__nav {
    margin-left: auto;
}

@media screen and (max-width:768px) {
    .sub-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 3.75rem;
        background: none;
        padding: 0;
        z-index: 11;
    }
    .sub-header__inner {
        padding: 0 10px;
        display: flex;
        align-items: center;
        height: 100%;
    }
    .sub-header__nav.globalNav {
        display: none;
    }
    .sub-header__logo {
        width: 8rem;
        margin-left: -2rem;
    }
    .sub-header__logo img {
    }
}

/* グロナビ */
.globalNav {

}

.globalNav--row {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.globalNav ul {

}

.globalNav--row ul {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.globalNav li {

}

.globalNav li + li {
    margin-top: 3.375rem;
}

.globalNav--row li + li {
    margin-top: 0;
}

.globalNav li a {
    display: block;
    color: #231815;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2em;
}

.globalNav span {
    display: block;
    font-size: 0.625rem;
    margin-top: 0.25rem;
}

.globalNav__instagram {
    width: 1.625rem;
    margin-inline: auto;
    margin-top: 5.65rem;
}

.globalNav--row .globalNav__instagram {
    margin: 0;
}


/*  ----------------------------------------------------------
page-ttl
----------------------------------------------------------  */
.page-ttl {
    background: url(../img/img_04.jpg) no-repeat center / cover;
    position: relative;
}

.page-ttl > div {
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20rem;
    padding-top: 5.5rem;
}

.page-ttl h2 {
    color: #fff;
    font-size: 2.25rem;
    font-weight: normal;
    line-height: 1;
}

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

local menu

----------------------------------------------------------  */
ul.lcmenu {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    margin-bottom: 4rem;
    gap: 1rem;
}

ul.lcmenu li {
    text-align: center;
}

ul.lcmenu li a {
    display: block;
    padding: 1.25rem 0 1.25rem 0;
    background: #333;
    white-space: nowrap;
    color: white;
}

ul.lcmenu li.current a {
    color: #fff;
    background: var(--brown);
}

@media screen and (max-width: 400px) {
    ul.lcmenu li {
        width: 100%;
        margin-bottom: 5px;
    }

    ul.lcmenu li a {
        padding: 1.2rem 0 1.3rem 0;
    }

    ul.lcmenu {
        justify-content: center;
    }
}

/*  ----------------------------------------------------------
layout
----------------------------------------------------------  */
/* map */
.gmap iframe {
    width: 100%;
    height: 25rem;
}

.sub {
    background-color: #121212;
    background: url(../img/bg_menu.jpg) no-repeat top center / cover;
    color: #231815;
}

.container {
    padding: 5rem 7rem;
    margin: 0 auto;
    width: 53.5rem;
}

.wrap {
    display: flex;
    justify-content: space-between;
}

.wrap.reverse {
    flex-direction: row-reverse;
}

.wrap > figure {
    width: 35%;
}

.wrap > div {
    width: 60%;
}

@media screen and (max-width: 768px) {
    .container {
        padding: 5rem 2rem;
        margin: 0 auto;
        width: auto;
    }

    .wrap {
        display: block;
    }

    .wrap > figure {
        width: 100%;
        margin-bottom: 2rem;
    }

    .wrap > div {
        width: 100%;
    }
}

/* margin */


.mb-80 {
    margin-bottom: 5rem !important;
}

/*  ----------------------------------------------------------
style
----------------------------------------------------------  */

/* article */
.article {
    padding-block: 6.25rem;
}

.article.article--gallery {
    padding-block: 2rem;
}

.article__inner.inner {
    max-width: 950px;
}

/* heading */
.heading-1 {
    line-height: 1;
    margin-bottom: 4rem;
    font-size: 2.8rem;
    letter-spacing: 0.15em;
    font-weight: normal;
}

.heading-1 span {
    display: flex;
    flex-direction: column;
    font-family: var(--font-lora);
    color: var(--brown);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}

.heading-1 span::before {
    content: "";
    width: 28rem;
    height: 1px;
    background: var(--brown);
    margin: 1.2rem 0;
}

@media screen and (max-width: 768px) {
    .heading-1 {
        display: flex;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }
}

/* more */
.more {
    text-align: center;
    line-height: 1;
    display: block;
    color: #fff;
    width: 22rem;
    padding: 1.8rem 0 1.9rem 0;
    font-family: var(--font-lora);
    letter-spacing: 0.1em;
    border: solid 1px #fff;
    position: relative;
}

.more::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 1.4rem solid transparent;
    border-top: 1.4rem solid transparent;
    border-bottom: 1.4rem solid var(--brown);
    position: absolute;
    right: 0.4rem;
    bottom: 0.4rem;
}

.more:hover {
    opacity: 1;
    background: #fff;
    color: #000;
}

@media screen and (max-width: 768px) {
    .more {
        margin: 0 auto;
    }
}

/* ttl */
.ttl {
    border-bottom: solid 1px rgba(0, 0, 0, 0.2);
    font-size: 1.5rem;
    margin-bottom: 1.875rem;
    padding: 1rem 0 1.5rem 0;
    position: relative;
    font-weight: normal;
}

.ttl.wt {
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}

.ttl:after {
    border-bottom: solid 4px var(--brown);
    bottom: -4px;
    content: " ";
    display: block;
    position: absolute;
    width: 25%;
}

@media screen and (max-width: 768px) {
    .ttl:after {
        width: 40%;
    }
}

/* p */
.sub p {
    font-size: 1rem;
    line-height: 1.5;
}

/* detail */
dl.detail {
    display: flex;
    flex-wrap: wrap;
}

dl.detail dt {
    padding: 1.5rem;
    width: 25%;
    white-space: nowrap;
    line-height: 1.5;
}

dl.detail dd {
    padding: 1.5rem;
    width: 75%;
    line-height: 1.5;
}

dl.detail dt:last-of-type,
dl.detail dd:last-of-type {
    border-bottom: none;
}

dl.bk dt,
dl.bk dd {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

dl.wt dt,
dl.wt dd {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

@media screen and (max-width: 768px) {
    dl.detail {
        display: block;
    }

    dl.detail dt {
        padding: 1.2rem 1.2rem 0 1.2rem;
        width: 100%;
    }

    dl.detail dd {
        padding: 0 1.2rem 1.2rem 1.2rem;
        width: 100%;
    }

    dl.bk dt {
        border-bottom: none;
    }

    dl.wt dt {
        border-bottom: none;
    }
}

/*  ----------------------------------------------------------
gallery
----------------------------------------------------------  */
.gallery-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    justify-content: center;
    width: 100%;
    margin: 0rem auto;
    max-width: 64rem;
}

.gallery-list li {
    list-style: none;
    margin: 0 1rem 2rem 1rem;
}

.gallery-list img {
    border-radius: 50%;
    height: 11vw;
    width: 11vw;
    object-fit: cover;
}

.gallery-list span {
    display: block;
    font-size: 1.2rem;
    line-height: 1.7;
    margin: 1.2rem 0 0 0;
    text-align: center;
    width: 14vw;
}

.object-fit-img {
    object-fit: contain;
    font-family: 'object-fit: contain;'
}

@media screen and (max-width: 768px) {
    .gallery-list {
        margin: 0rem auto;
        width: 95%;
    }

    .gallery-list li {
        margin: 0 .5rem 1.5rem .5rem;
    }

    .gallery-list img {
        width: 17vw;
        height: 17vw;
    }

    .gallery-list span {
        font-size: 1rem;
        line-height: 1.6;
        margin: 1rem auto 0 auto;
        width: 20vw;
    }
}


/* footer */
footer {
    color: white;
    background: url(../img/bg_footer.jpg) center center / cover no-repeat;
    padding-block: 3.125rem;
}

.footer__inner.inner {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    max-width: 1000px;
}

.footer__content {
    max-width: 33.5625rem;
}

.footer__nav {
    display: flex;
    align-items: center;
}

.footer__nav ul {
    display: flex;
    gap: 1.625rem;
}

.footer__nav li {
    position: relative;
}


.footer__nav li a {
    color: #231815;
    letter-spacing: -0.04em;
}

.footer__instagram {
    margin-top: 2rem;
    width: 1.65rem;
}

.footer__copy {
    margin-top: 3.25rem;
    text-align: center;
    font-size: 13px;
    color: #231815;
}
.footer__logo {
    width: 14.25rem;
    margin-top: 2.3rem;
}
@media screen and (max-width:768px) {
    footer {
        padding-bottom: 5rem;
    }

    .footer__inner.inner {
        
    }

    .footer__content {
        margin-inline: auto;
    }

    .footer__logo {
        width: 15rem;
        margin: 4 auto 8rem;
    }

    .footer__nav {
        max-width: 28.5rem;
        flex-direction: column;
        margin-top: 2.5rem;
        margin-inline: auto;
    }

    .footer__nav ul {    
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 1.5rem; 
    }

    .footer__instagram {
        margin: 0 auto;
        margin-top: 1rem;
        width: 2.5rem;
    }

    .footer__copy {
        margin-top: 5rem;
    }
}

/* float */
.float {
    width: 3.125rem;
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
}
.float a:first-of-type {
    margin-bottom: 2.5rem;
    display: block;
}

@media screen and (max-width:768px) {
    .float {
        width: 100%;
        height: 50px;
        bottom: 0;
        right: 0;
        transform: translate(0,0);
        top: initial;
        box-shadow: 0 0 5px black;
        display: flex;
    }
    .float a {
        display: block;
        height: 100%;
        width: 50%;
        text-align: center;
        color: white;
        background-color: #5b491f;
        line-height: 50px;
        text-decoration: none;
    }
    .float a:first-of-type { 
        margin-bottom: 0;
        border-right: 0.5px solid #FFF;
    }   
}

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

fade

----------------------------------------------------------  */
@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes fadeInUp {
    0% {
        opacity: 0;
        -moz-transform: translateY(30px);
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

@-ms-keyframes fadeInUp {
    0% {
        opacity: 0;
        -ms-transform: translateY(30px);
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

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

.fadeInUp {
    -webkit-animation: fadeInUp 0.6s ease;
    -moz-animation: fadeInUp 0.6s ease;
    -ms-animation: fadeInUp 0.6s ease;
    animation: fadeInUp 0.6s ease;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    animation-fill-mode: both
}

.fade {
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
    -moz-animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
    -o-animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.35s;
    -moz-animation-delay: 0.35s;
    -webkit-animation-delay: 0.35s;
    -o-animation-delay: 0.35s;
}

.delay-3 {
    animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
    -o-animation-delay: 0.5s;
}

.delay-4 {
    animation-delay: 0.65s;
    -moz-animation-delay: 0.65s;
    -webkit-animation-delay: 0.65s;
    -o-animation-delay: 0.65s;
}

.delay-5 {
    animation-delay: 0.8s;
    -moz-animation-delay: 0.8s;
    -webkit-animation-delay: 0.8s;
    -o-animation-delay: 0.8s;
}

.CMS-NOT-EDITABLE-AREA {
    height: 100%;
}