@charset "UTF-8";

img {
  max-width: 100%;
  height: auto;
}

/* utility */
.u-tt--light {
  font-family: "TTCommons-Light", sans-serif;
}

.u-tt--regular {
  font-family: "TTCommons-Regular", sans-serif;
}

.u-text-left {
  text-align: left;
}

.u-text-center {
  text-align: center;
}

.u-text-right {
  text-align: right;
}

.u-text-narrow {
  letter-spacing: 0.02em;
}

.u-text-note {
  font-size: 1.2rem;
}

.u-link-text {
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
}

@media (any-hover: hover) {
  .u-link-text:hover {
    text-decoration: none;
  }
}

@media screen and (max-width: 767px) {
  .u-text-left-sp {
    text-align: left;
  }
  
  .u-text-center-sp {
    text-align: center;
  }
  
  .u-text-right-sp {
    text-align: right;
  }
}

.u-mt40 {
  margin-top: 4rem;
}

/* mv */
.l-mv {
  position: relative;
}

.l-mv__title {
  position: absolute;
  top: 36%;
  left: 11%;
  color: #fff;
}

.l-mv__text--top {
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1;
  display: block;
  margin-bottom: 0.8em;
}

.l-mv__text--bottom {
  font-family: "TTCommons-Medium", sans-serif;
  font-size: 5rem;
  letter-spacing: 0.04em;
  line-height: 1;
  display: block;
}

@media screen and (min-width: 1200px) {
  .l-mv__text--top {
    font-size: 2.166666666666667vw;
  }
  
  .l-mv__text--bottom {
    font-size: 4.166666666666666vw;
  }
}

@media screen and (max-width: 767px) {
  .l-mv__title {
    width: 100%;
    text-align: center;
    top: auto;
    left: 50%;
    bottom: 5%;
    transform: translateX(-50%);
  }

  .l-mv__text--top {
    font-size: 5.333333333333334vw;
    line-height: 1;
    letter-spacing: 0.15em;
    margin-bottom: 0.7em;
  }
  
  .l-mv__text--bottom {
    font-size: 6.933333333333333vw;
    letter-spacing: 0.1em;
  }
}

.l-wrapper {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 400;
  color: #393c41;
}

.l-main {
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
}

.lead-block {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 0;
}

.lead-block__text {
  font-size: 1.6rem;
  line-height: 1.75;
  text-align: center;
  color: #000030;
}

.lead-block__text + .lead-block__text {
  margin-top: 1.6rem;
}

.l-main-content {
  margin-left: 4rem;
  padding-bottom: 8rem;
  width: 100%;
}

.l-section-lp + .l-section-lp {
  margin-top: 12rem;
}

.l-subsection + .l-subsection {
  margin-top: 8rem;
}

/* nav */
.navWrapper {
  max-width: 1000px;
  margin: 0 auto 8rem;
}

.lp-topnav__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -2rem;
}

.lp-topnav__item {
  width: 25%;
  padding: 0 2rem;
}

.lp-topnav__link {
  display: block;
  position: relative;
  color: #fff;
  text-align: center;
  padding: 1rem 1.5rem 2.4rem;
  font-size: 1.6rem;
  line-height: 1.5;
  background-color: #000030;
  border: 1px solid #000030;
}

.lp-topnav__link::after {
  content: "";
  width: 1rem;
  height: 1rem;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  bottom: 1.4rem;
  left: calc(50% - 1rem);
  transform: rotate(135deg) translateY(-50%);
  transition: all 0.3s;
}

.lp-topnav__link:hover, .lp-topnav__link:hover::after {
  color: #fff;
  opacity: .7;
  transition : .3s;
}

.l-container {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
}

.l-sidenav {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
  position: sticky;
  top: 150px;
  align-self: flex-start;
  flex: 0 0 22rem;
}

.l-sidenav.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.l-sidenav.is-fixed {
  position: fixed;
  top: 100px;
  left: 0;
}

.lp-sidenav__item + .lp-sidenav__item {
  margin-top: 1rem;
}

.lp-sidenav__link {
  display: block;
  position: relative;
  color: #000030;
  text-align: center;
  padding: 1rem 1.5rem;
  font-size: 1.6rem;
  line-height: 1.5;
  background-color: #fff;
  border: 1px solid #000030;
  overflow: hidden; /* 疑似要素はみ出し防止 */
  z-index: 0;       /* 背景を下に敷くため */
}

/* 矢印アイコン */
.lp-sidenav__link::after {
  content: "";
  width: 1rem;
  height: 1rem;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  position: absolute;
  top: calc(50% - 1rem);
  right: 1.5em;
  transform: rotate(135deg) translateY(-50%);
  transition: all 0.3s;
}

.lp-sidenav__link:hover::after {
  top: 42%;
}

.lp-sidenav__link::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: -1;
}

/* current時にフェードイン */
.lp-sidenav__link.current::before, .lp-sidenav__link.current .lp-sidenav__overlay {
  opacity: 1;
}

.lp-sidenav__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.3);
  transition: opacity 0.6s ease;
  z-index: -1;
}

/* 各リンクごとの背景画像 */
.lp-sidenav__link.--savon::before {
  background-image: url("../img/bg/savon_link.jpg");

}
.lp-sidenav__link.--whitelily::before {
  background-image: url("../img/bg/whitelily_link.jpg");
}
.lp-sidenav__link.--whitetea::before {
  background-image: url("../img/bg/whitetea_link.jpg");
}
.lp-sidenav__link.--chart::before {
  border: 1px solid #000030;
  background-color: #000030;
  color: #fff;
}

/* current中のテキスト装飾 */
.lp-sidenav__link.current {
  font-weight: 600;
  color: #000030;
  border: 1px solid transparent;
}

.lp-sidenav__link.current.--chart {
  color: #fff;
  border: 1px solid currentColor;
}

.lp-heading-bnr {
  height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.lp-heading-bnr:not(.--chart) ::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.3);
  transition: opacity 0.6s ease;
  z-index: -1;
}

.lp-heading-bnr.--savon {
  background-image: url(../img/bg/savon_bnr.jpg);
}
.lp-heading-bnr.--whitelily {
  background-image: url(../img/bg/whitelily_bnr.jpg);
}
.lp-heading-bnr.--whitetea {
  background-image: url(../img/bg/whitetea_bnr.jpg);
}
.lp-heading-bnr.--chart {
  background-color: #000030;
}

.lp-heading-bnr__text {
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: #000030;
  z-index: 1;
}

.lp-heading-bnr.--chart .lp-heading-bnr__text {
  color: #fff;
}

.l-section-lp__nav {
  background-color: #F9F9F9;
  padding: 2rem;
  margin-bottom: 8rem;
}

.lp-subnav {
  margin-top: 2.4rem;
}

.lp-subnav__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -2rem;
}

.lp-subnav__item {
  width: 33.333%;
  padding: 0 2rem;
}

.lp-subnav__link {
  display: block;
  position: relative;
  color: #393c41;
  text-align: center;
  padding: 1rem 1.5rem 2.4rem;
  font-size: 1.6rem;
  line-height: 1.5;
}

.lp-subnav__link::after {
  content: "";
  width: 1rem;
  height: 1rem;
  border-top: solid 1px currentColor;
  border-right: solid 1px currentColor;
  position: absolute;
  bottom: 1.4rem;
  left: calc(50% - 1rem);
  transform: rotate(135deg) translateY(-50%);
  transition: all 0.3s;
}

.lp-subnav__link:hover::after {
  bottom: 1rem;
}

.perfume-thumb {
  position: relative;
}

.perfume-thumb__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate( -50%, -50%);
  width: 100%;
  text-align: center;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-family: "TTCommons-Medium", sans-serif;
  font-size: 2.8rem;
}

.lp-grid-item {
  display: grid;
  grid-template-areas: "image title" "image desc" "image button" "image ." "review review";
  grid-template-columns: 28rem 1fr;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}

.grid01 {
  grid-area: image;
}

.grid02 {
  grid-area: title;
}

.grid03 {
  grid-area: desc;
  margin-top: 1.6rem;
}

.grid04 {
  grid-area: button;
  margin-top: 3.2rem;
}

.grid05 {
  grid-area: review;
  margin-top: 3.2rem;
}

.lp-grid-item .itemName {
  font-weight: 600;
  font-size: 2.2rem;
}
.lp-grid-item .itemName span {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.75;
  margin-bottom: 0.4rem;
}

.lp-grid-item .itemDesc {
  font-size: 1.6rem;
}

.lp-grid-item .itemTone {
  margin-top: 1.6rem;
  line-height: 1.5;
}

.reviewBlock {
  padding: 1.6rem;
  background-color: #F9F9F9;
}

.reviewblock__header {
  display: flex;
  margin-bottom: 1.6rem;
}

.reviewBlock__heading {
  font-size: 1.4rem;
  font-weight: 600;
  margin-right: 3.2rem;
}

.reviewBlock__more {
  display: flex;
  justify-content: flex-end;
  margin-top: 2.4rem;
}

.reviewBlock__link {
  display: inline-block;
  border-bottom: 1px solid currentColor;
  position: relative;
  padding-right: 1.4em;
  transition: all 0.3s;
  font-size: 1.6rem;
}

.reviewBlock__link::after {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  border-top: solid 1px currentColor;
  border-right: solid 1px currentColor;
  position: absolute;
  bottom: 0.5rem;
  right: 0.8rem;
  transform: rotate(45deg) translateY(-50%);
}

@media (any-hover: hover) {
  .reviewBlock__link:hover {
    border-bottom: 1px solid transparent;
  }
}

.reviewBlock .detail-review-star {
  min-height: auto;
  height: 1.4rem;
  margin: 0;
}

.reviewBlock .detail-reviewText {
  font-size: 1.4rem;
}

.reviewBlock .reviewBlock__comment + .reviewBlock__comment {
  margin-top: 3.2rem;
}

.reviewBlock .reviewName {
  font-size: 1.2rem;
  margin-top: 0.8rem;
}

/* ボタン */
.buttonWrapper {
  margin-top: 4rem;
  display: flex;
  column-gap: 4rem;
  justify-content: center;
  align-items: center;
}

.lp-button {
  background-color: #000030;
  border: 1px solid #000030;
  display: block;
  padding: 1rem;
  width: 100%;
  max-width: 400px;
  min-height: 4.4rem;
  color: #fff;
  text-align: center;
  margin: 0;
  font-size: 1.4rem;
  position: relative;
  transition: all ease 0.4s;
}

@media (any-hover: hover) {
  .lp-button:hover {
    opacity: .7;
    transition : .3s;
    color: #fff;
  }
}

.lp-perfume-chart {
  max-width: 600px;
  margin: 3.2rem auto;
}

/* パフューム一覧 */
.lp-perfume-lineup .perfume-container {
  width: calc(1120px - 26rem);
}

.lp-perfume-lineup .perfumeChart, .lp-perfume-lineup .carousel-2row__title {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .lp-perfume-lineup .perfume-container {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .anchorTarget::before {
    content: "";
    display: block;
    height: 60px; /* stickyバナーの高さ */
    margin-top: -60px; /* 元の位置を上にずらす */
    visibility: hidden;
  }

  .lead-block {
    padding: 4rem 1.5rem;
  }

  .lead-block__text {
    font-size: 1.4rem;
  }

  .l-main-content {
    margin-left: 0;
    padding-bottom: 4rem;
  }

  .l-section-lp + .l-section-lp {
    margin-top: 8rem;
  }

  .l-subsection + .l-subsection {
    margin-top: 6.4rem;
  }

  .l-subsection {
    padding: 0 1.5rem;
  }

  .navWrapper {
    margin-bottom: 6.4rem;
  }

  .lp-topnav__list {
    flex-direction: column;
    row-gap: 1.6rem;
    margin: 0 1.5rem;
  }

  .lp-topnav__item {
    width: 100%;
    padding: 0;
  }

  .lp-topnav__link {
    padding: 2rem 1.5rem;
    font-size: 1.4rem;
    text-align: left;
  }

  .lp-topnav__link::after {
    width: 1.2rem;
    height: 1.2rem;
    top: calc(50% - 1.2rem);
    left: auto;
    right: 2rem;
    bottom: auto;
  }

  .lp-heading-bnr {
    height: 6rem;
  }

  .lp-heading-bnr.--savon {
    background-image: url(../img/bg/savon_bnr_sp.jpg);
  }
  .lp-heading-bnr.--whitelily {
    background-image: url(../img/bg/whitelily_bnr_sp.jpg);
  }
  .lp-heading-bnr.--whitetea {
    background-image: url(../img/bg/whitetea_bnr_sp.jpg);
  }

  .lp-heading-bnr__text {
    font-size: 1.6rem;
  }

  .l-section-lp__nav {
    padding: 2rem 1.5rem 4rem;
    margin-bottom: 6.4rem;
  }

  .lp-subnav {
    margin-top: 3.2rem;
  }

  .lp-subnav__list {
    flex-direction: column;
    row-gap: 2.4rem;
    margin: 0;
  }

  .lp-subnav__item {
    width: 100%;
    padding: 0 0 0.2em 0;
    border-bottom: 1px solid currentColor;
  }

  .lp-subnav__link {
    text-align: left;
    font-size: 1.4rem;
    padding: 0;
  }

  .lp-subnav__link::after {
    width: 0.7rem;
    height: 0.7rem;
    top: calc(50% - 0.7rem);
    left: auto;
    right: 1em;
    bottom: auto;
  }

  .perfume-thumb__text {
    font-size: 2.6rem;
  }

  .lp-grid-item {
    display: grid;
    grid-template-areas: "title" "image" " desc" "review" "button";
    grid-template-columns: 1fr;
    -moz-column-gap: 4rem;
        column-gap: 4rem;
  }

  .grid01 {
    margin-top: 1.6rem;
  }

  .grid04 {
    margin-top: 2.4rem;
  }
  .grid04 .lp-button {
    margin-left: auto;
    margin-right: auto;
  }

  .grid05 {
    margin-top: 2.4rem;
  }

  .reviewBlock__link {
    font-size: 1.4rem;
    padding-right: 1.4em;
  }

  .reviewBlock__link::after {
    content: "";
    width: 0.8rem;
    height: 0.8rem;
  }

  .lp-grid-item .itemName {
    font-size: 1.6rem;
  }
  .lp-grid-item .itemName span {
    font-size: 1.2rem;
  }

  .lp-grid-item .itemDesc {
    font-size: 1.4rem;
  }

  .lp-grid-item .itemTone {
    font-size: 1.2rem;
    margin-top: 2.4rem;
  }

  .reviewBlock {
    padding: 1.6rem 1rem 1.6rem 1.6rem;
  }

  .reviewblock__header {
    flex-direction: column;
  }

  .reviewBlock__heading {
    margin: 0 0 0.8rem 0;
  }

  .reviewBlock__content {
    height: 17.5rem;
    overflow: hidden;
    position: relative;
  }

  .reviewBlock__scroll {
    height: 100%;
    overflow-y: scroll;
    padding-right: 1.4rem;
    scrollbar-width: none;
  }

  .reviewBlock__scroll::-webkit-scrollbar {
    display: none;
  }

  .scrollbar-track {
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 100%;
    background: #eee; /* トラック色 */
    border-radius: 3px;
  }

  .scrollbar-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #ccc; /* ハンドル色 */
    border-radius: 3px;
  }

  .lp-heading-bnr {
    position: sticky;
    top: 0;
    z-index: 10;
  }

}