@charset "UTF-8";

/* =======================================
FV
======================================= */
.mainVisual {
    margin-top: 18px;
    position: relative;
    width: 100vw;
    height: auto;
    aspect-ratio: 375 / 580;
    background-image: url(../images/MV_BG_SP.png);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.mv__overlay-SP {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(30px);
    opacity: 0;
    animation: fadeInUp 1.5s ease-out forwards;
    animation-delay: 0.5s;
    max-width: 82%;
}

.mv__overlay-PC {
    display: none;
}

/* フェード＋スライド */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translate(-50%, -50%) translateY(0);
    }
}

.about {
    color: var(--primary-black);
    font-size: 1.6rem;
    line-height: 32px; /* 200% */
    letter-spacing: 0.48px;
    padding: 50px 5.3%;
}

/* FV-PC */
@media screen and (min-width:769px) {
    .article {
        max-width: 1440px;
        margin: 0 auto;
    }

    .mainVisual {
        margin-top: 0;
        aspect-ratio: 1440 / 650; /* ＝2.215 */
        background-image: url(../images/MV_BG_PC.png);
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        width: 100vw;
    }

    .mv__overlay-PC {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) translateY(30px);
        opacity: 0;
        animation: fadeInUp 1.5s ease-out forwards;
        animation-delay: 0.8s;
        max-width: 55.5%;
    }

    .mv__overlay-SP {
        display: none;
    }

    .about {
        text-align: center;
        font-size: 2rem;
        line-height: 40px; /* 200% */
        letter-spacing: 0.6px;
        padding: 94px 11%;
    }

    .brPc {
        display: block;
    }
}/* pc 769px */

/* =======================================
News&Calendar
======================================= */

.info {
    display: flex;
    padding: 40px 5.3%;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    background-color: var(--primary-paleGreen);
}

.info__container__news {
    display: flex;
    padding: 24px 4.8% 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 56px;
    align-self: stretch;
    background-color: var(--primary-white);
}

.news__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    align-self: stretch;
}

.news__title {
    font-family: Lato;
    font-size: 3.2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.news__title p {
    font-family: "Noto Sans JP";
    font-size: 1.2rem;
    font-weight: 400;
}

.news__all {
    width: 115px;
    height: 18px;
    font-size: 1.2rem;
    line-height: 12px; /* 100% */
    position: relative;
}

.news__all::after {
     content: "";
    display: inline-block;
    width: 115px;
    height: 6px;
    background-image: url(../images/icon/arrow_news_SP.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 0px;
    bottom: 0px;
}

.news__list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    align-self: stretch;
}

.news__item {
    border-bottom: 1px solid #C4C4C4;
}

.news__post {
    display: flex;
    padding: 10px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
    color: #676767;
    font-family: Lato;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.news__post span {
    color: #222;
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-weight: 400;
}

.info__container__events {
    display: flex;
    padding: 24px 4.8% 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
    background-color: var(--primary-white);
}

.events__title {
    font-family: Lato;
    font-size: 3.2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.events__title p {
    font-family: "Noto Sans JP";
    font-size: 1.2rem;
    font-weight: 400;
}

.calendar-container {
    height: 260px;
    align-self: stretch;
}

.calendar-container iframe {
    width: 100%;
    height: 100%;
}

/* info-PC */
@media screen and (min-width:860px) {
    .info {
        display: flex;
        padding: 60px 11.1%;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 32px;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        width: 100vw;
    }

    .info__container__news {
        width: 568px;
        padding: 36px 2.85%;
        gap: 80px;
    }

    .news__title {
        font-size: 3.6rem
    }

    .news__title p {
        font-size: 1.6rem;
    }

    .news__all {
        width: 115px;
        height: 23px;
        font-size: 1.4rem;
        line-height: normal;
    }

    .news__all:hover {
        color: #676767;
    }

    .news__post {
        padding: 12px 0px;
        gap: 16px;
        font-family: Lato;
        font-size: 1.2rem;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        font-size: 1.8rem;
    }

    .news__post span {
        font-size: 2rem;
    }

    .news__post span:hover {
        color: #676767;
    }

    .info__container__events {
        display: flex;
        width: 520px;
        padding: 36px 2.85% 26px;
    }

    .events__title {
        font-size: 3.6rem;
    }

    .events__title p {
        font-size: 1.6rem;
    }

    .calendar-container {
        height: 355px;
        align-self: stretch;
    }
}/* pc 769px */

/* =======================================
Topics
======================================= */
.topics {
    display: flex;
    padding-top: 80px;
    flex-direction: column;
    align-items: flex-start;
}

.topics__item {
    display: flex;
    padding: 48px 5.3%;
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
    align-self: stretch;
}

.topics__txtContainer {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 32px;
    align-self: stretch;
}

.topics__txt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
}

.topics__title__main {
    font-family: Lato;
    font-size: 3.2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.topics__title__sub {
    font-size: 1.2rem;
}

.topics__note {
    font-size: 1.6rem;
    line-height: 28px; /* 175% */
    letter-spacing: 0.16px;
}

/* Topics-PC */
@media screen and (min-width:860px) {
    .topics {
        padding: 120px 11.1%;
    }

    .topics__item {
        padding: 60px 0px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        align-self: stretch;
        gap: 78px;
    }

    .topics__txtContainer {
        justify-content: center;
    }

    .topics__txt {
        gap: 80px;
        align-self: stretch;
    }

    .topics__title__main {
        font-size: 40px;
    }

    .topics__title__sub {
        font-size: 1.4rem;
    }

    .topics__note {
        font-size: 1.8rem;
        line-height: 32px; /* 177.778% */
        letter-spacing: 0.18px;
    }

    .topics__img {
        width: 46.4%;
        flex-shrink: 0;
    }

    .topics__item_winery,
    .topics__item_stay {
        flex-direction: row-reverse;
    }
}/* pc 769px */

/* =======================================
shop-banner
======================================= */
.banner__sp {
    display: block;
    margin: 60px auto 80px;
    width: 93%;
    max-width: 540px;
}

.banner__pc {
    display: none;
}

/* Shop-banner-PC */
@media screen and (min-width:769px) {
    .banner__sp {
        display: none;
    }

    .banner__pc {
        display: block;
        width: 800px;
        margin: 0 auto 80px;
        transition: all 0.3s ease;
    }

    .banner__pc:hover {
        transform: scale(1.01);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }
}/* pc 769px */

/* =======================================
Membership
======================================= */
.membership {
    display: flex;
    padding: 60px 5.3%;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    background-image: url(../images/paper-texture.jpg);
    background-repeat: repeat;
}

.membership__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    align-self: stretch;
    font-family: Lato;
    font-size: 3.2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 32px; /* 100% */
}

.membership__title p {
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; /* 228.571% */
}

.membership__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    align-self: stretch;
}

.membership__item {
    display: flex;
    padding-bottom: 36px;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    align-self: stretch;
    background-color: var(--primary-white);
}

.membership__txtBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    align-self: stretch;
}

.membership__txt {
    display: flex;
    padding: 0px 2.4%;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    text-align: center;
    font-family: Lato;
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.membership__txt p {
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 175% */
    letter-spacing: 0.16px;
    text-align: left;
}

/* Membership-PC */
@media screen and (min-width:769px) {
    .membership {
        padding: 120px 11.1%;
        gap: 60px;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        width: 100vw;
    }

    .membership__title {
        gap: 13px;
        font-size: 4rem;
    }

    .membership__title p {
        font-size: 2rem;
    }

    .membership__list {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 8.3%;
    }

    .membership__item {
        padding-bottom: 60px;
        gap: 56px;
        justify-content: space-between;
        max-width: 500px;
    }

    .membership__txtBox {
        gap: 56px;
        flex-grow: 1;
        justify-content: space-between;
    }

    .membership__txt {
        gap: 24px;
        align-self: center;
        text-align: left;
        font-size: 3.2rem;
    }

    .membership__txt p {
        max-width: 450px;
        font-size: 1.8rem;
        line-height: 32px; /* 177.778% */
        align-self: stretch;
        letter-spacing: 0.18px;
    }
}/* pc 769px */

/* =======================================
Access
======================================= */
.access {
    display: flex;
    padding: 40px 0px;
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
    background-color: var(--primary-white);
}

.access__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    align-self: stretch;
    font-family: Lato;
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 700;
    line-height: 32px; /* 88.889% */
    letter-spacing: 0.36px;
}

.access__title p {
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1.2rem;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.12px;
}

.nagano_map {
    width: 375px;
    height: 414.29px;
    flex-shrink: 0;
    background-image: url(../images/nagano_map.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin: 0 auto;
}

.mapName {
    color: #594A32;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 15px; /* 125% */
}

/* 位置調整 */
.mapName_villa {
    position: absolute;
    top: 45px;
    left: 20px;  
}

.mapName_koyasu {
    text-align: right;
    position: absolute;
    top: 34px;
    right: 20px; 
}

.mapName_izuna {
    position: absolute;
    top: 134px;
    left: 20px; 
}

.mapName_cafe {
    text-align: right;
    position: absolute;
    top: 113px;
    right: 20px; 
}

.mapName_winery {
    text-align: right;
    position: absolute;
    top: 195px;
    right:20px; 
}

.attention {
    display: inline-flex;
    width: 77%;
    height: auto;
    padding: 10px;
    justify-content: center;
    align-items: center;
    border: 1px dashed #705D3F;
    background: rgba(245, 242, 232, 0.30);
    font-size: 1.2rem;
    line-height: 18px; /* 150% */
    letter-spacing: 0.12px;
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Access Title部分-PC */
@media screen and (min-width:769px) {
    .access {
        display: flex;
        padding: 40px 0px;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background-color: var(--primary-white);
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        width: 100vw;
        
    }
    
    .access__title {
        display: flex;
        padding: 120px 0px 90px;
        font-size: 4rem;
        line-height: normal;
    }

    .access__title p {
        font-size: 1.4rem;
    }
}/* pc 1000px */
    /* Access MAP部分-PC */
@media screen and (min-width:1000px) {
    .access {
        padding: 0;
        gap: 0px;
    }

    .nagano_map {
        width: 1000px;
        height: 887.607px;
        flex-shrink: 0;
        background-image: url(../images/nagano_map_PC.png);
        background-size: cover;
        background-position: top;
        background-repeat: no-repeat;
        position: relative;
        margin: 0 auto;
    }

    .mapName {
        font-size: 2.4rem;
        line-height: normal;
        padding: 0 6px;
        background-image: linear-gradient(to right,#F2EABF, #F2EABF); 
        background-size: 0% 100%;
        background-repeat: no-repeat;
        background-position: center bottom;
        transition: all 0.4s ease;
    }

    .mapName:hover {
        background-size: 120% 100%;
        transform: translateY(-2px);
    }

    .br_sp {
        display: none;
    }

    /* 位置調整_PC*/
    .mapName_villa {
        position: absolute;
        top: 153px;
        left: 45px;  
    }

    .mapName_koyasu {
        text-align: right;
        position: absolute;
        top: 127px;
        right: 15px; 
    }

    .mapName_izuna {
        position: absolute;
        top: 367px;
        left: 45px; 
    }

    .mapName_cafe {
        text-align: right;
        position: absolute;
        top: 284px;
        right: 15px; 
    }

    .mapName_winery {
        text-align: right;
        position: absolute;
        top: 516px;
        right:15px; 
    }

    .attention {
        display: flex;
        width: 42.4%;
        font-size: 1.8rem;
        line-height: 32px; /* 177.778% */
        bottom: 10px;
        left: 782px;
    }
}/* pc 1000px */

/* =======================================
Mail-magazine
======================================= */
.mail-magazine {
    display: flex;
    padding: 60px 5.3%;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.mail-magazine__title {
    font-size: 2.4rem;
    font-weight: 600;
}

.mail-magazine__div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.mail-magazine__txt {
    font-size: 1.6rem;
    line-height: 28px; /* 175% */
    letter-spacing: 0.16px;
}

.MF-fm {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    align-self: stretch;
}

.MF-div {
    display: flex;
    width: 335px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.MF-name,
.MF-mail {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
}

.MF-name__title,
.MF-mail__title {
    font-size: 1.6rem;
    line-height: 24px; /* 150% */
}


.MF-fld--name,
.MF-fld--mail {
    width: 335px;
    height: 32px;
    padding: 0px 8px;
    align-items: center;
    border: 1px solid #333;
    background: #FFF;
}

input {
    font-size: 1.6rem;
}

input::placeholder {
    color: #B2B2B2;
    font-size: 1.6rem;
}

.MF-btn {
    display: flex;
    width: 113px;
    height: 34px;
    margin-top: 48px;
    padding-left: 38px;
    justify-content: space-between;
    align-items: center;
    position: relative;
    background-color: var(--primary-green);
    color: var(--primary-white);
    font-size: 1.8rem;
    font-weight: 600;
}

.MF-btn::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url(../images/icon/icon_arrow_btn.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    transition: right 0.3s ease;
}

.privacy-policy {
    color: #6C8059;
    font-size: 1.6rem;
    line-height: 28px; /* 175% */
    letter-spacing: 0.16px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

/* .mail-magazine-PC */
@media screen and (min-width:1000px) {
    .mail-magazine {
        padding: 60px 11.1%;
        gap: 32px;
    }

    .mail-magazine__title {
        font-size: 3.2rem;
    }

    .mail-magazine__div {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 60px;
        align-self: stretch;
        justify-content: space-between;
    }

    .mail-magazine__txt {
        width: 53.6%;
        align-self: stretch;
        font-size: 1.8rem;
        line-height: 32px; /* 177.778% */
    }

    .MF-fm {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 24px;
        width: 460px;
    }

    .MF-div {
        align-items: flex-end;
        gap: 12px;
        align-self: stretch;
        width: 460px;
    }

    .MF-name,
    .MF-mail {
        display: flex;
        align-items: flex-end;
        /* gap: 10px; */
        align-self: stretch;
    }

    .MF-itm {
        display: flex;
        align-items: center; /* ← 縦中央揃え */
    }

    .MF-fld--name,
    .MF-fld--mail {
        margin-left: 10px;
    }
    .MF-btn {
        margin-top: 0;
    }

    .MF-btn:hover {
        background-color: var(--primary-lightBrown);
    }

    .privacy-policy:hover {
        color: var(--primary-lightBrown);
    }

}/* pc 769px */

