@charset "utf-8";
/* ▼ FV ▼---------------------------------------- */
.fv__inner {
    margin: -15px auto 50px;
    padding: 0 20px;
    max-width: calc(1200px + 40px);
    position: relative;
}
.fv__mv img {
    border-radius: 0 0 20px 20px;
}
.fv__title-wrap {
    position: absolute;
    left: 5%;
    bottom: 6%;
}
.fv__title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 400;
    line-height: 2.4;
    letter-spacing: 0.3em;
}
.fv__title-bg {
    padding: 3px 14px 3px 19px;
    background-color: rgb(253, 247, 235, 0.8);
}
.fv__title-sub {
    padding-left: 19px;
    font-size: clamp(14px, 1.5vw, 16px);
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.18em;
    line-height: 2;
    text-shadow: 0 0 5px rgb(26, 16, 13, 0.3);
}
/* scroll */
.fv__scroll {
    position: absolute;
    bottom: -7%;
    left: 50%;
    transform: translateX(-50%);
}
.fv__scroll span {
    font-size: 12px;
    color: #8b6b6a;
}
.fv__scroll::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    width: 1px;
    height: 80px;
    background: #8b6b6a;
    z-index: 10;
    animation: scroll 4.5s infinite;
}
.fv__scroll::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    width: 1px;
    height: 80px;
    background: #e4c3b5;
}
@keyframes scroll {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }
    50% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }
    51% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }
    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}
@media screen and (max-width: 767px) {
    .fv__inner {
        margin: -60px auto 70px;
        padding: 0;
    }
    .fv__mv img {
        border-radius: 0;
    }
    .fv__title-wrap {
        left: 0%;
        bottom: 16%;
    }
    .fv__title {
        font-size: clamp(18px, 4vw, 28px);
        font-weight: 400;
        line-height: 2.4;
        letter-spacing: 0.3em;
    }
    .fv__title-bg {
        padding: 3px 14px 3px 19px;
    }
    .fv__title-sub {
        padding-left: 19px;
        font-size: clamp(12px, 2.2vw, 18px);
        font-weight: 500;
        letter-spacing: 0.18em;
        line-height: 2;
    }

    .fv__scroll span {
        font-size: 11px;
    }
}

/* ▼ Concept ▼---------------------------------------- */
.concept__inner {
    padding: 150px 20px 100px;
}
.concept__top {
    display: flex;
    gap: 12%;
    margin: 0 auto;
    max-width: 1100px;
}
.concept__top-image {
    width: 38%;
}
.concept__content {
    width: 50%;
}
.concept__heading {
    margin-bottom: 30px;
    font-family: "Zen Old Mincho", serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 2.14;
    letter-spacing: 0.18em;
}
.concept__text p {
    font-size: 18px;
    line-height: 2.5;
    letter-spacing: 0.15em;
}
.concept__btn {
    margin-top: 60px;
    text-align: left;
}
/* gallery */
.concept__gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    align-items: start;
    margin: 50px auto 0;
    max-width: 1340px;
}
.concept__col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.concept__item--1 {
    align-self: flex-start;
    margin-top: 136px;
}
.concept__caption {
    align-self: center;
    margin-top: 88px;
}
.concept__col--center {
    align-items: center;
    margin-top: 196px;
}
.concept__item--3 {
    align-self: flex-start;
}
.concept__item--4 {
    align-self: flex-end;
    margin-top: 246px;
}
.concept__item--1,
.concept__item--3,
.concept__item--4 {
    max-width: 300px;
    width: 100%;
}
.concept__item--2 {
    max-width: 350px;
    width: 100%;
}
.concept__caption {
    max-width: 287px;
    color: #af8786;
    font-family: "Cormorant";
    line-height: 3.2;
    letter-spacing: normal;
}

@media screen and (max-width: 767px) {
    .concept__inner {
        padding: 45px 0 75px;
    }
    .concept__top {
        flex-direction: column;
        max-width: 84%;
        margin: 0 auto;
    }
    .concept__top-image {
        width: 100%;
    }
    .concept__content {
        width: 100%;
    }
    .concept__heading {
        margin: 50px 0 20px;
        font-size: 20px;
        line-height: 2;
        letter-spacing: 0.05em;
    }
    .concept__text p {
        font-size: 14px;
        line-height: 2.35;
        letter-spacing: 0.09em;
    }
    .concept__btn-wrap {
        display: flex;
        justify-content: center;
        transform-origin: left center;
        width: 100%;
        padding-left: 45px;
    }
    .concept__btn {
        margin-top: 30px;
        text-align: center;
    }
    /* gallery */
    .concept__gallery {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    .concept__item--1,
    .concept__item--2,
    .concept__item--3,
    .concept__item--4,
    .concept__caption,
    .concept__col--center {
        margin-top: 0;
    }
    .concept__col {
        gap: 0;
        width: 100%;
    }
    .concept__item--1,
    .concept__item--3,
    .concept__item--4 {
        max-width: 43%;
    }
    .concept__item--2 {
        align-self: center;
        max-width: 48%;
    }
    .concept__item--3 {
        margin: 25px 0 0 8%;
    }
    .concept__item--4 {
        margin: -60px 0 0;
    }
    .concept__caption {
        align-self: flex-end;
        margin: -17px 8% 0 0;
        max-width: 160px;
        font-size: 10px;
        font-weight: 600;
        line-height: 3;
    }
}

/* ▼ News ▼------------------------------------------ */
.news {
    background-color: #e4c3b5;
}
.news__inner {
    max-width: calc(1100px + 40px);
    margin: 0 auto;
    padding: 80px 20px;
}
.news-ttl {
    margin-bottom: 65px;
}
.news__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 55px;
    margin: 0 auto 45px;
}
.news__card {
    display: block;
}
.news__img {
    margin: 0 0 20px;
    overflow: hidden;
    border-radius: 8px;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
}
.news__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.news__meta {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}
.news__date {
    font-size: 14px;
    letter-spacing: 0.05em;
}
.news__category {
    background-color: #a3c9d9;
    color: #fff;
    font-size: 14px;
    padding: 5px 24px;
    border-radius: 18px;
}
.news__card-ttl {
    font-size: 16px;
    font-weight: 400;
}
.news__card:hover {
    opacity: 0.7;
}
.news__empty {
    padding: 60px 0;
    text-align: center;
}

@media screen and (max-width: 900px) {
    .news__inner {
        padding-bottom: 100px;
    }
    .news__list {
        grid-template-columns: 1fr 1fr;
    }
    .news__btn-wrap {
        text-align: center;
    }
}
@media screen and (max-width: 767px) {
    .news__inner {
        max-width: calc(315px + 40px);
        padding: 45px 20px 100px;
    }
    .news__list {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .news-ttl {
        margin-bottom: 40px;
    }
    .news__meta {
        margin-bottom: 10px;
    }
    .news__empty {
        padding: 30px 0;
        font-size: 13px;
    }
}

/* ▼ Menu ▼------------------------------------------ */
.top-menu {
    overflow: hidden;
    position: relative;
    padding: 80px 20px 100px;
}
.top-menu__inner {
    margin: 0 auto;
    min-height: clamp(600px, 80vw, 1055px);
}
.top-menu__text {
    margin: 50px auto 0;
    text-align: center;
}
.top-menu__text p {
    font-size: 18px;
    line-height: 2.7;
    letter-spacing: 0.15em;
}
.top-menu__btn {
    margin-top: 35px;
}
.top-menu__item {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
}
.top-menu__item--01 {
    width: 20%;
    height: auto;
    top: 7%;
    left: 8%;
}
.top-menu__item--02 {
    width: 35%;
    height: auto;
    top: 14%;
    right: -7%;
}
.top-menu__item--03 {
    width: 35%;
    bottom: 9%;
    left: -3%;
}
.top-menu__item--04 {
    width: 20%;
    bottom: 18%;
    right: 30%;
}
@media screen and (max-width: 1024px) {
    .top-menu__item--03 {
        bottom: 1%;
    }
    .top-menu__item--04 {
        bottom: 5%;
    }
}
@media screen and (max-width: 767px) {
    .top-menu__inner {
        margin: 0 auto;
        min-height: clamp(1000px, 200vw, 1280px);
    }
    .top-menu__text p {
        font-size: 13px;
    }
    .top-menu__text span {
        display: inline-block;
    }
    .top-menu__item--01 {
        width: 40%;
        top: auto;
        bottom: 45%;
        left: 0%;
    }
    .top-menu__item--02 {
        width: 53%;
        top: auto;
        bottom: 35%;
        right: -10%;
    }
    .top-menu__item--03 {
        width: 66%;
        bottom: 8%;
        left: -13%;
    }
    .top-menu__item--04 {
        width: 32%;
        bottom: 16%;
        right: 8%;
    }
}
@media screen and (max-width: 479px) {
    .top-menu__item--01 {
        bottom: 40%;
    }
    .top-menu__item--02 {
        bottom: 30%;
    }
    .top-menu__item--03 {
        bottom: 8%;
    }
    .top-menu__item--04 {
        bottom: 16%;
    }
}

/* ▼ Instagram ▼---------------------------------------- */
.ig {
    position: relative;
    z-index: 0;
}
.ig::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #e4c3b5;
    width: 100%;
    height: 72%;
    z-index: -1;
}
.ig__inner {
    max-width: calc(1350px + 40px);
    margin: 0 auto;
    padding: 100px 20px 110px;
    position: relative;
}
.ig-ttl {
    position: absolute;
    left: -5%;
    bottom: -40px;
}
.ig__btn {
    margin: 60px 7% 0 0;
    text-align: right;
}

@media screen and (max-width: 800px) {
    .ig::before {
        height: 100%;
    }
    .ig__inner {
        max-width: calc(84% + 40px);
        margin: 0 auto;
        padding: 125px 20px 100px;
        position: relative;
    }
    .ig-ttl {
        top: 0;
    }
    .ig-ttl img {
        height: 150px;
    }
    .ig__btn {
        margin: 50px 0 0;
        padding-left: 45px;
        text-align: center;
    }

    /* Smash Balloon */
    #sb_instagram.sbi_tab_col_2 #sbi_images {
        gap: 15px !important;
    }
}

/* ▼ Media ▼---------------------------------------- */
.media {
    padding: 80px 10px;
}
.media__inner {
    display: flex;
    justify-content: space-around;
    gap: 5%;
    margin: 0 auto;
    padding: 55px 100px 55px 45px;
    max-width: 1100px;
    background-color: #8b6b6a;
}
.media-ttl {
    color: #fdf7eb;
}
.media__list {
    width: 73%;
}
.media__item {
    display: flex;
    width: 100%;
    max-width: 700px;
    gap: 1em;
    padding: 30px 0;
    border-bottom: 1px solid rgb(253, 247, 235, 0.5);
}
.media__item:last-child {
    border-bottom: none;
}
.media__item p {
    display: inline-block;
    color: #fdf7eb;
}

@media screen and (max-width: 767px) {
    .media {
        padding: 60px 10px 0;
    }
    .media__inner {
        flex-direction: column;
        padding: 40px 20px;
    }
    .media__list {
        width: 100%;
    }
    .media__item {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }
    .media__item p {
        font-size: 14px;
    }
}

/* ▼ Info ▼---------------------------------------- */
.info__inner {
    width: 100%;
    padding-top: 70px;
}
.info__content {
    display: flex;
    align-items: stretch;
    padding-top: 70px;
}

/* 左:テキスト */
.info__body {
    width: 50%;
    max-width: 600px;
    margin-left: auto;
    padding: 0 40px;
}
.info__shop-name {
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: 500;
}
.info__list {
    border-bottom: 1px solid rgb(90, 74, 73, 0.5);
    margin-bottom: 20px;
}
.info__row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.info__row dt {
    width: 80px;
    flex-shrink: 0;
    font-weight: 500;
}
.info__row dd {
    font-size: 15px;
}
.info__time-row {
    display: flex;
    gap: 0 20px;
    font-weight: 300;
    flex-wrap: wrap;
}
.info__label {
    width: 120px;
    flex-shrink: 0;
}
.info__time {
    text-align: left;
    white-space: nowrap;
    width: 120px;
}
.info__access p {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
}
.info__note {
    border-top: 1px solid rgb(90, 74, 73, 0.5);
    margin-top: 20px;
    padding-top: 20px;
}
.info__note p {
    font-size: 14px;
}

/* 右：マップ */
.info__map {
    width: 50%;
}
.info__map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
    display: block;
}

@media screen and (max-width: 767px) {
    .info__inner {
        padding-top: 60px;
    }
    .info__content {
        flex-direction: column;
    }
    .info__body {
        display: contents;
    }
    .info__shop-name {
        width: 100%;
        max-width: 84%;
        margin: 0 auto 25px;
        font-size: 16px;
        text-align: left;
        order: 1;
    }
    .info__list {
        max-width: 84%;
        margin: 0 auto 25px;
        padding-bottom: 0;
        order: 2;
    }
    .info__row {
        flex-direction: column;
        gap: 0;
    }
    .info__row dt {
        font-size: 15px;
    }
    .info__row dd {
        font-size: 14px;
    }
    .info__map {
        width: 100%;
        max-width: 550px;
        margin: 0 auto;
        order: 3;
    }
    .info__access {
        max-width: 84%;
        margin: 0 auto;
        padding-top: 25px;
        order: 4;
    }
    .info__access p {
        font-size: 14px;
    }
}
