@charset "UTF-8";

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

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

.towelket {
    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;
}

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




.title {
    padding: 180px 50px 170px;
    text-align: left;
}

.title-en {
    font-size: 4rem;
}

.title-en2 {
    line-height: 3.5rem;
    font-size: 2.3rem;
}

.title-en3 {
    font-size: 6rem;
    padding-top: 10px;
}

.title-jp {
    padding: 20px;
}

.towelket-title-caption {
    padding: 100px;
    font-size: .9rem;
}

.towelket-title-caption2 {
    padding: 500px 0;
    background-image: url(https://gigaplus.makeshop.jp/maam/towelblanket/images/towelblanket2-bg.png);
    background-size: cover;
    display: block;
    text-align: center;
}

.towelket-title-caption2-p {
    font-size: 1.5rem;
}

.towelket-title-caption2 a {
    text-decoration: none;
}


.ket-btn {
    display: flex;
    gap: 30px;
    justify-content: center;
    padding-top: 50px;
}

.ket-btn2 {
    display: flex;
    justify-content: center;
    padding-top: 50px;
    gap: 20px;
}

.ket-btn-flex {
    display: flex;
    flex-direction: column;
    gap: 36px;
}


/*ーーーーー 矢印 ーーーーー*/

.scroll-indicator-wrapper {
    position: relative;
    overflow: hidden;
    height: 100px;
    /* 矢印が完全に覆われている高さ */
    display: flex;
    justify-content: center;
    align-items: start;
    padding: 300px 0;
}

/* 矢印本体 */
.scroll-indicator {
    font-size: 4rem;
    color: #412E27;
    ;
    transform: translateY(-100%);
    transition: transform 1.2s ease-out;
    font-family: serif;
}

/* ロールスクリーンのように下にスライドして表示 */
.scroll-indicator-wrapper.show .scroll-indicator {
    transform: translateY(0);
}

.arrow {
    position: relative;
    display: inline-block;
    width: 4px;
    height: 201px;
    margin-right: 21.2px;
    border-radius: 9999px;
    background-color: #412E27;
}

.arrow::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(50% - 2px);
    width: 4px;
    height: 34px;
    border-radius: 9999px;
    background-color: #000000;
    transform: rotate(45deg);
    transform-origin: 50% calc(100% - 2px);
}

/*ーーーーーーーーーーーーーーー*/


.scroll-fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 1.2s ease-out;
    transition-delay: 1.2s;
    /* ← ここがポイント！2秒後に開始 */
}

.scroll-fade-left.show {
    opacity: 1;
    transform: translateX(0);
}




/*----- 文字をおしゃれに表示させるCSS -----*/

/* 全体用アニメーション */
.scroll-fade {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.5s ease-in-out;
}

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

/* 少し遅らせる */
.luxury-fade.delay {
    transition-delay: 0.6s;
}

/* タイピングエリア基本 */

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

.title-jp.typing {
    animation: typing 4s steps(40, end) forwards, blink-caret 0.8s step-end infinite;
    font-family: serif;
}

.luxury-fade.delay {
    transition-delay: 0.5s;
}

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




/* 背景とマスク */
.title {
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.title-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://gigaplus.makeshop.jp/maam/towelblanket/images/title-bg4.jpg');
    /* 画像URL */
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* マスク（白布） */
.mask {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #F2F2EC;
    z-index: 1;
    transform: translateY(0%);
    transition: transform 2s ease-in-out;
}

.mask.uncover {
    transform: translateY(-100%);
}

/* 英語タイトルフェード */
.luxury-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.4s ease-out;
}

.scroll-fade.show .luxury-fade {
    opacity: 1;
    transform: translateY(0);
}

.luxury-fade.delay {
    transition-delay: 0.5s;
}



/* 日本語タイトルタイピング */
.title-jp {
    display: inline-block;
    font-size: 1.2rem;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
    z-index: 3;
    position: relative;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink-caret {
    50% {
        border-color: transparent;
    }
}

/* テキストは最前面に */
.title h1,
.title h3 {
    position: relative;
    z-index: 3;
}



.towelket-container {
    text-align: center;
    background-color: #F2F2EC;
}

.towelket-container2 {
    text-align: center;
    margin: 50px 0 0;
    font-size: .9rem;

}

.towelket-container2-p {
    padding: 40px 90px;
    margin: 0 50px;
    text-align: left;
    border-bottom: 1px solid;
    line-height: 1.5rem;
}









.towelket2 {
    background-color: #d7d7d7;

}


.item-container {
    display: flex;
    justify-content: center;
    transition-delay: 10s;
    /* ← ここがポイント！2秒後に開始 */
}


.logo-img {
    width: 400px;
    background-color: #d7d7d7;
}

.logo-img2 {
    width: 220px;
}

.view {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.view2 {
    width: 40%;
    display: flex;
    padding: 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.view2-p {
    font-size: 4rem;
}

.view2-p2 {
    font-size: .9rem;
    line-height: 1.5rem;
    text-align: left;
    padding-top: 30px;
}

.view2-p3 {
    text-align: left;
    font-size: .9rem;
    line-height: 1.5rem;
}

.view2-p2-h1 {
    font-size: .9rem;
    padding-bottom: 20px;
    font-weight: normal;
}

.view2-p4 {
    padding: 10px 0 20px;
    text-align: center;
}


.view::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #d7d7d7;
    transform: translateX(0%);
    transition: all .8s ease-in-out .20s;
}

.view img {
    vertical-align: middle;
    transform: translateX(0%);
    width: 100%;
}

.view.js-on::after {
    transform: translateX(100%);
}



.vieew {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.vieew::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #F2F2EC;
    transform: translateX(0%);
    transition: all .6s ease-in-out .6s;
}

.vieew img {
    vertical-align: middle;
    transform: translateX(0%);
    width: 100%;
}

.vieew.js-on::after {
    transform: translateX(100%);
}


.zoom-1 img {
    width: 100%;
    height: auto;
    animation: animationZoom1 6s ease-in-out forwards;
}

@keyframes animationZoom1 {
    100% {
        transform: scale(1.1)
    }
}

.zoom-2 img {
    width: 100%;
    height: auto;
    animation: animationZoom2 8s ease-in-out forwards;
}

@keyframes animationZoom2 {
    100% {
        transform: scale(1.1)
    }
}



.towelket-title-caption3 {
    padding: 200px 100px 500px 0;
    background-image: url(https://gigaplus.makeshop.jp/maam/towelblanket/images/towelblanket3-bg.png);
    background-size: cover;
    display: block;
    text-align: right;
    background-color: #F2F2EC;
}

.towelket3 {
    background-color: #F2F2EC;
}

.towelket-title-caption4 {
    padding: 200px 100px 500px 0;
    background-image: url(https://gigaplus.makeshop.jp/maam/towelblanket/images/towelblanket2-bg.png);
    background-size: cover;
    display: block;
    text-align: right;
    background-color: #F2F2EC;
}

.towelket-title-caption4 a {
    text-decoration: none;
}



















.item-container2 {
    padding-top: 50px;
    text-align: center;
}


.item-container2 img {
    width: 300px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.item-container2 img.show {
    opacity: 1;
    transform: translateY(0);
}






.item-container3 {
    padding-top: 50px;
    text-align: center;
}

.item-container3 img {
    width: 30%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.item-container3 img.show {
    opacity: 1;
    transform: translateY(0);
    padding: 10px;
}








.view3 {
    text-align: center;
    padding-top: 200px;
}

.view3-p {
    font-size: 4rem;
}

.view3-p2 {
    padding: 10px 90px;
    text-align: center;
}

.view3-p3 {
    width: fit-content;
    margin: 30px auto;
    text-align: left;
    line-height: 1.8rem;
    font-size: .9rem;
}

.view3-p4 {
    padding: 10px 0 30px;
    text-align: center;
}








.cp_link {
    font-size: .9rem;
    position: relative;
    padding: 10px 20px;
    color: #412E27;
    z-index: 0;
    transition: .5s ease-in-out .1s;
    /*テキストは0.1遅れて色が変わる*/
}

.towelket-title-caption3 a {
    text-decoration: none;
}


/*hover後の表示*/
.cp_link::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #a18774;
    z-index: -1;
    transition: .5s;
}

.cp_link:hover {
    color: #fff;
    /*hover時の色*/
}

.cp_link:hover::after {
    width: 100%;
    /*hover時*/
}

.view4-cplink {
    padding: 200px 100px 500px 0;
    background-image: url(https://gigaplus.makeshop.jp/maam/towelblanket/images/towelblanket3-bg.png);
    background-size: cover;
    display: block;
    text-align: right;
}

.view4-cplink a {
    text-decoration: none;

}



.view4-cplink {
    padding: 0 100px 600px 0;
    background-image: url(https://gigaplus.makeshop.jp/maam/towelblanket/images/towelblanket4-bg.png);
    background-color: #d7d7d7;
    background-size: cover;
    display: block;
    text-align: right;
}



















.logo-img3 {
    width: 270px;
    padding-bottom: 50px;
}


.view4 {
    text-align: center;
    padding: 300px 0 200px;
    background-color: #d7d7d7;
    display: block;
}

.view4-fig {
    text-align: center;
    padding-top: 300px;
}

.view4-fig-p {
    font-size: 4rem;
}

.view4-fig-p2 {
    padding: 10px 90px;
    text-align: center;
}

.view4-container-p {
    padding: 40px 90px;
    margin: 0 50px;
    text-align: left;
    font-size: .9rem;
    border-bottom: 1px solid #888;
    line-height: 1.5rem;
}

.view4-container-p2 {
    width: fit-content;
    margin: 20px auto 70px;
    text-align: left;
    line-height: 2rem;
    font-size: .9rem;
}













/*----- ボタン -----*/

.button a {
    background: #412E27;
    border-radius: 9999px;
    position: relative;
    width: 146%;
    justify-content: space-around;
    padding: 10px 60px;
    text-decoration: none;
    color: #ffffff;
    line-height: 1.8;
    transition: 0.3s ease-in-out;
}

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

.button a:hover {
    background: #a18774;
    color: #FFF;
}

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


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














.item-container4 {
    display: flex;
    padding-top: 50px;
}

.item-container4 img {
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.item-container4 img.show {
    opacity: 1;
    transform: translateY(0);
}





.image-container {
    display: inline-block;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.image-container img {
    width: 300px;
    height: auto;
    transition: opacity 0.3s ease;
}



.bottom {
    background-color: #fff;
    padding: 20px 0 200px;
    text-align: center;
    font-size: .9rem;
    line-height: 2rem;
}

.button_solid014 a {
    background: #eee;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 220px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    box-shadow: 5px 5px 0 #412E27;
    border-radius: 50px;
}

.button_solid014 a:hover {
    background-color: #b3d9ff;
    box-shadow: 0 0 0;
    transform: translate(5px, 5px);
}