html {
  overflow-x: auto !important;
}

body {
  animation: none !important;
  padding: 0 !important;
}

/* ページ全体のスクロールを無効にする */
html.is-open:not(.i-amphtml-fie):not(.i-amphtml-singledoc),
body.is-open:not(.i-amphtml-fie):not(.i-amphtml-singledoc) {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
}

html body {
  font-family: "Noto Sans JP", sans-serif !important;
}

html.i-amphtml-fie>body,
html.i-amphtml-singledoc>body {
  overflow: auto !important;
}

@media only screen and (max-width: 767px) {
  .contents {
    overflow-x: initial !important;
  }
}

@media print,
screen and (min-width: 768px) {
  .contents {
    overflow-x: auto !important;
  }

  #header .header-fix-wrap {
    position: initial;
  }
}

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc_only {
    display: none;
  }

  .sp_only {
    display: block;
  }

  .HeaderBody.is-fixed {
    position: static;
  }
}

.contents-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px;
}

@media screen and (max-width: 767px) {
  .contents-inner {
    padding: 0 37px;
  }
}

.section-title {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .section-title {
    width: 223px;
    margin: 0 auto;
  }
}

.section-title span {
  font-size: 1.4rem;
  display: block;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .section-title span {
    margin-top: 6px;
  }
}

.fixed {
  position: fixed;
}

p {
  font-family: "Noto Sans JP", sans-serif;
}

.primary-color {
  color: #424E74;
}

.secondary-color {
  color: #C11002;
}

.items-inner {
  padding-top: 96px;
  padding-bottom: 105px;
  z-index: 100;
  position: relative;
}

@media screen and (max-width: 767px) {
  .items-inner {
    padding-top: 63px;
    padding-bottom: 0;
  }
}

button {
  all: unset;
  display: inline-block;
  cursor: pointer;
}

/*------------------------------------------
MV
-------------------------------------------*/
.mv-section {
  background: url("../img/pc_mv_bg.jpg") !important;
  background-size: cover;
  border-top: 1px solid #C11001;
}

@media screen and (max-width: 767px) {
  .mv-section {
    background: url("../img/sp_mv_bg.jpg") !important;
  }
}

.mv {
  max-width: 1074px;
  margin: 0 auto;
}

/*------------------------------------------
intro
-------------------------------------------*/
.intro {
  border-top: 1px solid #C11001;
  border-bottom: 1px solid #C11001;
  padding: 35px 0;
  position: relative;
  background: #fff;
}

@media screen and (max-width:767px) {
  .intro {
    padding: 26px 0 28px;
  }
}

.intro .contents-inner {
  margin-bottom: 35px;
  padding: 0 100px;
}

@media screen and (max-width:767px) {
  .intro .contents-inner {
    padding: 0 37px;
    margin-bottom: 0;
  }
}

.intro-lead {
  font-size: 1.6rem;
  line-height: 1.87;
  text-align: center;
}

@media screen and (max-width:767px) {
  .intro-lead {
    font-size: 1.4rem !important;
    line-height: 2;
  }
}

.intro-notice {
  font-size: 1.3rem;
  line-height: 1.76;
  text-align: center;
  margin-top: 8px;
}

@media screen and (max-width:767px) {
  .intro-notice {
    font-size: 1.2rem !important;
  }
}

/*------------------------------------------
nav-btn
-------------------------------------------*/

.nav-btn-wrap {
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 10px 0;
  z-index: 999;
  background-color: #fff;
  transition: transform 0.3s ease, right 0.3s ease;
}

@media screen and (max-width: 767px) {
  .nav-btn-wrap {
    background-color: transparent;
  }
}

/* .nav-btn-wrap.fixed{
    top: 80px;
} */

.nav-btn-wrap.fixed {
  top: 0;
}

@media screen and (max-width: 767px) {
  .nav-btn-wrap.fixed {
    top: 0;
    transform: translateX(100%);
    overflow-y: auto;
    /* メニュー内のコンテンツが溢れる場合のスクロールを許可 */
    height: 100vh;
    /* メニューを画面いっぱいに展開する */
  }
}

.nav-btn-wrap-inner {
  display: flex;
  justify-content: space-between;
  max-width: 741px;
  margin: 0 auto;
}

.nav-btn {
  width: 214px;
}

.sp_deco {
  display: none;
}

/* ハンバーガーメニューのスタイル */
.hamburger-menu {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  background-color: #C11002;
  margin-left: auto;
}

.hamburger-menu.fixed {
  top: 0px;
  right: 0;
  z-index: 10000;
  position: fixed;
}

.hamburger-menu-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.hamburger-menu-inner span {
  display: block;
  width: 24px;
  height: 1px;
  background-color: white;
  transition: all 0.3s ease;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease-in;
}

.hamburger-menu span:nth-of-type(1) {
  top: 12px;
}

.hamburger-menu span:nth-of-type(2) {
  top: 20px;
}

.hamburger-menu span:nth-of-type(3) {
  top: 28px;
  width: 16px;
  left: 16px;
}

/* is-openクラスが付与されたときのスタイル */
body.is-open .hamburger-menu span:nth-of-type(1) {
  top: calc(50% - 1px);
  transform: translateX(-50%) rotate(-30deg);
}

body.is-open .hamburger-menu span:nth-of-type(2) {
  display: none;
}

body.is-open .hamburger-menu span:nth-of-type(3) {
  width: 24px;
  top: auto;
  bottom: calc(50% - 1px);
  left: 50%;
  transform: translateX(-50%) rotate(30deg);
}

/* 画面幅767px以下の場合 */
@media screen and (max-width: 767px) {
  .nav-btn-wrap {
    background: url("../img/sp_menu_bg.png");
    background-size: cover;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100dvh;
    transform: translateX(100%);
    z-index: 999;
    padding: 0;
  }

  .hamburger-menu {
    z-index: 999;
    display: block;
    position: relative;
  }

  /* ハンバーガーメニューが開いた状態のスタイル */
  .is-open .nav-btn-wrap {
    transform: translateX(0);
    display: block;
    top: 0;
    right: 0;
    visibility: visible;

    height: 100vh;
    /* メニューが画面全体に展開 */
    overflow-y: auto;
    /* メニュー内部のスクロールを許可 */
  }

  .nav-btn-wrap-outer {
    height: 100dvh;
    display: flex;
    align-items: center;
    margin-top: -40px;
  }

  .nav-btn-wrap-inner {
    display: block;
    max-width: none;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    /* margin-top: 25%; */
    margin-top: 0;
  }

  .nav-btn-wrap-inner a {
    display: block;
    text-align: center;
  }

  .nav-btn-wrap-inner a+a {
    margin-top: 13vw;
  }

  .sp_deco {
    display: block;
    position: relative;
  }

  .left_top {
    position: absolute;
    top: 0vw;
    left: 11vw;
    width: 200px;
    height: 45px;
  }

  .left_bottom {
    position: absolute;
    top: 87vw;
    left: 13vw;
    width: 145px;
    height: 50px;
  }

  .right {
    position: absolute;
    top: 42vw;
    right: 13vw;
  }

  .nav-btn {
    width: 200px;
    height: 45px;
  }

  .nav-btn-wrap-inner a:nth-of-type(2) .nav-btn {
    width: 145px;
    height: 50px;
  }

  .nav-btn-wrap-inner a:nth-of-type(3) .nav-btn {
    width: 188px;
    height: 52px;
  }

  .is-open .hamburger-menu-body {
    display: none;
  }

  .hamburger-menu .hamburger-menu-body {
    transition: transform 3s ease-in;
  }
}

/*------------------------------------------
item 共通
-------------------------------------------*/
.item-wrap {
  display: flex;
  justify-content: flex-start;
  gap: 39px;
  flex-wrap: wrap;
}

@media screen and (max-width:767px) {
  .item-wrap {
    flex-direction: column;
    margin-top: 24px;
    gap: 50px;
  }
}

.item-wrap+.item-wrap {
  margin-top: 166px;
}

@media screen and (max-width:767px) {
  .item-wrap+.item-wrap {
    margin-top: 50px;
  }
}

.item {
  width: calc((100% - 78px) / 3);
}

@media screen and (max-width:767px) {
  .item {
    width: 100%;
  }
}

.item-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 14px;
  line-height: 1.56;
}

@media screen and (max-width:767px) {
  .item-title {
    font-size: 1.5rem !important;
    line-height: 1.6;
  }
}

.item-title .icon-new {
  display: inline-block;
  font-size: 1.4rem !important;
  color: #036518;
  line-height: 1;
  margin-right: 5px;
  padding: 3px 5px 5px;
  background: #ffdc3c;
  /*border: 1px solid;*/
}

.item-price {
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 8px;
}

@media screen and (max-width:767px) {
  .item-price {
    font-size: 1.3rem !important;
  }
}

.item-lead,
.item-list {
  font-size: 1.4rem !important;
  font-weight: 400;
}

@media screen and (max-width:767px) {

  .item-lead,
  .item-list {
    font-size: 1.3rem !important;
  }
}

.item-lead {
  margin-top: 11px;
  line-height: 1.85;
}

@media screen and (max-width:767px) {
  .item-lead {
    line-height: 1.92;
  }
}

.item-lead span {
  font-size: 1.2rem;
}

.item-lead.medium {
  font-weight: 500;
  line-height: 1.71;
}

.item-list {
  margin-top: 11px;
  line-height: 1.71;
  font-weight: 500;
}

@media screen and (max-width:767px) {
  .item-list {
    font-size: 1.3rem !important;
    line-height: 1.76;
    margin-top: 7px;
  }
}

/* PC時はテキストのみ表示し、リンクを非表示 */
.item-tel-link {
  color: #424E74 !important;
  text-decoration: none !important;
  cursor: default;
  pointer-events: none;
}

@media screen and (max-width: 767px) {

  /* SP時はリンクを表示し、テキストを非表示 */
  .item-tel-link {
    pointer-events: auto;
  }
}

/* 2列目のアイテムは少し下げる */
.item-center {
  transform: translateY(70px);
}

/* 3列目のアイテムはさらに下げる */
.item-right {
  transform: translateY(140px);
}

/*------------------------------------------
skincare
-------------------------------------------*/
.skincare {
  background: #F8EDDF !important;
}

@media screen and (max-width: 767px) {
  .skincare {
    border-bottom: 1px solid #C11001;
  }

  .skincare .category {
    margin-top: -40px;
  }
}

.skincare .contents-inner {
  padding-top: 0;
  padding-bottom: 63px;
}

@media screen and (max-width: 767px) {
  .skincare .contents-inner {
    padding-top: 0;
    padding-bottom: 47px;

  }
}

/*------------------------------------------
makeup
-------------------------------------------*/
.makeup {
  background-color: #FAE5E5 !important;

}

@media screen and (max-width: 767px) {
  .makeup {
    border-bottom: 1px solid #C11001;
  }

  .makeup .section-title {
    width: 162px;
    margin: 0 auto;
  }
}

.makeup .contents-inner {
  padding-top: 0;
  padding-bottom: 133px;
}

@media screen and (max-width: 767px) {
  .makeup .contents-inner {
    padding-bottom: 49px;
  }
}

/* すべてのsection[id]に共通するスタイル */
section[id]::before {
  content: "";
  display: block;
  height: 69px;
  /* 固定ヘッダーの高さに合わせる */
  margin-top: -69px;
  visibility: hidden;
  /* 見えない要素にする */
}

/* SP用：画面幅767px以下の場合 */
@media (max-width: 767px) {
  section[id]::before {
    content: none;
  }
}

/* id="makeup" のセクションにのみ適用するスタイル */
section#makeup::before {
  background-color: #F8EDDF;
  /* 背景色を白に設定 */
  visibility: visible;
  /* 必要に応じて可視化も可能 */
  border-bottom: 1px solid #C11001;
}

/*------------------------------------------
fragrance
-------------------------------------------*/
.fragrance {
  background-color: #DEEBEB !important;

}

.fragrance .contents-inner {
  padding-top: 0;
  padding-bottom: 133px;
}

@media screen and (max-width: 767px) {
  .fragrance .contents-inner {
    padding-bottom: 47px;
  }
}

/* id="fragrance" のセクションにのみ適用するスタイル */
section#fragrance::before {
  background: #FAE5E5;
  /* 背景色を白に設定 */
  visibility: visible;
  /* 必要に応じて可視化も可能 */
  border-bottom: 1px solid #C11001;
}

/*------------------------------------------
フェードの上がり方
-------------------------------------------*/
.item-left.fadein {
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  opacity: 0;
  transition: all 1.3s;
}

.item-left.fadein.is-scroll {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.item-center.fadein {
  -webkit-transform: translateY(125px);
  transform: translateY(125px);
  opacity: 0;
  transition: all 1.3s;
}

.item-center.fadein.is-scroll {
  -webkit-transform: translateY(70px);
  transform: translateY(70px);
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .item-center.fadein {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
    transition: all 1.3s;
  }

  .item-center.fadein.is-scroll {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

.item-right.fadein {
  -webkit-transform: translateY(200px);
  transform: translateY(200px);
  opacity: 0;
  transition: all 1.3s;
}

.item-right.fadein.is-scroll {
  -webkit-transform: translateY(140px);
  transform: translateY(140px);
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .item-right.fadein {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
    transition: all 1.3s;
  }

  .item-right.fadein.is-scroll {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

/*------------------------------------------
振り子のアニメーション
-------------------------------------------*/
.category {
  position: relative;
}

.category::before {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  z-index: 10;
}

.category::after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  z-index: 10;

}

.category::before {
  transform-origin: top center;
  /* 回転の基準点を上に設定 */
  animation: swing 5.1s ease-in-out infinite;
  /* 2秒間の振り子アニメーションを1回だけ */
}

@media screen and (max-width: 767px) {
  .category::before {
    animation: sp_swing 5.1s ease-in-out infinite;
    /* 2秒間の振り子アニメーションを1回だけ */
  }
}

.category::after {
  transform-origin: top center;
  /* 回転の基準点を上に設定 */
  animation: swing 5s ease-in-out infinite;
  /* 2秒間の振り子アニメーションを1回だけ */
}

@keyframes swing {
  0% {
    transform: rotate(15deg);
    /* 右へ振れる */
  }

  50% {
    transform: rotate(-15deg);
    /* 左へ振れる */
  }

  100% {
    transform: rotate(15deg);
    /* 右へ戻る */
  }
}

@keyframes sp_swing {
  0% {
    transform: rotate(7deg);
    /* 右へ振れる */
  }

  50% {
    transform: rotate(-7deg);
    /* 左へ振れる */
  }

  100% {
    transform: rotate(7deg);
    /* 右へ戻る */
  }
}

.skincare .category::before {
  background: url("../img/skincare/deco_skincare_left.svg");
  right: 31%;
  top: 0;
  width: 64px;
  height: 307px;
}

@media screen and (max-width: 767px) {
  .skincare .category::before {
    background: url("../img/skincare/sp_deco_skincare_left.svg");
    right: 11%;
    top: 0;
    width: 39px;
    height: 189px;
  }
}

.skincare .category::after {
  background: url("../img/skincare/deco_skincare_right.svg");
  right: 27%;
  top: 0;
  width: 70px;
  height: 164px;
}

@media screen and (max-width: 767px) {
  .skincare .category::after {
    content: none;
  }
}

.makeup .category::before {
  background: url("../img/makeup/deco_makeup_left.svg");
  right: 32.2%;
  top: 0;
  width: 70px;
  height: 164px;
}

@media screen and (max-width: 767px) {
  .makeup .category::before {
    background: url("../img/makeup/sp_deco_makeup_left.svg");
    right: 11%;
    top: 0;
    width: 60px;
    height: 169px;
  }
}

.makeup .category::after {
  background: url("../img/makeup/deco_makeup_right.svg");
  right: 25.8%;
  top: 0;
  width: 100px;
  height: 280px;
}

@media screen and (max-width: 767px) {
  .makeup .category::after {
    content: none;
  }
}


.fragrance .category::before {
  background: url("../img/fragrance/deco_fragrance_left.svg");
  right: 28%;
  top: 0;
  width: 110px;
  height: 280px;
}

@media screen and (max-width: 767px) {
  .fragrance .category::before {
    background: url("../img/fragrance/sp_deco_fragrance_left.svg");
    right: 11%;
    top: 0;
    width: 66px;
    height: 168px;
  }
}


.fragrance .category::after {
  background: url("../img/fragrance/deco_fragrance_right.svg");
  right: 23.7%;
  top: 0;
  width: 70px;
  height: 164px;
}

@media screen and (max-width: 767px) {
  .fragrance .category::after {
    content: none;
  }
}

.caution .contents-inner p:first-of-type {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/*------------------------------------------
ページ下部バナー
-------------------------------------------*/
.banner-wrap {
  width: 480px;
  margin: 40px auto 0;
}

@media screen and (max-width: 767px) {
  .banner-wrap {
    width: 100%;
    padding: 0 37px;
    margin: 20px auto 0;
  }
}