@charset "UTF-8";
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - custom property
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.MC250724moon {
  --color-white: #fff;
  --color-black: #000;
  --color-darkblue: #4A4751;
  --color-orange: #FFE3C9;
  --font-yu: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "Open Sans", "メイリオ", sans-serif;
  --font-utopia: "utopia-std", serif;
  --font-ja: var(--font-yu);
  --font-en: var(--font-utopia);
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  text-align: center;
  overflow: clip;
  color: var(--color-orange);
  font-weight: var(--font-weight-regular);
}
#Contents {
  overflow: clip;
}
.MC250724moon {
  --pc-width: 1440;
  --sp-width: 375;
  --pc-artboard-width: 490;
  --sp-artboard-width: 375;
  --formula: calc(var(--variable) * var(--ratio)); /*SP→PC 可変設定*/
  --formula_pc: calc(var(--variable) * 1); /*PC 1400以上は固定*/
}

@media (min-width: 1401px) {
  .MC250724moon {
    --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width));
    --variable: 1px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .MC250724moon {
    --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width));
    --variable: calc(100vw / var(--pc-width));
  }
}
@media (max-width: 767px) {
  .MC250724moon {
    --ratio: 1;
    --variable: calc(100vw / var(--sp-width));
    /* margin-top: calc(-103*var(--variable)*var(--ratio)); */
  }
}

.main-area {
  padding-top: 190px;
}

.main-area.lp {
  background-color: #4A4751;
  background-size: 100% auto;
  background-position: top center;
  position: relative;
  z-index: 0;
  margin-bottom: 0;
}
@media (max-width: 767px) {
.main-area {
  padding-top: 154px;
}
}

.header .header__inner {
  position: relative;
}

.header .header__inner::after {
  position: absolute;
  content: "";
  opacity: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: opacity .5s ease;
  z-index: -1;
}
/* 
.header .header__inner::before,
.header .header__inner::after {
  position: absolute;
  content: "";
  opacity: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: opacity .5s ease;
  z-index: -1;
}
.header .header__inner.is-odd-section::after {
  opacity: 1;
  background: linear-gradient(0deg, rgba(240, 188, 85, 0) 0%, rgba(189, 198, 225, 1) 100%);
} */
.header .header__inner::after {
  opacity: 1;
  background: linear-gradient(0deg, rgba(74, 71, 81, 0) 0%, rgba(74, 71, 81, 1) 100%);
}
.header .header__inner.is-odd-section::after {
  opacity: 1;
  background: linear-gradient(0deg, rgba(255, 227, 201, 0) 0%, rgba(255, 227, 201, 1) 100%);
}

.header__inner .header-logo svg path,
.header__inner .header-nav a svg path{
  fill: #ffffff !important;
}

.header__inner .header-nav__menuBtn--border span {
  background-color: #fff !important;
}

.header__inner .header-logo.active a path,
.header__inner .header-nav__user.active a path,
.header__inner .header-nav__search.active a path,
.header__inner .header-nav__cart.active a path{
  fill: var(--color-main) !important;
}

.header__inner .header-nav__user.active a path,
.header__inner .header-nav__search.active a path,
.header__inner .header-nav__cart.active a path{
  fill: var(--color-main) !important;
}

.header__inner .header-nav__menuBtn.open span{
  background-color: var(--color-main) !important;
}

.header__inner .menu-ttl a{
  color: #fff !important;
}

.header__inner .toggle-arrow::before, .header__inner .toggle-arrow::after {
  background: #fff !important;
}

.header__inner .svgPath-logo{
  fill: rgb(255, 255, 255)!important;
}

.header__inner.is-odd-section .header-logo svg path,
.header__inner.is-odd-section .header-nav a svg path{
  fill: #000 !important;
}

.header__inner.is-odd-section .header-nav__menuBtn--border span {
  background-color: #000 !important;
}

.header__inner.is-odd-section .header-logo.active a path,
.header__inner.is-odd-section .header-nav__user.active a path,
.header__inner.is-odd-section .header-nav__search.active a path,
.header__inner.is-odd-section .header-nav__cart.active a path{
  fill: var(--color-main) !important;
}

.header__inner.is-odd-section .header-nav__user.active a path,
.header__inner.is-odd-section .header-nav__search.active a path,
.header__inner.is-odd-section .header-nav__cart.active a path{
  fill: var(--color-main) !important;
}

.header__inner.is-odd-section .header-nav__menuBtn.open span{
  background-color: var(--color-main) !important;
}

.header__inner.is-odd-section .menu-ttl a{
  color: #000 !important;
}

.header__inner.is-odd-section .toggle-arrow::before, .header__inner.is-odd-section .toggle-arrow::after {
  background: #000 !important;
}

.header__inner.is-odd-section .svgPath-logo{
  fill: rgb(0, 0, 0)!important;
}

/*
//////////////////////////////////////////////////////////////////////////////////////////////
component - others
//////////////////////////////////////////////////////////////////////////////////////////////
*/
@media screen and (min-width: 768px) {
  .MC250724moon .hidden-desktop {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .MC250724moon .hidden-mobile {
    display: none !important;
  }
}
.MC250724moon img,
.MC250724moon video {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - position
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.MC250724moon .common-position {
  position: absolute;
}
.MC250724moon .common-grid {
  display: grid;
  gap: var(--row, 0) var(--column, 0);
}
.MC250724moon .common-flex_row {
  display: flex;
  flex-direction: row;
  gap: var(--row, 0) var(--column, 0);
}
.MC250724moon .common-flex_row_reverse {
  display: flex;
  flex-direction: row-reverse;
  gap: var(--row, 0) var(--column, 0);
}
.MC250724moon .common-flex_column {
  display: flex;
  flex-direction: column;
  gap: var(--row, 0) var(--column, 0);
}
.MC250724moon .common-flex_column_reverse {
  display: flex;
  flex-direction: column-reverse;
  gap: var(--row, 0) var(--column, 0);
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - hero
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.MC250724moon .hero {
  position: relative;
  z-index: 5;
}
.MC250724moon .hero_title01 {
  width: calc(298 * var(--variable) * var(--ratio));
  top: calc(37 * var(--variable) * var(--ratio));
  left: calc(39 * var(--variable) * var(--ratio));
  position: absolute;
  z-index: 10;
}
.MC250724moon .hero_title02 {
  width: calc(330 * var(--variable) * var(--ratio));
  top: calc(395 * var(--variable) * var(--ratio));
  left: calc(23 * var(--variable) * var(--ratio));
  position: absolute;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .MC250724moon .hero_image {
    width: calc(850 * var(--formula_pc));
    margin: 0 auto;
  }
  .MC250724moon .hero_title01 {
    width: calc(579 * var(--formula_pc));
    top: calc(50 * var(--formula_pc));
    left: 50%;
    transform: translateX(-50%);
  }
  .MC250724moon .hero_title02 {
    width: calc(643 * var(--formula_pc));
    top: calc(614 * var(--formula_pc));
    left: 50%;
    transform: translateX(-50%);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - fixed
//////////////////////////////////////////////////////////////////////////////////////////////
*/
@media screen and (min-width: 768px) {
  .MC250724moon .fixed_container {
    position: sticky;
    top: calc(100vh - min(320*100vw/1440, 320px));
    /* margin-top: max(-320*100vw/1440, -320px); */
  }
  .MC250724moon .fixed_container {
    color: #234E2B;
  }
  .MC250724moon.is-odd-section .fixed_container {
    color: #891921;
  }
  .MC250724moon .fixed_inner {
    position: relative;
    justify-content: space-between;
    margin-top: min(295*100vw/1400, 295px);
  }
  .MC250724moon .fixed_list {
    --row: min(16*100vw/1440, 16px);
    margin-top: auto;
    margin-bottom: min(42*100vw/1440, 42px);
    margin-left: min(40*100vw/1440, 40px);
  }
  .MC250724moon .fixed_title {
    font-size: min(22*100vw/1440, 22px);
    line-height: 1;
    letter-spacing: .05em;
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-en);
    opacity: .25;
    transition: opacity 0.3s;
  }
  .MC250724moon .fixed_title.is-active {
    opacity: 1;
  }
  .MC250724moon .fixed_title span {
    display: inline-block;
    font-size: min(26*100vw/1440, 26px);
    font-weight: var(--font-weight-semibold);
  }
  .MC250724moon .fixed_btn {
    width: min(180*100vw/1440, 180px);
    margin-top: auto;
    margin-bottom: min(42*100vw/1440, 42px);
    margin-right: min(40*100vw/1440, 40px);
  }
  .MC250724moon .scroll_container {
    margin-top: max(-655*100vw/1440, -655px);
    padding-top: min(20*100vw/1400, 20px);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - main_container
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.MC250724moon .detail_inner,
.MC250724moon .product_inner {
  width: calc(375*var(--variable)*var(--ratio));
  margin: 0 auto;
  overflow: clip;
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - detail
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.MC250724moon .detail_inner {
  position: relative;
  z-index: 2;
}
.MC250724moon .detail_lead {
  font-size: calc(12 * var(--variable) * var(--ratio));
  line-height: 2;
  letter-spacing: .08em;
  font-weight: var(--font-weight-medium);
  font-family: var(--font-ja);
  text-align: center;
}
.MC250724moon .detail_box {
  box-sizing: border-box;
  width: calc(280*var(--variable)*var(--ratio));
  margin: calc(40*var(--variable)*var(--ratio)) auto 0;
  border: solid 1px var(--color-orange);
  padding-block: calc(12 * var(--variable) * var(--ratio)) calc(13 * var(--variable) * var(--ratio));
}
.MC250724moon .detail_box .detail_date {
  font-size: calc(14*var(--variable)*var(--ratio));
  line-height: 2;
  letter-spacing: .08em;
  font-weight: var(--font-weight-light);
  font-family: var(--font-ja);
  text-align: center;
}
.MC250724moon .detail_box .detail_date span {
  font-size: calc(12*var(--variable)*var(--ratio));
  line-height: 2.3333333333;
}

@media screen and (min-width: 768px) {
  .MC250724moon .detail_inner {
    padding-bottom: calc(20 * var(--variable));
  }
  .MC250724moon .detail_box .detail_date {
    font-size: calc(13 * var(--variable) * var(--ratio));
  }
  .MC250724moon .detail_box .detail_date span {
    font-size: calc(11*var(--variable)*var(--ratio));
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - product
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.MC250724moon .product {
  padding-top: calc(54 * var(--variable) * var(--ratio));
  position: relative;
  width: calc(375 * var(--variable) * var(--ratio));
  margin: 0 auto;
}
.MC250724moon .product_maintitle {
  font-size: calc(40*var(--variable)*var(--ratio));
  letter-spacing: 0.02em;;
  font-family: var(--font-en);
  margin-top: calc(47 * var(--variable) * var(--ratio));
}
.MC250724moon .product_bg_left {
  background-image: url(../img/left_line.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
  width: calc(20 * var(--variable) * var(--ratio));
  height: calc(1540 * var(--variable) * var(--ratio));
  position: absolute;
  top: 0;
  z-index: -1;
}
.MC250724moon .product_bg_right {
  background-image: url(../img/right_line.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
  width: calc(20 * var(--variable) * var(--ratio));
  height: calc(1540 * var(--variable) * var(--ratio));
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.MC250724moon .product_image {
  width: calc(60 * var(--variable) * var(--ratio));
  margin: calc(40 * var(--variable) * var(--ratio)) auto 0;
}

.MC250724moon .product_detail {
  position: relative;
  z-index: 2;
  overflow: clip;
  width: calc(335*var(--variable)*var(--ratio));
  margin: calc(6*var(--variable)*var(--ratio)) auto 0;
  padding: calc(37*var(--variable)*var(--ratio)) 0 calc(60*var(--variable)*var(--ratio));
  background-color: var(--color_bg-white);
}
.MC250724moon .product_detail::before {
  position: absolute;
  content: "";
  width: calc(335*var(--variable)*var(--ratio));
  height: calc(1003*var(--variable)*var(--ratio));
  background-image: url(../img/product_detail_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
.MC250724moon .product_detail_content {}
.MC250724moon .product_detail_title {
  font-size: calc(16*var(--variable)*var(--ratio));
  line-height: 1.5;
  letter-spacing: .07em;
  font-weight: var(--font-weight-medium);
  font-family: var(--font-ja);
  text-align: center;
}
.MC250724moon .product_detail_title {
  font-size: calc(16*var(--variable)*var(--ratio));
  line-height: 1.5;
  letter-spacing: .07em;
  font-weight: var(--font-weight-medium);
  font-family: var(--font-ja);
}
.MC250724moon .product_detail_lead {
  font-size: calc(12*var(--variable)*var(--ratio));
  line-height: 2;
  letter-spacing: .08em;
  font-weight: var(--font-weight-medium);
  font-family: var(--font-ja);
  text-align: justify;
  width: calc(234*var(--variable)*var(--ratio));
  margin: 0 auto;
  margin-top: calc(20*var(--variable)*var(--ratio));
  margin-bottom: calc(23*var(--variable)*var(--ratio));
}
.MC250724moon .product_detail_btn {
  width: calc(200*var(--variable)*var(--ratio));
  margin: 0 auto;
  padding-top: calc(25 * var(--variable) * var(--ratio));
  cursor: pointer;
}
.MC250724moon .product_detail_btn h4 {
  font-size: calc(16*var(--variable)*var(--ratio));
  letter-spacing: .07em;
  font-weight: var(--font-weight-semibold);
  font-family: var(--font-en);
}
.MC250724moon .product_detail_image {
  width: calc(270 * var(--variable) * var(--ratio));
  margin: calc(53 * var(--variable) * var(--ratio)) auto calc(23* var(--variable));
}

.MC250724moon .product_content {
  position: relative;
}
.MC250724moon .product_content01 {
  z-index: 1;
}
.MC250724moon .product_content02 {
  z-index: 0;
}
.MC250724moon .product_content03 {
  z-index: 3;
}
.MC250724moon .product_content04 {
  z-index: 4;
  padding-top: calc(60 * var(--variable) * var(--ratio));
  position: relative;
}
.MC250724moon .product_content04 .css-section4_wrapper {
  width: calc(335 * var(--variable) * var(--ratio));
  margin: 0 auto;
}
.MC250724moon .product_content05 {
  z-index: 5;
}
.MC250724moon .product_content.is-show::after {
  opacity: .9;
}
.MC250724moon .product_text {
  margin-top: calc(20.*var(--variable)*var(--ratio));
  font-size: calc(12*var(--variable)*var(--ratio));
  line-height: 1.5;
  letter-spacing: .07em;
  font-weight: var(--font-weight-medium);
  font-family: var(--font-ja);
  color: var(--color-black);
  text-align: center;
}
.MC250724moon .product_slider {
  width: calc(375*var(--variable)*var(--ratio));
}
.MC250724moon .product_lead {
  font-size: calc(13*var(--variable)*var(--ratio));
  line-height: 2;
  letter-spacing: .07em;
  font-weight: var(--font-weight-medium);
  font-family: var(--font-ja);
  color: var(--color-black);
  white-space: nowrap;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .MC250724moon .product {
    padding-top: calc(70 * var(--formula_pc));
  }
  .MC250724moon .detail_lead {
      font-size: calc(14 * var(--formula_pc));
  }
  .MC250724moon .detail_box {
    margin: calc(72 * var(--formula_pc)) auto 0;
    padding-block: calc(16 * var(--formula_pc)) calc(30 * var(--formula_pc));
  }
  .MC250724moon .product_image {
    margin: calc(33 * var(--formula_pc)) auto 0;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - product_fragrance
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.MC250724moon .product_fragrance .product_content01 {
  margin-top: calc(17 * var(--variable) * var(--ratio));
}
.MC250724moon .product_fragrance .product_content01::before{
  content: none !important;
}
.MC250724moon .product_fragrance .product_content02 {
  padding-bottom: calc(80 * var(--variable) * var(--ratio));
}
.MC250724moon .product_fragrance .product_content02 .css-image {
  width: calc(340 * var(--variable) * var(--ratio));
  margin: 0 auto;
  margin-top: calc(81 * var(--variable) * var(--ratio));
}
.MC250724moon .product_fragrance .product_content04 {
  margin-top: calc(80*var(--variable)*var(--ratio));
}
.MC250724moon .product_fragrance .product_content_title {
  font-family: var(--font-en);
  font-size: calc(18 * var(--variable) * var(--ratio));
  padding-top: calc(19 * var(--variable) * var(--ratio));
}
.MC250724moon .product_fragrance .product_content02::before {
  position: absolute;
  content: "";
  width: calc(375 * var(--variable) * var(--ratio));
  height: calc(962 * var(--variable) * var(--ratio));
  z-index: -1;
  background-image: url(../img/sec01_bg.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.MC250724moon .product_fragrance .product_content01::before {
  top: calc(0*var(--variable)*var(--ratio));
  left: calc(0*var(--variable)*var(--ratio));
}
.MC250724moon .product_fragrance .product_content02::before {
  left: 50%;
  transform: translateX(-50%);
}
.MC250724moon .product_fragrance .product_content03::before {
  top: calc(82*var(--variable)*var(--ratio));
  right: calc(.5*var(--variable)*var(--ratio));
}
.MC250724moon .product_fragrance .product_content04::before {
  top: calc(0*var(--variable)*var(--ratio));
  left: 50%;
  transform: translateX(-50%);
}
.MC250724moon .product_fragrance .product_title01 {
  width: calc(133*var(--variable)*var(--ratio));
  top: calc(-60*var(--variable)*var(--ratio));
  left: calc(20*var(--variable)*var(--ratio));
}
.MC250724moon .product_fragrance .product_title02 {
  width: calc(45*var(--variable)*var(--ratio));
  top: calc(133*var(--variable)*var(--ratio));
  left: calc(47*var(--variable)*var(--ratio));
}
.MC250724moon .product_fragrance .product_title03 {
  width: calc(226*var(--variable)*var(--ratio));
  top: calc(351*var(--variable)*var(--ratio));
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .MC250724moon .product_detail {
    margin: calc(6 * var(--formula_pc)) auto 0;
    padding: calc(41 * var(--formula_pc)) 0 calc(60 * var(--formula_pc));
  }
  .MC250724moon .product_detail_title {
      font-size: calc(21 * var(--formula_pc));
  }
  .MC250724moon .product_detail_image {
    width: calc(365 * var(--formula_pc));
      margin: calc(44 * var(--variable) * var(--ratio)) auto calc(30 * var(--variable));
  }
  .MC250724moon .product_detail_lead {
    font-size: calc(15 * var(--formula_pc));
    /* width: calc(280 * var(--formula_pc)); */
    margin-top: calc(15 * var(--variable) * var(--ratio));
    margin-bottom: calc(21 * var(--variable) * var(--ratio));
  }
  .MC250724moon .product_detail_btn {
      padding-top: calc(18 * var(--variable) * var(--ratio));
  }
  .MC250724moon .product_detail_btn h4 {
      font-size: calc(19 *  var(--formula_pc));
  }
  .MC250724moon .product_fragrance .product_content01 {
    margin-top: calc(10.5 * var(--variable) * var(--ratio));
  }
  .MC250724moon .product_fragrance .product_content_title {
    font-size: calc(21 * var(--formula_pc));
  }
  .MC250724moon .product_fragrance .product_content02 .css-image {
      margin-top: calc(83 * var(--variable) * var(--ratio));
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - product_artpiece
//////////////////////////////////////////////////////////////////////////////////////////////
*/
/* デフォルトの背景色（例: 透明、または白など）とトランジションを設定 */
.MC250724moon .product_artpiece {
  width: 100%;
  background-color: transparent; /* 初期の色。必要に応じて変更 */
  position: relative;
  padding-top: 0;
  /* background-colorの変化にトランジションを設定 */
  transition: background-color 0.5s ease-in-out; /* 0.8秒かけて滑らかに変化 */
}

/* スクロールで表示されたときに付与するクラス */
.MC250724moon .product_artpiece.is-active-bg {
  background-color: var(--color-orange); /* アクティブ時の背景色 */
}

.MC250724moon .product_artpiece .product_content_title {
  font-family: var(--font-en);
  font-size: calc(18 * var(--variable) * var(--ratio));
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: var(--color-darkblue);
  font-feature-settings: "palt";
  margin-top: calc(14 * var(--variable) * var(--ratio));
}
.MC250724moon .product_artpiece .product_content04 .product_content_title {
  margin-top: calc(14 * var(--variable) * var(--ratio));
}
.MC250724moon .product_artpiece .product_content_img {
  width: 100%;
  margin: calc(37 * var(--variable) * var(--ratio)) auto 0;
}
.MC250724moon .product_artpiece .product_content {
  width: fit-content;
  height: fit-content;
}
.MC250724moon .product_artpiece .product_content01 {
  margin: calc(8*var(--variable)*var(--ratio)) auto 0;
}
.MC250724moon .product_artpiece .product_content02 {
  margin: calc(58*var(--variable)*var(--ratio)) auto 0;
}
.MC250724moon .product_artpiece .product_content::before {
  background-color: #F7D659;
}
.MC250724moon .product_artpiece .product_text {
  margin-top: calc(17*var(--variable)*var(--ratio));
}
@media screen and (min-width: 768px) {
  .MC250724moon .product_artpiece {
      padding-bottom: calc(2 * var(--variable) * var(--ratio));
  }
  .MC250724moon .product_artpiece .product_content_title {
      font-size: calc(21 * var(--formula_pc));
      margin-top: calc(15 * var(--variable) * var(--ratio));
  }
  .MC250724moon .product_artpiece .product_content_img {
      margin: calc(44 * var(--variable) * var(--ratio)) auto 0;
  }
  .MC250724moon .product_artpiece .product_content_img02 {
      margin: calc(41 * var(--variable) * var(--ratio)) auto 0;
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - closing
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.MC250724moon .closing {
  width: calc(375 * var(--variable) * var(--ratio));
  margin: 0 auto;
  background-color: var(--color-lightblue);
  padding-bottom: calc(49 * var(--variable) * var(--ratio));
}
.MC250724moon .closing .product_content_title {
  font-family: var(--font-en);
  font-size: calc(18 * var(--variable) * var(--ratio));
  padding-top: calc(19 * var(--variable) * var(--ratio));
}
.MC250724moon .closing .product_content_img {
  margin-top: calc(71 * var(--variable) * var(--ratio));
}
.MC250724moon .closing_inner {
  position: relative;
}
.MC250724moon .closing_deco01 {
  width: calc(100 * var(--variable) * var(--ratio));
  position: absolute;
  top: calc(61 * var(--variable) * var(--ratio));
  left: calc(-29 * var(--variable) * var(--ratio));
  z-index: 5;
}
.MC250724moon .closing_deco02 {
  width: calc(107 * var(--variable) * var(--ratio));
  position: absolute;
  top: calc(218 * var(--variable) * var(--ratio));
  right: calc(-26 * var(--variable) * var(--ratio));
  z-index: 5;
}
.MC250724moon .closing_btn {
  width: calc(180 * var(--variable) * var(--ratio));
  margin: 0 auto;
  margin-top: calc(61 * var(--variable) * var(--ratio));
}
.MC250724moon .closing_copy {
  font-size: calc(10*var(--variable)*var(--ratio));
  line-height: 1.2;
  letter-spacing: .08em;
  font-family: var(--font-en);
  text-align: center;
  margin-top: calc(51 * var(--variable) * var(--ratio));
}
@media screen and (min-width: 768px) {
  .MC250724moon .closing .product_content_img {
      margin-top: calc(67 * var(--variable) * var(--ratio));
  }
}

/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - animation
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.MC250724moon .js-accordion-content {
  display: none;
}
.MC250724moon .js-accordion-toggle .product_detail_btn-close {
  display: none;
}
.MC250724moon .js-accordion-toggle.is-open .product_detail_btn-open {
  display: none;
}
.MC250724moon .js-accordion-toggle.is-open .product_detail_btn-close {
  display: block;
}
/* @media screen and (max-width: 767px) {
  .MC250724moon .product_content:hover .js-hoverContents {
    opacity: 1;
    pointer-events: initial;
  }
} */
.MC250724moon .product_content.is-show .js-hoverContents {
  opacity: 1;
  pointer-events: initial;
}
/* @media screen and (min-width: 768px) {
} */
.MC250724moon .js-hoverContents {
  position: absolute;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  transition: opacity .5s ease;
}
.MC250724moon .js-hoverContents:has(.product_lead) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: calc(40*var(--variable)*var(--ratio));
}
.MC250724moon .product_content01 .js-hoverContents {
  top: calc(120*var(--variable)*var(--ratio));
  left: 50%;
  transform: translate(-50%);
}
.MC250724moon .product_content02 .js-hoverContents {
  top: calc(156*var(--variable)*var(--ratio));
  left: calc(24*var(--variable)*var(--ratio));
}
.MC250724moon .product_content03 .js-hoverContents {
  top: calc(172*var(--variable)*var(--ratio));
  left: calc(135*var(--variable)*var(--ratio));
}
.MC250724moon .product_content04 .js-hoverContents {
  top: calc(81*var(--variable)*var(--ratio));
  left: 50%;
  transform: translateX(-50%);
}

  .MC250724moon .js-fade {
    opacity: 0;
    transform: scale(1.05);
    transition: ease-in, opacity 1500ms, transform 1500ms;
  }
  .MC250724moon .js-fade--active {
    opacity: 1;
    transform: translate3d(0px, 0px, 0px) scale3d(1.001, 1.001, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
  }

  .MC250724moon .js-fadeIn-load {
  opacity: 0;
  transform: opacity 0.3s ease;
}

  .MC250724moon .js-fadeIn-load.active {
  animation: fadeIn-load 1s forwards;
}

@keyframes fadeIn-load {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
  .MC250724moon .js-fadeIn-load.delay1 {
    transition-delay: 1s;
    animation-delay: 1s;
  }
  .MC250724moon .js-fadeIn-load.delay2 {
    transition-delay: 2s;
    animation-delay: 2s;
  }

.MC250724moon .js-fadeUp {
  opacity: 0;
  transition: translate 1s, opacity 0.5s, transform 0.5s;
  transform: translateY(30px);
}

.MC250724moon .js-fadeUp.js-active {
  opacity: 1;
  transform: translateY(0);
}

  .MC250724moon .s-view {
    display: none;
  }
  .MC250724moon .css-hover {
    display: block;
    position: relative;
    cursor: pointer;
  }
  .MC250724moon .css-credit_all {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
  }
  .MC250724moon .js-hover {
    position: absolute;
    top: 0;
    left: 0;
    background-color: transparent;
    opacity: 0;
    width: calc(100% + 1px);
    height: calc(100% + 1px);
    z-index: 3;
    transition: ease-in, background-color 0.5s, opacity 0.5s;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
  }

  .MC250724moon .css-image0302 .js-hover {
    width: 100%;
    height: 100%;
  }

  .MC250724moon .product_slider .js-hover {
    width: 100%;
    height: 100%;
  }

  .MC250724moon .product_content02 .js-hover {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 10px);
    height: calc(100% + 10px);
  }

  .MC250724moon .product_content02 .js-hover--active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background-image: url(../img/credit_bg.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    opacity: 0.5;
    
    z-index: -1; 
  }

  .MC250724moon .js-hover--active {
    background-color: rgba(74, 71, 81, 0.8); 
    opacity: 1;
  }
  .MC250724moon .product_artpiece .js-hover--active {
   background-color: rgba(255, 227, 201, 0.7); 
    opacity:1;
  }

  .MC250724moon .product_content02 .js-hover--active {
    background-color: rgba(74, 71, 81, 0); 
  }

  .MC250724moon .js-hover .css-bk_credit,
  .MC250724moon .js-hover .css-credit {
    width: 100%;
    height: fit-content;
    position: relative;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }
  /* .MC250724moon .product_artpiece .product_content03 .js-hover .css-bk_credit,
  .MC250724moon .product_artpiece .product_content03 .js-hover .css-credit {
    top: calc(232 * var(--variable) * var(--ratio));
    left: 50%;
    transform: translateX(-50%);
  }
  .MC250724moon .product_artpiece .product_content04 .js-hover .css-bk_credit,
  .MC250724moon .product_artpiece .product_content04 .js-hover .css-credit {
    top: calc(223 * var(--variable) * var(--ratio));
    left: 50%;
    transform: translateX(-50%);
  } */
  .MC250724moon .product_content02 .js-hover .css-bk_credit,
  .MC250724moon .product_content02 .js-hover .css-credit {
    transform: translate(-50%, -39%);
  }
  .MC250724moon .top-space02 {
    margin-top: calc(18*var(--variable)*var(--ratio));
  }
  .MC250724moon .js-hover .css-bk_credit .css-credit_link,
  .MC250724moon .js-hover .css-credit .css-credit_link {
    position: relative;
    z-index: 2;
    display: inline-block;
    font-family: var(--font-ja);
    font-weight: var(--font-weight-medium);
    font-size: calc(12*var(--variable)*var(--ratio));
    line-height: 1.5;
    letter-spacing: 0.07em;
    text-align: center;
    color: var(--color-orange);
  }
  .MC250724moon .top-space {
    margin-top: calc(18 * var(--variable) * var(--ratio));
  }
  .MC250724moon .product_artpiece .js-hover .css-bk_credit .css-credit_link,
  .MC250724moon .product_artpiece .js-hover .css-credit .css-credit_link {
    color: var(--color-darkblue);
  }

.MC250724moon .product_content06 {
  width: calc(375 * var(--variable) * var(--ratio));
  margin: 0 auto;
  overflow: clip;
  background-image: url(../img/img06_bg.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  /* height: calc(375 * var(--variable) * var(--ratio)); */
  margin-top: calc(30 * var(--variable) * var(--ratio));
}

.MC250724moon .product_content06 .css-hover {
    padding-bottom: calc(44 * var(--variable) * var(--ratio));
}

.MC250724moon .product_content06 .product_slider {
  pointer-events: none;
}

.MC250724moon .product_content06 .css-image {
  width: calc(280 * var(--variable) * var(--ratio));
  margin: 0 auto;
  padding-top: calc(47 * var(--variable) * var(--ratio));
}
.MC250724moon .product_content06 .js-hover--active {
  height: calc(375 * var(--variable) * var(--ratio));
}
@media screen and (min-width: 768px) {
  .MC250724moon .closing_inner {
    margin-top: 0;
  }
  .MC250724moon .closing_title {
      width: calc(268 * var(--variable) * var(--ratio));
      position: relative;
      left: calc(-2 * var(--variable) * var(--ratio));
  }
  .MC250724moon .closing .product_content_title {
      font-size: calc(22 * var(--formula_pc));
  }
  .MC250724moon .closing_btn {
      margin-top: calc(62 * var(--variable) * var(--ratio));
  }
  .MC250724moon .closing_copy {
      font-size: calc(9.2 * var(--variable) * var(--ratio));
      position: relative;
      left: calc(-10 * var(--variable) * var(--ratio));
      margin-top: calc(54 * var(--variable) * var(--ratio));
  }
  .MC250724moon .product_content06 {
      margin-top: calc(34 * var(--variable) * var(--ratio));
  }
  .MC250724moon .closing_deco01 {
      top: calc(93 * var(--variable) * var(--ratio));
      left: calc(-52 * var(--variable) * var(--ratio));
  }
  .MC250724moon .closing_deco02 {
      top: calc(259 * var(--variable) * var(--ratio));
      right: calc(-40 * var(--variable) * var(--ratio));
  }
}


/*--------------------------main_visual_svg01-----------------------------------*/
@-webkit-keyframes svg01_animate-svg-fill-1 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(75, 71, 81);
  }
}

@keyframes svg01_animate-svg-fill-1 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(75, 71, 81);
  }
}

.js-fadeIn-load.active .svg-elem01-1 {
  -webkit-animation: svg01_animate-svg-fill-1 0s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
          animation: svg01_animate-svg-fill-1 0s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
}

@-webkit-keyframes svg01_animate-svg-fill-2 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(75, 71, 81);
  }
}

@keyframes svg01_animate-svg-fill-2 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(75, 71, 81);
  }
}

.js-fadeIn-load.active .svg-elem01-2 {
  -webkit-animation: svg01_animate-svg-fill-2 0s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both;
          animation: svg01_animate-svg-fill-2 0s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both;
}

@-webkit-keyframes svg01_animate-svg-fill-3 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(75, 71, 81);
  }
}

@keyframes svg01_animate-svg-fill-3 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(75, 71, 81);
  }
}

.js-fadeIn-load.active .svg-elem01-3 {
  -webkit-animation: svg01_animate-svg-fill-3 0s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both;
          animation: svg01_animate-svg-fill-3 0s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both;
}

@-webkit-keyframes svg01_animate-svg-fill-4 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(75, 71, 81);
  }
}

@keyframes svg01_animate-svg-fill-4 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(75, 71, 81);
  }
}

.js-fadeIn-load.active .svg-elem01-4 {
  -webkit-animation: svg01_animate-svg-fill-4 0s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both;
          animation: svg01_animate-svg-fill-4 0s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both;
}

@-webkit-keyframes svg01_animate-svg-fill-5 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(75, 71, 81);
  }
}

@keyframes svg01_animate-svg-fill-5 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(75, 71, 81);
  }
}

.js-fadeIn-load.active .svg-elem01-5 {
  -webkit-animation: svg01_animate-svg-fill-5 0s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s both;
          animation: svg01_animate-svg-fill-5 0s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s both;
}

@-webkit-keyframes svg01_animate-svg-fill-6 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(75, 71, 81);
  }
}

@keyframes svg01_animate-svg-fill-6 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(75, 71, 81);
  }
}

.js-fadeIn-load.active .svg-elem01-6 {
  -webkit-animation: svg01_animate-svg-fill-6 0s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
          animation: svg01_animate-svg-fill-6 0s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
}

@-webkit-keyframes svg01_animate-svg-fill-7 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(75, 71, 81);
  }
}

@keyframes svg01_animate-svg-fill-7 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(75, 71, 81);
  }
}

.js-fadeIn-load.active .svg-elem01-7 {
  -webkit-animation: svg01_animate-svg-fill-7 0s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s both;
          animation: svg01_animate-svg-fill-7 0s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s both;
}

/*--------------------------main_visual_svg02-----------------------------------*/
@-webkit-keyframes svg02_animate-svg-fill-1 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(75, 71, 81);
  }
}

@keyframes svg02_animate-svg-fill-1 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(75, 71, 81);
  }
}

.js-fadeIn-load.active .svg-elem02-1 {
  -webkit-animation: svg02_animate-svg-fill-1 0s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s both;
          animation: svg02_animate-svg-fill-1 0s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s both;
}

@-webkit-keyframes svg02_animate-svg-fill-2 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(75, 71, 81);
  }
}

@keyframes svg02_animate-svg-fill-2 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(75, 71, 81);
  }
}

.js-fadeIn-load.active .svg-elem02-2 {
  -webkit-animation: svg02_animate-svg-fill-2 0s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s both;
          animation: svg02_animate-svg-fill-2 0s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s both;
}

@-webkit-keyframes svg02_animate-svg-fill-3 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(75, 71, 81);
  }
}

@keyframes svg02_animate-svg-fill-3 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(75, 71, 81);
  }
}

.js-fadeIn-load.active .svg-elem02-3 {
  -webkit-animation: svg02_animate-svg-fill-3 0s cubic-bezier(0.47, 0, 0.745, 0.715) 2.3s both;
          animation: svg02_animate-svg-fill-3 0s cubic-bezier(0.47, 0, 0.745, 0.715) 2.3s both;
}

@-webkit-keyframes svg02_animate-svg-fill-4 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(75, 71, 81);
  }
}

@keyframes svg02_animate-svg-fill-4 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(75, 71, 81);
  }
}

.js-fadeIn-load.active .svg-elem02-4 {
  -webkit-animation: svg02_animate-svg-fill-4 0s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s both;
          animation: svg02_animate-svg-fill-4 0s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s both;
}

@-webkit-keyframes svg02_animate-svg-fill-5 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(75, 71, 81);
  }
}

@keyframes svg02_animate-svg-fill-5 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(75, 71, 81);
  }
}

.js-fadeIn-load.active .svg-elem02-5 {
  -webkit-animation: svg02_animate-svg-fill-5 0s cubic-bezier(0.47, 0, 0.745, 0.715) 2.5s both;
          animation: svg02_animate-svg-fill-5 0s cubic-bezier(0.47, 0, 0.745, 0.715) 2.5s both;
}

@-webkit-keyframes svg02_animate-svg-fill-6 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(75, 71, 81);
  }
}

@keyframes svg02_animate-svg-fill-6 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(75, 71, 81);
  }
}

.js-fadeIn-load.active .svg-elem02-6 {
  -webkit-animation: svg02_animate-svg-fill-6 0s cubic-bezier(0.47, 0, 0.745, 0.715) 2.6s both;
          animation: svg02_animate-svg-fill-6 0s cubic-bezier(0.47, 0, 0.745, 0.715) 2.6s both;
}

@-webkit-keyframes svg02_animate-svg-fill-7 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(75, 71, 81);
  }
}

@keyframes svg02_animate-svg-fill-7 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(75, 71, 81);
  }
}

.js-fadeIn-load.active .svg-elem02-7 {
  -webkit-animation: svg02_animate-svg-fill-7 0s cubic-bezier(0.47, 0, 0.745, 0.715) 2.7s both;
          animation: svg02_animate-svg-fill-7 0s cubic-bezier(0.47, 0, 0.745, 0.715) 2.7s both;
}

@-webkit-keyframes svg02_animate-svg-fill-8 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(75, 71, 81);
  }
}

@keyframes svg02_animate-svg-fill-8 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(75, 71, 81);
  }
}

.js-fadeIn-load.active .svg-elem02-8 {
  -webkit-animation: svg02_animate-svg-fill-8 0s cubic-bezier(0.47, 0, 0.745, 0.715) 2.8s both;
          animation: svg02_animate-svg-fill-8 0s cubic-bezier(0.47, 0, 0.745, 0.715) 2.8s both;
}

@-webkit-keyframes svg02_animate-svg-fill-9 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(75, 71, 81);
  }
}

@keyframes svg02_animate-svg-fill-9 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(75, 71, 81);
  }
}

.js-fadeIn-load.active .svg-elem02-9 {
  -webkit-animation: svg02_animate-svg-fill-9 0s cubic-bezier(0.47, 0, 0.745, 0.715) 2.9s both;
          animation: svg02_animate-svg-fill-9 0s cubic-bezier(0.47, 0, 0.745, 0.715) 2.9s both;
}

@-webkit-keyframes svg02_animate-svg-fill-10 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(75, 71, 81);
  }
}

@keyframes svg02_animate-svg-fill-10 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(75, 71, 81);
  }
}

.js-fadeIn-load.active .svg-elem02-10 {
  -webkit-animation: svg02_animate-svg-fill-10 0s cubic-bezier(0.47, 0, 0.745, 0.715) 3s both;
          animation: svg02_animate-svg-fill-10 0s cubic-bezier(0.47, 0, 0.745, 0.715) 3s both;
}
/* ===============================================###  ###=============================================== */

  .landing_content .flex_background_wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

.landing_content .js-stars {
  overflow: hidden;
  height: 100vh;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.landing_content .js-stars .star {
  position: absolute;
  display: block;
  opacity: 0;
  width: 4.2rem;
  aspect-ratio: 42/42;
  /* box-shadow: 0 0 4px 2px rgba(74, 71, 81, 0.2); */
  animation: twinkle 5s infinite;
  background-image: url(../img/star.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}
  @keyframes isLoading {
    0% {
      clip-path: circle(0% at 50% 50%);
    }
    100% {
      clip-path: circle(100vh at 50% 50%);
    }
  }
  @keyframes twinkle {
    0% {
      opacity: 0;
    }
    50% {
      transform: scale(1.1);
      opacity: 1;
    }
    100% {
      opacity: 0;
      transform: scale(1);
    }
  }

  .landing_content .js-stars.is-hidden {
  opacity: 0;
  }