body {
    color: #444;
    background-color: #e2d8cf;
    font-family: 'kozuka-gothic-pr6n', '小塚ゴシック Pro', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: .8rem;
    -webkit-text-size-adjust: 100%;
    line-height: 1.428;
    margin: 0 auto;
    padding: 0;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    display: flex;
    flex-direction: column;
}

html>body {
    font-size: 10px;
    font-size: .85rem;
}

*+html body {
    font-family: 'kozuka-gothic-pr6n', '小塚ゴシック Pro', sans-serif;
    margin: 0;
    padding: 0;
}

html,
* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'MyFontFamily';
    src: url('myfont-webfont.eot?')format('eot'), url('myfont-webfont.woff')format('woff'), url('myfont-webfont.ttf')format('truetype'), url('myfont-webfont.svg#svgFontName')format('svg');
}

@font-face {
    font-family: 'icomoon';
    src: url('../fonts/icomoon/icomoon.eot');
    src: url('../fonts/icomoon/icomoon.eot?#iefix') format('embedded-opentype'), url('../fonts/icomoon/icomoon.woff') format('woff'), url('../fonts/icomoon/icomoon.ttf') format('truetype'), url('../fonts/icomoon/icomoon.svg#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
}

@media print {
    a[href]:after {
        content: none;
    }

    abbr[title]:after {
        content: none;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 300;
}

h2,
.h2 {
    font-size: 30px;
    font-size: 2rem;
}

h3,
.h3 {
    font-size: 24px;
    font-size: 1.75rem;
}

h4,
.h4 {
    font-size: 18px;
    font-size: 1.5rem;
}

h5,
.h5 {
    font-size: 14px;
    font-size: 1.25rem;
}

h6,
.h6 {
    font-size: 12px;
    font-size: 1rem;
}

p,
.p,
li,
dt,
dd {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    outline: 0;
    color: #444;
    transition: all 0.5s ease;
}

a:hover {
    transition: all 0.5s ease;
    opacity: 0.5;
}

a:link,
a:visited,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    border: 0;
    margin: 0 auto;
    vertical-align: top;
}

a>img {
    display: block;
}

ul {
    zoom: 100%;
}

ul:after {
    content: "";
    clear: both;
    height: 0;
    display: block;
    visibility: hidden;
}

li {
    list-style: none;
    margin: 0;
    padding: 0;
}

p,
a {
    /* font-size: 0.8rem; */
    font-size: clamp(0.7rem, 0.645rem + 0.27vw, 0.85rem);
}


/* Font */
.MinervaModern-Regular {
    font-family: "minerva-modern", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.edge {
    margin-left: 0;
}

@media screen and (min-width: 520px) {
    .edge {
        margin-left: 1rem;
    }
}

@media screen and (min-width: 1200px) {
    .edge {
        margin-left: 0;
    }
}


/* FontColor */
.color-green {
    color: #356264;
}

.color-white {
    color: #fff;
}

.text-center {
    text-align: center;
}

.br_sp {
    display: block;
}

.br_pc {
    display: none;
}

@media screen and (min-width: 520px) {
    .br_sp {
        display: none;
    }

    .br_pc {
        display: block;
    }
}

@media screen and (max-width: 520px) {
    .br_nav {
        display: none;
    }
}

@media screen and (min-width: 1200px) {
    .br_nav {
        display: none;
    }
}


/* フェードイン */
.fadeIn {
    animation-name: fadeInAnime;
    opacity: 0;
    transform: translateY(1%);
    transition: 2.5s;
}

.fadeIn.is-show {
    transform: translateY(0);
    opacity: 1;
}

@keyframes fadeInAnime {
    0% {
        opacity: 0;
        transform: translateY(-50%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeIn-delay {
    animation-name: fadeInDelay;
    animation-delay: 0.5s;
    opacity: 0;
    transform: translateY(1rem);
    transition: 2.5s;
}

.fadeIn-delay.is-show {
    transform: translateY(0);
    opacity: 1;
    transition-delay: .5s;
}

@keyframes fadeInDelay {
    0% {
        opacity: 0;
        transform: translateY(50%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInLeft {
    animation-name: fadeInLeft;
    opacity: 0;
    transform: translateX(-50%);
    transition: 2.5s;
}

.fadeInLeft.is-show {
    transform: translate(0);
    opacity: 1;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInRight {
    animation-name: fadeInRight;
    opacity: 0;
    transform: translateX(50%);
    transition: 2.5s;
}

.fadeInRight.is-show {
    transform: translate(0);
    opacity: 1;
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(50%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


.pc-only {
    display: none;
}

@media screen and (min-width: 520px) {
    .pc-only {
        display: block;
    }
}

.sp-only {
    display: block;
}

@media screen and (min-width: 520px) {
    .sp-only {
        display: none;
    }
}

.br-sp {
    display: block;
}

@media (min-width: 520px) {
    .br-sp {
        display: none;
    }
}

.br-pc {
    display: none;
}

@media (min-width: 520px) {
    .br-pc {
        display: block;
    }
}


header {
    width: 100%;
    background-color: #fff;
}

/* @media only screen and (min-width:600px) {
    header {
        transition: 0.8s;
    }
    .js-animation {
        transform: translateY(-150px);
    }
} */
.header__inner {
    width: 90%;
    max-width: 1200px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}

@media screen and (min-width: 520px) {
    .header__inner {
        width: 96%;
        height: 120px;
    }
}

.logo--sh {
    width: 160px;
}

.logo__nav {
    width: 160px;
    margin-top: 1.5rem;
    margin-left: 5%;
}

@media screen and (min-width: 520px) {
    .logo__nav {
        display: none;
    }
}

/* nav */
.nav__button {
    display: block;
    cursor: pointer;
    z-index: 33;
    width: 2rem;
    height: 1.5rem;
    position: fixed;
    top: 2rem;
    right: 1.5rem;
}

.nav__button span {
    display: block;
    height: 1px;
    background: #444;
    position: absolute;
    width: 100%;
    left: 0;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.nav__button span:nth-of-type(1) {
    top: 0;
}

.nav__button span:nth-of-type(2) {
    top: .5rem;
}

.nav__button span:nth-of-type(3) {
    top: 1rem;
}

.nav__button.active span:nth-of-type(1) {
    top: .5rem;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
}

.nav__button.active span:nth-of-type(2) {
    width: 0;
    left: 50%;
}

.nav__button.active span:nth-of-type(3) {
    top: .5rem;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

@media screen and (min-width: 520px) {
    .nav__button {
        display: none;
    }
}

nav {
    background-color: #fff;
}

@media screen and (min-width: 520px) {
    nav {
        margin: 0 auto;
        background-color: transparent;
    }
}

.nav__wrap {
    position: fixed;
    right: -120%;
    top: 0;
    z-index: 22;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    height: 100vh;
    transition: .5s ease;
    display: flex;
    flex-direction: column;
}

.nav__wrap.open {
    right: 0;
    overflow: auto;
}

@media screen and (min-width: 520px) {
    .nav__wrap {
        position: static;
        width: 96%;
        height: auto;
        margin: 0 auto 0 2%;
    }
}

.nav__lists {
    padding: 0;
    list-style: none;
    width: 100%;
}

@media screen and (min-width: 520px) {
    .nav__lists {
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: space-around;
        list-style: none;
    }
}

.nav__list {
    width: 80%;
    height: auto;
    text-align: left;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 0 auto;
}

@media screen and (min-width: 520px) {
    .nav__list {
        /* width: calc(100% / 7); */
        width: auto;
        text-align: center;
        justify-content: center;
    }
}

.nav__list a {
    width: 100%;
    padding: 1rem 0 0.5rem;
    text-decoration: none;
    font-family: 'Raleway', "Noto Sans Japanese", sans-serif;
    font-weight: 500;
    color: #222;
}

@media screen and (min-width: 520px) {
    .nav__list a {
        padding: 0;
        font-size: 0.7rem;
    }
}

@media screen and (min-width: 960px) {
    .nav__list a {
        font-size: 0.8rem;
    }
}

.nav__list a::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    content: '';
    width: 0;
    height: 1px;
    background-color: #222;
    transition: .3s;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.nav__list a:hover::after {
    width: calc(100% / 5);
}

.nav__list--social .nav__list a {
    padding: 0.5rem 0;
}

/* nav__dropdown */
.dropdown-open::before {
    content: '';
    width: 5px;
    height: 5px;
    border: 0;
    border-bottom: solid 1px #222;
    border-right: solid 1px #222;
    position: absolute;
    right: 5%;
    margin-top: 1rem;
    transform: rotate(45deg);
}

@media screen and (min-width: 768px) {
    .dropdown-open::before {
        margin-top: -5px;
        right: 10%;
    }

    .dropdown-open::after {
        position: absolute;
        top: 0;
        left: 50%;
        content: '';
        width: 0;
        height: 1px;
        background-color: #fff;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .dropdown-open:hover ul {
        visibility: visible;
        opacity: 1;
        display: block;
        top: 100%;
    }
}

@media screen and (min-width: 520px) {
    .dropdown-open::before {
        right: -0.7rem;
    }
}

button {
    padding: 0;
    border: none;
    outline: none;
    font: inherit;
    color: inherit;
    background: none;
    cursor: pointer;
}

.js-dropdown-open {
    color: #fff;
    padding: 0;
    border: none;
    outline: none;
    font: inherit;
    background: none;
    cursor: pointer;
}

.js-dropdown-open_lb,
.js-dropdown-open_sh {
    display: block;
    width: 100%;
    text-align: left;
    font-family: 'Raleway', "Noto Sans Japanese", sans-serif;
    font-weight: 500;
    padding: 1rem 0 0.5rem;
}

@media screen and (min-width: 520px) {
    .js-dropdown-open_lb,
    .js-dropdown-open_sh {
        text-align: center;
        padding: 0;
        font-size: 0.7rem;
    }

    .js-dropdown-open_lb:hover,
    .js-dropdown-open_sh:hover {
        transition: all 0.5s ease;
        opacity: .5;
    }
}

@media screen and (min-width: 960px) {

    .js-dropdown-open_lb,
    .js-dropdown-open_sh {
        font-size: 0.8rem;
    }
}

.dropdown__lists {
    width: 100%;
}

@media screen and (min-width: 768px) {
    .dropdown__lists {
        visibility: hidden;
        opacity: 0;
        position: absolute;
        z-index: 33;
        top: 3rem;
        left: 15%;
        transition: all 0.5s ease;
    }
}

.dropdown__list {
    background-color: rgba(255, 255, 255, 0.3);
    width: 100px;
    height: 3rem;
    transition: all .5s;
    position: relative;
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dropdown__list:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.dropdown__list a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.nav__list .dropdown__list a::after {
    bottom: 0.5rem;
}

.nav__list .dropdown__list a:hover::after {
    width: 45%;
}


main {
    background-color: #e2d8cf;
    overflow-x: hidden;
}

@media (min-width: 600px) {
    main {
        overflow-x: visible;
    }
}


video {
    filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
    outline: none;
    border: none;
    width: 100%;
    height: 100%;
}

.video__area {
    width: 100%;
    height: 100%;
}

.bg_video {
    vertical-align: top;
    object-fit: cover;
}


/* ファーストビュー */
.fv_wrapper {
    background: url(../images/fv_bg.png) center center no-repeat;
    background-size: cover;
    width: 100%;
}

.fv_container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.fv_title {
    width: 90%;
    margin-top: -22%;
    margin-right: auto;
    margin-bottom: 10%;
    text-align: center;
    color: #edd9ce;
    order: 2;
    z-index: 3;
}

.fv_catchphrase {
    font-size: clamp(4rem, 3.4rem + 3vw, 7rem);
    letter-spacing: 0.5rem;
    line-height: 1;
}

.fv_sub-catchphrase {
    font-size: clamp(0.7rem, 0.66rem + 0.2vw, 0.9rem);
    letter-spacing: 0.05rem;
}

.fv_movie {
    width: 80%;
    margin-top: 15%;
    margin-left: auto;
    order: 1;
}

@media (min-width: 600px) {
    .fv_container {
        flex-direction: row;
        max-width: 1200px;
    }

    .fv_title {
        width: 50%;
        margin-top: 0;
        margin-bottom: 0;
        margin-right: 0;
        order: 1;
    }

    .fv_catchphrase {
        letter-spacing: 0.5rem;
        line-height: 1;
    }

    .fv_sub-catchphrase {
        letter-spacing: 0.05rem;
    }

    .fv_movie {
        width: 50%;
        margin-top: 0;
        margin-left: 0;
        order: 2;
    }

    .fv_movie video {
        width: 75%;
    }
}


/* 全体の囲い */
.contents_wrapper {
    display: flex;
    flex-direction: column;
}

@media (min-width: 600px) {
    .contents_wrapper {
        flex-direction: row;
    }
}


/* 右側サイドメニュー */
.aside {
    display: none;
}

@media (min-width: 600px) {
    .aside {
        display: grid;
        width: 17%;
        height: 70vh;
        padding: 1%;
        box-sizing: border-box;
        order: 2;
        position: sticky;
        top: 0;
        align-self: start;
        font-family: "minerva-modern", sans-serif;
        font-weight: 400;
        font-style: normal;
        z-index: 10;
        background-color: #e2d8cf;
    }

    .aside_title {
        color: #4c4c4c;
        font-size: 1rem;
        line-height: 1.9;
        margin-top: 3.5rem;
    }

    .aside ul {
        margin-top: auto;
    }
}


/* メインコンテンツ全体 */
.main_side {
    width: 100%;
}

.left_content,
.right_content {
    width: 100%;
}


.relax_felcera,
.silk_blend,
.uchino_collabolation,
.pamper_yourself,
.relax_mood,
.take_care_of_yourself {
    height: auto;
}

@media (min-width: 600px) {
    .main_side {
        width: 83%;
        order: 1;
    }

    .left_content,
    .right_content {
        width: 50%;
    }


    .relax_felcera,
    .silk_blend,
    .uchino_collabolation,
    .pamper_yourself,
    .relax_mood,
    .take_care_of_yourself {
        display: flex;
        height: auto;
        min-height: 100vh;
        align-self: start;
    }
}


/* メインコンテンツ左側共通 */
.left_content-content_title {
    position: absolute;
    top: -1.9rem;
    left: -0.5rem;
    line-height: 1.4;
    color: #fff;
    font-size: 5.5rem;
    letter-spacing: 0.5rem;
    margin: 0;
    width: 100%;
}

.left_content-content_title span {
    display: block;
    color: #fff;
    font-size: 1.7rem;
    letter-spacing: 0.1rem;
    line-height: 1;
    margin: 0;
    position: absolute;
    left: 0.5rem;
}

.left_content-image {
    position: relative;
}

@media (min-width: 400px) {
    .left_content-content_title span {
        font-size: 1.9rem;
    }
}

@media (min-width: 600px) {
    .left_content {
        position: sticky;
        top: 0;
        align-self: start;
        margin-bottom: 5rem;
        z-index: 10;
    }

    .left_content-content_title {
        top: -1.5rem;
        left: -0.5rem;
        font-size: 4.5rem;
    }

    .left_content-content_title span {
        font-size: 1.3rem;
        letter-spacing: 0.1rem;
    }

    .left_content-image {
        position: relative;
    }
}

@media (min-width: 960px) {
    .left_content {
        margin-bottom: 10rem;
    }

    .left_content-content_title {
        top: -2.3rem;
        left: -0.6rem;
        font-size: 6.5rem;
    }

    .left_content-content_title span {
        font-size: 1.8rem;
        letter-spacing: 0.2rem;
    }
}

@media (min-width: 1200px) {
    .left_content-content_title {
        top: -2.7rem;
        font-size: 7.7rem;
    }

    .left_content-content_title span {
        font-size: 2.3rem;
    }
}


/* メインコンテンツ右側Feature部分 */
.right_content {
    background-color: #f4ebe4;
    padding: 3rem 0 5rem;
}

.right_content-main_title {
    align-items: center;
    display: flex;
    justify-content: center;
    font-size: 1.4rem;
    color: #776454;
    letter-spacing: 0.05rem;
}

.right_content-main_title::before,
.right_content-main_title::after {
    background-color: #776454;
    content: "";
    height: 1px;
    flex-grow: 1;
}

.right_content-main_title::before {
    margin-right: 0.7rem;
}

.right_content-main_title::after {
    margin-left: 0.7rem;
}

.right_content-sub_title {
    color: #776454;
    font-size: 0.8rem;
    text-align: center;
    margin-top: 0;
}

.right_content-description {
    padding: 0 6%;
}

.right_content-detail {
    color: #776454;
    line-height: 1.9;
    letter-spacing: 0.1rem;
    margin: 3rem auto 3rem;
}

.color_box {
    background-color: #776454;
    width: 100%;
    padding: 1% 0;
    margin: 0 auto 1rem;
    display: grid;
    place-content: center;
}

.color_box p {
    color: #fff;
    letter-spacing: 0.05rem;
    margin: 0;
}

.border_box {
    border: #776454 1px solid;
    padding: 0 3%;
}

.border_box-list {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-evenly;
}

.border_box-list_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
    height: auto;
    margin: 3% auto;
}

.number_box {
    background-color: #776454;
    padding: 0;
    font-size: 0.7rem;
    width: 1rem;
    height: 1rem;
    margin-right: auto;
    text-align: center;
    color: #fff;
}

.border_box-list_item img {
    width: 85%;
    aspect-ratio: 1 / 1;
    margin-top: 0;
}

.border_box-list_item p {
    width: 100%;
    min-height: 2rem;
    color: #776454;
    text-align: center;
    margin: 0.5rem 0 0;
    font-size: 0.6rem;
    line-height: 1.7;
    flex: 1;
}

.border_box-list_item p:last-of-type {
    letter-spacing: 0.05rem;
}

.right_content-detail_point {
    display: flex;
    flex-direction: row;
    margin: 1rem 0;
}

.right_content-detail_point li {
    width: 100%;
    max-width: 70px;
    margin-right: 1rem;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.right_content-detail_point li p {
    font-size: 0.7rem;
    color: #776454;
    margin-top: 0.5rem;
    margin-bottom: 0;
    flex: 1;
}

.right_content-detail_point li p:last-of-type {
    margin-top: 0.3rem;
}

.splide__slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.splide__track {
    overflow: hidden;
}

.slide_item_wrapper p,
.slide_item_wrapper a {
    color: #776454;
    letter-spacing: 0.05rem;
}

@media (min-width: 600px) {
    .right_content {
        padding: 5rem 0;
    }

    .right_content-main_title {
        font-size: 1.1rem;
    }

    .right_content-sub_title {
        font-size: 0.8rem;
    }

    .right_content-detail {
        margin: 5rem auto 3rem;
    }

    .color_box {
        width: 80%;
    }

    .color_box p {
        color: #fff;
        letter-spacing: 0.1rem;
        margin: 0;
    }

    .border_box {
        padding: 3% 1%;
    }

    .border_box-list_item {
        margin: 0 auto;
    }

    .border_box-list span {
        margin-right: auto;
    }

    .border_box-list_item img {
        margin-top: -0.5rem;
    }

    .splide {
        visibility: visible;
    }

    .splide.is-initialized:not(.is-active) .splide__list {
        display: flex;
        flex-direction: row;
        /* gap: 1rem; */
    }
    .splide__slide {
        width: 72%;
        margin: 1rem 0 0 1rem;
    }
}

@media (min-width: 960px) {
    .right_content {
        padding: 7rem 0 10rem;
    }

    .right_content-main_title {
        font-size: 1.6rem;
    }

    .right_content-main_title::before {
        margin-right: 1rem;
    }

    .right_content-main_title::after {
        margin-left: 1rem;
    }

    .right_content-sub_title {
        font-size: 0.9rem;
    }

    .color_box {
        width: 60%;
    }

    .border_box-list_item p:first-of-type {
        min-height: 1rem;
    }
}

@media (min-width: 1200px) {
    .right_content-main_title {
        font-size: 2.1rem;
    }

    .right_content-sub_title {
        font-size: 1rem;
    }
}


/* pamper yourself */
.left_content-py_title-top {
    position: absolute;
    top: 1.5rem;
    left: -0.4rem;
    line-height: 1;
    color: #e2d8cf;
    font-size: clamp(4.5rem, 4.1rem + 2vw, 6.5rem);
    letter-spacing: 0.5rem;
    margin: 0;
}

.left_content-py_title-bottom {
    position: absolute;
    bottom: 1rem;
    right: -0.6rem;
    line-height: 1;
    color: #e2d8cf;
    font-size: clamp(4.5rem, 4.1rem + 2vw, 6.5rem);
    letter-spacing: 0.5rem;
    margin: 0;
    z-index: 2;
}

@media (min-width: 600px) {
    .left_content-py_title-top {
        left: -0.4rem;
        font-size: 3.5rem;
    }

    .left_content-py_title-bottom {
        font-size: 3.5rem;
    }
}

@media (min-width: 960px) {
    .left_content-py_title-top {
        left: -0.6rem;
        font-size: 6.5rem;
    }

    .left_content-py_title-bottom {
        font-size: 6.5rem;
    }
}

.pamper_yourself-bg {
    background: #f4ebe4 linear-gradient(transparent, #db9865 15%, #db9865 50%, transparent);
    z-index: 5;
}

.pamper_yourself-image-wrapper_01 {
    display: flex;
    flex-direction: column;
    margin-top: 4rem;
}

@media (min-width: 960px) {
    .pamper_yourself-image-wrapper_01 {
        margin-top: 7rem;
    }
}

.sh_logo-white {
    width: 40%;
    margin: 0 auto;
    z-index: 3;
}

.pamper_yourself-image_01 {
    width: 85%;
    margin: -1rem auto 3rem;
    z-index: 1;
}

@media (min-width: 960px) {
    .pamper_yourself-image_01 {
        margin: -1rem auto 7rem;
    }
}

.pamper_yourself-image_01 p,
.pamper_yourself-image_01 a,
.pamper_yourself-image_02 p,
.pamper_yourself-image_02 a {
    color: #fff;
    letter-spacing: 0.05rem;
}

.pamper_yourself-image_02 {
    margin-bottom: 3rem;
}

@media (min-width: 960px) {
    .pamper_yourself-image_02 {
        margin-bottom: 7rem;
    }
}

.pamper_yourself-image_02 p {
    margin-left: 0.5rem;
}

.pamper_yourself-image_03 {
    display: flex;
    flex-direction: column;
}

.pamper_yourself-image_03-left {
    width: 80%;
    z-index: 1;
}

.pamper_yourself-image_03-left p {
    width: 45%;
    margin-left: 0.5rem;
}

.pamper_yourself-image_03-right {
    width: 60%;
    margin: -7rem 0 0 auto;
    z-index: 3;
}

.pamper_yourself-image_03-right img {
    width: 100%;
}

.pamper_yourself-image_03-left,
.pamper_yourself-image_03-right {

    p,
    a {
        color: #776454;
        letter-spacing: 0.05rem;
    }
}

@media (min-width: 600px) {
    .pamper_yourself-image_03-left {
        width: 75%;
    }

    .pamper_yourself-image_03-right {
        width: 60%;
        margin: -2.5rem 0 0 auto;
    }
}

@media (min-width: 960px) {
    .pamper_yourself-image_03-right {
        width: 63%;
        margin: -4rem 0 0 auto;
    }
}


/* relax mood */
.left_content-relax_mood_title {
    position: absolute;
    top: 10rem;
    right: -8.5rem;
    color: #e2d8cf;
    font-size: 4rem;
    letter-spacing: 0.3rem;
    margin: 0;
    transform: rotate(90deg);
}

@media (min-width: 600px) {
    .left_content-relax_mood_title {
        top: 8rem;
        right: -7.5rem;
        font-size: 3.5rem;
    }
}

@media (min-width: 960px) {
    .left_content-relax_mood_title {
        top: 11.5rem;
        right: -11rem;
        font-size: 5.5rem;
    }
}

@media (min-width: 1200px) {
    .left_content-relax_mood_title {
        top: 15rem;
        right: -13rem;
        font-size: 6rem;
        letter-spacing: 0.5rem;
    }
}

.relax_mood-bg {
    background: #f4ebe4 url(../images/relax-mood_bg.png) center top no-repeat;
    background-size: cover;
}

.relax_mood-image_01 {
    width: 85%;
    margin: 3rem auto 0;
}

@media (min-width: 600px) {
    .relax_mood-image_01 {
        width: 70%;
        margin: 3rem auto 0;
    }
}

@media (min-width: 1200px) {
    .relax_mood-image_01 {
        margin: 7rem auto 0;
    }
}

.relax_mood-image_01,
.relax_mood-image_02,
.relax_mood-image_03 {

    p,
    a {
        color: #fff;
        letter-spacing: 0.05rem;
    }
}

.relax_mood-image_02 {
    margin: 3rem auto 1rem;
}

@media (min-width: 960px) {
    .relax_mood-image_02 {
        margin: 5rem auto;
    }
}

.relax_mood-image_03 {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
}

.relax_mood-subtitle {
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0.05rem;
    line-height: 1.7;
    margin-left: 7.5%;
    z-index: 3;
}

@media (min-width: 600px) {
    .relax_mood-subtitle {
        font-size: 1.2rem;
    }
}

@media (min-width: 960px) {
    .relax_mood-subtitle {
        font-size: 1.5rem;
    }
}

.relax_mood-image_03-left {
    width: 70%;
    margin-top: -4.5rem;
    margin-left: auto;
}

@media (min-width: 600px) {
    .relax_mood-image_03-left {
        width: 77%;
        margin-top: -5rem;
    }
}

@media (min-width: 960px) {
    .relax_mood-image_03-left {
        margin-top: -6rem;
    }
}

.relax_mood-image_03-left a {
    color: #fff;
    letter-spacing: 0.05rem;
}

.relax_mood-image_04 p {
    margin-left: 0.5rem;
}

.relax_mood-image_04 p,
.relax_mood-image_04 a {
    color: #776454;
    letter-spacing: 0.05rem;
}


/* take care of yourself */
.left_content-tcoy_title {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    line-height: 1;
    color: #e2d8cf;
    font-size: 3.3rem;
    letter-spacing: 0.3rem;
    margin: 0;
}

@media (min-width: 600px) {
    .left_content-tcoy_title {
        font-size: 3rem;
    }
}

@media (min-width: 960px) {
    .left_content-tcoy_title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1200px) {
    .left_content-tcoy_title {
        font-size: 5.5rem;
    }
}

.tcoy-bg {
    background: #f4ebe4 url(../images/take-care_bg.jpg) center top no-repeat;
    background-size: cover;
    padding-bottom: 5rem;
}

@media (min-width: 600px) {
    .tcoy-bg {
        background-position: center 3rem;
    }
}

@media (min-width: 960px) {
    .tcoy-bg {
        background-position: center 5rem;
        padding-bottom: 10rem;
    }
}

.tcoy-image_01 {
    width: 100%;
    margin: 1rem 0 0;
}

.tcoy-image_01 img {
    width: 70%;
    margin: 0;
}

@media (min-width: 600px) {
    .tcoy-image_01 {
        margin: 3rem 0;
    }

    .tcoy-image_01 img {
        width: 80%;
    }
}

@media (min-width: 960px) {
    .tcoy-image_01 {
        margin: 5rem 0 3rem;
    }
}

.tcoy-image_01 p {
    color: #fff;
    margin-left: 0.5rem;
}

.tcoy-image_01 a {
    color: #fff;
    letter-spacing: 0.05rem;
}

.tcoy-image_02 {
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
}

.tcoy-subtitle {
    color: #fff;
    font-size: 2.5rem;
    letter-spacing: 0.2rem;
    margin-left: 1.5rem;
    z-index: 3;
}

.tcoy-image_02-center {
    width: 75%;
    margin: -2.5rem auto 0;
    z-index: 1;
}

.tcoy-image_02-center p {
    width: 53%;
}

@media (min-width: 600px) {
    .tcoy-subtitle {
        font-size: 2.3rem;
    }
}

@media (min-width: 960px) {
    .tcoy-subtitle {
        font-size: 3.5rem;
    }

    .tcoy-image_02-center {
        margin: -3.5rem auto 0;
    }
}

@media (min-width: 1200px) {
    .tcoy-subtitle {
        font-size: 4rem;
    }
}

.tcoy-image_02-center p,
.tcoy-image_02-center a {
    color: #fff;
    letter-spacing: 0.05rem;
}

.tcoy-image_02-right {
    width: 47%;
    margin-top: -15rem;
    margin-left: auto;
    z-index: 3;
}

.tcoy-image_03 p {
    margin-left: 0.5rem;
}

.tcoy-image_03 p,
.tcoy-image_03 a {
    color: #fff;
    letter-spacing: 0.05rem;
}

@media (min-width: 600px) {

    .tcoy-image_03 p,
    .tcoy-image_03 a {
        color: #776454;
    }
}


/* footer */
.area_footer {
    padding: 10% 0;
    background-color: #594b41;
}

.footer_wrapper {
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer_credit {
    width: 90%;
    order: 2;
}

.footer_credit p,
.footer_credit li,
.footer_credit a {
    color: #fff;
    margin: 0 0 0.5rem;
    font-size: clamp(0.7rem, 0.645rem + 0.27vw, 0.85rem);
}

.ambassador {
    position: relative;
}

.ambassador_insta-icon {
    position: absolute;
    width: 0.8rem;
    right: 0;
    display: inline-block;
}

.ps {
    margin-top: 1.5rem;
}

.footer_movie {
    width: 90%;
    margin: 0 auto 3rem;
    order: 1;
}

@media (min-width: 600px) {
    .area_footer {
        padding: 7% 0;
    }

    .footer_wrapper {
        flex-direction: row;
    }

    .footer_credit {
        display: grid;
        place-content: center;
        margin: 0 auto;
        width: 35%;
        order: 1;
    }

    .ambassador_insta-icon {
        width: 1rem;
        right: -1.5rem;
    }

    .footer_movie {
        width: 50%;
        margin: 0 auto 0 0;
        order: 2;
    }
}


/* footer */
.lb_2024-aw {
    width: 100%;
    margin: 0 auto;
    display: grid;
    place-content: center;
    background-color: #594b41;
    min-height: 3rem;
}

.lb_2024-aw p {
    color: #fff;
    margin-bottom: 0;
}