﻿html {
  font-size: 62.5%;
}

@media screen and (max-width: 375px) {
  html {
    font-size: calc((10 * (100vw / 375)));
  }
}

body {
  font-family: var(--contentsFont);
  font-weight: 400;
  letter-spacing: 0.03em;
  /*
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
	font-feature-settings: "palt";
  */
  color: var(--txtColor);
}

a {
  color: var(--txtColor);
  text-decoration: none;
}

:placeholder-shown {
  color: var(--placefolderColor);
  font-size: var(--formFontSize);
}
::-webkit-input-placeholder {
  color: var(--placefolderColor);
  font-size: var(--formFontSize);
}
:-moz-placeholder {
  color: var(--placefolderColor);
  font-size: var(--formFontSize);
}
::-moz-placeholder {
  color: var(--placefolderColor);
  font-size: var(--formFontSize);
}
:-ms-input-placeholder {
  color: var(--placefolderColor);
  font-size: var(--formFontSize);
}

.pcOnly {
  display: none;
}

/**************************************
wrap
**************************************/
#outerWrap {
  width: 100%;
  margin: 0 auto;
}

#outerWrap.lock,
#outerWrap.spLock {
  position: fixed;
  overflow: hidden;
  top: 0;
}

/**************************************
btn
**************************************/
.btnNext > a,
.btnNext > button,
.btnNext > span,
.btnNext > input[type="submit"] {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0 1rem;
  width: 100%;
  height: 5rem;
  background: var(--btnColor);
  border-radius: 10px;
  padding: 0 4rem 0 4rem;
  font-family: var(--contentsOtherFont);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1;
  text-decoration: none;
  color: #ffffff;
  position: relative;
  transition: opacity 0.3s ease;
}

/* ph1非表示 */
/* .bid-care .btnNext > a,
.bid-care .btnNext > button,
.bid-care .btnNext > span,
.bid-care .btnNext > input[type="submit"] {
  background: #68C191;
} */

.btnNext > a::after,
.btnNext > button::after,
.btnNext > span::after,
.btnNext > input[type="submit"]::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  mask-image: url("../Contents/ImagesPkg/common/arrow_right.svg");
  mask-repeat: no-repeat;
  mask-position: 50% 50%;
  mask-size: 100%;
  -webkit-mask-image: url("../Contents/ImagesPkg/common/arrow_right.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
  -webkit-mask-size: 100%;
  background: #ffffff;
  position: absolute;
  right: 2rem;
  top: calc(50% - 0.5rem);
  transition: transform 0.3s ease;
  transition: opacity 0.3s ease;
}

.btnNext.cart > a,
.btnNext.subsc > a {
  gap: 0 1.4rem;
  height: 5.5rem;
  font-size: 1.5rem;
  background: #ce4b4b;
}

.btnNext.cart > a::after,
.btnNext.cart > button::after,
.btnNext.cart > span::after,
.btnNext.subsc > a::after,
.btnNext.subsc > button::after,
.btnNext.subsc > span::after {
  display: none;
}

.btnNext.cart > a::before,
.btnNext.cart > button::before,
.btnNext.cart > span::before {
  content: "";
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  mask-image: url("../Contents/ImagesPkg/common/icon_cart.svg");
  mask-repeat: no-repeat;
  mask-position: 50% 50%;
  mask-size: 100%;
  -webkit-mask-image: url("../Contents/ImagesPkg/common/icon_cart.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
  -webkit-mask-size: 100%;
  background: #ffffff;
  transition: opacity 0.3s ease;
}

.btnNext.subsc > a {
  background: #f09a0f;
}
.btnNext.subsc > a::before,
.btnNext.subsc > button::before,
.btnNext.subsc > span::before {
  content: "";
  display: block;
  width: 1.9rem;
  height: 1.5rem;
  background: url("../img/product/icon_subsc.svg") center center no-repeat;
  background-size: 100% 100%;
  transition: opacity 0.3s ease;
}

.btnNext:not(.disabled) > a:hover,
.btnNext:not(.disabled) > button:hover,
.btnNext:not(.disabled) > span:hover,
.btnNext:not(.disabled) > input[type="submit"]:hover {
  opacity: 0.6;
}

/*
.btnNext:not(.disabled) > a:hover::after,
.btnNext:not(.disabled) > button:hover::after,
.btnNext:not(.disabled) > span:hover::after,
.btnNext:not(.disabled) > input[type="submit"]::after{
  transform: translateX(0.5rem);
}
*/

/*
.btnNext.cart:not(.disabled) > a:hover::after,
.btnNext.cart:not(.disabled) > button:hover::after,
.btnNext.cart:not(.disabled) > span:hover::after,
.btnNext.cart:not(.disabled) > input[type="submit"]:hover::after{
  content: '';
  background: url("../Contents/ImagesPkg/common/icon_bag_red.svg") center center no-repeat;
  background-size: 100% 100%;
}
*/

.btnNext.disabled > a,
.btnNext.disabled > button,
.btnNext.disabled > span,
.btnNext > a[disabled],
.btnNext > button[disabled],
.btnNext > span[disabled],
.btnNext > input[type="submit"][disabled] {
  background: var(--disableColor);
  pointer-events: none;
  border-color: var(--disableColor);
}

/** btnBorder *******************/
.btnBorder > a,
.btnBorder > button,
.btnBorder > span {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0 1rem;
  width: 100%;
  height: 4.8rem;
  background-color: #ffffff;
  border: 2px solid var(--btnColor);
  border-radius: 10px;
  padding: 0 4rem 0 4rem;
  font-family: var(--contentsOtherFont);
  font-weight: 700;
  font-size: 1.4rem;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1;
  text-decoration: none;
  color: var(--btnColor);
  position: relative;
  transition: opacity 0.3s ease;
}

.btnBorder > a:hover,
.btnBorder > button:hover,
.btnBorder > span:hover {
  opacity: 0.7;
}

.btnBorder > a::after,
.btnBorder > button::after,
.btnBorder > span::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  mask-image: url("../Contents/ImagesPkg/common/arrow_right.svg");
  mask-repeat: no-repeat;
  mask-position: 50% 50%;
  mask-size: 100%;
  -webkit-mask-image: url("../Contents/ImagesPkg/common/arrow_right.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
  -webkit-mask-size: 100%;
  background: var(--btnColor);
  position: absolute;
  right: 2rem;
  top: calc(50% - 0.5rem);
  transition: transform 0.3s ease;
}

.btnBorder.disabled > a,
.btnBorder.disabled > button,
.btnBorder.disabled > span,
.btnBorder > a[disabled],
.btnBorder > button[disabled],
.btnBorder > span[disabled] {
  background: var(--disableColor);
  pointer-events: none;
  border-color: var(--disableColor);
}

/** btnBack *******************/
.btnBack > a,
.btnBack > button,
.btnBack > span {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0 1rem;
  width: 100%;
  height: 4.8rem;
  background-color: #ffffff;
  border: 2px solid var(--btnColor);
  border-radius: 10px;
  padding: 0 4rem 0 4rem;
  font-family: var(--contentsOtherFont);
  font-weight: 700;
  font-size: 1.4rem;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1;
  text-decoration: none;
  color: var(--btnColor);
  position: relative;
  transition: opacity 0.3s ease;
}

.btnBack > a::after,
.btnBack > button::after,
.btnBack > span::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  mask-image: url("../Contents/ImagesPkg/common/arrow_left.svg");
  mask-repeat: no-repeat;
  mask-position: 50% 50%;
  mask-size: 100%;
  -webkit-mask-image: url("../Contents/ImagesPkg/common/arrow_left.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
  -webkit-mask-size: 100%;
  background: var(--btnColor);
  position: absolute;
  left: 2rem;
  top: calc(50% - 0.5rem);
  transition: transform 0.3s ease;
}

.btnBack.disabled > a,
.btnBack.disabled > button,
.btnBack.disabled > span,
.btnBack > a[disabled],
.btnBack > button[disabled],
.btnBack > span[disabled] {
  background: var(--disableColor);
  pointer-events: none;
  border-color: var(--disableColor);
}

/**************************************
#headAlert
**************************************/
#headAlert {
  display: block;
  width: 100%;
  padding: 0.8rem 3rem;
  background: #fde6df;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #db2320;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-align: center;
}

#headAlert > p {
  display: block;
  width: 100%;
  min-height: 2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.1rem;
  line-height: 2;
  text-align: center;
  position: relative;
}

#headAlert > p::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.2rem;
  background: url("../Contents/ImagesPkg/common/icon_head_info.svg") center
    center no-repeat;
  background-size: 100% auto;
  vertical-align: middle;
  margin-right: 1rem;
}

#headAlert a {
  color: #db2320;
  text-decoration: underline;
}

/**************************************
#header
**************************************/
#header {
  display: block;
  width: 100%;
  position: relative;
  z-index: 1000;
}

#header > .outer {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 1.5rem var(--contentsPadding) 1.5rem var(--contentsPadding);
  margin: 0 auto;
}

/* ph1非表示 */
/* .bid-care #header > .outer::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(60 * (100vw / 375));
  background: #68C191;
  content: "";
} */

#header .inner {
  display: block;
  width: 100%;
}

#header .headLogo {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  width: 20.6rem;
  margin: 0 auto;
}

#header .headLogo > a {
  display: block;
  width: 100%;
}
#header .headLogo picture {
  display: block;
  width: 100%;
}
#header .headLogo img {
  display: block;
  width: 100%;
}

/** headBrandChange **************/
#header .headBrandChange {
  display: block;
  background: #f2f3ef;
  width: 32rem;
  height: 3rem;
  border-radius: 20px;
  margin: 2.5rem auto 0;
  overflow: hidden;
}

#header .headBrandChange > ul {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: center;
  height: 100%;
}

#header .headBrandChange > ul > li {
  display: block;
  width: 50%;
}

#header .headBrandChange > ul > li > a {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0 1rem;
  width: 100%;
  height: 100%;
  background: #f2f3ef;
  border-radius: 6rem;
  padding: 0 1rem 0 1rem;
  font-family: var(--contentsTitleFont);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  line-height: 1;
  text-decoration: none;
  color: #7c7c7c;
  position: relative;
  /* transition: opacity 0.3s ease; */
  transition: opacity 0.3s ease;
}

.bid-main #header .headBrandChange > ul > li.to-main > a,
.bid-care #header .headBrandChange > ul > li.to-care > a {
  background: var(--btnColor);
  color: #ffffff;
  pointer-events: none;
}

#header .headBrandChange > ul > li > a > span {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 1rem;
  height: 1rem;
  position: relative;
}

.bid-main #header .headBrandChange > ul > li.to-main > a > span > span,
.bid-main #header .headBrandChange > ul > li.to-main > a > span::before,
.bid-main #header .headBrandChange > ul > li.to-main > a > span::after,
.bid-care #header .headBrandChange > ul > li.to-care > a > span > span,
.bid-care #header .headBrandChange > ul > li.to-care > a > span::before,
.bid-care #header .headBrandChange > ul > li.to-care > a > span::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: #ffffff;
}

.bid-main #header .headBrandChange > ul > li.to-care > a > span > span,
.bid-main #header .headBrandChange > ul > li.to-care > a > span::before,
.bid-main #header .headBrandChange > ul > li.to-care > a > span::after,
.bid-care #header .headBrandChange > ul > li.to-main > a > span > span,
.bid-care #header .headBrandChange > ul > li.to-main > a > span::before,
.bid-care #header .headBrandChange > ul > li.to-main > a > span::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: #7c7c7c;
}

/** headUtility **************/
#headBtnNav {
  display: block;
  width: 100%;
  height: var(--headNavHeight);
  background: url("../Contents/ImagesPkg/common/bg_sp_nav.png") center bottom
    no-repeat;
  background-size: 100% auto;
  padding-top: 2rem;
  position: fixed;
  bottom: 0;
  left: 0;
}

#headBtnNav > ul {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0 1rem;
}

#headBtnNav > ul > li {
  display: block;
  height: 6.6rem;
  width: 20%;
  position: relative;
}
#headBtnNav > ul > li:nth-last-of-type(1) {
  border: none;
}

#headBtnNav > ul > li > a {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0.2rem 0 0;
  color: var(--txtColor);
  text-decoration: none;
  text-align: center;
  position: relative;
  white-space: nowrap;
  font-size: 1rem;
  letter-spacing: 0.03em;
  font-weight: 700;
}

#headBtnNav > ul > li > a > em {
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  margin: 0 auto 0.4rem;
  background: #7c7c7c;
}

#headBtnNav > ul > li.current > a {
  color: #2c2c2c;
}
#headBtnNav > ul > li.current > a > em {
  background: #2c2c2c;
}

#headBtnNav > ul > li.login > a > em {
  mask-image: url("../Contents/ImagesPkg/common/icon_user.svg");
  mask-repeat: no-repeat;
  mask-position: 50% 50%;
  mask-size: 100%;
  -webkit-mask-image: url("../Contents/ImagesPkg/common/icon_user.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
  -webkit-mask-size: 100%;
}
#headBtnNav > ul > li.guide > a > em {
  mask-image: url("../Contents/ImagesPkg/common/icon_guide.svg");
  mask-repeat: no-repeat;
  mask-position: 50% 50%;
  mask-size: 100%;
  -webkit-mask-image: url("../Contents/ImagesPkg/common/icon_guide.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
  -webkit-mask-size: 100%;
}

#headBtnNav > ul > li.favorite > a > em {
  mask-image: url("../Contents/ImagesPkg/common/icon_favorite.svg");
  mask-repeat: no-repeat;
  mask-position: 50% 50%;
  mask-size: 100%;
  -webkit-mask-image: url("../Contents/ImagesPkg/common/icon_favorite.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
  -webkit-mask-size: 100%;
}
#headBtnNav > ul > li.cart > a > em {
  mask-image: url("../Contents/ImagesPkg/common/icon_cart.svg");
  mask-repeat: no-repeat;
  mask-position: 50% 50%;
  mask-size: 100%;
  -webkit-mask-image: url("../Contents/ImagesPkg/common/icon_cart.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
  -webkit-mask-size: 100%;
}
#headBtnNav > ul > li.cart > a > span {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  background: var(--btnColor);
  position: absolute;
  top: 1.2rem;
  left: calc(50% + 0.6rem);
}

#headBtnNav > ul > li > ul {
  display: none;
}

/**openBtn**/
#headBtnNav > ul > li#spNavOpenBtn {
}

#headBtnNav > ul > li#spNavOpenBtn > span {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  width: 6.4rem;
  height: 6.4rem;
  margin: -0.1rem auto 0;
  padding: 0 0 0.5rem;
  background: #2c2c2c;
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  position: relative;
  white-space: nowrap;
  font-size: 1rem;
  letter-spacing: 0.03em;
  font-weight: 700;
}

#headBtnNav > ul > li#spNavOpenBtn > span > em {
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  margin: 0 auto 0.2rem;
  background: url("../Contents/ImagesPkg/common/icon_sp_menu.svg") center center
    no-repeat;
  background-size: 100% auto;
}

/** headNav *****************************************************/
#headNav {
  display: block;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding: 1.5rem 1.5rem 0;
  opacity: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  position: fixed;
  top: 0;
  right: 0;
  z-index: -1;
  transition: /*transform 0.3s ease,*/ opacity 0.2s ease;
  transform: translate(100vw, 0);
  backface-visibility: hidden;
}

/*
#headNav::after{
  content: '';
  display: block;
  height: 2rem;
}
*/

#headNav.spOpen {
  transform: translate(0, 0);
  opacity: 1;
  z-index: 1001;
}

#headNavBg {
  display: block;
  height: 8rem;
}

#headNav.spOpen + #spHeadNavBg {
  display: block;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
}

#headNav .headNavInner {
  display: block;
  width: 100%;
  margin: 0 auto;
  background: #f2f3ef;
  border-radius: 3rem;
  padding: 3rem 2rem;
  position: relative;
  pointer-events: auto;
}

#spNavClose {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  right: 2rem;
  top: 2rem;
}
#spNavClose > img {
  display: block;
  width: 1rem;
  height: auto;
}

/** keyWordSearh **************/
#header dl.keyWordSearh {
  display: block;
  margin-bottom: 3rem;
}
#header dl.keyWordSearh > dt {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0 2rem;
  margin-bottom: 1.5rem;
}

#header dl.keyWordSearh > dt > span:nth-of-type(1) {
  order: 2;
  font-family: var(--contentsTitleFont);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: #7c7c7c;
}
#header dl.keyWordSearh > dt > span:nth-of-type(2) {
  order: 1;
  font-family: var(--contentsOtherFont);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: #2c2c2c;
}

#header dl.keyWordSearh > dd {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  border: 1px solid #dddddd;
  border-radius: 6px;
  background: #ffffff;
}

#header dl.keyWordSearh > dd > input[type="text"] {
  display: block;
  height: 5rem;
  width: calc(100% - 4rem);
  padding: 0 1.5rem 0;
  background: #ffffff;
  border: none;
  border-radius: 6px;
  vertical-align: middle;
  line-height: 4.8rem;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: left;
  cursor: pointer;
  outline-color: var(--txtColor);
}

#header dl.keyWordSearh > dd > input[type="text"]:placeholder-shown {
  color: #7c7c7c;
  font-size: var(--formFontSize);
}
#header dl.keyWordSearh > dd > input[type="text"]::-webkit-input-placeholder {
  color: #7c7c7c;
  font-size: var(--formFontSize);
}
#header dl.keyWordSearh > dd > input[type="text"]:-moz-placeholder {
  color: #7c7c7c;
  font-size: var(--formFontSize);
}
#header dl.keyWordSearh > dd > input[type="text"]::-moz-placeholder {
  color: #7c7c7c;
  font-size: var(--formFontSize);
}
#header dl.keyWordSearh > dd > input[type="text"]:-ms-input-placeholder {
  color: #7c7c7c;
  font-size: var(--formFontSize);
}

#header dl.keyWordSearh > dd > a {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  width: 4rem;
}
#header dl.keyWordSearh > dd > a > img {
  display: block;
  width: 2rem;
  height: auto;
}

/** categorySearchBox **************/
#categorySearchBox .pcCategoryBtn {
  display: none;
}

/*categoryNav　********************/
#categorySearchBox .categorySearchOuter {
  display: block;
  width: 100%;
}
/**************************************
CategoryTreeHead
**************************************/
.scene-category-wrapper {
  width: 100%;
  padding: 40px 20px;
  margin-bottom: 40px;
  background: #fff;
}

/* ブランドメッセージブロック */
.brand-message-block {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  align-items: stretch;
}

.message-content {
  flex: 1;
  padding: 30px;
  background: #f5f5f5;
  border-radius: 8px;
}

.message-content h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
  color: #333;
}

.message-content p {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
}

.message-image {
  flex: 1;
  display: flex;
  align-items: stretch;
}

.message-image .scene-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.message-image .scene-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* シーンカードグリッド */
.scene-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.scene-card {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.scene-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.scene-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.scene-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
}
/* シーン別ラベル背景色 */
.scene-sleep .scene-label {
  background: rgba(237, 198, 170, 0.95);
}

.scene-family .scene-label {
  background: rgba(234, 216, 154, 0.95);
}

.scene-work .scene-label {
  background: rgba(136, 181, 219, 0.95);
}

.scene-mama .scene-label {
  background: rgba(219, 165, 180, 0.95);
}

.scene-care .scene-label {
  background: rgba(176, 201, 149, 0.95);
}

.brand-message-block {
  flex-direction: column;
}

.scene-cards-grid {
  grid-template-columns: repeat(2, 1fr);
}

.message-content h2 {
  font-size: 1.4rem;
}

.message-content p {
  font-size: 13px;
}

@media (max-width: 480px) {
  .scene-cards-grid {
    grid-template-columns: 1fr;
  }
}
/*categorySearch **/
#categorySearchBox dl.categorySearch {
  display: block;
  width: 100%;
}

#categorySearchBox dl.categorySearch > dt {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0 2rem;
  margin-bottom: 1.5rem;
}
#categorySearchBox dl.categorySearch > dt > span:nth-of-type(1) {
  order: 2;
  font-family: var(--contentsTitleFont);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: #7c7c7c;
}
#categorySearchBox dl.categorySearch > dt > span:nth-of-type(2) {
  order: 1;
  font-family: var(--contentsOtherFont);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: #2c2c2c;
}

#categorySearchBox dl.categorySearch > dt > span#categoryNavClose {
  display: none;
}

#categorySearchBox dl.categorySearch > dd {
}

#categorySearchBox .categoryNav > ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem 0;
}

#categorySearchBox .categoryNav > ul > li {
  display: block;
  width: 100%;
}

#categorySearchBox .categoryNav > ul > li > a {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0 1rem;
  width: 100%;
  min-height: 6rem;
  padding: 0.5rem 4rem 0.5rem 1rem;
  background: url("../Contents/ImagesPkg/common/arrow_narrow_right_gray.svg")
    calc(100% - 2rem) center no-repeat #ffffff;
  background-size: 0.7rem auto;
  border-radius: 10px;
  overflow: hidden;
}

#categorySearchBox .categoryNav > ul > li > a > img {
  display: block;
  width: 5rem;
  height: auto;
  background: #f2f3ef;
  border-radius: 50%;
}

#categorySearchBox .categoryNav > ul > li > a > span {
  display: block;
  width: calc(100% - 6rem);
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  font-weight: 500;
  line-height: 1.2;
  color: #2c2c2c;
}

#categorySearchBox .categoryNav > ul > li > dl {
  display: block;
}
#categorySearchBox .categoryNav > ul > li > dl > dt {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0 1rem;
  width: 100%;
  min-height: 6rem;
  padding: 0.5rem 4rem 0.5rem 1rem;
  border-radius: 10px;
  background: #ffffff;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

#categorySearchBox .categoryNav > ul > li > dl.open > dt {
  border-radius: 10px 10px 0 0;
}

#categorySearchBox .categoryNav > ul > li > dl > dt::before,
#categorySearchBox .categoryNav > ul > li > dl > dt::after {
  content: "";
  display: block;
  width: 1rem;
  height: 2px;
  background: #adadad;
  position: absolute;
  right: 2rem;
  top: calc(50% - 1px);
}

#categorySearchBox .categoryNav > ul > li > dl > dt::after {
  transform: rotate(90deg);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
#categorySearchBox .categoryNav > ul > li > dl.open > dt::after {
  transform: rotate(0);
  opacity: 0;
}

#categorySearchBox .categoryNav > ul > li > dl > dt > img {
  display: block;
  width: 5rem;
  height: auto;
  background: #f2f3ef;
  border-radius: 50%;
}

#categorySearchBox .categoryNav > ul > li > dl > dt > span {
  display: block;
  width: calc(100% - 6rem);
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  font-weight: 500;
  line-height: 1.2;
  color: #2c2c2c;
}

#categorySearchBox .categoryNav > ul > li > dl > dd {
  display: none;
  padding-bottom: 10px;
  background: #ffffff;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}
#categorySearchBox .categoryNav > ul > li > dl > dd > ul {
  display: block;
}
#categorySearchBox .categoryNav > ul > li > dl > dd > ul > li {
  display: block;
}

#categorySearchBox .categoryNav > ul > li > dl > dd > ul > li > a {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0 1rem;
  width: 100%;
  min-height: 4rem;
  padding: 0.6rem 3.8rem 0.6rem 2rem;
  background: url("../Contents/ImagesPkg/common/arrow_narrow_right_gray.svg")
    calc(100% - 2.1rem) center no-repeat #ffffff;
  background-size: 0.7rem auto;
  font-size: 1.2rem;
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-align: left;
  color: #2c2c2c;
}

#categorySearchBox .categoryNav > .btnNext {
  display: none;
}

/** guideNav **************/
#headNav .headNavInner > .guideNav {
  display: block;
  height: 100%;
  margin-top: 3rem;
}

#headNav .headNavInner > .guideNav > dl {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

#headNav .headNavInner > .guideNav > dl.sns {
  align-items: center;
}

#headNav .headNavInner > .guideNav > dl + dl {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 2px solid #e5e5e5;
}

#headNav .headNavInner > .guideNav > dl > dt {
  display: block;
  width: 11rem;
  padding-top: 0.5rem;
  font-family: var(--contentsOtherFont);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #7c7c7c;
}

#headNav .headNavInner > .guideNav > dl > dd {
  display: block;
  width: calc(100% - 11rem);
}

#headNav .headNavInner > .guideNav > dl > dd > ul:not(.snsBtns) {
  display: block;
}
#headNav .headNavInner > .guideNav > dl > dd > ul:not(.snsBtns) > li {
}
#headNav .headNavInner > .guideNav > dl > dd > ul:not(.snsBtns) > li + li {
  margin-top: 2rem;
}

#headNav .headNavInner > .guideNav > dl > dd > ul:not(.snsBtns) > li > a {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  color: #7c7c7c;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.5;
  text-align: left;
  position: relative;
}

#headNav
  .headNavInner
  > .guideNav
  > dl
  > dd
  > ul:not(.snsBtns)
  > li
  > a::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2.25rem;
  mask-image: url("../Contents/ImagesPkg/common/arrow_right.svg");
  mask-repeat: no-repeat;
  mask-position: 0 50%;
  mask-size: 50%;
  -webkit-mask-image: url("../Contents/ImagesPkg/common/arrow_right.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 50%;
  -webkit-mask-size: 50%;
  background: #2c2c2c;
}

#headNav
  .headNavInner
  > .guideNav
  > dl
  > dd
  > ul:not(.snsBtns)
  > li.blank
  > a::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2.25rem;
  mask-image: url("../Contents/ImagesPkg/common/icon_blank.svg");
  mask-repeat: no-repeat;
  mask-position: 0 50%;
  mask-size: 60%;
  -webkit-mask-image: url("../Contents/ImagesPkg/common/icon_blank.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 50%;
  -webkit-mask-size: 60%;
  background: #2c2c2c;
}

#headNav
  .headNavInner
  > .guideNav
  > dl
  > dd
  > ul:not(.snsBtns)
  > li
  > a
  > span {
  display: none;
}

#headNav .headNavInner > .guideNav > dl > dd > ul.snsBtns {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0 2rem;
}
#headNav .headNavInner > .guideNav > dl > dd > ul.snsBtns > li {
  display: block;
  width: 3.7rem;
}
#headNav .headNavInner > .guideNav > dl > dd > ul.snsBtns > li > a {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3.7rem;
  background: #ffffff;
  border-radius: 50%;
  overflow: hidden;
}
#headNav .headNavInner > .guideNav > dl > dd > ul.snsBtns > li > a > img {
  display: block;
  width: 100%;
  height: auto;
}

/**************************************
footer
**************************************/

#footer {
  display: block;
  width: 100%;
  margin-top: 9rem;
  padding: 4rem var(--contentsPadding) calc(var(--headNavHeight) + 4rem);
  border-radius: 5rem 5rem 0 0;
  background: #f2f3ef;
  position: relative;
}

#footer .footInner {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  position: relative;
}

/* footAbout ***/
#footer .footNav {
  display: block;
}

#footer .footNav .logo {
  display: block;
  width: 18rem;
  padding-left: 1rem;
  margin-bottom: 4rem;
}
#footer .footNav .logo > a {
  display: block;
  width: 100%;
}
#footer .footNav .logo > a > img {
  display: block;
  width: 100%;
  height: auto;
}

#footer .footNav .guideNav {
  display: block;
}

#footer .footNav .guideNav > dl {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0 1rem;
}

#footer .footNav .guideNav > dl.sns {
  align-items: center;
}

#footer .footNav .guideNav > dl + dl {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 2px solid #e5e5e5;
}

#footer .footNav .guideNav > dl > dt {
  display: block;
  width: 11rem;
  padding-top: 0.5rem;
  font-family: var(--contentsOtherFont);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #7c7c7c;
}

#footer .footNav .guideNav > dl > dd {
  display: block;
  width: calc(100% - 11rem);
}

#footer .footNav .guideNav > dl > dd > ul:not(.snsBtns) {
  display: block;
}
#footer .footNav .guideNav > dl > dd > ul:not(.snsBtns) > li {
}
#footer .footNav .guideNav > dl > dd > ul:not(.snsBtns) > li + li {
  margin-top: 2rem;
}

#footer .footNav .guideNav > dl > dd > ul:not(.snsBtns) > li > a {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  color: #7c7c7c;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.5;
  text-align: left;
  position: relative;
}

#footer .footNav .guideNav > dl > dd > ul:not(.snsBtns) > li > a::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2.25rem;
  mask-image: url("../Contents/ImagesPkg/common/arrow_right.svg");
  mask-repeat: no-repeat;
  mask-position: 0 50%;
  mask-size: 50%;
  -webkit-mask-image: url("../Contents/ImagesPkg/common/arrow_right.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 50%;
  -webkit-mask-size: 50%;
  background: #2c2c2c;
}

#footer .footNav .guideNav > dl > dd > ul:not(.snsBtns) > li.blank > a::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2.25rem;
  mask-image: url("../Contents/ImagesPkg/common/icon_blank.svg");
  mask-repeat: no-repeat;
  mask-position: 0 50%;
  mask-size: 60%;
  -webkit-mask-image: url("../Contents/ImagesPkg/common/icon_blank.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 50%;
  -webkit-mask-size: 60%;
  background: #2c2c2c;
}

#footer .footNav .guideNav > dl > dd > ul:not(.snsBtns) > li > a > span {
  display: none;
}

#footer .footNav .guideNav > dl > dd > ul.snsBtns {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0 2rem;
}
#footer .footNav .guideNav > dl > dd > ul.snsBtns > li {
  display: block;
  width: 3.7rem;
}
#footer .footNav .guideNav > dl > dd > ul.snsBtns > li > a {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3.7rem;
  background: #ffffff;
  border-radius: 50%;
  overflow: hidden;
}
#footer .footNav .guideNav > dl > dd > ul.snsBtns > li > a > img {
  display: block;
  width: 100%;
  height: auto;
}

/*footUnder**/
#footer .footUnder {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 2px solid #e5e5e5;
}

#footer .footContentsNav {
  display: block;
  width: calc(100% - 13rem);
}

#footer .footContentsNav > ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem 3rem;
}

#footer .footContentsNav > ul > li {
}
#footer .footContentsNav > ul > li > a {
  color: #7c7c7c;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}
#footer .footCopy {
  display: block;
  width: 13rem;
  font-family: var(--contentsOtherFont);
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  color: #7c7c7c;
  font-weight: 500;
  text-align: right;
  white-space: nowrap;
}

/*pageTop**/
#btnPageTop {
  display: block;
  width: 5rem;
  position: absolute;
  right: 0;
  top: -6rem;
  z-index: 10;
}

#btnPageTop > a {
  display: block;
  width: 100%;
  height: 13rem;
}

#btnPageTop > a:hover {
  opacity: 1;
}

#btnPageTop > a > em {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  margin-bottom: 3rem;
  border-radius: 50%;
  background: #2c2c2c;
  transition: background 0.3s ease;
}
#btnPageTop > a > em > img {
  display: block;
  width: 1rem;
  height: auto;
}

#btnPageTop > a:hover > em {
  background: #7c7c7c;
}

#btnPageTop > a > span {
  display: block;
  font-family: var(--contentsOtherFont);
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: #2c2c2c;
  font-weight: 700;
  white-space: nowrap;
  transform: rotate(90deg);
  transition: color 0.3s ease;
}

#btnPageTop > a:hover > span {
  color: #7c7c7c;
}

/**************************************
fadeInBlock
**************************************/
.fadeInBlock {
  transform: translate(0, 10rem);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}

.fadeInBlock.leftIn {
  transform: translate(-10rem, 0);
}

.fadeInBlock.rightIn {
  transform: translate(10rem, 0);
}

.fadeInBlock.visible {
  transform: translate(0, 0);
  opacity: 1;
}

/**************************************
productsList
**************************************/
.itemList {
  display: block;
}

.itemList.sliderList,
.itemList.spSliderList {
  /*overflow: hidden;*/
  position: relative;
}

.itemList > ul {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
}

.itemList.sliderList ul.control,
.itemList.spSliderList ul.control {
  display: block;
  position: relative;
}
.itemList.sliderList ul.control > li,
.itemList.spSliderList ul.control > li {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  z-index: 3;
  cursor: pointer;
  transition: opacity 0.3s ease;
  position: absolute;
  top: 6.5rem;
}

.itemList.sliderList ul.control > li > img,
.itemList.spSliderList ul.control > li > img {
  display: block;
  width: 1.5rem;
  height: auto;
  margin: 0 auto;
}

.itemList.sliderList ul.control > li.next,
.itemList.spSliderList ul.control > li.next {
  right: -1.5rem;
}
.itemList.sliderList ul.control > li.prev,
.itemList.spSliderList ul.control > li.prev {
  left: -1.5rem;
}

.itemList.sliderList ul.control > li.swiper-button-disabled {
  opacity: 0;
  cursor: inherit;
}
.itemList.sliderList ul.control > li.swiper-button-lock {
  display: none;
}

.itemList.spSliderList ul.control > li.swiper-button-disabled {
  opacity: 0;
  cursor: inherit;
}
.itemList.spSliderList ul.control > li.swiper-button-lock {
  display: none;
}

.itemList.spSliderList > ul.sliderWrapper,
.itemList.sliderList > ul.sliderWrapper {
  flex-wrap: nowrap;
}

.itemList > ul > li,
.itemList > ul > li.slider {
  display: block;
  width: calc(50% - 0.25rem);
  margin-right: 0.5rem;
}

.itemList.spSliderList.item6c > ul:not(.control) > li {
  width: calc((100% - 1.2rem) / 3);
  margin-right: 0.6rem;
}

.itemList.spSliderList.item6c > ul.control > li {
  top: 3.7rem;
}

.itemList > ul > li:nth-of-type(2n) {
  margin-right: 0;
}
.itemList > ul > li:nth-of-type(n + 3) {
  margin-top: 2rem;
}

.itemList.sliderList > ul > li:nth-of-type(2n),
.itemList.spSliderList > ul > li:nth-of-type(2n) {
  margin-right: 0.5rem;
}
.itemList.sliderList > ul > li:nth-of-type(n + 3),
.itemList.spSliderList > ul > li:nth-of-type(n + 3) {
  margin-top: 0;
}
.itemList.sliderList > ul > li:nth-last-of-type(1),
.itemList.spSliderList > ul > li:nth-last-of-type(1) {
  margin-right: 0;
}

.itemList.spSliderList.item6c > ul > li:nth-of-type(2n) {
  margin-right: 0.6rem;
}

.itemList > ul > li > .outer {
  display: block;
}

/***fig***/
.itemList > ul > li .fig {
  display: block;
  width: 100%;
  padding-bottom: var(--itemImgRatio);
  overflow: hidden;
  position: relative;
}

.itemList > ul > li .fig .soldOut {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(124, 124, 124, 0.4);
  color: #ffffff;
  font-family: var(--fontEN);
  text-align: center;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.itemList > ul > li .fig > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}

/***itemIcons***/
.itemList > ul > li ul.itemIcons {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: var(--iconGap);
  width: 100%;
  margin-top: 1.5rem;
}

.itemList > ul > li ul.itemIcons > li {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  min-height: var(--iconHeight);
  padding: var(--iconPadding);
  background: var(--icon01color);
  border: var(--icon01Border);
  border-radius: var(--iconRadius);
  font-family: var(--iconFont);
  font-size: var(--iconFontSize);
  font-weight: var(--iconFontWeight);
  color: var(--icon01txt);
  text-align: center;
  line-height: 1;
  letter-spacing: 0.02em;
}
.itemList > ul > li ul.itemIcons > li.icon01 {
  background: var(--icon01color);
  color: var(--icon01txt);
  border: var(--icon01Border);
}
.itemList > ul > li ul.itemIcons > li.icon02 {
  background: var(--icon02color);
  color: var(--icon02txt);
  border: var(--icon02Border);
}
.itemList > ul > li ul.itemIcons > li.icon03 {
  background: var(--icon03color);
  color: var(--icon03txt);
  border: var(--icon03Border);
}
.itemList > ul > li ul.itemIcons > li.icon04 {
  background: var(--icon04color);
  color: var(--icon04txt);
  border: var(--icon04Border);
}
.itemList > ul > li ul.itemIcons > li.icon05 {
  background: var(--icon05color);
  color: var(--icon05txt);
  border: var(--icon05Border);
}
.itemList > ul > li ul.itemIcons > li.icon06 {
  background: var(--icon06color);
  color: var(--icon06txt);
  border: var(--icon06Border);
}
.itemList > ul > li ul.itemIcons > li.icon07 {
  background: var(--icon07color);
  color: var(--icon07txt);
  border: var(--icon07Border);
}
.itemList > ul > li ul.itemIcons > li.icon08 {
  background: var(--icon08color);
  color: var(--icon08txt);
  border: var(--icon08Border);
}
.itemList > ul > li ul.itemIcons > li.icon09 {
  background: var(--icon09color);
  color: var(--icon09txt);
  border: var(--icon09Border);
}
.itemList > ul > li ul.itemIcons > li.icon10 {
  background: var(--icon10color);
  color: var(--icon10txt);
  border: var(--icon10Border);
}

/***productID***/
.itemList > ul > li .productID {
  font-size: 1.2rem;
  margin-top: 1rem;
}

/***name***/
.itemList > ul > li .name {
  display: block;
  /*
	display: -webkit-box;
	-webkit-box-orient: vertical;
  -webkit-line-clamp: var(--itemNameClamp);
  */
  width: 100%;
  padding: 1rem 0 0 0;
  font-size: var(--itemNameFontSize);
  text-align: left;
  line-height: var(--itemNameLineHeight);
  font-weight: var(--itemNameWeight);
  letter-spacing: 0.1em;
}

.itemList.item6c > ul > li .name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--itemNameClamp);
  overflow: hidden;
}

/***price***/
.itemList > ul > li .price {
  display: block;
  width: 100%;
  padding-top: 1rem;
  line-height: 1;
  font-family: var(--contentsOtherFont);
}

.itemList > ul > li .price .priceInner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-start;
  gap: 0.4rem 1rem;
  width: 100%;
}

.itemList > ul > li .price p {
  font-size: 1.8rem;
  font-weight: 700;
}
.itemList > ul > li .price p em {
  font-size: 1rem;
  font-weight: 700;
  margin-left: 0.3rem;
  letter-spacing: 0.05em;
}

.itemList > ul > li .price .normal {
  width: 100%;
}

/***sale***/
.itemList > ul > li .price .sale {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.3rem 0.9rem;
  width: auto;
  color: var(--saleColor);
}
.itemList > ul > li .price .sale .rate {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  height: 1.6rem;
  padding: 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--saleColor);
  color: #ffffff;
  display: none;
}

.itemList > ul > li .price .sale + .normal {
  width: auto;
  /*
  padding-top: 0.3rem;
  font-size: 1.5rem;
  font-weight: 400;
  */
  position: relative;
}
.itemList > ul > li .price .sale + .normal::before {
  content: "";
  display: block;
  height: 1px;
  width: calc(100% - 2.5rem);
  background: var(--txtColor);
  position: absolute;
  left: 0;
  top: calc(50% + 1px);
}

/***subscription***/
.itemList > ul > li .price .subscription {
  width: 100%;
}
.itemList > ul > li .price .subscription.first + .subscription {
}

.itemList > ul > li .price .subscription {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0 1rem;
  color: var(--txtColor);
}

.itemList > ul > li .price .subscription::before {
  content: "定期価格";
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  min-width: 6.2rem;
  padding-right: 0.9rem;
  white-space: nowrap;
  border-right: 1px solid var(--txtColor);
  color: var(--txtColor);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
}
.itemList > ul > li .price .subscription.first {
  color: var(--subscColor);
}
.itemList > ul > li .price .subscription.first::before {
  content: "定期初回";
  color: var(--subscColor);
  border-color: var(--subscColor);
}

.itemList > ul > li .price .subscription + .normal {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0 1rem;
}
.itemList > ul > li .price .subscription + .normal::before {
  content: "通常価格";
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  min-width: 6.2rem;
  padding-right: 0.9rem;
  white-space: nowrap;
  border-right: 1px solid var(--txtColor);
  color: var(--txtColor);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
}
.itemList > ul > li .price .subscription + .sale + .normal {
  display: none;
}

.itemList > ul > li .price .subscription + .sale {
  align-items: center;
}

.itemList > ul > li .price .subscription + .sale::before {
  content: "割引価格";
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  min-width: 6.2rem;
  padding-right: 0.9rem;
  white-space: nowrap;
  border-right: 1px solid var(--saleColor);
  color: var(--saleColor);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
}

/* rankingList *******/
.itemList.rankingList > ul > li:nth-of-type(2n) {
  margin-right: 0.5rem;
}
.itemList.rankingList > ul > li:nth-of-type(2n + 1) {
  margin-right: 0;
}
.itemList.rankingList > ul > li:nth-of-type(n + 2) {
  margin-top: 2rem;
}

.itemList.rankingList > ul > li:nth-of-type(1) {
  width: 100%;
}

.itemList.rankingList > ul > li:nth-of-type(1) > a {
  width: 74.66666666666667%;
  margin: 0 auto;
}

.itemList > ul > li .rank {
  display: block;
  height: 4rem;
  padding-top: 1rem;
  margin: 0 auto -1rem;
  position: relative;
  z-index: 2;
}
.itemList > ul > li .rank > img {
  display: block;
  height: 100%;
  width: auto;
  margin: 0 auto;
}

.itemList > ul > li:nth-of-type(1) .rank {
  padding-top: 0;
}

/* delete *******/
.itemList > ul > li .btnDelete {
  display: block;
  width: 100%;
  margin: 1rem auto 0;
}

.itemList > ul > li .btnDelete > a {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  height: 3rem;
  border-radius: 1.5rem;
  background: #555555;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  text-decoration: none;
  color: #ffffff;
  cursor: pointer;
}
.itemList > ul > li .btnDelete > a::before {
  content: "";
  display: block;
  width: 2.8rem;
  height: 2.8rem;
  background: url(../Contents/ImagesPkg/common/btn_trash.svg) center center
    no-repeat #555555;
  background-size: auto 100%;
}

/**************************************
.noItem
**************************************/
.noItem {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: var(--contentsMaxWidth);
  height: 40vh;
  margin: 0 auto 0;
  border: 2px solid #d3d3d3;
  border-radius: 10px;
  font-size: 2rem;
  text-align: center;
}

/**************************************
.pagerBox
**************************************/
.pagerBox {
}
.pagerBox > .cnt {
  display: none;
}

.listPager {
  display: block;
  width: 100%;
}

.listPager > ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  gap: 1rem 0.4rem;
}

.listPager > ul > li {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  min-width: 2.6rem;
  font-family: var(--contentsOtherFont);
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  position: relative;
}

.listPager > ul > li > a {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.listPager > ul > li > span {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  background: url("../Contents/ImagesPkg/common/bg_pager_current.svg") center
    center no-repeat;
  background-size: 100% auto;
  color: #ffffff;
}

.listPager > ul > li.prev,
.listPager > ul > li.next {
}

.listPager > ul > li.prev > a {
  content: "";
  display: block;
  width: 4rem;
  height: 4rem;
  background: url("../Contents/ImagesPkg/common/arrow_left.svg") center center
    no-repeat;
  background-size: 1rem auto;
  transition: opacity 0.3s ease;
}

.listPager > ul > li.next > a {
  content: "";
  display: block;
  width: 4rem;
  height: 4rem;
  background: url("../Contents/ImagesPkg/common/arrow_right.svg") center center
    no-repeat;
  background-size: 1rem auto;
  transition: opacity 0.3s ease;
}

.listPager > ul > li.prev > span,
.listPager > ul > li.next > span {
  display: none;
}

/**************************************
.breadcrumbs
**************************************/
.breadcrumbs {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 0.7rem 0 0.7rem;
  border-top: 1px solid #f2f3ef;
  border-bottom: 1px solid #f2f3ef;
}

.breadcrumbs > ol {
  display: block;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  font-size: 1.1rem;
  line-height: 1.4rem;
  gap: 1rem 3rem;
  width: 100%;
  padding: 0 var(--contentsPadding);
  margin: 0 auto;
}
.breadcrumbs > ol::-webkit-scrollbar {
  display: none;
}

.breadcrumbs > ol > li {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.4rem;
  white-space: nowrap;
  color: #646464;
  position: relative;
}

.breadcrumbs > ol > li::after {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  margin: 0 1rem;
  border-top: 1px solid #838383;
  border-right: 1px solid #838383;
  transform: rotate(45deg) translateY(-0.2rem);
}
.breadcrumbs > ol > li:nth-last-of-type(1)::after {
  display: none;
}

.breadcrumbs > ol > li a {
  text-decoration: none;
  color: var(--txtColor);
}

/**************************************
.ttl
**************************************/
.sectionTTL {
  display: block;
  margin-bottom: 2rem;
  font-family: var(--contentsTitleFont);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #2c2c2c;
  text-align: center;
}

.sectionTTL > span:nth-child(1) {
  display: block;
  width: 2.5rem;
  height: 3rem;
  margin: 0 auto 1rem;
  mask-image: url(../Contents/ImagesPkg/common/icon_doll.svg);
  mask-repeat: no-repeat;
  mask-position: 50% 50%;
  mask-size: 100%;
  -webkit-mask-image: url(../Contents/ImagesPkg/common/icon_doll.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
  -webkit-mask-size: 100%;
  background: #db2320;
}

.sectionTTL > span:nth-last-child(1) {
  display: block;
  margin-top: 1rem;
  font-family: var(--contentsOtherFont);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  color: #7c7c7c;
}

.recoTTL {
  display: block;
  margin-bottom: 1.5rem;
  font-family: var(--contentsTitleFont);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #2c2c2c;
  text-align: left;
}

/**************************************
.footHistoryItems
**************************************/
.footHistoryItems {
  display: block;
  max-width: var(--contentsOuterWidth);
  padding: 4rem var(--contentsPadding) 0;
  margin: 4rem auto 0;
  border-top: 2px solid #f5f5f5;
  position: relative;
  overflow: hidden;
}

/**************************************
.error
**************************************/
#errInfoSection {
  display: block;
  max-width: calc(1000px + 4rem);
  padding: 2rem 2rem 12rem;
  margin: 0 auto;
}

#errInfoSection .mainTTL {
  display: block;
  margin-bottom: 2rem;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

#errInfoSection .errInfo {
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 2rem;
  padding: 4rem;
  border: 2px solid #d6cfd3;
  border-radius: 8px;
  text-align: center;
}

#errInfoSection .errInfo > .hErrorContent {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

#errInfoSection .errInfo > .errDetail {
  display: block;
  color: #c41933;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
}

#errInfoSection .bottomBtnArea {
  display: block;
  width: 100%;
  margin: 4rem auto 0;
}

#errInfoSection .bottomBtnArea > ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  gap: 0 2rem;
}

#errInfoSection .bottomBtnArea > ul > li:nth-of-type(1) {
  order: 2;
  width: 24rem;
}
#errInfoSection .bottomBtnArea > ul > li:nth-of-type(2) {
  order: 1;
  width: 24rem;
}

/**************************************
refineSearchBox
**************************************/
#refineSearchBox {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding: 0 var(--contentsPadding) 0;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
  pointer-events: none;
  transition: opacity 0.3s ease;
  transform: translate(100vw, 0);
  backface-visibility: hidden;
}

#refineSearchBox.active {
  transform: translate(0, 0);
  opacity: 1;
  pointer-events: inherit;
}

#refineSearchBox #refineSearchBg {
  display: block;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  position: fixed;
  background: rgba(124, 124, 124, 0.8);
  z-index: -1;
  cursor: pointer;
}

#refineSearchBox .refineTTL {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0 1.9rem;
  width: 100%;
  max-width: 75rem;
  height: 5rem;
  padding: 0 5rem;
  border-radius: 10px 10px 0 0;
  background: #f2f3ef;
  font-family: var(--contentsTitleFont);
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: center;
  font-weight: 700;
  color: #2c2c2c;
  position: relative;
}
#refineSearchBox .refineTTL > span {
  display: block;
  width: 1.6rem;
}
#refineSearchBox .refineTTL > span > img {
  width: 100%;
  height: auto;
}

#refineSearchBox .refineTTL > .refineClose {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-size: 100% auto;
  position: absolute;
  right: 1rem;
  top: 1rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
#refineSearchBox .refineTTL > .refineClose > img {
  display: block;
  width: 100%;
  height: auto;
}

#refineSearchBox .refineSearchInner {
  display: block;
  width: 100%;
  max-width: 75rem;
  max-height: calc(90vh - 14.5rem);
  max-height: calc(90dvh - 14.5rem);
  background: #ffffff;
  padding: 0 2.5rem 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

#refineSearchBox .refineSearchInner::after {
  content: "";
  display: block;
  height: 0.5rem;
}

/**共通設定***/
#refineSearchBox .refineSearchInner > dl {
  display: block;
  margin: 0 auto;
  padding: 2rem 0;
}
#refineSearchBox .refineSearchInner > dl:not(:nth-last-of-type(1)) {
  border-bottom: 2px solid #f5f5f5;
}

#refineSearchBox .refineSearchInner > dl > dt {
  display: block;
  width: 100%;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
  font-weight: 500;
  text-align: left;
  letter-spacing: 0.07em;
  line-height: 2.1;
  color: #2c2c2c;
}

#refineSearchBox .refineSearchInner > dl > dd {
  width: 100%;
}

#refineSearchBox .refineSearchInner > dl > dd > ul.keyWordList {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.6rem 0.6rem;
  margin-top: 1rem;
}
#refineSearchBox .refineSearchInner > dl > dd > ul.keyWordList > li {
  width: auto;
}
#refineSearchBox .refineSearchInner > dl > dd > ul.keyWordList > li > a {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 2.5rem;
  padding: 0.2rem 1.5rem;
  background: #f2f3ef;
  border-radius: 14px;
  font-size: 1.3rem;
  line-height: 1.4;
  color: #7c7c7c;
  text-align: center;
  font-weight: 500;
}

#refineSearchBox .refineSearchInner > dl > dd input[type="text"] {
  display: block;
  height: 3.5rem;
  width: 100%;
  padding: 0 1.5rem 0;
  border: 1px solid #c1c1c1;
  border-radius: 5px;
  vertical-align: middle;
  line-height: calc(3.5rem - 2px);
  font-size: 1.3rem;
  text-align: left;
  cursor: pointer;
  outline-color: var(--txtColor);
}

#refineSearchBox .refineSearchInner > dl > dd input[type="number"] {
  display: block;
  height: 3.5rem;
  width: 100%;
  max-width: 11rem;
  padding: 0 1.5rem 0;
  border: 1px solid #c1c1c1;
  border-radius: 5px;
  vertical-align: middle;
  line-height: calc(3.5rem - 2px);
  font-size: 1.3rem;
  text-align: left;
  cursor: pointer;
  outline-color: var(--txtColor);
}
#refineSearchBox
  .refineSearchInner
  > dl
  > dd
  input[type="number"]::-webkit-inner-spin-button,
#refineSearchBox
  .refineSearchInner
  > dl
  > dd
  input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance: textfield;
}

#refineSearchBox .refineSearchInner > dl > dd .priceInputBox {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0 0.8rem;
}

#refineSearchBox .refineSearchInner > dl > dd > ul {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 1rem 1rem;
}

#refineSearchBox .refineSearchInner > dl > dd > ul > li {
  display: block;
  width: calc((100% - 2rem) / 3);
}

#refineSearchBox .refineSearchInner > dl > dd label {
  display: block;
  height: 100%;
}

#refineSearchBox .refineSearchInner > dl > dd label > input[type="radio"] {
  display: none;
}
#refineSearchBox
  .refineSearchInner
  > dl
  > dd
  label
  > input[type="radio"]
  + span {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 3.5rem;
  padding: 1.1rem 1rem 0.9rem;
  border: 1px solid #dddddd;
  border-radius: 6px;
  background: #ffffff;
  font-size: 1.3rem;
  line-height: 1.4;
  text-align: center;
  color: #7c7c7c;
  transition: opacity 0.3s ease, background 0.3s ease, color 0.3s ease;
  cursor: pointer;
}
#refineSearchBox
  .refineSearchInner
  > dl
  > dd
  label
  > input[type="radio"]
  + span:hover {
  opacity: 0.6;
}

#refineSearchBox
  .refineSearchInner
  > dl
  > dd
  label
  > input[type="radio"]:checked
  + span {
  border-color: #2c2c2c;
  color: #2c2c2c;
  background: #f2f3ef;
  font-weight: 700;
}

/* serchBottmBtn **/
#refineSearchBox .serchBottmBtn {
  display: block;
  width: 100%;
  max-width: 75rem;
  height: 9.5rem;
  border-radius: 0 0 10px 10px;
  padding: 0 2rem;
  background: #ffffff;
}

#refineSearchBox .serchBottmBtn > ul {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: center;
  gap: 0 1rem;
  width: 100%;
  max-width: 60rem;
  margin: 0 auto;
  padding-top: 3rem;
  border-top: 2px solid #f5f5f5;
}

#refineSearchBox .serchBottmBtn > ul > li.btnClear {
  order: 1;
  width: 12rem;
}
#refineSearchBox .serchBottmBtn > ul > li.btnNext {
  order: 2;
  width: 18rem;
}

#refineSearchBox .serchBottmBtn > ul > li.btnNext > a {
  height: 4.5rem;
  font-size: 1.3rem;
  padding: 0 1rem 0 1rem;
}
#refineSearchBox .serchBottmBtn > ul > li.btnNext > a::before,
#refineSearchBox .serchBottmBtn > ul > li.btnNext > a::after {
  display: none;
}

#refineSearchBox .serchBottmBtn > ul > li.btnClear > a {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0 1rem;
  width: 100%;
  height: 4.5rem;
  background: #ffffff;
  border: 1px solid #2c2c2c;
  border-radius: 10px;
  padding: 0 1rem 0 1rem;
  font-family: var(--contentsOtherFont);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1;
  text-decoration: none;
  color: #2c2c2c;
  position: relative;
  /* transition: opacity 0.3s ease; */
  transition: background 0.3s ease;
}

/**************************************
leftCategoryNav
**************************************/
.leftCategoryNav {
  display: none;
  width: 100%;
  padding: 3rem 2rem;
  border-radius: 50px;
  background: #f2f3ef;
}

.leftCategoryNav > dl {
  display: block;
  width: 100%;
}

.leftCategoryNav > dl > dt {
  display: block;
  margin-bottom: 2rem;
  font-family: var(--contentsTitleFont);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #2c2c2c;
  text-align: center;
}

.leftCategoryNav > dl > dt::before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 3rem;
  margin: 0 auto 1rem;
  mask-image: url(../Contents/ImagesPkg/common/icon_doll.svg);
  mask-repeat: no-repeat;
  mask-position: 50% 50%;
  mask-size: 100%;
  -webkit-mask-image: url(../Contents/ImagesPkg/common/icon_doll.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
  -webkit-mask-size: 100%;
  background: #7a8ec2;
}

.leftCategoryNav > dl > dt > span:nth-last-child(1) {
  display: block;
  margin-top: 1rem;
  font-family: var(--contentsOtherFont);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  color: #7c7c7c;
}

.leftCategoryNav > dl > dd {
  display: block;
}
.leftCategoryNav > dl > dd > ul {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
}

.leftCategoryNav > dl > dd > ul > li {
  display: block;
  width: calc(50% - 0.25rem);
  margin-right: 0.5rem;
}
.leftCategoryNav > dl > dd > ul > li:nth-of-type(1) {
  display: none;
}
.leftCategoryNav > dl > dd > ul > li:nth-of-type(2n + 1) {
  margin-right: 0;
}
.leftCategoryNav > dl > dd > ul > li:nth-of-type(n + 4) {
  margin-top: 1.5rem;
}

.leftCategoryNav > dl > dd > ul > li > a,
.leftCategoryNav > dl > dd > ul > li > dl > dt > a {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0 1rem;
  width: 100%;
  min-height: 5rem;
  padding: 0 0;
}

.leftCategoryNav > dl > dd > ul > li > a > img,
.leftCategoryNav > dl > dd > ul > li > dl > dt > a > img {
  display: block;
  width: 5rem;
  height: auto;
  background: #ffffff;
  border-radius: 50%;
}

.leftCategoryNav > dl > dd > ul > li > a > span,
.leftCategoryNav > dl > dd > ul > li > dl > dt > a > span {
  display: block;
  width: calc(100% - 6rem);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.3;
  color: #2c2c2c;
}

.leftCategoryNav > dl > dd > ul > li > dl {
  display: block;
}
.leftCategoryNav > dl > dd > ul > li > dl > dt {
  display: block;
}

.leftCategoryNav > dl > dd > ul > li > dl > dd {
  display: none;
}

/**************************************
brandSelect
**************************************/
.brandSelectBanner {
  display: block;
  width: 100%;
}
.brandSelectBanner:not(:first-child) {
  padding-top: 6rem;
}

.brandSelectBanner > ul {
  display: block;
  width: 100%;
  max-width: 34rem;
  margin: 0 auto;
}

.brandSelectBanner > ul > li {
  display: block;
  width: 100%;
}
.brandSelectBanner > ul > li + li {
  margin-top: 1.3rem;
}

.brandSelectBanner > ul > li > a {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #7c7c7c;
  position: relative;
}

.brandSelectBanner > ul > li.regular > a {
  background: #7c7c7c;
}
.brandSelectBanner > ul > li.nursing > a {
  background: #4aad78;
}

.brandSelectBanner > ul > li > a > figure {
  display: block;
  width: 30.55555555555556%;
  height: 100%;
  min-height: 10rem;
  overflow: hidden;
  position: relative;
}
.brandSelectBanner > ul > li > a > figure > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}

.brandSelectBanner > ul > li > a > .text {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem 0.5rem;
  width: 69.44444444444444%;
  padding: 0 4rem 0 3rem;
  font-family: var(--contentsTitleFont);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  color: #ffffff;
}

.brandSelectBanner > ul > li > a > .text::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  mask-image: url(../Contents/ImagesPkg/common/arrow_right.svg);
  mask-repeat: no-repeat;
  mask-position: 0 50%;
  mask-size: 50%;
  -webkit-mask-image: url(../Contents/ImagesPkg/common/arrow_right.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 50%;
  -webkit-mask-size: 50%;
  background: #ffffff;
  position: absolute;
  right: 1rem;
  top: calc(50% - 1rem);
}

.brandSelectBanner > ul > li > a > .text > span {
  display: block;
  font-family: var(--contentsOtherFont);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: left;
}

/**************************************
orverRide
**************************************/
.pcView {
  display: none !important;
}
