@charset "UTF-8";
html {
  font-family: "Noto Sans JP", sans-serif;
  color: #666666;
  font-weight: 400;
  letter-spacing: 0.01rem;
  line-height: 1.77;
  scroll-behavior: smooth;
}

@media (max-width: 960px) {
  html {
    font-size: 1.6666666667vw;
  }
}
@media (max-width: 680px) {
  html {
    font-size: 2.1333333333vw;
  }
}

a,
button {
  transition: color 1s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) {
  a:hover,
  button:not(.faq_cnt__trigger):hover {
    color: #94c1bd;
  }
}
/* コンテンツ幅 */
.inner {
  max-width: 960px;
  width: calc(100% - 60px);
  margin: 0 auto;
}

/* ヘッダー
***************************************************************/
header {
  padding: 2.5rem 2.5rem 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 680px) {
  header {
    padding: 1.875rem 1.875rem 0;
  }
}

.h_logo a {
  width: 6.5625rem;
  z-index: 9;
  display: block;
}

header .h_logo {
  width: 6.6875rem;
}

/* ハンバーガーボタン */
header .ham {
  cursor: pointer;
  position: relative;
  z-index: 9999;
  background: none;
  border: none;
  width: 2.5rem;
  height: 1.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

header .ham span {
  width: 2.5rem;
  height: 1px;
  background-color: #666666;
  transition: transform 0.4s ease, opacity 0.3s ease;
  display: block;
}

header .ham.active span:nth-child(1) {
  transform: translateY(0.875rem) rotate(30deg);
}
@media (max-width: 680px) {
  header .ham.active span:nth-child(1) {
    transform: translateY(0.8125rem) rotate(30deg);
  }
}

header .ham.active span:nth-child(3) {
  transform: translateY(-0.875rem) rotate(-30deg);
}
@media (max-width: 680px) {
  header .ham.active span:nth-child(3) {
    transform: translateY(-0.8125rem) rotate(-30deg);
  }
}

header .ham.active span:nth-child(2) {
  opacity: 0;
}

/* ナビゲーション */
header .nav_wrap {
  transition: ease 0.5s;
  background-color: rgba(255, 255, 255, 0.6);
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  overflow-y: auto;
  backdrop-filter: blur(10px);
}

header .nav_wrap nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

header .nav_wrap.active {
  visibility: visible;
  opacity: 1;
  transition: ease 1600ms;
}

header .nav_wrap .n_logo {
  width: 6.25rem;
}
@media (max-width: 680px) {
  header .nav_wrap .n_logo {
    width: 7rem;
  }
}

header .nav_wrap .nav li img {
  height: 1.3125rem;
  width: auto;
  margin-top: 5rem;
}
@media (max-width: 680px) {
  header .nav_wrap .nav li img {
    margin-top: 6.25rem;
    height: 1.6875rem;
  }
}

/* SNSリンク */
header .nav_wrap .sns_wrap {
  display: flex;
  gap: 1.375rem;
  margin-top: 5rem;
}
@media (max-width: 680px) {
  header .nav_wrap .sns_wrap {
    gap: 2.125rem;
    margin-top: 6.25rem;
  }
}

header .nav_wrap .sns_wrap li a {
  color: #666666;
  font-size: 0.625rem;
  text-align: center;
  display: block;
}

header .nav_wrap .sns_wrap li a .txt {
  margin-top: 0.375rem;
}
@media (max-width: 680px) {
  header .nav_wrap .sns_wrap li a .txt {
    margin-top: 0.5rem;
  }
}

header .nav_wrap .sns_wrap li a .ico {
  margin-left: auto;
  margin-right: auto;
}

header .nav_wrap .sns_wrap li.ig a .ico {
  width: 1.25rem;
}
@media (max-width: 680px) {
  header .nav_wrap .sns_wrap li.ig a .ico {
    width: 1.6875rem;
  }
}

header .nav_wrap .sns_wrap li.fb a .ico {
  width: 0.625rem;
}
@media (max-width: 680px) {
  header .nav_wrap .sns_wrap li.fb a .ico {
    width: 0.875rem;
  }
}

header .nav_wrap .sns_wrap li.x a .ico {
  width: 0.9375rem;
  margin-left: 0.5rem;
  padding-top: 0.0625rem;
}
@media (max-width: 680px) {
  header .nav_wrap .sns_wrap li.x a .ico {
    width: 1.25rem;
  }
}

@media (hover: hover) {
  header .nav_wrap .nav li a img,
  header .nav_wrap .sns_wrap li a .ico img {
    transition: filter 0.5s ease;
  }
  header .nav_wrap .nav li a:hover img,
  header .nav_wrap .sns_wrap li a:hover .ico img {
    filter: brightness(0) saturate(100%) invert(76%) sepia(20%) saturate(367%) hue-rotate(126deg) brightness(90%) contrast(90%);
  }
  header .nav_wrap .sns_wrap li a .txt {
    transition: color 0.5s ease;
  }
  header .nav_wrap .sns_wrap li a:hover .txt {
    color: #94c1bd;
  }
}
/* フッター
***************************************************************/
.l-footer {
  width: 100%;
  padding: 2rem 0 1.625rem;
  background: #666666;
}
@media (max-width: 680px) {
  .l-footer {
    padding: 2.5rem 0;
  }
}

.l-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 680px) {
  .l-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
  }
}

.l-footer__logo {
  width: 6.5625rem;
}

.l-footer__logo a,
.l-footer__logo img {
  display: block;
}

.l-footer__links {
  margin-top: 1.5rem;
}
@media (max-width: 680px) {
  .l-footer__links {
    margin-top: 2.5rem;
  }
}

@media (max-width: 680px) {
  .l-footer__links li + li {
    margin-top: 0.75rem;
  }
}

.l-footer__links a {
  color: #ffffff;
  font-size: 0.75rem;
  line-height: 1;
}
@media (max-width: 680px) {
  .l-footer__links a {
    font-size: 1.25rem;
  }
}

.l-footer__right {
  text-align: right;
}
@media (max-width: 680px) {
  .l-footer__right {
    text-align: left;
  }
}

.l-footer__sns {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 1.5rem;
}
@media (max-width: 680px) {
  .l-footer__sns {
    gap: 2.125rem;
    justify-content: flex-start;
  }
}

.l-footer__sns-item a {
  display: block;
}

.l-footer__sns-ico {
  display: block;
  background-color: #ffffff;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.l-footer__sns-item--ig a {
  text-align: center;
}

.l-footer__sns-item--ig .l-footer__sns-ico {
  width: 1.25rem;
  height: 1.25rem;
  margin: 0 auto;
  mask-image: url("../img/ico_instagram_wh.svg");
  -webkit-mask-image: url("../img/ico_instagram_wh.svg");
}
@media (max-width: 680px) {
  .l-footer__sns-item--ig .l-footer__sns-ico {
    width: 1.4375rem;
    height: 1.4375rem;
  }
}

.l-footer__sns-item--fb {
  width: 0.625rem;
}

.l-footer__sns-item--fb .l-footer__sns-ico {
  width: 100%;
  height: 1.25rem;
  mask-image: url("../img/ico_facebook_wh.svg");
  -webkit-mask-image: url("../img/ico_facebook_wh.svg");
}

.l-footer__sns-item--x {
  width: 0.9375rem;
}

.l-footer__sns-item--x .l-footer__sns-ico {
  width: 100%;
  height: 1.25rem;
  mask-image: url("../img/ico_x_wh.svg");
  -webkit-mask-image: url("../img/ico_x_wh.svg");
}

.l-footer__copyright {
  margin-top: 1.3125rem;
  color: #ffffff;
  font-size: 0.625rem;
  line-height: 1;
}
@media (max-width: 680px) {
  .l-footer__copyright {
    margin-top: 2.5rem;
    font-size: 1.1875rem;
  }
}

.l-footer__sns-txt {
  margin-top: 0.375rem;
  color: #ffffff;
  font-size: 0.375rem;
  line-height: 1;
}

@media (hover: hover) {
  .l-footer__links a,
  .l-footer__sns-txt {
    transition: color 0.5s ease;
  }
  .l-footer__sns-ico {
    transition: background-color 0.5s ease;
  }
  .l-footer__links a:hover,
  .l-footer__sns-item--ig a:hover .l-footer__sns-txt {
    color: #94c1bd;
  }
  .l-footer__sns-item a:hover .l-footer__sns-ico {
    background-color: #94c1bd;
  }
}
.c-ttl {
  height: 2.375rem;
}
@media (max-width: 680px) {
  .c-ttl {
    height: 2.5rem;
  }
}

.c-ttl__img {
  height: 100%;
  width: auto;
}

.c-sub_ttl {
  margin: 0 auto;
  margin-top: 5rem;
}

.c-sub_ttl__img {
  height: auto;
  width: 100%;
}

.c-ttl-wrap {
  text-align: center;
}

.c-text {
  font-size: 1rem;
}
@media (max-width: 680px) {
  .c-text {
    font-size: 1.625rem;
  }
}

.c-cnt__top-text {
  text-align: center;
  margin-top: 1.875rem;
  line-height: 2.26;
}

.c-item-price {
  font-size: 1.625rem;
  margin: 3.75rem 0 2.5rem;
}
@media (max-width: 680px) {
  .c-item-price {
    font-size: 1.875rem;
    margin: 3.125rem 0 1.25rem;
  }
}

.c-item-price span {
  font-size: 0.8125rem;
}
@media (max-width: 680px) {
  .c-item-price span {
    font-size: 1.25rem;
  }
}

.c-btn_buy {
  width: 27.5rem;
  height: 3.125rem;
  background-color: #666666;
  cursor: pointer;
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (max-width: 680px) {
  .c-btn_buy {
    width: 100%;
    height: 3.75rem;
  }
}

@media (max-width: 680px) {
  .c-btn_buy.u_sp {
    display: flex;
  }
}

@media (hover: hover) {
  .c-btn_buy:hover {
    background-color: #94c1bd;
  }
}
.c-btn_buy__text {
  width: 1.9375rem;
  height: auto;
}
@media (max-width: 680px) {
  .c-btn_buy__text {
    width: 2.8125rem;
  }
}

.bg1 {
  background: url(../img/bg1.webp) no-repeat center top;
  background-size: cover;
}
@media (max-width: 680px) {
  .bg1 {
    background: url(../img/bg1_sp.webp) no-repeat center top;
    background-size: cover;
  }
}

.bg2 {
  background: url(../img/bg2.webp) no-repeat center top;
  background-size: cover;
}
@media (max-width: 680px) {
  .bg2 {
    background: url(../img/bg2_sp.webp) no-repeat center top;
    background-size: cover;
  }
}

.faq_bg {
  background: url(../img/faq_bg.webp) no-repeat center top;
  background-size: cover;
}
@media (max-width: 680px) {
  .faq_bg {
    background: url(../img/faq_bg_sp.webp) no-repeat left top;
    background-size: 100% auto;
  }
}

.mv__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15rem 0 11.75rem;
}
@media (max-width: 680px) {
  .mv__inner {
    flex-direction: column-reverse;
    padding: 11.25rem 0 11.75rem;
  }
}

.mv__logo {
  width: 28.9375rem;
}
@media (max-width: 680px) {
  .mv__logo {
    width: 31.25rem;
  }
}

@media (min-width: 681px) {
  .mv__inner-wrap {
    margin-top: 3.75rem;
  }
}

.mv__ttl {
  width: 28.8125rem;
  margin-top: 3.75rem;
}
@media (max-width: 680px) {
  .mv__ttl {
    margin: 3.75rem auto 0;
    width: 30.6875rem;
  }
}

.mv__img-wrap {
  width: 17.125rem;
  text-align: right;
  margin-right: 5.1875rem;
}
@media (max-width: 680px) {
  .mv__img-wrap {
    width: 35.6vw;
    margin-right: 0;
    margin-bottom: 3.75rem;
    margin-left: 3.125rem;
  }
}

.concept_cnt {
  padding: 6.875rem 0 9.6875rem;
}
@media (max-width: 680px) {
  .concept_cnt {
    padding: 8.125rem 0 9.6875rem;
  }
}

.p-sub_ttl--concept {
  width: 32.4375rem;
}
@media (max-width: 680px) {
  .p-sub_ttl--concept {
    width: 25.0625rem;
  }
}

.concept_cnt__img {
  margin-top: 15.875rem;
}
@media (max-width: 680px) {
  .concept_cnt__img {
    margin-top: 10rem;
  }
}

.product_cnt {
  padding: 7.5rem 0 8.125rem;
}
@media (max-width: 680px) {
  .product_cnt {
    padding: 10rem 0 8.125rem;
  }
}

.product_cnt__item-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #bcbcbc;
  padding-bottom: 8.125rem;
  margin-top: 5.625rem;
}
@media (max-width: 680px) {
  .product_cnt__item-wrap {
    flex-direction: column;
    align-items: center;
    margin-top: 7.5rem;
  }
}

.product_cnt__item-img {
  width: 16.875rem;
  margin-left: 7.5rem;
}
@media (max-width: 680px) {
  .product_cnt__item-img {
    width: 16.875rem;
    margin-left: 2.5rem;
    margin-bottom: 5rem;
  }
}

.product_cnt__item-text-wrap {
  width: 27.5rem;
  margin-left: 2.5rem;
}
@media (max-width: 680px) {
  .product_cnt__item-text-wrap {
    width: 100%;
    margin-left: 0;
  }
}

.product_cnt__item-ttl {
  width: 15rem;
}
@media (max-width: 680px) {
  .product_cnt__item-ttl {
    width: 16.4375rem;
  }
}

.product_cnt__item-text span {
  font-size: 0.625rem;
}
@media (max-width: 680px) {
  .product_cnt__item-text span {
    font-size: 1.25rem;
  }
}

.point_cnt__item-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 680px) {
  .point_cnt__item-wrap {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 680px) {
  .point_cnt__item-wrap02 {
    flex-direction: column-reverse;
  }
}

.point_cnt__item-text-wrap {
  margin-right: 2.5rem;
}
@media (max-width: 680px) {
  .point_cnt__item-text-wrap {
    margin-right: 0;
    margin-bottom: 3.125rem;
  }
}

.point_cnt__item-text-wrap01 {
  margin-top: 1.25rem;
}

.point_cnt__item-number {
  height: 2.1875rem;
}
@media (max-width: 680px) {
  .point_cnt__item-number {
    height: 2.8125rem;
  }
}

.point_cnt__item-number__img {
  height: 100%;
  width: auto;
}

.point_cnt__item-ttl {
  width: 24.0625rem;
  margin: 2.5rem 0;
}
@media (max-width: 680px) {
  .point_cnt__item-ttl {
    margin: 3.125rem 0;
  }
}

.point_cnt__item-ttl--01 {
  width: 24.375rem;
}
@media (max-width: 680px) {
  .point_cnt__item-ttl--01 {
    width: 33.75rem;
  }
}

.point_cnt__item-ttl--02 {
  width: 20.25rem;
}
@media (max-width: 680px) {
  .point_cnt__item-ttl--02 {
    width: 28.125rem;
  }
}

.point_cnt__item-ttl-sub {
  line-height: 1;
}

.point_cnt__item-ttl-sub__img {
  height: 1.0625rem;
  width: auto;
}
@media (max-width: 680px) {
  .point_cnt__item-ttl-sub__img {
    height: 1.625rem;
  }
}

.point_cnt__item-text-wrap02 .point_cnt__item-ttl-sub__img {
  height: 1.1875rem;
  width: auto;
}
@media (max-width: 680px) {
  .point_cnt__item-text-wrap02 .point_cnt__item-ttl-sub__img {
    height: 1.8125rem;
  }
}

.point_cnt__item-text {
  margin-top: 0.75rem;
  line-height: 2.26;
}
@media (max-width: 680px) {
  .point_cnt__item-text {
    margin-top: 0.75rem;
    line-height: 1.85;
  }
}

.point_cnt__item-subtext-wrap {
  margin-bottom: 1.6875rem;
}
@media (max-width: 680px) {
  .point_cnt__item-subtext-wrap {
    margin-bottom: 2.875rem;
  }
}

.point_cnt__item-text-wrap02 {
  margin: 5.625rem 0 0 2.25rem;
}
@media (max-width: 680px) {
  .point_cnt__item-text-wrap02 {
    margin: 6.875rem 0 2.25rem 0;
  }
}

.point_cnt__item-movie {
  position: relative;
  width: 50%;
  height: 40rem;
  flex-shrink: 0;
}
@media (max-width: 680px) {
  .point_cnt__item-movie {
    width: 100%;
    height: 52.5rem;
  }
}

.point_cnt__item-movie__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.point_cnt__item-movie__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 5rem;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.point_cnt__item-movie__btn img {
  display: block;
  width: 100%;
  height: auto;
  transition: filter 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.point_cnt__item-movie.is-playing .point_cnt__item-movie__btn {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.p-sub_ttl--fragrance {
  width: 14.25rem;
  margin-top: 2.25rem;
}
@media (max-width: 680px) {
  .p-sub_ttl--fragrance {
    width: 21.25rem;
  }
}

.fragrance_cnt {
  padding-top: 6.875rem;
}
@media (max-width: 680px) {
  .fragrance_cnt {
    padding-top: 8.125rem;
  }
}

.fragrance_cnt__item-wrap {
  width: 40.625rem;
  margin: 0 auto;
  margin-top: 6.25rem;
  padding-bottom: 8.75rem;
}
@media (max-width: 680px) {
  .fragrance_cnt__item-wrap {
    width: 100%;
    padding-bottom: 10rem;
  }
}

.faq_cnt {
  padding: 7.5rem 0 8.75rem;
}
@media (max-width: 680px) {
  .faq_cnt {
    padding: 10rem 0 10rem;
  }
}

.faq_cnt__list {
  margin-top: 6.25rem;
  border-top: 1px solid #bcbcbc;
}
@media (max-width: 680px) {
  .faq_cnt__list {
    margin-top: 7.5rem;
  }
}

.faq_cnt__item {
  border-bottom: 1px solid #bcbcbc;
}

.faq_cnt__trigger {
  appearance: none;
  display: grid;
  grid-template-columns: 2.25rem 1fr 1.25rem;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 2.375rem 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
  color: #666666;
  transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (max-width: 680px) {
  .faq_cnt__trigger {
    grid-template-columns: 1.75rem 1fr 1.125rem;
    gap: 0.75rem;
    padding: 3.125rem 0;
  }
}

.faq_cnt__item.is-open .faq_cnt__trigger {
  color: #94c1bd;
}

.faq_cnt__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s ease;
}
@media (prefers-reduced-motion: reduce) {
  .faq_cnt__panel {
    transition-duration: 0.01ms;
  }
}

.faq_cnt__item.is-open .faq_cnt__panel {
  grid-template-rows: 1fr;
}

.faq_cnt__panel-motion {
  overflow: hidden;
  min-height: 0;
}

.faq_cnt__q-wrap {
  position: relative;
  flex-shrink: 0;
  width: 1rem;
  height: 1.875rem;
}
@media (prefers-reduced-motion: reduce) {
  .faq_cnt__q-wrap .faq_cnt__q-icon {
    transition-duration: 0.01ms;
  }
}

.faq_cnt__q-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq_cnt__q-icon--closed {
  opacity: 1;
}

.faq_cnt__q-icon--open {
  opacity: 0;
}

.faq_cnt__item.is-open .faq_cnt__q-icon--closed {
  opacity: 0;
}

.faq_cnt__item.is-open .faq_cnt__q-icon--open {
  opacity: 1;
}

.faq_cnt__question-text {
  font-size: 1.125rem;
  line-height: 1.6;
}
@media (max-width: 680px) {
  .faq_cnt__question-text {
    font-size: 1.75rem;
  }
}

.faq_cnt__arrow {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  justify-self: end;
  width: 1.875rem;
  height: 0.6875rem;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq_cnt__arrow::before, .faq_cnt__arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 1rem;
  height: 1px;
  background-color: #666666;
  border-radius: 1px;
}
.faq_cnt__arrow::before {
  left: 50%;
  transform-origin: left bottom;
  transform: rotate(-36deg);
}
.faq_cnt__arrow::after {
  right: 50%;
  transform-origin: right bottom;
  transform: rotate(36deg);
}

.faq_cnt__item.is-open .faq_cnt__arrow {
  transform: rotate(180deg);
}
.faq_cnt__item.is-open .faq_cnt__arrow::before, .faq_cnt__item.is-open .faq_cnt__arrow::after {
  background-color: #94c1bd;
}

.faq_cnt__answer {
  padding: 0 0 2.375rem;
}

.faq_cnt__answer-inner {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  align-items: flex-start;
}
@media (max-width: 680px) {
  .faq_cnt__answer-inner {
    grid-template-columns: 1.75rem 1fr;
    gap: 0.75rem;
  }
}

.faq_cnt__a-mark {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 680px) {
  .faq_cnt__a-mark {
    position: relative;
    top: 0.4375rem;
  }
}

.faq_cnt__a-mark img {
  width: 1rem;
  height: auto;
}

.faq_cnt__answer-body {
  color: #666666;
}
.faq_cnt__answer-body p {
  margin: 0;
  width: 94%;
}

.purchase_cnt {
  padding: 7.8125rem 0 9.375rem;
}
@media (max-width: 680px) {
  .purchase_cnt {
    padding: 8.75rem 0 10rem;
  }
}

.purchase_cnt__item-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 680px) {
  .purchase_cnt__item-wrap {
    flex-direction: column-reverse;
  }
}

.purchase_cnt__item-img {
  width: 50%;
}
@media (max-width: 680px) {
  .purchase_cnt__item-img {
    width: 100%;
    margin-bottom: 3.125rem;
  }
}

.purchase_cnt__item-ttl {
  width: 22.6875rem;
}
@media (max-width: 680px) {
  .purchase_cnt__item-ttl {
    width: 29.6875rem;
  }
}

.purchase_cnt__item-price {
  font-size: 1.625rem;
  margin-top: 2.5rem;
}

.purchase_cnt__item-price span {
  font-size: 0.8125rem;
}

.purchase_cnt__item-text {
  font-size: 0.875rem;
  max-width: 27.5rem;
  margin-top: 1.875rem;
  line-height: 2.5;
}
@media (max-width: 680px) {
  .purchase_cnt__item-text {
    font-size: 1.5rem;
    line-height: 1.85;
    max-width: 100%;
  }
}

.purchase_cnt__item-text-wrap {
  width: 50%;
  margin-right: 2.5rem;
}
@media (max-width: 680px) {
  .purchase_cnt__item-text-wrap {
    width: 100%;
    margin-right: 0;
  }
}
@media (min-width: 681px) {
  .purchase_cnt__item-text-wrap .c-item-price {
    margin: 1.875rem 0 0.9375rem;
  }
}
@media (max-width: 680px) {
  .purchase_cnt__item-text-wrap .c-item-price {
    font-size: 2.25rem;
  }
}
@media (min-width: 681px) {
  .purchase_cnt__item-text-wrap .c-btn_buy {
    height: 2.5rem;
  }
}

.u_sp {
  display: none;
}

@media (max-width: 680px) {
  .u_sp {
    display: block;
  }
  .u_pc {
    display: none !important;
  }
}
@media (min-width: 681px) {
  .p-flex {
    display: flex;
  }
}
.inview.blur {
  filter: blur(30px);
  transition: 1.2s;
  transition-delay: 500ms;
}

.inview.blur.on_action {
  animation: blur-clear 1.2s linear forwards;
}

.inview.fadein {
  opacity: 0;
  transition: opacity 1.2s, transform 1.2s;
  transition-delay: 500ms;
}

.inview.fadein.on_action {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes blur-clear {
  100% {
    filter: blur(0);
  }
}

/*# sourceMappingURL=style.css.map */
