@charset "UTF-8";

/* ===================
top共通タイトル
====================== */
.section__title {
    color: var(--color-text-strong);
    font-family: var(--font-display-en);
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-align: center;
}

@media screen and (min-width: 768px) {

    .section__title {
        font-size: 6.4rem;
    }

    .sp-br {
        display: none;
    }
}


/* ===================
home-main
====================== */
.home-main {
    /*　上にタイトルが重なる（PEACHEの）分余白を作るために下げる */
    margin-top: clamp(60px, 8vw, 120px);
}

.hero-home {
    /*　hero-home__titleとボタンの基準になるように */
    position: relative;
}

.hero-home__image {
    display: block;
    width: 100%;
    height: auto;
}

.hero-home__title {
    position: absolute;
    top: 0;
    left: clamp(20px, 5.12vw, 80px);
    transform: translateY(-50%);
    z-index: 2;

    color: var(--color-text-strong);
    text-align: center;
    font-family: var(--font-logo);
    font-size: clamp(6rem, 15.3vw, 15rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.12em;
}

.hero-home__btn-box {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

/* heroのリンクボタン 個別部分　*/
.link-btn--light {
    color: #E5DAD3;
}

@media screen and (min-width: 768px) {

    .hero-home__btn-box {
        display: none;
    }
}



/* ===================
concept
====================== */

.concept {
    position: relative;

    padding-top: 48px;
    padding-bottom: 100px;
}

.concept__inner {
    padding-inline: 5.1%;
    max-width: 600px;
    margin: 0 auto;
}

.concept__title {
    color: var(--color-text-strong);
    text-align: center;
    font-family: var(--font-display-ja);
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 2;
    letter-spacing: 0.1em;
}

.concept__lead {
    color: var(--color-text-heading);
    text-align: left;
    font-family: var(--font-display-ja);
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 2;
    letter-spacing: 0.1em;

    margin-top: 40px;
}

.concept__text-group {
    margin-left: auto;
    margin-top: 60px;
}

.concept__text {
    color: var(--color-text-body);
    text-align: left;
    font-family: var(--font-body-ja);
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 0.08em;
}

/* 意味　２つ目のconcept__texを指定している*/
.concept__text + .concept__text {
    margin-top: 48px;
}

.concept__message {
    color: var(--color-text-body);
    font-family: var(--font-body-ja);
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 0.08em;

    margin-top: 60px;
}

/*　SP 花　右側　*/
.concept::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -70px;

    width: min(35.9vw, 160px);
    height: min(35.9vw, 160px);

    background-image:  url("../img/sp-flower@2x.png");
    background-size: contain;
    background-repeat: no-repeat;
}


@media screen and (min-width: 768px) {

    .concept {
        padding-top: 130px;
        padding-bottom: 150px;
    }

    .concept__inner {
        padding-inline: 4rem;
        max-width: 1000px;
        margin: 0 auto;
    }

    .concept__title {
        font-size: 4.2rem;
    }

    .concept__lead {
        text-align: center;
        font-size: 2.4rem;
        line-height: 2;

        margin-top: 100px;
    }

    .concept__text-group {
        max-width: 620px;
        margin-left: 0;
        margin: 0 auto;
        margin-top: 80px;
    }

    .concept__text {
        text-align: center;
        font-size: 1.6rem;
        line-height: 2;
    }

    /* 意味 ２つ目のconcept__texを指定している*/
    .concept__text + .concept__text {
        margin-top: 40px;
    }

    .concept__message {
        text-align: center;
        font-size: 1.6rem;
        line-height: 2.3;

        margin-top: 80px;
    }

    /*　PC 花　右側　*/
    .concept::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -120px;

        width: min(25.7vw, 360px);
        height: min(25.7vw, 360px);

        background-image:  url("../img/pc-flower@2x.png");
        background-size: contain;
        background-repeat: no-repeat;
    }
}


/* ===================
our-scents
====================== */

.splide__track {
    padding-top: 12px;
}

.our-scents {
    padding: 80px 0;
    background-color: var(--color-bg-accent);
    overflow: hidden;
}

.our-scents__slider {
    margin-top: 48px;
    padding: 0 20px;
}

.our-scents__item {
    color: var(--color-text-heading);
    text-align: center;
    font-family: var(--font-body-en);
    font-size: 2.0rem;
    line-height: 1;
    letter-spacing: 0.1em;

    max-width: 24rem;
    margin: 0 auto;

    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(0px);
}

.our-scents__item:hover {
    transform: translateY(-8px);
}

.our-scents__item img {
    display: block;
    width: 100%;
    height: auto;
}

.our-scents__name {
    margin-top: 20px;
}

.our-scents__cta {
    margin-top: 48px;
    text-align: center;
}

/*  our-scents our-quality　のsectionのリンクボタン */
.link-btn--dark {
    color: var(--color-text-body);
}


@media screen and (min-width: 768px) {
    
    .our-scents {
        padding: 100px 0;
    }
    
    .our-scents__slider {
        margin-top: 80px;
    }
    
    .our-scents__item {
        font-size: 2.4rem;
        max-width: 26rem;
    }

    .our-scents__name {
        margin-top: 30px;
    }
    
    .our-scents__cta {
        margin-top: 80px;
    }
}

@media screen and (min-width: 1024px) {

    .our-scents {
        padding: 130px 0;
    }

    .our-scents__slider {
        margin-top: 100px;
    }

    .our-scents__item {
        max-width: 34rem;
    }

    .our-scents__name {
        margin-top: 40px;
    }

    .our-scents__cta {
        margin-top: 100px;
    }
}


/* ===================
our-philosophy
====================== */

.our-philosophy {
    padding-bottom: 80px;
}

.our-philosophy__head {
    background-image: url(../img/top-philosophy-and-quality-header-bg@2x.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    width: 100%;
    padding: 60px 0 40px;
}

.our-philosophy__pc {
    display: none;
}

.our-philosophy__sp {
    display: block;
}

.our-philosophy__sp-wrapper {
    padding: 80px 5.1% 0 5.1%;
}

.our-philosophy__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

/* 背景の丸　見た目や装飾用 */
.our-philosophy__circle {

    /* 葉っぱ,基準 */
    position: relative;
    
    /* 丸の中身のレイアウト */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5em;
    
    /* 中の基準となるフォントサイズ labelとplusはemで連動させる */
    font-size: clamp(1.6rem, 2vw, 1.8rem);

    /* 丸　*/
    width: min(50vw, 280px);
    padding: 20px 20px 0 20px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 30%,
        #d1c6c5 0%,
        #c6b9b8 50%,
        #bcaeac 70%);
    box-shadow: 
        inset 0 1px 2px rgba(214, 205, 203, 0.6),
        inset 0 -6px 14px rgba(183, 168, 166, 0.25);

    /* ボタンをクリックした時の変化を滑らかにするため 　*/
    transition: opacity 0.3s ease;
}

 /* 左の葉っぱ */
.our-philosophy__circle--leaf-left::before {
    content: "";
    display: block;
    width: 50%;
    aspect-ratio: 1 / 1.618;
    background-image: url(../img/top-philosophy-leaf-left@2x.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    position: absolute;
    top: -50%;
    transform: translateY(50%);
    left: -25%;
}

/* 右の葉っぱ */
.our-philosophy__circle--leaf-right::before {
    content: "";
    display: block;
    width: 50%;
    aspect-ratio: 1 / 1.618;
    background-image: url(../img/top-philosophy-leaf-right@2x.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    position: absolute;
    top: -50%;
    transform: translateY(50%);
    right: -25%;
}

/* 中の文字たち　*/
.our-philosophy__label {
    display: inline-block;
    color: var(--color-text-heading);
    text-align: center;
    font-family: var(--font-display-ja);
    font-size: 1em;
    letter-spacing: 0.08em;
}

.our-philosophy__plus {
    display: inline-block;
    font-size: 1.8em;
    opacity: 0.5;
    line-height: 1;
}

/* ポワポワ線 */
.our-philosophy__circle::after {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;

     /* 線の位置真ん中に合わせる　スケールはそのままの１ */
    transform: translate(-50%, -50%) scale(1);

    /* 親の丸と、同じ大きさにする */
    width: 100%;
    height: 100%;
    
    /* この線ではクリックできないように */
    pointer-events: none;

    border-radius: 50%;
    border: 2px solid rgba(157, 151, 148, 0.8);
    
    /* 何が（自由）　何秒かけて　どのように　何回行うか。
    　　moveCircleとうい名前のアニメーションを、3秒かけて、
    　　最初から最後まで同じ速さで、無限に繰り返す*/
    animation: moveCircle 3s linear infinite;
}

@keyframes moveCircle {

    0% {
        transform: translate(-50%, -50%) scale(0.98);
        opacity: 0;
    }

    20% {
        transform: translate(-50%, -50%) scale(1.04);
        opacity: 0.7;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.12);
        opacity: 0.4;
    }

    80% {
        transform: translate(-50%, -50%) scale(1.25);
        opacity: 0.2;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}


/* SP ここからモーダル */

/* SP モーダル非表示 */
.our-philosophy-modal {
    position: fixed;
    z-index: 1000;

    /* dispay:none よりおしゃれに消えるコードたち */
    inset: 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease, visibility 0.5s ease;

    /* モーダル、オーバーレイを中央揃えに */
    display: flex;
    justify-content: center;
    align-items: center;
    /* そこから下のオーバーレイを上下左右に見せたい */
    padding: 20px;
}

/* SP クリックしたら表示 */
.our-philosophy-modal.is-open {
    /* dispay:block よりおしゃれに現れるコードたち */
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

/* オーバーレイ */
.our-philosophyーmodal__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

/* モーダル */
.our-philosophy-modal__inner {

    /* 閉じるボタンの基準・z-indexを扱いやすくする */
    position: relative;
    z-index: 1;

    background-color: var(--color-bg-light);
    width: min(90%, 560px);
    max-height: 80vh;
    overflow-y: auto;

    display: flex;
    padding: 60px 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;

    transform: translateY(16px) scale(0.95);
    opacity: 0;

    transition: transform 0.4s ease, opacity 0.4s ease;

}

.our-philosophy-modal.is-open .our-philosophy-modal__inner {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.our-philosophy-modal__title {
    color: var(--color-text-heading);
    text-align: center;
    font-family: var(--font-display-ja);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
}

.our-philosophy__img {
    display: block;
    width: 80px;
    height: auto;
}

.our-philosophy__text {
    color: var(--color-text-body);
    font-family: var(--font-body-ja);
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 0.06em;
}

.our-philosophy-modal__btn-close {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    
    cursor: pointer;
}

.our-philosophy-modal__close-icon img {
    display: block;
    width: 14px;
    height: auto;
}

.our-philosophy-modal__close-text {
    color: var(--color-text-muted);
    text-align: center;
    font-family: var(--font-body-ja);
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: 0.06em;
}



@media screen and (min-width: 768px) {
    
    .our-philosophy {
        padding-bottom: 130px;
    }
    
    .our-philosophy__pc {
        display: block;
    }

    .our-philosophy__sp {
        display: none;
    }
    
    .our-philosophy__head{
        padding: 90px 0 70px;
    }

    .our-philosophy__pc-wrapper {
        padding: 100px 6.9% 0 6.9%;
        max-width: 1200px;
        margin: 0 auto;

        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 100px;
    }

    .our-philosophy__row-block {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 6.9444vw;

        padding-bottom: 80px;
        border-bottom: 1px solid var(--color-text-muted);
    }
    
    .our-philosophy__content-block {
        width: clamp(35rem, 35vw, 50rem);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        gap: 30px;
        
    }

    .our-philosophy__circle {
        width: min(40vw, 250px);
        padding: 20px 20px 20px 20px;
        
    }

    .our-philosophy__img--01 {
        width: clamp(15rem, 16vw, 20rem);
    }

    .our-philosophy__img--02 {
        width: clamp(13rem, 13vw, 18rem);
    }

    .our-philosophy__img--03 {
        width: clamp(9rem, 10vw, 14rem);
    }

}



/* ===================
our-quality
====================== */

.our-quality {
    padding-bottom: 80px;
    background-color: var(--color-bg-accent);
}

.section__title--our-quality {
    background-image: url(../img/top-philosophy-and-quality-header-bg@2x.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;

    padding: 60px 0 40px;
}

.our-quality__wrapper {
    padding: 80px 5.1% 0 5.1%;
    margin: 0 auto;
    width: min(100%, 120rem);

    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 80px;
}

.our-quality__video {
    display: block;
    width: clamp(25rem, 90%, 60rem);
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.our-quality__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

.our-quality__block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;

    width: min(100%, 75rem);
}

.our-quality__block-title {
    color: var(--color-text-heading);
    font-family: var(--font-display-ja);
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.1em;
}

.our-quality__block-text {
    color: var(--color-text-body);
    font-family: var(--font-body-ja);
    line-height: 2;
    letter-spacing: 0.06em;
}


@media screen and (min-width: 768px) {

    .our-quality {
        padding-bottom: 130px;
        background-color: var(--color-bg-accent);
    }

    .section__title--our-quality {
        padding: 90px 0 70px;
    }

    .our-quality__wrapper {
        padding: 130px 5.1% 0 5.1%;
        gap: 100px;
    }

    .our-quality__content {
        gap: 100px;
    }

    .our-quality__block {
        gap: 60px;
    }

    .our-quality__block-title {
        font-size: 2.4rem;
    }
}



/* ===================
フローティングCTA
====================== */

.floating-cta {
    display: none;
}

@media screen and (min-width: 768px) {

    .floating-cta {

        /* 丸 */
        background-image: url(../img/floating-cta-circle-bg@2x.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        width: 120px;
        aspect-ratio: 1 / 1;
        border-radius: 50%;

        /* 中の文字中央に */
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 100;

        /* 画面右下に配置 */
        position: fixed;
        right: 30px;
        bottom: 30px;
    }

    .floating-cta__text {
        color: var(--color-text-muted);
        text-shadow: 0 4px 2.3px rgba(0, 0, 0, 0.1);
        font-family: var(--font-display-ja);
        font-size: 1.8rem;
        line-height: 1;
        letter-spacing: 0.08em;

        transition: color 0.4s ease;
    }

    .floating-cta:hover .floating-cta__text {
        opacity: 0.5;
    }


    /* 回る線 */
    .floating-cta::before{
        content: "";

        /* floating-ctaと重なるため */
        position: absolute;

        /* floating-ctaから内側に10pxの線の円 */
        inset: 10px;
        border-radius: 50%;
        border: 1px solid rgba(106, 106, 106, 0.5);

        /* 線の円を途中で切れてるように */
        border-bottom-color: transparent;

        animation: floating-cta-spin 16s linear infinite;
    }

    @keyframes floating-cta-spin {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }
}