﻿@charset "UTF-8";

/* ===============================================
  * アニメーション *
=============================================== */
/* ハンバーガーボタン アニメーション */
@-webkit-keyframes hamburger-button--open--1 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(8px) rotate(0);
    transform: translateY(8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
  }
}
@keyframes hamburger-button--open--1 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(8px) rotate(0);
    transform: translateY(8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
  }
}

@-webkit-keyframes hamburger-button--open--2 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-8px) rotate(0);
    transform: translateY(-8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
  }
}

@keyframes hamburger-button--open--2 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-8px) rotate(0);
    transform: translateY(-8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
  }
}

@-webkit-keyframes hamburger-button--close--1 {
  0% {
    -webkit-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(8px) rotate(0);
    transform: translateY(8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
}

@keyframes hamburger-button--close--1 {
  0% {
    -webkit-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(8px) rotate(0);
    transform: translateY(8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
}

@-webkit-keyframes hamburger-button--close--2 {
  0% {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-8px) rotate(0);
    transform: translateY(-8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
}

@keyframes hamburger-button--close--2 {
  0% {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-8px) rotate(0);
    transform: translateY(-8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
}

/* ===============================================
  * 全ページ共通スタイル *
=============================================== */
html {
  font-size: 62.5%;
}

body {
  width: 100%;
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
}

#Wrap {
  padding-top: var(--headerHeight);
  transition-property: padding;
  transition-duration: 500ms;
  transition-timing-function: ease;
}

.img__wrapper img {
  width: 100%;
  height: auto;
}

/* 注意文言用 */
.attention-txt--bold-red {
  color: var(--incubation-red);
  font-weight: bold;
}

.attention-txt--bold-black {
  color: var(--black) !important;
  font-weight: bold;
}

.attention-txt--regular-red {
  color: var(--incubation-red);
  font-weight: normal;
}

/* ===============================================
  *ランキングカミングスーン対応 *
=============================================== */
/* こっち使わなくてOKだと思う テスト環境できたら検証*/
.comingsoon-icon + .soldout-icon,
.comingsoon-icon + .collect-icon + .soldout-icon,
.comingsoon-icon + .soldout-icon + .soldout-icon,
.comingsoon-icon + .collect-icon + .mail-icon + .soldout-icon,
.campaign-icon--comingsoon + .campaign-icon--soldout,
.campaign-icon--comingsoon + .campaign-icon--bulk + .campaign-icon--soldout,
.campaign-icon--comingsoon + .campaign-icon--bulk + .campaign-icon--mail + .campaign-icon--soldout {
  display: none;
}

.reservation-icon ~ .soldout-icon,
.campaign-icon--reservation ~ .campaign-icon--soldout,
.comingsoon-icon ~ .soldout-icon,
.campaign-icon--comingsoon ~ .campaign-icon--soldout {
  display: none;
}

/* ===============================================
  * コンポーネント *
=============================================== */
/* チェックボックス */
.c-form__input--check {
  font-size: calc(15 *(100vw / 375));
}
.c-form__input--check input[type=checkbox] {
  display: none;
}
.c-form__input--check label {
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding-left: calc(30 * (100vw / 375));
}
.c-form__input--check label::before,
.c-form__input--check label::after {
  content: '';
  display: block;
  background:
    url(../Contents/ImagesPkg/user/icn_checkbox_off.svg)
    center / contain
    no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-size: calc(20 * (100vw / 375));
  width: calc(20 * (100vw / 375));
  height: calc(20 * (100vw / 375));
}
.c-form__input--check label::after {
  opacity: 0;
  background-image: url(../Contents/ImagesPkg/user/icn_checkbox_on.svg);
}
.c-form__input--check input[type=checkbox]:checked+label::after {
  transition: opacity .1s ease-in-out;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .c-form__input--check {
    font-size: 1.5rem;
  }
  .c-form__input--check label {
    padding-left: 2.7rem;
  }
  .c-form__input--check label::before,
  .c-form__input--check label::after {
    background-size: 1.8rem;
    width: 1.8rem;
    height: 1.8rem;
  }
}

/* PCスクロールバー */
.c-simpleScrollbar--vertical,
.c-simpleScrollbar--horizon {
  scrollbar-width: thin;
}
@media (hover: hover) {
  .c-simpleScrollbar--vertical {
    margin-right: var(--simpleScrollbar-mr, 4px);
    padding-right: var(--simpleScrollbar-pr, 4px);
  }
  .c-simpleScrollbar--horizon {
    margin-bottom: var(--simpleScrollbar-mb, 4px);
    padding-bottom: var(--simpleScrollbar-pb, 4px);
  }
  :is(.c-simpleScrollbar--vertical, .c-simpleScrollbar--horizon)::-webkit-scrollbar {
    background-color: transparent;
    border-radius: 100vh;
    opacity: 0;
    transition: opacity .3s;
  }
  .c-simpleScrollbar--vertical::-webkit-scrollbar {
    width: var(--simpleScrollbar-h, 6px);
  }
  .c-simpleScrollbar--horizon::-webkit-scrollbar {
    height: var(--simpleScrollbar-h, 6px);
  }
  :is(.c-simpleScrollbar--vertical, .c-simpleScrollbar--horizon):hover::-webkit-scrollbar {
    opacity: 1;
  }
  :is(.c-simpleScrollbar--vertical, .c-simpleScrollbar--horizon):hover::-webkit-scrollbar-track {
    background-color: rgb(0 0 0 / 10%);
    border-radius: 100vh;
  }
  :is(.c-simpleScrollbar--vertical, .c-simpleScrollbar--horizon):hover::-webkit-scrollbar-thumb {
    background: rgb(0 0 0 / 30%);
    border-radius: 100vh;
  }
}

/* ===============================================
  * 検索ボックス *
=============================================== */
.c-searchBox {
  position: relative;
  width: var(--searchBox-w, 100%);
  height: var(--searchBox-h, 40px);
  padding-left: 15px;
  padding-right: 44px;
  border: 1px solid var(--dhusar-grey);
  border-radius: 4px;
}
.c-searchBox::after {
  content: "";
  position: absolute;
  top: 0;
  right: 43px;
  bottom: 0;
  width: 1px;
  height: 16px;
  margin: auto;
  background-color: var(--dhusar-grey);
}
.c-searchBox input {
  width: 100%;
  height: 100%;
  font-size: var(--searchBox-text, 15px);
}
.c-searchBox input::placeholder {
  color: #B7B7B7;
}
.c-searchBox a {
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  z-index: 2;
  width: 17px;
  height: 17px;
  margin: auto;
}

/* ===============================================
  * トレンドキーワード *
=============================================== */
.c-trendKeywords ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 5px;
}
.c-trendKeywords--scrollable ul {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  flex-wrap: nowrap;
  column-gap: 8px;
  padding: 0 var(--trendKeywords-ul-px, 0) 8px;
}
.c-trendKeywords li {
  overflow: hidden;
  flex-shrink: 0;
  background-color: var(--beluga);
  border-radius: 100vh;
}
.c-trendKeywords a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: var(--trendKeywords-h, 31px);
  padding: 0 var(--trendKeywords-a-px, 16px);
  font-size: var(--trendKeywords-text, 12px);
  font-weight: 300;
  letter-spacing: .1em;
}
.c-trendKeywords a::before {
  content: "#";
}

/* ===============================================
  * カテゴリースライダー *
=============================================== */
.c-categorySlider {
  overflow-x: auto;
  overscroll-behavior-x: contain;
}
.c-categorySlider .c-categorySlider__list {
  display: grid;
  grid-template-rows: repeat(var(--row-count, 1), 1fr);
  grid-auto-flow: column;
  width: max-content;
  margin: 0 auto;
  padding-left: var(--categorySlider-slider-px, 0);
  padding-right: var(--categorySlider-slider-px, 0);
  padding-bottom: 8px;
}
.c-categorySlider .c-categorySlider__item a {
  display: block;
}
.c-categorySlider .c-categorySlider__icon {
  overflow: hidden;
  border: 1px solid var(--beluga);
  border-radius: 50%;
}
.c-categorySlider .c-categorySlider__icon img {
  width: 100%;
  height: auto;
}
.c-categorySlider .c-categorySlider__name {
  font-family: var(--hirakaku);
  text-align: center;
  font-weight: var(--font-weight-semibold);
  word-break: keep-all;
}
@media only screen and (max-width: 767px) {
  .c-categorySlider {
    --row-count: 2;
  }
  .c-categorySlider .c-categorySlider__list {
    grid-auto-columns: calc(144 *(100vw / 750));
    gap: calc(32 *(100vw / 750)) calc(16 *(100vw / 750));
  }
  .c-categorySlider .c-categorySlider__name {
    margin-top: calc(16 *(100vw / 750));
    font-size: calc(20 *(100vw / 750));
  }
}
@media only screen and (min-width: 768px) {
  .c-categorySlider .c-categorySlider__list {
    grid-auto-columns: 10rem;
    gap: 1.2rem;
  }
  .c-categorySlider .c-categorySlider__name {
    margin-top: 0.8rem;
    font-size: 1.2rem;
  }
}

/* ===============================================
  * ヘッダー *
=============================================== */
#Head {
  -webkit-transition-property: background, opacity;
  -webkit-transition-duration: 0.5s;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--headerHeight);
  border-bottom: solid 1px var(--aria);
  background-color: var(--white);
  opacity: 0;
  transition-duration: 0.5s;
  transition-property: background, height, opacity;
}

.header__ticker {
  -webkit-transition: all 1s linear;
  height: var(--tickerHeight);
  opacity: 0;
  transition: all 1s linear;
}

.header__ticker.slick-initialized {
  opacity: 1;
}

.header__ticker-item__wrapper {
  border: none !important;
}

.header__ticker-item__text {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  /* height: 26px; */
  height: var(--tickerHeight);
  color: var(--black);
  font-family: var(--hirakaku);
  font-size: 13px;
  letter-spacing: 0.03em;
}

.header__ticker-item__text--cream {
  background-color: var(--cream);
}

.header__ticker-item__text--major-blue {
  background-color: var(--major-blue);
  color: var(--white);
}

.header__ticker-item__text--coral-dust {
  background-color: var(--coral-dust);
  color: var(--white);
}

.header__ticker-item__text--shadow-mountain {
  background-color: var(--shadow-mountain);
  color: var(--white);
}

/* 帯バナー */
.header__obi,
.header__obi .header__obi-inner {
  height: var(--obiBannerHeight);
}
.header__obi .header__obi-slide {
  border: none !important;
}
.header__obi .header__obi-inner {
  display: block;
}
.header__obi .header__obi-inner img {
  width: 100%;
  height: auto;
}

.header__inner {
  position: relative;
  height: var(--headerInnerHeight);
}

.header__hamburger-button {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(17 * (100vw / 375));
  width: 24px;
  height: 17px;
  margin: auto;
}

.header__hamburger-button-icon {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.header__hamburger-button-icon span {
  -webkit-transition: all 0.3s;
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--black);
  transition: all 0.3s;
}

.header__hamburger-button-icon span:nth-of-type(1) {
  top: 0;
}

.header__hamburger-button-icon span:nth-of-type(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}

.header__hamburger-button-icon span:nth-of-type(3) {
  bottom: 0;
}

.header__hamburger-button-icon.isOpened span:nth-of-type(1) {
  -webkit-animation: hamburger-button--open--1 0.3s forwards;
  animation: hamburger-button--open--1 0.3s forwards;
}

.header__hamburger-button-icon.isOpened span:nth-of-type(2) {
  opacity: 0;
}

.header__hamburger-button-icon.isOpened span:nth-of-type(3) {
  -webkit-animation: hamburger-button--open--2 0.3s forwards;
  animation: hamburger-button--open--2 0.3s forwards;
}

.header__hamburger-button-icon.isClosed span:nth-of-type(1) {
  -webkit-animation: hamburger-button--close--1 0.3s forwards;
  animation: hamburger-button--close--1 0.3s forwards;
}

.header__hamburger-button-icon.isClosed span:nth-of-type(2) {
  opacity: 1;
}

.header__hamburger-button-icon.isClosed span:nth-of-type(3) {
  -webkit-animation: hamburger-button--close--2 0.3s forwards;
  animation: hamburger-button--close--2 0.3s forwards;
}

.header__brand-logo {
  z-index: 2;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: calc(136 * (100vw / 375));
  height: calc(30 * (100vw / 375));
  margin: auto;
}

.header__brand-logo--img {
  display: inline;
}

.header__brand-logo .img__wrapper {
  height: 100%;
}

.header__brand-logo .img__wrapper img {
  width: auto;
  height: 100%;
}
.header__brand-logo .img__wrapper svg {
  overflow: visible;
  width: 100%;
  height: auto;
}

.header--rosemadame .header__brand-logo .img__wrapper svg {
  width: auto;
  height: 100%;
}

.header-item__icon {
  position: absolute;
  top: 0;
  right: calc(8 * (100vw / 375));
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(77 * (100vw / 375));
  /* height: calc(24 * (100vw / 375)); */
  margin: auto;
}

.header-item__icon-item .img__wrapper {
  height: 100%;
}

.header-item__icon-item--search-trigger {
  position: relative;
}
.header-item__icon-item--search__window {
  overflow: hidden;
  position: absolute;
  z-index: 3;
  display: none;
  background-color: var(--white);
}

/* ハンバーガーコピー(固定サイズ) */
#searchWindow .header__hamburger-menu__list-item--accordion__child-list--1 .header__hamburger-menu__list-item--link {
  font-size: 0.8em;
}
#searchWindow .header__hamburger-menu__list-item--accordion__child-list--3 .header__hamburger-menu__list-item--link {
  padding-left: 30px;
  font-size: 0.7em;
}
#searchWindow .header__hamburger-menu__list-item--link {
  height: 50px;
  padding-left: 10px;
  font-size: 15px;
}
#searchWindow .header__hamburger-menu__list-item--accordion .accordion-icon {
  right: 15px;
}
#searchWindow .header__hamburger-menu__list-item__child-list-item .button--square--arrow::after {
  right: 17.1px;
  width: 5.66px;
  height: 9.9px;
}
#searchWindow .header__hamburger-menu__list-item--accordion__child-list {
  font-size: 15px;
}
/* ハンバーガーコピー(固定サイズ) */

.header-item__icon-item--cart {
  position: relative;
  width: calc(29 * (100vw / 375));
  height: calc(24 * (100vw / 375));
}

.header-item__icon-item--cart svg {
  width: 100%;
  height: 100%;
}

.header-item__icon-item--cart--link {
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.header-item__icon-item--cart .incart-amount {
  z-index: 2;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  padding-left: calc(3 * (100vw / 375));
  color: var(--incubation-red);
  font-family: var(--roboto);
  font-size: calc(12 * (100vw / 375));
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1;
  text-align: center;
}

.header-item__icon-item--brand__button {
  position: relative;
  color: var(--black);
  font-family: var(--quattrocento-sans);
  font-size: calc(11 * (100vw / 375));
  font-weight: bold;
  line-height: 1;
}

.header-item__icon-item--brand__button::after {
  -webkit-transform: rotate(0);
  -webkit-transition-property: -webkit-transform;
  -webkit-transition-duration: 0.5s;
  position: absolute;
  right: 0;
  bottom: calc(-10 * (100vw / 375));
  left: 0;
  width: calc(7 * (100vw / 375));
  height: calc(5 * (100vw / 375));
  margin: auto;
  transform: rotate(0);
  background-image: url('../Contents/ImagesPkg/common/arrow_icon.svg');
  background-repeat: no-repeat;
  background-size: 100%;
  content: '';
  transition-duration: 0.5s;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.header-item__icon-item--brand.isActive .header-item__icon-item--brand__button::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.header__hamburger-menu {
  -webkit-transition: all 0.5s ease-in-out;
  z-index: 4;
  position: fixed;
  top: 0;
  right: 100%;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-in-out;
}

.header__hamburger-menu__inner {
  z-index: 3;
  position: absolute;
  width: calc(335 * (100vw / 375));
  height: 100%;
  padding-bottom: calc(35 * (100vw / 375));
  overflow-x: hidden;
  overflow-y: scroll;
  background-color: var(--white);
  font-family: var(--hirakaku);
}

.header__hamburger-menu__inner.isFixed {
  overflow-y: hidden;
}

.header__hamburger-menu__list-item--title {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  height: calc(40 * (100vw / 375));
  background-color: var(--aria);
  font-size: calc(12 * (100vw / 375));
  font-weight: 600;
  word-break: keep-all;
}

.header__hamburger-menu__list-item--title .img__wrapper {
  margin-right: calc(10 * (100vw / 375));
  margin-left: calc(10 * (100vw / 375));
}

.header__hamburger-menu__list-item--link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  height: calc(45 * (100vw / 375));
  padding-left: calc(10 * (100vw / 375));
  border-bottom: solid 1px var(--aria);
  font-size: calc(15 * (100vw / 375));
  font-weight: 300;
  word-break: keep-all;
}

.header__hamburger-menu__list-item__child-list {
  border-top: solid 1px var(--aria);
}

.header__hamburger-menu__list-item__child-list-item .button--square--arrow::after,
.header__hamburger-menu__list-item--link::after {
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%225.658%22%20height%3D%229.899%22%20viewBox%3D%220%200%205.658%209.899%22%3E%0A%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_3581%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%203581%22%20transform%3D%22translate(6171.208%20-6902.151)%22%3E%0A%20%20%20%20%3Cpath%20id%3D%22%E7%B7%9A_443%22%20data-name%3D%22%E7%B7%9A%20443%22%20d%3D%22M.5%2C6.5h-1v-7h1Z%22%20transform%3D%22translate(-6170.5%206902.858)%20rotate(-45)%22%2F%3E%0A%20%20%20%20%3Cpath%20id%3D%22%E7%B7%9A_444%22%20data-name%3D%22%E7%B7%9A%20444%22%20d%3D%22M.5%2C6.5h-1v-7h1Z%22%20transform%3D%22translate(-6166.257%206907.101)%20rotate(45)%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E');
}

.header__hamburger-menu__list-item--mypage .header__hamburger-menu__list-item--title .img__wrapper {
  width: calc(22 * (100vw / 375));
  height: calc(22 * (100vw / 375));
}

.header__hamburger-menu__list-item--recently
  .header__hamburger-menu__list-item--title
  .img__wrapper {
  width: calc(22 * (100vw / 375));
  height: calc(22 * (100vw / 375));
}

.header__hamburger-menu__list-item--recently #productHistory .productHistory__blkttl {
  display: none;
}

.header__hamburger-menu__list-item--recently #productHistory .productHistory__itemArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: calc(16 * (100vw / 375));
  padding-right: calc(10 * (100vw / 375));
  padding-left: calc(10 * (100vw / 375));
}

.header__hamburger-menu__list-item--recently #productHistory .productHistory__itemArea li {
  width: calc(59 * (100vw / 375));
  height: calc(70 * (100vw / 375));
  margin-right: calc(5 * (100vw / 375));
}

.header__hamburger-menu__list-item--recently #productHistory .productHistory__itemArea li a {
  display: block;
  width: 100%;
}

.header__hamburger-menu__list-item--recently #productHistory .productHistory__itemArea li img {
  width: 100%;
  height: auto;
}

.header__hamburger-menu__list-item--recently
  #productHistory
  .productHistory__itemArea
  li:last-of-type {
  margin-right: 0;
}

.header__hamburger-menu__list-item--recently__viewall-link {
  position: relative;
  width: calc(76 * (100vw / 375));
  margin-top: calc(8 * (100vw / 375));
  margin-right: calc(10 * (100vw / 375));
  margin-bottom: calc(10 * (100vw / 375));
  margin-left: auto;
}

.header__hamburger-menu__list-item--recently__viewall-link::after {
  right: 0;
}

.header__hamburger-menu__list-item--recently__viewall-link-text {
  font-size: calc(12 * (100vw / 375));
  font-weight: 300;
  text-decoration: underline;
}

.header__hamburger-menu__list-item--search .header__hamburger-menu__list-item--title .img__wrapper {
  width: calc(18 * (100vw / 375));
  height: calc(18 * (100vw / 375));
}

.header__hamburger-menu__list-item--search .search-window__search-box {
  --searchBox-w: calc(315 *(100vw / 375));
  margin: calc(15 *(100vw / 375)) auto 0;
}

.header__hamburger-menu__list-item--search .search-window__trend-keywords {
  margin: 0 calc(10 *(100vw / 375));
}

.header__hamburger-menu__list-item--search__inputbox {
  position: relative;
  width: calc(315 * (100vw / 375));
  height: calc(40 * (100vw / 375));
  margin-top: calc(15 * (100vw / 375));
  margin-right: auto;
  margin-bottom: calc(15 * (100vw / 375));
  margin-left: auto;
  padding-right: calc(44 * (100vw / 375));
  padding-left: calc(15 * (100vw / 375));
  border: solid 0.1rem var(--dhusar-grey);
  border-radius: 4px;
}

.header__hamburger-menu__list-item--search__inputbox input {
  width: 100%;
  height: 100%;
  font-size: 16px;
}

.header__hamburger-menu__list-item--search__inputbox input::-webkit-input-placeholder {
  color: var(--aria);
  font-family: var(--quattrocento-sans);
  font-size: calc(14 * (100vw / 375));
  font-weight: bold;
  letter-spacing: 0.03em;
}

.header__hamburger-menu__list-item--search__inputbox input::-moz-placeholder {
  color: var(--aria);
  font-family: var(--quattrocento-sans);
  font-size: calc(14 * (100vw / 375));
  font-weight: bold;
  letter-spacing: 0.03em;
}

.header__hamburger-menu__list-item--search__inputbox input:-ms-input-placeholder {
  color: var(--aria);
  font-family: var(--quattrocento-sans);
  font-size: calc(14 * (100vw / 375));
  font-weight: bold;
  letter-spacing: 0.03em;
}

.header__hamburger-menu__list-item--search__inputbox input::-ms-input-placeholder {
  color: var(--aria);
  font-family: var(--quattrocento-sans);
  font-size: calc(14 * (100vw / 375));
  font-weight: bold;
  letter-spacing: 0.03em;
}

.header__hamburger-menu__list-item--search__inputbox input::placeholder {
  color: var(--aria);
  font-family: var(--quattrocento-sans);
  font-size: calc(14 * (100vw / 375));
  font-weight: bold;
  letter-spacing: 0.03em;
}

.header__hamburger-menu__list-item--search__inputbox::after {
  position: absolute;
  top: 0;
  right: calc(43 * (100vw / 375));
  bottom: 0;
  width: 1px;
  height: calc(16 * (100vw / 375));
  margin: auto;
  background-color: var(--dhusar-grey);
  content: '';
}

.header__hamburger-menu__list-item--search .search-section__inputbox-button {
  z-index: 2;
  position: absolute;
  top: 0;
  right: calc(15 * (100vw / 375));
  bottom: 0;
  width: calc(17 * (100vw / 375));
  height: calc(17 * (100vw / 375));
  margin: auto;
}

.header__hamburger-menu__list-item--accordion .header__hamburger-menu__list-item--link,
#Wrap .header__hamburger-menu__list-item--accordion .header__hamburger-menu__list-item--link {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}

.header__hamburger-menu__list-item--accordion .accordion-icon {
  display: block;
  position: relative;
  right: calc(15 * (100vw / 375));
  width: 10px;
  height: 10px;
}

.header__hamburger-menu__list-item--accordion .accordion-icon::before,
.header__hamburger-menu__list-item--accordion .accordion-icon::after {
  -webkit-transition: all 0.6s;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  margin: auto;
  background-color: var(--black);
  content: '';
  transition: all 0.6s;
}

.header__hamburger-menu__list-item--accordion .accordion-icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.header__hamburger-menu__list-item--accordion .accordion-icon.isActive::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.header__hamburger-menu__list-item--accordion__child-list {
  display: none;
  background-color: var(--white-solid);
  font-size: calc(15 * (100vw / 375));
}

.header__hamburger-menu__list-item--accordion__child-list--1
  .header__hamburger-menu__list-item--link {
  font-size: 0.8em;
}

.header__hamburger-menu__list-item--accordion__child-list--1
  .header__hamburger-menu__list-item--catSection {
  font-weight: 600;
}

.header__hamburger-menu__list-item--accordion__child-list--2
  .header__hamburger-menu__list-item--link {
  padding-left: calc(20 * (100vw / 375));
  font-size: 0.7em;
}

.header__hamburger-menu__list-item--accordion__child-list--3
  .header__hamburger-menu__list-item--link {
  padding-left: calc(30 * (100vw / 375));
  font-size: 0.7em;
}

.header__hamburger-menu__list-item--accordion__child-list--brand
  .header__hamburger-menu__list-item--link {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  height: calc(73 * (100vw / 375));
  padding-left: 0;
}

.header__hamburger-menu__list-item--accordion__child-list--brand .brandimg img,
.header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .header__hamburger-menu__list-item--accordion__child-list--brand .brandimg.brandimg--norc img {
    height: calc(73 * (100vw / 375));
  }
}
.header__hamburger-menu__list-item--accordion__child-list--brand .brandimg {
  width: calc(100 * (100vw / 375));
  height: 100%;
  margin-right: calc(20 * (100vw / 375));
}

.header__hamburger-menu__list-item--accordion__child-list--brand .brandimg--crossmarche {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--norc {
  width: calc(71 * (100vw / 375));
}

.header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--norcbytheline {
  width: calc(71 * (100vw / 375));
}

.header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--norcanthem {
  width: calc(71 * (100vw / 375));
}

.header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--norcanthem svg {
  width: 100%;
  height: auto;
}

.header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--norchonzawa {
  width: calc(70 * (100vw / 375));
}

.header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--renorm {
  width: calc(82 * (100vw / 375));
}

.header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--lesoukholiday {
  width: calc(82 * (100vw / 375));
}

.header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--alphacubic {
  width: calc(96 * (100vw / 375));
}

.header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--decoy {
  width: calc(81 * (100vw / 375));
}

.header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--petithonfleur {
  width: calc(94 * (100vw / 375));
}

.header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--junkoshimada {
  width: calc(91 * (100vw / 375));
}

.header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--junko-shimada {
  width: calc(100 * (100vw / 375));
}

.header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--junko-shimada svg {
  width: 100%;
  height: auto;
}

.header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--junko-49av {
  width: calc(30 * (100vw / 375));
}

.header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--junko-49av svg {
  width: 100%;
  height: auto;
}

.header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--jsbanana {
  width: calc(16 * (100vw / 375));
}

.header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--atsurotayama {
  width: calc(138 * (100vw / 375));
}

.header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--atsuro-tayama {
  width: calc(80 * (100vw / 375));
}

.header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--atsuro-ats {
  width: calc(40 * (100vw / 375));
}

.header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--kangol {
  width: calc(82 * (100vw / 375));
}

.header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--bizcos {
  width: calc(60 * (100vw / 375));
}

.header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--head {
  width: calc(92 * (100vw / 375));
}

.header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--rosemadame {
  width: calc(72 * (100vw / 375));
}

.header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--crossmarche {
  width: calc(99 * (100vw / 375));
}

.header__hamburger-menu__list-item--help .header__hamburger-menu__list-item--title .img__wrapper {
  width: calc(22 * (100vw / 375));
  height: calc(22 * (100vw / 375));
}

.header__hamburger-menu__list-item--contents .img__wrapper {
  width: calc(16 * (100vw / 375));
  height: calc(20 * (100vw / 375));
}

.header__hamburger-menu__list-item--contents .img__wrapper svg path,
.header__hamburger-menu__list-item--contents .img__wrapper svg line {
  stroke: var(--black);
}

.header__hamburger-menu__list-item--sns-magazine {
  margin-top: calc(30 * (100vw / 375));
}

.header__hamburger-menu__list-item--sns__list {
  width: calc(260 * (100vw / 375));
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: calc(30 * (100vw / 375));
  margin-right: auto;
  margin-left: auto;
}

.header__hamburger-menu__list-item--sns__list-item .img__wrapper {
  width: calc(27 * (100vw / 375));
  height: calc(27 * (100vw / 375));
}

.header__hamburger-menu__list-item--sns__list-item--twitter .img__wrapper {
  width: calc(28 * (100vw / 375));
  height: calc(22 * (100vw / 375));
}

.header__hamburger-menu__list-item--magazine__button {
  display: block;
  position: relative;
  width: calc(280 * (100vw / 375));
  height: calc(111 * (100vw / 375));
  margin-top: calc(25 * (100vw / 375));
  margin-right: auto;
  margin-left: auto;
  padding-top: calc(50 * (100vw / 375));
  background-color: var(--black);
  color: var(--white);
  font-size: calc(10 * (100vw / 375));
  font-weight: 400;
  text-align: center;
}

.header__hamburger-menu__list-item--magazine__button::before {
  position: absolute;
  top: calc(20 * (100vw / 375));
  right: 0;
  left: 0;
  width: calc(25 * (100vw / 375));
  height: calc(18 * (100vw / 375));
  margin: auto;
  background-image: url('../Contents/ImagesPkg/common/mail_icon_white.svg');
  background-repeat: no-repeat;
  background-size: 100%;
  content: '';
}

.header__hamburger-menu__list-item--magazine--title {
  display: block;
  margin-bottom: calc(10 * (100vw / 375));
  font-size: calc(16 * (100vw / 375));
  font-weight: 500;
  line-height: 1.125;
}

.header__hamburger-menu__list-item__overwrapper {
  -webkit-transition: left 0.5s ease-in-out;
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  transition: left 0.5s ease-in-out;
}

.header__hamburger-menu__list-item__overwrapper--grandchild {
  z-index: 4;
}

.header__hamburger-menu__list-item__overwrapper--great-grandchild {
  z-index: 5;
}

.header__hamburger-menu__list-item__overwrapper.isActive {
  left: 0;
}

.header__hamburger-menu__list-item__overwrapper .returnTrigger {
  border-bottom: solid 1px var(--black);
}

.header__hamburger-menu__bg {
  -webkit-transition: all 0.3s linear;
  visibility: hidden;
  z-index: 3;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: all 0.3s linear;
}

.header__brand-list--tile {
  display: none;
  z-index: 2;
  position: absolute;
  /* top: var(--headerHeight); */
  top: calc(var(--headerSmartBannerHeight) + var(--tickerHeight) + var(--obiBannerHeight) + var(--headerInnerHeight) + var(--headerBottomLinkBarHeight));
  left: 0;
  width: 100%;
  height: calc(100vh - var(--headerHeight));
  background-color: var(--white);
  overflow-y: scroll;
}

.header__brand-list--tile .cardUnit {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  /* height: calc(100vh - var(--headerHeight)); */
  height: calc(100vh - calc(var(--tickerHeight) + var(--headerInnerHeight)));
}

.header__brand-list--tile .cardUnit__card {
  width: calc(100% / 3);
  margin: 0;
  border-right: solid 1px var(--aria);
  border-bottom: solid 1px var(--aria);
  background-color: var(--white);
}

.header__brand-list--tile .cardUnit__card img {
  width: 100%;
  height: auto;
}

/* ハンバーガーメニュー 表示時 */
.hamburgerMenuIsOpened {
  width: 100%;
  height: 100%;
}

.hamburgerMenuIsOpened #Head {
  top: 0;
}

.hamburgerMenuIsOpened .header__hamburger-button {
  z-index: 5;
  position: fixed;
  top: calc(20 * (100vw / 375));
  right: calc(10 * (100vw / 375));
  bottom: auto;
  left: auto;
}

.hamburgerMenuIsOpened .header__hamburger-button-icon span {
  background-color: var(--white);
}

.hamburgerMenuIsOpened .header__hamburger-menu {
  right: 0;
}

.hamburgerMenuIsOpened .header__hamburger-menu__bg {
  visibility: visible;
  opacity: 1;
}

/* ハンバーガーメニュー 非表示時 */
.hamburgerMenuIsClosed .header__hamburger-button-icon span {
  background-color: var(--black);
}

.hamburgerMenuIsClosed .header__hamburger-menu {
  right: 100%;
}

/* ブランド毎のスタイル */
#Head.header--openType .header-item__icon-item--search-trigger {
  width: calc(32 *(100vw / 375));
  height: calc(32 *(100vw / 375));
}
#Head.header--openType .header-item__icon-item--search-trigger .img__wrapper {
  display: grid;
  place-items: center;
  padding: calc(6 *(100vw / 375));
  border-radius: calc(4 *(100vw / 375));
  transition: var(--transition-default);
  transition-property: background-color, opacity;
}
#Head.header--openType .header-item__icon-item--search-trigger .img__wrapper[aria-expanded="true"] {
  padding: calc(9 *(100vw / 375));
}
#Head.header--openType .header-item__icon-item--search-trigger .img__wrapper svg {
  width: 100%;
  height: 100%;
}
#Head.header--openType .header-item__icon-item--search-trigger .img__wrapper[aria-expanded="true"] {
  background-color: #f1f1f1;
}
#Head.header--openType .header-item__icon-item--search-trigger .img__wrapper .search-window-icon-close {
  display: none;
}
#Head.header--openType .header-item__icon-item--search-trigger .img__wrapper[aria-expanded="true"] .search-window-icon-search {
  display: none;
}
#Head.header--openType .header-item__icon-item--search-trigger .img__wrapper[aria-expanded="true"] .search-window-icon-close {
  display: inline;
}
#Head.header--openType .header-item__icon-item--search__window {
  overflow-y: auto;
  overscroll-behavior-y: contain;
  position: fixed;
  top: var(--headerTopHeight);
  left: 0;
  width: 100vw;
  height: calc(100dvh - var(--headerTopHeight));
  padding: calc(20 *(100vw / 375)) calc(10 *(100vw / 375)) calc(25 *(100vw / 375));
}
@supports not (height: 100dvh) {
  #Head.header--openType .header-item__icon-item--search__window {
    height: calc(100vh - var(--headerTopHeight));
  }
}

/* ▼ ----検索ウインドウ---- ▼ */
#Head.header--openType .search-window {}
#Head.header--openType .search-window__heading {
  margin-bottom: 20px;
  font-size: 15px;
  text-align: center;
  font-weight: 600;
}
#Head.header--openType .search-window__trend-keywords {
  padding: 13px 0;
}
#Head.header--openType .search-window__trend-keywords-heading {
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 300;
}
#Head.header--openType .search-window__close {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
  width: fit-content;
  margin: 23px auto 0;
  font-size: 15px;
}
#Head.header--openType .search-window__close svg {
  width: 16px;
  height: 16px;
}
/* ▲ ----検索ウインドウ---- ▲ */

#Head.header--JUNKOSHIMADA .header__hamburger-menu__list-item--title,
#Head.header--jsJUNKOSHIMADA .header__hamburger-menu__list-item--title {
  background-color: var(--black);
  color: var(--white);
}

#Head.header--JUNKOSHIMADA .header__hamburger-menu__list-item--mypage .img__wrapper svg path,
#Head.header--JUNKOSHIMADA .header__hamburger-menu__list-item--mypage .img__wrapper svg line,
#Head.header--jsJUNKOSHIMADA .header__hamburger-menu__list-item--mypage .img__wrapper svg path,
#Head.header--jsJUNKOSHIMADA .header__hamburger-menu__list-item--mypage .img__wrapper svg line {
  fill: var(--white);
}

#Head.header--JUNKOSHIMADA .header__hamburger-menu__list-item--recently svg circle,
#Head.header--jsJUNKOSHIMADA .header__hamburger-menu__list-item--recently svg circle {
  stroke: var(--white);
}

#Head.header--JUNKOSHIMADA .header__hamburger-menu__list-item--recently svg path,
#Head.header--jsJUNKOSHIMADA .header__hamburger-menu__list-item--recently svg path {
  fill: var(--white);
}

#Head.header--JUNKOSHIMADA .header__hamburger-menu__list-item--search .img__wrapper svg path,
#Head.header--JUNKOSHIMADA .header__hamburger-menu__list-item--search .img__wrapper svg line,
#Head.header--jsJUNKOSHIMADA .header__hamburger-menu__list-item--search .img__wrapper svg path,
#Head.header--jsJUNKOSHIMADA .header__hamburger-menu__list-item--search .img__wrapper svg line {
  fill: var(--white);
  stroke: var(--white);
}

#Head.header--JUNKOSHIMADA .header__hamburger-menu__list-item--contents .img__wrapper svg path,
#Head.header--JUNKOSHIMADA .header__hamburger-menu__list-item--contents .img__wrapper svg line,
#Head.header--jsJUNKOSHIMADA .header__hamburger-menu__list-item--contents .img__wrapper svg path,
#Head.header--jsJUNKOSHIMADA .header__hamburger-menu__list-item--contents .img__wrapper svg line {
  stroke: var(--white);
}

#Head.header--JUNKOSHIMADA .header__hamburger-menu__list-item--help .img__wrapper svg circle,
#Head.header--jsJUNKOSHIMADA .header__hamburger-menu__list-item--help .img__wrapper svg circle {
  stroke: var(--white);
}

#Head.header--JUNKOSHIMADA .header__hamburger-menu__list-item--help .img__wrapper svg path,
#Head.header--jsJUNKOSHIMADA .header__hamburger-menu__list-item--help .img__wrapper svg path {
  fill: var(--white);
}

#Head.header--JUNKOSHIMADA {
  border-bottom: none;
  background: var(--black);
}

#Head.header--JUNKOSHIMADA .header__brand-logo {
  width: calc(184 * (100vw / 375));
  height: calc(36 * (100vw / 375));
}

#Head.header--JUNKOSHIMADA .header__hamburger-button-icon span {
  background-color: var(--white);
}

#Head.header--JUNKOSHIMADA .header-item__icon {
  right: calc(16 * (100vw / 375));
  width: auto;
}

#Head.header--JUNKOSHIMADA .header-item__icon-item--cart svg {
  fill: var(--white);
}

#Head.header--JUNKOSHIMADA .header-item__icon-item--cart .incart-amount {
  color: var(--white);
}

#Head.header--JUNKOSHIMADA .header-item__icon-item--brand {
  display: none !important;
}

#Head.header--lesouk {
  border-bottom: none;
  background: var(--darkshamrock);
}

#Head.header--lesouk .header__hamburger-menu__list-item--title {
  background-color: var(--darkshamrock);
}

#Head.header--lesouk .header__brand-logo {
  width: calc(108 * (100vw / 375));
  height: calc(32 * (100vw / 375));
}

#Head.header--lesouk .header-item__icon {
  right: calc(16 * (100vw / 375));
  width: auto;
}

#Head.header--lesouk .header-item__icon-item--cart .incart-amount {
  color: var(--black);
}

#Head.header--lesouk .header-item__icon-item--brand {
  display: none !important;
}

#Head.header--rosemadame
  .header__hamburger-menu__list-item--help
  .header__hamburger-menu__list-item__child-list,
#Head.header--crossmarche
  .header__hamburger-menu__list-item--help
  .header__hamburger-menu__list-item__child-list {
  border-top: none;
}

#Head.header--rosemadame
  .header__hamburger-menu__list-item--search
  > .header__hamburger-menu__list-item__child-list
  > li:last-of-type
  a,
#Head.header--rosemadame
  .header__hamburger-menu__list-item--mypage
  .header__hamburger-menu__list-item--link,
#Head.header--crossmarche
  .header__hamburger-menu__list-item--search
  > .header__hamburger-menu__list-item__child-list
  > li:last-of-type
  a,
#Head.header--crossmarche
  .header__hamburger-menu__list-item--mypage
  .header__hamburger-menu__list-item--link {
  border-bottom: none;
}

#Head.header--rosemadame
  .header__hamburger-menu__list-item--search
  .header__hamburger-menu__list-item--link,
#Head.header--crossmarche
  .header__hamburger-menu__list-item--search
  .header__hamburger-menu__list-item--link {
  border-bottom: solid 1px var(--aria);
}

#Head.header--rosemadame .header__hamburger-menu__list-item--accordion__child-list,
#Head.header--crossmarche .header__hamburger-menu__list-item--accordion__child-list {
  background-color: var(--drwhite);
}

#Head.header--rosemadame {
  border-bottom: none;
  background: var(--mistyrose);
}

#Head.header--rosemadame .header__hamburger-menu__list-item--title {
  background-color: var(--mistyrose);
}

#Head.header--rosemadame .header__brand-logo {
  width: calc(103 * (100vw / 375));
}

#Head.header--rosemadame .header-item__icon {
  right: calc(16 * (100vw / 375));
  width: auto;
}

#Head.header--rosemadame .header-item__icon-item--cart .incart-amount {
  color: var(--incubation-red);
}

#Head.header--rosemadame .header-item__icon-item--brand {
  display: none !important;
}

#Head.header--crossmarche {
  border-bottom: none;
}

#Head.header--crossmarche .header__hamburger-menu__list-item--title {
  background-color: var(--angraecumorchid);
}

#Head.header--crossmarche .header__brand-logo {
  width: calc(140 * (100vw / 375));
  height: calc(23 * (100vw / 375));
}

#Head.header--pastelmask .header__brand-logo {
  width: calc(195 * (100vw / 375));
}

#Head.header--crossmarche .header__brand-logo img {
  width: 100%;
  height: auto;
}

#Head.header--crossmarche .header__brand-logo-img--pastelmask .img__wrapper {
  display: flex;
  align-items: center;
  transform: translateX(calc(10 * (100vw / 375)));
}

#Head.header--crossmarche .header__brand-logo-img--pastelmask svg {
  overflow: visible !important;
}

#Head.header--crossmarche .header-item__icon {
  right: calc(16 * (100vw / 375));
  width: auto;
}

#Head.header--crossmarche .header-item__icon-item--cart .incart-amount {
  color: var(--black);
}

#Head.header--crossmarche .header-item__icon-item--brand {
  display: none !important;
}

#Head.header--crossmarche .header-bottom__category-list {
  height: var(--headerBottomCategoryBarHeight);
  background-color: #edeae4;
}

#Head.header--crossmarche .header-bottom__category-list__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

#Head.header--crossmarche .header-bottom__category-list-item {
  flex: 0 0 auto;
  width: calc(100% / 5);
  height: 100%;
}

#Head.header--crossmarche .header-bottom__category-list-item:not(:first-of-type) {
  border-left: 1px solid var(--white);
}

#Head.header--crossmarche .header-bottom__category-list-item--current {
  background-color: #c5beaf;
}

#Head.header--crossmarche .header-bottom__category-text {
  display: grid;
  place-items: center;
  height: 100%;
  font-family: var(--hirakaku);
  font-size: calc(10 * (100vw / 375));
  color: var(--black);
  font-weight: 600;
  line-height: 1.1;
  opacity: 0.45;
}

#Head.header--crossmarche
  .header-bottom__category-list-item--current
  .header-bottom__category-text {
  opacity: 1;
}

/* ▼2022/10/13追加 総合トップとcrossmarcheトップに表示するナビ▼ */
.header-bottom__top-category-list{
  background-color: var(--white);
  height: var(--headerBottomLinkBarHeight);
}
.header-bottom__top-category-list ul{
  display: flex;
}
.header-bottom__top-category-list ul li{
  width: 50%;
  border-top: calc(6 * (100vw / 750)) solid var(--dhusar-grey);
  color: var(--dhusar-grey);
}
.header-bottom__top-category-list ul li.active{
  border-top: calc(6 * (100vw / 750)) solid var(--carbon);
  color: var(--carbon);
}
.header-bottom__top-category-list ul li a{
  cursor: pointer;
  column-gap: calc(25 * (100vw / 750));
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--quattrocento-sans);
  font-size: calc(36 * (100vw / 750));
  line-height: 1;
  padding: calc(19 * (100vw / 750));
  text-align: center;
}
.header-bottom__top-category-list ul li a .arrow{
  width: 2.1rem;
  height: 4rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20fill%3D%22%23333%22%20%20width%3D%226.489%22%20height%3D%2210%22%20viewBox%3D%220%200%206.489%2010%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_356%22%20data-name%3D%22%E3%83%91%E3%82%B9%20356%22%20d%3D%22M7%2C8.489l-5-5L3.489%2C2%2C7%2C5.511%2C10.511%2C2%2C12%2C3.489Z%22%20transform%3D%22translate(-2%2012)%20rotate(-90)%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.header-bottom__top-category-list ul li:not(.active) a .arrow{
  opacity: 0.3;
}
.header-bottom__top-category-list ul li a .text{
  transform: translateY(1px);
}
/* ▲2022/10/13追加 総合トップとcrossmarcheトップに表示するナビ▲ */


#Head.header--norc .header__brand-logo {
  width: calc(106 * (100vw / 375));
  height: calc(20 * (100vw / 375));
}

#Head.header--norc .header-item__icon {
  right: calc(16 * (100vw / 375));
  width: auto;
}

#Head.header--norc .header-item__icon-item--cart .incart-amount {
  color: var(--pastelbrown);
}

#Head.header--norc .header-item__icon-item--brand {
  display: none !important;
}

#Head.header--renorm {
  border-bottom: solid 1px var(--black);
}

#Head.header--renorm .header__brand-logo {
  width: calc(106 * (100vw / 375));
  height: calc(18 * (100vw / 375));
}

#Head.header--renorm .header-item__icon {
  right: calc(16 * (100vw / 375));
  width: auto;
}

#Head.header--renorm .header-item__icon-item--cart .incart-amount {
  color: var(--black);
}

#Head.header--renorm .header-item__icon-item--brand {
  display: none !important;
}

#Head.header--atsurotayama .header__brand-logo {
  width: calc(135 * (100vw / 375));
  height: calc(25 * (100vw / 375));
}

#Head.header--atsurotayama .header-item__icon {
  right: calc(16 * (100vw / 375));
  width: auto;
}

#Head.header--atsurotayama .header-item__icon-item--cart .incart-amount {
  color: var(--black);
}

#Head.header--atsurotayama .header-item__icon-item--brand {
  display: none !important;
}

/* 推部屋plus */
#Head.header--oheyaplus {
  border-bottom: none;
  background: var(--oheyaplus-pink);
}

#Head.header--oheyaplus .header__brand-logo {
  height: calc(38 * (100vw / 375));
  width: calc(124 * (100vw / 375));
}

#Head.header--oheyaplus .header-item__icon {
  right: calc(16 * (100vw / 375));
  width: auto;
}

#Head.header--oheyaplus .header-item__icon-item--cart .incart-amount {
  color: var(--black);
}

#Head.header--oheyaplus .header-item__icon-item--brand {
  display: none !important;
}

#Head.header--oheyaplus .header__hamburger-menu__list-item--title {
  background-color: var(--oheyaplus-pink);
}

#Head.header--oheyaplus .header-bottom__category-list {
  position: relative;
  height: var(--headerBottomCategoryBarHeight);
  background-color: var(--oheyaplus-pink);
}

#Head.header--oheyaplus .header-bottom__category-list__inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  height: 100%;
  padding-right: calc(10 * (100vw / 375));
  padding-left: calc(10 * (100vw / 375));
  overflow-x: scroll;
  word-break: keep-all;
}

#Head.header--oheyaplus .header-bottom__category-list-item {
  margin-right: calc(38 * (100vw / 375));
}

#Head.header--oheyaplus .header-bottom__category-list li:last-of-type {
  margin-right: 0;
}

#Head.header--oheyaplus .header-bottom__category-text {
  color: var(--black);
  font-family: var(--hirakaku);
  font-size: calc(11 * (100vw / 375));
  font-weight: 600;
  line-height: 1.8;
  white-space: nowrap;
}

.header__hamburger-menu__list-item--link .brandlogo--oheyaplus {
  width: calc(100 * (100vw / 375));
}

.header__hamburger-menu__list-item--link .brandlogo--oheyaplus svg {
  height: auto;
  width: 100%;
}

/* PIPING HOT */
#Head.header--pipinghot .header__inner {
  color: var(--pipinghot-black);
}
#Head.header--pipinghot .header__brand-logo {
  width: calc(54 * (100vw / 375));
  height: calc(41.72 * (100vw / 375));
}
#Head.header--pipinghot .header-item__icon {
  right: calc(16 * (100vw / 375));
  width: auto;
}
#Head.header--pipinghot .header__hamburger-menu__list-item--title {
  background-color: var(--pipinghot-black);
  color: var(--white);
}
#Head.header--pipinghot .header__hamburger-menu__list-item--mypage .img__wrapper svg path,
#Head.header--pipinghot .header__hamburger-menu__list-item--search .img__wrapper svg path,
#Head.header--pipinghot .header__hamburger-menu__list-item--contents .img__wrapper svg path,
#Head.header--pipinghot .header__hamburger-menu__list-item--help .img__wrapper svg path {
  fill: var(--white);
}
#Head.header--pipinghot .header__hamburger-menu__list-item--search .img__wrapper svg path,
#Head.header--pipinghot .header__hamburger-menu__list-item--help .img__wrapper svg circle {
  stroke: var(--white);
}

/* DERMASHARE */
#Head.header--dermashare .header__brand-logo {
  width: calc(142.35 * (100vw / 375));
  height: calc(31.58 * (100vw / 375));
}
#Head.header--dermashare .header-item__icon {
  right: calc(16 * (100vw / 375));
  width: auto;
}
#Head.header--dermashare .header-bottom__category-list {
  display: none;
  height: var(--headerBottomCategoryBarHeight);
}
#Head.header--dermashare .header-bottom__category-list__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
#Head.header--dermashare .header-bottom__category-text {
  font-family: var(--noto-sans);
  font-weight: var(--font-weight-medium);
}

/* ellips */
#Head.header--ellips .header__brand-logo {
  width: calc(67.93 * (100vw / 375));
  height: calc(34.54 * (100vw / 375));
}
#Head.header--ellips svg {
  overflow: visible;
}
#Head.header--ellips .header-item__icon {
  right: calc(16 * (100vw / 375));
  width: auto;
}
#Head.header--ellips .header-item__icon-item--cart .incart-amount {
  color: var(--black);
}

/* BEAUTY AVENUE */
#Head.header--beautyavenue .header__brand-logo {
  width: calc(60 * (100vw / 375));
  height: calc(44 * (100vw / 375));
}
#Head.header--beautyavenue svg {
  overflow: visible;
}
#Head.header--beautyavenue .header-item__icon {
  right: calc(16 * (100vw / 375));
  width: auto;
}
#Head.header--beautyavenue .header-item__icon-item--cart .incart-amount {
  color: var(--black);
}

/* ELLEgirl */
#Head.header--ellegirl .header__brand-logo {
  width: calc(106.23 * (100vw / 375));
  height: calc(26.58 * (100vw / 375));
}
#Head.header--ellegirl svg {
  overflow: visible;
}
#Head.header--ellegirl .header-item__icon {
  right: calc(16 * (100vw / 375));
  width: auto;
}

/* CROSS FUNCTION */
#Head.header--crossfunction .header__brand-logo {
  width: calc(50 * (100vw / 375));
  height: calc(36.13 * (100vw / 375));
}
#Head.header--crossfunction svg {
  overflow: visible;
}
#Head.header--crossfunction .header-item__icon {
  right: calc(16 * (100vw / 375));
  width: auto;
}

/* anyfee */
#Head.header--anyfee .header__brand-logo {
  width: calc(110 * (100vw / 375));
  height: calc(40 * (100vw / 375));
}
#Head.header--anyfee svg {
  overflow: visible;
}
#Head.header--anyfee .header-item__icon {
  right: calc(16 * (100vw / 375));
  width: auto;
}

/* DASHING DIVA */
#Head.header--dashingdiva .header__brand-logo {
  width: calc(148 * (100vw / 375));
  height: calc(24 * (100vw / 375));
}
#Head.header--dashingdiva svg {
  overflow: visible;
}
#Head.header--dashingdiva .header-item__icon {
  right: calc(16 * (100vw / 375));
  width: auto;
}

#Head.header--acdcph .header-item__icon-item--brand {
  display: none !important;
}
#Head.header--acdcph .header__brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}
#Head.header--acdcph .header__brand-logo--img {
  width: 100%;
}
#Head .header__brand-list--acdcphlh__list-item--join_park .img__wrapper svg {
  display: block;
  width: auto;
  height: 100%;
}

#Head.header--acdcph .header__brand-logo-list {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(259 * (100vw / 375));
  height: calc(29 * (100vw / 375));
  margin: auto;
}

#Head.header--acdcph .header__brand-logo-list-item {
  display: flex;
  align-items: center;
  height: 100%;
}

#Head.header--acdcph .header__brand-logo-list-item svg {
  overflow: visible;
}
#Head.header--alphacubic .header__brand-logo--img svg path {
  fill: var(--black);
}
#Head.header--decoy .header__brand-logo--img svg path {
  fill: var(--upmaroon);
}
#Head.header--petithonfleur .header__brand-logo--img svg path {
  fill: var(--bonebrown);
}
#Head.header--lesoukholiday .header__brand-logo--img svg path {
  fill: var(--black);
}

.header--lesouk .header__inner {
  background-color: var(--darkshamrock);
}
.header__brand-list--acdcphlh {
  position: relative;
  width: 100%;
  height: var(--headerBottomBrandBarHeight);
  background-color: var(--white);
  border-bottom: solid 1px var(--aria);
}
.header__brand-list--acdcphlh-all .header__brand-list--acdcphlh__list-item--alphacubic svg path {
  fill: var(--black);
}
.header__brand-list--acdcphlh-all .header__brand-list--acdcphlh__list-item--decoy svg path {
  fill: var(--upmaroon);
}
.header__brand-list--acdcphlh-all .header__brand-list--acdcphlh__list-item--petithonfleur svg path {
  fill: var(--bonebrown);
}
.header__brand-list--acdcphlh-all .header__brand-list--acdcphlh__list-item--lesoukholiday svg path {
  fill: var(--black);
}
.header__brand-list--acdcphlh__list {
  display: flex;
  align-items: center;
  /* justify-content: space-evenly; */
  height: 100%;
}
.header__brand-list--acdcphlh__list-item svg {
  overflow: visible;
  width: 100%;
  height: auto;
}
.header__brand-list--acdcphlh__list-item .img__wrapper {
  display: block;
  box-sizing: content-box;
}

@media screen and (max-width: 767px) {
  #Head.header--alphacubic .header__brand-logo {
    width: calc(110 * (100vw / 375));
  }
  #Head.header--decoy .header__brand-logo {
    width: calc(106 * (100vw / 375));
  }
  #Head.header--petithonfleur .header__brand-logo {
    width: calc(100 * (100vw / 375));
  }
  #Head.header--onestrue .header__brand-logo {
    width: calc(190 * (100vw / 375));
  }
  #Head.header--join_park .header__brand-logo {
    width: calc(36 * (100vw / 375));
  }

  #Head .header__brand-list--acdcphlh__list li:not(:last-of-type) {
    border-right: solid 1px var(--dhusar-grey);
  }
  #Head .header__brand-list--acdcphlh__list-item {
    flex-grow: 1;
    height: calc(30 * (100vw / 375));
  }
  #Head .header__brand-list--acdcphlh__list-item .img__wrapper {
    padding: 0 calc(8 * (100vw / 375));
  }
  #Head .header__brand-list--acdcphlh__list-item--join_park .img__wrapper {
    padding: 0 calc(22 * (100vw / 375));
  }
  #Head .header__brand-list--acdcphlh__list-item--alphacubic .img__wrapper {
    width: calc(66 * (100vw / 375));
  }
  #Head .header__brand-list--acdcphlh__list-item--decoy .img__wrapper {
    width: calc(66 * (100vw / 375));
  }
  #Head .header__brand-list--acdcphlh__list-item--petithonfleur .img__wrapper {
    width: calc(62 * (100vw / 375));
  }
  #Head .header__brand-list--acdcphlh__list-item--lesoukholiday .img__wrapper {
    width: calc(66 * (100vw / 375));
  }
  #Head .header__brand-list--acdcphlh__list-item--onestrue .img__wrapper {
    width: calc(74 * (100vw / 375));
  }
  #Head .header__brand-list--acdcphlh__list-item--join_park .img__wrapper {
    height: calc(30 * (100vw / 375));
  }

  #Head .header__brand-list--acdcphlh-all .header__brand-list--acdcphlh__list-item .img__wrapper {
    padding-right: calc(15 * (100vw / 375));
    padding-left: calc(15 * (100vw / 375));
  }
  #Head
    .header__brand-list--acdcphlh-all
    .header__brand-list--acdcphlh__list-item--alphacubic
    .img__wrapper {
    width: calc(75 * (100vw / 375));
  }
  #Head
    .header__brand-list--acdcphlh-all
    .header__brand-list--acdcphlh__list-item--decoy
    .img__wrapper {
    width: calc(55 * (100vw / 375));
  }
  #Head
    .header__brand-list--acdcphlh-all
    .header__brand-list--acdcphlh__list-item--petithonfleur
    .img__wrapper {
    width: calc(55 * (100vw / 375));
  }
  #Head
    .header__brand-list--acdcphlh-all
    .header__brand-list--acdcphlh__list-item--lesoukholiday
    .img__wrapper {
    width: calc(62 * (100vw / 375));
  }

  #Head .header__brand-list__open-trigger {
    width: calc(100 * (100vw / 375));
    padding-top: calc(6 * (100vw / 375));
    padding-bottom: calc(6 * (100vw / 375));
    border-radius: 0 0 calc(4 * (100vw / 375)) calc(4 * (100vw / 375));
    border-width: 1px;
    top: -2px;
  }
}

@media screen and (min-width: 768px) and (max-width: 979px) {
  #Head.header--alphacubic .header__brand-logo {
    width: calc(110 * (100vw / 768));
  }
  #Head.header--decoy .header__brand-logo {
    width: calc(106 * (100vw / 768));
  }
  #Head.header--petithonfleur .header__brand-logo {
    width: calc(100 * (100vw / 768));
  }
  #Head.header--onestrue .header__brand-logo {
    width: calc(190 * (100vw / 768));
  }

  #Head .header__brand-list--acdcphlh__list-item {
    height: calc(30 * (100vw / 768));
  }
  #Head .header__brand-list--acdcphlh__list-item .img__wrapper {
    padding: 0 calc(8 * (100vw / 768));
  }
  #Head .header__brand-list--acdcphlh__list-item--join_park .img__wrapper {
    padding: 0 calc(22 * (100vw / 768));
  }
  #Head .header__brand-list--acdcphlh__list-item--alphacubic .img__wrapper {
    width: calc(66 * (100vw / 768));
  }
  #Head .header__brand-list--acdcphlh__list-item--decoy .img__wrapper {
    width: calc(66 * (100vw / 768));
  }
  #Head .header__brand-list--acdcphlh__list-item--petithonfleur .img__wrapper {
    width: calc(62 * (100vw / 768));
  }
  #Head .header__brand-list--acdcphlh__list-item--lesoukholiday .img__wrapper {
    width: calc(66 * (100vw / 768));
  }
  #Head .header__brand-list--acdcphlh__list-item--onestrue .img__wrapper {
    width: calc(74 * (100vw / 768));
  }
  #Head .header__brand-list--acdcphlh__list-item--join_park .img__wrapper {
    height: 100%;
  }

  #Head .header__brand-list__open-trigger {
    width: calc(100 * (100vw / 768));
    padding-top: calc(6 * (100vw / 768));
    padding-bottom: calc(6 * (100vw / 768));
    border-radius: 0 0 calc(4 * (100vw / 768)) calc(4 * (100vw / 768));
    border-width: 1px;
    top: -2px;
  }
}

@media screen and (max-width: 979px) {
  #Head.header--acdcph .header__inner,
  #Head.header--acdcphlh .header__inner {
    background-color: var(--white);
    border-bottom: solid 1px var(--aria);
  }
  #Head .header__brand-list--acdcphlh,
  #Head .header__brand-list--acdcphlh-all {
    overflow-x: auto;
    overscroll-behavior-x: contain;
    position: relative;
    width: 100%;
    background-color: var(--white);
    border-bottom: solid 1px var(--aria);
    opacity: 1;
    visibility: visible;
    transition: height 500ms ease, opacity 250ms ease, visibility 250ms ease;
    z-index: -1;
  }
  html[data-headerstate='shrinked'] #Head .header__brand-list--acdcphlh,
  html[data-headerstate='shrinked'] #Head .header__brand-list--acdcphlh-all {
    height: 0px;
    opacity: 0;
    visibility: hidden;
  }
  #Head .header__brand-list--acdcphlh__list-item {
    display: grid;
    place-items: center;
  }

  #Head.header--lesouk .header__brand-list__open-trigger {
    background-color: var(--darkshamrock);
    border: none;
  }
  #Head .header__brand-list__open-trigger {
    position: relative;
    display: flex !important;
    justify-content: center;
    margin: auto;
    background-color: var(--white);
    border-color: var(--aria);
    border-style: solid;
    border-top: solid 1px var(--white);
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform 250ms ease-in-out, visibility 0ms;
  }
  html[data-headerstate='shrinked'] #Head .header__brand-list__open-trigger {
    transform: translateY(0);
    visibility: visible;
    z-index: 1;
    transition: transform 250ms 600ms ease-out, visibility 0ms 300ms, z-index 0ms 750ms;
  }
  html[data-headerstate='expanded'] #Head .header__brand-list__open-trigger {
    z-index: -2;
  }
}

/* ===============================================
  * フッター *
=============================================== */
#Foot {
  -webkit-font-feature-settings: normal;
  width: 100%;
  background-color: var(--black);
  color: var(--dhusar-grey);
  font-family: var(--open-sans);
  font-feature-settings: normal;
  font-weight: 400;
}

.footer__inner {
  padding-top: calc(33 * (100vw / 375));
  padding-bottom: calc(40 * (100vw / 375));
}

.footer__inner__content-container {
  padding-top: calc(30 * (100vw / 375));
  padding-right: calc(10 * (100vw / 375));
  padding-left: calc(10 * (100vw / 375));
}

.footer__description-text {
  padding-top: calc(26 * (100vw / 375));
  padding-right: calc(18 * (100vw / 375));
  padding-left: calc(18 * (100vw / 375));
  font-size: calc(11 * (100vw / 375));
  letter-spacing: 0.03em;
  line-height: 1.8;
  word-break: break-all;
}
.footer__description-text--brand {
  display: block;
  margin-bottom: calc(4 * (100vw / 375));
  font-weight: 600;
  text-align: center;
}

.footer-content a {
  color: var(--dhusar-grey);
}

.footer-content__title-text {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: calc(54 * (100vw / 375));
  margin-top: -1px;
  padding-right: calc(5 * (100vw / 375));
  padding-left: calc(5 * (100vw / 375));
  border-top: solid 1px var(--shadow-mountain);
  border-bottom: solid 1px var(--shadow-mountain);
  font-family: var(--hirakaku);
  font-size: calc(14 * (100vw / 375));
  font-weight: 300;
}

.footer-content__title-text .accordion-icon {
  display: block;
  position: relative;
  width: 13px;
  height: 13px;
}

.footer-content__title-text .accordion-icon::before,
.footer-content__title-text .accordion-icon::after {
  -webkit-transition: all 0.6s;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  margin: auto;
  background-color: var(--dhusar-grey);
  content: '';
  transition: all 0.6s;
}

.footer-content__title-text .accordion-icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.footer-content__title-text .accordion-icon.isActive::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.footer-content__list {
  display: none;
}

.footer-content__list.hidden-desktop--custom {
  display: none;
}

.footer-content__list.visible-desktop--custom {
  display: none;
}

.footer-content__list-item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  height: calc(54 * (100vw / 375));
  margin-top: -1px;
  font-family: var(--hirakaku);
  font-size: calc(14 * (100vw / 375));
  font-weight: 300;
}

.footer-content__list-item.visible-desktop {
  display: none;
}

.footer-content__list-item__link-text {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.footer-content__list--child .footer-content__title-text {
  font-size: calc(12 * (100vw / 375));
}

.footer-content__list--child a:last-of-type {
  border-bottom: none;
}

.footer-content__list a:hover {
  color: var(--dhusar-grey);
}

.footer-content--sns {
  padding-top: calc(30 * (100vw / 375));
}

.footer-content--sns__list {
  width: calc(350 * (100vw / 375));
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: calc(30 * (100vw/375));
  margin-right: auto;
  margin-left: auto;
}

.footer-content--sns__list-item .img__wrapper {
  width: calc(24 * (100vw / 375));
  height: calc(24 * (100vw / 375));
}

.footer-content--sns__list-item--twitter .img__wrapper {
  width: calc(24 * (100vw / 375));
  height: calc(20 * (100vw / 375));
}

.footer-content--magazine__button,
.footer-content--app__button {
  display: block;
  position: relative;
  width: calc(345 * (100vw / 375));
  height: calc(111 * (100vw / 375));
  margin-top: calc(32 * (100vw / 375));
  margin-right: auto;
  margin-left: auto;
  padding-top: calc(50 * (100vw / 375));
  border: solid 1px var(--dhusar-grey);
  color: var(--dhusar-grey);
  font-size: calc(12 * (100vw / 375));
  font-weight: 400;
  text-align: center;
}
.footer-content--app__button {
  height: calc(129 * (100vw / 375));
  padding-top: calc(66 * (100vw / 375));
}

.footer-content--magazine__button::before {
  position: absolute;
  top: calc(20 * (100vw / 375));
  right: 0;
  left: 0;
  width: calc(25 * (100vw / 375));
  height: calc(18 * (100vw / 375));
  margin: auto;
  background-image: url('../Contents/ImagesPkg/common/mail_icon_grey.svg');
  background-repeat: no-repeat;
  background-size: 100%;
  content: '';
}

.footer-content--app__button::before {
  position: absolute;
  top: calc(20 * (100vw / 375));
  right: 0;
  left: 0;
  width: calc(36 * (100vw / 375));
  height: calc(36 * (100vw / 375));
  margin: auto;
  background-image: url(../Contents/ImagesPkg/common/app_icon.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  content: '';
}
.footer-content--magazine__button {
  margin-top: calc(19 * (100vw / 375));
}

.footer-content--magazine--title,
.footer-content--app--title {
  display: block;
  margin-bottom: calc(8 * (100vw / 375));
  font-size: calc(16 * (100vw / 375));
  font-weight: 500;
  line-height: 1.125;
}
.footer-content--app--title {
  font-family: var(--quattrocento-sans);
  font-size: calc(19 * (100vw / 375));
}
.footer-content--app--title .middle {
  font-size: calc(16 * (100vw / 375));
  font-weight: bold;
  margin-left: calc(5 * (100vw / 375));
}

.footer-content--customer-support {
  position: relative;
  margin-top: calc(30 * (100vw / 375));
  padding-top: calc(39 * (100vw / 375));
  text-align: center;
}

.footer-content--customer-support::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: calc(26 * (100vw / 375));
  height: calc(25 * (100vw / 375));
  margin: auto;
  background-image: url('../Contents/ImagesPkg/common/support_icon_grey.svg');
  background-repeat: no-repeat;
  background-size: 100%;
  content: '';
}

.footer-content--customer-support__text {
  display: block;
  font-family: var(--quattrocento-sans);
  font-size: calc(13 * (100vw / 375));
  font-weight: bold;
  line-height: 1.5;
}

.footer-content--customer-support__text--tell {
  font-size: calc(36 * (100vw / 375));
}

.footer-content--customer-support__link-text {
  display: block;
  margin-top: calc(20 * (100vw / 375));
  font-family: var(--hirakaku);
  font-size: calc(12 * (100vw / 375));
  font-weight: 700;
  line-height: 1.5;
  text-decoration: underline;
}

/* 20211008 フッター改修 */

.footer-content__list_cat_wrap {
  width: 39.2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  column-gap: 3rem;
  margin: auto;
}
.footer-content__list.visible-desktop--custom {
  width: 15rem;
}
.footer-content__list-item dl {
  margin-bottom: 0; /* Bootstrap回避 */
}
.footer-content__list-item dt {
  cursor: pointer;
  display: block;
  font-weight: normal;
}
.footer-content__list-item.haschild dt {
  position: relative;
}
.footer-content__list-item.haschild dt::before {
  width: 1rem;
  height: 0.2rem;
  background-color: var(--dhusar-grey);
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.footer-content__list-item.haschild dt::after {
  width: 1rem;
  height: 0.2rem;
  background-color: var(--dhusar-grey);
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotateZ(90deg);
  transition: 0.5s;
  right: 0;
}
.footer-content__list-item.haschild dt.open::after {
  transform: translateY(-50%) rotateZ(0);
}
.footer-content__list-item dd {
  display: none;
  margin-top: 0.8rem;
  margin-bottom: 1.24rem;
  margin-left: 0; /* Bootstrap回避 */
}
.footer-content__child_wrap {
  font-size: 1.1rem;
}

.footer-copyright {
  margin-top: calc(30 * (100vw / 375));
  text-align: center;
}

.footer-copyright__text {
  font-family: var(--quattrocento-sans);
  font-size: calc(13 * (100vw / 375));
  font-weight: bold;
}

.footer__pagetop-button {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-transition: -webkit-transform 0.5s;
  -webkit-transform: translateY(calc(110 * (100vw / 375)));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 99;
  position: fixed;
  right: calc(10 * (100vw / 375));
  bottom: calc(40 * (100vw / 375));
  align-items: center;
  justify-content: center;
  width: calc(60 * (100vw / 375));
  height: calc(60 * (100vw / 375));
  transform: translateY(calc(110 * (100vw / 375)));
  border-radius: calc(5 * (100vw / 375));
  background-color: var(--aria);
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.footer__pagetop-button svg {
  width: calc(13 * (100vw / 375));
  height: calc(13 * (100vw / 375));
}

.footer__pagetop-button.isVisible {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* ===============================================
  * ページャー *
=============================================== */
#pagination {
  margin: 0;
  text-align: center;
}

#pagination.paginationTOP {
  width: 100%;
}

#pagination.paginationTOP .item_count {
  padding: 0 !important;
  font-family: var(--quattrocento-sans);
  font-size: calc(13 * (100vw / 375));
  letter-spacing: 0;
  line-height: 1;
  text-align: left;
}

#pagination.paginationTOP .item_count span {
  display: inline-block;
  font-family: var(--hirakaku);
  font-size: calc(13 * (100vw / 375));
}

#pagination.paginationTOP .item_count span:first-of-type {
  margin-right: calc(14 * (100vw / 375));
}

#pagination.paginationTOP .item_count span *:last-of-type {
  margin-left: 0;
}

#pagination.paginationTOP .paging {
  display: none;
}

#pagination.paginationBottom .item_count {
  display: none;
}

#pagination.paginationBottom .paging {
  display: inline-block;
  position: relative;
}

#pagination.paginationBottom .paging__list-wrap {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
}

#pagination.paginationBottom .paging__list a {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-transition-property: all;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(36 * (100vw / 375));
  height: calc(36 * (100vw / 375));
  margin: 0 5px;
  border: 1px solid var(--aria);
  color: var(--black);
  font-family: var(--quattrocento-sans);
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0;
  transition-property: all;
}

#pagination.paginationBottom .paging__list-wrap.change-color a {
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-in;
  transition-duration: 0.3s;
  transition-timing-function: ease-in;
}

#pagination.paginationBottom .paging__list-wrap.change-color a:hover {
  border-radius: 50%;
  border-color: var(--black);
  background-color: var(--black);
  color: var(--white);
}

#pagination.paginationBottom .paging__list-wrap.scale-txt a {
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

#pagination.paginationBottom .paging__list-wrap.scale-txt a:hover {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
  border-radius: 50%;
}

#pagination.paginationBottom .paging__list.active {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(36 * (100vw / 375));
  height: calc(36 * (100vw / 375));
  margin: 0 5px;
  font-family: var(--quattrocento-sans);
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0;
}

#pagination.paginationBottom .paging__list__separator {
  width: calc(36 * (100vw / 375));
  margin: 0 5px;
}

#pagination.paginationBottom .paging .prev a::after,
#pagination.paginationBottom .paging .next a::after {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 11.6px;
  height: 21.6px;
  margin: auto;
  background-repeat: no-repeat;
  background-size: 100%;
  content: '';
}

#pagination.paginationBottom .paging .prev a::after {
  left: -31.5px;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2211.597%22%20height%3D%2221.597%22%20viewBox%3D%220%200%2011.597%2021.597%22%3E%20%3Cg%20id%3D%22%E3%82%B3%E3%83%B3%E3%83%9D%E3%83%BC%E3%83%8D%E3%83%B3%E3%83%88_5_55%22%20data-name%3D%22%E3%82%B3%E3%83%B3%E3%83%9D%E3%83%BC%E3%83%8D%E3%83%B3%E3%83%88%205%20%E2%80%93%2055%22%20transform%3D%22translate(11.597%2021.597)%20rotate(180)%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_135%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%20135%22%20width%3D%2215%22%20height%3D%221.4%22%20transform%3D%22translate(0.99)%20rotate(45)%22%2F%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_136%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%20136%22%20width%3D%2215%22%20height%3D%221.4%22%20transform%3D%22translate(0%2020.607)%20rotate(-45)%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E');
}

#pagination.paginationBottom .paging .next a::after {
  right: -31.5px;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22%E3%82%B3%E3%83%B3%E3%83%9D%E3%83%BC%E3%83%8D%E3%83%B3%E3%83%88_5_51%22%20data-name%3D%22%E3%82%B3%E3%83%B3%E3%83%9D%E3%83%BC%E3%83%8D%E3%83%B3%E3%83%88%205%20%E2%80%93%2051%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2211.597%22%20height%3D%2221.597%22%20viewBox%3D%220%200%2011.597%2021.597%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_135%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%20135%22%20width%3D%2215%22%20height%3D%221.4%22%20transform%3D%22translate(0.99)%20rotate(45)%22%2F%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_136%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%20136%22%20width%3D%2215%22%20height%3D%221.4%22%20transform%3D%22translate(0%2020.607)%20rotate(-45)%22%2F%3E%3C%2Fsvg%3E');
}

/* ===============================================
  * クローズ型TOP で表示するブランド表示エリア *
=============================================== */
.contents-top__brand-list {
  height: calc(50 * (100vw / 375));
  border-bottom: solid 1px var(--aria);
  overflow: hidden;
}

.contents-top__brand-list__inner {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.contents-top__brand-list-item {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33.3%;
}

.contents-top__brand-list-item--center {
  border-right: solid 1px var(--dhusar-grey);
  border-left: solid 1px var(--dhusar-grey);
}

.contents-top__brand-list-item svg {
  overflow: visible;
}

.contents-top__brand-list-item--alphacubic svg {
  width: calc(84 * (100vw / 375));
  height: calc(21 * (100vw / 375));
}

.contents-top__brand-list-item--alphacubic.contents-top__brand-list-item--current svg path {
  fill: var(--black);
}

.contents-top__brand-list-item--decoy svg {
  width: calc(80 * (100vw / 375));
  height: calc(24 * (100vw / 375));
}

.contents-top__brand-list-item--decoy.contents-top__brand-list-item--current svg path {
  fill: var(--upmaroon);
}

.contents-top__brand-list-item--petithonfleur svg {
  width: calc(76 * (100vw / 375));
  height: calc(30 * (100vw / 375));
}

.contents-top__brand-list-item--petithonfleur.contents-top__brand-list-item--current svg path {
  fill: var(--bonebrown);
}

.contents-top__brand-list-item--ecrire svg {
  width: calc(95 * (100vw / 375));
  height: calc(27 * (100vw / 375));
}

.contents-top__brand-list-item--pastelmask svg {
  width: calc(160 *(100vw / 375));
  height: auto;
}

.contents-top__brand-list-item--crossfunction svg {
  width: calc(44 *(100vw / 375));
  height: auto;
}

.contents-top__brand-list-item--kangolsport svg {
  width: calc(124 * (100vw / 375));
  height: auto;
}

.contents-top__brand-list-item--head svg {
  width: calc(110 * (100vw / 375));
  height: auto;
}

.contents-top__brand-list-item--lafuku svg {
  width: calc(60 * (100vw / 375));
  height: auto;
}

.contents-top__brand-list-item--musee svg {
  width: calc(100 * (100vw / 375));
  height: auto;
}

.contents-top__brand-list-item--hatmikke svg {
  width: calc(50 * (100vw / 375));
  height: auto;
}

.contents-top__brand-list-item--anyfee svg {
  width: calc(80 * (100vw / 375));
  height: auto;
}

.contents-top__brand-list-item--hanari svg {
  width: calc(26 * (100vw / 375));
  height: auto;
}

.contents-top__brand-list-item--chara_station svg {
  width: calc(130 * (100vw / 375));
  height: auto;
}

.contents-top__brand-list-item--join_park svg {
  width: calc(34 * (100vw / 375));
  height: auto;
}

.contents-top__brand-list-item--onkatsuryoukatsu svg {
  width: calc(150 * (100vw / 375));
  height: auto;
}

/* ===============================================
  * 商品一覧 で表示するブランド看板バナーエリア *
=============================================== */
.contents-top__slide-banner {
  width: 100vw;
  margin-top: calc(15 *(100vw / 375));
}

.contents-top__slider {
  opacity: 0;
  transition: opacity var(--transition-default);
}

.contents-top__slider.slick-initialized {
  opacity: 1;
}

.contents-top__slide {
  width: 100vw;
}

.contents-top__slide a {
  display: block;
}

.contents-top__slide img {
  width: 100%;
  height: auto;
}

/* ===============================================
  * 商品一覧 で表示するブランド看板バナー下フリーエリア *
=============================================== */
.contents-top__free-area {
  
}

/* chara station - キャラクターから探す */
.search-charactor {
  padding: calc(20 * (100vw / 375)) 0;
  background-color: var(--white-solid);
}
.search-charactor__inner {
  padding: 0 calc(10 * (100vw / 375));
}
.search-charactor__inner h2 {
  margin-bottom: calc(15 * (100vw / 375));
  font-size: calc(18 * (100vw / 375));
  font-weight: var(--font-weight-semibold);
  line-height: 1.7;
}
.search-charactor__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: calc(11 * (100vw / 375)) calc(10 * (100vw / 375));
}
.search-charactor__list li {

}
.search-charactor__list a {
  display: block;
}
.search-charactor__list img {
  width: 100%;
  height: auto;
}

/* サマリーテキスト------------------------------------ */
.summaryText__inner {
  padding-top: calc(33 * (100vw / 375));
}
.summaryText__logo {
  width: calc(156 * (100vw / 375));
  display: block;
  margin: 0 auto;
}
.summaryText__description-text {
  padding-top: calc(30 * (100vw / 375));
  padding-right: calc(18 * (100vw / 375));
  padding-left: calc(18 * (100vw / 375));
  font-size: calc(11 * (100vw / 375));
  letter-spacing: 0.03em;
  line-height: 1.8;
}

@media only screen and (max-width: 767px) {
  /* AC・DC・PH用スタイル */
  #Head.header--acdcph .header-item__icon {
    right: calc(16 * (100vw / 375));
    width: auto;
  }
}

@media only screen and (min-width: 768px) {
  /* ===========================
    * Style of Tablet-view *
  =========================== */
  /* 帯バナー */
  .header__obi .header__obi-slide {
    width: 100%;
    background-position: center;
    background-repeat: repeat-x;
    background-size: contain;
  }
  .header__obi .header__obi-slide:has(a):hover {
    opacity: .7;
  }
  .header__obi .header__obi-inner img {
    display: none;
  }

  .header__hamburger-button {
    left: calc(17 * (100vw / 768));
  }
  .header__brand-logo {
    width: calc(136 * (100vw / 768));
    height: calc(30 * (100vw / 768));
  }
  .header-item__icon {
    right: calc(8 * (100vw / 768));
    width: calc(77 * (100vw / 768));
    /* height: calc(24 * (100vw / 768)); */
  }
  .header-item__icon-item--search-trigger {
  }
  .header-item__icon-item--search__window {
    overflow: hidden;
    background: var(--white);
    border: solid 1px var(--aria);
    border-top: 0;
    border-radius: 0 0 6px 6px;
  }
  .header-item__icon-item--cart {
    width: calc(29 * (100vw / 768));
    height: calc(24 * (100vw / 768));
  }
  .header-item__icon-item--cart .incart-amount {
    padding-left: calc(3 * (100vw / 768));
    font-size: calc(12 * (100vw / 768));
  }
  .header-item__icon-item--brand__button {
    font-size: calc(11 * (100vw / 768));
  }
  .header-item__icon-item--brand__button::after {
    bottom: calc(-10 * (100vw / 768));
    width: calc(7 * (100vw / 768));
    height: calc(5 * (100vw / 768));
  }
  .header__hamburger-menu__inner {
    width: calc(335 * (100vw / 768));
    padding-bottom: calc(35 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--title {
    height: calc(40 * (100vw / 768));
    font-size: calc(12 * (100vw / 768));
    word-break: keep-all;
  }
  .header__hamburger-menu__list-item--title .img__wrapper {
    margin-right: calc(10 * (100vw / 768));
    margin-left: calc(10 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--link {
    height: calc(45 * (100vw / 768));
    padding-left: calc(10 * (100vw / 768));
    font-size: calc(15 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--mypage
    .header__hamburger-menu__list-item--title
    .img__wrapper {
    width: calc(22 * (100vw / 768));
    height: calc(22 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--recently
    .header__hamburger-menu__list-item--title
    .img__wrapper {
    width: calc(22 * (100vw / 768));
    height: calc(22 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--recently .productHistory__itemArea {
    margin-top: calc(16 * (100vw / 768));
    padding-right: calc(10 * (100vw / 768));
    padding-left: calc(10 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--recently .productHistory__itemArea li {
    width: calc(59 * (100vw / 768));
    height: calc(70 * (100vw / 768));
    margin-right: calc(5 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--recently__viewall-link {
    width: calc(76 * (100vw / 768));
    margin-top: calc(8 * (100vw / 768));
    margin-right: calc(10 * (100vw / 768));
    margin-bottom: calc(10 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--recently__viewall-link-text {
    font-size: calc(12 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--search
    .header__hamburger-menu__list-item--title
    .img__wrapper {
    width: calc(18 * (100vw / 768));
    height: calc(18 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--search .search-window__search-box {
    --searchBox-w: calc(315 *(100vw / 768));
    margin: calc(10 *(100vw / 768)) auto;
  }

  .header__hamburger-menu__list-item--search .search-window__trend-keywords {
    margin: 0 calc(10 *(100vw / 768));
  }
  .header__hamburger-menu__list-item--search__inputbox {
    width: calc(315 * (100vw / 768));
    height: calc(40 * (100vw / 768));
    margin-top: calc(15 * (100vw / 768));
    margin-bottom: calc(15 * (100vw / 768));
    padding-right: calc(44 * (100vw / 768));
    padding-left: calc(15 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--search__inputbox input::-webkit-input-placeholder {
    font-size: calc(14 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--search__inputbox input::-moz-placeholder {
    font-size: calc(14 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--search__inputbox input:-ms-input-placeholder {
    font-size: calc(14 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--search__inputbox input::-ms-input-placeholder {
    font-size: calc(14 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--search__inputbox input::placeholder {
    font-size: calc(14 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--search__inputbox::after {
    right: calc(43 * (100vw / 768));
    height: calc(16 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--search .search-section__inputbox-button {
    right: calc(15 * (100vw / 768));
    width: calc(17 * (100vw / 768));
    height: calc(17 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--accordion .accordion-icon {
    right: calc(15 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--accordion__child-list {
    font-size: calc(15 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--accordion__child-list--2
    .header__hamburger-menu__list-item--link {
    padding-left: calc(20 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--accordion__child-list--brand
    .header__hamburger-menu__list-item--link {
    height: calc(73 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--accordion__child-list--brand .brandimg {
    width: calc(100 * (100vw / 768));
    margin-right: calc(20 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--norc {
    width: calc(71 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--norcbytheline {
    width: calc(71 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--norcanthem {
    width: calc(71 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--norchonzawa {
    width: calc(70 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--renorm {
    width: calc(82 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--lesoukholiday {
    width: calc(82 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--alphacubic {
    width: calc(96 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--decoy {
    width: calc(81 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--petithonfleur {
    width: calc(94 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--junkoshimada {
    width: calc(91 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--junko-shimada {
    width: calc(100 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--junko-49av {
    width: calc(30 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--jsbanana {
    width: calc(16 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--atsurotayama {
    width: calc(138 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--atsuro-tayama {
    width: calc(80 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--atsuro-ats {
    width: calc(40 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--kangol {
    width: calc(82 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--bizcos {
    width: calc(60 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--head {
    width: calc(92 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--rosemadame {
    width: calc(72 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--accordion__child-list--brand .brandlogo--crossmarche {
    width: calc(99 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--help .header__hamburger-menu__list-item--title .img__wrapper {
    width: calc(22 * (100vw / 768));
    height: calc(22 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--contents .img__wrapper {
    width: calc(16 * (100vw / 768));
    height: calc(20 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--sns-magazine {
    margin-top: calc(30 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--sns__list {
    width: calc(236 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--sns__list-item .img__wrapper {
    width: calc(27 * (100vw / 768));
    height: calc(27 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--sns__list-item--twitter .img__wrapper {
    width: calc(28 * (100vw / 768));
    height: calc(22 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--magazine__button {
    width: calc(280 * (100vw / 768));
    height: calc(111 * (100vw / 768));
    margin-top: calc(25 * (100vw / 768));
    padding-top: calc(50 * (100vw / 768));
    font-size: calc(10 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--magazine__button::before {
    top: calc(20 * (100vw / 768));
    width: calc(25 * (100vw / 768));
    height: calc(18 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--magazine--title {
    margin-bottom: calc(10 * (100vw / 768));
    font-size: calc(16 * (100vw / 768));
  }
  .header__brand-list--tile {
    height: auto;
    background: transparent;
  }
  .header__brand-list--tile .cardUnit {
    height: auto;
    margin-bottom: 0;
  }
  .header__brand-list--tile .cardUnit__card {
    width: calc(100% / 5);
    max-width: initial;
  }
  /* ハンバーガーメニュー 表示時 */
  .hamburgerMenuIsOpened .header__hamburger-button {
    top: calc(30 * (100vw / 768));
    right: calc(30 * (100vw / 768));
  }
  /* ブランド毎のスタイル */
  /* ▼2022/10/13追加 総合トップとcrossmarcheトップに表示するナビ▼ */
  .header-bottom__top-category-list ul{
    width: 86.6rem;
    margin: auto;
  }
  .header-bottom__top-category-list ul li{
    border-top: 0.3rem solid var(--dhusar-grey);
  }
  .header-bottom__top-category-list ul li.active{
    border-top: 0.3rem solid var(--carbon);
  }
  .header-bottom__top-category-list ul li a{
    font-size: 1.8rem;
    padding: 0.95rem;
    column-gap: calc(12.5 * (100vw / 768));
  }
  .header-bottom__top-category-list ul li a .arrow{
    width: 0.8rem;
    height: 1.4rem;
  }
  /* ▲2022/10/13追加 総合トップとcrossmarcheトップに表示するナビ▲ */
  #Head.header--openType .header-item__icon-item--search-trigger {
    width: calc(32 *(100vw / 768));
    height: calc(32 *(100vw / 768));
  }
  #Head.header--openType .header-item__icon-item--search-trigger .img__wrapper {
    padding: calc(6 *(100vw / 768));
    border-radius: calc(4 *(100vw / 768));
    cursor: pointer;
  }
  #Head.header--openType .header-item__icon-item--search-trigger .img__wrapper[aria-expanded="true"] {
    padding: calc(9 *(100vw / 768));
  }
  #Head.header--openType .header-item__icon-item--search__window {
    position: absolute;
    top: calc(100% + calc(4 *(100vw / 768)));
    left: unset;
    right: calc(-38 *(100vw / 768));
    width: 396px;
    height: auto;
    max-height: calc(100dvh - var(--headerHeight) - 50px);
    padding: 20px;
  }
  @supports not (height: 100dvh) {
    #Head.header--openType .header-item__icon-item--search__window {
      max-height: calc(100vh - var(--headerHeight) - 50px);
    }
  }
  #Head.header--norc .header__brand-logo {
    width: calc(106 * (100vw / 768));
    height: calc(20 * (100vw / 768));
  }
  #Head.header--norc .header-item__icon {
    right: calc(16 * (100vw / 768));
  }
  #Head.header--lesouk .header__brand-logo {
    width: calc(108 * (100vw / 768));
    height: calc(32 * (100vw / 768));
  }
  #Head.header--lesouk .header-item__icon {
    right: calc(16 * (100vw / 768));
  }
  #Head.header--renorm .header__brand-logo {
    width: calc(106 * (100vw / 768));
    height: calc(33 * (100vw / 768));
  }
  #Head.header--renorm .header-item__icon {
    right: calc(16 * (100vw / 768));
  }
  #Head.header--JUNKOSHIMADA .header__brand-logo {
    width: calc(184 * (100vw / 768));
    height: calc(36 * (100vw / 768));
  }
  #Head.header--JUNKOSHIMADA .header-item__icon {
    right: calc(16 * (100vw / 768));
  }
  #Head.header--atsurotayama .header__brand-logo {
    width: calc(135 * (100vw / 768));
    height: calc(25 * (100vw / 768));
  }
  #Head.header--atsurotayama .header-item__icon {
    right: calc(16 * (100vw / 768));
  }
  #Head.header--rosemadame .header__brand-logo {
    width: calc(103 * (100vw / 768));
  }
  #Head.header--rosemadame .header-item__icon {
    right: calc(16 * (100vw / 768));
  }
  #Head.header--crossmarche .header__brand-logo {
    width: calc(140 * (100vw / 768));
    height: calc(23 * (100vw / 768));
  }
  #Head.header--pastelmask .header__brand-logo {
    width: calc(195 * (100vw / 768));
  }
  #Head.header--crossmarche .header__brand-logo-img--pastelmask .img__wrapper {
    transform: translateX(calc(10 * (100vw / 768)));
  }
  #Head.header--crossmarche .header-item__icon {
    right: calc(16 * (100vw / 768));
  }
  #Head.header--crossmarche .header-bottom__category-list-item {
    transition: background-color 0.1s linear;
    width: calc(86.6rem / 5);
  }
  #Head.header--crossmarche .header-bottom__category-list-item:first-of-type {
    border-left: 1px solid var(--white);
  }
  #Head.header--crossmarche .header-bottom__category-list-item:last-of-type {
    border-right: 1px solid var(--white);
  }
  #Head.header--crossmarche .header-bottom__category-list-item:hover {
    background-color: #c5beaf;
  }
  #Head.header--crossmarche .header-bottom__category-text {
    transition: opacity 0.1s linear;
    font-size: calc(10 * (100vw / 768));
  }
  #Head.header--crossmarche .header-bottom__category-list-item:hover .header-bottom__category-text {
    opacity: 1;
  }
  #Head.header--oheyaplus .header__brand-logo {
    width: calc(124 * (100vw / 768));
    height: calc(29 * (100vw / 768));
  }
  .header__hamburger-menu__list-item--link .brandlogo--oheyaplus {
    width: calc(100 * (100vw / 768));
  }
  #Head.header--oheyaplus .header-bottom__category-list__inner {
    padding-right: calc(10 * (100vw / 768));
    padding-left: calc(10 * (100vw / 768));
    justify-content: space-around;
  }
  #Head.header--oheyaplus .header-bottom__category-list-item {
    margin-right: 0;
  }
  #Head.header--oheyaplus .header-bottom__category-text {
    font-size: calc(11 * (100vw / 768));
  }

  /* PIPING HOT */
  #Head.header--pipinghot .header__brand-logo {
    width: calc(54 * (100vw / 768));
    height: calc(41.72 * (100vw / 768));
  }
  #Head.header--pipinghot .header-item__icon {
    right: calc(16 * (100vw / 768));
    width: auto;
  }

  #Head.header--acdcph .header-item__icon {
    right: calc(16 * (100vw / 768));
    width: auto;
  }
  #Head.header--acdcph .header__brand-logo {
    width: calc(110 * (100vw / 768));
  }
  .header__brand-list--acdcphlh__list {
    justify-content: center;
    width: max-content;
    margin: 0 auto;
  }
  .header__brand-list--acdcphlh__list-item .img__wrapper {
    padding-right: calc(22 * (100vw / 768));
    padding-left: calc(22 * (100vw / 768));
  }
  .header__brand-list--acdcphlh__list-item--alphacubic .img__wrapper {
    width: calc(80 * (100vw / 768));
  }
  .header__brand-list--acdcphlh__list-item--decoy .img__wrapper {
    width: calc(80 * (100vw / 768));
  }
  .header__brand-list--acdcphlh__list-item--petithonfleur .img__wrapper {
    width: calc(75 * (100vw / 768));
  }
  .header__brand-list--acdcphlh__list-item--lesoukholiday .img__wrapper {
    width: calc(80 * (100vw / 768));
  }

  /* JOIN PARK */
  #Head.header--join_park .header__brand-logo {
    width: calc(36 * (100vw / 768));
  }

  /* DERMASHARE */
  #Head.header--dermashare .header__brand-logo {
    width: calc(142.35 * (100vw / 768));
    height: calc(31.58 * (100vw / 768));
  }
  #Head.header--dermashare .header-item__icon {
    right: calc(16 * (100vw / 768));
    width: auto;
  }

  /* ellips */
  #Head.header--ellips .header__brand-logo {
    width: calc(70.79 * (100vw / 768));
    height: calc(35.99 * (100vw / 768));
  }
  #Head.header--ellips .header-item__icon {
    right: calc(16 * (100vw / 768));
    width: auto;
  }

  /* BEAUTY AVENUE */
  #Head.header--beautyavenue .header__brand-logo {
    width: calc(68.21 * (100vw / 768));
    height: calc(50.02 * (100vw / 768));
  }
  #Head.header--beautyavenue .header-item__icon {
    right: calc(16 * (100vw / 768));
    width: auto;
  }
  
  /* ELLEgirl */
  #Head.header--ellegirl .header__brand-logo {
    width: calc(106.23 * (100vw / 768));
    height: calc(26.58 * (100vw / 768));
  }
  #Head.header--ellegirl .header-item__icon {
    right: calc(16 * (100vw / 768));
    width: auto;
  }

  /* CROSS FUNCTION */
  #Head.header--crossfunction .header__brand-logo {
    width: calc(50 * (100vw / 768));
    height: calc(36.13 * (100vw / 768));
  }
  #Head.header--crossfunction .header-item__icon {
    right: calc(16 * (100vw / 768));
    width: auto;
  }

  /* anyfee */
  #Head.header--anyfee .header__brand-logo {
    width: calc(110 * (100vw / 768));
    height: calc(40 * (100vw / 768));
  }
  #Head.header--anyfee .header-item__icon {
    right: calc(16 * (100vw / 768));
    width: auto;
  }

  /* DASHING DIVA */
  #Head.header--dashingdiva .header__brand-logo {
    width: calc(148 * (100vw / 768));
    height: calc(24 * (100vw / 768));
  }
  #Head.header--dashingdiva .header-item__icon {
    right: calc(16 * (100vw / 768));
    width: auto;
  }
  
  .footer__inner {
    padding-top: calc(60 * (100vw / 768));
    padding-bottom: calc(40 * (100vw / 768));
  }
  .footer__inner__content-container {
    padding-top: calc(30 * (100vw / 768));
    padding-right: calc(10 * (100vw / 768));
    padding-left: calc(10 * (100vw / 768));
  }
  .footer__description-text {
    padding-top: calc(20 * (100vw / 768));
    padding-right: calc(18 * (100vw / 768));
    padding-left: calc(18 * (100vw / 768));
    font-size: calc(11 * (100vw / 768));
    text-align: center;
  }
  .footer__description-text--brand {
    display: block;
    margin-bottom: calc(4 * (100vw / 768));
    font-weight: 600;
  }
  .footer-content__title-text {
    height: calc(54 * (100vw / 768));
    padding-right: calc(5 * (100vw / 768));
    padding-left: calc(5 * (100vw / 768));
    font-size: calc(14 * (100vw / 768));
  }
  .footer-content__list--child .footer-content__title-text {
    font-size: calc(12 * (100vw / 768));
  }
  .footer-content__list-item {
    height: calc(54 * (100vw / 768));
    font-size: calc(14 * (100vw / 768));
  }
  .footer-content--sns {
    padding-top: calc(30 * (100vw / 768));
  }
  .footer-content--sns__list {
    width: calc(748 * (100vw / 768));
    column-gap: 30px;
  }
  .footer-content--sns__list-item .img__wrapper {
    width: calc(24 * (100vw / 768));
    height: calc(24 * (100vw / 768));
  }
  .footer-content--sns__list-item--twitter .img__wrapper {
    width: calc(24 * (100vw / 768));
    height: calc(20 * (100vw / 768));
  }
  .footer-content--sns__list--child .footer-content__title-text {
    font-size: calc(12 * (100vw / 768));
  }
  .footer-content--magazine__button,
  .footer-content--app__button {
    width: calc(345 * (100vw / 768));
    height: calc(111 * (100vw / 768));
    margin-top: calc(32 * (100vw / 768));
    padding-top: calc(50 * (100vw / 768));
    font-size: calc(12 * (100vw / 768));
  }
  .footer-content--app__button {
    height: calc(132 * (100vw / 768));
    padding-top: calc(66 * (100vw / 768));
  }
  .footer-content--magazine__button::before,
  .footer-content--app__button::before {
    top: calc(20 * (100vw / 768));
    width: calc(25 * (100vw / 768));
    height: calc(18 * (100vw / 768));
  }
  .footer-content--app__button::before {
    width: calc(32 * (100vw / 768));
    height: calc(32 * (100vw / 768));
  }
  .footer-content--magazine--title,
  .footer-content--app--title {
    margin-bottom: calc(8 * (100vw / 768));
    font-size: calc(16 * (100vw / 768));
  }
  .footer-content--app--title .middle {
    font-size: calc(15 * (100vw / 768));
    margin-left: calc(5 * (100vw / 768));
  }
  .footer-content--customer-support {
    margin-top: calc(30 * (100vw / 768));
    padding-top: calc(39 * (100vw / 768));
  }
  .footer-content--customer-support::before {
    width: calc(26 * (100vw / 768));
    height: calc(25 * (100vw / 768));
  }
  .footer-content--customer-support__text {
    font-size: calc(13 * (100vw / 768));
  }
  .footer-content--customer-support__text--tell {
    font-size: calc(36 * (100vw / 768));
  }
  .footer-content--customer-support__link-text {
    margin-top: calc(20 * (100vw / 768));
    font-size: calc(12 * (100vw / 768));
  }
  .footer-copyright {
    margin-top: calc(30 * (100vw / 768));
  }
  .footer-copyright__text {
    font-size: calc(13 * (100vw / 768));
  }
  .footer__pagetop-button {
    -webkit-transform: translateY(15rem);
    right: 2rem;
    bottom: 4rem;
    width: 12rem;
    max-width: 60px;
    height: 12rem;
    max-height: 60px;
    transform: translateY(15rem);
    border-radius: 1rem;
  }
  .footer__pagetop-button svg {
    width: 2.6rem;
    max-width: 13px;
    height: 2.6rem;
    max-height: 13px;
  }
  #pagination.paginationTOP {
    max-width: 190px;
  }
  #pagination.paginationTOP .item_count {
    font-size: 30px;
  }
  #pagination.paginationTOP .item_count span {
    font-size: 12px;
  }
  #pagination.paginationTOP .item_count span:first-of-type {
    margin-right: 7px;
  }
  #pagination.paginationTOP .item_count span *:last-of-type {
    margin-left: 2px;
  }
  #pagination.paginationBottom .paging__list a {
    width: 36px;
    height: 36px;
  }
  #pagination.paginationBottom .paging__list.active {
    width: 36px;
    height: 36px;
  }
  #pagination.paginationBottom .paging__list__separator {
    width: 36px;
  }
  .contents-top__brand-list {
    height: calc(50 * (100vw / 768));
  }
  .contents-top__brand-list-item--alphacubic svg {
    width: calc(84 * (100vw / 768));
    height: calc(21 * (100vw / 768));
  }
  .contents-top__brand-list-item--decoy svg {
    width: calc(80 * (100vw / 768));
    height: calc(24 * (100vw / 768));
  }
  .contents-top__brand-list-item--petithonfleur svg {
    width: calc(76 * (100vw / 768));
    height: calc(30 * (100vw / 768));
  }
  .contents-top__brand-list-item--ecrire svg {
    width: calc(95 * (100vw / 768));
    height: calc(27 * (100vw / 768));
  }
  .contents-top__brand-list-item--pastelmask svg {
    width: calc(160 *(100vw / 768));
  }
  .contents-top__brand-list-item--crossfunction svg {
    width: calc(50 *(100vw / 768));
  }
  .contents-top__brand-list-item--kangolsport svg {
    width: calc(124 * (100vw / 768));
  }
  .contents-top__brand-list-item--head svg {
    width: calc(110 * (100vw / 768));
  }
  .contents-top__brand-list-item--lafuku svg {
    width: calc(60 * (100vw / 768));
  }
  .contents-top__brand-list-item--musee svg {
    width: calc(100 * (100vw / 768));
  }
  .contents-top__brand-list-item--hatmikke svg {
    width: calc(50 * (100vw / 768));
  }
  .contents-top__brand-list-item--anyfee svg {
    width: calc(80 * (100vw / 768));
  }
  .contents-top__brand-list-item--hanari svg {
    width: calc(26 * (100vw / 768));
  }
  .contents-top__brand-list-item--chara_station svg {
    width: calc(130 * (100vw / 768));
  }
  .contents-top__brand-list-item--join_park svg {
    width: calc(34 * (100vw / 768));
  }
  .contents-top__brand-list-item--onkatsuryoukatsu svg {
    width: calc(150 * (100vw / 768));
  }

  /* ===============================================
    * 商品一覧 で表示するブランド看板バナーエリア *
  =============================================== */
  .contents-top__slide-banner {
    width: min(1050 * (100vw / 1200), 1050px);
    margin: calc(15 *(100vw / 768)) auto 0;
  }

  .contents-top__slide {
    width: min(1050 * (100vw / 1200), 1050px);
    margin: 0 6px;
  }

  /* ===============================================
    * 商品一覧 で表示するブランド看板バナー下フリーエリア *
  =============================================== */
  .contents-top__free-area {

  }

  /* chara station - キャラクターから探す */
  .search-charactor {
    padding: calc(20 * (100vw / 768)) calc(10 * (100vw / 768));
  }
  .search-charactor__inner h2 {
    margin-bottom: calc(15 * (100vw / 768));
    font-size: calc(18 * (100vw / 768));
  }
  .search-charactor__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: calc(11 * (100vw / 768)) calc(10 * (100vw / 768));
  }

  /* サマリーテキスト------------------------------------ */
  .summaryText__inner {
    padding-top: calc(60 * (100vw / 768));
  }
  .summaryText__logo {
    width: calc(200 * (100vw / 768));
    display: block;
    margin: 0 auto;
  }
  .summaryText__description-text {
    padding-top: calc(30 * (100vw / 768));
    padding-right: calc(18 * (100vw / 768));
    padding-left: calc(18 * (100vw / 768));
    font-size: calc(11 * (100vw / 768));
    text-align: center;
  }
}

@media only screen and (min-width: 768px) {
  .header__hover-content--category .header__hover-content__inner {
    display: flex;
    justify-content: space-between;
  }
  .header__hover-content--category .header__hover-content__inner--regular,
  .header__hover-content--category .header__hover-content__inner--limited {
    display: grid;
    grid-template-columns: repeat(var(--category-column-count, 6), minmax(0, 1fr));
    gap: 3rem 3.8rem;
    width: 100%;
  }
  .header__hover-content--category .header__hover-content--category-content__wrapper,
  .header__hover-content--category-content__list,
  .header__hover-content--category-content__list li {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
  }
  .header__hover-content--category-content__list li:first-of-type {
    font-weight: bold;
  }
  .header__hover-content--category-content__link-text {
    display: block;
    position: relative;
    height: auto;
    padding-right: 2.5rem;
    font-family: var(--hirakaku);
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: left;
  }
  .header__hover-content--category-content__link-text--noLink:hover {
    opacity: 1 !important;
    cursor: default;
  }
  .header__hover-content--category-content__link-text::after {
    z-index: 2;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0.65rem;
    max-width: 6.5px;
    height: 1rem;
    max-height: 10px;
    margin: auto;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%226.489%22%20height%3D%2210%22%20viewBox%3D%220%200%206.489%2010%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_356%22%20data-name%3D%22%E3%83%91%E3%82%B9%20356%22%20d%3D%22M7%2C8.489l-5-5L3.489%2C2%2C7%2C5.511%2C10.511%2C2%2C12%2C3.489Z%22%20transform%3D%22translate(-2%2012)%20rotate(-90)%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-size: 100%;
    content: '';
  }
  .header__hover-content--category-content__link-text--noLink::after {
    content: none;
  }
  .header__hover-content--category-content__title-text {
    font-weight: bold;
  }
  .header__hover-content--trigger {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  .header__hover-content--trigger:hover .header-item__text-item-title {
    color: var(--dhusar-grey);
  }
}

@media only screen and (min-width: 980px) {
  /* ===========================
    * Style of PC-view *
  =========================== */
  a {
    -webkit-transition-property: opacity;
    -webkit-transition-duration: 0.1s;
    opacity: 1;
    transition-duration: 0.1s;
    transition-property: opacity;
  }
  a:hover {
    opacity: 0.7;
  }
  .header__ticker-item__text {
    height: 40px;
    font-size: 12px;
  }
  .header__inner {
    width: 100%;
    max-width: 140rem;
    margin-right: auto;
    margin-left: auto;
  }
  .header__brand-logo {
    right: auto;
    left: 6.7rem;
    width: 15.5rem;
    height: 3.4rem;
    margin: auto;
  }
  .header-item__text {
    position: absolute;
    top: 0;
    left: 25.4rem;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    margin: auto;
    padding-top: 2.4rem;
  }
  .header--lesouk .header-item__text {
    left: 20rem;
  }
  .header--pastelmask .header-item__text {
    left: 30rem;
  }
  .header-item__text-item {
    margin-right: 2rem;
  }
  .header-item__text li:last-of-type {
    margin-right: 0;
  }
  .header-item__text-item-title {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-transition: color 0.1s linear;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-start;
    height: 100%;
    font-family: var(--quattrocento-sans);
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: color 0.1s linear;
  }
  .header-item__text-item-title:hover {
    color: var(--dhusar-grey);
  }
  .header-item__icon {
    right: 7rem;
    width: 29.2rem;
    /* height: 3.3rem; */
  }
  .header-item__icon-item--search-trigger .img__wrapper:hover {
    opacity: var(--hover-opacity);
  }
  .header-item__icon-item--search {
    width: 24.2rem;
    border: solid 0.1rem var(--dhusar-grey);
    border-radius: 0.4rem;
  }
  .header-item__icon-item--search__inputbox {
    position: relative;
    height: 3.1rem;
    padding-right: 3.8rem;
    padding-left: 1.2rem;
  }
  .header-item__icon-item--search__inputbox input {
    width: 100%;
    height: 100%;
    font-size: 1.4rem;
  }
  .header-item__icon-item--search__inputbox input::-webkit-input-placeholder {
    color: var(--aria);
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 0.03em;
  }
  .header-item__icon-item--search__inputbox input::-moz-placeholder {
    color: var(--aria);
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 0.03em;
  }
  .header-item__icon-item--search__inputbox input:-ms-input-placeholder {
    color: var(--aria);
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 0.03em;
  }
  .header-item__icon-item--search__inputbox input::-ms-input-placeholder {
    color: var(--aria);
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 0.03em;
  }
  .header-item__icon-item--search__inputbox input::placeholder {
    color: var(--aria);
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 0.03em;
  }
  .header-item__icon-item--search__inputbox::after {
    position: absolute;
    top: 0;
    right: 3.8rem;
    bottom: 0;
    width: 0.1rem;
    height: 1.7rem;
    margin: auto;
    background-color: var(--dhusar-grey);
    content: '';
  }
  .header-item__icon-item--search__button {
    z-index: 2;
    position: absolute;
    top: 0;
    right: 1rem;
    bottom: 0;
    width: 1.7rem;
    height: 1.7rem;
    margin: auto;
  }
  .header-item__icon-item--login,
  .header-item__icon-item--mypage {
    -ms-flex-item-align: center;
    align-self: center;
  }
  .header-item__icon-item--login a,
  .header-item__icon-item--mypage a {
    font-size: 1.2rem;
  }
  .header-item__icon-item--favorite {
    -ms-flex-item-align: center;
    align-self: center;
    width: 2.5rem;
    height: 3.3rem;
  }
  .header-item__icon-item--favorite svg {
    width: 100%;
    height: 100%;
  }
  .header-item__icon-item--favorite a {
    display: inline-block;
    width: 100%;
    height: 100%;
    transform: translateY(-1px);
  }
  .header-item__icon-item--cart {
    -webkit-transition-property: opacity;
    -webkit-transition-duration: 0.1s;
    width: 2.9rem;
    height: 2.4rem;
    opacity: 1;
    transition-duration: 0.1s;
    transition-property: opacity;
  }
  .header-item__icon-item--cart:hover {
    opacity: 0.7;
  }
  .header-item__icon-item--cart .incart-amount {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: -0.8rem;
    right: -0.4rem;
    bottom: auto;
    left: auto;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    padding-top: 0;
    padding-left: 0;
    border-radius: 50%;
    background-color: var(--incubation-red);
    color: var(--white);
    font-size: 12px;
  }
  .header-item__icon-item--cart--link:hover {
    opacity: 1;
  }
  /* ▼2022/10/13追加 総合トップとcrossmarcheトップに表示するナビ▼ */
  .header-bottom__top-category-list ul li a{
    column-gap: 1rem;
  }
  /* ▲2022/10/13追加 総合トップとcrossmarcheトップに表示するナビ▲ */
  .header__hover-content {
    display: none;
    position: fixed;
    top: calc(var(--headerSmartBannerHeight) + var(--tickerHeight) + var(--obiBannerHeight) + var(--headerInnerHeight));
    left: 0;
    width: 100%;
    padding-top: 2.9rem;
    padding-bottom: 5.8rem;
    background-color: var(--white-solid);
    z-index: 3;
  }
  .header__hover-content__inner {
    scrollbar-width: none;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    display: block;
    width: 100%;
    max-width: 124rem;
    max-height: calc(75vh - var(--headerHeight));
    margin-right: auto;
    margin-left: auto;
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .header__hover-content__inner::-webkit-scrollbar {
    display: none;
  }
  .header__hover-content__inner--regular {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  /* .cardUnit-brands {
    justify-content: flex-start;
  } */
  .header__hover-content--brand .cardUnit-brands {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -ms-flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .header__hover-content--brand .cardUnit__card {
    width: 15%;
    max-width: 15.6rem;
    height: auto;
    margin-right: 0;
    margin-bottom: 1.8rem;
    margin-left: 0;
    max-height: 16.5rem;
  }
  .header__hover-content--brand .cardUnit__card img {
    width: 100%;
    height: auto;
  }
  .header__hover-content--brand .cardUnit__card-pc-col7:nth-child(7n + 1) {
    margin-left: 0;
  }
  .header__hover-content--brand .cardUnit .logo__wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    background-color: var(--white);
  }
  .header__hover-content--brand .cardUnit .logo__wrapper--norc-anthem svg {
    width: 70px;
    height: auto;
  }
  /* .header__hover-content--brand .cardUnit .logo__wrapper--norc-honzawa img {
    width: 60px;
    height: auto;
  } */
  .header__hover-content--brand .cardUnit .logo__wrapper--atsuro-tayama svg {
    width: 70px;
    height: auto;
  }
  .header__hover-content--brand .cardUnit .logo__wrapper--atsuro-ats svg {
    width: 40px;
    height: auto;
  }
  .header__hover-content--brand .cardUnit .logo__wrapper--junko-shimada svg {
    width: 90px;
    height: auto;
  }
  .header__hover-content--brand .cardUnit .logo__wrapper--junko-49av svg {
    width: 30px;
    height: auto;
  }

  /* ブランド毎のスタイル */
  #Head.header--openType .header-item__icon-item--search-trigger {
    width: 3.2rem;
    height: 3.2rem;
  }
  #Head.header--openType .header-item__icon-item--search-trigger .img__wrapper {
    padding: .6rem;
    border-radius: .4rem;
  }
  #Head.header--openType .header-item__icon-item--search-trigger .img__wrapper[aria-expanded="true"] {
    padding: .9rem;
  }
  #Head.header--openType .header-item__icon-item--search__window {
    top: calc(100% + 1.3rem);
    right: -5.5rem;
    padding: 2rem;
  }
  #Head.header--norc .header__brand-logo {
    width: 10.6rem;
    height: 2rem;
  }
  #Head.header--norc .header-item__icon {
    right: 7rem;
    width: 49.5rem;
  }
  #Head.header--norc .header-item__icon-item--cart .incart-amount {
    color: var(--white);
  }
  #Head.header--norc .cardUnit {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  #Head.header--norc .cardUnit__card {
    margin-right: 1.4rem;
  }
  #Head.header--norc .cardUnit li:last-of-type {
    margin-right: 0;
  }
  #Head.header--lesouk .header__brand-logo {
    width: 10.6rem;
    height: 3.2rem;
  }
  /* #Head.header--lesouk .header-item__text-item--shoplist .header-item__text-item-title {
    font-size: 1.2rem;
    line-height: 1.5;
  }*/
  #Head.header--lesouk .header-item__icon {
    right: 7rem;
    width: 50.5rem;
  }
  #Head.header--lesouk .header-item__icon-item--search {
    background-color: var(--white);
  }
  #Head.header--lesouk .header-item__icon-item--cart .incart-amount {
    color: var(--white);
  }
  #Head.header--renorm {
    border-bottom: none;
  }
  #Head.header--renorm .header__brand-logo {
    width: 10.6rem;
    height: 1.8rem;
  }
  #Head.header--renorm .header-item__icon {
    right: 7rem;
    width: 50.5rem;
  }
  #Head.header--renorm .header-item__icon-item--cart .incart-amount {
    color: var(--white);
  }
  #Head.header--JUNKOSHIMADA .header__brand-logo {
    left: 2rem;
    width: 18.3rem;
    height: 3.2rem;
  }
  #Head.header--JUNKOSHIMADA .header-item__text-item-title {
    color: var(--white);
  }
  #Head.header--JUNKOSHIMADA .header-item__text {
    left: 25rem;
  }
  #Head.header--JUNKOSHIMADA .header-item__icon {
    right: 1.5rem;
    width: 46rem;
  }
  #Head.header--JUNKOSHIMADA .header-item__text-item--secret .header-item__text-item-title {
    position: relative;
    padding-left: 2.1rem;
  }
  #Head.header--JUNKOSHIMADA .header-item__text-item--secret .header-item__text-item-title::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 1.7rem;
    height: 1.7rem;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2217.035%22%20height%3D%2217.44%22%20viewBox%3D%220%200%2017.035%2017.44%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_670%22%20data-name%3D%22%E3%83%91%E3%82%B9%20670%22%20d%3D%22M-960.72%2C1638.2l-1.381%2C1.381-1.444-1.444%2C7.365-7.357-.229-.418a5.289%2C5.289%2C0%2C0%2C1-.65-2.538%2C5.224%2C5.224%2C0%2C0%2C1%2C.413-2.053%2C5.265%2C5.265%2C0%2C0%2C1%2C1.131-1.677%2C5.26%2C5.26%2C0%2C0%2C1%2C1.677-1.13%2C5.273%2C5.273%2C0%2C0%2C1%2C2.054-.414%2C5.222%2C5.222%2C0%2C0%2C1%2C2.053.413%2C5.262%2C5.262%2C0%2C0%2C1%2C1.677%2C1.131%2C5.266%2C5.266%2C0%2C0%2C1%2C1.13%2C1.677%2C5.275%2C5.275%2C0%2C0%2C1%2C.414%2C2.054%2C5.262%2C5.262%2C0%2C0%2C1-.416%2C2.057%2C5.263%2C5.263%2C0%2C0%2C1-1.13%2C1.676%2C5.26%2C5.26%2C0%2C0%2C1-1.677%2C1.13%2C5.273%2C5.273%2C0%2C0%2C1-2.054.414%2C5.276%2C5.276%2C0%2C0%2C1-2.538-.65l-.418-.23-4.534%2C4.536%2C1.788%2C1.788-1.444%2C1.444Zm8.931-13.944a3.544%2C3.544%2C0%2C0%2C0-2.522%2C1.044%2C3.544%2C3.544%2C0%2C0%2C0-1.044%2C2.522%2C3.544%2C3.544%2C0%2C0%2C0%2C1.047%2C2.522%2C3.544%2C3.544%2C0%2C0%2C0%2C2.522%2C1.045%2C3.544%2C3.544%2C0%2C0%2C0%2C2.522-1.045%2C3.512%2C3.512%2C0%2C0%2C0%2C1.042-2.526%2C3.541%2C3.541%2C0%2C0%2C0-1.044-2.519A3.544%2C3.544%2C0%2C0%2C0-951.789%2C1624.256Z%22%20transform%3D%22translate(963.544%20-1622.548)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-size: 100%;
    content: '';
  }
  #Head.header--JUNKOSHIMADA .header-item__icon-item--search {
    width: 22rem;
    background-color: var(--white);
  }
  #Head.header--JUNKOSHIMADA .header-item__icon-item--favorite svg {
    fill: var(--white);
  }
  #Head.header--JUNKOSHIMADA .header-item__icon-item--cart .incart-amount {
    color: var(--white);
  }
  #Head.header--JUNKOSHIMADA .cardUnit {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  #Head.header--JUNKOSHIMADA .cardUnit__card {
    margin-right: 1.4rem;
  }
  #Head.header--JUNKOSHIMADA .cardUnit li:last-of-type {
    margin-right: 0;
  }
  #Head.header--atsurotayama .header__brand-logo {
    width: 13.5rem;
    height: 2.5rem;
  }
  #Head.header--atsurotayama .header-item__icon {
    right: 7rem;
    width: 50.5rem;
  }
  #Head.header--atsurotayama .header-item__icon-item--cart .incart-amount {
    color: var(--white);
  }
  #Head.header--atsurotayama .cardUnit {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  #Head.header--atsurotayama .cardUnit__card {
    margin-right: 1.4rem;
  }
  #Head.header--atsurotayama .cardUnit li:last-of-type {
    margin-right: 0;
  }
  #Head.header--rosemadame .header__brand-logo {
    width: 11.3rem;
  }
  #Head.header--rosemadame .header-item__text {
    left: 27rem;
  }
  #Head.header--rosemadame .header-item__icon {
    right: 7rem;
    width: 50.5rem;
  }
  #Head.header--rosemadame .header-item__icon-item--search {
    background-color: var(--white);
  }
  #Head.header--rosemadame .header-item__icon-item--cart .incart-amount {
    color: var(--white);
  }
  #Head.header--crossmarche .header__brand-logo {
    width: 16rem;
    height: 2.58rem;
  }
  #Head.header--pastelmask .header__brand-logo {
    width: 21.5rem;
  }
  #Head.header--crossmarche .header__brand-logo-img--pastelmask .img__wrapper {
    transform: none;
  }
  #Head.header--crossmarche .header-item__text {
    left: 29.4rem;
    width: 22.4rem;
  }
  #Head.header--crossmarche .header-item__icon {
    right: 7rem;
    width: 50.5rem;
  }
  #Head.header--crossmarche .header-item__icon-item--search {
    background-color: var(--white);
  }
  #Head.header--crossmarche .header-item__icon-item--cart .incart-amount {
    color: var(--white);
  }
  #Head.header--crossmarche .header-bottom__category-text {
    font-size: 1.1rem;
    line-height: 1.4;
  }
  #Head.header--oheyaplus .header__brand-logo {
    height: 4.1rem;
    max-height: 41px;
    max-width: 134px;
    width: 13.4rem;
  }
  #Head.header--oheyaplus .header-item__icon {
    right: 7rem;
    width: 50.5rem;
  }
  #Head.header--oheyaplus .header-item__icon-item--cart .incart-amount {
    color: var(--white);
  }
  #Head.header--oheyaplus
    .header-item__icon-item--search__inputbox
    input::-webkit-input-placeholder {
    color: var(--dhusar-grey);
  }
  #Head.header--oheyaplus .header-item__icon-item--search__inputbox input:-moz-placeholder {
    color: var(--dhusar-grey);
  }
  #Head.header--oheyaplus .header-item__icon-item--search__inputbox input::-moz-placeholder {
    color: var(--dhusar-grey);
  }
  #Head.header--oheyaplus .header-item__icon-item--search__inputbox input:-ms-input-placeholder {
    color: var(--dhusar-grey);
  }
  #Head.header--oheyaplus .header-bottom__category-list__inner {
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
    overflow: hidden;
  }
  #Head.header--oheyaplus .header-bottom__category-list-item {
    /* width: 12.5%; */
    width: 20%;
    margin-right: 0;
    border-left: solid 1px var(--dhusar-grey);
    text-align: center;
  }
  #Head.header--oheyaplus .header-bottom__category-list li:last-of-type {
    border-right: solid 1px var(--dhusar-grey);
  }
  #Head.header--oheyaplus .header-bottom__category-text {
    display: block;
    font-size: 1.2rem;
    line-height: 1;
  }

  /* PIPING HOT */
  #Head.header--pipinghot .header__brand-logo {
    width: 6.452rem;
    height: 4.985rem;
  }
  #Head.header--pipinghot .header-item__text {
    left: 21rem;
  }
  #Head.header--pipinghot .header-item__text-item {
    margin-right: 3rem;
  }
  #Head.header--pipinghot .header-item__icon {
    right: 7rem;
    width: 49.5rem;
  }
  #Head.header--pipinghot .header-item__text .header-item__text-item-title {
    font-family: var(--poppins);
    font-weight: var(--font-weight-medium);
  }

  /* DERMASHARE */
  #Head.header--dermashare .header__brand-logo {
    width: 15.5rem;
    height: 3.6rem;
  }
  #Head.header--dermashare .header-item__icon {
    right: 7rem;
    width: 49.5rem;
  }
  #Head.header--dermashare .header-bottom__category-list {
    display: block;
    height: var(--headerBottomCategoryBarHeight);
  }
  #Head.header--dermashare .header-bottom__category-list__inner {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    height: 100%;
  }
  #Head.header--dermashare .header-bottom__category-list-item {
    position: relative;
  }
  #Head.header--dermashare .header-bottom__category-list-item:not(:last-of-type)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: block;
    width: 1px;
    height: 1.3rem;
    background-color: var(--aria);
  }
  #Head.header--dermashare .header-bottom__category-text {
    padding: 0 3rem;
    font-family: var(--noto-sans);
    font-size: 1.3rem;
    font-weight: var(--font-weight-medium);
  }

  /* ellips */
  #Head.header--ellips .header__brand-logo {
    width: 7.079rem;
    height: 3.599rem;
  }
  #Head.header--ellips .header-item__icon {
    right: 7rem;
    width: 49.5rem;
  }
  #Head.header--ellips .header-item__icon-item--cart .incart-amount {
    color: var(--white);
  }

  /* BEAUTY AVENUE */
  #Head.header--beautyavenue .header__brand-logo {
    width: 6.821rem;
    height: 5.02rem;
  }
  #Head.header--beautyavenue .header-item__icon {
    right: 7rem;
    width: 49.5rem;
  }
  #Head.header--beautyavenue .header-item__icon-item--cart .incart-amount {
    color: var(--white);
  }
  
  /* ELLEgirl */
  #Head.header--ellegirl .header__brand-logo {
    width: 10.623rem;
    height: 2.658rem;
  }
  #Head.header--ellegirl .header-item__icon {
    right: 7rem;
    width: 51rem;
  }
  #Head.header--ellegirl .header-item__icon-item--cart .incart-amount {
    color: var(--white);
  }

  /* CROSS FUNCTION */
  #Head.header--crossfunction .header__brand-logo {
    width: 5rem;
    height: 3.613rem;
  }
  #Head.header--crossfunction .header-item__text {
    left: 16rem;
  }
  #Head.header--crossfunction .header-item__icon {
    right: 7rem;
    width: 50.54rem;
  }

  /* anyfee */
  #Head.header--anyfee .header__brand-logo {
    width: 11rem;
    height: 4rem;
  }
  #Head.header--anyfee .header-item__text {
    left: 22rem;
  }
  #Head.header--anyfee .header-item__icon {
    right: 7rem;
    width: 50.54rem;
  }

  /* DASHING DIVA */
  #Head.header--dashingdiva .header__brand-logo {
    width: 14.8rem;
    height: 2.4rem;
  }
  /* #Head.header--dashingdiva .header-item__text {
    left: 26rem;
  } */
  #Head.header--dashingdiva .header-item__icon {
    right: 7rem;
    width: 50.54rem;
  }
  
  /* AC・DC・PH用スタイル */
  #Head.header--acdcph .header-item__text {
    left: 10rem;
  }
  #Head.header--acdcph .header-item__icon {
    width: 28.6rem;
  }
  #Head.header--acdcph .header__brand-logo {
    right: 0;
    left: 0;
  }
  #Head.header--acdcph .header-item__icon-item--search-trigger {
    position: relative;
    align-self: center;
    width: 2.2rem;
    max-width: 22px;
    max-height: 22px;
    height: 2.2rem;

    /* ↓ ホバー判定位置の調整に必要 ↓ */
    /* top: 1rem; */
    /* padding-bottom: 4rem; */
  }
  #Head.header--acdcph .header-item__icon-item--search-trigger .img__wrapper {
    cursor: pointer;
  }
  #Head.header--acdcph .header-item__icon-item--search__window {
    top: 4rem;
    right: -500%;
    width: 30rem;
    height: 7rem;
  }
  #Head.header--acdcph .header-item__icon-item--search__window.isVisible {
    opacity: 1;
    visibility: visible;
  }
  #Head.header--acdcph .header-item__icon-item--search__inputbox__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  #Head.header--acdcph .header-item__icon-item--search__inputbox {
    height: 3.3rem;
  }

  #Head.header--alphacubic .header__brand-logo {
    width: 15rem;
  }
  #Head.header--decoy .header__brand-logo {
    width: 13rem;
  }
  #Head.header--petithonfleur .header__brand-logo {
    width: 11rem;
  }
  #Head.header--onestrue .header__brand-logo {
    width: 23rem;
  }
  #Head.header--join_park .header__brand-logo {
    width: 4.6rem;
  }

  .header__brand-list--acdcphlh {
    border-top: solid 1px var(--aria);
    border-bottom: solid 1px var(--aria);
  }
  .header__brand-list--acdcphlh__list {
    justify-content: center;
  }
  .header__brand-list--acdcphlh__list-item {
    height: 100%;
  }
  .header__brand-list--acdcphlh__list-item .img__wrapper {
    position: relative;
  }
  .header__brand-list--acdcphlh__list-item .img__wrapper:hover {
    opacity: 1;
  }
  .header__brand-list--acdcphlh__list-item .img__wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 0.3rem;
    transform: scaleX(0);
    transition-property: background, transform;
    transition-duration: 300ms;
    transition-timing-function: ease-in;
  }
  .header__brand-list--acdcphlh__list-item:hover .img__wrapper::after {
    transform: scaleX(1);
  }
  .header__brand-list--acdcphlh__list-item svg path {
    background-color: #aaa;
    transition-property: fill;
    transition-duration: 300ms;
    transition-timing-function: linear;
  }
  .header__brand-list--acdcphlh__list-item .img__wrapper {
    display: flex;
    align-items: center;
    height: 100%;
    padding-right: 3.75rem;
    padding-left: 3.75rem;
  }

  .header__brand-list--acdcphlh__list-item--alphacubic:hover svg path {
    fill: var(--black);
  }
  .header__brand-list--acdcphlh__list-item--alphacubic .img__wrapper {
    width: 10rem;
  }
  .header__brand-list--acdcphlh__list-item--alphacubic .img__wrapper::after {
    background-color: var(--black);
  }

  .header__brand-list--acdcphlh__list-item--decoy:hover svg path {
    fill: var(--upmaroon);
  }
  .header__brand-list--acdcphlh__list-item--decoy .img__wrapper {
    width: 10rem;
  }
  .header__brand-list--acdcphlh__list-item--decoy .img__wrapper::after {
    background-color: var(--upmaroon);
  }

  .header__brand-list--acdcphlh__list-item--petithonfleur:hover svg path {
    fill: var(--bonebrown);
  }
  .header__brand-list--acdcphlh__list-item--petithonfleur .img__wrapper {
    width: 9rem;
  }
  .header__brand-list--acdcphlh__list-item--petithonfleur .img__wrapper::after {
    background-color: var(--bonebrown);
  }

  .header__brand-list--acdcphlh__list-item--lesoukholiday:hover svg path {
    fill: var(--black);
  }
  .header__brand-list--acdcphlh__list-item--lesoukholiday .img__wrapper {
    width: 10rem;
  }
  .header__brand-list--acdcphlh__list-item--lesoukholiday .img__wrapper::after {
    background-color: var(--black);
  }

  .header__brand-list--acdcphlh__list-item--onestrue:hover svg path {
    fill: #040000;
  }
  .header__brand-list--acdcphlh__list-item--onestrue .img__wrapper {
    width: 11.4rem;
  }
  .header__brand-list--acdcphlh__list-item--onestrue .img__wrapper::after {
    background-color: #040000;
  }

  .header__brand-list--acdcphlh__list-item--join_park .img__wrapper svg {
    padding: 0.5rem 0;
  }
  .header__brand-list--acdcphlh__list-item--join_park .img__wrapper::after {
    background-color: #f1ab3e;
  }
  .header__brand-list--acdcphlh__list-item--join_park:hover .stroke-black {
    stroke: #231815;
  }
  .header__brand-list--acdcphlh__list-item--join_park:hover svg .fill-black {
    fill: #231815;
  }
  .header__brand-list--acdcphlh__list-item--join_park:hover svg .fill-orange {
    fill: #f1ab3e;
  }

  .footer__inner {
    width: 90%;
    max-width: 120rem;
    margin-right: auto;
    margin-left: auto;
    padding-top: 6rem;
    padding-bottom: 4rem;
  }
  .footer__inner__content-container {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    padding-top: 3rem;
    padding-right: 0;
    padding-left: 0;
  }
  .footer__description-text {
    padding-top: 4rem;
    padding-right: 0;
    padding-left: 0;
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .footer__description-text--brand {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }
  .footer-content__title-text {
    display: block;
    height: auto;
    margin-top: 0;
    padding-right: 0;
    padding-left: 0;
    border: none;
    font-size: 1.5rem;
    font-weight: 600;
  }
  .footer-content__title-text .accordion-icon::before,
  .footer-content__title-text .accordion-icon::after {
    content: none;
  }
  .footer-content__title-text--store {
    margin-top: 3rem;
  }
  .footer-content__title-text--company {
    margin-top: 2rem;
  }
  .footer-content__text--en {
    font-family: var(--quattrocento-sans);
  }
  .footer-content__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    flex-direction: column;
  }
  .footer-content__list-item {
    display: inline-block;
    height: auto;
    margin-top: 0;
    padding-left: 0;
    font-size: 1.3rem;
    line-height: 1.85;
  }
  .footer-content__list-item--separater {
    display: block;
    height: 2.3rem;
  }
  .footer-content__list-item.visible-desktop {
    display: block;
  }
  .footer-content__list.hidden-desktop--custom {
    display: none !important;
  }
  .footer-content--sns {
    padding-top: 3.5rem;
  }
  .footer-content--sns__list {
    width: 90%;
    max-width: 120rem;
  }
  .footer-content--sns__list-item .img__wrapper {
    width: 3rem;
    height: 3rem;
  }
  .footer-content--sns__list-item--twitter .img__wrapper {
    width: 3rem;
    height: 2.5rem;
  }
  .footer-content--mypage-detail {
    width: 25rem;
    position: relative;
  }
  .footer-content--magazine__button,
  .footer-content--app__button {
    width: 25rem;
    height: 13rem;
    font-size: 1.2rem;
    padding-top: 6.2rem;
  }
  .footer-content--app__button {
    margin-top: 5.6rem;
  }
  .footer-content--magazine__button {
    margin-top: 2rem;
  }
  .footer-content--magazine__button::before {
    top: 3rem;
    width: 2.5rem;
    height: 1.8rem;
  }
  .footer-content--app__button::before {
    top: 2.3rem;
    width: 3.2rem;
    height: 3.2rem;
  }
  .footer-content--magazine--title,
  .footer-content--app--title {
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
  }
  .footer-content--app--title {
    font-size: 1.8rem;
  }
  .footer-content--app--title .middle {
    font-size: 1.5rem;
    margin-left: 0.6rem;
  }
  .footer-content--magazine-support {
    width: 100%;
  }
  .footer-content--customer-support {
    margin-top: 3rem;
    padding-top: 3.9rem;
  }
  .footer-content--customer-support::before {
    width: 2.6rem;
    height: 2.5rem;
  }
  .footer-content--customer-support__text {
    font-size: 1.3rem;
  }
  .footer-content--customer-support__text--tell {
    font-size: 3.6rem;
  }
  .footer-content--customer-support__link-text {
    margin-top: 2rem;
    font-size: 1.2rem;
  }
  .footer-copyright {
    margin-top: 3rem;
  }
  .footer-copyright__text {
    font-size: 1.3rem;
  }
  .footer__pagetop-button {
    cursor: pointer;
  }
  .footer__pagetop-button:hover {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  .contents-top__brand-list {
    height: 8.4rem;
  }
  .contents-top__brand-list__inner {
    width: 72rem;
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
  }
  .contents-top__brand-list-item--alphacubic svg {
    width: 17rem;
    max-width: 170px;
    height: 4.2rem;
    max-height: 42px;
  }
  .contents-top__brand-list-item--decoy svg {
    width: 14.3rem;
    max-width: 143px;
    height: 4.2rem;
    max-height: 42px;
  }
  .contents-top__brand-list-item--petithonfleur svg {
    width: 12.6rem;
    max-width: 126px;
    height: 5rem;
    max-height: 50px;
  }
  .contents-top__brand-list-item--ecrire svg {
    width: 15.1rem;
    max-width: 151px;
    height: 4.3rem;
    max-height: 43px;
  }
  .contents-top__brand-list-item--pastelmask svg {
    width: min(24rem, 240px);
  }
  .contents-top__brand-list-item--crossfunction svg {
    width: min(8rem, 80px);
  }
  .contents-top__brand-list-item--kangolsport svg {
    width: min(22rem, 220px);
  }
  .contents-top__brand-list-item--head svg {
    width: min(21rem, 210px);
  }
  .contents-top__brand-list-item--lafuku svg {
    width: min(10rem, 100px);
  }
  .contents-top__brand-list-item--musee svg {
    width: min(14rem, 140px);
  }
  .contents-top__brand-list-item--hatmikke svg {
    width: min(7.5rem, 75px);
  }
  .contents-top__brand-list-item--anyfee svg {
    width: min(12rem, 120px);
  }
  .contents-top__brand-list-item--hanari svg {
    width: min(5rem, 50px);
  }
  .contents-top__brand-list-item--chara_station svg {
    width: min(30rem, 300px);
  }
  .contents-top__brand-list-item--join_park svg {
    width: min(6rem, 60px);
  }
  .contents-top__brand-list-item--onkatsuryoukatsu svg {
    width: min(24rem, 240px);
  }

  /* ===============================================
    * 商品一覧 で表示するブランド看板バナーエリア *
  =============================================== */
  .contents-top__slide-banner {
    margin-top: 1.5rem;
  }

  /* ===============================================
    * 商品一覧 で表示するブランド看板バナー下フリーエリア *
  =============================================== */
  .contents-top__free-area {
    
  }

  /* chara station - キャラクターから探す */
  .search-charactor {
    padding: 3rem 0;
  }
  .search-charactor__inner {
    width: min(100%, 124rem);
    margin: 0 auto;
    padding: 0 2rem;
  }
  .search-charactor__inner h2 {
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
  }
  .search-charactor__list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 2rem;
  }

  /* サマリーテキスト------------------------------------ */
  .summaryText__inner {
    width: 90%;
    max-width: 120rem;
    margin-right: auto;
    margin-left: auto;
    padding-top: 6rem;
    padding-bottom: 0;
  }
  .summaryText__logo {
    width: 100%;
    max-width: 20rem;
    display: block;
    margin: 0 auto;
  }
  .summaryText__description-text {
    padding-top: 4rem;
    padding-right: 0;
    padding-left: 0;
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

@media screen and (max-width: 1200px) {
  html {
    font-size: calc((10 * (100vw / 1200)));
  }
}

@media only screen and (min-width: 1400px) {
  #Head.header--JUNKOSHIMADA .header__brand-logo {
    left: 5rem;
  }
  #Head.header--JUNKOSHIMADA .header-item__text {
    left: 27.4rem;
  }
  #Head.header--JUNKOSHIMADA .header-item__icon {
    right: 7rem;
    width: 50.5rem;
  }
  #Head.header--JUNKOSHIMADA .header-item__icon-item--search {
    width: 24.2rem;
  }
}

/*
  ********** ▼ Rosemadameカテゴリ ▼ **********
*/
@media only screen and (min-width: 768px) {
  .header--rosemadame
    .header__hover-content--category
    .header__hover-content__inner--regular
    div.header__hover-content--category-content__wrapper {
    margin-bottom: 3rem;
  }
  .header--rosemadame
    .header__hover-content--category
    .header__hover-content__inner--regular
    div.header__hover-content--category-content__wrapper:first-of-type {
    margin-left: 0;
  }
  .header--rosemadame .header__hover-content--category .header__hover-content__inner--regular,
  .header__hover-content--category .header__hover-content__inner--limited {
    align-items: stretch;
  }
}
/*
  ********** ▲ Rosemadameカテゴリ ▲ **********
*/


/*
 * メガメニュー & ハンバーガーメニュー用 カラーチップ
 */

.header__color-tip-list {
  display: grid;
}

.header__color-tip-list-item > * {
  display: flex;
}

.header__color-tip-list-item > *::before {
  content: "";

  width: 100%;
  aspect-ratio: 1;
  background: var(--color-tip-bg);
  background-repeat: no-repeat;
  background-size: cover;
  border: solid 1px var(--color-tip-border);
  border-radius: 50%;
  overflow: hidden;
}

.header__color-tip-list-item [href*="pgi=BE_color_white"] {
  --color-tip-bg: #fff;
  --color-tip-border: #e5e5e5;
}
.header__color-tip-list-item [href*="pgi=BE_color_black"] {
  --color-tip-bg: #000000;
}
.header__color-tip-list-item [href*="pgi=BE_color_gray"] {
  --color-tip-bg: #707070;
}
.header__color-tip-list-item [href*="pgi=BE_color_brown"] {
  --color-tip-bg: #5F3515;
}
.header__color-tip-list-item [href*="pgi=BE_color_beige"] {
  --color-tip-bg: #E3D6B4;
}
.header__color-tip-list-item [href*="pgi=BE_color_green"] {
  --color-tip-bg: #347E5B;
}
.header__color-tip-list-item [href*="pgi=BE_color_blue"] {
  --color-tip-bg: #1C3F89;
}
.header__color-tip-list-item [href*="pgi=BE_color_purple"] {
  --color-tip-bg: #633576;
}
.header__color-tip-list-item [href*="pgi=BE_color_yellow"] {
  --color-tip-bg: #E3B13A;
}
.header__color-tip-list-item [href*="pgi=BE_color_pink"] {
  --color-tip-bg: #E16A99;
}
.header__color-tip-list-item [href*="pgi=BE_color_red"] {
  --color-tip-bg: #BF1B34;
}
.header__color-tip-list-item [href*="pgi=BE_color_orange"] {
  --color-tip-bg: #F17020;
}
.header__color-tip-list-item [href*="pgi=BE_color_silver"] {
  --color-tip-bg: linear-gradient(#e4e4e4 0%, #aaa 100%);
}
.header__color-tip-list-item [href*="pgi=BE_color_gold"] {
  --color-tip-bg: linear-gradient(#ffeea8 0%, #d9b61d 100%);
}
.header__color-tip-list-item [href*="pgi=BE_color_others"] {
  --color-tip-bg: conic-gradient(#fd9797 0%, #dce076 25.12%, #85e873 44.83%, #6adbe5 61.58%, #999df4 77.83%, #fd9797 100%);
}

/* ハンバーガーメニュー */
.header__hamburger-menu__list-item--accordion__child-list .header__color-tip-list {
  grid-template-columns: repeat(5, 1fr);
  gap: calc(20 * (100vw / 375));

  padding: calc(20 * (100vw / 375)) calc(30 * (100vw / 375));
}

.header__hamburger-menu__list-item--accordion__child-list .header__color-tip-list-item  > * > span {
  display: none;
}


/* メガメニュー */

.header__hover-content--category-content__wrapper--color {
  grid-column: 3 / 6;
}

.header__hover-content--category-content__wrapper--color .header__color-tip-list {
  grid-auto-flow: column;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  column-gap: 7.75%;
  row-gap: 1.4rem;
}

.header__hover-content--category-content__wrapper--color .header__color-tip-list-item > * {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  align-items: center;
  column-gap: 1.2rem;

  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.25;
  letter-spacing: normal;
}
