@charset "UTF-8";
/*==========================
common
==========================*/
:root {
    --contentWidth: 91.4%;
    --contentPadding: 4.2%;
}

html {
    font-size: 62.5%;
}

body {
    font-family:
        'Noto Sans JP',
        Arial,
        Amiri;
    font-style: normal;
    color: #2D2D2D;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

.topic {
    color: #EEEEEE;
    text-align: center;
    font-family: Amiri;
    font-size: 2.8rem;
    line-height: 1;
    margin: 0 auto;
}

.section-title {
    text-align: left;
    font-family: Amiri;
    font-size: 4rem;
    line-height: 1;
}

.copy {
    text-align: left;
    font-family: Noto Sans JP;
    font-size: 2.2rem;
    line-height: 1.5;
}


/* common pc */
@media screen and (min-width:769px) {
    .topic {
        
        font-size: 3.2rem;
        line-height: 1;
    }

    .topic::after {
        margin: 32px auto 0;
    }

    .btn {
        width: 343px;
        height: 56px;
        font-size: 2.2rem;
    }
}

/*==========================
header
==========================*/
.header {
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    margin: 8px;
    padding: 0 4.2%;
}

.header__topic,
.nav__topic {
    color: #EEEEEE;
    font-family: Amiri;
    font-size: 2.4rem;
}

.nav__item {
    color: #ffffff;
    font-family: Amiri;
}

/* .nav初期表示 */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background:linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3)),
         url(../images/photo/nav_background.png);
    background-position: right top;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav__header {
    margin-top: 8px;
    padding: 0 4.2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__close-btn,
.header__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 51px;
    height: 34px;
    background-color: #2D2D2D;
    border-radius: 30px;
    padding: 0;
    border: none;
    cursor: pointer;
}

.nav__list-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav__list {
    margin-top: 67px;
}

.sns-nav__list {
    display: flex;
    gap: 30px;
}

.nav__item {
    font-size: 2.4rem;
    line-height: 1;
    margin-bottom: 48px;
    display: flex;
    align-items: center;
}

.nav__link {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav__label-en {
    font-size: 3.2rem;
}

.nav__label-ja {
    font-family: 'Noto Sans JP';
    font-size: 1.6rem;
}


/* .nav.active表示 */
.nav.active {
    transform: translateX(0);
}

/* .header__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 51px;
    height: 34px;
    background-color: #2D2D2D;
    border-radius: 30px;
    padding: 0;
    border: none;
    cursor: pointer;
} */



/* .header pc */
@media screen and (min-width:769px) {
    .header {
        align-items: center;
        height: 40px;
        margin: 0 auto;
        padding: 0 60px;
        background-color: rgba(45, 45, 45, 0.2);
    }

    .header__topic {
        font-size: 2.4rem;
    }

    .nav__header {
        display: none;
    }

    .nav {
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translate(0);
    }

    .nav__list-wrapper {
    flex-direction: row;
    align-items: flex-start;
    }

    .nav__list,
    .sns-nav__list {
        display: flex;
        margin: 0;
    }

    .nav__item {
        margin: 0 0 0 32px;
        text-align: center;
        font-size: 2rem;
        line-height: 1.3;
    }

    .sns-nav__list {
        margin-left: 30px;
        gap: 30px;
    }

    .nav__label-en {
    font-size: 2rem;
    }

    .nav__label-ja,
    .header__btn {
        display: none;
    }

}
/*.header pc end 769px */

/*==========================
main-visual
==========================*/
.main-visual {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    width: 100%;
    height: 543px;
}

.main-visual__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #EEEEEE;
    font-family: Amiri;
    font-size: 6.4rem;
    z-index: 2;
}

.slider div {
    height: 100%;
}

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

.slick-track {
    height: 543px !important;
}

.slick-slide,
.slick-slide img {
    height: 100%;
    object-fit: cover;
}

/* main-visual pc */
@media screen and (min-width:769px) {
    .main-visual {
        position: relative;
        height: 665px;
        margin-bottom: 6em;
    }

    .main-visual__logo {
        font-size: 10rem;
    }

    .slick-track {
        height: 665px !important;
    }

}
/*main-visual pc end 769px */


/*==========================
Concept
==========================*/
.section--concept {
    padding: 50px 20px;
}

.section-title--concept,
.concept-copy {
    margin-bottom: 30px;
}

.concept-copy {
    line-height: 35px;
}

.txt-wrap {
    margin-bottom: 60px;
}

.txt-wrap p {
    margin-bottom: 30px;
    line-height: 2;
    font-size: 1.6rem;
}

.fadein {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

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

.concept__img {
    width: 100%;
    height: 42em;
    object-fit: cover;
    object-position: 0 -103px;
}

/* Conceptt pc */
@media screen and (min-width:769px) {
    .section--concept {
         display: flex;
        flex-direction: row-reverse;
        align-items: center;
        gap: 5%;
        margin:0 10% 6em 0;
        padding: 0;
    }

    .concept__txt-wrap {
        flex: 0 0 45%;
        margin-top: 5em;
    }

    .concept__img-wrap  {
        flex: 0 0 55%;
    }

    .concept__img {
        height: 100%;
        object-position:right
    }
}
/*Concept pc end 769px */

/*==========================
Products
==========================*/
.section-title--products {
    margin:0 0 36px 20px;
}

.product {
    margin-bottom: 10px;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product--soap {
    background-color: #DAD5DB;
}

.product--oil {
    background-color: #E2D1E1;
} 

.product--pillow-mist {
    background-color: #D9C5D7;
}

.product__category {
    padding: 10px 38px;
    margin-bottom: 22px;
    background-color: #ffffff;
    border-radius: 7px;
    font-size: 1.6rem;
}

.product__name {
    margin-bottom: 39px;
    font-size: 2.2rem;
    font-weight: 600;
}

.product__img-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 39px;
    width: 69%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color: #F6F3F3;
}

.product__img-wrap  {
    width: 70%;
    height: auto;
    object-fit: cover;
}

.product__description {
    margin: 0 30px 39px;
    font-size: 1.6rem;
}

.product__cta {
    display: flex;
    align-items: baseline;
    padding: 11px 37px;
    gap: 6px;
    background-color: #2D2D2D;
    border-radius: 30px;
}

.product__btn {
    color: #ffffff;
    font-size: 1.6rem;
}

/* Products pc */
@media screen and (min-width:769px) {
    .section-title--products {
        margin: 0 0 1em 1em;
    }

    .product {
        width: calc((100% - 2%) / 3);
        margin: 0;
    }

    .products__list {
        display: flex;
        gap: 1%;
    }

    .product__img-bg {
        width: 72%;
    }

    .product__img-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        aspect-ratio: 1 / 1;
        overflow: hidden;
    }

    .product__description {
        width: 66%;
        line-height: 28px;
    }

    .product__cta {
        padding: 15px 23px;
        gap: 5px;
    }

    .spBr {
        display: none;
    }
}
/*Products pc end 769px */

/*==========================
Quality
==========================*/
.quality__content {
        display: flex;
        flex-direction: column;
        margin: 15% 6%;
}

.quality-copy {
    margin-bottom: 1em;
    min-width: 281px;
}

.quality__item {
    margin: 10px 0 30px;
    border-top: 0.5px solid #A0A0A0;
}

.quality__item:last-child {
    border-bottom: 0.5px solid #A0A0A0;
    padding-bottom: 30px;
}

.quality__header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    margin-top: 10px;
}

.quality__icon {
    display: inline-block;
    position: relative;
    width: 70px;
    height: auto;
    margin-right: 13px;
}

.quality__icon img {
    position: relative;
    z-index: 1;
}

.quality__circle {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 0;
    width: 4.5em;
    height: 4.5em;
    border-radius: 50%;
    background-color: #F6F1E9;
}

.quality__subtitle {
    font-size: 1.8rem;
}

.quality__toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0.8em;
    height: 0.8em;
    border-radius: 50%;
    border: 0.5px solid #A0A0A0;
    font-size: 27px;
    font-weight: 300;
}

.quality__subtitle {
    letter-spacing: 0.1em;
}

.quality__description {
    display: none;
    margin-left: 19px;
    font-size: 1.4rem;
    line-height: 175%;
}
    

/* Quality pc */
@media screen and (min-width:769px) {
    .quality__content {
        display: grid;
        align-items: start;
        grid-template-columns: 0.35fr 1fr;
        gap: 3%;
        margin: 15% 6%;
        max-width: 100%;
    }

    .quality-copy {
        grid-column: 1;
    }

    .quality__icon {
        margin-right: 8px;
    }

    .quality__subtitle {
        font-size: 2rem;
    }
}
/*Quality pc end 769px */

/*==========================
Reviews
==========================*/

.section--reviews {
    position: relative;
    /* max-width: 600px; */
    width: 100%;
    margin: 0 auto;
    padding: 40px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/photo/review_background.jpeg);
}

.reviews__inner {
    display: grid;
    justify-content: center;
    max-width: 1180px;
    position: relative;
    overflow: hidden;
    padding: 0 40px;
}

.reviews__wrapper {
    position: relative;
}

.reviews__list {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease;
    padding: 0;
    margin: 0;
    list-style: none;
    column-gap: 2em;
}

.review {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 44%;
    padding: 10px 18px;
    box-sizing: border-box;
    background-color: #ffffff;
}

.reviewer {
    margin-top: 10px;
    font-size: 0.9em;
}

/* 左右ボタン */
.next {
  position: absolute;
  width: 15px;
  height: 15px;
  right: 10px;
  bottom: 50%;
  z-index: 10;
  cursor: pointer;
  border-top: solid 3px #000;
  border-right: solid 3px #000;
  -webkit-transform: rotate(45deg) translateY(50%);
  transform: rotate(45deg) translateY(50%);
}

.prev {
  position: absolute;
  width: 15px;
  height: 15px;
  left: 25px;
  bottom: 50%;
  z-index: 10;
  cursor: pointer;
  border-top: solid 3px #000;
  border-right: solid 3px #000;
  -webkit-transform: rotate(-135deg) translateY(-50%);
  transform: rotate(-135deg) translateY(-50%);
}

/* ドットインジケータ */
.indicator_container {
    display: flex;
    justify-content: center;
    column-gap: 30px;
}

/*  インジケーター */
.indicator {
  display: flex;
  column-gap: 2em;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.indicator li {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    list-style: none;
    background-color: #fff;
    cursor: pointer;
}

.indicator li .active  {
    background-color: #2D2D2D;
}

.indicator li:first-of-type {
  background-color: #2D2D2D;
}

/* Reviews pc */
@media screen and (min-width:769px) {
    .review {
        padding: 20px;
    }
}

/*Reviews pc end 769px */

/*==========================
footer
==========================*/
.article__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 90px 0;
    background-color: #DAD5DB;
}

.nav__topic--footer {
    color: #2D2D2D;
    font-size: 3.6rem;
}

.nav__list--footer {
    display: flex;
    flex-direction: column;
}

.nav__item--footer {
    margin: 10px 0;
    padding-top: 20px;
    border-top: #2D2D2D solid 0.5px;
    color: #2D2D2D;
}

.nav__item--footer:last-child {
    border-bottom: #2D2D2D solid 0.5px;
    padding-bottom: 15px;
}

.nav__link--footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 6em;
    width: 100%;
}

.nav__label-en--footer,
.nav__label-ja--footer {
    display: block;
    white-space: nowrap;
}


/* footer pc */
@media screen and (min-width:769px) {
    .nav__topic--footer {
        margin-bottom: 35px;
        font-size: 4.6rem;
    }
    
    .nav__item--footer {
        padding-top: 20px;
        border-top: #2D2D2D solid 0.5px;
    }

    .nav__link--footer {
        gap: 15em;
    }

    .nav__label-en--footer {
        font-size: 3.2rem;
    }

    .nav__label-ja--footer {
        font-size: 1.8rem;
    }
}

/*footer pc end 769px */

/* ページトップボタン */
.pagetop-btn_04 {
  width: 52px;
  height: 52px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #e1dbd3;
  color: #fff;
  border-radius: 50%;
  border: 4px solid #fff;
  outline: 3px solid #e8e4dd;
  display: none;
  z-index: 1000;
}

.pagetop-btn_04::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -25%) rotate(45deg);
}

/*==========================
モーダル
==========================*/
.modal {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
}

.modal.show {
    display: flex;
    animation:fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
from { opacity:0; }
to { opacity:1; }
}

.modal__content {
    position: relative;
    padding: 2em;
    max-width: 600px;
    width: 90%;
    border-radius: 8px;
    background: #ffffff;
}

.modal__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-block: auto;
    padding-top: 80vh;
    max-height: calc(100vh - 10vh);
    overflow-y: auto;
    box-sizing: border-box;
}

.modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 3rem;
    cursor: pointer;
}


.modal__item {
    width: 53%;
    height: auto;
}

.modal__name {
    margin-bottom: 20px;
    font-size: 2rem;
}

.modal__price {
    margin-bottom: 25px;
    font-size: 3.4rem;
    font-weight: 700;
}

.modal__price span {
    font-size: 1.6rem;
}

.modal__cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 13px 0;
    margin-bottom: 25px;
    background-color: #FF7A85;
    border-radius: 13px;
}

.modal__cart {
    width: 30px;
    height: 30px;
}

.modal__btn {
    color: #ffffff;
    font-size: 1.8rem;
}

.item__detail {
    font-size: 1.8rem;
}

/* モーダル pc */
@media screen and (min-width:769px) {
    .modal__content {
        flex-direction: row;
        align-items: flex-start;
        padding: 20px;
    }
}

/*モーダル pc end 769px */