@charset "UTF-8";

/*all----------------------------*/
html {
  font-size: 62.5%;
}

body {
  -webkit-tap-highlight-color: transparent;
}

#Wrap {
  width: auto;
}

:root {
  --font_jpn: "ryo-gothic-plusn", sans-serif;
  --font_eng: "futura-pt", serif;
  --font_eng2: "Libre Baskerville", serif;
  --color_regular: #1C2D09;
  --color_01: #E38F14;
  --color_bg_01: #F4F1EC;
  --color_bg_02: #fff;
}

.LP_page * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1;
  letter-spacing: .1em;
}

.LP_page {
  background: #fff;
  font-family: var(--font_jpn);
  color: var(--color_regular);
  overflow-x: clip;
  opacity: 0;
  transition: opacity 1s;
}

.LP_page.active {
  opacity: 1;
}

.LP_page picture {
  display: block;
  font-size: 0;
}

.LP_page a {
  display: block;
}

.LP_page a:hover {
  opacity: 1 !important;
}

.LP_page img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.LP_page sup {
  font-size: 1rem;
}

.LP_page .activePoint,
.LP_page .activeDelay {
  opacity: 0;
  transition: opacity 1s;
}

.LP_page .activeDelay.delay1 {
  transition-delay: .15s;
}

.LP_page .activeDelay.delay2 {
  transition-delay: .3s;
}

.LP_page .activeDelay.delay3 {
  transition-delay: .45s;
}

.LP_page .activeDelay.delay4 {
  transition-delay: .6s;
}

.LP_page .activePoint.active,
.LP_page .activePoint.active > .activeDelay {
  opacity: 1;
}
/*----------------------------all*/

/*mv lead------------------------*/
.main_ttl {
  margin-bottom: 6rem;
}

.main_lead {
  margin-bottom: 7rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
  text-align: center;
}

.summary_wrap {
  width: 80rem;
  margin: 0 auto 10rem;
}

.summary_wrap h3 {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: solid var(--color_regular);
  border-width: .1rem;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-align: center;
}

.summary_wrap dl {
  display: flex;
  gap: 3rem;
  align-items: center;
  padding: 0 1rem;
}

.summary_wrap dl dt {
  font-family: var(--font_eng);
  font-size: 4rem;
  font-weight: 100;
  letter-spacing: .05em;
  color: var(--color_01);
}

.summary_wrap dl dd {
  flex: 1;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
}
/*------------------------mv lead*/

/*navigation---------------------*/
.navigation_area {
  width: 90rem;
  margin: 0 auto 8rem;
}

.navigation_area h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
  text-align: center;
}

.navigation_area h3::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 100%;
  height: .1rem;
  background: var(--color_regular);
  content: "";
}

.navigation_area h3 span {
  padding: 0 3rem;
  background: #fff;
  font-family: var(--font_eng);
  font-size: 4rem;
  font-weight: 100;
  letter-spacing: .05em;
}

.navigation_list {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.navigation_list li a {
  display: flex;
  flex-direction: column;
  width: 20rem;
  text-align: center;
}

.navigation_list li a p {
  font-size: 3rem;
  font-weight: 700;
}

.navigation_list li a p span {
  display: block;
  margin-bottom: .8rem;
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 400;
}

.navigation_list li a:hover figure img {
  animation: swing 1.5s steps(1) infinite;
}

@keyframes swing {
  0% {
    rotate: -6deg;
  }

  50% {
    rotate: 6deg;
  }

  100% {
    rotate: -6deg;
  }
}

/*---------------------navigation*/

/*main contents------------------*/
.mainContents_area {
  position: relative;
  z-index: 2;
}

.each_sec {
  position: relative;
  padding-top: 8rem;
}

.each_sec:nth-of-type(odd) {
  background: var(--color_bg_02);
}

.each_sec:nth-of-type(even) {
  background: var(--color_bg_01);
}

.each_sec::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10rem;
  margin-top: 2rem;
  background-repeat: repeat-x;
  background-size: auto 100%;
  content: "";
  opacity: .6;
}

#Twenties::before {
  background-image: url(../img/deco_101.svg);
  animation: loop_twenties 15s linear infinite;
}

#Thirties::before {
  background-image: url(../img/deco_201.svg);
  animation: loop_thirties 15s linear infinite;
}

#Forties::before {
  background-image: url(../img/deco_301.svg);
  animation: loop_forties 15s linear infinite;
}

#Fifties::before {
  background-image: url(../img/deco_401.svg);
  animation: loop_fifties 15s linear infinite;
}

@keyframes loop_twenties {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: -88rem 0;
  }
}

@keyframes loop_thirties {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: -80rem 0;
  }
}

@keyframes loop_forties {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: -77.5rem 0;
  }
}

@keyframes loop_fifties {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: -73.6rem 0;
  }
}

.each_sec .sec_inner {
  padding: 6rem 0 14rem;
}

.each_sec:nth-last-of-type(1) .sec_inner {
  padding-bottom: 11rem;
}

.each_sec:nth-of-type(odd) .sec_inner {
  background: var(--color_bg_01);
}

.each_sec:nth-of-type(even) .sec_inner {
  background: var(--color_bg_02);
}

.sec_ttl_wrap {
  position: relative;
  width: fit-content;
  margin: 0 auto 2rem;
}

.sec_ttl {
  position: absolute;
  bottom: 0;
  right: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 25rem;
  margin-right: 5rem;
  font-size: 4.8rem;
  font-weight: 700;
  text-align: center;
}

.sec_ttl .txt_eng {
  display: block;
  margin-top: .5rem;
  font-family: var(--font_eng);
  font-size: 4rem;
  font-weight: 100;
  letter-spacing: .2em;
}

.character_wrap {
  position: relative;
  width: fit-content;
  padding-top: 10rem;
}

.catchphrase_txt {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 40rem;
}

.character_img {
  width: 25rem;
}

.character_img img {
  animation: swing 1.5s steps(1) infinite;
}

.sec_lead_wrap {
  position: absolute;
  top: 0;
  left: 100%;
  height: fit-content;
  margin: 13rem 0 0 3rem;
  padding: 1rem 1rem 3rem 3rem;
  border-bottom: solid var(--color_regular);
  border-left: solid var(--color_regular);
  border-width: .1rem;
}

.sec_lead_wrap::before {
  position: absolute;
  top: 100%;
  left: 0;
  width: 7rem;
  height: 3rem;
  margin-left: -3rem;
  border-right: solid var(--color_regular);
  border-bottom: solid var(--color_regular);
  border-width: .1rem;
  content: "";
}

.sec_lead {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  text-align: center;
  rotate: -4deg;
  white-space: nowrap;
}

.sec_subheading {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin: 0 auto 4rem;
  padding: 1.7rem 10rem;
  border-top: solid var(--color_regular);
  border-bottom: solid var(--color_regular);
  border-width: .1rem;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: var(--color_regular);
  opacity: 1 !important;
  transition: color 1s !important;
}

.sec_subheading.active {
  color: #fff;
}

.sec_subheading::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 100%;
  height: calc(100% - 1rem);
  background: var(--color_regular);
  content: "";
  transform-origin: center left;
  scale: 0 1;
  transition: scale 1s;
}

.sec_subheading.active::before {
  scale: 1 1;
}

.recommendItem_wrap {
  width: 90rem;
  margin: 0 auto 5rem;
}

.content_ttl {
  margin-bottom: -.9rem;
  font-family: var(--font_eng);
  font-size: 5rem;
  font-weight: 100;
  letter-spacing: .05em;
}

.recommendItem_wrap .content_ttl {
  text-align: end;
  color: var(--color_01);
}

.recommendItem_wrap > div {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 4rem 5rem;
  border: solid var(--color_01);
  border-width: .1rem;
}

.recommendItem_wrap .itm_img {
  width: 34rem;
}

.recommendItem_wrap .txt_wrap {
  flex: 1;
}

.recommendItem_wrap .itm_catch {
  margin-bottom: 2.5rem;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--color_01);
}

.recommendItem_wrap .itm_name {
  margin-bottom: 2rem;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.5;
}

.recommendItem_wrap .itm_name span {
  display: block;
  width: fit-content;
  margin-bottom: .8rem;
  padding: .7rem 1rem;
  background: rgba(28, 45, 9, .5);
  font-size: 1.2rem;
  color: #fff;
}

.recommendItem_wrap .itm_caption {
  margin-bottom: 2.5rem;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.75;
}

.recommendItem_wrap .btn_wrap {
  display: flex;
  gap: 2rem;
}

.recommendItem_wrap .itm_price_wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.recommendItem_wrap .btn_wrap .itm_price_wrap {
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
}

.recommendItem_wrap .itm_price {
  font-size: 1.5rem;
}

.recommendItem_wrap .itm_price .txt_S {
  font-size: 1.1rem;
}

.recommendItem_wrap .itm_link {
  width: fit-content;
}

.recommendItem_wrap .itm_link a {
  position: relative;
  display: grid;
  place-items: center;
  width: 20rem;
  height: 4rem;
  border-radius: .5rem;
  border: solid var(--color_01);
  border-width: .1rem;
  font-family: var(--font_eng2);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color_01);
  transition: background-color .3s, color .3s;
}

.recommendItem_wrap .itm_link a:hover {
  background: var(--color_01);
  color: #fff;
}

.recommendItem_wrap .itm_link a::before {
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  width: .8rem;
  height: .8rem;
  margin-right: 1rem;
  border-top: solid var(--color_01);
  border-right: solid var(--color_01);
  border-width: .1rem;
  rotate: 45deg;
  content: "";
  transition: border-color .3s, margin .3s;
}

.recommendItem_wrap .itm_link a:hover::before {
  border-color: #fff;
  margin-right: .5rem;
}

.recommendItem_wrap .itm_link a span {
  padding-top: .2rem;
}

.chart_wrap {
  position: relative;
  z-index: 2;
  width: 90rem;
  margin: 0 auto 2rem;
}

.chart_wrap > div {
  padding: 8rem 0;
  border: solid var(--color_regular);
  border-width: .1rem;
}

.chart_wrap .itm_list_wrap {
  position: relative;
  width: 59rem;
  height: 34.4rem;
  margin: 0 auto;
}

.chart_wrap .itm_list_wrap::before,
.chart_wrap .itm_list_wrap::after {
  position: absolute;
  background: var(--color_regular);
  content: "";
}

.chart_wrap .itm_list_wrap::before {
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: .1rem;
  height: 100%;
}

.chart_wrap .itm_list_wrap::after {
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 100%;
  height: .1rem;
}

.itm_list_wrap > p {
  position: absolute;
  font-size: 1.8rem;
  font-weight: 500;
  white-space: nowrap;
}

.verticalLine_top {
  bottom: 100%;
  left: 50%;
  translate: -50% 0;
  margin-bottom: 2rem;
}

.verticalLine_bottom {
  top: 100%;
  left: 50%;
  translate: -50% 0;
  margin-top: 2rem;
}

.horizontalLine_left {
  top: 50%;
  right: 100%;
  translate: 0 -50%;
  margin-right: 2rem;
}

.horizontalLine_right {
  top: 50%;
  left: 100%;
  translate: 0 -50%;
  margin-left: 2rem;
}

.chart_wrap .itm_list li {
  position: absolute;
}

.chart_wrap .itm_list li a {
  width: 13rem;
}

.chart_wrap .itm_list li a:hover img {
  rotate: 8deg;
}

#Twenties .chart_wrap .itm_list li.mark_a {
  top: 0;
  left: 0;
  margin: 2rem 0 0 8.5rem;
}

#Twenties .chart_wrap .itm_list li.mark_b {
  top: 0;
  right: 0;
  margin: 2rem 8.5rem 0 0;
}

#Twenties .chart_wrap .itm_list li.mark_c {
  bottom: 0;
  left: 0;
  margin: 0 0 2rem 8.5rem;
}

#Twenties .chart_wrap .itm_list li.mark_d {
  bottom: 0;
  right: 0;
  margin: 0 8.5rem 2rem 0;
}

#Thirties .chart_wrap .itm_list li.mark_a {
  top: 0;
  left: 0;
}

#Thirties .chart_wrap .itm_list li.mark_b {
  top: 0;
  left: 0;
  margin: 4rem 0 0 13rem;
}

#Thirties .chart_wrap .itm_list li.mark_c {
  top: 0;
  right: 0;
  margin: 2rem 8.5rem 0 0;
}

#Thirties .chart_wrap .itm_list li.mark_d {
  bottom: 0;
  left: 0;
  margin: 0 0 2rem 8.5rem;
}

#Thirties .chart_wrap .itm_list li.mark_e {
  bottom: 0;
  right: 0;
  margin: 0 8.5rem 2rem 0;
}

#Forties .chart_wrap .itm_list li.mark_a {
  top: 0;
  left: 0;
  margin: 2rem 0 0 8.5rem;
}

#Forties .chart_wrap .itm_list li.mark_b {
  top: 0;
  right: 0;
  margin: 2rem 8.5rem 0 0;
}

#Forties .chart_wrap .itm_list li.mark_c {
  bottom: 0;
  left: 0;
  margin: 0 0 2rem 8.5rem;
}

#Forties .chart_wrap .itm_list li.mark_d {
  bottom: 0;
  right: 0;
  margin: 0 8.5rem 2rem 0;
}

#Fifties .chart_wrap .itm_list li.mark_a {
  top: 0;
  left: 0;
  margin: 2rem 0 0 8.5rem;
}

#Fifties .chart_wrap .itm_list li.mark_b {
  top: 0;
  right: 0;
  margin: 2rem 8.5rem 0 0;
}

#Fifties .chart_wrap .itm_list li.mark_c {
  bottom: 0;
  left: 0;
  margin: 0 0 4rem 0;
}

#Fifties .chart_wrap .itm_list li.mark_d {
  bottom: 0;
  left: 0;
  margin: 0 0 0 14rem;
}

#Fifties .chart_wrap .itm_list li.mark_e {
  bottom: 0;
  right: 0;
  margin: 0 8.5rem 2rem 0;
}

.itm_mark {
  font-family: var(--font_eng2);
  font-weight: 700;
  color: var(--color_01);
}

.chart_wrap .itm_list li .itm_mark {
  position: absolute;
  top: 0;
  left: 0;
  margin-left: 1rem;
  font-size: 2rem;
}


#Fifties .chart_wrap .itm_list li.mark_c .itm_mark {
  margin-top: 2rem;
}

.setItm_list {
  position: relative;
  z-index: 1;
  display: flex;
  padding: 2rem 0 5rem;
  height: 69rem;
  overflow: hidden;
}

.each_sec:nth-of-type(odd) .setItm_list {
  background: var(--color_bg_02);
}

.each_sec:nth-of-type(even) .setItm_list {
  background: var(--color_bg_01);
}

.setItm_list.active {
  display: block;
  height: auto;
  overflow: visible;
  opacity: 1;
}

.setItm_list::before,
.setItm_list::after {
  position: absolute;
  z-index: -1;
  left: 0;
  width: 100%;
  height: 25rem;
  mask-image: url(../img/deco_wave.svg);
  mask-size: auto 100%;
  mask-repeat: repeat-x;
  content: "";
  animation: loop_wave 40s linear infinite;
}

@keyframes loop_wave {
  0%{
    mask-position: 0 0;
  }

  100% {
    mask-position: -119.4rem 0;
  }
}

.setItm_list::before {
  top: 0;
  margin-top: -10rem;
}

.setItm_list::after {
  bottom: 0;
  margin-bottom: -10rem;
  scale: -1;
}

.each_sec:nth-of-type(odd) .setItm_list::before,
.each_sec:nth-of-type(odd) .setItm_list::after {
  background: var(--color_bg_01);
}

.each_sec:nth-of-type(even) .setItm_list::before,
.each_sec:nth-of-type(even) .setItm_list::after {
  background: var(--color_bg_02);
}

.setItm_list .slick-arrow {
  z-index: 2;
  top: 50%;
  left: 50%;
  right: auto;
  translate: -50% -50%;
  width: 3rem;
  height: 3rem;
  border-top: solid #000;
  border-left: solid #000;
  border-width: .1rem;
}

.setItm_list .slick-prev {
  margin-left: -37rem;
  rotate: -45deg;
}

.setItm_list .slick-next {
  margin-left: 37rem;
  rotate: 135deg;
}

.setItm_list .slick-arrow::before {
  display: none;
}

.each_setItm {
  width: 69rem;
  scale: 0.75;
  opacity: .6;
  transition: scale .3s, opacity .3s;
}

.each_setItm.slick-center {
  scale: 1;
  opacity: 1;
}

.each_setItm .itm_mark {
  margin-bottom: .8rem;
  font-size: 4rem;
}

.each_cat {
  display: flex;
  align-items: center;
  padding: 2rem 0;
  border: solid #000;
  border-width: .1rem;
}

.each_cat.itm_cleansing {
  padding-right: 1.5rem;
}

.each_cat.itm_lotion {
  border-top: none;
  padding-left: 1.5rem;
}

.each_setItm .itm_img {
  width: 28rem;
}

.each_setItm .itm_img img {
  transition: scale .3s;
}

.each_setItm .itm_img a:hover img {
  scale: 1.05;
}

.itm_lotion .itm_img {
  order: 2;
}

.each_setItm .txt_wrap {
  flex: 1;
  text-align: center;
}

.each_setItm .itm_cat {
  margin-bottom: 1.2rem;
  font-weight: var(--font_eng);
  font-size: 4rem;
  font-weight: 100;
}

.each_setItm .itm_cath {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color_01);
}

.each_setItm .itm_name {
  margin-bottom: 1.5rem;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.5;
}

.each_setItm .txt_wrap > div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.each_setItm .itm_price {
  font-size: 1.5rem;
  font-weight: 500;
}

.each_setItm .itm_price .txt_S {
  font-size: 1.1rem;
}

.each_setItm .itm_link {
  width: fit-content;
}

.each_setItm .itm_link a {
  display: grid;
  place-items: center;
  width: 9rem;
  height: 3rem;
  border: solid #000;
  border-width: .1rem;
  background: #000;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  transition: background-color .3s, color .3s;
}

.each_setItm .itm_link a:hover {
  background: #fff;
  color: #000;
}

.each_setItm .itm_comingSoon {
  padding: .6rem 1.5rem;
  background: #000;
  font-size: 1.2rem;
  line-height: 1.3;
  text-align: center;
  color: #fff;
}

.sec_btn {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin: 5rem auto 0;
}

.sec_btn a {
  display: grid;
  place-items: center;
  width: 52rem;
  height: 6.2rem;
  border: solid #000;
  border-width: .1rem;
  background: #000;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  transition: background-color .3s, color .3s;
}

.sec_btn a:hover {
  background: transparent;
  color: #000;
}

.btn_allItems {
  width: fit-content;
  margin: 0 auto;
}

.btn_allItems a {
  display: grid;
  place-items: center;
  width: 60rem;
  height: 7.6rem;
  border: solid #000;
  border-width: .1rem;
  background: #000;
  font-size: 2.5rem;
  font-weight: 500;
  color: #fff;
  transition: background-color .3s, color .3s;
}

.btn_allItems a:hover {
  background: transparent;
  color: #000;
}
/*------------------main contents*/

/*ending-------------------------*/
.ending_area {
  position: relative;
  z-index: 1;
  padding-bottom: 50rem;
}

.ending_area::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1rem;
  margin-top: -.5rem;
  background: var(--color_bg_02);
  content: "";
}

.ending_area .for_bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
}

.ending_area .for_bg::before {
  display: block;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100lvh;
  background: url(../img/bg_001.jpg) center center / cover no-repeat;
  content: "";
} 

.ending_area .upper_layer {
  padding: 8rem 0 12rem;
  background: var(--color_bg_02);
}

.buyerProfile_wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 90rem;
  margin: 0 auto;
  padding: 5rem 4.5rem;
  background: var(--color_bg_01);
}

.buyer_img {
  width: 12rem;
  border-radius: 50%;
  overflow: clip;
}

.buyerProfile_wrap .txt_wrap {
  flex: 1;
}

.buyer_name {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 500;
}

.buyer_name .position {
  margin-right: 1rem;
  padding: .4rem .6rem;
  border-radius: .2rem;
  background: var(--color_01);
  font-size: 1.2rem;
  color: #fff;
}

.profile_txt {
  margin-top: 1rem;
  font-size: 1.4rem;
  line-height: 1.75;
}

/*-------------------------ending*/

/*link collection---------------*/
.linkCollection_area {
  padding: 12rem 0 14rem;
  background: #F3F0ED;
}

.linkCollection_list {
  width: 90rem;
  margin: 0 auto;
}

.linkCollection_list li:nth-of-type(n+2) {
  margin-top: 8rem;
}

.linkCollection_list li h3 {
  margin-bottom: 2.5rem;
  line-height: 1.5;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
}

.bnr_cold h3 {
  color: #A20001;
}

.bnr_cold h3 .txt_L {
  margin-right: .8rem;
  font-size: 3.8rem;
  line-height: 1.5;
}

.bnr_cold h3 .txt_S {
  font-size: 2.2rem;
  line-height: 1.5;
}

.bnr_OrganinDays h3 .txt_eng {
  font-family: var(--font_eng);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .2em;
}

/*---------------link collection*/

/*fixed navigation--------------*/
.fixed_navigation {
  position: fixed;
  z-index: 5;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  filter: drop-shadow(0 -3px 6px rgba(0, 0, 0, .1));
  transform: translateY(100%);
  transition: .3s;
}

.fixed_navigation.active {
  transform: unset;
}

.fixed_navigation ul {
  position: relative;
  display: flex;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
}

.fixed_navigation ul::before,
.fixed_navigation ul::after,
.fixed_navigation ul li:nth-of-type(n+2)::before {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: .1rem;
  height: calc(100% - 3rem);
  background: var(--color_regular);
  content: "";
}

.fixed_navigation ul::before,
.fixed_navigation ul li:nth-of-type(n+2)::before {
  left: 0;
}

.fixed_navigation ul::after {
  right: 0;
}

.fixed_navigation ul li {
  position: relative;
  width: 22rem;
}

.fixed_navigation ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
  height: 8rem;
}

.fixed_navigation ul li a figure {
  width: 8rem;
}


.fixed_navigation ul li a p {
  width: fit-content;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  white-space: nowrap;
}

.fixed_navigation ul li a p .txt_eng {
  display: block;
  margin-top: .3rem;
  font-family: var(--font_eng);
  font-size: 1.2rem;
  font-weight: 100;
}
/*--------------fixed navigation*/

/*Smart phone---------------------------------------------*/
@media screen and  (max-width:768px) {
/*all----------------------------*/
.LP_page .only_pc {
  display: none;
}

#share {
  z-index: 5 !important;
  transition: translate .5s;
}

#share.move {
  translate: 0 calc(-60 * (100vw / 430));
}

.share-txt {
  margin: 0 !important;
  padding-bottom: calc(20 * (100vw / 430));
  background: #F4F0ED;
}

/*----------------------------all*/

/*mv lead------------------------*/
.main_ttl {
  margin-bottom: calc(30 * (100vw / 430));
}

.main_lead {
  margin-bottom: calc(45 * (100vw / 430));
  font-size: calc(15 * (100vw / 430));
}

.summary_wrap {
  width: auto;
  margin: 0 auto calc(60 * (100vw / 430));
  padding: 0 calc(20 * (100vw / 430));
}

.summary_wrap h3 {
  margin-bottom: calc(15 * (100vw / 430));
  padding-bottom: calc(15 * (100vw / 430));
  border-width: calc(1 * (100vw / 430));
  font-size: calc(18 * (100vw / 430));
}

.summary_wrap dl {
  display: block;
  padding: 0;
}

.summary_wrap dl dt {
  float: left;
  display: flex;
  align-items: center;
  width: calc(120 * (100vw / 430));
  height: calc(70 * (100vw / 430));
  padding-left: calc(10 * (100vw / 430));
  font-size: calc(40 * (100vw / 430));
}

.summary_wrap dl dd {
  font-size: calc(14 * (100vw / 430));
}
/*------------------------mv lead*/

/*navigation---------------------*/
.navigation_area {
  width: auto;
  margin: 0 auto calc(50 * (100vw / 430));
  padding: 0 calc(15 * (100vw / 430));
}

.navigation_area h3 {
  margin-bottom: calc(30 * (100vw / 430));
}

.navigation_area h3::before {
  height: calc(1 * (100vw / 430));
}

.navigation_area h3 span {
  padding: 0 calc(25 * (100vw / 430));
  font-size: calc(30 * (100vw / 430));
}

.navigation_list {
  flex-wrap: wrap;
  gap: calc(10 * (100vw / 430)) calc(30 * (100vw / 430));
}

.navigation_list li a {
  width: calc(160 * (100vw / 430));
}

.navigation_list li a p {
  font-size: calc(28 * (100vw / 430));
}

.navigation_list li:nth-of-type(n+3) a p {
  order: 2;
}

.navigation_list li a p span {
  margin-bottom: calc(8 * (100vw / 430));
  font-size: calc(12 * (100vw / 430));
}
/*---------------------navigation*/

/*main contents------------------*/
.each_sec {
  padding-top: calc(50 * (100vw / 430));
}

.each_sec::before {
  height: calc(60 * (100vw / 430));
  margin-top: calc(15 * (100vw / 430));
}

@keyframes loop_twenties {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: calc(-528 * (100vw / 430)) 0;
  }
}

@keyframes loop_thirties {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: calc(-478 * (100vw / 430)) 0;
  }
}

@keyframes loop_forties {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: calc(-464 * (100vw / 430)) 0;
  }
}

@keyframes loop_fifties {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: calc(-438 * (100vw / 430)) 0;
  }
}

.each_sec .sec_inner {
  padding: calc(60 * (100vw / 430)) 0 calc(90 * (100vw / 430));
}

.each_sec:nth-last-of-type(1) .sec_inner {
  padding-bottom: calc(80 * (100vw / 430));
}

.sec_ttl_wrap {
  width: auto;
  margin: 0 auto calc(20 * (100vw / 430));
}

.sec_ttl {
  position: static;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: calc(15 * (100vw / 430));
  height: auto;
  margin-right: 0;
  font-size: calc(38 * (100vw / 430));
}

.sec_ttl .txt_eng {
  display: block;
  margin-top: 0;
  font-size: calc(28 * (100vw / 430));
}

.sec_ttl_wrap > div {
  position: relative;
  width: fit-content;
}

.character_wrap {
  margin-left: calc(30 * (100vw / 430));
  padding-top: calc(65 * (100vw / 430));
}

.catchphrase_txt {
  width: calc(260 * (100vw / 430));
}

.character_img {
  width: calc(170 * (100vw / 430));
}

.sec_lead_wrap {
  position: absolute;
  margin: calc(40 * (100vw / 430)) 0 0 calc(15 * (100vw / 430));
  padding: calc(2 * (100vw / 430)) calc(2 * (100vw / 430)) calc(20 * (100vw / 430)) calc(12 * (100vw / 430));
  border-width: calc(1 * (100vw / 430))
}

.sec_lead_wrap::before {
  width: calc(60 * (100vw / 430));
  height: calc(25 * (100vw / 430));
  margin-left: calc(-15 * (100vw / 430));
  border-width: calc(1 * (100vw / 430));
}

.sec_lead {
  font-size: calc(13 * (100vw / 430));
}

.sec_subheading {
  margin: 0 auto calc(30 * (100vw / 430));
  padding: calc(18 * (100vw / 430)) calc(30 * (100vw / 430));
  border-width: calc(1 * (100vw / 430));
  font-size: calc(18 * (100vw / 430));
}

.sec_subheading::before {
  height: calc(100% - calc(10 * (100vw / 430)));
}

.recommendItem_wrap {
  width: auto;
  margin: 0 auto calc(35 * (100vw / 430));
  padding: 0 calc(15 * (100vw / 430));
}

.content_ttl {
  margin-bottom: calc(-8 * (100vw / 430));
  font-size: calc(44 * (100vw / 430));
}

.recommendItem_wrap > div {
  display: block;
  padding: calc(25 * (100vw / 430)) calc(20 * (100vw / 430));
  border-width: calc(1 * (100vw / 430));
}

.recommendItem_wrap .itm_img {
  width: auto;
  margin-bottom: calc(20 * (100vw / 430));
}

.recommendItem_wrap .itm_catch {
  margin-bottom: calc(18 * (100vw / 430));
  font-size: calc(16 * (100vw / 430));
}

.recommendItem_wrap .itm_name {
  margin-bottom: calc(15 * (100vw / 430));
  font-size: calc(15 * (100vw / 430));
}

.recommendItem_wrap .itm_name span {
  display: block;
  width: fit-content;
  margin-bottom: calc(8 * (100vw / 430));
  padding: calc(5 * (100vw / 430)) calc(8 * (100vw / 430));
  font-size: calc(11 * (100vw / 430));
}

.recommendItem_wrap .itm_caption {
  margin-bottom: calc(20 * (100vw / 430));
  font-size: calc(12 * (100vw / 430));
}

.recommendItem_wrap .btn_wrap {
  display: flex;
  justify-content: space-between;
  gap: 0;
}

.recommendItem_wrap .itm_price_wrap {
  gap: calc(15 * (100vw / 430));
}

.recommendItem_wrap .btn_wrap .itm_price_wrap {
  gap: calc(10 * (100vw / 430));
}

.recommendItem_wrap .itm_price {
  font-size: calc(14 * (100vw / 430));
  font-weight: 500;
}

.recommendItem_wrap .itm_price .txt_S {
  font-size: calc(10 * (100vw / 430));
}

.recommendItem_wrap .itm_link a {
  width: calc(175 * (100vw / 430));
  height: calc(34 * (100vw / 430));
  border-radius: calc(5 * (100vw / 430));
  border-width: calc(1 * (100vw / 430));
  font-size: calc(13 * (100vw / 430));
}

.recommendItem_wrap .itm_link a::before {
  width: calc(6 * (100vw / 430));
  height: calc(6 * (100vw / 430));
  margin-right: calc(10 * (100vw / 430));
  border-width: calc(1 * (100vw / 430));
}

.recommendItem_wrap .itm_link a:hover::before {
  margin-right: calc(5 * (100vw / 430));
}

.recommendItem_wrap .itm_link a span {
  padding-top: calc(2 * (100vw / 430));
}

.chart_wrap {
  width: auto;
  margin: 0 auto calc(15 * (100vw / 430));
  padding: 0 calc(15 * (100vw / 430));
}

.chart_wrap > div {
  padding: calc(60 * (100vw / 430)) 0;
  border-width: calc(1 * (100vw / 430));
}

.chart_wrap .itm_list_wrap {
  width: calc(300 * (100vw / 430));
  height: calc(320 * (100vw / 430));
}

.chart_wrap .itm_list_wrap::before {
  width: calc(1 * (100vw / 430));
}

.chart_wrap .itm_list_wrap::after {
  height: calc(1 * (100vw / 430));
}

.itm_list_wrap > p {
  font-size: calc(14 * (100vw / 430));
}

.verticalLine_top {
  margin-bottom: calc(15 * (100vw / 430));
}

.verticalLine_bottom {
  margin-top: calc(15 * (100vw / 430));
}

.horizontalLine_left {
  margin-right: calc(15 * (100vw / 430));
  writing-mode: vertical-lr;
}

.horizontalLine_right {
  margin-left: calc(15 * (100vw / 430));
  writing-mode: vertical-lr;
}

.chart_wrap .itm_list li a {
  width: calc(90 * (100vw / 430));
}

#Twenties .chart_wrap .itm_list li.mark_a {
  margin: calc(30 * (100vw / 430)) 0 0 calc(30 * (100vw / 430));
}

#Twenties .chart_wrap .itm_list li.mark_b {
  margin: calc(30 * (100vw / 430)) calc(30 * (100vw / 430)) 0 0;
}

#Twenties .chart_wrap .itm_list li.mark_c {
  margin: 0 0 calc(30 * (100vw / 430)) calc(30 * (100vw / 430));
}

#Twenties .chart_wrap .itm_list li.mark_d {
  margin: 0 calc(30 * (100vw / 430)) calc(30 * (100vw / 430)) 0;
}

#Thirties .chart_wrap .itm_list li.mark_b {
  margin: calc(70 * (100vw / 430)) 0 0 calc(60 * (100vw / 430));
}

#Thirties .chart_wrap .itm_list li.mark_c {
  margin: calc(30 * (100vw / 430)) calc(30 * (100vw / 430)) 0 0;
}

#Thirties .chart_wrap .itm_list li.mark_d {
  margin: 0 0 calc(30 * (100vw / 430)) calc(30 * (100vw / 430));
}

#Thirties .chart_wrap .itm_list li.mark_e {
  margin:  0 calc(30 * (100vw / 430)) calc(30 * (100vw / 430)) 0;
}

#Forties .chart_wrap .itm_list li.mark_a {
  margin: calc(30 * (100vw / 430)) 0 0 calc(30 * (100vw / 430));
}

#Forties .chart_wrap .itm_list li.mark_b {
  margin: calc(30 * (100vw / 430)) calc(30 * (100vw / 430)) 0 0;
}

#Forties .chart_wrap .itm_list li.mark_c {
  margin: 0 0 calc(30 * (100vw / 430)) calc(30 * (100vw / 430));
}

#Forties .chart_wrap .itm_list li.mark_d {
  margin:  0 calc(30 * (100vw / 430)) calc(30 * (100vw / 430)) 0;
}

#Fifties .chart_wrap .itm_list li.mark_a {
  margin: calc(30 * (100vw / 430)) 0 0 calc(30 * (100vw / 430));
}

#Fifties .chart_wrap .itm_list li.mark_b {
  margin: calc(30 * (100vw / 430)) calc(30 * (100vw / 430)) 0 0;
}

#Fifties .chart_wrap .itm_list li.mark_c {
  margin: 0 0 calc(70 * (100vw / 430)) 0;
}

#Fifties .chart_wrap .itm_list li.mark_d {
  margin: 0 0 0 calc(60 * (100vw / 430));
}

#Fifties .chart_wrap .itm_list li.mark_e {
  margin:  0 calc(30 * (100vw / 430)) calc(30 * (100vw / 430)) 0;
}

.chart_wrap .itm_list li .itm_mark {
  font-size: calc(18 * (100vw / 430));
  margin-left: calc(2 * (100vw / 430));
}

#Thirties .chart_wrap .itm_list li.mark_b .itm_mark {
  margin: calc(5 * (100vw / 430)) 0 0 calc(13 * (100vw / 430));
}

#Fifties .chart_wrap .itm_list li.mark_c .itm_mark {
  margin: calc(10 * (100vw / 430)) 0 0 calc(10 * (100vw / 430));
}

#Fifties .chart_wrap .itm_list li.mark_d .itm_mark {
  margin: calc(5 * (100vw / 430)) 0 0 calc(8 * (100vw / 430));
}

.setItm_list {
  height: calc(830 * (100vw / 430));
  padding: calc(15 * (100vw / 430)) 0 calc(40 * (100vw / 430));
}

.setItm_list::before,
.setItm_list::after {
  height: calc(83 * (100vw / 430));
  animation: loop_wave 20s linear infinite;
}

@keyframes loop_wave {
  0%{
    mask-position: 0 0;
  }

  100% {
    mask-position: calc(-400 * (100vw / 430)) 0;
  }
}

.setItm_list::before {
  margin-top: calc(-10 * (100vw / 430));
}

.setItm_list::after {
  margin-bottom: calc(-10 * (100vw / 430));
}

.setItm_list .slick-arrow {
  width: calc(20 * (100vw / 430));
  height: calc(20 * (100vw / 430));
  border-width: calc(1 * (100vw / 430));
}

.setItm_list .slick-prev {
  margin-left: calc(-140 * (100vw / 430));
}

.setItm_list .slick-next {
  margin-left: calc(140 * (100vw / 430));
}

.setItm_list .slick-track {
  display: flex;
}

.each_setItm {
  width: calc(260 * (100vw / 430));
  height: auto !important;
  margin: 0 calc(15 * (100vw / 430));
  scale: 0.85;
}

.each_setItm .itm_mark {
  margin-bottom: calc(2 * (100vw / 430));
  font-size: calc(30 * (100vw / 430));
}

.each_cat {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: calc(60 * (100vw / 430)) 0 calc(35 * (100vw / 430));
  border-width: calc(1 * (100vw / 430));
  flex: 1;
}

.each_cat.itm_cleansing {
  min-height: calc(430 * (100vw / 430));
  padding-right: 0;
}

.each_cat.itm_lotion {
  min-height: calc(360 * (100vw / 430));
  padding-left: 0;
}

.each_setItm .itm_img {
  width: calc(160 * (100vw / 430));
  margin: 0 auto;
}

.itm_lotion .itm_img {
  order: unset;
}

.each_setItm .txt_wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding-bottom: calc(15 * (100vw / 430));
}

.each_setItm .itm_cat {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  margin: calc(15 * (100vw / 430)) 0 0;
  font-size: calc(30 * (100vw / 430));
  white-space: nowrap;
}

.each_setItm .itm_cath {
  margin-bottom: 0;
  font-size: calc(12 * (100vw / 430));
}

.each_setItm .itm_name {
  margin-bottom: 0;
  font-size: calc(11 * (100vw / 430));
}

.each_setItm .txt_wrap > div {
  display: block;
}

.each_setItm .itm_price {
  font-size: calc(11 * (100vw / 430));
}

.each_setItm .itm_price .txt_S {
  font-size: calc(10 * (100vw / 430));
}

.each_setItm .itm_link {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.each_setItm .itm_link a {
  width: auto;
  height: calc(35 * (100vw / 430));
  border: none;
  font-size: calc(18 * (100vw / 430));
  transition: unset;
}

.each_setItm .itm_link a:hover {
  background: #000;
  color: #fff;
}

.each_setItm .itm_comingSoon {
  position: absolute;
  bottom: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: calc(35 * (100vw / 430));;
  padding: 0;
  font-size: calc(13 * (100vw / 430));
}

.sec_btn {
  margin: calc(30 * (100vw / 430)) auto 0;
}

.sec_btn a {
  width: calc(360 * (100vw / 430));
  height: calc(52 * (100vw / 430));
  border-width: calc(1 * (100vw / 430));
  font-size: calc(15 * (100vw / 430));
}

.btn_allItems a {
  width: calc(400 * (100vw / 430));
  height: calc(64 * (100vw / 430));
  border-width: calc(1 * (100vw / 430));
  font-size: calc(20 * (100vw / 430));
}
/*------------------main contents*/

/*ending-------------------------*/
.ending_area {
  padding-bottom: calc(220 * (100vw / 430));
}

.ending_area::before {
  height: calc(10 * (100vw / 430));
  margin-top: calc(-5 * (100vw / 430));
}

.ending_area .for_bg::before {
  background: url(../img/bg_001_sp.jpg) center center / cover no-repeat;
} 

.ending_area .upper_layer {
  padding: calc(40 * (100vw / 430)) 0 calc(60 * (100vw / 430));
  background: var(--color_bg_02);
}

.buyerProfile_wrap {
  display: block;
  width: calc(400 * (100vw / 430));
  padding: calc(20 * (100vw / 430));
}

.buyer_img {
  float: left;
  width: calc(70 * (100vw / 430));
  margin-right: calc(15 * (100vw / 430));
}

.buyerProfile_wrap .txt_wrap {
  flex: 1;
}

.buyer_name {
  height: calc(70 * (100vw / 430));
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-size: calc(13 * (100vw / 430));
}

.buyer_name .txt_S {
  display: block;
  margin-bottom: calc(8 * (100vw / 430));
  font-size: calc(11 * (100vw / 430));
}

.buyer_name .position {
  margin-right: calc(6 * (100vw / 430));
  padding: calc(3 * (100vw / 430)) calc(5 * (100vw / 430));
  border-radius: calc(2 * (100vw / 430));
  font-size: calc(11 * (100vw / 430));
}

.profile_txt {
  margin-top: calc(15 * (100vw / 430));
  font-size: calc(12 * (100vw / 430));
}

/*-------------------------ending*/

/*link collection---------------*/
.linkCollection_area {
  padding: calc(50 * (100vw / 430)) 0 calc(70 * (100vw / 430));
}

.linkCollection_list {
  width: auto;
}

.linkCollection_list li:nth-of-type(n+2) {
  margin-top: calc(50 * (100vw / 430));
}

.linkCollection_list li h3 {
  margin-bottom: calc(10 * (100vw / 430));
  font-size: calc(16 * (100vw / 430));
}

.bnr_cold h3 .txt_L {
  margin-right: calc(8 * (100vw / 430));
  font-size: calc(26 * (100vw / 430));
}

.bnr_cold h3 .txt_S {
  font-size: calc(15 * (100vw / 430));
}

.bnr_OrganinDays h3 .txt_eng {
  font-size: calc(25 * (100vw / 430));
}

.linkCollection_list li figure {
  width: calc(350 * (100vw / 430));
  margin: 0 auto;
}

/*---------------link collection*/

/*fixed navigation--------------*/
.fixed_navigation ul {
  width: auto;
}

.fixed_navigation ul::before,
.fixed_navigation ul::after {
  display: none;
}

.fixed_navigation ul li:nth-of-type(n+2)::before {
  width: calc(1 * (100vw / 430));
  height: calc(100% - calc(22 * (100vw / 430)));
}

.fixed_navigation ul li {
  position: relative;
  width: calc(100% / 4);
}

.fixed_navigation ul li a {
  gap: calc(3 * (100vw / 430));
  height: calc(66 * (100vw / 430));
}

.fixed_navigation ul li a figure {
  width: calc(44 * (100vw / 430));
}

.fixed_navigation ul li a p {
  font-size: calc(16 * (100vw / 430));
}

.fixed_navigation ul li a p .txt_eng {
  margin-top: calc(3 * (100vw / 430));
  font-size: calc(10 * (100vw / 430));
}
/*--------------fixed navigation*/
}

/*---------------------------------------------Smart phone*/

/*PC------------------------------------------------------*/
@media screen and  (min-width:769px) {
  .only_sp {
    display: none;
  }

  #header_bottom .inner {
    width: 100%;
  }
}
/*------------------------------------------------------PC*/

/*レスポンシブ＆タブレット対応-------------------------------*/
@media screen and (max-width: 1600px){
  html {
    font-size: calc(10 * (100vw / 1600));
  }
}
/*-------------------------------レスポンシブ＆タブレット対応*/