@charset "UTF-8";

* {
    margin: 0px;
    padding: 0px;
    color: #412E27;
    box-sizing: border-box;
}

.container {
    width: 100% !important;
}


/* font設定 */
.body {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.fontstyle-EBgaramond {
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
}





/* パンくずリスト */
.verdiani-breadcrumb {
    font-size: .8rem;
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 9999;
}

.verdiani-breadcrumb a {
    text-decoration: none;
    color: #412E27;
}






/* フェードアップ */
.fadeUp {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 2s ease, transform 2s ease;
}

.fadeUp.active {
    opacity: 1;
    transform: translateY(0);
}

.fadeUp2 {
    opacity: 0;
    transform: translateY(200px);
    transition: opacity 2s ease, transform 2s ease;
}

.fadeUp2.active {
    opacity: 1;
    transform: translateY(0);
}

.fadeUp3 {
    opacity: 0;
    transform: translateY(300px);
    transition: opacity 2s ease, transform 2s ease;
}

.fadeUp3.active {
    opacity: 1;
    transform: translateY(0);
}








/* ローディング画面 */
.splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(236, 230, 223);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 1s ease;
}

.splash.hidden {
    opacity: 0;
    pointer-events: none;
}

.loadingpage-logo {
    width: 500px;
}

.logo {
    font-size: 3rem;
    font-weight: bold;
    opacity: 0;
    animation: fadeIn 2s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}










/* メインページ */
:root {
    --duration: 1600ms;
    --stagger: 320ms;
    --gap: 0px;
    --height: 100vh;
}

.stage {
    width: 100%;
    height: var(--height);
    display: flex;
    gap: var(--gap);
    overflow: hidden;
}

.panel {
    flex: 1 1 0;
    position: relative;
    overflow: hidden;
}

.panel img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateY(110%);
    transition: transform var(--duration) cubic-bezier(.22, .9, .35, 1);
}

.stage.revealed .panel img {
    transform: translateY(0%);
}

.panel:nth-child(1) img {
    transition-delay: calc(var(--stagger) * 0);
}

.panel:nth-child(2) img {
    transition-delay: calc(var(--stagger) * 1);
}

.panel:nth-child(3) img {
    transition-delay: calc(var(--stagger) * 2);
}

.panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0));
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .panel img {
        transition: none;
        transform: none !important;
    }
}

@media (max-width: 560px) {
    .stage {
        flex-direction: column;
        height: 100vh;
    }

    .panel {
        height: 33.333%;
    }

    .panel img {
        object-position: center;
    }
}

.caption {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: rgba(0, 0, 0, 0.45);
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
}



.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    transition: opacity 1.5s ease, transform 1.5s ease;
    z-index: 10;
}

.stage.show-logo .center-logo {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.center-logo img {
    width: 100vh;
}






.about-verdiani-container {
    text-align: center;
}

.about-VERDIANI-title {
    width: 500px;
    display: block;
    margin: 0 auto;
    padding: 200px 0;
}

.about-verdiani-sub {
    margin: 200px 0 0;
    font-size: 2.2rem;
}

.about-verdiani-sub-ja {
    font-size: .8rem;
    margin: 0 0 50px;
}

.about-verdiani-sub,
.about-verdiani-sub-ja,
.about-verdiani-p {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.about-verdiani-p {
    font-size: .9rem;
}

.kirikae {
    position: relative;
    top: 20px;
    width: 100%;
    z-index: 99;
}



.kirikae2 {
    position: relative;
    top: -150px;
    width: 100%;
    z-index: 99;
}




.featured-items {
    text-align: center;
    position: relative;
    overflow: hidden;
    background: rgb(236, 230, 223);
    padding: 200px 0 200px;
    margin-top: -100px;
}



/* 画像初期状態：上から落ちる */
.featured-items-img {
    width: 30%;
    height: auto;
    display: block;
    margin: 0 auto 20px;
    opacity: 0;
    transform: translateY(-500px);
    transition: transform 1s ease-out, opacity 1s ease-out;
}

.featured-items p {
    opacity: 0;
    transform: translateY(-200px);
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
    font-size: .9rem;
}

.featured-items.show .featured-items-img,
.featured-items.show p {
    opacity: 1;
    transform: translateY(0);
}





.featured-items2 {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 200px 0;
    background: rgb(236, 230, 223);
}

.featured-items2 img {
    width: 33.333333%;
    opacity: 0;
    transform: translate(-100px);
    transition: all 0.2s ease-out;
}

.featured-items2 img.visible {
    opacity: 1;
    transform: translate(0, 0);
}








/*  ============= PJ3423 =================== */

.about-PJ3423-container {
    background: rgb(236, 230, 223);
}


.PJ3423 {
    position: relative;
    width: 100%;
    height: 160vh;
    overflow: hidden;
}


.PJ3423-img {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%) scale(1.05);
    opacity: 0;
    transition: all 1s ease-out;
    z-index: 1;
    width: 60%;
}

.PJ3423-img.active {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.about-PJ3423-text {
    position: absolute;
    left: 10%;
    top: 58%;
    transform: translateY(50px);
    opacity: 0;
    transition: all 1s ease-out 0.5s;
    z-index: 2;
}

.about-PJ3423-text.active {
    opacity: 1;
    transform: translateY(0);
}

.about-PJ3423-text h1 {
    font-size: 2.5rem;
    font-family: "EB Garamond", serif;
    margin-bottom: 10px;
}

.about-PJ3423-text p {
    font-size: 1.2rem;
}





.about-PJ3423-text2 {
    text-align: center;
    line-height: 2rem;
    font-size: .9rem;
}

.fadeUp4 {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fadeUp4.active {
    opacity: 1;
    transform: translateY(0);
}





.about-PJ3423-text3 {
    position: absolute;
    top: 70%;
    right: 10%;
    width: 500px;
    line-height: 2rem;
    z-index: 99;
    font-size: .9rem;
}







.PJ3423-2 {
    position: relative;
    width: 100%;
    height: 1700px;
    background: rgb(236, 230, 223);
    overflow: hidden;
}

.PJ3423-2-img {
    position: absolute;
    top: 48%;
    right: 20%;
    width: 50%;
    transform: translateX(50px) translateY(-50%);
    opacity: 0;
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
    z-index: 1;
}

.PJ3423-2-img2 {
    position: absolute;
    top: 65%;
    left: 20%;
    width: 35%;
    transform: translateX(-50px) translateY(-50%);
    opacity: 0;
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
    z-index: 2;
}

.PJ3423-2-img.active {
    transform: translateX(0) translateY(-50%);
    opacity: 1;
}

.PJ3423-2-img2.active {
    transform: translateX(0) translateY(-50%);
    opacity: 1;
}



.PJ3423-3 {
    display: flex;
    justify-content: center;
    padding-top: 200px;
}

.PJ3423-3-img {
    width: 400px;
}

.PJ3423-3-color {
    position: relative;
}

.PJ3423-3-color-beige {
    position: absolute;
    top: 10%;
    right: -17%;
    z-index: 99;
    width: 300px;
}

.PJ3423-3-color-gray {
    position: absolute;
    top: 40%;
    right: -24%;
    z-index: 99;
    width: 300px;
}


.PJ3423-3-color-p {
    font-size: .9rem;
    text-align: center;
    padding: 100px;
    margin: 0 auto;

}






.Size-Price {
    padding: 100px 0 200px;
    text-align: center;
}

.small-text {
  font-size: 0.75em;
  color: #666;
}

.Size-Price2 {
    border-bottom: 1px solid;
    font-size: 1.5rem;
    padding-bottom: 6px;
}

.Size-Price3 {
    padding: 20px 0;
    line-height: 2rem;
    font-size: .9rem;
}






/* ボタン装飾CSS */

.button019 {
    text-align: center;
}

.button019 a {
    background: #0000008a;
    border-radius: 50px;
    position: relative;
    display: inline-flex;
    justify-content: space-around;
    align-items: center;
    width: 160px;
    padding: 10px 30px;
    color: #ffffff;
    transition: 0.3s ease-in-out;
    text-decoration: none;
    font-size: .8rem;
    margin-bottom: 50px;
}

.button019 a:after {
    content: "";
    position: absolute;
    top: 50%;
    bottom: 0;
    right: 2rem;
    font-size: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.3s;
    width: 6px;
    height: 6px;
    border-top: solid 2px currentColor;
    border-right: solid 2px currentColor;
    transform: translateY(-50%) rotate(45deg);
}

.button019 a:hover {
    background: #6bb6ff;
    color: #FFF;
}

.button019 a:hover:after {
    right: 1.4rem;
}



/*  ================================ */



/*  ============= PJ8418 =================== */

.about-PJ8418-container {
    background: rgb(255, 255, 255);
}


.PJ8418 {
    position: relative;
    width: 100%;
    height: 160vh;
    overflow: hidden;
}



.PJ8418-img {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%) scale(1.05);
    opacity: 0;
    transition: all 1s ease-out;
    z-index: 1;
    width: 60%;
}

.PJ8418-img.active {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}


.about-PJ8418-text {
    position: absolute;
    left: 18%;
    top: 50%;
    transform: translateY(50px);
    opacity: 0;
    transition: all 1s ease-out 0.5s;
    z-index: 2;
}

.about-PJ8418-text.active {
    opacity: 1;
    transform: translateY(0);
}

.about-PJ8418-text h1 {
    font-size: 2.5rem;
    font-family: "EB Garamond", serif;
    margin-bottom: 10px;
}

.about-PJ8418-text p {
    font-size: 1.2rem;
}



/* 3つ横並びの画像　背景白 */
.featured-items3 {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 200px 0;
    background: rgb(255, 255, 255);
}

.featured-items3 img {
    width: 33.333333%;
    opacity: 0;
    transform: translate(-100px);
    transition: all 0.2s ease-out;
}

.featured-items3 img.visible {
    opacity: 1;
    transform: translate(0, 0);
}















.about-PJ8418-text2 {
    text-align: center;
    line-height: 2rem;
    padding: 0 200px;
    font-size: .9rem;
}


.about-PJ8418-text3 {
    position: absolute;
    top: 72%;
    right: 10%;
    width: 500px;
    line-height: 2rem;
    z-index: 99;
    font-size: .9rem;
}







.PJ8418-2 {
    position: relative;
    width: 100%;
    height: 1700px;
    background: rgb(255, 255, 255);
    overflow: hidden;
}

.PJ8418-2-img {
    position: absolute;
    top: 48%;
    right: 20%;
    width: 50%;
    transform: translateX(50px) translateY(-50%);
    opacity: 0;
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
    z-index: 1;
}

.PJ8418-2-img2 {
    position: absolute;
    top: 65%;
    left: 10%;
    width: 40%;
    transform: translateX(-50px) translateY(-50%);
    opacity: 0;
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
    z-index: 2;
}

.PJ8418-2-img.active {
    transform: translateX(0) translateY(-50%);
    opacity: 1;
}

.PJ8418-2-img2.active {
    transform: translateX(0) translateY(-50%);
    opacity: 1;
}



.PJ8418-3 {
    display: flex;
    justify-content: center;
    padding: 200px 0 100px;
}

.PJ8418-3-img {
    width: 400px;
}

.PJ8418-3-color {
    position: relative;
}

.PJ8418-3-color-beige {
    position: absolute;
    top: 50%;
    right: -20%;
    z-index: 99;
    width: 300px;
}

.PJ8418-3-color-gray {
    position: absolute;
    top: 18%;
    right: -28%;
    z-index: 99;
    width: 300px;
}


.PJ8418-3-color-p {
    font-size: .9rem;
    text-align: center;
    padding: 100px;
    margin: 0 auto;

}



/*  ================================ */


/*  ============= PJ4420 =================== */

.about-PJ4420-container {
    background: rgb(236, 230, 223);
}


.PJ4420 {
    position: relative;
    width: 100%;
    height: 160vh;
    overflow: hidden;
}


.PJ4420-img {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%) scale(1.05);
    opacity: 0;
    transition: all 1s ease-out;
    z-index: 1;
    width: 60%;
}

.PJ4420-img.active {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.about-PJ4420-text {
    position: absolute;
    left: 10%;
    top: 55%;
    transform: translateY(50px);
    opacity: 0;
    transition: all 1s ease-out 0.5s;
    z-index: 2;
}

.about-PJ4420-text.active {
    opacity: 1;
    transform: translateY(0);
}

.about-PJ4420-text h1 {
    font-size: 2.5rem;
    font-family: "EB Garamond", serif;
    margin-bottom: 10px;
}

.about-PJ4420-text p {
    font-size: 1.2rem;
}



.about-PJ4420-text2 {
    text-align: center;
    line-height: 2rem;
    font-size: .9rem;
}


.about-PJ4420-text3 {
    position: absolute;
    top: 72%;
    right: 10%;
    width: 500px;
    line-height: 2rem;
    z-index: 99;
    font-size: .9rem;
}









.PJ4420-2 {
    position: relative;
    width: 100%;
    height: 1700px;
    background: rgb(236, 230, 223);
    overflow: hidden;
}


.PJ4420-2-img {
    position: absolute;
    top: 48%;
    right: 20%;
    width: 50%;
    transform: translateX(50px) translateY(-50%);
    opacity: 0;
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
    z-index: 1;
}

.PJ4420-2-img2 {
    position: absolute;
    top: 65%;
    left: 20%;
    width: 35%;
    transform: translateX(-50px) translateY(-50%);
    opacity: 0;
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
    z-index: 2;
}

.PJ4420-2-img.active {
    transform: translateX(0) translateY(-50%);
    opacity: 1;
}

.PJ4420-2-img2.active {
    transform: translateX(0) translateY(-50%);
    opacity: 1;
}



.PJ4420-3 {
    display: flex;
    justify-content: center;
}

.PJ4420-3-img {
    width: 400px;
}

.PJ4420-3-color {
    position: relative;
}

.PJ4420-3-color-beige {
    position: absolute;
    top: 22%;
    right: -22%;
    z-index: 99;
    width: 300px;
}

.PJ4420-3-color-gray {
    position: absolute;
    top: 40%;
    right: -24%;
    z-index: 99;
    width: 300px;
}


.PJ4420-3-color-p {
    font-size: .9rem;
    width: 700px;
    text-align: center;
    padding: 50px 0;
    margin: 0 auto;

}












.verdiani-cta {
    margin: 0 auto 20px;
    line-height: 2rem;
    font-weight: 400;
    text-align: center;
    padding: 0 1rem;
    font-size: .9rem;
}


.verdiani-cta-img-wrapper {
    width: 200px;
    margin: 0 auto;
    position: relative;
    display: block;
    /* aタグをブロックにする */
    cursor: pointer;
    /* ホバー時に手の形 */
}

.verdiani-cta-img {
    width: 100%;
    display: block;
    transition: opacity 0.3s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 30px;
}

.verdiani-cta-img.hover {
    opacity: 0;
    /* 初期は非表示 */
}

.verdiani-cta-img-wrapper:hover .hover {
    opacity: 1;
    /* ホバーで表示 */
}

.verdiani-cta-img-wrapper:hover .normal {
    opacity: 0;
    /* ホバーで非表示 */
}






/*  ================================ */









/* ------ スクロールダウン アイコン ------ */

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap');

.scroll_down {
    position: fixed;
    /* ← absolute から fixed に変更 */
    bottom: 40px;
    /* 画面下からの距離 */
    right: 2%;
    /* 画面右からの距離 */
    animation: arrowmove 1s ease-in-out infinite;
    z-index: 999;
    /* 他の要素の上に表示 */
}

.scroll_down a {
    position: absolute;
    left: -24px;
    bottom: 30px;
    color: #000;
    font-size: 14px;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: .2em;
    text-transform: uppercase;
    width: 24px;
    height: 24px;
    text-decoration: none;
}

.text {
    display: block;
    margin-top: 66px;
    margin-left: -3px;
    font-size: 8px;
    color: #000;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 1px;
}

.arrow {
    position: absolute;
    width: 28px;
    height: 5px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move 3s ease-out infinite;
}

.arrow:first-child {
    animation: move 3s ease-out 1s infinite;
}

.arrow:nth-child(2) {
    animation: move 3s ease-out 2s infinite;
}

.arrow:before,
.arrow:after {
    content: ' ';
    position: absolute;
    top: 0;
    height: 100%;
    width: 51%;
    background: #000;
}

.arrow:before {
    left: 0;
    transform: skew(0deg, 30deg);
}

.arrow:after {
    right: 0;
    width: 50%;
    transform: skew(0deg, -30deg);
}

@keyframes move {
    25% {
        opacity: 1;
    }

    33% {
        opacity: 1;
        transform: translateY(30px);
    }

    67% {
        opacity: 1;
        transform: translateY(40px);
    }

    100% {
        opacity: 0;
        transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
}

.brand-logo {
    display: block;
    width: 200px;
    margin: 0 auto 200px;
}

.footer {
    text-align: center;
    padding: 400px 0;
    font-size: .9rem;
    line-height: 2rem;
}

.button a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 30px;
    padding: 8px 20px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.button a img {
    display: block;
    width: 108px;
    /* 元のサイズでもOK */
    height: auto;
}

.button a:hover {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    border-color: transparent;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.button a:hover img {
    filter: brightness(0) invert(1);
    /* ホバー時はロゴを白っぽく */
}







.circle_btn05 {
    position: relative;
    display: inline-block;
    display: flex;
    justify-content: flex-end;
    margin: 50px 60px 100px 0;
}

.circle_btn05 .circle_btn05-txt {
    height: 48px;
    line-height: 48px;
    padding-right: 60px;
    color: initial;
    text-decoration: none;
}

.circle_btn05 .circle_btn05-icon {
    width: 48px;
    height: 48px;
    position: absolute;
    top: 0;
    right: 0;
    pointer-events: none;
}

.circle_btn05 .circle_btn05-icon .circle_btn05-circle {
    transition: transform 1s cubic-bezier(.23, 1, .32, 1);
    height: 48px;
}

.circle_btn05 .circle_btn05-icon .circle_btn05-circle svg {
    transition: transform .75s cubic-bezier(.215, .61, .355, 1);
    width: 100%;
    height: 100%;
    position: relative;
}

.circle_btn05 .circle_btn05-icon .circle_btn05-circle svg path {
    stroke-width: 2;
    transition: stroke-width .75s cubic-bezier(.215, .61, .355, 1);
}

.circle_btn05 .circle_btn05-icon .circle_btn05-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    display: inline-flex;
}

.circle_btn05 .circle_btn05-icon .circle_btn05-arrow svg path {
    stroke-width: 2;
    stroke: #5e5e5e;
    /* 矢印の色 */
}

.circle_btn05 .circle_btn05-circle-itm {
    background-color: #5e5e5e;
    /* 丸の色 */
    height: 48px;
}

/* マウスオーバーした際のデザイン */
.circle_btn05:hover .circle_btn05-txt {
    transform: translateX(-12px);
    transition: transform .5s cubic-bezier(.39, .575, .565, 1);
}

.circle_btn05:hover .circle_btn05-icon .circle_btn05-circle {
    transform: rotate(1turn);
    transition: transform .75s cubic-bezier(.23, 1, .32, 1);
}

.circle_btn05:hover .circle_btn05-icon .circle_btn05-circle svg {
    transform: scale(1.5);
}