@charset "UTF-8";

/* 「Noto sans JP」「Zen Kaku Gothic New」「Damion」インポート */
@import url('https://fonts.googleapis.com/css2?family=Damion&family=Noto+Sans+JP:wght@300;400;500;700;900&family=Zen+Kaku+Gothic+New:wght@900&display=swap');

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

html,
button,
input,
select,
textarea {
    font-family: "Noto Sans JP", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

/* Damion */
.damion {
    font-family: 'Damion', cursive;
}

/* zenkaku */
.zenkaku {
    font-family: 'Zen Kaku Gothic New', sans-serif;
}

/* Akrobat */
@font-face {
    font-family: "Akrobat";
    src: url("../fonts/Akrobat-Regular.otf") format("opentype");
    font-weight: 400;
}

@font-face {
    font-family: "Akrobat";
    src: url("../fonts/Akrobat-SemiBold.otf") format("opentype");
    font-weight: 600;
}

@font-face {
    font-family: "Akrobat";
    src: url("../fonts/Akrobat-Bold.otf") format("opentype");
    font-weight: 700;
}

.akrobat {
    font-family: "Akrobat", sans-serif;
}

/* Avenir-next-condensed-demibold */
@font-face {
    font-family: "avenir-next-condensed-demibold";
    src: url("../fonts/avenir-next-condensed-demibold.otf") format("opentype");
}

.avenir {
    font-family: "avenir-next-condensed-demibold", sans-serif;
}

/* DIN 2014 */
@font-face {
    font-family: "DIN-2014";
    src: url("../fonts/DIN-2014_Demi.otf") format("opentype");
    font-weight: 600;
}

.din {
    font-family: "DIN-2014", sans-serif;
}

/* DIN Alternate */
@font-face {
    font-family: "din-alternate";
    src: url("../fonts/din-alternate-bold.otf") format("opentype");
    font-weight: 700;
}

.din_al {
    font-family: "din-alternate", sans-serif;
}

/* DIN Condensed */
@font-face {
    font-family: "din-condensed";
    src: url("../fonts/din-condensed-bold.otf") format("opentype");
    font-weight: 700;
}

.din_con {
    font-family: "din-condensed", sans-serif;
}

body {
    color: #3C3532;
    font-size: 1.6rem;
    line-height: 1.7;
    margin: 0px;
    background-color: #FFFFFF;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0px;
}

a:link {
    color: #004CCA;
}

a:visited {
    color: #6219DB;
}

a:hover {
    color: #048ADE;
    text-decoration: none;
}

a:active {
    color: #048ADE;
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

ul {
    padding: 0px;
    list-style: none;
    margin: 0;
}

.sp {
    display: none;
}

.pr {
    position: relative;
}

.pa {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#menu {
    display: none;
}

.flex {
    flex-wrap: wrap;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
}

.flex-sb {
    flex-wrap: wrap;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    justify-content: space-between;
}

.wrap {
    position: relative;
    width: 90%;
    margin: 0 auto;
}

.outer_container {
    display: flex;
}

.outer_container .main_content {
    width: 390px;
    margin: 0 auto;
    overflow: hidden;
}

.outer_container .left_content,
.outer_container .right_content {
    width: calc((100% - 390px) / 2);
    height: 100vh;
    position: fixed;
    top: 0;
    background-size: cover;
    background-repeat: no-repeat;
}

.outer_container .left_content {
    left: 0;
    background-color: #F6FCFD;
    display: flex;
    justify-content: center;
    align-items: center;
}

.outer_container .left_content::before {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(../img/main_left_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.outer_container .right_content {
    right: 0;
    background-image: url(../img/main_right_bg.jpg);
}

.outer_container .left_content .logo {
    text-align: center;
    width: 58%;
    margin: 0 auto 4rem;
}

.outer_container .left_content .list_box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
    padding-left: 4.5rem;
}

.outer_container .left_content .list_box .en_text {
    color: #C4EBF0;
    writing-mode: tb-rl;
    line-height: 1.5;
    font-size: 5.4rem;
}

.outer_container .left_content .list_box li+li {
    margin-top: 0.4rem;
}

.outer_container .left_content .list_box li a {
    display: flex;
    align-items: center;
    width: fit-content;
    color: #3C3532;
    font-size: 2.2rem;
    letter-spacing: .01em;
    transition: all .3s;
}

.outer_container .left_content .list_box li a::before {
    content: "";
    width: 1.4rem;
    aspect-ratio: 1/1;
    background: currentColor;
    border-radius: 50%;
    margin-right: 1.5rem;
}

.outer_container .left_content .list_box li a:hover {
    color: #24AEC3;
}

.outer_container .left_content .product_img {
    width: 17.8rem;
    margin-left: 8rem;
}

.outer_container .right_content .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 10rem 0 9rem;
    width: 100%;
    height: 100%;
}

.outer_container .right_content::before {
    content: "";
    width: 100%;
    height: 29rem;
    background: linear-gradient(to bottom, rgba(151, 138, 133, 0) 0%, rgba(151, 138, 133, 0.6) 60%, rgba(151, 138, 133, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.outer_container .right_content::after {
    content: "";
    width: 100%;
    height: 20rem;
    background: linear-gradient(to bottom, rgba(158, 149, 152, 0) 0%, rgba(158, 149, 152, 0.4) 20%, rgba(158, 149, 152, 0.5) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.outer_container .right_content .date_box {
    display: flex;
    align-items: center;
}

.outer_container .right_content .release .top_box {
    display: flex;
    align-items: center;
}

.outer_container .right_content .release .top_box .day {
    color: #fff;
    font-size: 7rem;
    letter-spacing: -0.03em;
    font-weight: 600;
    line-height: 1;
}

.outer_container .right_content .release .top_box .detail {
    color: #fff;
    text-align: center;
    line-height: 1;
}

.outer_container .right_content .release .top_box .detail .year {
    font-size: 2.8rem;
    letter-spacing: -0.01em;
}

.outer_container .right_content .release .top_box .detail .week {
    font-size: 2.6rem;
    letter-spacing: .04em;
    font-weight: 600;
}

.outer_container .right_content .release .top_box .detail .week .small {
    font-size: 2rem;
}

.outer_container .right_content .release .top_box .detail .week .wide {
    letter-spacing: .16em;
}

.outer_container .right_content .release .en_text {
    color: #fff;
    font-size: 3.7rem;
    font-weight: 600;
    letter-spacing: .02em;
    line-height: 1;
    padding-left: 0.4rem;
}

.outer_container .right_content .sale {
    margin-left: 6.5rem;
    padding-top: 0.5rem;
    position: relative;
}

.outer_container .right_content .sale::before {
    content: "";
    width: 3px;
    height: 11.5rem;
    background: #fff;
    position: absolute;
    left: -4.2rem;
    top: -0.5rem;
    rotate: 19deg;
}

.outer_container .right_content .sale .top_box {
    display: flex;
    align-items: center;
}

.outer_container .right_content .sale .top_box .day {
    color: #fff;
    font-size: 4.4rem;
    line-height: 1;
    font-weight: 600;
}

.outer_container .right_content .sale .top_box .week {
    color: #fff;
    font-size: 2.5rem;
    writing-mode: tb-rl;
    line-height: 0.8;
    font-weight: 600;
}

.outer_container .right_content .sale .text {
    color: #fff;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: .03em;
    line-height: 1.3;
}

.outer_container .right_content .sale .text .large {
    font-size: 2.3rem;
    font-weight: 900;
}

/* PC 共通部分 */
.common_title {
    text-align: center;
}

.common_title .title {
    color: #24AEC3;
    font-size: 5rem;
    font-weight: 600;
}

.common_title ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 1rem;
}

.common_title li {
    width: 1.2rem;
    aspect-ratio: 1/1;
}

.common_title li:nth-child(1) {
    background: #87C3AF;
}

.common_title li:nth-child(2) {
    background: #E6A03F;
}

.common_title li:nth-child(3) {
    background: #EF7C7C;
}

.common_btn a {
    display: block;
    width: 100%;
    background: #C4EBF0;
    text-align: center;
    border-radius: 2.8rem;
    line-height: 5.5rem;
    color: #6F5F58;
    letter-spacing: .14em;
    font-weight: 700;
    transition: all .3s;
}

.common_btn a:hover {
    color: #fff;
    background: #89CFD9;
}

.common_btn a .text::after {
    content: "";
    background: url(../img/icon_link_brown.svg) no-repeat;
    background-size: cover;
    width: 1.3rem;
    aspect-ratio: 1/1;
    display: inline-block;
    margin-left: 1.8rem;
    transition: all .3s;
}

.common_btn a:hover .text::after {
    background: url(../img/icon_link_white.svg) no-repeat;
}

/* PCヘッダー */
/*　ハンバーガーボタン　*/
.hamburger {
    display: block;
    position: fixed;
    z-index: 99999;
    right: 50%;
    translate: 185px 0;
    top: 30px;
    width: 40px;
    height: 31px;
    cursor: pointer;
    text-align: center;
}

.hamburger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    left: 0;
    background: #604438;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 14px;
}

.hamburger span:nth-child(3) {
    top: 28px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span {
    background: #fff;
}

.hamburger.active span:nth-child(1) {
    top: 14px;
    left: 0px;
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    transform: rotate(315deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
    top: 14px;
    left: 0;
    -webkit-transform: rotate(-315deg);
    -moz-transform: rotate(-315deg);
    transform: rotate(-315deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

nav.globalMenuSp {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 50%;
    translate: -50% 0;
    text-align: center;
    color: #000;
    transform: translateY(100%);
    transition: all 0.6s;
    width: 390px;
    height: 100vh;
    align-items: center;
    background: #89CFD9;
    overflow: scroll;
}

nav.globalMenuSp ul {
    margin: 0 auto;
    padding: 0;
    width: 90%;
}

nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom: 2px dotted #fff;
    transition: .4s all;
}

nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

nav.globalMenuSp ul li a {
    display: block;
    color: #fff;
    padding: 1em 0;
    text-decoration: none;
    letter-spacing: .01em;
    font-size: 16px;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
    transform: translateY(0%);
}

/* PCトップページ FV */
.top_main {
    height: 100vh;
    position: relative;
}

.top_main .inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.top_main .wrap {
    width: 100%;
    height: 100%;
}

.top_main .title_box {
    padding-left: 2rem;
    padding-top: 5rem;
}

.top_main .title_box .title {
    color: #6F5F58;
    font-size: 2.8rem;
    letter-spacing: .07em;
    font-weight: 900;
    writing-mode: tb-rl;
    height: 100%;
}

.top_main .title_box .title .small {
    font-size: 2.6rem;
}

.top_main .title_box .title .large {
    font-size: 3rem;
}

.top_main .title_box .title .text2 {
    display: inline-block;
    padding-top: 2.8rem;
}

.top_main .title_box .title .border {
    position: relative;
}

.top_main .title_box .title .border::before {
    content: "";
    width: 1.6rem;
    height: 105%;
    background: #F5EDC9;
    position: absolute;
    z-index: -1;
    left: 50%;
    translate: -50% 0;
    top: -1rem;
}

.top_main .img {
    width: min(28.7vh, 23.65rem);
    rotate: 24deg;
    position: absolute;
    top: 9.6rem;
    left: 6.5vh;
}

.top_main .label {
    position: absolute;
    bottom: 0.9rem;
    right: 0.8rem;
    z-index: -1;
    width: 21.5rem;
}

.top_main .label img {
    width: 100%;
}

.top_main::before {
    content: "";
    background: url(../img/main_bubble1.png) no-repeat;
    background-size: cover;
    width: 10rem;
    aspect-ratio: 1/1;
    position: absolute;
    top: 2rem;
    left: 0.5rem;
    z-index: -1;
}

.top_main::after {
    content: "";
    background: url(../img/main_bubble2.png) no-repeat;
    background-size: cover;
    width: 22.1rem;
    height: 37.4rem;
    position: absolute;
    top: 5.5rem;
    right: -4.5rem;
    z-index: -1;
}

.top_main .inner::before {
    content: "";
    background: url(../img/main_bubble3.png) no-repeat;
    background-size: cover;
    width: 24rem;
    height: 29.8rem;
    position: absolute;
    bottom: 12rem;
    left: -10rem;
    z-index: -1;
}

.top_main .inner::after {
    content: "";
    background: url(../img/main_bubble4.png) no-repeat;
    background-size: cover;
    width: 26.7rem;
    height: 32.9rem;
    position: absolute;
    bottom: -7rem;
    right: -4rem;
    z-index: -2;
}

.main_news {
    rotate: 8deg;
    width: 110%;
    translate: -1.7rem 1.7rem;
    position: relative;
    z-index: -1;
}

.main_news .top_box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_news .top_box .day {
    color: #fff;
    font-size: 7rem;
    letter-spacing: -0.03em;
    font-weight: 600;
    line-height: 1;
}

.main_news .top_box .detail {
    color: #fff;
    text-align: center;
    line-height: 1;
}

.main_news .top_box .detail .year {
    font-size: 2.8rem;
    letter-spacing: -0.01em;
}

.main_news .top_box .detail .week {
    font-size: 2.6rem;
    letter-spacing: .04em;
    font-weight: 600;
}

.main_news .top_box .detail .week .small {
    font-size: 2rem;
}

.main_news .top_box .detail .week .wide {
    letter-spacing: .16em;
}

.main_news .en_text {
    color: #fff;
    font-size: 3.7rem;
    font-weight: 600;
    letter-spacing: .02em;
    line-height: 1;
    padding-left: 0.4rem;
    text-align: center;
    translate: -0.7rem 0;
}

.main_news .bottom_box {
    background: #F4F4F4;
    text-align: center;
    padding: 0.5rem 0 0.3rem;
}

.main_news .bottom_box .text {
    color: #401F11;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: .08em;
    translate: 1rem 0;
}

.main_news .bottom_box .text .day {
    font-size: 3rem;
    letter-spacing: .01em;
    line-height: 1;
}

.main_news .bottom_box .text .week {
    font-size: 2.5rem;
    letter-spacing: 0;
    padding-left: 0.5rem;
}

.main_news .bottom_box .text .border {
    padding: 0 0.8rem;
}

.main_news .inner {
    padding: 3.5rem 0 3rem;
    background-image: url(../img/main_info_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

/* PCトップページ L’air de SAVONとは */
.top_about {
    background: #89CFD9;
    padding: 10rem 0 18rem;
    position: relative;
    z-index: -2;
    margin-top: -1rem;
}

.top_about .inner {
    padding: 0 2.5rem;
}

.top_about .inbox+.inbox {
    margin-top: 10rem;
}

.top_about .inbox .title {
    color: #fff;
    font-size: 2.6rem;
    letter-spacing: .16em;
    line-height: 1.9;
    margin-bottom: 3.5rem;
    font-weight: 900;
}

.top_about .inbox .title .space {
    letter-spacing: .04em;
}

.top_about .inbox .title .space2 {
    letter-spacing: -0.01em;
}

.top_about .inbox .title.small {
    font-size: 2.2rem;
    letter-spacing: .11em;
    margin-bottom: 3rem;
}

.top_about .inbox .title.small .en {
    font-size: 3.2rem;
    letter-spacing: 0;
    font-weight: 600;
    padding-right: 0.7rem;
}

.top_about .inbox .text {
    color: #fff;
    font-size: 1.4rem;
    letter-spacing: .13em;
    font-weight: 700;
    line-height: 2.5;
}

.top_about .logo {
    text-align: center;
    width: 30.5rem;
    margin: 5.5rem auto 0;
}

.top_about .logo img {
    width: 100%;
}

/* .top_about::before {
    content: "";
    background: url(../img/about_bg.svg) no-repeat;
    background-size: cover;
    width: 100%;
    height: 16.8rem;
    position: absolute;
    bottom: -16.8rem;
    left: 0;
} */

/* PCトップページ NEW ITEM */
.top_item {
    padding: 3rem 0 8rem;
    position: relative;
}

.top_item .wave_box {
    width: 100%;
    position: absolute;
    top: -15rem;
    left: 0;
}

.top_item .wave_box svg {
    width: 100%;
}

.top_item .common_title {
    margin-bottom: 2rem;
}

.top_item .main_item .inbox+.inbox {
    margin-top: 13.5rem;
}

.top_item .main_item .top_box {
    margin-bottom: 3rem;
}

.top_item .main_item .top_box .label {
    display: inline-block;
    font-size: 1.6rem;
    letter-spacing: .1em;
    line-height: 1;
    padding: 0.6rem 2rem;
    border-radius: 0.4rem;
    background-color: #24AEC3;
    color: #fff;
    font-weight: bold;
    margin-bottom: 0.6rem;
}

.top_item .main_item .top_box .title {
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: .1em;
    margin-bottom: 1rem;
}

.top_item .main_item .top_box .list {
    margin-bottom: 1.7rem;
    margin-left: 1rem;
}

.top_item .main_item .top_box .list li+li {
    margin-top: 0.8rem;
}

.top_item .main_item .top_box .list li {
    color: #714E3E;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: .07em;
    padding-left: 2rem;
    position: relative;
}

.top_item .main_item .top_box .list li::before {
    content: "";
    width: 1rem;
    height: 0.3rem;
    border-radius: 0.3rem;
    position: absolute;
    left: 0;
    top: 50%;
    translate: 0 -50%;
}

.top_item .main_item .top_box .list li:nth-child(1)::before {
    background: #87C3AF;
}

.top_item .main_item .top_box .list li:nth-child(2)::before {
    background: #E6A03F;
}

.top_item .main_item .top_box .list li:nth-child(3)::before {
    background: #EF7C7C;
}

.top_item .main_item .top_box .text {
    font-size: 1.4rem;
    letter-spacing: .04em;
    font-weight: 400;
}

.top_item .main_item .top_box .note {
    font-size: 1.2rem;
    letter-spacing: .04em;
    font-weight: 300;
    line-height: 1.6;
    margin-top: 0.3rem;
}

.top_item .main_item .slider_box .detail .cont+.cont {
    margin-top: 1rem;
}

.top_item .main_item .slider_box .detail .cont .title {
    color: #4A1600;
    font-weight: 700;
    margin-bottom: 0.7rem;
    line-height: 1.2;
}

.top_item .main_item .slider_box .detail .cont .title .volume {
    font-size: 1.3rem;
}

.top_item .main_item .slider_box .detail .cont .price {
    display: flex;
}

.top_item .main_item .slider_box .detail .cont .price .yen {
    color: #191919;
    font-size: 2.2rem;
    letter-spacing: .01em;
    line-height: 1;
    margin-right: 0.5rem;
}

.top_item .main_item .slider_box .detail .cont .price .tax {
    font-size: 1.8rem;
    letter-spacing: .01em;
    font-weight: 700;
    line-height: 1.1;
}

.top_item .main_item .slider_box .detail .cont .price .tax .small {
    font-size: 1.4rem;
    margin-right: 0.5rem;
}

.top_item .main_item .slider_box .desc_list ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0 1.4rem;
}

.top_item .main_item .slider_box .desc_list li .text {
    line-height: 1;
    text-align: center;
}

.top_item .main_item .slider_box .desc_list li .img {
    margin-bottom: 0.6rem;
}

.top_item .main_item .slider_box .note {
    color: #9A8984;
    font-size: 1rem;
    letter-spacing: .01em;
    font-weight: 300;
}

.top_item .main_item .inbox.spray .slider_box .note {
    color: #3C3532;
    font-size: 1.2rem;
    letter-spacing: .03em;
}

.top_item .main_item .slider_box {
    height: 46.8rem;
    position: relative;
}

.top_item .main_item .slider_box::before {
    content: "";
    width: 39rem;
    background: #F5FBFC;
    top: 0;
    bottom: 0;
    left: -2rem;
    position: absolute;
    z-index: -1;
}

.top_item .main_item .inbox.softener .slider_box {
    padding: 3rem 0 5rem;
}

.top_item .main_item .inbox.softener .slider_box .inner {
    display: flex;
    align-items: flex-end;
    margin-bottom: 2.5rem;
}

.top_item .main_item .inbox.softener .desc_list ul {
    margin-bottom: 0.6rem;
}

.top_item .main_item .inbox.softener .item_slider {
    flex-shrink: 0;
    width: 17.1rem;
    margin: 0 3.5rem 0 1rem;
    position: relative;
}

.top_item .main_item .item_slider .scroll_hint {
    background-color: rgba(255, 255, 255, 0.9);
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
}

.top_item .main_item .inbox.spray .item_slider .scroll_hint {
    width: 80%;
}

.top_item .main_item .inbox.softener .slider_box .detail {
    padding-bottom: 1.9rem;
}

.top_item .main_item .inbox.softener .pager_box {
    position: absolute;
    top: 1.7rem;
    left: 9rem;
    width: 100%;
}

.top_item .main_item .pager_box .slide {
    font-size: 5.5rem;
    line-height: 0.9;
    font-weight: 600;
    transition: all .3s;
}

.top_item .main_item .pager_box .slide.sensual {
    color: #DBEDE7;
}

.top_item .main_item .pager_box .slide.innocent {
    color: #F7E9D7;
}

.top_item .main_item .pager_box .slide.bliss {
    color: #F4DCDC;
}

.top_item .main_item .pager_box .slide.sensual.is-active {
    color: #87C3AF;
}

.top_item .main_item .pager_box .slide.innocent.is-active {
    color: #E6A03F;
}

.top_item .main_item .pager_box .slide.bliss.is-active {
    color: #EF7C7C;
}

.top_item .main_item .pager_box .num {
    position: absolute;
    left: 15.7rem;
    bottom: -3.9rem;
    color: #E8E4E2;
    font-size: 7rem;
    line-height: 1;
    font-weight: 600;
}

.top_item .main_item .pager_box .num::before {
    content: "";
    width: 0.3rem;
    height: 8rem;
    background: #E8E4E2;
    border-radius: 0.3rem;
    position: absolute;
    top: -2rem;
    left: -2.2rem;
    rotate: 43deg;
}

.top_item .main_item .btn_box {
    position: absolute;
    bottom: -6rem;
    left: 50%;
    translate: -50% 0;
    width: 94%;
}

.top_item .main_item .btn_box .btn a {
    display: block;
    width: 100%;
    background: #9A8984;
    border-radius: 6rem;
    line-height: 6rem;
    text-align: center;
    color: #fff;
    font-weight: 700;
    letter-spacing: .11em;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.top_item .main_item .btn_box .btn a .intext {
    position: relative;
    z-index: 3;
    transition: all .3s;
}

.top_item .main_item .btn_box .btn a::before {
    content: "";
    width: 12px;
    height: 120%;
    transform: skewX(-43deg);
    position: absolute;
    left: 6%;
    top: 0;
    transition: all 1.2s;
}

.top_item .main_item .btn_box .btn.sensual a::before {
    background: #87C3AF;
}

.top_item .main_item .btn_box .btn.innocent a::before {
    background: #E6A03F;
}

.top_item .main_item .btn_box .btn.bliss a::before {
    background: #EF7C7C;
}

.top_item .main_item .btn_box .btn a::after {
    content: "";
    width: 120%;
    height: 120%;
    background: #EBEBEB;
    transform: skewX(-43deg);
    position: absolute;
    left: -114%;
    top: 0;
    transition: all 1.2s;
}

.top_item .main_item .btn_box .btn a:hover::before {
    left: 110%;
}

.top_item .main_item .btn_box .btn a:hover::after {
    left: -10%;
}

.top_item .main_item .btn_box .btn a:hover .intext {
    color: #9A8984;
    transition-delay: 1s;
}

.top_item .main_item .btn_box .splide__pagination {
    display: none;
}

.top_item .main_item .btn_box .check_text {
    font-size: 1.2rem;
    letter-spacing: 0.04em;
    line-height: 1;
}

.top_item .main_item .item_slider .splide__pagination {
    width: 100%;
    position: absolute;
    bottom: -26.5rem;
    left: 7.2rem;
    gap: 0 2rem;
}

.top_item .main_item .item_slider .splide__pagination li {
    width: 1.2rem;
    height: 1.2rem;
}

.top_item .main_item .item_slider .splide__pagination li button {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: all .3s;
}

.top_item .main_item .item_slider .splide__pagination li:nth-child(1) button {
    background: #DBEDE7;
}

.top_item .main_item .item_slider .splide__pagination li:nth-child(2) button {
    background: #F7E9D7;
}

.top_item .main_item .item_slider .splide__pagination li:nth-child(3) button {
    background: #F4DCDC;
}

.top_item .main_item .item_slider .splide__pagination li:nth-child(1) button.is-active {
    background: #87C3AF;
}

.top_item .main_item .item_slider .splide__pagination li:nth-child(2) button.is-active {
    background: #E6A03F;
}

.top_item .main_item .item_slider .splide__pagination li:nth-child(3) button.is-active {
    background: #EF7C7C;
}

.top_item .main_item .inbox.spray .item_slider {
    flex-shrink: 0;
    width: 7.8rem;
    order: 1;
    margin: 0 0 0 3rem;
    position: relative;
}

.top_item .main_item .inbox.spray .inner {
    display: flex;
    align-items: flex-end;
    margin-bottom: 2.5rem;
}

.top_item .main_item .inbox.spray .slider_box .desc_list ul {
    grid-template-columns: repeat(3, 1fr);
}

.top_item .main_item .inbox.spray .slider_box {
    padding: 2.8rem 0 4rem;
    height: 38rem;
}

.top_item .main_item .inbox.spray .slider_box .desc_list {
    margin-top: 1.5rem;
}

.top_item .main_item .inbox.spray .slider_box .detail {
    margin-left: 1rem;
    translate: 0 1.3rem;
    position: relative;
    z-index: 1;
}

.top_item .main_item .inbox.spray .pager_box {
    position: absolute;
    width: 100%;
    top: 2rem;
    left: 0;
}

.top_item .main_item .inbox.spray .item_slider .splide__pagination {
    bottom: -18rem;
    left: -10rem;
}

.common_item_modal {
    width: 390px;
    margin: 0 auto;
    padding: 4rem 0;
}

.common_item_modal .ttl_box {
    margin-bottom: 2rem;
    text-align: center;
}

.common_item_modal .ttl_box .ttl {
    font-size: 1.7rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1;
    letter-spacing: 0.05em;
}

.common_item_modal .ttl_box .en_ttl {
    line-height: 1;
    font-weight: bold;
    font-size: 3.4rem;
}

.common_item_modal .ttl_box .en_ttl.green {
    color: #87C3AF;
}

.common_item_modal .ttl_box .en_ttl.orange {
    color: #E6A03F;
}

.common_item_modal .ttl_box .en_ttl.pink {
    color: #EF7C7C;
}

.common_item_modal .intro_text {
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    line-height: 1.6;
    text-align: center;
}

.common_item_modal .intro_text + .intro_text {
    margin-top: 0.8rem;
}

.modaal-content-container {
    background-color: #F5FBFC;
}

.common_item_modal .cont {
    flex-wrap: nowrap;
    align-items: flex-end;
    margin-top: 2.5rem;
}

.common_item_modal .cont .img {
    flex-shrink: 0;
    width: 37%;
    margin-right: 7%;
    line-height: 1;
}

.common_item_modal .cont .img img {
    width: 100%;
}

.common_item_modal .cont .text_wrap {
    width: 100%;
}

.common_item_modal .cont .text_wrap .text_box + .text_box {
    margin-top: 2rem;
}

.common_item_modal .cont .text_wrap .text_box .time {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.04em;
    margin-bottom: 0.6rem;
}

.common_item_modal .cont .text_wrap .text_box .text {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.item_list {
    margin-top: 14.7rem;
}

.item_list ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 2rem;
}

.item_list li:nth-child(1) {
    grid-column: 1 / 3;
    background: #F6F4F3;
    padding: 2.5rem 2rem 0rem;
    width: 105%;
    margin-left: -2.5%;
    margin-bottom: 2rem;
}

.item_list li .img {
    width: 100%;
    aspect-ratio: 11/14;
    margin-bottom: 1.3rem;
    position: relative;
}

.item_list li:first-child .img {
    aspect-ratio: 33/17;
}

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

.item_list li .text_box .title {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: .09em;
}

.item_list li .text_box .detail {
    color: #6F5F58;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: .02em;
}

.item_list li .text_box .price {
    display: flex;
}

.item_list li .text_box .price .yen {
    font-size: 2rem;
    letter-spacing: .01em;
    margin-right: 0.9rem;
    line-height: 1.8;
}

.item_list li .text_box .price .tax {
    font-size: 1.8rem;
    letter-spacing: .01em;
    font-weight: 700;
}

.item_list li .text_box .price .tax .small {
    font-size: 1.4rem;
    margin-right: 0.5rem;
}

.item_list li .common_btn a {
    border-radius: 2.5rem;
    line-height: 5rem;
    font-size: 1.4rem;
    margin-top: 1rem;
}

.item_list li .common_btn a .text {
    font-weight: 700;
    transition: all .3s;
}

.item_list li .common_btn a .text::after {
    margin-left: 1.5rem;
    translate: 0 0.1rem;
}

.item_list li .common_btn a:hover .text {
    color: #fff;
}

.item_list li .text_box .text {
    color: #6F5F58;
    font-size: 1.4rem;
    letter-spacing: .04em;
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.item_list li .text_box .title_box {
    display: flex;
    align-items: center;
}

.item_list li .text_box .title_box .title {
    font-size: 1.6rem;
    margin-right: 1.4rem;
}

.item_list li:nth-child(1) .common_btn a {
    width: 35rem;
    margin: 1.7rem 0 -2rem -1.1rem;
}

.item_list li:nth-child(1) .common_btn a .text {
    font-size: 1.6rem;
}

.item_list li:nth-child(1) .text_box .price .yen {
    font-size: 2.2rem;
    margin-right: 0.5rem;
}

.item_list li:nth-child(1) .text_box .price {
    align-items: center;
}

.item_list li .label {
    position: absolute;
    top: 0;
    left: 1.5rem;
    background: #6F5F58;
    border-radius: 0 0 0.4rem 0.4rem;
    writing-mode: tb-rl;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: .27em;
    padding: 1rem 0.5rem;
}

.top_item .item_banner {
    margin-top: 5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
}

/* PCトップページ SNS */
.top_sns {
    padding: 7rem 0 10rem;
}

.top_sns .common_title {
    margin-bottom: 1rem;
}

.top_sns .top_text {
    text-align: center;
    font-size: 1.4rem;
    letter-spacing: .13em;
    font-weight: 700;
    margin-bottom: 3rem;
}

.top_sns .top_text .space {
    letter-spacing: .03em;
}

.sns_list ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1rem;
}

.sns_list li a {
    display: block;
}

.sns_list li a .img {
    border-radius: 5.5rem 5.5rem 0 0;
    padding: 0.8rem 0.3rem 2.3rem;
}

.sns_list li a:nth-child(odd) .img {
    background: #ECF7F8;
}

.sns_list li a:nth-child(even) .img {
    background: #CFEFF3;
}

.sns_list li a .name {
    background: #9A8984;
    border-radius: 2.5rem;
    text-align: center;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: .01em;
    line-height: 4.5rem;
    margin-top: -2.3rem;
    transition: all .3s;
}

.sns_list li a:hover .name {
    background: #6F5F58;
}

.top_sns .insta_banner {
    margin: 3rem 0;
}

/* PCトップページ PRESENT */
.top_present {
    background: #F6F4F3;
    padding: 6.5rem 0 2rem;
}

.top_present .title_box .title {
    margin-bottom: 1rem;
}

.top_present .title_box .sub_text {
    text-align: center;
    color: #6F5F58;
    font-weight: 700;
    letter-spacing: .04em;
    position: relative;
}

.top_present .img {
    width: 38.7rem;
    margin: -1.3rem 0 1rem -2.7rem;
}

.top_present .text_box .title {
    font-size: 2.2rem;
    letter-spacing: .04em;
    font-weight: 700;
    width: 103.5%;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.top_present .text_box .inner {
    display: flex;
    margin-bottom: 1rem;
}

.top_present .text_box .img_box {
    flex-shrink: 0;
    width: 8.45rem;
    margin: 0 -0.3rem 0 01.9rem;
}

.top_present .text_box .textarea {
    color: #6F5F58;
    font-size: 1.4rem;
    letter-spacing: .04em;
    font-weight: 500;
    line-height: 1.9;
}

.top_present .text_box .common_btn a {
    color: #fff;
    background: #49a347;
}

.top_present .text_box .common_btn a:hover {
    color: #fff;
    background: #49a347;
}

.common_btn a .text::after {
    content: none;
}

/* PCトップページ INFORMATION */
.top_info {
    padding: 8rem 0 6rem;
}

.top_info .common_title {
    margin-bottom: 2rem;
}

.top_info .info_banner {
    margin-bottom: 4rem;
}

.info_list {
    padding: 0 2rem;
}

.info_list ul {
    display: grid;
    gap: 2rem 0;
}

.info_list li {
    position: relative;
    padding: 2rem 2rem 3rem;
}

.info_list li:nth-child(odd) {
    background: #89CFD9;
}

.info_list li:nth-child(even) {
    background: #B1A09A;
}

.info_list li .img {
    margin-bottom: 1.5rem;
    position: relative;
}

.info_list li .text_box {
    position: relative;
    z-index: 1;
}

.info_list li .text_box .title {
    text-align: center;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: 0.5rem;
}

.info_list li .text_box .text {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: .06em;
}

.info_list li .bg_text {
    font-size: 5rem;
    line-height: 1;
    letter-spacing: -0.02em;
    rotate: -5deg;
    position: absolute;
    bottom: 1.3rem;
    right: 1.2rem;
}

.info_list li:nth-child(odd) .bg_text {
    color: #9FD7DF;
}

.info_list li:nth-child(even) .bg_text {
    color: #BAAAA5;
}

.info_list li .label {
    width: 6rem;
    aspect-ratio: 1/1;
    border-radius: 3.5rem;
    background: #6F5F58;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1.3;
    position: absolute;
    right: 0.5rem;
    bottom: 0.5rem;
}

/* PCトップページ STORE */
.top_store {
    padding: 0 0 7rem;
}

.top_store .img_box {
    margin-bottom: 2.8rem;
}

.top_store .img_box .en_text {
    color: #6F5F58;
    font-size: 5rem;
    line-height: 1;
    letter-spacing: .04em;
    font-weight: 600;
    mix-blend-mode: multiply;
    margin-top: -1.7rem;
}

.top_store .inner {
    position: relative;
    padding: 1rem 0 3rem 3.3rem;
    margin-left: 1.6rem;
}

.top_store .inner::before {
    content: "";
    width: 1px;
    height: 100%;
    background: #000;
    position: absolute;
    top: 0;
    left: 0;
}

.top_store .text_box {
    margin-bottom: 5rem;
}

.top_store .text_box .title {
    color: #000;
    font-size: 2rem;
    letter-spacing: .06em;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.top_store .text_box .text {
    color: #000;
    font-size: 1.4rem;
    letter-spacing: .06em;
    font-weight: 500;
}

.top_store .text_box .text .jp {
    letter-spacing: .11em;
}

.top_store .link_box li+li {
    margin-top: 1.3rem;
}

.top_store .link_box li {
    display: flex;
}

.top_store .link_box li .en {
    flex-shrink: 0;
    width: 3rem;
    color: #6F5F58;
    font-size: 1.8rem;
    letter-spacing: .01em;
}

.top_store .link_box li .icon {
    flex-shrink: 0;
    width: 2.38rem;
    text-align: center;
    margin-right: 1.5rem;
}

.top_store .link_box li .link a {
    display: inline-block;
    color: #000;
    font-size: 1.4rem;
    letter-spacing: .01em;
    font-weight: 700;
    border-bottom: 1px solid currentColor;
}

.top_store .link_box li.hp .en {
    translate: 0 0.3rem;
}

.top_store .link_box li.map .link a {
    translate: 0 -0.5rem;
}

/* PCトップページ LINK */
.top_link {
    background-image: url(../img/link_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 8rem 0 6.5rem;
    position: relative;
}

.top_link::before {
    content: "";
    background: url(../img/link_bg2.png) no-repeat;
    background-size: cover;
    width: 100%;
    height: 5.55rem;
    position: absolute;
    bottom: -5.5rem;
    left: 0;
}

.top_link .inner {
    padding: 0 3rem;
}

.top_link .text_box {
    background: rgba(255, 255, 255, 0.9);
    padding: 5rem 0;
}

.top_link .text_box .inbox+.inbox {
    margin-top: 6.8rem;
}

.top_link .text_box .inbox .text_img {
    text-align: center;
    margin-bottom: 1.5rem;
}

.top_link .text_box .inbox .icon_list {
    margin-bottom: 1.5rem;
}

.top_link .text_box .inbox .icon_list ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 2.5rem;
}

.top_link .text_box .inbox .link_list li {
    text-align: center;
}

.top_link .text_box .inbox .link_list li a {
    display: inline-block;
    color: #000;
    font-size: 1.4rem;
    letter-spacing: .05em;
    font-weight: 600;
    border-bottom: 1px solid currentColor;
}

.top_link .text_box .inbox .link_list li+li {
    margin-top: 1rem;
}

.top_link .text_box .inbox .link_list.fits li a {
    letter-spacing: .01em;
}

.top_link .text_box .inbox .link_list.sns li:nth-child(1) a {
    width: 53%;
}

/* PCフッター */
.top_link .text_box .inbox .link_list.sns li:nth-child(1) a {
    width: 53%;
}

.top_footer {
    padding: 9.5rem 0 2rem;
}

.top_footer .logo {
    text-align: center;
    margin-bottom: 3rem;
}

.top_footer .copyright {
    text-align: center;
}

.top_footer .copyright small {
    font-size: 1.2rem;
    letter-spacing: .05em;
    font-weight: 400;
}

@media screen and (min-width: 751px) and (max-width: 1200px) {
    .outer_container .left_content {
        display: none;
    }

    .outer_container .right_content {
        width: calc(100% - 390px);
        right: auto;
        left: 0;
    }

    .outer_container .main_content {
        margin: 0 0 0 auto;
    }

    .hamburger {
        translate: 0;
        right: 10px;
    }
}

@media (max-width: 750px) {

    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    html {
        font-size: 2.58vw;
    }

    .wrap {
        max-width: 90%;
        width: 100%;
    }

    .outer_container {
        display: block;
    }

    .outer_container .left_content,
    .outer_container .right_content {
        display: none;
    }

    .outer_container .main_content {
        width: 100%;
    }

    .hamburger {
        right: 10px;
        top: 40px;
        translate: 0;
    }

    nav.globalMenuSp {
        width: 100%;
    }

    /* SP共通部分 */
    .common_btn a:hover {
        background: #C4EBF0;
        color: #6F5F58;
    }

    .common_btn a:hover .text::after {
        background: url(../img/icon_link_brown.svg) no-repeat;
    }

    /* SPトップページ FV */
    .top_main {
        height: 110vw;
    }

    .top_main .img {
        width: 11.65rem;
        /* width: 18.35vh; */
        left: 7rem;
        top: 16rem;
    }

    .top_main .title_box {
        padding-top: 6rem;
        width: 100%;
        height: 100%;
    }

    .top_main .label {
        right: -1rem;
        width: 16rem;
        bottom: -2rem;
    }

    .top_main::before {
        top: 0;
        left: 0;
        width: 13rem;
    }

    .top_main::after {
        width: 19.1rem;
        height: 29.4rem;
        top: 11rem;
        right: 0rem;
        z-index: -2;
    }

    .top_main .inner::before {
        width: 15rem;
        height: 15.8rem;
        bottom: -5rem;
        left: -3rem;
    }

    .top_main .inner::after {
        width: 18.7rem;
        height: 24.9rem;
        right: 0rem;
    }

    .top_main .title_box .title {
        font-size: 2.3rem;
    }

    .top_main .title_box .title .large {
        font-size: 2.5rem;
    }

    .main_news .inner {
        padding: 2rem 0 2rem 4rem;
    }

    .main_news .top_box .day {
        font-size: 6rem;
    }

    .main_news .top_box .detail .year {
        font-size: 2.5rem;
    }

    .main_news .top_box .detail .week {
        font-size: 2.2rem;
    }

    .main_news .en_text {
        font-size: 3.3rem;
    }

    .main_news .bottom_box .text {
        font-size: 1.8rem;
    }

    .main_news .bottom_box .text .day {
        font-size: 2.5rem;
    }

    .main_news .bottom_box .text .week {
        font-size: 2.2rem;
    }

    .main_news .bottom_box {
        padding: 0.7rem 0 0.1rem;
    }

    /* SPトップページ L’air de SAVONとは */
    /* SPトップページ NEW ITEM */
    .top_item {
        padding: 0;
    }

    .top_item .wave_box {
        top: -14rem;
    }

    .top_item .main_item .inbox.spray .inner {
        justify-content: space-between;
    }

    .top_item .main_item .inbox.spray .item_slider {
        margin: 0 4rem 0 0;
    }

    .top_item .main_item .btn_box .btn a:hover .intext {
        color: #fff;
        transition-delay: initial;
    }

    .top_item .main_item .btn_box .btn a:hover::before {
        left: 6%;
    }

    .top_item .main_item .btn_box .btn a:hover::after {
        left: -114%;
    }

    .top_item .main_item .slider_box .desc_list li .img img {
        width: 100%;
    }

    .item_list li .common_btn a:hover .text {
        color: #6F5F58;
    }

    /* SPトップページ SNS */
    .sns_list li a:hover .name {
        background: #9A8984;
    }

    /* SPトップページ PRESENT */
    /* SPトップページ INFORMATION */
    /* SPトップページ STORE */
    /* SPトップページ LINK */
    /* SPフッター */

    .modaal-wrapper {
        z-index: 100000 !important;
    }

    .modaal-inner-wrapper {
        padding: 0 !important;
    }

    .modaal-content-container {
        padding: 0 !important;
    }

}