@charset "UTF-8";
/*
Gridの定義
-
この変数は_frame.scssやその他すべてのscssファイルでも使用
*/
/*
    例：
    @media screen and (min-width: g.$window-max-width) {
      width: calc(g.column(12, pc, g.$window-margin-right-pc));
    }
*/
/*
Column計算の関数
-
上記のGridの定義をもとにカラムの幅を割り出す関数
-
第一引数：カラム数
第二引数：デバイス（pc/sp）
第三引数：追加の数値指定（デフォルト値:0／任意）
-
ex.
width: g.column(2, sp); // SPの2カラム分の幅
width: g.column(8, pc); // PCの8カラム分の幅
width: g.column(8, pc, 6rem); // PCの8カラム分の幅 + 6rem
width: g.column(8, pc, -6rem); // PCの8カラム分の幅 - 6rem
width: g.column(8, pc, $column-margin-right-pc); // PCの8カラム分の幅 + ウインドウ右端からのマージン
*/
.layoutGrid {
  display: grid;
  display: none;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: 10000;
  pointer-events: none;
  gap: 2.4rem;
  grid-template-columns: repeat(24, 1fr);
  width: calc(100vw - 2.4rem - 2.4rem - 0px);
  max-width: calc(1680px - 2.4rem - 2.4rem);
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .layoutGrid {
    gap: 1.2rem;
    grid-template-columns: repeat(12, 1fr);
    width: calc(100vw - 1.6rem - 1.6rem);
    max-width: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

.layoutGrid__item {
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.4);
  border-width: 0 1px;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .layoutGrid__item {
    background: rgba(255, 0, 0, 0.06);
    border: 1px solid rgba(255, 0, 0, 0.1);
  }
  .layoutGrid__item:nth-child(n+13) {
    display: none;
  }
}

.fix-paren .inner-text {
  position: relative;
  top: 0.04em; /* 必要に応じてこの値を調整してください */
  margin: 0 0.05em;
}

[data-mk] {
  --k: 0em;
  margin-left: var(--k, 0) !important;
}

.char-punc {
  padding-right: 0.15em;
}

.char-punc--end {
  padding-right: 0;
  margin-right: -0.2em;
}

html:lang(ja) .js-justify {
  line-break: strict;
  text-align: justify;
}

@keyframes iconArrow {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  49.9% {
    transform: translateX(50%);
    opacity: 0;
  }
  50% {
    transform: translateX(-50%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/*

2色のボーダー

＜使用例＞
  @include g.border(); // デフォルトの引数で使用
  @include g.border($direction:verticle, $gap:1px); // 縦向きで、gapを1pxに
  @include g.border($color-width:60%); // 幅を60%に
  @include g.border($fourth-color: g.$text-nega); // 4つの色だけカスタム引数で使用
  @include g.border(to bottom, #ff5722, #333, 80%); // カスタム引数で使用
*/
/*

点線のパーテーション

※色+透明が等間隔で並んだ矩形の点線。等間隔でないものは手で。
＜使用例＞
  @include g.dots(); // デフォルトの引数で使用
  @include g.dots($direction:verticle); // 縦向きに
  @include g.dots($count:3); // ドットを3つに
  @include g.dots($count:fit); // 幅いっぱいにドットを並べる
  @include g.dots($direction:verticle, $color:g.$text-nega-gray, $color-width: .3rem, $count:2, $gap: 2); //コピペ用
*/
/*

icons

*/
/*

button

*/
/*

parallax

*/
.parallax-container,
.spotParallax-container {
  height: auto;
  overflow: hidden;
}
.parallax-container .parallax-image,
.parallax-container .spotParallax-image,
.spotParallax-container .parallax-image,
.spotParallax-container .spotParallax-image {
  width: 100%;
  height: 140%;
  object-fit: cover;
  object-position: center;
}

/*

wordbreak

*/
.wb {
  display: inline-block;
}

.wb-pc {
  display: inline-block;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .wb-pc {
    display: none;
  }
}

.wb-sp {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .wb-sp {
    display: inline-block;
  }
}

/*
Swiper navigation
*/
body.no-scroll {
  overflow: hidden;
}

#bl_loading {
  display: none;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  transition: opacity 3s cubic-bezier(0.36, 0, 0, 1), visibility 3s cubic-bezier(0.36, 0, 0, 1), pointer-events 3s cubic-bezier(0.36, 0, 0, 1);
  z-index: 99999;
}
#bl_loading #bl_loadingPercentOverlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: white;
  transition: transform 0.8s cubic-bezier(1, 0, 0.37, 1);
  transform: translateY(100%);
  z-index: 1;
}
#bl_loading #bl_loadingPercentWrap {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: flex;
  color: #111111;
  font-size: 1.1rem;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #aaaaad;
  gap: 8.2rem 0;
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#bl_loading #bl_loadingPercentWrap b {
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  #bl_loading #bl_loadingPercentWrap {
    gap: 4.1rem 0;
  }
}
#bl_loading #bl_loadingPercentWrap #bl_loadingLogo {
  width: 21.4rem;
  padding-left: 0.85rem;
  transition: opacity 3s cubic-bezier(0.36, 0, 0, 1), visibility 3s cubic-bezier(0.36, 0, 0, 1);
  opacity: 0;
  visibility: hidden;
}
#bl_loading #bl_loadingPercentWrap #bl_loadingLogo svg {
  width: 100%;
}
#bl_loading #bl_loadingPercentWrap #bl_loadingPercenet {
  position: relative;
  transition: opacity 3s cubic-bezier(0.36, 0, 0, 1), visibility 3s cubic-bezier(0.36, 0, 0, 1);
  opacity: 0;
  visibility: hidden;
}
#bl_loading #bl_loadingPercentWrap #bl_loadingPercenet #bl_loadingPercentNumber {
  position: absolute;
  inset: 0 1em 0 auto;
  margin: auto;
}
#bl_loading #bl_loadingPercentWrap #bl_loadingPercenet #bl_loadingPercentMark {
  padding-left: 2em;
}
#bl_loading.active {
  display: block;
}
#bl_loading.active #bl_loadingPercentWrap #bl_loadingLogo,
#bl_loading.active #bl_loadingPercentWrap #bl_loadingPercenet {
  opacity: 1;
  visibility: visible;
}
#bl_loading.open #bl_loadingPercentOverlay {
  transform: translateY(0);
}
#bl_loading.hidden {
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}

html > body > header,
html > body > main,
html > body > footer {
  opacity: 0;
}
html.fade-in > body {
  opacity: 1;
}
html.fade-in > body > header,
html.fade-in > body > main,
html.fade-in > body > footer {
  opacity: 1;
}
html.fade-out-transition {
  transition: all 0.3s cubic-bezier(0.36, 0, 0, 1) !important;
}
html.fade-out-transition > body {
  transition: all 0.3s cubic-bezier(0.36, 0, 0, 1) !important;
}
html.fade-out-transition > body > header,
html.fade-out-transition > body > main,
html.fade-out-transition > body > footer {
  transition: all 0.3s cubic-bezier(0.36, 0, 0, 1) !important;
}
html.fade-in-transition {
  transition: all 2s cubic-bezier(0.36, 0, 0, 1) !important;
}
html.fade-in-transition > body {
  transition: all 2s cubic-bezier(0.36, 0, 0, 1) !important;
}
html.fade-in-transition > body > header,
html.fade-in-transition > body > main,
html.fade-in-transition > body > footer {
  transition: all 2s cubic-bezier(0.36, 0, 0, 1) !important;
}

html:not(.is-2023) {
  /**************************\
     Demo Animation Style
   \**************************/
}
html:not(.is-2023) .micromodal {
  position: relative;
  z-index: 9999;
  pointer-events: none;
  visibility: hidden;
}
html:not(.is-2023) .micromodal.is-open {
  pointer-events: all;
  visibility: visible;
}
html:not(.is-2023) .micromodal[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
html:not(.is-2023) .micromodal[aria-hidden=false] .modal__container {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
html:not(.is-2023) .micromodal[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
html:not(.is-2023) .micromodal[aria-hidden=true] .modal__container {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
html:not(.is-2023) .micromodal .modal__container,
html:not(.is-2023) .micromodal .modal__overlay {
  will-change: transform;
}
html:not(.is-2023) .modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(204, 204, 208, 0.9019607843);
  display: flex;
  justify-content: center;
  align-items: center;
}
html:not(.is-2023) .modal__container {
  background-color: #fff;
  padding: 4.3rem 3.2rem;
  max-width: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 24 + 2.4rem * (24 - 1) + 0px);
  max-height: 90%;
  overflow-y: auto;
  box-sizing: border-box;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  html:not(.is-2023) .modal__container {
    max-width: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 12 + 1.2rem * (12 - 1) + 0px);
    padding: 2.4rem calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 1 + 1.2rem * (1 - 1) + 0px);
    width: calc(100% - 3.2rem);
    height: calc(100% - 3.2rem);
    max-height: none;
  }
}
html:not(.is-2023) .modal__close {
  position: absolute;
  width: 10rem;
  height: 2.6rem;
  top: 0;
  right: 0;
  background: transparent;
  border: 0;
  padding: 2rem 1.98rem;
  box-sizing: content-box;
  z-index: 1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  html:not(.is-2023) .modal__close {
    width: 5rem;
    height: 1.5rem;
    padding: 1.6rem;
    padding: 1.6rem 1.6rem;
  }
}
html:not(.is-2023) .modal__close:before {
  content: "";
  width: 9.9rem;
  height: 2.6rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: rotate(0);
  background-image: url('data:image/svg+xml;utf8, <svg width="101" height="28" viewBox="0 0 101 28" fill="none" xmlns="http://www.w3.org/2000/svg"><line x1="1.12941" y1="0.517037" x2="100.309" y2="27.0922" stroke="%23111111"/><line y1="-0.5" x2="102.679" y2="-0.5" transform="matrix(-0.965926 0.258819 0.258819 0.965926 100.182 1)" stroke="%23111111"/></svg>');
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  html:not(.is-2023) .modal__close:before {
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: rotate(0);
    background-image: url('data:image/svg+xml;utf8, <svg width="47" height="14" viewBox="0 0 47 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M46.3644 13.3892L-2.99811e-05 0.965926L0.258789 0L46.6232 12.4233L46.3644 13.3892Z" fill="%23111111"/><path fill-rule="evenodd" clip-rule="evenodd" d="M0.258638 13.3892L46.6231 0.965926L46.3643 0L-0.000181198 12.4233L0.258638 13.3892Z" fill="%23111111"/></svg>');
    width: 5rem;
    height: 1.5rem;
  }
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  to {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

/* root
================================================ */
:root {
  /*Colors*/
  --color-be25-main: #fff100;
  --color-be25-second: #ffdc71;
  --color-be25-main-bg: #fff879;
  --color-be25-secondary-bg: #fffbbe;
  --color-be25-gray-bg: #f8f8f9;
  --pc-content-width: 106rem;
  /*font-family*/
  --libre: "Libre Baskerville", serif;
  /*width*/
  --desktop: 100vw / 1300;
  --phone: 100vw / 750;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* reset
================================================ */
html.fac-header-mini #container_ {
  padding-top: 0;
}

#main_ {
  width: 100%;
  box-sizing: border-box;
  text-align: left;
}

#main_ a {
  text-decoration: none;
}

#main_ img {
  width: 100%;
  height: auto;
}

.l-header__logo {
  display: none;
}

@media screen and (max-width: 599px) {
  html body[class] #container_ {
    padding-top: 0;
  }
  #main_ {
    padding: 0;
  }
}
/* common
================================================ */
.c-contents,
.c-container {
  width: 100%;
  position: relative;
}

.c-anim__textWrap {
  display: block;
  line-height: 1.4;
}

.c-anim__textLine {
  opacity: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: center left;
  transform-origin: center left;
  display: inline-block;
  position: relative;
  overflow: hidden;
  background-color: var(--color-beautiful2024-main);
  line-height: 1;
  padding: 0 0 1.8rem;
  font-family: var(--font-family_serif);
}

.c-anim__textLine::after {
  background-color: var(--color-beautiful2024-main);
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.c-anim__textWrap:first-child .c-anim__textLine {
  transition: transform 0.8s 0.8s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0s 0.8s, -webkit-transform 0.8s 0.8s;
}

.c-anim__textWrap:nth-child(2) .c-anim__textLine {
  transition: transform 0.8s 1s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0s 1s, -webkit-transform 0.8s 1s;
}

.c-anim__textWrap:nth-child(3) .c-anim__textLine {
  transition: transform 0.8s 1.2s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0s 1.2s, -webkit-transform 0.8s 1.2s;
}

.c-anim__textWrap:first-child .c-anim__textLine::after {
  -webkit-transition: width 0.8s 1.2s;
  transition: width 0.8s 1.2s;
}

.c-anim__textWrap:nth-child(2) .c-anim__textLine::after {
  -webkit-transition: width 0.8s 1.4s;
  transition: width 0.8s 1.4s;
}

.c-anim__textWrap:nth-child(3) .c-anim__textLine::after {
  -webkit-transition: width 0.8s 1.6s;
  transition: width 0.8s 1.6s;
}

.js-iv-show.is-show .c-anim__textLine {
  opacity: 1;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.js-iv-show.is-show .c-anim__textLine::after {
  width: 0%;
}

.p-beautiful2024 {
  color: var(--color-beautiful2024-txt);
}

@media screen and (max-width: 769px) {
  .c-anim__textWrap {
    line-height: 1.6;
  }
  .p-beautiful2024 {
    overflow: hidden;
  }
}
/* utility
================================================ */
.u-noText {
  display: none;
}

.u-ffs-palt {
  font-feature-settings: "palt";
}

main.p-mimosa {
  --text-accent: #c7de8e;
  --text-accent-P: #f4e981;
  --text-accent-PP: #c7de8e;
  --text-accent-PPP: #239360;
  --text-base-gray-P: rgba(17, 17, 17, 0.5);
  --text-nega: #fff;
  --bg-paper: #f4f3f0;
  --border-base: rgba(17, 17, 17, 0.1);
  padding-top: 0;
  position: relative;
  padding-bottom: 10rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  main.p-mimosa {
    padding-bottom: 7.1rem;
  }
}
main.p-mimosa::before {
  content: "";
  background: #fff100;
  mix-blend-mode: multiply;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 1 + 2.4rem * (1 - 1) + 4.8rem);
  z-index: 100;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  main.p-mimosa::before {
    display: none;
  }
}

.p-mimosa__fv__inner {
  position: relative;
  height: 100vh;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__fv__inner {
    height: 100dvh;
  }
  .p-mimosa__fv__inner::before {
    content: "";
    background: #fff100;
    mix-blend-mode: multiply;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 1 + 1.2rem * (1 - 1) + 1.6rem);
    z-index: 100;
  }
}

.p-mimosa__fv__img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  display: block;
  opacity: 0;
  transition: opacity 0.7s;
}
.p-mimosa__fv__img.is-active {
  opacity: 1;
}
.p-mimosa__fv__img img {
  height: 100%;
  object-fit: cover;
}
.p-mimosa__fv__img--onlySP {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__fv__img--onlySP {
    display: block;
  }
}

.p-mimosa__fv__copy {
  position: absolute;
  left: 50%;
  width: 37.7rem;
  bottom: 7.9rem;
  z-index: 10;
  opacity: 0;
  transform: translate(-50%, 0.5rem);
  transition: all 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__fv__copy {
    width: 25rem;
    bottom: 7rem;
  }
}
.p-mimosa__fv__copy.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.p-mimosa__fv__copy-txt {
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  color: var(--text-accent-PPP);
  font-size: 1.6rem;
  line-height: 1.55;
  display: block;
  letter-spacing: 0.096rem;
  text-align: center;
  margin-top: 1rem;
}
.p-mimosa__fv__copy-txt b {
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__fv__copy-txt {
    font-size: 1.2rem;
    letter-spacing: 0.072rem;
    margin-top: 0.5rem;
  }
}

.p-mimosa__fv__scroll {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.p-mimosa__fv__scroll .line {
  width: 0.1rem;
  height: 6.5rem;
  background: var(--text-accent-PPP);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__fv__scroll .line {
    height: 5.2rem;
  }
}
.p-mimosa__fv__scroll .point {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(calc(-50% + 0.1rem));
  margin: auto;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: var(--text-accent-PPP);
  animation: scroll 4s infinite ease-in-out;
}
@keyframes scroll {
  0% {
    transform: translate(calc(-50% + 0.1rem), 0);
    opacity: 0;
  }
  56% {
    transform: translate(calc(-50% + 0.1rem), 0);
    opacity: 1;
  }
  70% {
    transform: translate(calc(-50% + 0.1rem), 8rem);
    opacity: 0;
  }
  100% {
    transform: translate(calc(-50% + 0.1rem), 8rem);
    opacity: 0;
  }
}

.p-mimosa__limited__inner {
  display: flex;
  max-height: max-content;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__limited__inner {
    flex-direction: column;
  }
}

.p-mimosa__limited__head {
  width: 50%;
  background: #f4f8e8;
  position: sticky;
  top: 0;
  left: 0;
  height: 100vh;
  max-height: max-content;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__limited__head {
    height: auto;
    position: relative;
    width: 100%;
  }
  .p-mimosa__limited__head::before {
    content: "";
    background: #fff100;
    mix-blend-mode: multiply;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 1 + 1.2rem * (1 - 1) + 1.6rem);
    z-index: 100;
  }
}

.p-mimosa__limited__head-inner {
  padding-left: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 3 + 2.4rem * (3 - 1) + 4.8rem);
  height: 100%;
  max-height: 123.269rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__limited__head-inner {
    padding-left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12rem 0;
    max-height: none;
  }
}

.p-mimosa__limited__body-topTxts {
  text-align: center;
  margin-bottom: 3.5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__limited__body-topTxts {
    margin-bottom: 4.6rem;
  }
}

.p-mimosa__limited__body-topTxts-ttl {
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  color: var(--text-accent-PPP);
  font-size: 2.8rem;
  letter-spacing: 0.168rem;
  line-height: 1;
  position: relative;
}
.p-mimosa__limited__body-topTxts-ttl b {
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__limited__body-topTxts-ttl {
    font-size: 2.4rem;
    letter-spacing: 0.144rem;
  }
}
.p-mimosa__limited__body-topTxts-ttl::after {
  content: "";
  background-color: var(--text-accent-PPP);
  height: 1px;
  width: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1.6rem;
  position: absolute;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__limited__body-topTxts-ttl::after {
    width: 1.2rem;
    bottom: -1.4rem;
  }
}

.p-mimosa__limited__body-topTxts-term {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  gap: 0.6rem;
  color: var(--text-accent-PPP);
  margin-top: 2.8rem;
  letter-spacing: 0.06rem;
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.p-mimosa__limited__body-topTxts-term b {
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__limited__body-topTxts-term {
    font-size: 1.4rem;
    gap: 0.9rem;
    margin-top: 2.1rem;
    letter-spacing: 0.056rem;
  }
}

.p-mimosa__limited__body-topTxts-term-em {
  display: block;
  width: max-content;
  border-radius: 10rem;
  border: 1px solid var(--text-accent-PPP);
  padding: 0.2rem 0.7rem;
  line-height: 1;
  font-size: 1rem;
  letter-spacing: 0.02rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__limited__body-topTxts-term-em {
    font-size: 1rem;
  }
}

.p-mimosa__limited__head-label {
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  color: var(--text-accent-PPP);
  font-feature-settings: "palt" on;
  font-size: 1.3rem;
  line-height: 1.55;
  letter-spacing: 0.078rem;
  padding-left: 0.2em;
}
.p-mimosa__limited__head-label b {
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__limited__head-label {
    font-size: 1.1rem;
    letter-spacing: 0.066rem;
    padding-left: 0;
  }
}

.p-mimosa__limited__head-ttl {
  font-family: TsukuMinPr6-RB, "Yu Mincho Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝B", "MS Mincho", serif;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 3.8rem;
  line-height: 1.55;
  margin-top: 2.6rem;
  letter-spacing: 0.228rem;
  font-weight: 500;
}
.p-mimosa__limited__head-ttl b {
  font-family: TsukuMinPr6-D, "Yu Mincho Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝B", "MS Mincho", serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__limited__head-ttl {
    font-size: 2.4rem;
    margin-top: 1.2rem;
    text-align: center;
    letter-spacing: 0.144rem;
  }
}

.p-mimosa__limited__head-txt {
  font-family: TsukuMinPr6-RB, "Yu Mincho Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝B", "MS Mincho", serif;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.6rem;
  line-height: 2;
  margin-top: 4.3rem;
  letter-spacing: 0.096rem;
}
.p-mimosa__limited__head-txt b {
  font-family: TsukuMinPr6-D, "Yu Mincho Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝B", "MS Mincho", serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__limited__head-txt {
    font-size: 1.4rem;
    line-height: 1.9;
    margin-top: 2.7rem;
    text-align: center;
    letter-spacing: 0.084rem;
  }
}

.p-mimosa__limited__body {
  margin-left: auto;
  padding-left: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 2 + 2.4rem * (2 - 1) + 1.2rem);
  padding-right: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 3 + 2.4rem * (3 - 1) + 2.4rem);
  padding-top: 10rem;
  padding-bottom: 12rem;
  width: 50%;
  height: max-content;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__limited__body {
    margin-top: 8rem;
    padding: 0 0 8rem 0;
    flex-basis: auto;
    width: 100%;
  }
}

.p-mimosa__limited__item-name {
  display: block;
  font-size: 1.3rem;
  line-height: 1.85;
  text-align: center;
  letter-spacing: 0.078rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__limited__item-name {
    font-size: 1.2rem;
    line-height: 1.7;
    letter-spacing: 0.072rem;
  }
}

.p-mimosa__limited__item-price {
  display: block;
  font-size: 1.3rem;
  line-height: 1.85;
  margin-top: 0.4rem;
  text-align: center;
  color: var(--text-base-gray-P);
  letter-spacing: 0.078rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__limited__item-price {
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 0.4rem;
    letter-spacing: 0.06rem;
  }
}

.p-mimosa__limited__desc {
  border-radius: 0.4rem;
  border: 1px solid var(--text-accent-PPP);
  padding: 1.6rem 1.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__limited__desc {
    border-radius: 0.5rem;
    padding: 1.2rem 1.6rem;
    margin: 0 auto;
    width: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 10 + 1.2rem * (10 - 1) + 0px);
  }
}

.p-mimosa__limited__desc-txt {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--text-accent-PPP);
  position: relative;
  padding-left: 1.2em;
  letter-spacing: 0.052rem;
  text-align: justify;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__limited__desc-txt {
    font-size: 1.2rem;
    line-height: 1.7;
    letter-spacing: 0.048rem;
  }
}
.p-mimosa__limited__desc-txt + .p-mimosa__limited__desc-txt {
  margin-top: 0.05rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__limited__desc-txt + .p-mimosa__limited__desc-txt {
    margin-top: 0.2rem;
  }
}
.p-mimosa__limited__desc-txt::before {
  content: "";
  background: var(--text-accent-PPP);
  width: 0.7em;
  height: 0.7em;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__limited__desc-txt::before {
    width: 0.7em;
    height: 0.7em;
    transform: translateY(0);
    top: 0.5em;
  }
}

.p-mimosa__limited__notes {
  margin-top: 1.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__limited__notes {
    margin: 2rem auto 0;
    width: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 12 + 1.2rem * (12 - 1) + 0px);
  }
}

html.is-2025 small.p-mimosa__limited__note {
  display: block;
  color: var(--text-accent-PPP);
  font-size: 1.1rem;
  line-height: 1.85;
  text-align: right;
  letter-spacing: 0.044rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  html.is-2025 small.p-mimosa__limited__note {
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0.04rem;
  }
}

.p-mimosa__limited__upperItems-list {
  display: flex;
  margin-bottom: 2.958rem;
  justify-content: space-between;
  padding-right: 1.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__limited__upperItems-list {
    margin-bottom: 1.55rem;
    padding-right: 0;
    justify-content: center;
    gap: 2.2rem;
  }
}

.p-mimosa__limited__upperItem-img {
  width: 18rem;
  display: block;
  margin: 0 auto 0.5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__limited__upperItem-img {
    width: 13rem;
    margin-bottom: 0.8rem;
  }
}

.p-mimosa__limited__lowerItems {
  margin-top: 9rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__limited__lowerItems {
    margin-top: 6rem;
  }
}
.p-mimosa__limited__lowerItems .p-mimosa__limited__item-txts {
  margin-top: 2.6rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__limited__lowerItems .p-mimosa__limited__item-txts {
    margin-top: 0;
  }
}

.p-mimosa__limited__lowerItems-list {
  margin-bottom: 1.979rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__limited__lowerItems-list {
    margin-bottom: 1.6rem;
  }
}

.p-mimosa__limited__lowerItem {
  display: flex;
  align-items: center;
  gap: 3.725rem;
  padding-left: 6.3rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__limited__lowerItem {
    flex-direction: column;
    gap: 1.9rem;
    padding-left: 0;
  }
}

.p-mimosa__limited__lowerItem-img {
  width: 9.875rem;
  display: block;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__limited__lowerItem-img {
    width: 7.1rem;
  }
}

.p-mimosa__feature {
  background: #dfefe5;
  padding-top: 12rem;
  padding-bottom: 10rem;
  z-index: 10;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__feature {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.p-mimosa__feature__head-inner {
  text-align: center;
}

.p-mimosa__feature__head-label {
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  font-size: 1.5rem;
  line-height: 1.55;
  color: var(--text-accent-PPP);
}
.p-mimosa__feature__head-label b {
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__feature__head-label {
    font-size: 1rem;
    letter-spacing: 0.06rem;
  }
}

.p-mimosa__feature__head-ttl {
  font-family: TsukuMinPr6-RB, "Yu Mincho Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝B", "MS Mincho", serif;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 2.8rem;
  line-height: 1.55;
  margin-top: 2.7rem;
  letter-spacing: 0.168rem;
}
.p-mimosa__feature__head-ttl b {
  font-family: TsukuMinPr6-D, "Yu Mincho Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝B", "MS Mincho", serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__feature__head-ttl {
    font-size: 2rem;
    margin-top: 1.7rem;
    letter-spacing: 0.12rem;
  }
}

.p-mimosa__feature__body {
  margin-top: 6.6rem;
  padding: 0 calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 2 + 2.4rem * (2 - 1) + 2.4rem);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__feature__body {
    margin-top: 3.2rem;
    padding: 0;
  }
}

.p-mimosa__feature__item-label {
  position: absolute;
  top: 3rem;
  left: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 1 + 2.4rem * (1 - 1) + 0px);
  display: block;
  font-family: "Libre Baskerville", TsukuMinPr6-D, "Yu Mincho Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝B", "MS Mincho", serif;
  font-weight: 500;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.4rem;
  line-height: 1.55;
  letter-spacing: -0.03em;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__feature__item-label {
    text-transform: uppercase;
    font-size: 1rem;
    top: 2.05rem;
    left: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 1 + 1.2rem * (1 - 1) + 1.2rem);
  }
}

.p-mimosa__feature__fragrance {
  background: var(--text-nega);
  position: relative;
  padding-left: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 2 + 2.4rem * (2 - 1) + 2.4rem);
  padding-bottom: 5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__feature__fragrance {
    padding: 0 calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 1 + 1.2rem * (1 - 1) + 1.2rem) 2.8rem;
  }
}

.p-mimosa__feature__fragrance-main {
  display: flex;
  gap: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 2 + 2.4rem * (2 - 1) + 0px);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__feature__fragrance-main {
    flex-direction: column;
    gap: 4rem;
  }
}

.p-mimosa__feature__fragrance-main-txt-container {
  flex-basis: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 6 + 2.4rem * (6 - 1) + 2.4rem);
  padding-top: 13.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__feature__fragrance-main-txt-container {
    padding-top: 9.1rem;
    flex-basis: auto;
  }
}

.p-mimosa__feature__fragrance-main-ttl {
  font-size: 1.8rem;
  line-height: 1.6;
  font-family: TsukuMinPr6-RB, "Yu Mincho Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝B", "MS Mincho", serif;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.072rem;
}
.p-mimosa__feature__fragrance-main-ttl b {
  font-family: TsukuMinPr6-D, "Yu Mincho Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝B", "MS Mincho", serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__feature__fragrance-main-ttl {
    font-size: 1.6rem;
    letter-spacing: 0.064rem;
  }
}

.p-mimosa__feature__fragrance-main-txt {
  font-size: 1.3rem;
  line-height: 1.85;
  margin-top: 1.8rem;
  text-align: justify;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__feature__fragrance-main-txt {
    margin-top: 2rem;
    letter-spacing: 0.052rem;
  }
}

.p-mimosa__feature__fragrance-main-desc {
  margin-top: 4.8rem;
  border-radius: 0.4rem;
  border: 1px solid var(--text-accent-PPP);
  padding: 1.6rem;
  color: var(--text-accent-PPP);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__feature__fragrance-main-desc {
    margin-top: 2rem;
    border-radius: 0.5rem;
    padding: 1.2rem 1.6rem;
  }
}

.p-mimosa__feature__fragrance-main-desc-ttl {
  display: block;
  font-size: 1.2rem;
  line-height: 1.85;
  letter-spacing: 0.048rem;
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.p-mimosa__feature__fragrance-main-desc-ttl b {
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
}

.p-mimosa__feature__fragrance-main-desc-txt {
  font-size: 1.2rem;
  line-height: 1.7;
  text-align: justify;
  letter-spacing: 0.06rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__feature__fragrance-main-desc-txt {
    line-height: 1.6;
  }
}

.p-mimosa__feature__fragrance-main-img-container {
  flex: 1;
  position: relative;
  height: 60.7rem;
  overflow: hidden;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__feature__fragrance-main-img-container {
    padding-bottom: 13.4rem;
    margin-right: calc(-1 * ((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 1 + 1.2rem * (1 - 1) + 2.8rem));
    height: auto;
  }
}

.p-mimosa__feature__fragrance-main-img {
  display: block;
  width: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 8 + 2.4rem * (8 - 1) + 2.4rem);
  margin-right: 0;
  margin-left: auto;
  height: 100%;
  transform: translateX(0.1rem);
}
.p-mimosa__feature__fragrance-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__feature__fragrance-main-img {
    width: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 9 + 1.2rem * (9 - 1) + 1.6rem);
    height: 32.8rem;
  }
}

.p-mimosa__feature__fragrance-main-perfume {
  position: absolute;
  left: 0;
  bottom: 8.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__feature__fragrance-main-perfume {
    bottom: 0;
  }
}

.p-mimosa__feature__fragrance-main-perfume-item {
  padding: 1.2rem 1.6rem;
  text-align: center;
  width: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 4 + 2.4rem * (4 - 1) + 2.4rem);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__feature__fragrance-main-perfume-item {
    padding: 1.1rem;
    width: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 8 + 1.2rem * (8 - 1) + 0px);
  }
}
.p-mimosa__feature__fragrance-main-perfume-item:nth-of-type(1) {
  background: #f7fced;
}
.p-mimosa__feature__fragrance-main-perfume-item:nth-of-type(2) {
  background: #e7f6c6;
}
.p-mimosa__feature__fragrance-main-perfume-item:nth-of-type(3) {
  background: #cfee8e;
}

.p-mimosa__feature__fragrance-main-perfume-item-em {
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  font-size: 1.2rem;
  line-height: 1.6;
}
.p-mimosa__feature__fragrance-main-perfume-item-em b {
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__feature__fragrance-main-perfume-item-em {
    font-size: 1rem;
  }
}

.p-mimosa__feature__fragrance-main-perfume-item-txt {
  font-size: 1.2rem;
  line-height: 1.6;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__feature__fragrance-main-perfume-item-txt {
    font-size: 1rem;
  }
}

.p-mimosa__feature__fragrance-column {
  background: var(--bg-paper);
  padding: 1.6rem;
  margin-right: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 2 + 2.4rem * (2 - 1) + 2.4rem);
  text-align: center;
  margin-top: -3.8rem;
  z-index: 10;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__feature__fragrance-column {
    margin-top: 4rem;
    margin-right: 0;
    padding: 2rem calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 1 + 1.2rem * (1 - 1) + 1.2rem) 4.2rem;
  }
}

.p-mimosa__feature__fragrance-column-label {
  display: block;
  font-family: "Libre Baskerville", TsukuMinPr6-D, "Yu Mincho Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝B", "MS Mincho", serif;
  font-weight: 500;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.4rem;
  line-height: 1.55;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__feature__fragrance-column-label {
    font-size: 1rem;
    text-align: left;
    transform: translateX(-1.1rem);
    letter-spacing: -0.08em;
  }
}

.p-mimosa__feature__fragrance-column-ttl {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-top: 2.8rem;
  display: block;
  letter-spacing: 0.04em;
  font-family: TsukuMinPr6-RB, "Yu Mincho Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝B", "MS Mincho", serif;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.p-mimosa__feature__fragrance-column-ttl b {
  font-family: TsukuMinPr6-D, "Yu Mincho Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝B", "MS Mincho", serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__feature__fragrance-column-ttl {
    font-size: 1.6rem;
    letter-spacing: 0.02em;
  }
}

.p-mimosa__feature__fragrance-column-ttl-span {
  font-size: 1.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__feature__fragrance-column-ttl-span {
    font-size: 1.2rem;
    line-height: 1.4;
  }
}

.p-mimosa__feature__fragrance-column-txt {
  font-size: 1.3rem;
  line-height: 1.85;
  margin-top: 0.8rem;
  letter-spacing: 0.052rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__feature__fragrance-column-txt {
    line-height: 1.75;
    margin-top: 1.6rem;
    letter-spacing: -0.013rem;
    text-align: justify;
  }
}

.p-mimosa__feature__director {
  background: var(--text-nega);
  position: relative;
  padding-left: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 2 + 2.4rem * (2 - 1) + 2.4rem);
  padding-right: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 1 + 2.4rem * (1 - 1) + 2.4rem);
  padding-bottom: 5rem;
  padding-top: 12.6rem;
  margin-top: 6.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__feature__director {
    padding: 9.6rem calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 1 + 1.2rem * (1 - 1) + 1.2rem) 3.4rem;
    margin-top: 4rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__feature__director .p-mimosa__feature__item-label {
    top: 2.5rem;
    letter-spacing: -0.05em;
  }
}

.p-mimosa__feature__director-main {
  display: flex;
  gap: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 1 + 2.4rem * (1 - 1) + 0px);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__feature__director-main {
    flex-direction: column;
    gap: 4rem;
  }
}

.p-mimosa__feature__director-main-txt-container {
  flex: 1;
  display: flex;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__feature__director-main-txt-container {
    flex-direction: column;
  }
}

.p-mimosa__feature__director-main-txt-left {
  flex: 1;
  margin-top: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__feature__director-main-txt-left {
    margin-top: 0;
  }
}

.p-mimosa__feature__director-main-ttl {
  font-size: 1.8rem;
  line-height: 1.6;
  font-family: TsukuMinPr6-RB, "Yu Mincho Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝B", "MS Mincho", serif;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.072rem;
}
.p-mimosa__feature__director-main-ttl b {
  font-family: TsukuMinPr6-D, "Yu Mincho Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝B", "MS Mincho", serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__feature__director-main-ttl {
    font-size: 1.6rem;
    letter-spacing: 0.034rem;
    font-feature-settings: "palt";
  }
}

.p-mimosa__feature__director-main-name {
  display: block;
  font-size: 1.2rem;
  line-height: 1.85;
  margin-top: 2.5rem;
  letter-spacing: 0.048rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__feature__director-main-name {
    font-size: 1rem;
    margin-top: 1rem;
    text-align: right;
    letter-spacing: 0.04rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__feature__director-main-txt-container .p-mimosa__feature__director-main-name {
    display: none;
  }
}
.p-mimosa__feature__director-main-img-container .p-mimosa__feature__director-main-name {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__feature__director-main-img-container .p-mimosa__feature__director-main-name {
    display: block;
  }
}

.p-mimosa__feature__director-main-txt-right {
  flex-basis: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 6 + 2.4rem * (6 - 1) + 2.4rem);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__feature__director-main-txt-right {
    flex-basis: auto;
    margin-top: 2rem;
  }
}

.p-mimosa__feature__director-main-txt {
  font-size: 1.3rem;
  line-height: 1.85;
  text-align: justify;
  letter-spacing: 0.052rem;
}

.p-mimosa__feature__director-main-img-container {
  flex-basis: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 5 + 2.4rem * (5 - 1) + 2.4rem);
  margin-top: 0.6rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__feature__director-main-img-container {
    margin-top: 0;
    flex-basis: auto;
    width: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 8 + 1.2rem * (8 - 1) + 0px);
    margin-left: auto;
  }
}

.p-mimosa__bid {
  background: var(--text-nega);
  padding: 10rem calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 2 + 2.4rem * (2 - 1) + 4.8rem) 0;
  z-index: 10;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__bid {
    padding: 8rem 1.6rem 0 1.6rem;
  }
}

.p-mimosa__bid__bg {
  background: #f3fae2;
  display: block;
  padding: 11.9rem calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 1 + 2.4rem * (1 - 1) + 0px) 4rem;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__bid__bg {
    padding: 8.8rem calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 1 + 1.2rem * (1 - 1) + 1.2rem) 2rem;
  }
}
.p-mimosa__bid__bg:hover .text-wrap .line {
  transition: all 0.4s cubic-bezier(0.36, 0, 0, 1);
  transform: translateY(-102%);
}
.p-mimosa__bid__bg:hover .arrow {
  animation: iconArrow 0.4s cubic-bezier(0.43, 0.05, 0.17, 1);
}
.p-mimosa__bid__bg:hover .p-mimosa__bid__body-img img {
  transform: scale(1.05);
}

.p-mimosa__bid__orn {
  position: absolute;
  top: 3.1rem;
  left: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 1 + 2.4rem * (1 - 1) + 0px);
  width: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 1 + 2.4rem * (1 - 1) + 4.8rem);
  height: 1rem;
  background: linear-gradient(to right, var(--text-accent-P) 0%, var(--text-accent-P) 33.3333333333%, var(--text-accent-PP) 33.3333333333%, var(--text-accent-PP) 66.6666666667%, var(--text-accent-PPP) 66.6666666667%, var(--text-accent-PPP) 100%);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__bid__orn {
    top: 2rem;
    left: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 1 + 1.2rem * (1 - 1) + 1.2rem);
    width: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 3 + 1.2rem * (3 - 1) + 0px);
    height: 0.8rem;
  }
}

.p-mimosa__bid__inner {
  display: flex;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__bid__inner {
    flex-direction: column-reverse;
  }
}

.p-mimosa__bid__head {
  flex-basis: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 11 + 2.4rem * (11 - 1) + 2.4rem);
  margin-top: 4.1rem;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__bid__head {
    flex-basis: auto;
    margin-top: 3.5rem;
  }
}

.p-mimosa__bid__head-ttl {
  font-size: 3.7rem;
  line-height: 1.25;
  font-family: Jost, sans-serif;
  font-weight: 400;
  letter-spacing: 0.111rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__bid__head-ttl {
    font-size: 2.4rem;
    line-height: 1.3;
    letter-spacing: 0.072rem;
  }
}

.p-mimosa__bid__head-copy {
  font-family: TsukuMinPr6-RB, "Yu Mincho Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝B", "MS Mincho", serif;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  font-size: 1.8rem;
  line-height: 1.8;
  margin-top: 1.2rem;
  letter-spacing: 0.108rem;
}
.p-mimosa__bid__head-copy b {
  font-family: TsukuMinPr6-D, "Yu Mincho Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝B", "MS Mincho", serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__bid__head-copy {
    font-size: 1.4rem;
    margin-top: 1rem;
    letter-spacing: 0.084rem;
  }
}

.p-mimosa__bid__head-txt {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-top: 2.4rem;
  letter-spacing: 0.078rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__bid__head-txt {
    font-size: 1.1rem;
    line-height: 1.85;
    margin-top: 2.3rem;
    letter-spacing: 0.11em;
  }
}

.p-mimosa__bid__body {
  flex: 1;
}

.p-mimosa__bid__body-img {
  display: block;
  overflow: hidden;
}
.p-mimosa__bid__body-img img {
  transition: all 0.6s cubic-bezier(0.36, 0, 0, 1);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__bid__body-img {
    height: 22rem;
  }
  .p-mimosa__bid__body-img img {
    height: 100%;
    object-fit: cover;
  }
}

.p-mimosa__bid__head-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.2rem;
  line-height: 1.1;
  padding: 1.6rem 0.8rem 1.6rem 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1019607843);
  transition: color 0.8s cubic-bezier(0.36, 0, 0, 1);
  width: 33rem;
  margin-top: 6rem;
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: color 0.4s cubic-bezier(0.36, 0, 0, 1);
}
.p-mimosa__bid__head-btn b {
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__bid__head-btn {
    margin-top: 2.7rem;
    font-size: 1.2rem;
    width: 100%;
    padding: 2.4rem 0.8rem 2.4rem 0;
    position: relative;
    bottom: auto;
    left: auto;
  }
}
.p-mimosa__bid__head-btn .arrow {
  width: 1.2rem;
  height: 1.2rem;
  margin-left: auto;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: rotate(0);
  background-image: url('data:image/svg+xml;utf8, <svg width="11" height="5" viewBox="0 0 11 5" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 2.99994L6 2.99994L6 1.99994L8.74228e-08 1.99994L0 2.99994Z" fill="%23111111"/><path d="M11 2.53006L5.63462 0.531308L5.63462 4.52881L11 2.53006Z" fill="%23111111"/></svg>');
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__bid__head-btn .arrow {
    width: 1rem;
    height: 1rem;
    margin-right: 1.2rem;
  }
}

.p-mimosa__bid__head-btn-title .text-wrap {
  display: flex;
  flex-direction: column;
  height: 1em;
  overflow: hidden;
}
.p-mimosa__bid__head-btn-title .text-wrap .line {
  transition: all 0.8s cubic-bezier(0.36, 0, 0, 1);
  transform: translateY(0);
}

.p-mimosa__onlineStore {
  margin: 10rem auto 0;
  border-top: 1px solid var(--border-base);
  border-bottom: 1px solid var(--border-base);
  width: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 14 + 2.4rem * (14 - 1) + 0px);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__onlineStore {
    margin-top: 7.9rem;
    width: calc((100vw - 1.6rem - 1.6rem - 1.2rem * (12 - 1)) / 12 * 10 + 1.2rem * (10 - 1) + 0px);
  }
}

.p-mimosa__onlineStore__inner {
  display: flex;
  padding: 1.6rem 0;
  gap: 3.4rem;
  align-items: center;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__onlineStore__inner {
    flex-direction: column;
    padding: 2rem 0;
    gap: 2rem;
  }
}
.p-mimosa__onlineStore__inner:hover .text-wrap .line {
  transition: all 0.4s cubic-bezier(0.36, 0, 0, 1);
  transform: translateY(-104%);
}
.p-mimosa__onlineStore__inner:hover .arrow {
  animation: iconArrowExternal 0.4s cubic-bezier(0.43, 0.05, 0.17, 1);
}
@keyframes iconArrowExternal {
  0% {
    transform: translateX(0) translateY(0) rotate(-45deg);
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  49.9% {
    transform: translateX(50%) translateY(-50%) rotate(-45deg);
    opacity: 0;
  }
  50% {
    transform: translateX(-50%) translateY(50%) rotate(-45deg);
    opacity: 0;
  }
  100% {
    transform: translateX(0) translateY(0) rotate(-45deg);
    opacity: 1;
  }
}

.p-mimosa__onlineStore__head {
  flex-basis: calc((100vw - 0px - 2.4rem - 2.4rem - 2.4rem * (24 - 1)) / 24 * 4 + 2.4rem * (4 - 1) + 0px);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__onlineStore__head {
    flex-basis: auto;
    width: 100%;
  }
}

.p-mimosa__onlineStore__head-img {
  width: 100%;
  display: block;
}

.p-mimosa__onlineStore__body {
  flex: 1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__onlineStore__body {
    width: 100%;
  }
}

.p-mimosa__onlineStore__body-ttl {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
  margin-top: 0.5rem;
  letter-spacing: 0.06rem;
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.p-mimosa__onlineStore__body-ttl b {
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__onlineStore__body-ttl {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-top: 0;
    letter-spacing: 0.052rem;
  }
}

.p-mimosa__onlineStore__body-txt {
  font-size: 1.3rem;
  line-height: 1.7;
  margin-top: 1rem;
  letter-spacing: 0.052rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__onlineStore__body-txt {
    font-size: 1.1rem;
    line-height: 1.85;
    margin-top: 0.9rem;
    letter-spacing: 0.044rem;
  }
}

.p-mimosa__onlineStore__btn {
  position: relative;
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  color: #111111;
  font-size: 1.2rem;
  line-height: 110%; /* 13.2px */
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: auto;
  bottom: 1.6rem;
  right: 0;
  transition: all 0.4s cubic-bezier(0.36, 0, 0, 1);
  pointer-events: none;
}
.p-mimosa__onlineStore__btn b {
  font-family: HelveticaNeueeTextStd-Md, FP-KoburinaGoStdN-W6, YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__onlineStore__btn {
    font-size: 1rem;
    line-height: 110%; /* 11px */
  }
}
.p-mimosa__onlineStore__btn .text-wrap {
  display: flex;
  flex-direction: column;
  height: 1em;
  overflow: hidden;
}
.p-mimosa__onlineStore__btn .text-wrap .line {
  transition: transform 0.8s cubic-bezier(0.36, 0, 0, 1);
  transform: translateY(0);
}
.p-mimosa__onlineStore__btn .arrow {
  width: 1.1rem;
  height: 1em;
  margin-top: 0.1rem;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: rotate(0);
  background-image: url('data:image/svg+xml;utf8, <svg width="11" height="5" viewBox="0 0 11 5" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 2.99994L6 2.99994L6 1.99994L8.74228e-08 1.99994L0 2.99994Z" fill="%23111111"/><path d="M11 2.53006L5.63462 0.531308L5.63462 4.52881L11 2.53006Z" fill="%23111111"/></svg>');
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__onlineStore__btn .arrow {
    width: 0.9rem;
    height: 0.9rem;
  }
}
.p-mimosa__onlineStore__btn:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  inset: auto 0 -0.25rem 0;
  background: #111111;
  opacity: 0.7;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__onlineStore__btn:after {
    inset: auto 0 -0.3rem 0;
  }
}
.p-mimosa__onlineStore__btn:hover .text-wrap .line {
  transition: transform 0.4s cubic-bezier(0.36, 0, 0, 1);
  transform: translateY(-104%);
}
.p-mimosa__onlineStore__btn:hover .arrow {
  animation: iconArrow 0.4s cubic-bezier(0.43, 0.05, 0.17, 1);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .p-mimosa__onlineStore__btn {
    position: relative;
    margin-top: 2.1rem;
    bottom: auto;
    right: auto;
    margin-left: auto;
    font-size: 1.2rem;
  }
}
.p-mimosa__onlineStore__btn .arrow {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: rotate(-45deg);
  background-image: url('data:image/svg+xml;utf8, <svg width="11" height="5" viewBox="0 0 11 5" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 2.99994L6 2.99994L6 1.99994L8.74228e-08 1.99994L0 2.99994Z" fill="%23111111"/><path d="M11 2.53006L5.63462 0.531308L5.63462 4.52881L11 2.53006Z" fill="%23111111"/></svg>');
}

.iv01 {
  opacity: 0;
  transform: translateY(2rem);
  transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.5s linear;
}

.iv01_show {
  opacity: 1;
  transform: translateY(0);
}

/*# sourceMappingURL=index.css.map */
