@charset "UTF-8";
/*-------------------------------------------header---------------------------------------------*/
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    z-index: 10;
}
#header .logo {
    width: 100%;
    max-width: 150px;
    position: absolute;
    top: 30px;
    left: 30px;
    line-height: 0;
    filter: brightness(0) invert(1);
    transition: filter 0.6s ease;
}
#header .logo a {
    display: block;
}
#header .menu-area {
    display: flex;
    align-items: center;
    gap: 30px;
    position: absolute;
    top: 30px;
    right: 50px;
}
#header .menu {
    display: flex;
    align-items: center;
    gap: 30px;
}
#header .menu a,
#header .header-cart {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    text-shadow: 4px 4px 6px rgba(0,0,0,0.3);
    transition: color 0.6s ease, text-shadow 0.6s ease;
}

/*-------------------------------------------header-FV以外---------------------------------------------*/
#header.is-dark .logo {
    filter: none;
}
#header.is-dark .menu li a,
#header.is-dark .header-cart {
    color: #222;
    text-shadow: none;
}

/*--------------------------------------------fv---------------------------------------------*/
#fv {
    position: relative;
    height: 500vh;
}
#fv .bg {
    position: fixed;
    inset: 0; background-size: cover;
    background-position: right top;
    background-repeat: no-repeat;
    transition: opacity 2.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity;
}
#fv .bg1 {
    background-image: url(../img/fv-bg-1.jpeg);
    opacity: 1;
}
#fv .bg2 {
    background-image: url(../img/fv-bg-2.jpeg);
    opacity: 0;
}
#fv .overlay {
    position: fixed;
    inset: 0;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    background: rgba(80, 70, 60, 0);
    pointer-events: none;
    transition: 0.3s ease;
}
#fv .text {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    transition: 1.2s ease;
}
#fv .text1,
#fv .text2 {
    left: 10%;
}
#fv .text3 {
    right: 10%;
    max-width: 450px;
}
#fv .text2,
#fv .text3 {
    opacity: 0;
}
#fv .text1 {
    font-size: 10rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-top: 15%;
    margin-left: -4%;
    color: #fff;
    text-shadow: 4px 4px 6px rgba(0,0,0,0.3);
}
#fv .text2 {
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
#fv .text3 {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.1em;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
#fv .text3 .line {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s ease;
    margin-bottom: 30px;
}
#fv .text3 .btn {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    background-color: #c8afa1;
    border-radius: 15px;
    padding: 10px 35px;
    display: inline-block;
    margin-top: 40px;
    text-shadow: none;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
#fv .text3 .line.show {
    opacity: 1;
    transform: translateY(0);
}
/* FV終了後（fixed解除） */
#fv.is-end .bg,
#fv.is-end .overlay {
    position: absolute;
    top: auto;
    bottom: 0;
    width: 100%;
    height: 100vh;
}

/* テキストも画面基準に合わせる */
#fv.is-end .text {
    position: absolute;
    top: auto;
    bottom: 50%;
    transform: translateY(50%);
}

/*--------------------------------------------introduction---------------------------------------------*/
#introduction {
    margin: 120px auto;
}
#introduction .inner {
    position: relative;
    height: 930px;
}
#introduction .text {
    position: relative;
    top: 190px;
    left: auto;
    right: auto;
    text-align: center;
    line-height: 1.8;
    z-index: 5;
}
#introduction .text p {
    margin-bottom: 60px;
}
#introduction .text .last{
    margin-bottom: 80px;
}
#introduction .link {
    position: relative;
    letter-spacing: 0.1em;
    margin-left: 150px;
}
#introduction .link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 1px;
    background-color: #ccc;
}
#introduction .link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 1px;
    background-color: #666;
    transform: scaleX(1);
    transform-origin: right;
    transition: transform 0.5s ease;
}
#introduction .link:hover::after {
    transform: scaleX(0);
}
#introduction .link .arrow {
    color: #666;
    opacity: 1;
    transition: 0.3s;
}
#introduction .link:hover .arrow {
    opacity: 0.4;
}
#introduction .img-box {
    position: relative;
    display: inline-block;
}
#introduction .img-box img {
    width: 100%;
    display: block;
}
#introduction .img-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(200, 180, 160, 0.3);
    pointer-events: none;
}
#introduction .img-1 {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 260px;
}
#introduction .img-2 {
    position: absolute;
    top: 80px;
    right: 0;
    max-width: 300px;
}
#introduction .img-3 {
    position: absolute;
    bottom: 80px;
    left: 80px;
    max-width: 200px;
}
#introduction .img-4 {
    position: absolute;
    bottom: 0;
    right: 60px;
    max-width: 260px;
}

/*-------------------------------------explanation------------------------------------*/
#explanation {
    background-color: #E8DCD6;
    padding: 80px 0;
    margin-bottom: 120px;
    overflow: hidden;
}
#explanation .top-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
}
#explanation .top-box .text {
    width: 50%;
    padding: 0 3% 0 0;
}
#explanation .top-box .text p {
    line-height: 1.8;
    margin-bottom: 20px;
}
#explanation .top-box .text p:last-child {
    margin-bottom: 0;
}
/*--------------------十字グラフ-----------------*/
.graph {
    position: relative;
    width: 300px;
    height: 200px;
    margin: 0 auto;
}
.axis {
    position: absolute;
    background: #222;
}
.x-axis {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
}
.y-axis {
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
}
.label {
    position: absolute;
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
    z-index: 2;
}
.label-1 {
    top: 5px;
    left: 130px;
    background-color: #F2DCDC;
    border-radius: 5px;
    padding: 10px;
    border: solid 1px #fff;
    display: block;
}
.label-2 {
    top: 105px;
    left: 5px;
    background-color: #EDE6DF;
    border-radius: 5px;
    padding: 10px;
    border: solid 1px #fff;
    display: block;
}
.value {
    position: absolute;
    font-size: 0.875rem;
    color: #222;
    z-index: 2;
}
.x-axis-text-left {
    top: 50%;
    transform: translateY(-50%);
    left: -90px;
}
.x-axis-text-right {
    top: 50%;
    transform: translateY(-50%);
    right: -75px;
}
.y-axis-text-top {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}
.y-axis-text-bottom {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}
/*--------------------2-line-----------------*/
#explanation .bottom-box {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 5%;
}
#explanation .bottom-box .title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}
#explanation .bottom-box .detail {
    line-height: 1.8;
    margin-bottom: 20px;
}

/*------------------------------step--------------------------------*/
#step {
    margin-bottom: 120px;
    overflow: hidden;
}
#step .detail {
    line-height: 1.8;
    margin-bottom: 80px;
}
#step .detail .bold {
    font-weight: 700;
    font-size: 1.15rem;
    margin: 0 3px;
    border-bottom: solid 1px #666;
}
#step .slider {
    display: none;
    overflow: hidden;
}
#step .slider.active {
    display: block;
}
#step .slider .slider-item {
    max-width: 450px;
    margin: 0 50px;
    text-align: center;
    position: relative;
}
#step .slider .slider-item .img {
    margin: 30px 0;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 50%;
}
#step .slider .slider-item .img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.5);
}
#step .slider .slider-item .title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 30px;
}
#step .slider .slider-item .link {
    text-align: right;
    margin: 40px 0 0 auto;
    display: block;
    cursor: pointer;
}
#step .slider .slider-item .link:hover {
    transform: translateX(-5%);
}
#step .slider .slider-item .circle {
    width: 90px;
    height: 90px;
    background-color: #F2DCDC;
    border: solid 1px #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    position: absolute;
    top: 0px;
    left: 0;
    z-index: 2;
}
#step .slider.slider-sensitive .slider-item .circle {
    background-color: #EDE6DF;
}
/*------------line-switch---------------*/
#step .line-switch {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}
#step .switch-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.25rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    color: #666;
}
#step .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #666;
    display: inline-block;
    transition: 0.3s;
}
#step .switch-btn.active {
    color: #222;
    font-weight: 500;
}
#step .switch-btn.active .dot {
    background-color: #666;
}
#step .switch-btn:hover {
    opacity: 0.7;
}

/*----------------------------trial------------------------------------*/
.page-deco {
    position: relative;
    width: 100%;
    overflow-x: clip;
}
#trial {
    margin-bottom: 120px;
}
#trial .inner {
    max-width: 900px;
    display: flex;
    align-items: center;
}
#trial .trial-moisture {
    margin: 0 auto 80px 0;
}
#trial .trial-sensitive {
    margin: 0 0 0 auto;
}
#trial .text {
    width: 350px;
}
#trial .trial-moisture .text {
    margin-right: 50px;
}
#trial .trial-sensitive .text {
    margin-left: 50px;
}
#trial .img {
    max-width: 500px;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}
#trial .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.3);
}
#trial .text .title {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 30px;
}
#trial .text .detail {
    line-height: 1.8;
    margin-bottom: 20px;
}
#trial .text .detail-2 {
    margin-bottom: 35px;
}
#trial .btn {
    font-weight: 500;
    color: #fff;
    background-color: #c8afa1;
    border-radius: 15px;
    padding: 10px 35px;
    display: inline-block;
    box-shadow: 0px 4px 0px 0px rgba(170, 156, 142, 0.5);
}
#trial .btn:hover {
    transform: translateY(5px);
    box-shadow: none;
}
#trial .sp-btn {
    display: none;
}
/*----------circle-----------*/
#trial .circle-1 {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: none;
    border: solid 1px #666;
    opacity: 0.2;
    position: absolute;
    top: -150px;
    left: -30px;
    z-index: -1;
}
#trial .circle-2 {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: none;
    border: solid 1px #666;
    opacity: 0.3;
    position: absolute;
    top: -190px;
    left: -90px;
    z-index: -2;
}
#trial .circle-3 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: none;
    border: solid 1px #666;
    opacity: 0.2;
    position: absolute;
    bottom: -80px;
    right: -20px;
    z-index: -2;
    overflow-x: hidden;
}

/*------------------------------------------products-------------------------------------------*/
.page-deco-2 {
    position: relative;
}
.page-deco-2 .circle-4 {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: none;
    border: solid 1px #666;
    opacity: 0.2;
    position: absolute;
    top: -120px;
    left: -10px;
    z-index: -2;
}
#products {
    margin-bottom: 120px;
}
#products .products-list {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-bottom: 50px;
}
#products .products-list.active {
    display: grid;
}
#products .item {
    padding: 50px;
    border-top: 1px solid #666;
    border-left: 1px solid #666;
    text-align: center;
}
#products .item:nth-child(3n+1) {
    border-left: none;
}
#products .item:nth-child(n+4) {
    border-bottom: 1px solid #666;
}
#products .item .name {
    font-size: 1.25rem;
    font-weight: 700;
}
#products .item .name-ja {
    font-size: 0.625rem;
    margin-bottom: 10px;
}
#products .item .price {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 20px;
}
#products .item .img {
    padding: 0 30px;
    margin-bottom: 30px;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}
#products .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.5);
}
#products .item .detail {
    margin-bottom: 30px;
}
#products .item .detail-btn {
    font-size: 0.875rem;
    border: solid 1px #222;
    border-radius: 30px;
    padding: 8px 35px;
    display: inline-block;
    transition: 0.5s;
}
#products .item .detail-btn:hover {
    background-color: #222;
    color: #fff;
}
#products .btn {
    font-weight: 500;
    color: #fff;
    background-color: #c8afa1;
    border-radius: 15px;
    padding: 10px 55px;
    display: block;
    width: fit-content;
    margin: 0 auto;
    box-shadow: 0px 4px 0px 0px rgba(170, 156, 142, 0.5);
}
#products .btn:hover {
    transform: translateY(5px);
    box-shadow: none;
}
/*------------products-switch---------------*/
#products .products-switch {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
}
#products .switch-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.25rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    color: #666;
}
#products .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #666;
    display: inline-block;
    transition: 0.3s;
}
#products .switch-btn.active {
    color: #222;
    font-weight: 500;
}
#products .switch-btn.active .dot {
    background-color: #666;
}
#products .switch-btn:hover {
    opacity: 0.7;
}

/*----------------------------------------popular-items---------------------------------*/
#popular-items {
    margin-bottom: 120px;
    background-color: #E8DCD6;
    padding: 80px 0;
}
#popular-items .sub-title {
    margin-bottom: 50px;
    line-height: 1.8;
}
#popular-items .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(199, 197, 197, 0.3);
    padding: 40px 60px;
    max-width: 760px;
    margin-bottom: 50px;
}
#popular-items .item-2 {
    margin: 0  0 50px auto;
}
#popular-items .item-3 {
    margin-bottom: 0;
}
#popular-items .item .img {
    width: 250px;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}
#popular-items .item .img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.5);
}
#popular-items .item .text {
    width: 350px;
    margin-left: 40px;
}
#popular-items .no {
    font-size: 0.875rem;
    background-color: #fff;
    border-radius: 5px;
    padding: 3px 8px;
    display: inline-block;
    margin-bottom: 30px;
}
#popular-items .name-title {
    display: flex;
    align-items: baseline;
}
#popular-items .name {
    font-size: 1.5rem;
    font-weight: 500;
    margin-right: 10px;
}
#popular-items .name-ja {
    font-size: 0.75rem;
    margin-left: 25px;
    margin-bottom: 30px;
    display: block;
}
#popular-items .price {
    font-size: 1rem;
    margin-left: 15px;
}
#popular-items .detail {
    line-height: 1.8;
    margin-bottom: 30px;
}
#popular-items .btn {
    font-weight: 500;
    color: #fff;
    background-color: #c8afa1;
    border-radius: 15px;
    padding: 10px 35px;
    display: inline-block;
    box-shadow: 0px 4px 0px 0px rgba(170, 156, 142, 0.5);
}
#popular-items .btn:hover {
    transform: translateY(5px);
    box-shadow: none;
}

/*-----------------------------------user-voice-------------------------------------*/
#user-voice {
    margin-bottom: 120px;
}
#user-voice .box {
    text-align: center;
    background-color: #C8AFA1;
    border-radius: 30px;
    max-width: 700px;
    padding: 50px 70px 30px;
    margin: 0 auto;
}
#user-voice .inner-text {
    transition: opacity 0.5s;
}
#user-voice .inner-text.fade-out {
    opacity: 0;
}
#user-voice .box .title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 50px;
}
#user-voice .box .comment {
    margin-bottom: 120px;
    line-height: 1.8;
}
#user-voice .box .line {
    width: 100%;
    max-width: 500px;
    height: 1px;
    background-color: #666;
    margin: 0 auto 30px;
}
#user-voice .dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}
#user-voice .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #bbb;
    transition: 0.3s;
}
#user-voice .dot.active {
    background: #333;
}
#user-voice .dot:hover {
    transform: scale(1.3);
}

/*--------------------------------------cta------------------------------------------*/
.cta {
    background-image: url(../img/bg-top.jpg);
    background-size: cover;
    background-position: center left;
    padding: 150px 0;
    text-align: center;
}
.cta .text-box {
    background-color: rgba(75, 65, 48, 0.3);
    padding: 50px 20px;
    text-align: center;
    display: block;
    margin: 0 auto;
    max-width: 520px;
}
.cta .title {
    margin-bottom: 20px;
    font-weight: 500;
    color: #fff;
}
.cta .detail {
    margin-bottom: 40px;
    line-height: 1.8;
    color: #fff;
}
.cta .btn {
    font-weight: 500;
    color: #fff;
    background-color: #c8afa1;
    border-radius: 15px;
    padding: 10px 35px;
    display: inline-block;
    box-shadow: 0px 4px 0px 0px rgba(170, 156, 142, 0.5);
}
.cta .btn:hover {
    transform: translateY(5px);
    box-shadow: none;
}

/*--------------------------------------faq------------------------------------------*/
#faq {
    padding: 120px 0;
    margin: 0 auto;
    background-color: #E8DCD6;
}
#faq .inner {
    max-width: 900px;
    margin: 0 auto;
}
#faq .faq-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 50px 0;
}
#faq .faq-box:hover {
    opacity: 0.5;
}
#faq .question {
    font-size: 1.375rem;
    margin-left: 20px;
    user-select: none;
}
#faq .more-btn {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: solid 1px #666;
    position: relative;
    margin-right: 20px;
    margin-left: 10px;
    flex-shrink: 0;
}
#faq .more-btn::before {
    content: "";
    width: 15px;
    height: 1px;
    background-color: #666;
    position: absolute;
    top: 11px;
    left: 4px;
}
#faq .more-btn::after {
    content: "";
    width: 1px;
    height: 15px;
    background-color: #666;
    position: absolute;
    top: 4px;
    left: 11px;
    opacity: 1;
    transition: 0.8s;
}
#faq .more-btn.active::after {
    opacity: 0;
}
#faq .answer {
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 0 0 50px 20px;
    display: none;
}
#faq .blank {
    display: inline-block;
    margin-left: 1em;
}
#faq .line {
    max-width: 100%;
    height: 1px;
    background-color: #666;
    opacity: 0.5;
}
#faq .line.last {
    margin-bottom: 80px;
}
#faq .btn {
    font-weight: 500;
    color: #fff;
    background-color: #c8afa1;
    border-radius: 15px;
    padding: 10px 35px;
    display: block;
    width: fit-content;
    margin: 0 auto;
    box-shadow: 0px 4px 0px 0px rgba(170, 156, 142, 0.5);
}
#faq .btn:hover {
    transform: translateY(5px);
    box-shadow: none;
}

/*----------------------------------bg-bottom--------------------------------*/
.bg-bottom {
    height: 900px;
    background-image: url(../img/top-parallax.jpeg);
    background-attachment: fixed;
    background-size: cover;
    background-position: top right;
    position: relative;
}
.bg-bottom p {
    font-size: 3rem;
    font-weight: 500;
    color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10%;
    z-index: 3;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
}


/*--------------------------------------------
1441px以上（大型PC）
---------------------------------------------*/
@media screen and (min-width: 1441px) {
    #fv .text2 {
        font-size: 3rem;
    }
    #fv .text3 {
        font-size: 1.5rem;
        max-width: none;
    }
}


/*---------------------------------------
--------------1100px-----------------------------*/
@media screen and (max-width: 1100px) {
/*--------------------------------------------fv---------------------------------------------*/
    #fv .text2 {
        top: 30%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 3rem;
        width: 90%;
        text-align: center;
    }
    #fv .text3 {
        top: 65%;
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
        font-size: 1.5rem;
        width: 90%;
        max-width: none;
        text-align: center;
    }

}


/*---------------------------------------
--------------タブレット-----------------------------*/
@media screen and (max-width: 900px) {

/*--------------------------------------------fv---------------------------------------------*/
    #fv .bg1 {
        background-image: url(../img/fv-bg-1-sp.jpeg);
        opacity: 1;
    }
    #fv .bg2 {
        background-image: url(../img/fv-bg-2-sp.jpeg);
        opacity: 0;
    }
    #fv .text2 {
        top: 30%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 2rem;
        width: 90%;
        text-align: center;
    }
    #fv .text3 {
        top: 65%;
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
        font-size: 1.15rem;
        width: 90%;
        max-width: none;
        text-align: center;
    }
    #fv .text1 {
        font-size: 6rem;
        margin-top: 40%;
        margin-left: -4%;
    }

/*--------------------------------------------introduction---------------------------------------------*/
    #introduction .img-1 {
        top: 0;
        left: 0;
        max-width: 240px;
    }
    #introduction .img-2 {
        top: 80px;
        right: 0;
        max-width: 250px;
    }
    #introduction .img-3 {
        bottom: 80px;
        left: 50px;
        max-width: 170px;
    }
    #introduction .img-4 {
        bottom: 0;
        right: 40px;
        max-width: 260px;
    }

/*-------------------------------------explanation------------------------------------*/
    #explanation .top-box {
        flex-direction: column;
    }
    #explanation .top-box .text {
        width: 100%;
        padding: 0;
        margin-bottom: 80px;
    }
/*--------------------十字グラフ-----------------*/
    .graph {
        transform: scale(1.25);
    }


/*----------------------------trial------------------------------------*/
    #trial .trial-moisture {
        margin: 0 auto 80px;
        flex-direction: column;
    }
    #trial .trial-sensitive {
        margin: 0 auto;
        flex-direction: column-reverse;
    }
    #trial .text {
        width: 100%;
        text-align: center;
    }
    #trial .trial-moisture .text {
        margin-right: 0;
    }
    #trial .trial-sensitive .text {
        margin-left: 0;
    }
    #trial .sp-btn {
        display: inline-block;
        margin-top: 40px;
    }
    #trial .text .pc-btn {
        display: none;
    }

/*------------------------------------------products-------------------------------------------*/
    #products .products-list {
        grid-template-columns: repeat(2, 1fr);
    }
    #products .item {
        padding: 50px;
        border-top: 1px solid #666;
        border-left: 1px solid #666;
        text-align: center;
    }
    #products .item:nth-child(3n+1) {
        border-left: 1px solid #666;
    }
    #products .item:nth-child(2n+1) {
        border-left: none;
    }
    #products .item:nth-child(n+4) {
        border-bottom: none;
    }
    #products .item:nth-child(n+5) {
        border-bottom: 1px solid #666;
    }

}





/*---------------------------------------
--------------スマートフォン-----------------------------*/
@media screen and (max-width: 767px) {

/*-------------------------------------------header---------------------------------------------*/
    #header .logo {
        max-width: 120px;
        top: 20px;
        left: 20px;
    }
    #header .menu-area {
        top: 20px;
        right: 30px;
    }
    #header .menu a {
        text-shadow: none;
    }
    #header .hamburger span {
        background-color: #fff;
    }
    #header.is-dark .hamburger span {
        background-color: #222;
    }

/*--------------------------------------------introduction---------------------------------------------*/
    #introduction {
        margin: 80px auto;
    }
    #introduction .inner {
        height: 950px;
    }
    #introduction .text {
        top: 250px;
    }
    #introduction .text p {
        margin-bottom: 40px;
    }
    #introduction .text .last{
        margin-bottom: 60px;
    }
    #introduction .img-1 {
        top: 0;
        left: 0;
        max-width: 200px;
    }
    #introduction .img-2 {
        top: 80px;
        right: 0;
        max-width: 220px;
    }
    #introduction .img-3 {
        bottom: 20px;
        left: 0;
        max-width: 160px;
    }
    #introduction .img-4 {
        bottom: 0;
        right: 0;
        max-width: 220px;
    }

/*-------------------------------------explanation------------------------------------*/
    #explanation {
        padding: 50px 0;
        margin-bottom: 80px;
    }
    #explanation .top-box {
        margin-bottom: 50px;
    }
    #explanation .top-box .text {
        margin-bottom: 50px;
    }
    #explanation .top-box .text p {
        margin-bottom: 10px;
    }
    /*--------------------十字グラフ-----------------*/
    .graph {
        transform: scale(1);
    }
    /*--------------------2-line-----------------*/
    #explanation .bottom-box {
        flex-direction: column;
        gap: 0;
    }
    #explanation .bottom-box .title {
        font-size: 1.75rem;
        margin-bottom: 15px;
    }
    #explanation .moisture-line {
        margin-bottom: 35px;
    }

/*------------------------------step--------------------------------*/
    #step {
        margin-bottom: 80px;
    }
    #step .detail {
        margin-bottom: 50px;
    }
    #step .slider .slider-item .link {
        margin: 30px 0 0 auto;
    }
    /*------------line-switch---------------*/
    #step .line-switch {
        margin-top: 50px;
    }





/*----------------------------trial------------------------------------*/
    #trial {
        margin-bottom: 80px;
    }
    #trial .btn {
        box-shadow: none;
    }
    #trial .trial-moisture {
        margin: 0 auto 50px;
    }
    #trial .text .title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 20px;
    }
    #trial .text .detail {
        margin-bottom: 10px;
    }
    #trial .text .detail-2 {
        margin-bottom: 25px;
    }
    #trial .sp-btn {
        margin-top: 30px;
    }

    /*----------circle-----------*/
    #trial .circle-1 {
        width: 180px;
        height: 180px;
        opacity: 0.1;
        top: -100px;
        left: -30px;
    }
    #trial .circle-2 {
        width: 180px;
        height: 180px;
        opacity: 0.2;
        top: -140px;
        left: -90px;
    }
    #trial .circle-3 {
        width: 150px;
        height: 150px;
        opacity: 0.1;
        bottom: -30px;
        right: -20px;
    }
    .page-deco-2 .circle-4 {
        width: 180px;
        height: 180px;
        opacity: 0.1;
        top: -120px;
        left: -40px;
    }

/*----------------------------------------popular-items---------------------------------*/
#products {
    margin-bottom: 80px;
}

/*----------------------------------------popular-items---------------------------------*/
    #popular-items {
        margin-bottom: 80px;
        padding: 50px 0;
    }
    #popular-items .sub-title {
        margin-bottom: 30px;
    }
    #popular-items .item {
        padding: 30px;
        margin-bottom: 30px;
    }
    #popular-items .item-2 {
        margin: 0  0 30px auto;
    }
    #popular-items .item .img {
        width: 50%;
    }
    #popular-items .item .text {
        margin-left: 30px;
        width: 50%;
    }
    #popular-items .no {
        margin-bottom: 20px;
    }
    #popular-items .name-title {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    }
    #popular-items .name {
        font-size: 1.25rem;
        margin-right: 0;
    }
    #popular-items .name-ja {
        font-size: 0.75rem;
        margin-left: 25px;
        margin-bottom: 20px;
    }
    #popular-items .price {
        font-size: 1rem;
        margin-left: 0;
        margin-bottom: 20px;
    }
    #popular-items .detail {
        margin-bottom: 20px;
        line-height: 1.4;
    }
    #popular-items .btn {
        box-shadow: none;
        font-size: 0.875rem;
        padding: 10px 35px;
    }

/*-----------------------------------user-voice-------------------------------------*/
    #user-voice {
        margin-bottom: 80px;
    }
    #user-voice .box {
        padding: 40px 50px 30px;
    }
    #user-voice .box .title {
        font-size: 1.25rem;
        margin-bottom: 30px;
    }
    #user-voice .box .comment {
        margin-bottom: 80px;
    }
    #user-voice .box .line {
        margin: 0 auto 30px;
    }

/*--------------------------------------faq------------------------------------------*/
    #faq {
        padding: 80px 0;
    }
    #faq .faq-box {
        padding: 35px 0;
    }
    #faq .question {
        font-size: 1.15rem;
    }
    #faq .answer {
        font-size: 1rem;
        margin: 0 0 35px 20px;
    }
    #faq .blank {
        margin-left: 0;
    }
    #faq .btn {
        box-shadow: none;
    }
    #faq .line.last {
        margin-bottom: 50px;
    }

/*----------------------------------bg-bottom--------------------------------*/
.bg-bottom {
    height: 700px;
    background-image: url(../img/top-parallax-sp.jpeg);
}
.bg-bottom p {
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 5%;
    z-index: 3;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
}




}
/*---------------------------------------
--------------極小-----------------------------*/
@media screen and (max-width: 520px) {

/*------------------------------------------fv-----------------------------------------------------*/
    #fv .text2 {
        top: 25%;
        font-size: 1.5rem;
        width: 95%;

    }
    #fv .text3 {
        top: 60%;
        font-size: 1rem;
        width: 95%;
    }
    #fv .text1 {
        font-size: 4.5rem;
    }


/*--------------------------------------------introduction---------------------------------------------*/
    #introduction .inner {
        height: 1000px;
    }
    #introduction .text {
        top: 230px;
    }
    #introduction .text p {
        margin-bottom: 40px;
    }
    #introduction .text .last{
        margin-bottom: 50px;
    }
    #introduction .link {
        margin-left: 100px;
    }
    #introduction .img-1 {
        top: 0;
        left: 0;
        max-width: 180px;
    }
    #introduction .img-2 {
        top: 80px;
        right: 0;
        max-width: 180px;
    }
    #introduction .img-3 {
        bottom: 20px;
        left: 0;
        max-width: 140px;
    }
    #introduction .img-4 {
        bottom: 0;
        right: 0;
        max-width: 200px;
    }

/*--------------------十字グラフ-----------------*/
    #explanation .top-box {
        margin-bottom: 20px;
    }
    #explanation .top-box .text {
        margin-bottom: 20px;
    }
    .graph {
        transform: scale(0.8);
    }


/*----------circle-----------*/
    #trial .circle-1 {
        width: 140px;
        height: 140px;
        opacity: 0.1;
        top: -80px;
        left: -30px;
    }
    #trial .circle-2 {
        width: 130px;
        height: 130px;
        opacity: 0.2;
        top: -100px;
        left: -70px;
    }
    #trial .circle-3 {
        width: 150px;
        height: 150px;
        opacity: 0.1;
        bottom: -10px;
        right: -50px;
    }
    .page-deco-2 .circle-4 {
        width: 130px;
        height: 130px;
        opacity: 0.1;
        top: -60px;
        left: -40px;
    }

/*------------------------------------------products-------------------------------------------*/
    #products {
        margin-bottom: 80px;
    }
    #products .products-list {
        grid-template-columns: 1fr;
    }
    #products .item {
        padding:  30px 50px;
        border-left: none;
    }
    #products .item:nth-child(3n+1) {
        border-left: none;
    }
    #products .item:nth-child(n+4) {
        border-bottom: none;
    }
    #products .item:last-child {
        border-bottom: 1px solid #666;
    }
    #products .btn {
        box-shadow: none;
    }
/*------------products-switch---------------*/
    #products .products-switch {
        margin: 20px 0 50px;
    }

/*----------------------------------------popular-items---------------------------------*/
    #popular-items .item {
        flex-direction: column;
        align-items: center;
    }
    #popular-items .item .img {
        width: 100%;
        margin-bottom: 30px;
    }
    #popular-items .item .text {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
    #popular-items .no {
        margin-bottom: 10px;
    }
    #popular-items .name-title {
    align-items: center;
    }
    #popular-items .name-ja {
        margin-bottom: 15px;
    }
    #popular-items .price {
        margin-bottom: 15px;
    }
    #popular-items .detail {
        margin-bottom: 15px;
    }

/*--------------------------------------cta------------------------------------------*/
    .cta {
        padding: 120px 0;
    }
    .cta .text-box {
        padding: 40px 20px;
    }
    .cta .title {
        margin-bottom: 30px;
    }
    .cta .detail {
        margin-bottom: 30px;
        line-height: 1.6;
    }
    .cta .btn {
        padding: 10px 35px;
        box-shadow: none;
    }

}



/*---------------------------------------
--------------グラフ用-----------------------------*/
@media screen and (max-width: 400px) {
    #explanation .top-box {
        margin-bottom: 0;
    }
    #explanation .top-box .text {
        margin-bottom: 0;
    }
    .graph {
        transform: scale(0.65);
    }
}