@charset "UTF-8";

:root {
    /* typography */
    --fz-s: 0.75rem;
    --fz-m: 1rem;
    --fz-ml: 1.5rem;
    --fz-l: 2rem;
    --fz-xl: 2.5rem;

    /* colors */
    --main-color: #28704F;
    --bg-color: #E8E9EB;
    --text-color: #333;
    --sub-text-color: #fff;
}

html {
    font-size: 100%;
    background-color: var(--bg-color);
}

body,
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    color: var(--text-color);
    font-size: var(--fz-m);
    font-family: "Zen Old Mincho", serif;
    overflow-x: hidden;
    line-height: 2.0;
}

img {
    max-width: 100%;
}

.cover {
    width: 100vw;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

p {
    overflow-wrap: break-word;
}

.sp {
    display: none;
}

/* コンテンツ幅 */
.wrapper {
    width: 80%;
    max-width: 1920px;
    margin-inline: auto;
}

/* logo */
.logo {
    width: 40px;
}

/* heading */

/* 縦書き */
.vertical {
    writing-mode: vertical-rl;
    font-size: var(--fz-xl);
    font-weight: bold;
}

.section_title {
    letter-spacing: 0.2em;
    font-size: var(--fz-xl);
    font-weight: bold;
    position: relative;

    &::before {
        position: absolute;
        content: attr(data-en);
        font-size: 12px;
        letter-spacing: 0;
        width: fit-content;
    }
}

footer .section_title {
    &::before {
        top: -8px;
        padding-left: 4px;
    }
}


#concept .section_title,
#hs .section_title,
#phs .section_title,
#meal .section_title {
    &::before {
        right: -8px;
        top: 4px;
    }
}

/* footer .section_title{
    &::before{
        position: static;
    }
} */

h3 {
    font-size: var(--fz-l);
}

/* header */
.fv {
    background-image: url(../img/mainvisual.webp);
    background-position: center 52%;
    background-size: cover;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    position: relative;
}


header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 24px;
    align-items: center;
    position: fixed;
    left: 50%;
    top: 0;
    translate: -50%;
    width: 100%;
    height: 96px;
    padding: 24px 10%;
    z-index: 1;
}

.scroll {
    width: 100%;
    height: 100px;
    background-color: var(--bg-color);
    padding: 24px 10%;
}

.header_menu {
    display: flex;
    flex-direction: row;
    gap: 30%;
    align-items: center;
}

nav ul {
    display: flex;
    flex-direction: row;
    gap: 20%;
    list-style-type: none;
}

nav ul li {
    white-space: nowrap;
}

header button {
    background-color: var(--sub-text-color);
    width: 240px;
    height: 60px;
    border: 1px solid var(--main-color);
    color: var(--main-color);
}

h1 {
    width: 200px;
    margin: 0 auto;
    /* position: absolute;
    top: 10%; */
}

.catch {
    color: var(--sub-text-color);
    letter-spacing: 0.5em;
    position: absolute;
    top: 0;
    left: 12%;
    /* translate: 0 -50%; */
    height: 100%;
    text-align: center;
}

.catch_left {
    padding-top: 12%;
}

/* main */
#concept,
#hs,
#phs,
#meal {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
    /* margin-left: auto; */
    padding: 200px 0;
}

#concept {
    justify-content: center;
}

#phs {
    margin-left: 10%;
}

#hs,
#meal {
    flex-direction: row-reverse;
    margin-right: 5%;
}

.top_section_inner {
    display: flex;
    flex-direction: row;
    gap: 14%;
}

#hs .top_section_inner,
#phs .top_section_inner,
#meal .top_section_inner {
    width: 50%;
}

.text_content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 80px;
    flex-grow: 1;
}

.text_content p,
.viewmore {
    line-height: 3.0;
    letter-spacing: 0.03;
    width: auto;
}

.viewmore,
.map {
    margin-top: 40px;
    border-bottom: 1px solid var(--text-color);
    width: fit-content;
}

.viewmore {
    margin-left: auto;
}

.map {
    border-bottom: 1px solid var(--bg-color);
}

.top_section_img {
    width: 45%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

#hs img,
#phs img {
    margin-top: 80px;
}

#meal .top_section_img img:nth-child(2) {
    width: 58%;
}

#meal .top_section_img img:last-child {
    width: 33%;
    margin-top: 34%;
}

/* img */
.sunset {
    height: 600px;
    object-position: center 30%;

}

/* footer */
.noto {
    font-family: "Noto Sans JP", sans-serif;
}

footer {
    background-image: url(../img/footer.webp);
    background-size: cover;
    color: var(--sub-text-color);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 120px;
    padding-top: 200px;
    padding-bottom: 200px;
}

.line {
    border-bottom: 1px solid var(--sub-text-color);
    margin-right: 47%;
    margin-left: 47%;
}

footer h2 {
    margin-bottom: 80px;
}

.reservation button {
    width: 100%;
    height: 160px;
    background-color: var(--sub-text-color);
    font-size: var(--fz-ml);
}

.access_content {
    display: flex;
    flex-direction: row;
    gap: 120px;
    justify-content: center;
    align-items: center;
}

iframe {
    flex: 1;

}

.access_text {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align-last: left;
    flex: 1;
    height: auto;
}

.info {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.subheading {
    font-weight: bold;
    padding-bottom: 8px;
}

footer nav ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-bottom: 40px;
}

.logo_footer {
    width: 80px;
}

.info p {
    text-align-last: left;
}

.address {
    display: flex;
    flex-direction: row;
    gap: 16px;
    /* padding-bottom: 16px; */
}

/* sp ver */
@media (max-width:768px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .wrapper {
        width: 87.2%;
    }

    .fixed {
        width: 100%;
        position: fixed;
        bottom: 0;
        background-color: var(--sub-text-color);
        height: 60px;
        border: 1px solid var(--main-color);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
    }

    .fixed button {
        color: var(--main-color);
    }

    .header_menu {
        gap: 10%;
    }

    nav ul {
        gap: 5%;
    }

    .fv {
        aspect-ratio: initial;
        height: 100vh;
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        gap: 2rem;
    }

    .scroll {
        background-color: transparent;
    }

    h1 {
        width: 100px;
    }

    .catch {
        position: static;
        font-size: var(--fz-ml);
        height: 15.5rem;
    }

    /* concept */

    .section_title {
        font-size: var(--fz-l);
    }

    #hs,
    #meal,
    #phs,
    footer {
        padding: 100px 0;
    }

    #concept .top_section_inner {
        display: flex;
        flex-direction: column;
        gap: 48px;
        margin: 0 24px;
    }

    .text_content {
        margin-top: 0;
    }

    /* hs */
    #hs,
    #meal,
    #phs {
        flex-direction: column-reverse;
        margin-right: 0;
        margin-left: 0;
        gap: 3rem;
    }

    .top_section_img {
        width: 100%;

        flex-direction: row-reverse;
    }

    #hs .top_section_img {
        padding-right: 6.4%;

    }

    #phs .top_section_img {
        padding-left: 6.4%;
        gap: 32px;
    }

    #hs .top_section_inner,
    #phs .top_section_inner,
    #meal .top_section_inner {
        width: 100%;
        padding: 0 6.4%;
    }

    #phs .top_section_img {
        flex-direction: row;
    }

        #meal .top_section_img{
            /* width: 100%; */
        }

    #meal .text_content img {
        width: 50%;
    }

    #meal .viewmore,
    .map {
        margin-top: 0;
    }

    /* footer */
    .reservation button {
        height: 100px;
        font-size: var(--fz-m);
    }

    .access_content {
        flex-direction: column;
        gap: 40px;
        width: 100%;
    }

    .access_text {
        width: 100%;
    }

    /* 高さ */
    iframe {
        width: 100%;
        height: 300px;
        flex: none;
    }

    .info nav {
        width: 100%;
    }

    .info nav ul {
        justify-content: space-between;
    }

    /* 効かない */
    .footer h2 {
        margin-bottom: 40px;
    }

    .address {
        flex-direction: column;
        gap: 0;
    }
}