@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&family=Noto+Sans+JP:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- PC/SP 表示切替ユーティリティ ---------- */
.is-sp {
    display: none !important;
  }
  
  .is-pc {
    display: block !important;
  }
  
  @media (max-width: 768px) {
    .is-sp {
      display: block !important;
    }
  
    .is-pc {
      display: none !important;
    }
  }

/* ---------- common ---------- */

html,
body {
    width: 100%;
    overflow-x: hidden;
    background-color: #fff;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
img {
    max-width: 100%;
    height: auto;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    /* sticky ヘッダー分、アンカー位置を下げる */
    scroll-padding-top: 100px;
  }
  
  @media (max-width: 768px) {
    html {
      scroll-padding-top: 16vw;
    }
  }
  body {
    /* 英字は Google Sans Flex、日本語は Noto Sans JP（グリフ単位で自動フォールバック） */
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: var(--ink);
    line-height: 1.7;
    background-color: #fbfbfe;
    margin: 0;
  }
  img{
    width: 100%;
  }



/* ---------- animation ---------- */
.fadeInUp{
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s ease, transform .8s ease;
}

.fadeInUp.is-show{
    opacity: 1;
    transform: translateY(0);
}
@keyframes float {

    0% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-8px) scale(1.05);
    }

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

/* =========================================================
   ヘッダー
========================================================= */
header{
    width: 100%;
    background-color: #ffffff;
    position: relative;
}
header img{
    width: 15%;
    display: block;
    margin: 0 auto;
    padding: 20px 0;
}
header .ofer{
    width: 55%;
    padding: 0;
}
header .top_fixed{
    display: none;
}

@media (max-width: 768px){
    header img{
        width: 50%;
    }
}

/* =========================================================
  mv
========================================================= */
#mv{
    position: relative;
    overflow: hidden;
}
#mv .back{
    width: 100%;
    height: auto;
    display: block;
}
.mv-inner{
    position: absolute;
    width: 35%;
    right: 8%;
    top: 11%;
    opacity: 0;
    transform: translateY(20px);
    animation: mvFadeIn 0.8s ease forwards;
    animation-delay: .5s;
}
.mv-inner a img{
    margin: 10px 0;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,.25));
    animation: float 3s ease-in-out infinite;
}
.mv-inner a img:hover{
    opacity: .5;
}

@media (max-width: 768px){
    .mv-inner{
        width: 90%;
        top: 2%;
        left: 50%;
        right: auto;
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
        animation: fadeInSp 0.8s ease forwards;
        animation-delay: 1s;
    }

    @keyframes fadeInSp {
        from {
            opacity: 0;
            transform: translateX(-50%) translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }
    }

    .mv-inner a img{
        display: none;
    }
}


/* アニメーション */
@keyframes mvFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* =========================================================
  SV
========================================================= */
#sv{
    position: relative;
    overflow: hidden;
    z-index: 600;
}
#sv .back{
    width: 100%;
    height: auto;
    display: block;
}
.sv-inner{
    position: absolute;
    width: 50%;
    top: 50%;
    left: 21%;
}
.sv-inner img{
    width: 60%;
}
.sv-inner p{
    font-size: 1vw;
    width: 70%;
    margin-top: 15px;
}
.sv-inner a img{
    margin: 10px 0;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,.25));
    animation: float 3s ease-in-out infinite;
}
.sv-inner a img:hover{
    opacity: .5;
}
@media (max-width: 768px){
    .sv-inner-sp{
        width: 90%;
        margin: 0 auto;
        margin-top: 10px;
    }
    .sv-inner-sp p{
        font-size: 4vw;
        line-height: 2;
    }
}
/* =========================================================
  worries
========================================================= */
#worries{
    width: 100%;
    background-color:#eceeed;
    margin-top: -50px;
    position: relative;
}
.next_arrow{
    position: absolute;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    width: 40px;
    animation: arrowDown 1.8s ease-in-out infinite;
}
.wrapper{
    width: 60%;
    margin: 0 auto;
    padding: 150px 0;
}
.wrapper .title{
    width: 80%;
    display: block;
    margin: 0 auto;
    margin-bottom: 5%;
}
.trouble-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.trouble-item{
    position: relative;
    display: block;
    overflow: visible;
    transform: translate(0,0);
    transition: .25s ease;
    z-index: 1;
}
.trouble-item.__1::after{
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: .25s ease;
    background-color: #537a61;
}
.trouble-item.__2::after{
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: .25s ease;
    background-color: #648fcc;
}
.trouble-item.__3::after{
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: .25s ease;
    background-color: #76ad8a;
}
.trouble-item.__4::after{
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: .25s ease;
    background-color: #bebae5;
}
.trouble-item:hover{
    transform: translate(10px,10px);
}
.trouble-item:hover::after{
    top: 0;
    left: 0;
    opacity: 0;
}
.worries-btn-img{
    display: block;
    width: 100%;
}
.worries_arrow{
    position: absolute;
    right: 5%;
    top: 50%;
    width: 12%;
    max-width: 56px;
    min-width: 36px;
    animation: arrowFloat 1.5s ease-in-out infinite;
}
@keyframes arrowFloat{
    0%{
        transform: translateY(-50%);
    }
    50%{
        transform: translateY(calc(-50% + 8px));
    }
    100%{
        transform: translateY(-50%);
    }
}
@media (max-width: 768px){
    #worries{
        margin-top: 10vw;
    }
    .wrapper{
        width: 90%;
        padding: 20vw 0;
    }
    .trouble-list{
        grid-template-columns: 1fr;
        gap: 7vw;
    }
    .worries_arrow{
        max-width: 80px;
    }
    .trouble-item.__2::after{
        background-color: #76ad8a;
    }
    .trouble-item.__3::after{
        background-color: #648fcc;
    }
}
/* =========================================================
  product01
========================================================= */
.top{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 63%;
    margin: 0 auto;
    margin-right: 20%;
    padding: 5% 0;
}
.top .product-image{
    width: 40%;
    display: block;
}
.top-text{
    width: 60%;
}
.top-text h4{
    background-color: #537a61;
    color: #fff;
    padding: .5vw;
    text-align: center;
    font-size: 1.5vw;
    font-weight: 600;
    letter-spacing: 1.2px;
    margin: 0;
}
.top-text-price{
    display: flex;
    justify-content: space-between;
    margin: 0;
}
.top-text-price .name{
    font-size: 1.7vw;
    color: #4d4d4d;
    font-weight: 450;
    margin: 10px 0;
}
.top-text-price .small{
    font-size: 1.2vw;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: 450;
    font-style: normal;
}
.top-text-price .price{
    font-size: 1.7vw;
    color: #4d4d4d;
    font-weight: 450;
    line-height: 1.8;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    margin: 10px 0;
}
.top-text .english-name{
    color: #537a61;
    font-size: 1.5vw;
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    margin: 0;
    margin-top: 10px;
    line-height: 1;
}
.top-text .japan-title{
    font-size: 1.5vw;
    margin: 0;
    color: #4d4d4d;
    font-weight: 500;
    letter-spacing: 1.2px;
}
.top-text .text{
    font-size: 1.1vw;
    letter-spacing: 1.2px;
    color: #4d4d4d;
    margin: 0;
}
.top-text .text .small{
    font-size: .8vw;
}
.product_worries{
    width: 100%;
    margin: 10px 0;
}
.top-text .text-last{
    font-size: 1.5vw;
    text-align: center;
    margin: 0;
    letter-spacing: 1.2px;
    color: #4d4d4d;
    font-weight: 600;
    line-height: 1.3;
}
.text-last .big-green{
    font-size: 1.8vw;
    color: #537a61;
}
.sp-only{
    display: none;
}

/* 強みコンテンツ */
.strengths-content{
    background-color: #759581;
    padding: 100px 0;
}
.strengths-wrapper{
    width: 60%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.strengths-inner{
    background: #fff;
    padding: 5%;
}
.strengths-inner img{
    display: block;
    width: 100%;
    margin-bottom: 20px;
}
.strengths-inner-title{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}
.strengths-inner-title img{
    width: 18%;
    flex-shrink: 0;
}
.strengths-inner-title h4{
    margin: 0;
    font-size: 1.8vw;
    font-weight: 500;
    line-height: 1.3;
    color: #4d4d4d;
}
.strengths-inner-title .green {
    color: #537a61;
}
.strengths-inner p {
    margin: 0;
    font-size: 1.1vw;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 1.2px;
    color: #4d4d4d;
}

/* おすすめの使用方法コンテンツ */
.howto-section{
    background-color: #fff;
    padding: 80px 0;
}
.howto-box{
    position: relative;
    width: 60%;
    margin: 0 auto;
}
.foam{
    position: absolute;
    top: -34%;
    right: -24%;
    width: 50%;
    pointer-events: none;
}
.howto-title{
    border: 2px solid #537a61;
    padding: 8px 0;
    text-align: center;
    font-size: 1.5vw;
    color: #4d4d4d;
    font-weight: 500;
    letter-spacing: 1.2px;
}
.step-list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 1vw;
}
.step-num{
    color: #537a61;
    font-size: 1.5vw;
    font-weight: 400;
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    margin: 0;
}
.step-main {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.step-main img{
    width: 20%;
    flex-shrink: 0;
}
.step-main h4{
    color: #537a61;
    font-size: 1.3vw;
    font-weight: 450;
    line-height: 1.4;
    margin: 0;
}
.step-main p{
    margin: 0;
    font-size: 1vw;
    line-height: 1.7;
    color: #4d4d4d;
}
.review-title{
    color: #537a61;
    font-size: 1.5vw;
    font-weight: 500;
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    margin: 0;
}
.review-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 12px;
}
.review-item {
    background: #f2f2f2;
    border-radius: 45px;
    padding: 2vw 3.5vw;
}
.review-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
    border-bottom: 1px solid #4d4d4d;
}
.review-head p {
    margin: 0;
    font-size: 1vw;
    font-weight: 500;
    color: #4d4d4d;
}
.review-head span {
    color: #f2d900;
    font-size: 1.5vw;
    letter-spacing: 2px;
    white-space: nowrap;
}
.review-item  p {
    margin: 0;
    font-size: 1.1vw;
    line-height: 1.7;
    color: #4d4d4d;
}
.review-note {
    text-align: right;
    font-size: .8vw;
    color: #4d4d4d;
}
.trial-btn {
    display: block;
    width: 30%;
    margin: 0 auto;
}
.trial-btn img{
    filter: drop-shadow(0 8px 20px rgba(0,0,0,.25));
    animation: float 3s ease-in-out infinite;
}
.trial-btn img:hover{
    opacity: .5;
}


@media (max-width: 768px){
    .pc-only{
        display: none;
    }
    .sp-only{
        display: block;
        width: 100%;
        margin: 0 auto;
    }
    .top{
        padding: 20vw 0 10vw 0;
    }
    .top .product-image{
        width: 50%;
    }
    .product-top-sp{
        width: 90%;
        margin: 0 auto;
    }
    .product-label{
        margin: 0;
        padding: 8px 10px;
        background: #537a61;
        color: #fff;
        font-size: 4.5vw;
        font-weight: 450;
        text-align: center;
        line-height: 1.5;
        width: 90%;
        margin: 0 auto;
    }
    .product-visual{
        position: relative;
    }
    .product-image{
        display: block;
        width: 100%;
    }
    .product-info {
        position: absolute;
        top: 9%;
        right: 6%;
        width: 54%;
        color: #4d4d4d;
    }
    .product-name{
        margin: 0 0 2px;
        font-size: 6.5vw;
        font-weight: 500;
        line-height: 1.25;
        letter-spacing: 1.2px;
    }
    .product-price-wrap{
        display: flex;
        align-items: center;
        gap: 30px;
        margin-bottom: 4px;
    }
    .product-price{
        margin: 0;
        font-size: 6vw;
        font-weight: 500;
        line-height: 1;
        font-family: "Manrope", sans-serif;
        font-optical-sizing: auto;
        font-style: normal;
    }
    .product-size{
        margin: 0;
        font-size: 5vw;
        line-height: 1;
        font-family: "Manrope", sans-serif;
        font-optical-sizing: auto;
        font-style: normal;
    }
    .product-en {
        color: #537a61;
        font-size: 4vw;
        font-weight: 500;
        letter-spacing: .08em;
        line-height: 1.2;
        font-family: "Josefin Sans", sans-serif;
        font-optical-sizing: auto;
        font-style: normal;
    }
    .product-copy {
        margin: 0 0 10px;
        font-size: 4.5vw;
        font-weight: 500;
        line-height: 1.45;
    }
    .product-desc {
        margin: 0;
        font-size: 3.5vw;
        font-weight: 400;
        line-height: 1.8;
    }
    .product-desc span {
        font-size: 2vw;
        font-weight: 400;
    }
    .product-worries {
        display: block;
        width: 90%;
        margin: 0 auto;
        margin-top: 18px;
    }
    .product-bottom-copy {
        margin: 18px 0 0;
        color: #4d4d4d;
        font-size: 4vw;
        font-weight: 500;
        line-height: 1.5;
        text-align: center;
    }
    .product-bottom-copy span {
        font-size: 5vw;
        color: #537a61;
    }
    
    /* 強みコンテンツ */
    .strengths-content{
        padding: 15vw 0;
    }
    .strengths-wrapper{
        width: 90%;
        grid-template-columns: 1fr;
        gap: 7.5vw;
    }
    .strengths-inner-title h4{
        font-size: 6vw;
    }
    .strengths-inner p{
        font-size: 3.5vw;
    }

    /* おすすめの使用方法コンテンツ */
    .howto-section{
        padding: 8vw 0;
    }
    .howto-box {
        width: 90%;
    }
    .foam {
        top: -15%;
        right: -20%;
        width: 60%;
    }
    .howto-title {
        font-size: 5vw;
        padding: 6px 0;
        margin-bottom: 4vw;
    }
    .step-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1vw;
        margin-bottom: 5vw;
    }
    .step-num {
        font-size: 4.2vw;
        margin-bottom: 6px;
    }
    .step-main {
        gap: 30px;
        align-items: flex-start;
    }
    .step-main img {
        width: 20%;
    }
    .step-main h4 {
        font-size: 5.1vw;
        line-height: 1.45;
        margin-bottom: 6px;
    }
    .step-main p {
        font-size: 3.5vw;
        line-height: 1.5;
    }
    .review-title {
        font-size: 5vw;
        font-weight: 400;
        margin-bottom: 2vw;
    }
    .review-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .review-item {
        border-radius: 20px;
        padding: 5vw 8vw;
    }
    .review-head {
        gap: 10px;
        margin-bottom: 8px;
    }
    .review-head p {
        font-size: 4vw;
    }
    .review-head span {
        font-size: 5vw;
        letter-spacing: 1px;
    }
    .review-item > p {
        font-size: 3.5vw;
        line-height: 1.5;
    }
    .review-note {
        font-size: 3vw;
        margin: 10px 0 32px;
    }
    .trial-btn {
        width: 90%;
    }
}


/* =========================================================
  product02
========================================================= */
.top.__2{
    margin-left: 20%;
}
.top.__2 .top-text h4{
    background-color: #76ad8a;
}
.top-text-price .name.__2{
    font-size: 1.5vw;
}
.top.__2 .top-text .english-name,
.top.__2 .text-last .big-green,
.strengths-inner-title .rightgreen,
.step-num.__2,
.step-main.__2 h4,
.review-title.__2
{
    color: #76ad8a;
}
.strengths-content.__2{
    background-color: #76ad8a;
}
.foam.__2{
    width: 30%;
    top: -17%;
}
.howto-title.__2{
    border: 2px solid #537a61;
}
.double-care {
    width: 100%;
}
.double-care-bg {
    display: block;
    width: 100%;
}
.double-step-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}
.double-step-num {
    color: #76ad8a;
    font-size: 1.5vw;
    font-weight: 400;
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    margin: 0;
}
.double-step-content {
    display: flex;
    align-items: center;
    gap: 18px;
}
.double-step-content > img {
    width: 20%;
    max-width: 70px;
    flex-shrink: 0;
}
.double-label {
    padding: .5vw 0 .3vw 0;
    background: #76ad8a;
    border-radius: 999px;
    color: #fff;
    font-size: 1.3vw;
    font-weight: 500;
    text-align: center;
    letter-spacing: .08em;
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    margin: 0;
    line-height: 1.2;
}
.double-text {
    margin: 0;
    color: #4d4d4d;
    font-size: 1.1vw;
    font-weight: 400;
}
.double-care_btn{
    display: block;
    width: 73%;
    margin: 3vw auto;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,.25));
}
.double-care_btn:hover{
    opacity: .5;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0));
}

@media (max-width: 768px){
    .top.__2{
        padding: 10vw 0;
        margin-left: 0;
    }
    .product-label.__2{
        font-size: 4vw;
        background: #76ad8a;
    }
    .product-en.__2,
    .product-bottom-copy.__2 span{
        color: #76ad8a;
    }
    .product-info.__2{
        right: auto;
        left: 6%;
    }
    .top.__2 .product-image {
        margin-left: auto;
        width: 50%;
    }
    .foam.__2{
        width: 46%;
        top: 0%;
    }
    .double-step-list{
        display: grid;
        grid-template-columns: 1fr;
        gap: 1vw;
        margin-bottom: 5vw;
    }
    .double-step-num{
        font-size: 4.2vw;
        margin-bottom: 6px;
    }
    .double-step-content > img{
        width: 20%;
        max-width: 300px;
    }
    .double-label{
        font-size: 5.1vw;
        padding: 2vw 3vw 1.8vw 3vw;
        line-height: 1;
        margin-bottom: 6px;
    }
    .double-text{
        font-size: 3.5vw;
    }
    .double-care_btn{
        width: 98%;
        margin-bottom: 8vw;
    }
}
/* =========================================================
  product03
========================================================= */
.top.__3{
    padding: 100px 0;
}
.top-text.__3 h4,
.strengths-content.__3,
.double-label.__3,
.product-label.__3{
    background-color: #83a6d6;
}
.top-text.__3 .english-name,
.text-last.__3 .big-green,
.strengths-inner-title .sky,
.step-num.__3,
.step-main.__3 h4,
.double-step-num.__3,
.review-title.__3,
.product-en.__3,
.product-bottom-copy.__3 span{
    color: #83a6d6;
}
.howto-title.__3{
    border: 2px solid #83a6d6;
    background-color: rgba(100, 143, 204, .1);
}
.foam.__3{
    width: 35%;
    top: -20%;
}
@media (max-width: 768px){
    .foam.__3{
        width: 50%;
        top: -3%;
    }
}

/* =========================================================
  product04
========================================================= */
.top.__4{
    margin-left: 20%;
}
.top-text.__4 h4,
.strengths-content.__4{
    background-color: #bebae5;
}
.top-text.__4 .english-name,
.text-last.__4 .big-green,
.purple,
.step-num.__4,
.step-main.__4 h4,
.review-title.__4{
    color: #bebae5;
}
.foam.__4{
    top: -27%;
    right: -20%;
    width: 42%;
}
.strengths-wrapper.is-3layout {
    grid-template-columns: repeat(2, 1fr);
}
.strengths-wrapper.is-3layout .strengths-inner-wide{
    grid-column: 1 / 3;
    display: flex;
    align-items: center;
    gap: 35px;
    padding: 30px;
}
.strengths-inner-right{
    width: 100%;
}
.strengths-wrapper.is-3layout .strengths-inner-wide > img{
    width: 42%;
    margin: 0;
    flex-shrink: 0;
}
.strengths-wrapper.is-3layout .strengths-inner-wide .strengths-inner-title{
    margin-bottom: 15px;
}
.strengths-wrapper.is-3layout .strengths-inner-wide h4{
    font-size: 1.8vw;
}

.strengths-wrapper.is-3layout .strengths-inner-wide p{
    font-size: 1.1vw;
    line-height: 1.8;
}
.strengths-inner-title.__4 img{
    width: 15.3%;
}
.howto-title.__4{
    border: 2px solid #bebae5;
    background-color: rgba(190, 186, 230, .1);
}



/* 紫テキスト */
.purple {
    color: #bebae5;
}
@media(max-width:768px){
    .strengths-wrapper.is-3layout{
        width: 90%;
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 8vw;
    }

    .strengths-wrapper.is-3layout .strengths-inner,
    .strengths-wrapper.is-3layout .strengths-inner-wide{
        grid-column: auto !important;
        display: block !important;
        width: 100%;
        padding: 6vw;
        box-sizing: border-box;
    }

    .strengths-wrapper.is-3layout .strengths-inner > img,
    .strengths-wrapper.is-3layout .strengths-inner-wide > img{
        width: 100% !important;
        margin: 0 0 5vw !important;
    }

    .strengths-inner-right{
        width: 100%;
    }

    .strengths-inner-title{
        display: flex;
        align-items: center;
        gap: 3vw;
        margin-bottom: 4vw;
    }

    .strengths-inner-title img{
        width: 16%;
        max-width: 60px;
        margin: 0;
        flex-shrink: 0;
    }

    .strengths-inner-title h4,
    .strengths-wrapper.is-3layout .strengths-inner-wide h4{
        font-size: 5.2vw;
        line-height: 1.45;
        letter-spacing: .5px;
    }

    .strengths-inner p,
    .strengths-wrapper.is-3layout .strengths-inner-wide p{
        font-size: 3.4vw;
        line-height: 1.8;
        letter-spacing: .5px;
    }
    
    .product-info.__4{
        right: auto;
        left: 6%;
    }
    .top.__4 .product-image{
        margin-left: auto;
    }
    .product-en.__4,
    .product-bottom-copy.__4 span{
        color: #bebae5;
    }
    .product-copy .small{
        font-size: 3vw;
    }
    .product-label.__4{
        background-color: #bebae5;
        font-size: 4.3vw;
    }
    .top.__4{
        margin-left: 0;
    }
    .foam.__4{
        top: -5%;
        right: -17%;
        width: 50%;
    }
}

/* =========================================================
  routine
========================================================= */
#routine {
    background: #fff;
    padding: 80px 0;
}
.routine-wrapper {
    width: 60%;
    margin: 0 auto;
}
.routine-mv {
    display: block;
    width: 100%;
}
.routine-lead {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin: 40px 0;
}
.routine-lead h3 {
    margin: 0;
    font-size: 2vw;
    line-height: 1.7;
    letter-spacing: 1.2px;
    font-weight: 500;
    color: #fff;
}
.routine-lead h3 span {
    display: inline-block;
    background: #537a61;
    padding: 0 10px;
}
.routine-lead p {
    margin: 0;
    width: 42%;
    font-size: 1.1vw;
    line-height: 1.8;
    color: #4d4d4d;
}
.routine-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6%;
}
.routine-column {
    position: relative;
    z-index: 1;
}
.routine-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: -1;
    pointer-events: none;
    opacity: .5;
}
.routine-column h4 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0 0 18px;
    padding: .7vw 1vw .5vw 1vw;
    border-radius: 999px;
    color: #fff;
    font-size: 1.5vw;
    font-weight: 700;
    letter-spacing: .08em;
}
.routine-column h4 {
    position: relative;
    z-index: 2;
}
/* ナイトだけ右寄せ */
.routine-column.night h4 {
    margin-left: auto;
    margin-right: 0;
}
/* 念のためinline-flexの幅を中身分にする */
.routine-column h4 {
    width: fit-content;
}
.routine-column h4 img {
    width: 10%;
    padding-bottom: 2%;
}
.routine-column.morning h4 {
    background: #78897e;
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 500;
}
.routine-column.night h4 {
    background: #92b1db;
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 500;
}
.routine-step {
    margin-bottom: 3%;
}
.step-label {
    margin: 0 0 4px;
    font-size: 1.7vw;
    font-weight: 500;
    color: #78897e;
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
.night .step-label {
    color: #92b1db;
}
.routine-step-main {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: -4%;
}
.routine-step-main.__end{
    margin-top: 5%;
}
.step-icon {
    width: 20%;
    max-width: 58px;
    flex-shrink: 0;
    padding-top: 4%;
}
.step-icon.__end{
    padding-top: 0;
    padding-bottom: 5%;
}
.product-label-img {
    display: block;
    width: 100%;
    margin-bottom: 6px;
}
.routine-step .title {
    margin: 0 0 4px;
    font-size: 1.7vw;
    font-weight: 500;
    line-height: 1.45;
    color: #4d4d4d;
    margin-top: -8%;
}
.routine-step-text {
    margin: 0;
    font-size: 1.1vw;
    line-height: 1.7;
    color: #4d4d4d;
}
.routine-btn {
    display: block;
    width: 45%;
    margin: 40px auto 0;
}
.routine-btn img {
    display: block;
    width: 100%;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,.25));
    animation: float 3s ease-in-out infinite;
}
.routine-btn:hover {
    opacity: .5;
}
.routine-step .title.green{
    color: #78897e;
}
.routine-step .title.blue{
    color: #92b1db;
}
.routine-step .title.rightgreen{
    color: #9fc6ad;
}
.routine-step .title.purple{
    color: #d2cfed;
}
.routine-step .title.__TX{
    margin-top: -13%;
 }
@media (max-width: 768px) {

    #routine {
        padding: 12vw 0;
        overflow: hidden;
    }
    .routine-wrapper {
        width: 100%;
        margin: 0 auto;
    }

    .routine-mv {
        width: 100%;
        margin: 0 auto;
    }

    .routine-lead {
        width: 90%;
        margin: 6vw auto 8vw;
        display: block;
    }

    .routine-list {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10vw;
    }

    .routine-column {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    .routine-lead h3{
        font-size: 6vw;
    }
    .routine-lead h3 span{
        margin-bottom: 1vw;
    }
    .routine-lead p{
        font-size: 3.5vw;
        width: 100%;
    }
    .routine-step .title{
        font-size: 5vw;
        margin-bottom: 3%;
    }
    .routine-step-main.__end{
        margin-top: 2%;
        padding-bottom: 5%;
    }
    .routine-step-main.__border{
        border-bottom: 1px solid #4d4d4d;
    }
    .routine-step .title.__TX{
       margin-top: -13%;
    }

    /* 背景画像は横幅いっぱい */
    .routine-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: -1;
        pointer-events: none;
    }

    /* ナイト見出しだけ右寄せ */
    .routine-column.night h4 {
        margin-left: auto;
        margin-right: 5%;
    }

    .routine-column h4 img {
        width: 4vw;
    }

    .routine-step {
        margin-bottom: 6vw;
    }

    .step-label {
        font-size: 3.4vw;
        margin-bottom: 1vw;
    }

    .routine-step-main {
        gap: 5vw;
    }
    .routine-step .title.__end{
        margin-top: 5%;
    }

    .step-icon {
        width: 20%;
        max-width: none;
    }

    .product-label-img {
        width: 100%;
        max-width: none;
        margin-bottom: 1.5vw;
    }

    .routine-step h5 {
        font-size: 3.6vw;
        line-height: 1.5;
    }

    .routine-step p {
        font-size: 3.5vw;
        line-height: 1.7;
    }

    .routine-btn {
        width: 90%;
        margin: 8vw auto 0;
    }
    .routine-step{
        width: 90%;
        margin: 0 auto 6vw;
    }

    .routine-column h4{
        display: inline-flex;
        align-items: center;
        justify-content: flex-start;
        width: fit-content;
        max-width: 90%;
        font-size: 5vw;
        padding: 2vw 4vw;
        margin: 0 0 5vw 5%;
    }

    .routine-column.night h4{
        margin-left: auto;
        margin-right: 5%;
    }
    .routine-column{
        display:block;
    }
    .routine-column.night h4{
        margin-left: auto;
        margin-right: 5%;
    }
    .routine-column h4{
        display: inline-flex;
        width: fit-content;
        margin: 0 0 5vw 5%;
    }

    .routine-column.night{
        text-align: right;
    }

    .routine-column.night h4{
        margin-left: 0;
        margin-right: 5%;
    }

    .routine-column.night .routine-step{
        text-align: left;
    }

}

/* =========================================================
  BEMARCHE
========================================================= */
#BEMARCHE{
    background-color: #eceeed;
    padding: 6% 0;
}
.BEMARCHE-wrapper{
    width: 60%;
    margin: 0 auto;
}
.BEMARCHE--logo{
    background-color: #fff;
    text-align: center;
    padding: 1% 0;
    margin-bottom: 3%;
}
.BEMARCHE--logo img{
    width: 30%;
}
#BEMARCHE h5{
    font-size: 1.8vw;
    font-weight: 500;
    text-align: center;
    margin: 2% 0;
    color: #4d4d4d;
}
#BEMARCHE p{
    font-size: 1vw;
    color: #4d4d4d;
}
@media (max-width: 768px){
    #BEMARCHE{
        padding: 10% 0;
    }
    .BEMARCHE-wrapper{
        width: 90%;
    }
    .BEMARCHE--logo{
        padding: 3% 0;
        margin-bottom: 5%;
    }
    .BEMARCHE--logo img{
        width: 50%;
    }
    #BEMARCHE h5{
        font-size: 5vw;
    }
    #BEMARCHE p{
        font-size: 3.5vw;
    }
}

/* =========================================================
  FAQ
========================================================= */
.FAQ-wrapper{
    width: 60%;
    margin: 0 auto;
    padding: 5% 0;
}
.FAQ-wrapper .title{
    font-size: 3vw;
    margin: 0;
    text-align: center;
    border-top: 2px solid #4d4d4d;
    border-bottom: 2px solid #4d4d4d;
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 1.5px;
}
.faq-list{
    margin-top: 3%;
}
.faq-question{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    font-size: 1.2vw;
    border-bottom: 1px solid #4d4d4d;
}
.faq-answer{
    font-size: 1.1vw;
    padding: 5% 0;
}

.faq-question p,
.faq-answer p{
    margin: 0;
}
.faq-question span{
    color: #3e5747;
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}
.faq-answer span{
    color: #76ad8a;
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}
.faq-answer{
    display: none;
    padding: 1% 0;
}
.faq-icon{
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: .3s ease;
}

/* 横棒 */

.faq-icon::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: #666;
    transform: translate(-50%,-50%);
}

/* 縦棒 */

.faq-icon::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 18px;
    background: #666;
    transform: translate(-50%,-50%);
}
.faq-item.active .faq-icon{
    transform: rotate(45deg);
}
@media (max-width: 768px){
    .FAQ-wrapper{
        padding: 10% 0;
        width: 90%;
    }
    .FAQ-wrapper .title{
        font-size: 6vw;
        border-top: 1px solid #4d4d4d;
        border-bottom: 1px solid #4d4d4d;
    }
    .faq-question{
        padding: 5% 0;
        font-size: 3.5vw;
    }
    .faq-answer{
        padding: 5%  0;
        font-size: 3vw;
    }
}

/* =========================================================
  attention list
========================================================= */
#attention-list{
    background-color: #f2f2f2;
}
.attention-list-wrapper{
    width: 60%;
    margin: 0 auto;
    padding: 2% 0;
}
.attention-list-wrapper p{
    font-size: 1.1vw;
}
@media (max-width: 768px){
    .attention-list-wrapper{
        width: 90%;
    }
    .attention-list-wrapper p{
        font-size: 2.5vw;
    }
}

/* =========================================================
 footer
========================================================= */
footer{
    background-color: #3e5747;
    color: #fff;
    font-size: .85vw;
    text-align: center;
    padding: 1% 0;
}
@media (max-width: 768px){
    footer{
        font-size: 2vw;
        padding-top: 5%;
        padding-bottom: 25%;
    }
}

/* =========================================================
  PC追従
========================================================= */

/* PC追従 */
.top_fixed{
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
}
.top_fixed.is-show{
    top: 0;
    opacity: 1;
    visibility: visible;
}
.top_fixed_inner{
    width: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 0 5%;
}
.top_fixed_logo{
    width: 100%;
    display: block;
}
.top_fixed_btn{
    width: 250px;
    display: block;
}
.top_fixed_logo{
    width: 15%;
    display: block;
    margin: 0;
}
.top_fixed_btn img{
    width: 100%;
    padding: 0;
}
.top_fixed_btn img:hover{
    opacity: .5;
}
@media (max-width: 768px){
    .bottom_fixed{
        position: fixed;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 95%;
        z-index: 9999;
    }
    .bottom_fixed a{
        display: block;
    }
    
    .bottom_fixed img{
        display: block;
        width: 100%;
        filter: drop-shadow(0 8px 20px rgba(0,0,0,.25));
        animation: float 3s ease-in-out infinite;
    }
}