@charset "UTF-8";
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - custom property
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.MC250626morningstar {
  --color-white: #fff;
  --color-black: #000;
  --color-darkblue: #070949;
  --color-orange: #CB7219;
  --color-yellow: #E0D195;
  --color-lightblue: #BDC6E1;
  --color-brown: #5D4C3F;
  --font-yu: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "Open Sans", "メイリオ", sans-serif;
  --font-seasons: "the-seasons", sans-serif;
  --font-ryo: "ryo-text-plusn", serif;
  --font-ja: var(--font-ryo);
  --font-en: var(--font-seasons);
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  font-feature-settings: "palt";
  overflow: clip;
  color: var(--color-darkblue);
  font-feature-settings: normal;
}
#Contents {
  overflow: clip;
}
.MC250626morningstar {
  --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) {
  .MC250626morningstar {
    --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width));
    --variable: 1px;
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  .MC250626morningstar {
    --ratio: calc(var(--pc-artboard-width) / var(--sp-artboard-width));
    --variable: calc(100vw / var(--pc-width));
  }
}
@media (max-width: 767px) {
  .MC250626morningstar {
    --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: #BDC6E1;
  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(240, 188, 85, 0) 0%, rgba(189, 198, 225, 1) 100%);
}
.header .header__inner.is-odd-section::after {
  opacity: 1;
  background: linear-gradient(0deg, rgba(168, 213, 178, 0) 0%, rgba(93, 76, 63, 1) 100%);
}

/*
//////////////////////////////////////////////////////////////////////////////////////////////
component - others
//////////////////////////////////////////////////////////////////////////////////////////////
*/
@media screen and (min-width: 768px) {
  .MC250626morningstar .hidden-desktop {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .MC250626morningstar .hidden-mobile {
    display: none !important;
  }
}
.MC250626morningstar img,
.MC250626morningstar video {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - position
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.MC250626morningstar .common-position {
  position: absolute;
}
.MC250626morningstar .common-grid {
  display: grid;
  gap: var(--row, 0) var(--column, 0);
}
.MC250626morningstar .common-flex_row {
  display: flex;
  flex-direction: row;
  gap: var(--row, 0) var(--column, 0);
}
.MC250626morningstar .common-flex_row_reverse {
  display: flex;
  flex-direction: row-reverse;
  gap: var(--row, 0) var(--column, 0);
}
.MC250626morningstar .common-flex_column {
  display: flex;
  flex-direction: column;
  gap: var(--row, 0) var(--column, 0);
}
.MC250626morningstar .common-flex_column_reverse {
  display: flex;
  flex-direction: column-reverse;
  gap: var(--row, 0) var(--column, 0);
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - hero
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.MC250626morningstar .hero {
  position: relative;
  z-index: 5;
}
.MC250626morningstar .hero_title {
  width: calc(294 * var(--variable) * var(--ratio));
  top: calc(331 * var(--variable) * var(--ratio));
  left: calc(41 * var(--variable) * var(--ratio));
  position: absolute;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .MC250626morningstar .hero_title {
    --variable: calc(100vw / var(--pc-width));
    width: calc(527 * var(--variable) * var(--ratio));
    top: calc(340 * var(--variable) * var(--ratio));
    left: calc(287 * var(--variable) * var(--ratio));
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - fixed
//////////////////////////////////////////////////////////////////////////////////////////////
*/
@media screen and (min-width: 768px) {
  .MC250626morningstar .fixed_container {
    position: sticky;
    top: calc(100vh - min(320*100vw/1440, 320px));
    /* margin-top: max(-320*100vw/1440, -320px); */
  }
  .MC250626morningstar .fixed_container {
    color: #234E2B;
  }
  .MC250626morningstar.is-odd-section .fixed_container {
    color: #891921;
  }
  .MC250626morningstar .fixed_inner {
    position: relative;
    justify-content: space-between;
    margin-top: min(295*100vw/1400, 295px);
  }
  .MC250626morningstar .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);
  }
  .MC250626morningstar .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;
  }
  .MC250626morningstar .fixed_title.is-active {
    opacity: 1;
  }
  .MC250626morningstar .fixed_title span {
    display: inline-block;
    font-size: min(26*100vw/1440, 26px);
    font-weight: var(--font-weight-semibold);
  }
  .MC250626morningstar .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);
  }
  .MC250626morningstar .scroll_container {
    margin-top: max(-655*100vw/1440, -655px);
    padding-top: min(20*100vw/1400, 20px);
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - main_container
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.MC250626morningstar .detail_inner,
.MC250626morningstar .product_inner {
  width: calc(375*var(--variable)*var(--ratio));
  margin: 0 auto;
  overflow: clip;
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - detail
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.MC250626morningstar .detail {
  background-color: var(--color-lightblue);
  padding: calc(54*var(--variable)*var(--ratio)) 0 0;
}
.MC250626morningstar .detail_inner {
  position: relative;
  z-index: 2;
}
.MC250626morningstar .detail_lead {
  font-size: calc(14*var(--variable)*var(--ratio));
  line-height: 2;
  letter-spacing: .08em;
  font-weight: var(--font-weight-light);
  font-family: var(--font-ryo);
  text-align: center;
}
.MC250626morningstar .detail_box {
  box-sizing: border-box;
  width: calc(340*var(--variable)*var(--ratio));
  margin: calc(50*var(--variable)*var(--ratio)) auto 0;
  border: solid 1px var(--color-darkblue);
  padding: calc(23 * var(--variable) * var(--ratio));
}
.MC250626morningstar .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-ryo);
  text-align: center;
}
.MC250626morningstar .detail_box .detail_date span {
  font-size: calc(12*var(--variable)*var(--ratio));
  line-height: 2.3333333333;
}

@media screen and (min-width: 768px) {
  .MC250626morningstar .detail {
    padding: calc(68 * var(--variable) * var(--ratio)) 0 0;
  }
  .MC250626morningstar .detail_inner {
    padding-bottom: calc(20 * var(--variable));
  }
  .MC250626morningstar .detail_lead {
    position: relative;
    font-size: calc(13 * var(--variable) * var(--ratio));
    top: calc(2 * var(--variable) * var(--ratio));
    left: calc(-9 * var(--variable) * var(--ratio));
    z-index: 10;
  }
  .MC250626morningstar .detail_box {
    position: relative;
    top: calc(2 * var(--variable) * var(--ratio));
    left: calc(-9 * var(--variable) * var(--ratio));
    z-index: 10;
  }
  .MC250626morningstar .detail_box .detail_date {
    font-size: calc(13 * var(--variable) * var(--ratio));
  }
  .MC250626morningstar .detail_box .detail_date span {
    font-size: calc(11*var(--variable)*var(--ratio));
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - product
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.MC250626morningstar .product {
  padding-top: calc(52 * var(--variable) * var(--ratio));
}
.MC250626morningstar .product_maintitle {
  margin: 0 auto;
}
.MC250626morningstar .product_bg_un1 {
    background-image: url(../img/sp/bg_line01.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 72px;
}
.MC250626morningstar .product_bg_un2 {
    background-image: url(../img/sp/bg_line02.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: calc(170 * var(--variable) * var(--ratio));
    position: absolute;
    z-index: 10;
    top: calc(-79 * var(--variable) * var(--ratio));
}
.MC250626morningstar .product_bg_un3 {
    background-image: url(../img/sp/bg_line03.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: calc(168 * var(--variable) * var(--ratio));
    position: absolute;
    z-index: 10;
    bottom: calc(-77 * var(--variable) * var(--ratio));
}
.MC250626morningstar .product_detail {
  position: relative;
  z-index: 2;
  overflow: clip;
  width: calc(335*var(--variable)*var(--ratio));
  margin: calc(8*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);
}
.MC250626morningstar .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;
}
.MC250626morningstar .product_detail_content {}
.MC250626morningstar .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-ryo);
  text-align: center;
}
.MC250626morningstar .product_detail_image {
  width: calc(296 * var(--variable) * var(--ratio));
  margin: calc(25 * var(--variable) * var(--ratio)) auto calc(23* var(--variable));
}
.MC250626morningstar .product_detail_lead {
  font-size: calc(14*var(--variable)*var(--ratio));
  line-height: 2;
  letter-spacing: .08em;
  font-weight: var(--font-weight-light);
  font-family: var(--font-ryo);
  text-align: center;
}
.MC250626morningstar .product_detail_btn {
  width: calc(150*var(--variable)*var(--ratio));
  margin: 0 auto;
  padding-top: calc(23 * var(--variable) * var(--ratio));
}
.MC250626morningstar .product_content {
  position: relative;
}
.MC250626morningstar .product_content01 {
  z-index: 1;
}
.MC250626morningstar .product_content02 {
  z-index: 2;
}
.MC250626morningstar .product_content03 {
  z-index: 5;
}
.MC250626morningstar .product_content04 {
  z-index: 4;
  padding: calc(50 * var(--variable) * var(--ratio)) 0 calc(190 * var(--variable) * var(--ratio));
  position: relative;
}
.MC250626morningstar .product_content02::after {
  height: calc(402*var(--variable)*var(--ratio));
  top: calc(-50*var(--variable)*var(--ratio));
}
.MC250626morningstar .product_content03::after {
  height: calc(423*var(--variable)*var(--ratio));
}
.MC250626morningstar .product_content.is-show::after {
  opacity: .9;
}
.MC250626morningstar .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-yu);
  color: var(--color-black);
  text-align: center;
}
.MC250626morningstar .product_slider {
  width: calc(375*var(--variable)*var(--ratio));
}
.MC250626morningstar .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-yu);
  color: var(--color-black);
  white-space: nowrap;
  pointer-events: none;
}

.MC250626morningstar .product_artpiece::after {
  position: absolute;
  content: " ";
  width: 100%;
  height: calc(750 * var(--variable) * var(--ratio));
  z-index: 1;
  background-image: url(../img/sp/sec02_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(0 * var(--variable) * var(--ratio));
}

@media screen and (min-width: 768px) {
  .MC250626morningstar .product_bg_un1 {
      background-image: url(../img/bg_line01.png);
      height: 90px;
  }
  .MC250626morningstar .product_bg_un2 {
      background-image: url(../img/bg_line02.png);
      /* height: calc(137 * var(--variable) * var(--ratio)); */
      top: calc(-63 * var(--variable) * var(--ratio));
  }
  .MC250626morningstar .product_bg_un3 {
      background-image: url(../img/bg_line03.png);
      /* height: calc(141 * var(--variable) * var(--ratio)); */
      bottom: calc(-74 * var(--variable) * var(--ratio));
  }
  .MC250626morningstar .product_artpiece::after {
    height: calc(748 * var(--variable) * var(--ratio));
    background-image: url(../img/sec02_bg.jpg);
  }
  /* .MC250626morningstar .product {
      padding-top: calc(72 * var(--variable) * var(--ratio));
  } */
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - product_fragrance
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.MC250626morningstar .product_fragrance {
  background-color: var(--color-lightblue);
}
.MC250626morningstar .product_fragrance .product_maintitle {
  width: calc(236 * var(--variable) * var(--ratio));
  margin-top: calc(58 * var(--variable) * var(--ratio));
}
.MC250626morningstar .product_fragrance .product_content01 {
  margin-top: calc(60 * var(--variable) * var(--ratio));
}
.MC250626morningstar .product_fragrance .product_content01::before{
  content: none !important;
}
.MC250626morningstar .product_fragrance .product_content02 {
  margin-top: calc(60 * var(--variable) * var(--ratio));
  padding-bottom: calc(120 * var(--variable) * var(--ratio));
}
.MC250626morningstar .product_fragrance .product_content02 .css-image {
  width: calc(270 * var(--variable) * var(--ratio));
  margin: 0 auto;
  margin-top: calc(125 * var(--variable) * var(--ratio));
}
.MC250626morningstar .product_fragrance .product_content04 {
  margin-top: calc(80*var(--variable)*var(--ratio));
}
.MC250626morningstar .product_fragrance .product_content::before {
  position: absolute;
  content: "";
  width: calc(340 * var(--variable) * var(--ratio));
  height: calc(335 * var(--variable) * var(--ratio));
  z-index: -1;
  background-image: url(../img/img0102_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.MC250626morningstar .product_fragrance .product_content01::before {
  top: calc(0*var(--variable)*var(--ratio));
  left: calc(0*var(--variable)*var(--ratio));
}
.MC250626morningstar .product_fragrance .product_content02::before {
  top: calc(-65*var(--variable)*var(--ratio));
  left: 50%;
  transform: translateX(-50%);
}
.MC250626morningstar .product_fragrance .product_content03::before {
  top: calc(82*var(--variable)*var(--ratio));
  right: calc(.5*var(--variable)*var(--ratio));
}
.MC250626morningstar .product_fragrance .product_content04::before {
  top: calc(0*var(--variable)*var(--ratio));
  left: 50%;
  transform: translateX(-50%);
}
.MC250626morningstar .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));
}
.MC250626morningstar .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));
}
.MC250626morningstar .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) {
  .MC250626morningstar .product_fragrance .product_maintitle {
      width: calc(222 * var(--variable) * var(--ratio));
      margin-top: calc(60 * var(--variable) * var(--ratio));
  }
  .MC250626morningstar .product_detail {
      margin: calc(12 * var(--variable) * var(--ratio)) auto 0;
  }
  .MC250626morningstar .product_detail_title {
      font-size: calc(15.2 * var(--variable) * var(--ratio));
  }
  .MC250626morningstar .product_detail_image {
      margin: calc(29 * var(--variable) * var(--ratio)) auto calc(30 * var(--variable));
  }
  .MC250626morningstar .product_detail_lead {
      font-size: calc(13 * var(--variable) * var(--ratio));
  }
  .MC250626morningstar .product_detail_btn {
      padding-top: calc(29 * var(--variable) * var(--ratio));
  }
  .MC250626morningstar .product_fragrance .product_content01 {
      margin-top: calc(62 * var(--variable) * var(--ratio));
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - product_artpiece
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.MC250626morningstar .product_artpiece {
  background-color: var(--color-brown);
  padding-top: calc(160 * var(--variable) * var(--ratio));
  position: relative;
}
.MC250626morningstar .product_artpiece .product_maintitle {
  width: calc(188*var(--variable)*var(--ratio));
}
.MC250626morningstar .product_artpiece .product_content {
  width: fit-content;
  height: fit-content;
}
.MC250626morningstar .product_artpiece .product_content01 {
  margin: calc(8*var(--variable)*var(--ratio)) auto 0;
}
.MC250626morningstar .product_artpiece .product_content02 {
  margin: calc(58*var(--variable)*var(--ratio)) auto 0;
}
.MC250626morningstar .product_artpiece .product_content::before {
  background-color: #F7D659;
}
.MC250626morningstar .product_artpiece .product_text {
  margin-top: calc(17*var(--variable)*var(--ratio));
}
@media screen and (min-width: 768px) {
  .MC250626morningstar .product_artpiece {
      padding-top: calc(157 * var(--variable) * var(--ratio));
      padding-bottom: calc(2 * var(--variable) * var(--ratio));
  }
}
/*
//////////////////////////////////////////////////////////////////////////////////////////////
setting - closing
//////////////////////////////////////////////////////////////////////////////////////////////
*/
.MC250626morningstar .closing {
  background-color: var(--color-lightblue);
  padding: calc(147 * var(--variable) * var(--ratio)) 0 calc(48 * var(--variable) * var(--ratio));
}
.MC250626morningstar .closing_inner {
  --row: calc(50*var(--variable)*var(--ratio));
  margin-top: calc(75 * var(--variable) * var(--ratio));
}
.MC250626morningstar .closing_title {
  width: calc(274*var(--variable)*var(--ratio));
  margin: 0 auto;
}
.MC250626morningstar .closing_btn {
  width: calc(200 * var(--variable) * var(--ratio));
  margin: 0 auto;
  margin-top: calc(49 * var(--variable) * var(--ratio));
}
.MC250626morningstar .closing_copy {
  font-size: calc(10*var(--variable)*var(--ratio));
  line-height: 1.2;
  letter-spacing: .08em;
  font-weight: var(--font-weight-light);
  font-family: var(--font-en);
  text-align: center;
}
@media screen and (min-width: 768px) {}

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

  .MC250626morningstar .js-fade {
    opacity: 0;
    transform: scale(1.05);
    transition: ease-in, opacity 1500ms, transform 1500ms;
  }
  .MC250626morningstar .js-fade.delay1 {
    transition-delay: 1.2s;
  }
  .MC250626morningstar .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;
  }

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

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

  .MC250626morningstar .s-view {
    display: none;
  }
  .MC250626morningstar .css-hover {
    display: block;
    position: relative;
    cursor: pointer;
  }
  .MC250626morningstar .css-credit_all {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
  }
  .MC250626morningstar .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;
  }

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

  .MC250626morningstar .product_content02 .js-hover {
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 2px);
    height: calc(100% + 2px);
  }
  .MC250626morningstar .product_content05 .css-image0301 .js-hover {
    border-radius: 50%;
  }
  .MC250626morningstar .product_content05 .css-image0301 .js-hover{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 2px);
    height: calc(100% + 2px);
  }
  .MC250626morningstar .js-hover--active {
    background-color: var(--color-lightblue);
    opacity: 0.85;
  }
  .MC250626morningstar .product_artpiece .js-hover--active {
    background-color: var(--color-black);
    opacity: 0.7;
  }

  .MC250626morningstar .js-hover .css-bk_credit,
  .MC250626morningstar .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;
  }
  /* .MC250626morningstar .product_artpiece .product_content03 .js-hover .css-bk_credit,
  .MC250626morningstar .product_artpiece .product_content03 .js-hover .css-credit {
    top: calc(232 * var(--variable) * var(--ratio));
    left: 50%;
    transform: translateX(-50%);
  }
  .MC250626morningstar .product_artpiece .product_content04 .js-hover .css-bk_credit,
  .MC250626morningstar .product_artpiece .product_content04 .js-hover .css-credit {
    top: calc(223 * var(--variable) * var(--ratio));
    left: 50%;
    transform: translateX(-50%);
  } */
  .MC250626morningstar .product_content02 .js-hover .css-bk_credit,
  .MC250626morningstar .product_content02 .js-hover .css-credit {
    transform: translate(-50%, -39%);
  }
  .MC250626morningstar .top-space02 {
    margin-top: calc(18*var(--variable)*var(--ratio));
  }
  .MC250626morningstar .js-hover .css-bk_credit .css-credit_link,
  .MC250626morningstar .js-hover .css-credit .css-credit_link {
    position: relative;
    z-index: 2;
    display: inline-block;
    font-family: var(--font-yu);
    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;
  }
  .MC250626morningstar .top-space {
    margin-top: calc(18 * var(--variable) * var(--ratio));
  }
  .MC250626morningstar .product_artpiece .js-hover .css-bk_credit .css-credit_link,
  .MC250626morningstar .product_artpiece .js-hover .css-credit .css-credit_link {
    color: var(--color-white);
  }

.MC250626morningstar .product_content05 {
  width: calc(375 * var(--variable) * var(--ratio));
  margin: 0 auto;
  overflow: clip;
}

.MC250626morningstar .product_content05 .css-image0301 {
  z-index: 2;
}
.MC250626morningstar .product_content05 .css-image0301::before {
    position: absolute;
    content: "";
    width: calc(340 * var(--variable) * var(--ratio));
    height: calc(335 * var(--variable) * var(--ratio));
    z-index: -1;
    background-image: url(../img/img0301_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.MC250626morningstar .product_content05 .css-image0301 {
  width: calc(270 * var(--variable) * var(--ratio));
  margin: 0 auto;
  padding-top: calc(60 * var(--variable) * var(--ratio));
}

.MC250626morningstar .product_content05 .css-image0301::before {
  top: calc(60 * var(--variable) * var(--ratio));
  left: 50%;
  transform: translateX(-50%);
}

.MC250626morningstar .product_content05 .css-image0301 .js-hoverContents {
  top: calc(156*var(--variable)*var(--ratio));
  left: calc(24*var(--variable)*var(--ratio));
}

/* .MC250626morningstar .product_content05 .js-hover .css-bk_credit,
.MC250626morningstar .product_content05 .js-hover .css-credit {
  transform: translate(-50%, -10%);
} */

@media screen and (min-width: 768px) {
  /* .MC250626morningstar .product_content05 .css-image0301::before {
      top: calc(0 * var(--variable) * var(--ratio));
  } */
  .MC250626morningstar .closing_inner {
    margin-top: calc(78 * var(--variable) * var(--ratio));
  }
  .MC250626morningstar .closing_title {
      width: calc(268 * var(--variable) * var(--ratio));
      position: relative;
      left: calc(-2 * var(--variable) * var(--ratio));
  }
  .MC250626morningstar .closing_btn {
      margin-top: calc(52 * var(--variable) * var(--ratio));
  }
  .MC250626morningstar .closing_copy {
      font-size: calc(9.2 * var(--variable) * var(--ratio));
      position: relative;
      left: calc(-10 * var(--variable) * var(--ratio));
  }
  .MC250626morningstar .closing {
    padding: calc(150 * var(--variable) * var(--ratio)) 0 calc(91 * var(--variable) * var(--ratio));
  }
}
