@charset "UTF-8";

:root {
    --bg: #e8e5df;
    --text: #2f2c28;
    --sub: #6f6a63;
    --line: #a9a298;
    --white: #ffffff;
    --card: #f4f1eb;
    --btn: #efebe4;
    --shadow: 0 14px 34px rgba(0, 0, 0, .06);
    --max: 1120px;
    --narrow: 860px;
    --serif: "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
    --sans: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    --duration: 1s;
    --stagger: .12s;
}

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


html {
    scroll-behavior: smooth;
}

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


body {
    margin: 0;
    background: #f9f1e8;
    color: var(--text);
    line-height: 1.95;
    letter-spacing: .04em;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

.cormorant-garamond {
    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
}

.klee-one-regular {
    font-family: "Klee One", cursive;
    font-weight: 500;
    font-style: normal;
}

.zen-kaku-gothic-new {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
}


img {
    width: 100%;
    display: block;
}

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


.wrap-narrow {
    margin: 0 auto;
}


.en {
    font-family: var(--serif);
    letter-spacing: .01em;
}

.breadcrumb {
    position: absolute;
    top: 30px;
    left: 50px;
    font-size: .9rem;
    font-family: math;
}

.section {
    padding: 300px 0 400px;
}

.section-sm {
    padding: 70px 0;
}

.center {
    text-align: center;
}

.fade-up,
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity var(--duration) ease, transform var(--duration) ease;
}

.fade-in {
    transform: none;
}

.is-visible {
    opacity: 1;
    transform: none;
}

.eyebrow {
    font-size: 20px;
    margin-bottom: 18px;
    letter-spacing: .08em;
}


.hero {
    padding-top: 100px;
    margin: 0 100px;
}

.hero h1 {
    margin: 0 0 36px;
    font-size: 2.5rem;
    line-height: 1.45;
    font-weight: 500;
}

.lead-copy {
    padding: 60px 20px 500px;
    text-align: center;
}

.lead-copy p {
    margin: 0 0 14px;
    font-size: 1.1rem;
}




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

/* 親要素に relative が必要 */
.mv,
.hero,
.fv,
.main_visual {
    position: relative;
}

/* Scroll全体 */
.scroll_down {
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    width: 24px;
    height: 180px;
    z-index: 10;
}

/* テキスト */
.scroll_down a {
    position: absolute;
    left: 50%;
    bottom: 180px;
    transform: translateX(-50%);
    color: #000;
    font-size: 14px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
}

/* 縦線 */
.scroll_down::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 1px;
    height: 160px;
    background: #000;
    opacity: 0.9;
}

/* 動く丸 */
.scroll_down::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 10px;
    height: 10px;
    margin-left: -5px;
    border-radius: 50%;
    background: #000;
    transform: translateY(-160px);
    animation:
        scrollDotMove 1.8s ease-in-out infinite,
        scrollDotFade 1.8s ease-out infinite;
}

@keyframes scrollDotMove {
    0% {
        transform: translateY(-160px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes scrollDotFade {
    0% {
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    70% {
        opacity: 0.9;
    }

    100% {
        opacity: 0;
    }
}










.profile-reveal {
    position: relative;
    width: 100%;
    padding: 100px 0;
    overflow: hidden;
    isolation: isolate;
}

/* 背景面 */
.profile-bg {
    position: absolute;
    inset: 0;
    background-image: url("../images/bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scaleY(0);
    transform-origin: center;
    z-index: 1;
    will-change: transform;
}

/* 中身 */
.profile-grid {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 40px;
    width: min(70%, 1100px);
    margin: 0 auto;
    opacity: 0;
    transform: translateY(36px);
    will-change: opacity, transform;
}

.profile-reveal.is-visible .profile-bg {
    animation: profileScreenOpen 1.8s cubic-bezier(.22, 1, .36, 1) forwards;
}

.profile-reveal.is-visible .profile-grid {
    animation: profileContentFade 1.2s ease forwards;
    animation-delay: 0.9s;
}

.profile-image {
    flex: 0 0 300px;
}

.profile-image img {
    width: 100%;
    display: block;
}

.small-label {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.8;
}

.profile-copy {
    flex: 1;
    min-width: 0;
}

.copy-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.5;
}

.copy-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #000;
    opacity: 0.7;
}



@keyframes profileScreenOpen {
    0% {
        transform: scaleY(0);
    }

    100% {
        transform: scaleY(1);
    }
}

@keyframes profileContentFade {
    0% {
        opacity: 0;
        transform: translateY(36px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.copy-title-p {
    line-height: 2rem;
}




.three-actions h2,
.point-section h2,
.closing h2,
.profile-last h2 {
    font-size: 1.4rem;
    font-weight: 500;
    margin: 0 0 200px;
}




.action-list {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 120px 20px;
}

.action-item {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 140px;
    min-height: 420px;
    justify-content: center;
}

/* =========================画像：ロールスクリーン========================= */
.action-image {
    position: relative;
    width: min(58vw, 620px);
    z-index: 1;

    /* 初期状態（右から隠す） */
    clip-path: inset(0 100% 0 0);
    opacity: 0;

    transition:
        clip-path 1.4s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.8s ease;
}

.action-image img {
    width: 100%;
    display: block;
}

/* 表示時 */
.action-item.is-visible .action-image {
    clip-path: inset(0 0 0 0);
    opacity: 1;
}

/* =========================テキスト：重なり＋遅れて出現========================= */
.action-text {
    position: absolute;
    left: 20%;
    top: 100%;
    transform: translate(-25%, -50%) translateX(80px);
    width: min(42vw, 420px);
    z-index: 2;
    padding: 30px 34px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(6px);
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.08em;
    opacity: 0;
    transition:
        transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s,
        opacity 1s ease 0.5s;
}

/* 表示 */
.action-item.is-visible .action-text {
    transform: translate(-25%, -50%) translateX(0);
    opacity: 1;
}


.divider-space {
    padding: 100px;
    font-size: 1.1rem;
    line-height: 4rem;
}

.candle {
    width: 300px;
    display: block;
    margin: 0 auto;
}

.story-copy {
    display: flex;
    gap: 20px;
    align-items: center;
}

.about-point1 {
    position: relative;
}

.point-title {
    font-size: 1.5rem;
}

.about-point1-text {
    padding: 0 50px;
    position: absolute;
    top: 15%;
    right: 10px;
    width: 50%;

}

.about-point2-text {
    padding: 0 100px 0 50px;
    position: absolute;
    top: 25%;
    left: 10px;
    width: 50%;

}

.about-point3-text {
    padding: 0 50px;
    position: absolute;
    top: 20%;
    right: 10px;
    width: 50%;
}


.about-point1-text-p {
    line-height: 2rem;
    font-size: 1rem;
    padding-top: 50px;
}

.point-badge {
    width: 80px;
}

.point-hero h3 {
    margin: 0 0 18px;
    font-size: clamp(26px, 2.5vw, 40px);
    font-weight: 500;
    line-height: 1.45;
}

.point-hero p {
    font-size: 14px;
    margin: 0 0 12px;
}

.point-hero img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    box-shadow: var(--shadow);
}


.products,
.products2,
.products3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    padding: 50px;
}

.product-card-category {
    font-size: 2rem;
    font-family: math;
    border-bottom: 1px solid;
    width: 50%;
    margin-top: 100px;
    padding: 0 100px;
}

.product-card-category2 {
    font-size: 2rem;
    font-family: math;
    border-bottom: 1px solid;
    width: 50%;
    margin-top: 20px;
    padding: 0 100px;
}

.product-card-category-p {
    margin: 0 auto;
    font-size: 1rem;
    width: 80%;

}


.product-card {
    display: block;
    transition: transform var(--transition), opacity var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    opacity: .5;
}

.product-card__thumb {
    border-radius: 14px;
    overflow: hidden;
    background: #ece6df;
    aspect-ratio: 4 / 5;
}

.product-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card__meta {
    padding-top: 14px;
}

.product-card__name {
    font-size: .9rem;
    line-height: 1.7;
    padding-bottom: 10px;
}

.product-card__desc {
    padding: 6px 0;
    color: var(--sub);
    font-size: 14px;
    line-height: 1.8;
    border-top: 1px dotted;
}


.point3-text {
    text-align: center;
    padding: 100px;
    font-size: 1rem;
}






.btn-wrap {
    text-align: center;
    margin-top: 36px;
}

.viewmore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 44px;
    padding: 0 24px;
    border: 1px solid #847d73;
    background: transparent;
    font-size: 12px;
    letter-spacing: .12em;
    transition: .35s ease;
    color: #333 !important;
}

.viewmore:hover {
    background: #dcd6cc;
    transform: translateY(-2px);
}







.point4-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
}

.point4-header h3 {
    font-size: 1.7rem;
}

.color-note {
    text-align: center;
    font-size: 1rem;
    margin: 100px 0 150px;
}

.color-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.color-card {
    background: rgba(255, 255, 255, .28);
    padding: 18px 18px 22px;
    box-shadow: var(--shadow);
    text-align: center;
}


.color-visual {
    aspect-ratio: 3 / 4.4;
    position: relative;
    overflow: hidden;
    margin-bottom: 14px;
}

.color-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.9);
}

.color-name {
    position: absolute;
    top: 25px;
    left: 16px;
    font-family: math;
    font-size: 2.5rem;
    line-height: 1;
    opacity: .9;
    border-bottom: 1px solid;
    padding-bottom: 15px;
}

.color-card .btn {
    min-width: 130px;
    height: 38px;
    margin-top: 10px;
    background: rgba(255, 255, 255, .35);
}

.color-card .btn:hover {
    background-color: #949494;
    color: #fff;
}

.color-yellow .color-name {
    color: #ebc232;
}

.color-pink .color-name {
    color: #f59eee;
}

.color-ivory .color-name {
    color: #fff7eb;
    text-shadow: 2px 2px 4px rgba(0, 0, 20, 0.3);
}

.color-gray .color-name {
    color: #8e9198;
}




.sleep-copy {
    text-align: center;
    padding-top: 150px;
    font-size: 1rem;
}








/* drawbox */

.about-fusionstore-p3 {
    position: relative;
    display: inline-block;
    padding: 35px 160px;
}

.text {
    width: 300px;
}

.text2 {
    font-size: .8rem;
}

.about-fusionstore-p3 .text {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .7s ease, transform .7s ease;
    transition-delay: 1.25s;
    position: relative;
    z-index: 2;
}

.about-fusionstore-p3 .box {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.about-fusionstore-p3 .rect {
    fill: none;
    stroke: rgba(0, 0, 0, 0.75);
    stroke-width: 1;
    vector-effect: non-scaling-stroke;
    stroke-linecap: square;
    stroke-linejoin: miter;
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    opacity: 0;
}

.about-fusionstore-p3.is-anim .box-outer .rect {
    opacity: 1;
    animation: draw 1.1s ease forwards;
}

.about-fusionstore-p3.is-anim .box-inner .rect {
    opacity: 1;
    animation: draw 1.1s ease forwards;
    animation-delay: .12s;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

.about-fusionstore-p3.is-anim .text {
    opacity: 1;
    transform: translateY(0);
}








.message {
    margin: 0 auto;
    text-align: center;
}

.massage-img {
    width: 500px;
}


.massage-p2 {
    font-size: 1rem;
    padding-top: 100px;
    width: 80%;
    margin: 0 auto;
}

.profile-last {
    border-top: 1px solid var(--line);
    padding: 150px;
}

.profile-last h3 {
    font-size: 1.2rem;
    margin: 0 0 5px;
    font-weight: 500;
    font-family: math;
}

.profile-last .name {
    margin: 0 0 26px;
    font-size: 1.1rem;
    line-height: 1.9;
}

.profile-last img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    box-shadow: var(--shadow);
    margin-bottom: 18px;
}

.profile-last {
    font-size: 1rem;
}







/* ------ ホームへ戻る button ------ */

.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);
}







/* ========================================
   iPad（1024px以下）
======================================== */
@media screen and (max-width: 1024px) {
    .breadcrumb {
        top: 20px;
        left: 24px;
        font-size: 0.8rem;
    }

    .section {
        padding: 180px 0 220px;
    }

    .hero {
        margin: 0 40px;
        padding-top: 90px;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.55;
    }

    .eyebrow {
        font-size: 17px;
    }

    .lead-copy {
        padding: 50px 20px 260px;
    }

    .lead-copy p {
        font-size: 1.05rem;
    }

    .scroll_down {
        bottom: 20px;
        height: 140px;
    }

    .scroll_down a {
        bottom: 140px;
        font-size: 12px;
    }

    .scroll_down::after {
        height: 120px;
    }

    .scroll_down::before {
        transform: translateY(-120px);
    }

    @keyframes scrollDotMove {
        0% {
            transform: translateY(-120px);
        }

        100% {
            transform: translateY(0);
        }
    }

    .profile-reveal {
        padding: 90px 24px;
    }

    .profile-grid {
        width: min(92%, 980px);
        gap: 28px;
    }

    .profile-image {
        flex: 0 0 240px;
    }

    .small-label {
        font-size: 13px;
    }

    .copy-title {
        font-size: clamp(20px, 2vw, 24px);
        margin-bottom: 20px;
    }

    .three-actions h2,
    .point-section h2,
    .closing h2,
    .profile-last h2 {
        margin: 0 0 110px;
        font-size: 1.2rem;
        line-height: 1.9;
    }

    .action-list {
        padding: 80px 20px;
    }

    .action-item {
        min-height: 340px;
        margin-bottom: 100px;
    }

    .action-image {
        width: min(60vw, 540px);
    }

    .action-text {
        left: 18%;
        width: min(40vw, 340px);
        padding: 22px 24px;
        font-size: 14px;
        line-height: 1.9;
        transform: translate(-25%, -50%) translateX(60px);
    }

    .action-item.is-visible .action-text {
        transform: translate(-25%, -50%) translateX(0);
    }

    .divider-space {
        padding: 60px 30px;
        font-size: 1rem;
        line-height: 2.8;
    }

    .candle {
        width: 220px;
    }

    .story-copy {
        gap: 14px;
    }

    .point-badge {
        width: 65px;
    }

    .point-title {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .about-point1-text,
    .about-point2-text,
    .about-point3-text {
        width: 52%;
        padding: 0 24px;
    }

    .about-point1-text {
        top: 14%;
        right: 0;
    }

    .about-point2-text {
        top: 18%;
        left: 0;
        padding: 0 24px;
    }

    .about-point3-text {
        top: 14%;
        right: 0;
    }

    .about-point1-text-p {
        font-size: .9rem;
        line-height: 1.9;
        padding-top: 26px;
    }

    .products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
        padding: 130px 30px 90px;
    }

    .products2 {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
        padding: 130px 30px 90px;
    }

    .products3 {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 30px;
        padding: 80px 50px;
    }

    .product-card__name {
        font-size: 0.95rem;
    }

    .product-card__desc {
        font-size: 13px;
    }

    .point3-text {
        padding: 70px 30px;
        font-size: .9rem;
        line-height: 2;
    }

    .point4-header h3 {
        font-size: 1.5rem;
    }

    .color-note {
        font-size: .9rem;
        margin: 70px 0 100px;
        padding: 0 20px;
    }

    .color-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .color-name {
        font-size: 2rem;
    }

    .sleep-copy {
        padding-top: 100px;
        font-size: 1rem;
        line-height: 2;
    }

    .about-fusionstore-p3 {
        padding: 24px 80px;
    }

    .massage-img {
        width: 360px;
        max-width: 100%;
        margin: 0 auto;
    }

    .massage-p2 {
        width: 84%;
        padding-top: 60px;
        font-size: .9rem;
        line-height: 2.1;
    }

    .profile-last .name {
        font-size: 1rem;
    }

    .profile-last {
        padding: 100px 30px;
    }

    .profile-last-p {
        font-size: .9rem;
    }

    .circle_btn05 {
        margin: 40px 30px 80px 0;
    }
}


/* ========================================
   iPhone（480px以下）
   PCの動き感を残しつつスマホ用に圧縮
======================================== */
@media screen and (max-width: 480px) {
    .breadcrumb {
        position: absolute;
        top: 14px;
        left: 10px;
        font-size: 0.72rem;
        z-index: 20;
    }

    .section {
        padding: 300px 0 130px;
    }

    .hero {
        margin: 0;
        padding-top: 50px;
    }

    .eyebrow,
    .hero h1 {
        display: none;
    }

    .hero-main img {
        content: url("../images/sangalo-sp2.jpg");
    }

    .lead-copy {
        padding: 100px 16px 160px;
    }

    .lead-copy p {
        font-size: 0.9rem;
        line-height: 2.7;
        text-align: left;
    }

    .lead-copy p br {
        display: none;
        padding: 100px 16px 160px;
    }



    .scroll_down {
        height: 95px;
        bottom: -100px;
    }

    .scroll_down a {
        bottom: 95px;
        font-size: 10px;
    }

    .scroll_down::after {
        height: 78px;
    }

    .scroll_down::before {
        width: 8px;
        height: 8px;
        margin-left: -4px;
        transform: translateY(-78px);
    }

    @keyframes scrollDotMove {
        0% {
            transform: translateY(-78px);
        }

        100% {
            transform: translateY(0);
        }
    }

    .profile-reveal {
        padding: 70px 16px;
    }

    .profile-grid {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 22px;
        opacity: 0;
        transform: translateY(36px);
        margin-top: 200px;
    }

    .profile-image {
        flex: none;
        width: 80%;
        margin: 0 auto;
    }

    .small-label {
        font-size: 12px;
        line-height: 1.7;
        text-align: center;
    }

    .copy-title {
        display: block;
        font-size: 1.2rem;
        line-height: 1.8;
        margin: 50px 0;
        text-align: center;
    }

    .copy-title::after {
        display: none;
    }

    .profile-copy p {
        font-size: 0.9rem;
        line-height: 2.5;
        text-align: left;
        padding: 0 10px;
    }

    .three-actions h2,
    .point-section h2,
    .closing h2,
    .profile-last h2 {
        font-size: 1rem;
        margin: 0 0 60px;
        line-height: 1.9;
        padding: 0 16px;
    }

    .action-list {
        padding: 50px 0 20px;
    }

    .action-item {
        min-height: 250px;
        margin-bottom: 70px;
        justify-content: flex-end;
    }

    .action-image {
        width: 82%;
    }

    .action-text {
        left: 0;
        top: 95%;
        transform: translate(0, -50%) translateX(40px);
        width: 58%;
        padding: 14px 10px;
        font-size: 12px;
        line-height: 1.85;
        letter-spacing: 0.05em;
        backdrop-filter: blur(4px);
    }

    .action-item.is-visible .action-text {
        transform: translate(0, -50%) translateX(0);
    }

    .divider-space {
        padding: 20px 40px 40px;
        font-size: 0.9rem;
        line-height: 2.3;
    }

    .candle {
        width: 140px;
    }

    .about-point1 {
        position: relative;
    }

    .point-img {
        content: url("../images/vivace-small.jpg");
    }

    .point-img2 {
        content: url("../images/ARMONIA-sp.jpg");
    }

    .point-img3 {
        content: url("../images/pluto-sp.jpg");
    }

    .story-copy {
        gap: 10px;
    }

    .point-badge {
        width: 46px;
        flex-shrink: 0;
    }


    .point-title {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .about-point1-text,
    .about-point2-text,
    .about-point3-text {
        position: absolute;
        width: 88%;
        padding: 50px 16px;
        background: rgb(255 255 255 / 70%);
        backdrop-filter: blur(5px);
    }

    .about-point1-text {
        top: 50%;
        bottom: -300px;
    }

    .about-point2-text {
        top: 50%;
        bottom: -120px;
    }

    .about-point3-text {
        top: 50%;
        bottom: -150px;
    }

    .product-card-category {
        font-size: 1.45rem;
        width: 80%;
        margin-top: 200px;
        padding-left: 30px;
    }

    .product-card-category2 {
        font-size: 1.45rem;
        width: 80%;
        margin-top: 20px;
        padding-left: 30px;
    }

    .product-card-category-p {
        font-size: .9rem;
        width: 85%;
        line-height: 2.5rem;
    }

    .about-point1-text-p {
        padding-top: 16px;
        font-size: 0.9rem;
        line-height: 2.3;
    }


    .products {
        grid-template-columns: 1fr 1fr;
        gap: 50px 10px;
        padding: 400px 16px 60px;
    }

    .products2 {
        grid-template-columns: 1fr 1fr;
        gap: 50px 10px;
        padding: 80px 16px 60px;
    }

    .products3 {
        grid-template-columns: 1fr 1fr;
        gap: 50px 10px;
        padding: 100px 16px 60px;
    }

    .product-card__meta {
        padding-top: 5px;
    }

    .product-card__name {
        font-size: 0.7rem;
        line-height: 1.8;
        padding-top: 5px;
    }

    .product-card__desc {
        font-size: 12px;
        line-height: 1.8;
    }

    .point3-text {
        padding: 240px 16px 10px;
        font-size: 0.9rem;
        line-height: 2;
        text-align: left;
    }

    .point4-header {
        gap: 10px;
        margin-bottom: 18px;
    }

    .point4-header h3 {
        font-size: 1.15rem;
        line-height: 1.7;
        text-align: center;
    }

    .color-note {
        font-size: 0.9rem;
        line-height: 2;
        text-align: left;
    }

    .color-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px 10px;
    }

    .color-card {
        padding: 14px 14px 18px;
    }

    .color-name {
        top: 14px;
        left: 12px;
        font-size: 2rem;
        padding-bottom: 5px;
    }

    .sleep-copy {
        padding: 80px 16px 0;
        font-size: 0.9rem;
        line-height: 2;
        text-align: left;
    }


    .about-fusionstore-p3 {
        padding: 18px 16px;
    }

    .massage-img {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .massage-p2 {
        width: 100%;
        font-size: 0.9rem;
        padding: 100px 20px;
        line-height: 2;
        text-align: left;
    }


    .profile-last {
        padding: 80px 16px 200px;
    }

    .profile-last h3 {
        font-size: 1rem;
    }

    .profile-last .name,
    .profile-last-p {
        font-size: 0.9rem;
        line-height: 1.9;
    }

    .circle_btn05 {
        justify-content: right;
        margin: 30px 20px 100px;
    }

    .circle_btn05 .circle_btn05-txt {
        font-size: 14px;
    }
}