@charset "UTF-8";

* {
    margin: 0px;
    padding: 0px;
    color: #412E27;
}

.container {
    width: 100%;
    margin: 0 auto;
}

.body {
    margin: 0;
    padding: 0;

}



/*----- フォント -----*/
.caveat-font {
    font-family: "Caveat", cursive;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
}

.gruppo-font {
    font-family: "Gruppo", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.urbanist-font {
    font-family: "Urbanist", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.satisfy-font {
    font-family: "Satisfy", cursive;
    font-weight: 400;
    font-style: normal;
}

/*---------------------*/

/* パンくずリスト */
.JOUTSEN-breadcrumb {
    font-size: .8rem;
    margin: 2%;
}

.JOUTSEN-breadcrumb a {
    text-decoration: none;
}







.pinkchristmas-title {
    background-image: url(https://gigaplus.makeshop.jp/maam/JOUTSEN-PINKCHRISTMAS-LP/images/JOUTSEN-PINK.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 120px;
}

/* 下から上がっていく「フタ」レイヤー */
.pinkchristmas-title::before {
    content: "";
    position: absolute;
    inset: 0;
    /* ここをページ背景色に合わせる（例：#f7f3f5や#fffなど） */
    background-color: #ffffff;

    z-index: 0;

    /* 画面全体を覆った状態からスタート */
    transform: translateY(0%);
    transform-origin: bottom;
    animation: revealFromBottom 1.5s ease-out forwards;
}

/* 中のテキストはフタの上に乗せる */
.pinkchristmas-title>div {
    position: relative;
    z-index: 1;
}

/* 既存のテキスト類 */
.pinkchristmas-title-sub {
    font-size: 1.8rem;
    font-family: serif;
}

.brandlogo-img {
    padding: 20% 5% 0;
    width: 55%;
}


.pinkchristmas-container {
    text-align: center;
}


.pinkchristmas-title-p {
    padding: 30px 100px 6px;
    font-size: 1.5rem;
    font-weight: bolder;
    font-family: "Zen Kaku Gothic New";
}


.pinkchristmas-title-p2 {
    padding: 0 100px;
    font-family: "Zen Kaku Gothic New";
    font-size: 1.1rem;
    font-weight: bolder;
}

.pink {
    color: #ff006f;
    /* 好きなピンクに変更OK */
    font-weight: bold;
    /* 強調したい場合 */
}

.pinkchristmas-title-p3 {
    font-family: "Zen Kaku Gothic New";
    font-size: .9rem;
    text-align: left;
    margin: 0 auto;
    width: 350px;
    padding-top: 50px;
}

.pillow-details{
    border-bottom: 1px dotted;
}

/* 下から上へロールスクリーンが上がる動き */
@keyframes revealFromBottom {
    0% {
        transform: translateY(0%);
        /* 全面フタ */
    }

    100% {
        transform: translateY(-100%);
        /* 上に抜けてフタが消える */
    }
}










/* 行共通のアニメーション設定 */
.fade-line {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease-out forwards;
}

/* 行ごとに遅延をつける */
.line1 {
    animation-delay: 0.2s;
}

.line2 {
    animation-delay: 1s;
}

.line3 {
    animation-delay: 1.5s;
}

.line4 {
    animation-delay: 2s;
}

.line5 {
    animation-delay: 3.5s;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

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






/* キラキラタイトル本体：見た目はキラキラ側だけにする */
.sparkle-text {
    position: relative;
    display: inline-block;
    letter-spacing: 0.1em;
    line-height: 1.2;
    overflow: hidden;
    margin-left: 5%;
    color: #ff006f;
}

/* キラッと光る文字（見えているのはこっちだけ） */
.sparkle-text::after {
    content: attr(data-text);
    /* data-text の中身をそのまま表示 */
    position: absolute;
    inset: 0;
    /* 親とまったく同じ位置・サイズ */

    /* 文字の形だけに背景グラデーションを乗せる */
    color: transparent;
    background-image: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 1) 45%,
            rgba(255, 255, 255, 0.3) 60%,
            rgba(255, 255, 255, 0) 100%);
    background-size: 200% 100%;
    background-position: -120% 0;

    -webkit-background-clip: text;
    background-clip: text;

    pointer-events: none;

    animation: shineText 3.4s ease-in-out 0.8s infinite;
}

/* 光が文字の上をスーッと横切る */
@keyframes shineText {
    0% {
        background-position: -120% 0;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    70% {
        background-position: 120% 0;
        opacity: 1;
    }

    100% {
        background-position: 120% 0;
        opacity: 0;
    }
}



.kirikae {
    width: 100%;
    position: absolute;
    top: -300px;
}

.pinkchristmas-container2 {
    position: relative;
    top: 300px;
    background-color: #fdf2e9;
    padding-top: 200px;
}








.limitedcolor-intro {
    width: 500px;
    display: block;
    margin: 0 auto;
    opacity: 0;
    filter: blur(12px);
    /* ← ぼかした状態でスタート */
    transition: opacity 2s ease-out, filter 2s ease-out;
}

.limitedcolor-intro.show {
    opacity: 1;
    filter: blur(0);
    /* ← ぼかしが消えてクリアに */
}














.pinkchristmas-container3 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    min-height: 80vh;
    padding-top: 150px;
}

/* 画像ラッパー */
.pinkchristmas-item {
    position: relative;
    width: 38%;
    overflow: hidden;
}

/* 画像本体 */
.pinkchristmas-container3-img {
    display: block;
    width: 100%;
    height: auto;
}

/* ▼ 最初は “フタは開かない” 状態 */
.pinkchristmas-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #fdf2e9;
    transform: translateX(0);
    opacity: 1;
}

/* ▼ スクロールで class="animate" が付いた時に発火 */
.pinkchristmas-item.animate::before {
    animation: revealLR 1.8s ease-out forwards;
}

/* 時差（遅延） */
.item1.animate::before {
    animation-delay: 0.2s;
}

.item2.animate::before {
    animation-delay: 0.9s;
}

/* ロールスクリーン左→右 */
@keyframes revealLR {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}




.about-joutsen {
    text-align: center;
    padding: 100px 50px 100px;

}

.item-name {
    font-size: 1.5rem;
    border-bottom: 1px dotted;
    padding-bottom: 5px;
}

.about-item {
    font-size: 0.9rem;
    padding: 50px;
    text-align: left;
    border-bottom: 1px dotted;
}

.pillow-present {
    padding: 50px 0 200px;
}

.pillow-present-p {
    line-height: 1.5rem;
    font-size: .9rem;
}



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

.Size-Price-TextLeft {
    width: 370px;
    margin: 0 auto;
    text-align: left;
}

.text-large {
    font-size: 1.2rem;
    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: #ff97d2;
    color: #FFF;
}

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






.fadeup-hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.fadeup-show {
    opacity: 1;
    transform: translateY(0);
}








.kirikae2 {
    width: 100%;
    position: absolute;
    bottom: -450px;
    z-index: 3;
}






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

@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: 700px 0 200px;
    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);
}