@charset "UTF-8";
:root {
  --ink: #242424;
  --muted: #666b6a;
  --line: #c6c9c8;
  --soft: #eef1f0;
  --footer: #222222;
  --page-width: 1200px;
}

html {
  min-width: var(--page-width);
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

body {
  min-width: var(--page-width);
  color: var(--ink);
  background: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.055em;
  -webkit-font-smoothing: antialiased;
  min-width: 1280px;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

body.is-menu-open {
  overflow: hidden;
}

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

img,
svg {
  display: block;
}

.sp_none {
  display: block !important;
}

.sp_block {
  display: none !important;
}

.font-lato,
button,
.buy-button,
.fragrance-section__purchase strong,
.product-card__price span {
  font-family: "Lato", sans-serif;
}

.font-jost {
  font-family: "Jost", sans-serif;
}

.site-shell {
  min-width: var(--page-width);
  overflow: hidden;
}

/* 画像差し替え用の空枠。各要素にbackground-imageを設定してください。 */
.image-placeholder {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 0;
}

.brand-logo {
  position: absolute;
  top: 27px;
  left: 34px;
  width: 86px;
  color: #1f292a;
  text-align: center;
  line-height: 1;
}

.brand-logo__sub,
.navigation-logo__sub {
  display: block;
  margin-bottom: 5px;
  font-size: 7px;
  letter-spacing: 0.16em;
}

.brand-logo__main,
.navigation-logo strong,
.footer-logo strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 0.82;
}

.menu-button {
  position: absolute;
  top: 34px;
  right: 40px;
  z-index: 103;
  width: 32px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #232827;
  transition: top 0.35s ease, transform 0.35s ease, opacity 0.35s ease;
}

.menu-button span:nth-child(1) {
  top: 4px;
}

.menu-button span:nth-child(2) {
  top: 11px;
}

.menu-button span:nth-child(3) {
  top: 18px;
}

.menu-button.is-active span:nth-child(1) {
  top: 11px;
  transform: rotate(32deg);
}

.menu-button.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-active span:nth-child(3) {
  top: 11px;
  transform: rotate(-32deg);
}

.global-navigation {
  position: fixed;
  z-index: 101;
  inset: 0;
  visibility: hidden;
  background: rgba(255, 255, 255, 0.85);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.global-navigation.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.global-navigation__inner {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 100vh;
}

.global-navigation__content {
  width: 1200px;
  margin: 0 auto;
  padding: 40px 50px;
}

.navigation-logo {
  width: 120px;
  margin-bottom: 55px;
  text-align: center;
  line-height: 1;
}

.navigation-logo strong {
  font-size: 27px;
}

.navigation-list {
  display: grid;
  gap: 29px;
  width: -moz-max-content;
  width: max-content;
}

/* メニューを開いた時に項目が一つずつ右からゆらぐように現れる動き */
.navigation-list li {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  transition-delay: 0s;
}

.navigation-list li:nth-child(1) {
  transition-delay: 0.07s;
}

.navigation-list li:nth-child(2) {
  transition-delay: 0.14s;
}

.navigation-list li:nth-child(3) {
  transition-delay: 0.21s;
}

.navigation-list li:nth-child(4) {
  transition-delay: 0.28s;
}

.navigation-list li:nth-child(5) {
  transition-delay: 0.35s;
}

.navigation-list li:nth-child(6) {
  transition-delay: 0.42s;
}

.navigation-list li:nth-child(7) {
  transition-delay: 0.49s;
}

.global-navigation.is-open .navigation-list li {
  opacity: 1;
  transform: translateX(0);
}

.navigation-list a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.09em;
}

.navigation-list a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.navigation-list a:hover::after,
.navigation-list a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.social-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 58px;
}

.social-list a {
  display: grid;
  place-items: center;
}
.social-list a img {
  width: auto;
  height: 18px;
  -o-object-fit: cover;
     object-fit: cover;
}

.social-list svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.social-list li:nth-child(2) svg {
  fill: currentColor;
  stroke: none;
}

.hero {
  position: relative;
}

.hero__image {
  inset: 0;
}

.hero__copy {
  position: absolute;
  top: 236px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  width: 1200px;
}

.hero__brand {
  margin-bottom: 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.16em;
}

.section-block {
  width: 1200px;
  margin: 0 auto;
}

.concept {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 90px 0 150px;
}

.concept__image {
  width: 600px;
  height: 800px;
  position: relative;
}

.concept__image .img_wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 960px;
}

.concept__body {
  padding-top: 42px;
  width: 420px;
}

.section-kicker {
  margin-bottom: 60px;
  font-size: 35px;
}

/* タイトルがスクロールで画面内に入った時に1文字ずつ波打つように現れる動き */
.title-anime {
  font-size: 45px;
  font-weight: 400;
  color: #222222;
  letter-spacing: 0.1em;
}
.title-anime.letter_s {
  letter-spacing: 0.05em;
}

.title-anime__char {
  display: inline-block;
  overflow: hidden;
  opacity: 0;
}

.title-anime.is-inview .title-anime__char {
  animation: text_anime_on 1s ease-in-out forwards 1s;
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
    transform: translateX(20%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
/* 画像自体は最初から見えたまま、右上の一部だけ濃い白のグラデーションが薄れながら画像が現れる動き */
.img-blur-in {
  opacity: 1;
}

.img-blur-in:not(.concept__image) {
  position: relative;
  overflow: hidden;
}

.img-blur-in:not(.concept__image)::after,
.concept__image.img-blur-in .img_wrap::after {
  content: "";
  position: absolute;
  inset: -6%;
  /* 見えている範囲(insetの内側)に入る前に透明にしておかないと、ぼかしで縁に影のような輪郭が残る */
  background: linear-gradient(225deg, #fff 0%, #fff 28%, rgba(255, 255, 255, 0.85) 40%, rgba(255, 255, 255, 0.5) 52%, rgba(255, 255, 255, 0.2) 64%, rgba(255, 255, 255, 0) 76%, rgba(255, 255, 255, 0) 100%);
  filter: blur(12px);
  opacity: 1;
  transition: opacity 2s cubic-bezier(0.39, 0.575, 0.565, 1);
  pointer-events: none;
  will-change: opacity;
}
@media (max-width: 680px) {
  .img-blur-in:not(.concept__image)::after .img-blur-in:not(.concept__image)::after,
  .img-blur-in:not(.concept__image)::after .concept__image.img-blur-in .img_wrap::after,
  .concept__image.img-blur-in .img_wrap::after .img-blur-in:not(.concept__image)::after,
  .concept__image.img-blur-in .img_wrap::after .concept__image.img-blur-in .img_wrap::after {
    filter: blur(1.8666666667vw);
  }
}

.img-blur-in.is-inview:not(.concept__image)::after,
.concept__image.img-blur-in.is-inview .img_wrap::after {
  opacity: 0;
}

.concept h2 {
  margin-bottom: 40px;
  font-size: 21px;
  line-height: 2;
  letter-spacing: 0.11em;
}

.concept__body > p:not(.section-kicker) {
  line-height: 2.35;
  letter-spacing: 0.07em;
}

.wide-visual--stone {
  background-color: #aebbb8;
}

.wide-visual--green {
  background-color: #9eb2af;
}

.wide-visual--flower {
  background-color: #9fb0b2;
}

.wide-visual--wood {
  background-color: #8e9b9e;
}

.fragrance-section {
  padding: 95px 0 130px;
  background: #ffffff;
}

.fragrance-section__inner {
  display: grid;
  grid-template-columns: 420px 600px;
  grid-template-rows: auto auto;
  -moz-column-gap: 180px;
       column-gap: 180px;
  row-gap: 85px;
  width: 1200px;
  margin: 0 auto;
}

.fragrance-section__intro {
  align-self: center;
  padding: 4px 0;
}

.fragrance-section__lead {
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 1.95;
  letter-spacing: 0.1em;
}

.fragrance-section__intro h2 {
  margin-bottom: 60px;
  font-size: 45px;
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: 0.1em;
}

.fragrance-section__purchase {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 27px;
}

.fragrance-section__purchase p {
  font-size: 16px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.fragrance-section__purchase strong {
  font-size: 20px;
  font-weight: 400;
}

.fragrance-section__purchase .fz_s {
  font-size: 12px;
}

.fragrance-section.fragrance-section--image-left .fragrance-section__inner {
  grid-template-columns: 600px 420px;
}
.fragrance-section.fragrance-section--image-left .fragrance-section__image {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
}
.fragrance-section.fragrance-section--image-left .fragrance-section__intro {
  grid-column: 2;
  grid-row: 1;
}
.fragrance-section.fragrance-section--image-left .fragrance-section__chart {
  grid-column: 1;
  grid-row: 2;
}
.fragrance-section.fragrance-section--image-left .fragrance-section__review {
  grid-column: 2;
  grid-row: 2;
}

.buy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: 1px solid #222222;
  background: #222222;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.14em;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.buy-button--inline {
  width: 200px;
  height: 40px;
}

.buy-button:hover,
.buy-button:focus-visible {
  border-color: #8f8f8f;
  background: #8f8f8f;
  color: #fff;
}

.fragrance-section__description {
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 2.1;
  letter-spacing: 0.06em;
}

.fragrance-section__usage {
  padding-top: 23px;
  border-top: 1px solid var(--line);
}

.fragrance-section__usage p {
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.fragrance-section__usage p + p {
  margin-top: 5px;
}

.fragrance-section__usage strong {
  font-weight: 500;
}

.series-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  margin-top: 70px;
  border: 1px solid #555b59;
  background: #ffffff;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.12em;
  transition: 0.3s ease, color 0.3s ease;
}
.series-button::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  right: 18px;
  transform: translateY(-50%) rotate(45deg);
  width: 7px;
  height: 7px;
  border-top: 1px solid #9a9e9d;
  border-right: 1px solid #9a9e9d;
}

.series-button:hover,
.series-button:focus-visible {
  opacity: 0.6;
}

.fragrance-section__image {
  height: 800px;
  width: 960px;
}

.fragrance-section__review {
  width: 420px;
}

.fragrance-section__review .section-kicker {
  margin-bottom: 26px;
}

.review-item {
  padding-bottom: 22px;
}

.review-item + .review-item {
  padding-top: 22px;
  border-top: 1px solid #d7d9d8;
}

.review-item h3 {
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.review-item p {
  line-height: 2.05;
  letter-spacing: 0.045em;
}

.fragrance-section__chart {
  width: 601px;
  padding-top: 120px;
}

.products {
  padding: 115px 0 100px;
  background: url(../img/bg_products.jpg) no-repeat center top/cover;
}

.products__inner {
  position: relative;
  width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.products h2 {
  text-align: center;
  letter-spacing: 0.18em;
  color: #fff;
}

.products-slider {
  position: relative;
  overflow: hidden;
}

.products-slider .swiper-wrapper {
  align-items: stretch;
}

.product-card {
  box-sizing: border-box;
  height: 656px;
  background: #fff;
  width: 373px;
}

.product-card__image {
  background-color: #edf0ef;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  padding: 20px 22px 22px;
  height: calc(100% - 280px);
}

.product-card__category {
  color: #5e6261;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.06em;
}

.product-card h3 {
  min-height: 52px;
  margin-top: 4px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.09em;
}

.product-card__price {
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: 0.04em;
}

.product-card__price span {
  font-size: 14px;
}

.product-card__description {
  margin-top: 17px;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.035em;
}

.product-card .buy-button {
  width: 293px;
  height: 40px;
  margin: auto auto 0;
  display: flex;
}

.products-slider__button {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 26px;
  height: 26px;
  border: 0;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  background: transparent;
  cursor: pointer;
}

.products-slider__button--prev {
  left: -54px;
  transform: translateY(-50%) rotate(-135deg);
}

.products-slider__button--next {
  right: -54px;
  transform: translateY(-50%) rotate(45deg);
}

.products-slider__button.swiper-button-disabled {
  opacity: 0.25;
  cursor: default;
}

.products__note {
  margin-top: 45px;
  color: #ffffff;
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.05em;
}

.site-footer {
  padding: 52px 0 45px;
  background: var(--footer);
  color: #ffffff;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  width: 90px;
  text-align: center;
  line-height: 1;
}

.footer-logo span {
  display: block;
  margin-bottom: 5px;
  font-size: 6px;
  letter-spacing: 0.15em;
}

.footer-logo strong {
  font-size: 20px;
}

.footer-nav {
  margin-top: 43px;
  font-size: 12px;
}

.copyright {
  font-size: 10px;
  letter-spacing: 0.1em;
  margin-top: 30px;
}

.social-list--footer {
  justify-self: end;
  margin-top: 0;
  color: #ffffff;
}

.footer-sns .social-list a img {
  width: auto;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
/* Image assignments */
#floral-sweet .fragrance-section__image {
  background-image: url(../img/ph_floral.jpg);
}

#white-tea .fragrance-section__image {
  background-image: url(../img/ph_white_tea.jpg);
}

#sweet-lavender-vanilla .fragrance-section__image {
  background-image: url(../img/ph_vanilla.jpg);
}

#floral-fruity .fragrance-section__image {
  background-image: url(../img/ph_fruity.jpg);
}

#osmanthus .fragrance-section__image {
  background-image: url(../img/ph_osmanthus.jpg);
}

.wide-visual {
  height: 470px;
}

.wide-visual--stone {
  background-image: url(../img/bg_item02.jpg);
}

.wide-visual--green {
  background-image: url(../img/bg_item03.jpg);
}

.wide-visual--flower {
  background-image: url(../img/bg_item04.jpg);
}

.wide-visual--wood {
  background-image: url(../img/bg_item05.jpg);
}

@media (min-width: 681px) {
  .products-slider {
    margin: 0 50px;
  }
  .products-slider__button--prev {
    left: 0;
  }
  .products-slider__button--next {
    right: 0;
  }
}
@media (max-width: 680px) {
  :root {
    --page-width: 100%;
  }
  html,
  body,
  .site-shell {
    min-width: 0;
    width: 100%;
  }
  body {
    font-size: 3.4666666667vw;
    line-height: 1.9;
    overflow-x: hidden;
  }
  img {
    width: 100%;
    height: auto;
  }
  .sp_none {
    display: none !important;
  }
  .sp_block {
    display: block !important;
  }
  .brand-logo {
    top: 18px;
    left: 18px;
    width: 68px;
  }
  .menu-button {
    top: 20px;
    right: 20px;
    width: 28px;
  }
  .global-navigation__inner {
    align-items: center;
    overflow-y: auto;
  }
  .global-navigation__content {
    width: 100%;
    padding: 0 6.6666666667vw 0;
  }
  .navigation-logo {
    width: 14vw;
    margin-bottom: 6.6666666667vw;
  }
  .navigation-list {
    gap: 22px;
  }
  .navigation-list a {
    font-size: 3.4666666667vw;
  }
  .social-list {
    margin-top: 42px;
  }
  .hero__image,
  .mv_img,
  .mv_img img {
    width: 100%;
    height: 100%;
  }
  .mv_img img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center top;
       object-position: center top;
  }
  .hero__copy {
    top: 25%;
    left: 0;
    width: 100%;
    padding: 0 28px;
    transform: none;
  }
  .hero h1 img {
    width: min(58vw, 270px);
  }
  .section-block {
    width: 100%;
  }
  .concept {
    padding: 0 0 20vw;
    flex-direction: column-reverse;
  }
  .concept__image {
    width: 100%;
    height: auto;
    margin-top: 14.6666666667vw;
  }
  .concept__image .img_wrap {
    /* staticのままだと白グラデーション(::after)の基準がconcept__imageになりずれるためrelativeにする */
    position: relative;
    width: 92vw;
  }
  .concept__image img {
    height: 108vw;
    max-height: 106.6666666667vw;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .concept__body {
    width: auto;
    padding: 62px 25px 0;
  }
  .section-kicker {
    margin-bottom: 8vw;
  }
  .section-kicker img {
    width: 21.8666666667vw;
  }
  .title-anime {
    font-size: 7.3333333333vw;
  }
  .concept h2 {
    margin-bottom: 6vw;
    font-size: 4vw;
    line-height: 1.95;
    letter-spacing: 0.08em;
  }
  .concept__body > p:not(.section-kicker) {
    font-size: 3.4666666667vw;
    line-height: 2.2;
    letter-spacing: 0.04em;
  }
  .concept__body br {
    display: none;
  }
  .wide-visual {
    width: 100%;
    height: 62vw;
    min-height: 230px;
    max-height: 420px;
  }
  .wide-visual > img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .fragrance-section {
    padding: 0 0 92px;
  }
  .fragrance-section__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  .fragrance-section__image {
    order: 1;
    width: 92vw;
    height: 106.6666666667vw;
    margin-left: auto;
    margin-right: 0;
    background-position: center;
    margin-top: 18.6666666667vw;
  }
  .fragrance-section__intro {
    order: 2;
    width: auto;
    padding: 15.3333333333vw 8vw 0;
  }
  .fragrance-section__review {
    order: 4;
    padding: 14.6666666667vw 8vw 0;
  }
  .fragrance-section__chart {
    order: 3;
  }
  .fragrance-section__lead {
    margin-bottom: 6.4vw;
    font-size: 3.7333333333vw;
    line-height: 1.8;
  }
  .fragrance-section__intro h2 {
    margin-bottom: 9.3333333333vw;
    font-size: 7.3333333333vw;
  }
  .fragrance-section__purchase {
    grid-template-columns: 1fr 112px;
    gap: 3.4666666667vw;
    margin-bottom: 6.9333333333vw;
  }
  .fragrance-section__purchase p {
    font-size: 3.4666666667vw;
  }
  .fragrance-section__purchase strong {
    font-size: 4vw;
    font-weight: 400;
  }
  .fragrance-section__purchase .fz_s {
    font-size: 2.9333333333vw;
  }
  .buy-button--inline {
    width: 42vw;
    height: 8vw;
  }
  .fragrance-section__description {
    margin-bottom: 8vw;
    font-size: 3.4666666667vw;
    line-height: 2;
  }
  .fragrance-section__usage {
    padding-top: 6.6666666667vw;
  }
  .fragrance-section__usage p {
    font-size: 3.0666666667vw;
    line-height: 1.85;
  }
  .series-button {
    height: 10.6666666667vw;
    margin-top: 11.3333333333vw;
    font-size: 3.4666666667vw;
  }
  .fragrance-section__review {
    width: auto;
  }
  .fragrance-section__review .section-kicker {
    margin-bottom: 9.3333333333vw;
  }
  .review-item h3 {
    font-size: 3.4666666667vw;
  }
  .review-item p {
    font-size: 3.4666666667vw;
    line-height: 2;
  }
  .fragrance-section__chart {
    width: 84vw;
    margin-left: auto;
    margin-right: auto;
    min-height: 0;
    margin: 16vw auto 0;
    padding-top: 0;
  }
  .fragrance-pyramid {
    width: 100%;
    height: auto;
  }
  .fragrance-pyramid span {
    font-size: 2.6666666667vw;
  }
  .fragrance-notes {
    min-height: 0;
  }
  .fragrance-notes > div {
    padding: 6px 0 6px 12px;
  }
  .fragrance-notes dd {
    font-size: 2.4vw;
    line-height: 1.6;
  }
  .fragrance-section--image-left .fragrance-section__image {
    margin-left: 0;
    margin-right: auto;
  }
  .products {
    padding: 17.3333333333vw 0 20vw;
    background: url(../img/bg_products_sp.jpg) no-repeat center top/cover;
  }
  .products__inner {
    width: 100%;
  }
  .products h2 {
    margin: 0 auto;
    padding-bottom: 5.3333333333vw;
  }
  .products-slider {
    width: 90%;
    margin: 0 auto;
    overflow: visible;
  }
  .product-card {
    width: 66.6666666667vw;
    height: 141.3333333333vw;
  }
  .product-card__body {
    padding: 4.2666666667vw 5.0666666667vw;
    height: calc(100% - 72vw);
  }
  .product-card__category {
    font-size: 3.2vw;
  }
  .product-card h3 {
    min-height: 10.6666666667vw;
    margin-top: 1.3333333333vw;
    font-size: 3.4666666667vw;
  }
  .product-card__price {
    margin-top: 0.6666666667vw;
    font-size: 3.2vw;
    letter-spacing: 0.04em;
  }
  .product-card__price span {
    font-size: 2.6666666667vw;
  }
  .product-card .buy-button {
    width: 56vw;
    height: 10.6666666667vw;
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 6.6666666667vw;
  }
  .product-card__description {
    margin: 3vw 0;
    font-size: 3.2vw;
  }
  .products__note {
    margin: 10vw auto 0;
    font-size: 2.9333333333vw;
    line-height: 1.7;
  }
  .site-footer {
    padding: 5.0666666667vw 8vw 5.3333333333vw;
  }
  .site-footer__inner {
    display: block;
  }
  .footer-logo {
    width: 13.3333333333vw;
  }
  .footer-nav {
    font-size: 2.6666666667vw;
    margin-top: 4.6666666667vw;
  }
  .social-list--footer {
    justify-self: start;
  }
  .footer-sns {
    margin-top: 5.3333333333vw;
  }
  .footer-sns .social-list a img {
    width: auto;
    height: 3.4666666667vw;
  }
  .copyright {
    order: 3;
    width: 100%;
    text-align: left;
  }
  .social-list--footer {
    margin: 0;
    gap: 3.3333333333vw;
  }
  /* Image assignments */
  #floral-sweet .fragrance-section__image {
    background-image: url(../img/ph_floral_sp.jpg);
  }
  #white-tea .fragrance-section__image {
    background-image: url(../img/ph_white_tea_sp.jpg);
  }
  #sweet-lavender-vanilla .fragrance-section__image {
    background-image: url(../img/ph_vanilla_sp.jpg);
  }
  #floral-fruity .fragrance-section__image {
    background-image: url(../img/ph_fruity_sp.jpg);
  }
  #osmanthus .fragrance-section__image {
    background-image: url(../img/ph_osmanthus_sp.jpg);
  }
  .wide-visual--stone {
    background-image: url(../img/bg_item02_sp.jpg);
  }
  .wide-visual--green {
    background-image: url(../img/bg_item03_sp.jpg);
  }
  .wide-visual--flower {
    background-image: url(../img/bg_item04_sp.jpg);
  }
  .wide-visual--wood {
    background-image: url(../img/bg_item05_sp.jpg);
  }
}/*# sourceMappingURL=style.css.map */