@charset "EUC-JP";
/* ヘッダー全体 */
.l-header {
  background-color: #0b0b61; 
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px; 
  z-index: 500;
  display: block;
}
.l-header a,
.l-header input,
.l-header span {
  font-family: "Noto Sans JP", sans-serif !important;
}

@media screen and (min-width: 1025px) {
  .classic {
    --navigationSize: 300px;
    --contentSidePadding: 40px;
  }

  /* サイドナビゲーション */
  .l-navigation {
    width: var(--navigationSize);
    height: calc(100vh - 70px); /* ヘッダーの高さを引いた画面の高さ */
    position: fixed; /* 画面に固定 */
    left: 0;
    top: 70px; /* ヘッダーの下から開始 */
    z-index: 2;
    display: flex;
    flex-direction: column;
	box-shadow: 2px 0 10px rgba(0, 0, 0, 0.08);
  }
  .l-navigation > * {
    padding-left: 32px;
    padding-right: 32px;
  }
  
  /* メインコンテンツエリア */
  .l-main {
    margin-left: var(--navigationSize);
    position: relative;
	margin-top: -3px;
  }
}

.l-header {
  display: block;
}

/* ヘッダー内部のコンテナ */
.l-header__inner {
max-width: 1600px;
height: 100%;
margin: 0 auto;
padding: 0 24px;
display: flex;
justify-content: space-between;
align-items: center;
}
/* ヘッダーロゴ */
.l-header__logo {
  flex-shrink: 0; /* 右側の要素に押されて縮まないようにする */
}
.l-header__logo a {
  display: inline-block;
}
.l-header__logo img {
  max-height: 40px;
  width: auto; /* width指定をautoに戻す */
  vertical-align: middle;
}
/* 右側のナビゲーション全体 */
.l-header__nav {
display: flex;
align-items: center;
gap: 24px;
}
/* ヘッダー内検索バー */
.l-header__search {
position: relative;
}
.l-header__search form {
display: flex;
}
.l-header__search input[type="text"] {
width: 230px;
height: 32px;
padding: 0 40px 0 0;
margin-top:20px;
border: none;
border-bottom: 1px solid #fff;
background: transparent;
color: #fff;
font-size: 14px;
border-radius: 0; 
}
.l-header__search input[type="text"]::placeholder {
color: #ddd;
background-color: #0b0b61;
padding-left: 8px;
}
.l-header__search button {
position: absolute;
right: 0;
bottom: 20px;
width: 32px;
height: 32px;
cursor: pointer;
background: transparent;
border: none;
}
.l-header__search button svg {
width: 22px;
height: 22px;
color: #fff;
}
.l-header__search input:-webkit-autofill,
.l-header__search input:-webkit-autofill:hover,
.l-header__search input:-webkit-autofill:focus {
-webkit-text-fill-color: #ffffff !important;
-webkit-box-shadow: 0 0 0px 1000px #0b0b61 inset !important;
transition: background-color 5000s ease-in-out 0s;
}
/* 電話番号*/
.l-header__nav .c-call {
display: flex;
align-items: center;
gap: 8px;
}
.l-header__nav .c-call img {
max-width: 20px; /* アイコンサイズを調整 */
height: auto;
padding: 0;
}
.l-header__nav .c-call a {
color: #fff;
text-decoration: none;
font-size: 14px;
line-height: 1.3;
font-weight: bold;
}
.l-header__nav .c-call a:hover {
opacity: 0.7;
}
.l-header__nav .c-call .reception-time {
font-size: 10px;
font-weight: normal;
display: block;
color: #fff;
}
/* お気に入り*/
.l-header__favorite-icon {
  width: 24px; 
  height: 24px;
  color: #fff;
  transition: opacity 0.2s ease;
}
.l-header__favorite-icon svg {
  width: 20px; 
  height: 20px;
  fill: #fff;
}
.l-header__favorite-icon:hover {
  opacity: 0.7;
}

/* 会員登録・ログインリンク */
.l-header__member-actions {
display: flex;
gap: 16px;
font-size: 14px;
font-weight: bold;
}
.l-header__member-actions a {
color: #fff;
text-decoration: none;
}
.l-header__member-actions a:hover {
opacity: 0.7;
}
/* カートボタン本体 */
.l-header__cart.c-cart {
font-family: var(--boldfont);
font-weight: bold;
font-size: 14px;
color: #ffffff;
display: flex;
align-items: center;
height: auto;
width: auto;
line-height: 1;
margin-top: 0;
margin-left: auto;
background: transparent;
border: none;
padding: 0;
cursor: pointer;
transition: opacity 0.2s ease;
}
.l-header__cart.c-cart:hover {
opacity: 0.8;
}
.l-header__cart.c-cart .c-cart-icon {
margin-left: 8px;
}
.l-header__cart .c-cart-icon {
position: relative;
width: 24px;
height: 24px;
}
.l-header__cart .c-cart-icon svg {
width: 100%;
height: 100%;
color: #ffffff;
}
/* 通知バッジ */
.l-header__cart .c-cart-icon > span {
width: 16px;
height: 16px;
line-height: 16px;
font-size: 10px;
font-family: var(--normalfont);
font-weight: normal;
background: var(--defaultPointColor);
border-radius: 100%;
color: white;
text-align: center;
white-space: nowrap;
position: absolute;
top: -5px;
right: -8px;
}
.l-header__cart .c-cart-icon > span:empty {
display: none;
}

.classic {
  --itemImageHeightRatio: 100%;
  --itemImageDisplayMethod: contain;
  --itemImageBackground: rgba(0, 0, 0, 0.03);
}
body {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  --defaultColor: #2d2d2d;
  color:var(--defaultColor);
  --defaultBackgroundColor: #FFFFFF;
  background:var(--defaultBackgroundColor);
  --defaultPointColor: red;
  --defaultImportantColor: #199032;
}
body.preventScroll {
  overflow-y: hidden;
}
.classic {
  font-size: 16px;
  --normalfont: "Noto Sans JP", sans-serif;
  --boldfont: "Noto Sans JP", sans-serif;
  font-family: var(--normalfont);
  font-weight: normal;
}
.classic, .classic * {
  box-sizing: border-box;
}
.l-content.isPage {
  padding-top: 80px;
}
.pointColor {
  color: var(--defaultPointColor);
}
.importantColor {
  color: var(--defaultImportantColor);
}
.bold {
  font-family: var(--boldfont);
  font-weight: bold;
}
.linethrough {
  text-decoration: line-through;
}
img {
  border: 0;
  max-width: 100%;
}
img.c-inherit {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  object-fit: cover;
  object-position: center;
}
a {
  transition: opacity 0.2s ease-out;
  text-decoration: none;
  outline: none;
}
a:focus {
  outline: none;
}
a:hover {
  opacity: 0.8;
  text-decoration: none;
}
a:is h1, h2, h3 {
  margin: 0;
  padding: 0;
}
button {
  padding: 0;
}
.forMobile {
  display: none;
}
@media screen and (max-width:1024px) {
  .forMobile {
    display: block;
  }
}
hr {
  width: 100%;
  height: 0;
  border-top: 1px solid var(--defaultColor);
  opacity: 0.15;
  background: transparent;
}
/* slick.css */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track, .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  display: table;
  content: '';
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 800;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}
.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 800;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}
.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}
.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.mfp-align-top .mfp-container:before {
  display: none;
}
.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}
.mfp-ajax-cur {
  cursor: progress;
}
.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}
.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}
.mfp-auto-cursor .mfp-content {
  cursor: auto;
}
.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.mfp-loading.mfp-figure {
  display: none;
}
.mfp-hide {
  display: none !important;
}
.mfp-preloader {
  color: #ccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}
.mfp-preloader a {
  color: #ccc;
}
.mfp-preloader a:hover {
  color: #fff;
}
.mfp-s-ready .mfp-preloader {
  display: none;
}
.mfp-s-error .mfp-content {
  display: none;
}
button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #fff;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}
.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}
.mfp-close:active {
  top: 1px;
}
.mfp-close-btn-in .mfp-close {
  color: #333;
}
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #fff;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}
.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #ccc;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}
.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}
.mfp-arrow:active {
  margin-top: -54px;
}
.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}
.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}
.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}
.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}
.mfp-arrow-left {
left: 0;
}
.mfp-arrow-left:after {
  border-right: 17px solid #fff;
  margin-left: 31px;
}
.mfp-arrow-right {
  right: 0;
}
.mfp-arrow-right:after {
  border-left: 17px solid #fff;
  margin-left: 39px;
}
.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
  top: -40px;
}
.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}
/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}
/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}
.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}
.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}
.mfp-figure figure {
  margin: 0;
}
.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}
.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px;
}
.mfp-image-holder .mfp-content {
  max-width: 100%;
}
.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

.classic input, .classic textarea, .classic select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  border: 0;
  border-radius: 0;
  box-sizing: border-box;
  font-size: 16px;
  color: inherit !important;
  background: none;
}
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  border: 0;
  border-radius: 0;
  box-sizing: border-box;
  font-size: 16px;
  color: inherit;
  background: none;
}
label {
  cursor: pointer;
}
input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button, input[type="month"]::-webkit-outer-spin-button, input[type="month"]::-webkit-inner-spin-button, input[type="datetime-local"]::-webkit-outer-spin-button, input[type="datetime-local"]::-webkit-inner-spin-button, input[type="week"]::-webkit-outer-spin-button, input[type="week"]::-webkit-inner-spin-button, input[type="time"]::-webkit-outer-spin-button, input[type="time"]::-webkit-inner-spin-button, input[type="date"]::-webkit-outer-spin-button, input[type="date"]::-webkit-inner-spin-button {
  display: none;
}
input[type="date"]::-webkit-clear-button, input[type="month"]::-webkit-clear-button, input[type="datetime-local"]::-webkit-clear-button, input[type="time"]::-webkit-clear-button, input[type="week"]::-webkit-clear-button {
  -webkit-appearance: none;
}

.l-content {
/*
  margin-left: auto;
  margin-right: auto;
*/
  width: 100%;
  /* max-width: 1400px; */
  position: relative;
  padding-left: var(--contentSidePadding);
  padding-right: var(--contentSidePadding);
}
.c-drawer {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.c-drawer::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width:1025px) {
  .c-drawer {
    display: block !important;
    overflow-y: scroll;
    margin-top: 12px;
    position: relative;
    height: 100%;
    flex: 1;
    padding-bottom: 130px;
  }
}
@media screen and (max-width:1024px) {
  .classic {
    --navigationSize: 100%;
    --navigationHeight: 70px;
    --contentSidePadding: 6vw;
    display: block;
  }
  .l-navigation {
    width: var(--navigationSize);
    height: var(--navigationHeight);
    min-height: 0;
    min-height: 0;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 200;
    padding: 0;
    background: var(--defaultBackgroundColor);
    display: block;
  }
  .l-navigation .c-drawer {
    display: none;
  }
  .l-main {
    width: 100%;
    height: auto;
    min-height: 0;
    min-height: 0;
    position: relative;
    left: auto;
    top: 68px;
    overflow-x: hidden;
  }
  .l-content {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 100%;
    position: relative;
    padding-left: var(--contentSidePadding);
    padding-right: var(--contentSidePadding);
  }
  .l-content.isPage {
    padding-top: 30px;
  }
  .c-drawer {
    display: none;
    width: 100%;
    height: calc(100vh - var(--navigationHeight));
    min-height: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    background: var(--defaultBackgroundColor);
    padding: 15px var(--contentSidePadding) 130px var(--contentSidePadding);
    position: relative;
  }
}
.c-accordionHeader {
  position: relative;
  cursor: pointer;
}
.c-accordionHeader::before, .c-accordionHeader::after {
  content: "";
  width: 14px;
  height: 2px;
  background: var(--defaultColor);
  position: absolute;
  right: calc(12.5px - 7px);
  top: calc(1.5em * 0.5 - 1px);
}
.c-accordionHeader::after {
  transform: rotate(90deg);
}
.c-accordionHeader.active::after {
  display: none;
}
.c-accordion {
  display: none;
}


.c-pageTitle, .c-sectionTitle {
  position: relative;
  font-size: 30px;
  line-height: 150%;
  font-weight: bold;
  font-family: var(--boldfont);
}
.c-indicator {
  font-weight: bold;
  font-family: var(--boldfont);
  padding: 0.3em;
  line-height: 100%;
}
.c-indicator.isSale {
  background: var(--defaultBackgroundColor);
  color: var(--defaultColor);
}
.c-indicator.isSoldout {
  background: var(--defaultColor);
  color: var(--defaultBackgroundColor);
}
.isListSlider .c-indicator {
  font-size: 60%;
}
*[data-parallax] {
  overflow: hidden;
}
*[data-parallax] img {
  width: 100%;
  height: 130%;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width:1024px) {
  .c-pageTitle {
    font-size: 28px;
  }
  .c-sectionTitle {
    font-size: 24px;
  }
}
.c-favorite {
  position: relative;
  cursor: pointer;
}
.c-favorite::before {
  content: "";
  padding-top: 100%;
  display: block;
}
.c-favorite::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: white;
  border-radius: 100%;
}
.c-favorite > svg {
  width: 50%;
  height: 50%;
  position: absolute;
  left: 25%;
  top: 29%;
  display: block;
  z-index: 2;
  fill: var(--defaultPointColor);
}
.c-favorite:not(.active) svg {
  fill: #e4e4e4;
}
.c-favorite.active.isAnimation::after {
  animation: favoriteBaseAnim 0.2s ease-out 0.0s forwards;
}
.c-favorite.active.isAnimation > svg {
  animation: favoriteIconAnim 0.4s ease-out 0.0s forwards;
}
@keyframes favoriteBaseAnim {
  0% {
    transform: scale(1.0);
  }
  50% {
    transform: scale(0.7);
  }
  100% {
    transform: scale(1.0);
  }
}
@keyframes favoriteIconAnim {
  0% {
    transform: scale(1.0);
  }
  50% {
    transform: scale(0.7);
  }
  75% {
    transform: scale(1.3);
  }
  82% {
    transform: scale(0.8);
  }
  96% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1.0);
  }
}
.c-pulldown {
  height: 50px;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.c-pulldown::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--defaultColor);
  opacity: 0.05;
  z-index: -1;
}
.c-pulldown select {
  color: var(--defaultColor);
  background: transparent;
  outline: none;
  height: 100%;
  padding-left: 20px;
  padding-right: 40px;
}
.c-pulldown::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  right: calc(20px - 6px * 0.5);
  top: calc(20px - 6px * 0.25);
  border-right: 2px solid var(--defaultColor);
  border-bottom: 2px solid var(--defaultColor);
  opacity: 0.5;
  transform: rotate(45deg);
}
.c-items {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.c-items a {
  display: block;
}
.c-items::before, .c-items::after {
  content: "";
  height: 0;
  display: block;
  overflow: hidden;
  padding: 0;
}
.c-items::before {
  order: 1;
}
.c-items a, .c-items::before, .c-items::after {
  width: 33.33%;
  color: var(--defaultColor);
  position: relative;
}
.c-items a {
  margin-top: 40px;
}
@media screen and (max-width:1200px) {
  .c-items a, .c-items::before, .c-items::after {
    width: 50%;
  }
}
.c-items.isSlider {
  display: block;
}
.c-items.isSlider::before, .c-items.isSlider::after {
  content: none;
}
.c-items.isSlider a {
  width: 28.57vw;
  padding-right: 2.85vw;
  position: relative;
}
@media screen and (min-width : 1400px) {
  .c-items.isSlider a {
    width: 400px;
    padding-right: 40px;
  }
}
.c-items.isSlider:not(.slick-initialized) a:not(:first-child) {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
}
.c-items.isListSlider:not(.slick-initialized) {
  display: flex;
  justify-content: left;
}
.c-items.isListSlider.slick-initialized {
  display: block;
}
.c-items.isListSlider::before, .c-items.isListSlider::after {
  content: none;
}
.c-items.isListSlider .slick-track {
  margin-left: 0;
}
.c-items.isListSlider a {
  width: calc(100% / 6);
  display: block;
  position: relative;
}
.c-items.isListSlider:not(.slick-initialized) a:nth-child(n+7) {
  display: none;
}
/* linked with CLASSIC.listSliderResponsiveSetting */
@media screen and (max-width:1100px) {
  .c-items.isListSlider a {
    width: calc(100% / 5);
  }
  .c-items.isListSlider:not(.slick-initialized) a:nth-child(n+6) {
    display: none;
  }
}
@media screen and (max-width:1000px) {
  .c-items.isListSlider a {
    width: calc(100% / 4);
  }
  .c-items.isListSlider:not(.slick-initialized) a:nth-child(n+5) {
    display: none;
  }
}

@media screen and (max-width:900px) {
  .c-items.isListSlider a {
    width: calc(100% / 3);
  }
  .c-items.isListSlider:not(.slick-initialized) a:nth-child(n+4) {
    display: none;
  }
}
.c-items.isSlider.slick-initialized a, .c-items.isListSlider.slick-initialized a {
  height: auto !important;
}
.c-items-image {
  position: relative;
  margin-bottom: 0.8em;
  background: var(--itemImageBackground);
}
.isListSlider .c-items-image {
  margin-bottom: 0;
}
.c-items-image img:not(.c-favorite img) {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: var(--itemImageDisplayMethod);
  object-position: center;
}
.c-items-image::before {
  content: "";
  padding-top: var(--itemImageHeightRatio);
  display: block;
}
.c-items-name {
  margin-bottom: 0.5em;
}
.c-items-listPrice {
  font-size: 14px;
  line-height: 150%;
  text-decoration: line-through;
}
.c-items .c-indicator {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 10;
}
.c-items .c-favorite {
  width: 48px;
  height: 48px;
  position: absolute;
  right: 10px;
  bottom: 10px;
}
.c-sliderPrev, .c-sliderNext {
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.c-sliderPrev::before, .c-sliderNext::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--defaultColor);
  opacity: 0.05;
}
.c-sliderPrev::after, .c-sliderNext::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: calc(50% - 5px);
  transition: right 0.2s ease-out, left 0.2s ease-out;
}
.c-sliderPrev::after {
  right: calc(50% - 10px * 0.75);
  border-top: 1px solid var(--defaultColor);
  border-left: 1px solid var(--defaultColor);
  transform: rotate(-45deg);
}
.c-sliderPrev:hover::after {
  right: calc(50% - 10px * 0.75 + 3px);
}
.c-sliderNext::after {
  left: calc(50% - 10px * 0.75);
  border-top: 1px solid var(--defaultColor);
  border-right: 1px solid var(--defaultColor);
  transform: rotate(45deg);
}
.c-sliderNext:hover::after {
  left: calc(50% - 10px * 0.75 + 3px);
}
.c-favorites .c-sliderPrev, .c-checked .c-sliderPrev {
  position: absolute;
  right: 52px;
  top: 50%;
  transform: translatey(-50%);
}
.c-favorites .c-sliderNext, .c-checked .c-sliderNext {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translatey(-50%);
}
.c-rankingIndicator {
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
  text-align: center;
  color: white;
  pointer-events: none;
  font-family: var(--boldfont);
  font-weight: bold;
  font-size: 28px;
  opacity: 0;
}
.c-rankingIndicator[data-rank="1"] {
  background: #dbc131;
  opacity: 1;
}
.c-rankingIndicator[data-rank="2"] {
  background: #bababa;
  opacity: 1;
}
.c-rankingIndicator[data-rank="3"] {
  background: #c09257;
  opacity: 1;
}
@media screen and (max-width:1024px) {
  .c-items a, .c-items::before, .c-items::after {
    width: 50%;
  }
  .c-items-name {
    font-size: 14px;
  }
  .c-items.isSlider a {
    width: calc(42vw + 4vw);
    padding-right: 4vw;
    position: relative;
  }
  .c-items.isListSlider {
    width: 100vw;
    position: relative;
    left: -6vw;
  }
  .c-items .c-indicator {
    right: 5px;
    top: 5px;
  }
  .c-items .c-favorite {
    width: 30px;
    height: 30px;
    right: 5px;
    bottom: 5px;
  }
  .c-sliderPrev, .c-sliderNext {
    width: 35px;
    height: 35px;
  }
  .c-sliderPrev::after, .c-sliderNext::after {
    width: 6px;
    height: 6px;
    top: calc(50% - 3px);
  }
  .c-sliderPrev::after, .c-sliderPrev:hover::after {
    right: calc(50% - 6px * 0.75);
  }
  .c-sliderNext::after, .c-sliderNext:hover::after {
    left: calc(50% - 6px * 0.75);
  }
  .c-favorites .c-sliderPrev, .c-checked .c-sliderPrev {
    position: absolute;
    right: 37px;
  }
  .c-items .c-indicator {
    font-size: 14px;
  }
  .c-rankingIndicator {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 18px;
  }
}

.c-popup {
  position: fixed;
  z-index: 950;
  width: 100vw;
  height: 200vh;
  height: 200svh;
  left: 0;
  top: -50vh;
  top: -50svh;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-out, backdrop-filter 0.2s ease-out 0.2s;
}
.c-popup.active {
  opacity: 1;
  pointer-events: all;
  backdrop-filter: blur(5px);
}
.c-popup img {
  width: auto;
  height: auto;
  max-width: 70vw;
  max-height: 70vh;
  max-height: 70svh;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.l-navigation .c-logo img {
  width: 90%;
  height: auto;
  display: block;
}
.l-navigation .c-search {
  --navSearchHeight: 35px;
  width: 100%;
  height: var(--navSearchHeight);
  border-bottom: 1px solid #bebebe;
  position: relative;
}
.l-navigation .c-search input[type="text"] {
  width: 100%;
  height: var(--navSearchHeight);
  font-size: 16px;
  line-height: var(--navSearchHeight);
  border: 0;
  outline: 0;
  padding-right: 40px;
}
.l-navigation .c-search input[type="text"]::placeholder {
  color: #979797;
}
.l-navigation .c-search button {
  width: var(--navSearchHeight);
  height: var(--navSearchHeight);
  position: absolute;
  right: -7px;
  top: 0;
  cursor: pointer;
  display: block;
}
.l-navigation .c-search button svg {
  width: 75%;
  height: 75%;
  stroke-width: 1px;
}
.cart_view_with_async.c-cart {
  text-align: left;
}
.c-cart-form {
  margin: 0;
}
.l-navigation .c-cart {
  --navCartHeight: 22px;
  margin-top: 25px;
  width: 100%;
  height: var(--navCartHeight);
  line-height: var(--navCartHeight);
  color: var(--defaultColor);
  font-family: var(--boldfont);
  font-weight: bold;
  font-size: 16px;
  display: block;
  position: relative;
}
.l-navigation .c-cart.forMobile {
  display: none;
}
.l-navigation .c-cart-icon {
  width: var(--navCartHeight);
  height: var(--navCartHeight);
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}
.l-navigation .c-cart-icon svg {
  width: 100%;
  height: 100%;
  color: var(--defaultColor);
  display: block;
}
.l-navigation .c-cart-icon > span {
  width: 12px;
  height: 12px;
  line-height: 12px;
  font-size: 9px;
  font-family: var(--normalfont);
  font-weight: normal;
  background: var(--defaultPointColor);
  border-radius: 100%;
  color: white;
  text-align: center;
  white-space: nowrap;
  position: absolute;
  right: -5px;
  top: -2px;
}
.l-navigation .c-cart-icon > span:empty, .l-navigation .c-cart-icon > span:blank {
  display: none;
}
.l-navigation .c-drawer > .c-accordionHeader {
  margin-top: 20px;
  width: 100%;
}
.l-navigation .c-drawer > .c-accordionHeader::before, .l-navigation .c-drawer > .c-accordionHeader::after {
  top: calc(50% - 0.5px);
}
.l-navigation .c-drawer > .c-accordionHeader > img {
  width: auto;
  height: 18px;
  display: block;
}
.l-navigation .c-accordionHeader {
  padding-right: 25px;
  font-size: 16px;
  line-height: 150%;
  font-weight: bold;
  font-family: var(--boldfont);
}
.l-navigation .c-drawer > a:not(.c-cart) {
  margin-top: 0.7em;
}
.l-navigation .c-drawer > .c-accordion > *:not(.c-accordion) {
  font-family: var(--boldfont);
  font-weight: bold;
  font-size: 14px;
  line-height: 150%;
  margin-top: 1em;
}
.l-navigation .c-drawer > .c-accordion > .c-accordion > *:not(.c-accordion) {
  font-family: var(--normalfont);
  font-weight: normal;
  font-size: 14px;
  line-height: 150%;
  margin-top: 1em;
}
.l-navigation .c-drawer > .c-accordion + a {
  margin-top: 30px;
}
@media screen and (min-width:1025px) {
  .l-navigation .c-drawerOpener, .l-navigation .c-drawerCloser {
    display: none !important;
  }
}
@media screen and (max-width:1024px) {
  .l-header__inner {
	padding: 0 16px;
  }
  .l-navigation .c-drawerOpener, .l-navigation .c-drawerCloser {
    display: block;
    width: var(--navigationHeight);
    height: var(--navigationHeight);
    position: absolute;
    left: 0;
    top: 0;
  }
  .l-navigation .c-drawerOpener svg, .l-navigation .c-drawerCloser svg {
    width: 40%;
    height: 40%;
    position: absolute;
    left: 30%;
    top: 30%;
    fill: var(--defaultColor);
  }
  .l-navigation .c-drawerCloser {
    display: none;
  }
  .l-navigation .c-logo {
    width: calc(100% - var(--navigationHeight) * 2 - 30px);
    height: 100%;
    display: block;
    position: relative;
    margin: 0 auto;
    padding: 0;
  }
  .l-navigation .c-logo a {
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.2;
    height: var(--navigationHeight);
    width: 100%;
    max-width: 900px;
  }
  .l-navigation .c-logo img {
    width: auto;
    max-width: 100%;
    max-height: 40%;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .l-navigation .c-search {
    --navSearchHeight: 40px;
    margin-top: 0;
  }
  .l-navigation .c-drawer .c-cart {
    display: none;
  }
  .l-navigation .c-cart.forMobile {
    display: block;
    width: var(--navigationHeight);
    height: var(--navigationHeight);
    position: absolute;
    right: 0;
    top: 0;
    margin: 0;
  }
  .l-navigation .c-cart.forMobile .c-cart-icon {
    width: 50%;
    height: 50%;
    left: 25%;
    top: 25%;
  }
  .l-navigation .c-cart-icon > span {
    width: 14px;
    height: 14px;
    line-height: 14px;
    font-size: 10px;
    right: -6px;
    top: -3px;
  }
}
.c-drawerScrollBar {
  display: none !important;
}
.c-drawerScrollBar.active {
  pointer-events: all;
  opacity: 1;
}
.c-drawerScrollBar:before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--defaultColor);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.05;
}
.c-drawerScrollBar > span {
  display: block;
  position: absolute;
  width: 100%;
  height: 30px;
  left: 0;
  top: 0;
  background: var(--defaultColor);
  opacity: 0.2;
}
@media screen and (min-width:1025px) {
  .c-drawerScrollBar {
    display: block;
  }
}
@media screen and (max-width:1024px) {
  .c-drawerScrollBar {
    display: none;
  }
}
.c-recommend, .c-favorites, .c-checked, .c-calendar, .l-footer {
  margin-top: 120px;
}
.l-footer {
  width: 100%;
  background-color: #0B0B61;
  color: var(--defaultBackgroundColor);
  padding: 70px 0;
  --qrcodesize: 140px;
}
.l-footer .l-content {
  display: flex;
  justify-content: left;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-right: calc(var(--qrcodesize) + 60px);
  position: relative;
}
.c-footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 230px;
}
.c-footer-links a {
  color: var(--defaultBackgroundColor);
  padding: 0.2em 0;
  margin-top: 0.4em;
}
.c-footer-qrCode {
  width: var(--qrcodesize);
  height: var(--qrcodesize);
  position: absolute;
  right: 60px;
  top: 0;
  display: block;
}
.l-credits .l-content {
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 75%;
  position: relative;
  padding-right: calc(300px + 60px);
}
.l-credits .c-creditsColorme {
  padding-right: 60px;
  width: auto;
  height: auto;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translatey(-50%);
  display: flex;
  align-items: flex-end;
  line-height: 100%;
  color: var(--defaultColor);
  font-size: 12px;
  white-space: nowrap;
}
.l-credits .c-creditsColorme img {
  width: 200px;
  height: auto;
  display: block;
  margin-left: 10px;
}
@media screen and (max-width:1024px) {
  .c-recommend, .c-favorites, .c-checked, .c-calendar, .l-footer {
    margin-top: 64px;
  }
  .c-footer-qrCode {
    display: none;
  }
  .l-footer {
    padding: 90px 0;
  }
  .l-footer .l-content {
    display: block;
    padding-right: 0;
  }
  .c-footer-links {
    margin: 0;
    width: 100%;
    display: block;
    position: relative;
  }
  .c-footer-links:last-of-type {
    margin-top: 45px;
    padding-top: 45px;
  }
  .c-footer-links:last-of-type::before {
    content: "";
    width: 100%;
    height: 1px;
    background: var(--defaultBackgroundColor);
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.25;
  }
  .c-footer-links a {
    display: block;
    color: var(--defaultBackgroundColor);
    padding: 0.6em 0;
    margin-top: 0.4em;
  }
  .l-credits .l-content {
    padding: 90px 6% 25px 6%;
    text-align: center;
  }
  .l-credits .c-creditsColorme {
    padding-right: 0;
    width: 100%;
    height: 35px;
    position: absolute;
    right: 0;
    top: 27px;
    transform: none;
    justify-content: center;
    align-items: flex-end;
  }
  .l-credits .c-creditsColorme img {
    width: auto;
    height: 35px;
    display: block;
    margin-left: 10px;
  }
}
.l-content.isPage > *:not(:first-child) {
  margin-top: 30px;
}
.c-breadcrumb {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.c-breadcrumb + .c-breadcrumb {
  margin-top: 0 !important;
}
.c-breadcrumb > * {
  color: var(--defaultColor);
  position: relative;
  font-size: 14px;
  line-height: 100%;
  padding: 0.3em 0;
}
.c-breadcrumb > *:not(:last-child) {
  margin-right: 1em;
}
.c-breadcrumb > *:not(:first-child) {
  padding-left: calc(1em + 5px);
}
.c-breadcrumb > *:not(:first-child)::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  left: 0;
  top: calc(50% - 5px * 0.5);
  border-top: 1px solid var(--defaultColor);
  border-right: 1px solid var(--defaultColor);
  transform: rotate(45deg);
}
.l-content.isPage .c-breadcrumb + * {
  margin-top: 40px;
}
.l-content.isPage .c-message {
  margin-top: 20px;
}
.c-message img, .c-message picture {
  max-width: 100%;
  height: auto;
}
.l-product_list-categories .c-accordionHeader {
  display: none;
}
@media screen and (max-width:1024px) {
  .l-product_list-categories .c-accordionHeader {
    display: block;
    font-size: 20px;
    line-height: 150%;
    font-family: var(--boldfont);
    font-weight: bold;
  }
}
.l-product_list-categories .c-accordion {
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width:1025px) {
  .l-product_list-categories .c-accordion {
    display: flex !important;
  }
}
.l-product_list-categories .c-accordion::before, .l-product_list-categories .c-accordion::after {
  content: "";
  height: 0;
  display: block;
}
.l-product_list-categories .c-accordion::before {
  order: 1;
}
.l-product_list-categories .c-accordion {
  --product_list_categorieswidth: calc(25% - 7.5px);
}
@media screen and (max-width:1400px) {
  .l-product_list-categories .c-accordion {
    --product_list_categorieswidth: calc(33.33% - 6.67px);
  }
}
@media screen and (max-width:1100px) {
  .l-product_list-categories .c-accordion {
    --product_list_categorieswidth: calc(50% - 5px);
  }
}
@media screen and (max-width:900px) {
  .l-product_list-categories .c-accordion {
    --product_list_categorieswidth: 100%;
  }
}
.l-product_list-categories .c-accordion > *, .l-product_list-categories .c-accordion::before, .l-product_list-categories .c-accordion::after {
  width: var(--product_list_categorieswidth);
  margin-bottom: 10px;
  display: block;
}
.l-product_list-categories .c-accordion > a {
  position: relative;
  z-index: 2;
  font-size: 14px;
  line-height: 150%;
  color: var(--defaultColor);
  height: 70px;
  display: flex;
  justify-content: left;
  align-items: center;
  padding: 0 20px;
}
.l-product_list-categories .c-accordion > a::before {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: 1px solid var(--defaultColor);
  opacity: 0.25;
  position: absolute;
  z-index: -1;
  transition: opacity 0.2s ease-out;
}
.l-product_list-categories .c-accordion > a:hover::before {
  opacity: 0.5;
}
.l-product_list-categories .c-accordion > a > img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
  position: relative;
  left: -15px;
}
.c-itemsUI {
  position: relative;
  display: flex;
  align-items: center;
}
.c-itemsUISorter {
  margin-left: auto;
  margin-right: 0;
}
.l-content.isPage > .c-message + .c-itemsUI, .l-content.isPage > .c-items {
  margin-top: 0;
}
.l-content.isPage > .c-items + .c-message {
  margin-top: 60px;
}
.l-content.isPage .c-itemsUISorter .c-pulldown {
  margin-left: 1em;
}
@media screen and (max-width:1024px) {
  .c-itemsUI {
    display: block;
    font-size: 18px;
    text-align: center;
  }
  .l-content.isPage > .c-message + .c-itemsUI {
    margin-top: 30px;
  }
  .c-itemsUISorter {
    font-size: 14px;
    text-align: left;
    width: 100%;
    margin-top: 15px;
  }
  .l-content.isPage .c-itemsUISorter .c-pulldown {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-top: 5px;
  }
}
.c-pager {
  --pagerSize: 50px;
  --pagerFontSize: 18px;
  width: 100%;
  height: var(--pagerSize);
  display: flex;
  justify-content: right;
  position: relative;
}
.c-pagerPrev, .c-pagerNext, .c-pagerLink, .c-pager > svg {
  width: var(--pagerSize);
  height: var(--pagerSize);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  white-space: nowrap;
  font-size: var(--pagerFontSize);
  line-height: 100%;
  font-family: var(--boldfont);
  font-weight: bold;
  color: var(--defaultColor);
  transition: background 0.2s ease-out;
  margin: 0 1px;
  z-index: 2;
}
.c-pagerLink:hover {
  color: var(--defaultColor);
}
.c-pagerPrev:last-child, .c-pagerNext:last-child, .c-pagerLink:last-child, .c-pager > svg:last-child {
  margin-right: 0;
}
.c-pagerPrev::before, .c-pagerNext::before, .c-pagerLink:not(.isInterval)::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--defaultColor);
  opacity: 0.05;
  transition: opacity 0.2s ease-out;
  z-index: -1;
}
.c-pagerPrev:hover::before, .c-pagerNext:hover::before, .c-pagerLink:not(.isInterval):hover::before {
  opacity: 0.15;
}
.c-pagerPrev::after, .c-pagerNext::after {
  content: "";
  width: 20%;
  height: 20%;
  position: absolute;
  top: 40%;
  border-top: 2px solid var(--defaultColor);
  border-right: 2px solid var(--defaultColor);
}
.c-pagerPrev::after {
  transform: rotate(225deg);
  left: 45%;
}
.c-pagerNext::after {
  transform: rotate(45deg);
  right: 45%;
}
.c-pagerLink.isInterval {
  pointer-events: none;
}
.c-pagerLink.isCurrent {
  pointer-events: none;
  color: var(--defaultBackgroundColor);
}
.c-pagerLink.isCurrent::before {
  background: var(--defaultColor);
  opacity: 1;
}
@media screen and (max-width:1000px) {
  .c-pager {
    --pagerSize: 35px;
    --pagerFontSize: 16px;
    justify-content: center;
  }
}
.c-pagerCount {
  font-family: var(--boldfont);
  font-weight: bold;
  text-align: right;
  white-space: nowrap;
}
.c-pagerCount > span {
  font-size: 125%;
}
@media screen and (max-width:1000px) {
  .c-pagerCount {
    text-align: center;
  }
}

.p-freepage a {
  text-decoration: underline;
}
.p-freepage a:hover {
  text-decoration: none;
}
.p-freepage__contents {
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-freepage__contents {
    padding-top: 15px;
  }
}
.p-freepage__attention {
  margin-top: 15px;
  margin-bottom: 30px;
  color: #ff0000;
  font-weight: bold;
  text-align: center;
}
.p-freepage__img {
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
}
.p-freepage__img img {
  border: 1px solid #cccccc;
}
.p-freepage__body {
  margin-top: 30px;
  margin-bottom: 30px;
}
.p-freepage-ol {
  padding-left: 25px;
  list-style-type: decimal;
}
.p-freepage-ol__item {
  margin-top: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}

/* PC表示・モバイル表示共通のサイドバー設定 */
.l-navigation {
  background-color: #ffffff;
  color: #333333;
}

/* サイドバー内のリンクやアイコン */
.l-navigation :is(
  a,
  .c-drawer a,
  .c-cart,
  .c-cart-icon svg,
  .c-accordionHeader,
  .c-search button svg,
  .c-drawerOpener svg, 
  .c-drawerCloser svg
) {
  color: #0B0B61;
  fill: #0B0B61;
  transition: opacity 0.2s ease-out;
}

/* 上記の要素にマウスカーソルを乗せた時のスタイル */
.l-navigation :is(
  a,
  .c-drawer a,
  .c-cart,
  .c-cart-icon svg,
  .c-accordionHeader,
  .c-search button svg,
  .c-drawerOpener svg, 
  .c-drawerCloser svg
):hover {
  opacity: 0.8;
  color: rgba(11, 11, 97, 0.8) !important;
}

/* 検索ボックスのプレースホルダー色 */
.l-navigation .c-search input[type="text"]::placeholder {
  color: #bdc3c7;
}

/* アコーディオンメニューの開閉アイコンの色 */
.l-navigation .c-accordionHeader::before, 
.l-navigation .c-accordionHeader::after {
    background: #ffffff; 
}
.l-navigation .c-call {
  font-size: 16px;
  display: flex;
  align-items: flex-start;
}
.l-navigation .c-call img{
  max-width: 16px;
  height: auto;
  padding:6px 4px 0px 0px;
}

.c-call .reception-time {
  font-size: 11px;
  display: inline-block;
}
.member-links {
  font-size: 16px;
  margin-top: 16px;
}

.member-links a {
  padding: 4px 0px;
  text-decoration: none;
  color: #333;
  transition: color 0.2s ease;
}

.member-links a:hover {
  color: #007acc;
}


/* === サイドバーのリストデザイン (ホバーメニュー対応) === */
.c-drawer__title {
font-family: var(--boldfont);
font-weight: bold;
font-size: 18px;
margin-top: 20px;
padding-bottom: 10px;
border-bottom: 2px double #333333;
}
.c-drawer__links + .c-drawer__title {
margin-top: 40px;
}
/* リスト全体を囲むブロック */
.c-drawer__links {
border: none;
background-color: transparent;
padding: 0;
margin-bottom: 30px;
}
/* リスト内の各項目 (通常のリンクとホバーメニューのコンテナ) */
.c-drawer__links > a,
.c-drawer__links > .c-flyout-container {
display: block;
border-bottom: 1px solid  #e0e0e0;
position: relative;
color: #0B0B61;
}
/* 通常リンクのスタイル (サブカテゴリがない項目) */
.c-drawer__links > a {
font-family: var(--normalfont);
font-weight: normal;
font-size: 14px;
text-decoration: none;
padding: 15px 0;
margin-top: 0;
}
/* --- ホバーメニュー専用スタイル --- /
/ 親カテゴリのリンク (ホバーのトリガー) */
.c-flyout-trigger {
display: block;
position: relative;
padding: 15px 25px 15px 0;
width: 100%;
font-size: 14px;
text-decoration: none;
}
.c-flyout-trigger span { }
/* 「>」アイコン */
.c-flyout-trigger::after {
content: "";
position: absolute;
top: 50%;
right: 10px;
transform: translateY(-50%) rotate(45deg);
display: inline-block;
width: 7px;
height: 7px;
border-top: 1.5px solid #0B0B61; ;
border-right: 1.5px solid #0B0B61; ;
}
/* ホバーで表示されるポップアップメニュー */
.c-flyout-menu {
display: none;
position: absolute;
min-width: 200px;
background-color: rgba(255, 255, 255, 0.98);
backdrop-filter: blur(5px);
border: none;
border-radius: 2px;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
padding: 8px 0;
z-index: 10;
}
.c-flyout-container:hover > .c-flyout-menu {
display: block;
}
/* ポップアップ内の各リンク */
.c-flyout-menu a {
display: block;
padding: 12px 25px;
font-family: var(--normalfont);
font-weight: normal;
font-size: 14px;
color: #0B0B61 !important;
text-decoration: none;
white-space: nowrap;
border-bottom: none;
transition: background-color 0.2s ease-out;
}
.c-flyout-menu a:last-child {
border-bottom: none;
}
/* ポップアップ内の各リンクのホバースタイル */
.l-navigation .c-flyout-menu a:hover {
  background-color: rgba(11, 11, 97, 0.1); 
  opacity: 1;
}

.l-horizontal-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: #0B0B61;
  z-index: 499;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* ナビゲーションの内部コンテナ (トリガーボタンを配置) */
.l-horizontal-nav__inner {
  display: flex;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* アコーディオンの各コンテナ */
.c-accordion-container {
  flex: 1;
  position: relative;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.c-accordion-container:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/* アコーディオンを開閉するボタン */
.c-accordion-trigger {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 12px 10px;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  background-color: transparent;
  border: none;
}
.c-accordion-trigger:hover,
.c-accordion-trigger.is-active {
  background-color: rgba(255, 255, 255, 0.1);
}

/* 矢印のスタイル */
.c-accordion-arrow {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.c-accordion-trigger.is-active .c-accordion-arrow {
  transform: translateY(3px) rotate(-135deg);
}

.c-accordion-panel {
  display: none; /* JSで制御 */
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: calc(100vh - 115px);
  overflow-y: auto;
  background-color: #3b3b8c;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.c-accordion-panel__inner {
  padding: 15px;
}

/* パネル内のリンクスタイル */
.c-accordion-panel a {
  display: block;
  color: #ffffff !important;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 4px;
}
.c-accordion-panel a:hover {
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 1 !important;
}

/* カテゴリリストのスタイル */
.c-category-item {
  margin-bottom: 15px;
}
.c-category-item:last-child {
  margin-bottom: 0;
}
.c-category-item__parent {
  font-weight: bold;
  font-size: 1.1em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 8px !important;
  padding-bottom: 8px !important;
}
.c-category-item__children {
  padding-left: 15px;
}



/* ========== 1024px以下のレスポンシブ設定 ========== */
@media screen and (max-width: 1024px) {
 
  /* 横並びナビゲーションを表示 */
  .l-horizontal-nav {
    display: block;
  }
  
  /* サイドナビゲーション(.l-navigation)を非表示 */
  .l-navigation {
    display: none;
  }

  /* コンテンツの左右余白を調整 */
  .classic {
    --contentSidePadding: 24px;
  }
  /* ヘッダーの高さ調整 */
  .l-header {
    height: 80px;
  }
  .l-header__cart.c-cart {
    font-size: 0;
  }
  .l-header__cart .c-cart-icon > span {
    font-size: 10px;
  }
  .l-header__search input[type="text"] {
    width: 180px;
  }
  .l-header__nav .c-call a {
  	font-size: 12px;
  }
  .l-header__nav .c-call .reception-time {
  	font-size: 8px;
  }
}

/*  SP/Tablet用 オーバーレイ開閉ナビゲーション */
.c-sp-overlay-menu {
  display: none;
}

@media screen and (max-width: 1024px) {
  .c-sp-overlay-menu {
    display: block;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    z-index: 900;
  }
  .c-sp-overlay-menu__triggers {
    display: flex;
    border-top: 1px solid rgba(255, 255, 255, 0.7);
  }
  .c-sp-overlay-menu__trigger {
	height: 60px;
    flex: 1;
    padding: 10px 12px;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0B0B61;
    color: #fff;
    border: none;
    border-right: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    transition: background-color 0.2s ease;
  }
  .c-sp-overlay-menu__trigger:last-child {
    border-right: none;
  }
  .c-sp-overlay-menu__trigger::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.5em;
    width: 6px;
    height: 6px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
  }

  .c-sp-overlay-menu__trigger.is-active::after {
    transform: rotate(-135deg);
  }
 .c-sp-overlay-menu__panel.is-active {
    max-height: 70vh;
    overflow-y: auto;
  }
  
.c-sp-overlay-menu__panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    background-color: rgba(11,11,97, 0.92);
    color: #fff;
    overflow: hidden; 
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 16px;
    padding-right: 16px;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
  }
  .c-sp-overlay-menu__panel.is-active {
    max-height: 70vh;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .c-sp-overlay-menu__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
  }
  .c-sp-overlay-menu__item a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 48px;
    padding: 8px 0;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-sizing: border-box;
  }
  .c-sp-overlay-menu__item:last-child a,
  .c-sp-overlay-menu__item:nth-last-child(2) a {
    border-bottom: none;
  }
}

@media screen and (max-width: 767px) {
  .l-header__inner {
    padding: 0 16px 0 8px;
  }
  .c-items a {
    margin-top:12px;
  }
  .l-header__logo img {
    max-height: 32px;
  }
  .l-header__nav {
    gap: 14px;
  }
  .l-header__nav .l-header__search {
    display: block;
  }
  .l-header__nav .l-header__search input[type="text"] {
    display: none;
  }
  .l-header__nav .l-header__search form {
    margin: 0;
  }
  .l-header__nav .l-header__search button {
    position: static;
    width: 28px; 
    height: 28px;
  }
  .l-header__nav .l-header__search button svg {
    width: 24px;
    height: 24px;
  }

  .l-header__nav .c-call {
    position: relative;
    width: 26px;
    height: 28px;
    gap: 0;
  }
  .l-header__nav .c-call img {
    width: 24px;
    height: 24px;
  }
  .l-header__nav .c-call a {
    position: absolute;
    font-size: 0;
  }
  .l-header__favorite-icon {
    width: 24px;
    height: 24px;
  }
  .l-header__favorite-icon svg {
    width: 22px;
    height: 22px;
  }
  .l-header__nav .c-call .reception-time {
    display: none;
  }
  .l-header__member-actions a {
    font-size: 13px;
  }
  .l-header__cart.c-cart .c-cart-icon {
    margin-left: 0;
    width: 26px;
    height: 26px;
  }

  .c-sp-overlay-menu__trigger {
    position: relative;
    height: 60px;
    padding-top: 10px;
    padding-bottom: 20px;
    line-height: 1.2;
  }

  .c-sp-overlay-menu__trigger::after {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    margin-left: 0;
  }

  .c-sp-overlay-menu__trigger.is-active::after {
    transform: translateX(-50%) rotate(-135deg);
  }
  .c-sp-overlay-menu__trigger {
    flex: 1;
    padding: 10px 8px 14px 8px;;
  }
  .c-sp-overlay-menu__panel.is-active {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}

/* ログイン時のユーザーアイコンのスタイル */
.l-header__user-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.l-header__user-icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
  fill: currentColor;
}

/* 767px以下のSP表示でのサイズ調整 */
@media screen and (max-width: 767px) {
  .l-header__user-icon {
    width: 28px; 
    height: 28px;
  }
  .l-header__user-icon svg {
    width: 26px;
    height: 26px;
  }
}

.c-search-modal {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1200;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.c-search-modal.is-active {
  visibility: visible;
  opacity: 1;
}

/* オーバーレイ（半透明の背景） */
.c-search-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

/* モーダル本体（白い部分） */
.c-search-modal__content {
  position: relative;
  background-color: #fff;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  transform: translateY(-100%);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.c-search-modal.is-active .c-search-modal__content {
  transform: translateY(0);
}

/* 閉じるボタン */
.c-search-modal__close-btn {
  width: 24px;
  height: 24px;
  cursor: pointer;
  padding: 0;
  background: none;
  border: none;
  flex-shrink: 0;
}
.c-search-modal__close-btn svg {
  width: 100%;
  height: 100%;
  color: #333;
}

/* フォームエリア */
.c-search-modal__form {
  flex-grow: 1;
}

.c-search-modal__form form {
  position: relative;
  display: flex;
  align-items: center;
}

.c-search-modal__form input[type="text"] {
  width: 100%;
  height: 60px;
  padding: 0 24px 0 0;
  border: none;
  border-bottom: 1px solid #ccc;
  font-size: 16px;
  color: #333;
  background-color: transparent;
}
.c-search-modal__form input[type="text"]:focus {
  outline: none;
  border-bottom-color: #333;
}
.c-search-modal__form input[type="text"]::placeholder {
  color: #999;
}

.c-search-modal__form button {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.c-search-modal__form button svg {
  width: 100%;
  height: 100%;
  color: #333;
}
/* ▼ 記事全体のレイアウト調整 ▼ */
.l-content.isPage .c-message {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ▼ 段落・見出しのスタイル ▼ */
.l-content.isPage .c-message p {
  margin-bottom: 1.5em;
}
.l-content.isPage .c-message h2,
.l-content.isPage .c-message h3,
.l-content.isPage .c-message h4 {
  font-family: var(--boldfont);
  font-weight: bold;
  line-height: 1.5;
  margin-top: 2.5em;
  margin-bottom: 1em;
  color: #0B0B61;
  letter-spacing: 0.05em;
}
.l-content.isPage .c-message h2 {
  font-size: 1.8em;
  padding-bottom: 0.5em;
  border-bottom: 2px solid #0B0B61;
}
.l-content.isPage .c-message h3 {
  font-size: 1.5em;
  padding: 0.3em 0.5em;
  border-bottom: none;
  background-color: #f0f3f8;
  border-left: 5px solid #0B0B61;
}
.l-content.isPage .c-message h4 {
  font-size: 1.2em;
  font-weight: bold;
}
.l-content.isPage .c-message h4::before {
  content: "■";
  color: #0B0B61;
  margin-right: 0.5em;
}

/* ▼ リンク・画像・地図などの要素のスタイル ▼ */
.l-content.isPage .c-message a {
  color: #0056b3;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.l-content.isPage .c-message a:hover {
  color: #003d7c;
  text-decoration: none;
}
.l-content.isPage .c-message img,
.l-content.isPage .c-message iframe {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5em auto;
  border-radius: 4px;
}

.l-content.isPage .c-message blockquote {
  margin: 2em 0;
  padding: 1.5em 2em;
  background-color: #f7f7f7;
  border-left: 5px solid #ccc;
  color: #555;
  font-style: italic;
}
.l-content.isPage .c-message blockquote p { margin-bottom: 0; }
.l-content.isPage .c-message ul,
.l-content.isPage .c-message ol {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}
.l-content.isPage .c-message li {
  margin-bottom: 0.8em;
  padding-left: 0.5em;
}
.l-content.isPage .c-message li::marker {
  color: #0B0B61;
  font-weight: bold;
}

/* ▼ 不要な要素を非表示にする設定 ▼ */
.l-content.isPage .pankuzu_lists,
.l-content.isPage .c-message h1 {
  display: none !important;
}

/* ▼ 画像の回り込み機能 ▼ */
.l-content.isPage .c-message::after {
  content: ""; display: table; clear: both;
}
@media screen and (min-width: 768px) {
  .l-content.isPage .c-message img.align-left {
    float: left; width: 45%; max-width: 350px; margin: 0.5em 1.8em 1em 0;
  }
  .l-content.isPage .c-message img.align-right {
    float: right; width: 45%; max-width: 350px; margin: 0.5em 0 1em 1.8em;
  }
}
@media screen and (max-width: 767px) {
  .l-content.isPage .c-message img.align-left,
  .l-content.isPage .c-message img.align-right {
    float: none; width: auto; max-width: 100%; margin: 1.5em auto;
  }
}
.l-content.isPage .c-message .clear {
  clear: both;
}
/* ===================================================
   お気に入りページ専用スタイル
=================================================== */

/* お気に入りページの商品リストのレイアウト */
.c-items.is-favorite-page {
  gap: 40px 20px; /* PCでのアイテム間の余白 */
}
.c-items.is-favorite-page a {
  width: calc(20% - 16px); /* PC: 5列表示 */
  margin-top: 0;
  text-decoration: none !important;
}
.c-items.is-favorite-page::before,
.c-items.is-favorite-page::after {
  display: none;
}

/* --- レスポンシブ設定 --- */
@media screen and (max-width: 767px) {
  .c-items.is-favorite-page a {
    width: calc(33.33% - 14px); /* 767px以下: 3列表示 */
  }
}
@media screen and (max-width: 500px) {
  .c-items.is-favorite-page {
    gap: 24px 16px; /* スマホでのアイテム間の余白 */
  }
  .c-items.is-favorite-page a {
    width: calc(50% - 8px); /* 500px以下: 2列表示 */
  }
}
.c-items.is-favorite-page a.is-removing {
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none; 
}
.c-items.is-favorite-page {
  justify-content: flex-start;
}