@charset "EUC-JP";
.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: #F9F5F0;
  background:var(--defaultBackgroundColor);
  --defaultPointColor: red;
  --defaultImportantColor: #199032;
}
body.preventScroll {
  overflow-y: hidden;
}
:root {
  --font-jp: "源ノ明朝", "Genno Mincho", "游明朝", YuMincho, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  --font-en: "Playfair Display", serif;
}

.classic {
  font-size: 16px;
  --normalfont: var(--font-jp);
  --boldfont: var(--font-en);
  font-family: var(--normalfont);
  font-weight: normal;
}
.classic, .classic * {
  box-sizing: border-box;
}
.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;
}
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}
.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  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;
}
.classic {
  --navigationSize: 280px;
  --contentSidePadding: 60px;
  display: flex;
  align-items: flex-start;
}
.l-navigation {
  width: var(--navigationSize);
  height: 100vh;
  min-height: 100svh;
  position: sticky;
  left: 0;
  top: 0;
  z-index: 2;
  padding: 45px 0 0 0;
  display: flex;
  flex-direction: column;
}
.l-navigation > * {
  padding-left: 40px;
  padding-right: 40px;
}
.l-main {
  width: calc(100% - var(--navigationSize));
  height: auto;
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  left: 0;
  top: 0;
}
.l-content {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1400px;
  position: relative;
  padding-left: var(--contentSidePadding);
  padding-right: var(--contentSidePadding);
}
.l-content.isPage {
  padding-top: 90px;
}
.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: 45px;
    position: relative;
    height: 100%;
    flex: 1;
    padding-bottom: 130px;
  }
}
@media screen and (max-width:1024px) {
  .classic {
    --navigationSize: 100%;
    --navigationHeight: 60px;
    --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: auto;
    padding-top: var(--navigationHeight);
    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-sns {
  display: flex;
  justify-content: space-between;
}
.c-sns a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.c-sns a svg {
  display: block;
  width: 25px;
  height: 25px;
}
.c-sns a:first-child:nth-last-child(2), .c-sns a:first-child:nth-last-child(2) ~ a {
  width: 50%;
}
.c-sns a:first-child:nth-last-child(3), .c-sns a:first-child:nth-last-child(3) ~ a {
  width: 33.33%;
}
.c-sns a:first-child:nth-last-child(4), .c-sns a:first-child:nth-last-child(4) ~ a {
  width: 25%;
}
.c-sns a:first-child:nth-last-child(5), .c-sns a:first-child:nth-last-child(5) ~ a {
  width: 20%;
}
.c-sns a:first-child:nth-last-child(6), .c-sns a:first-child:nth-last-child(6) ~ a {
  width: 16.67%;
}
@media screen and (max-width:1024px) {
  .c-sns a:first-child:nth-last-child(2), .c-sns a:first-child:nth-last-child(2) ~ a, .c-sns a:first-child:nth-last-child(3), .c-sns a:first-child:nth-last-child(3) ~ a, .c-sns a:first-child:nth-last-child(4), .c-sns a:first-child:nth-last-child(4) ~ a, .c-sns a:first-child:nth-last-child(5), .c-sns a:first-child:nth-last-child(5) ~ a, .c-sns a:first-child:nth-last-child(6), .c-sns a:first-child:nth-last-child(6) ~ a {
    width: 60px;
    height: 60px;
  }
  .c-sns a svg {
    margin: auto;
    width: 32px;
    height: 32px;
  }
}
.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;
  padding-right: 12%;
}
.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-calendarComment {
  margin-top: 20px;
}
.c-calendars {
  margin-top: 30px;
}
.c-calendars {
  display: flex;
  justify-content: space-between;
  --calendarmargin: 5.36vw;
}
@media screen and (min-width:1400px) {
  .c-calendars {
    --calendarmargin: 75px;
  }
}
.c-calendars > * {
  width: calc(50% - var(--calendarmargin) * 2 - 7.5px);
  margin: var(--calendarmargin);
  position: relative;
}
.c-calendars > table {
  border-collapse: separate;
  border-spacing: 1px;
}
.c-calendars > *::before {
  content: "";
  width: calc(100% + var(--calendarmargin) * 2);
  height: calc(100% + var(--calendarmargin) * 2);
  position: absolute;
  left: calc(-1 * var(--calendarmargin));
  top: calc(-1 * var(--calendarmargin));
  background: var(--defaultColor);
  opacity: 0.05;
}
.c-calendars td, .c-calendars th {
  font-size: 16px;
  text-align: center;
  padding: 0.5em 0.1em;
}
@media screen and (max-width:1200px) {
  .c-calendars {
    margin-top: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .c-calendars {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    --calendarmargin: 5.36vw;
  }
  .c-calendars > * {
    width: calc(100% - var(--calendarmargin) * 2);
    max-width: calc(500px - var(--calendarmargin) * 2);
    margin: var(--calendarmargin);
    margin-top: calc(var(--calendarmargin) + 15px);
    position: relative;
  }
}
.c-popup {
  position: fixed;
  z-index: 1000;
  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 a {
  font-size: 28px;
  font-family: var(--boldfont);
  font-weight: bold;
  white-space: normal;
  word-break: break-all;
  text-decoration: none;
}
.l-navigation .c-logo img {
  width: 100%;
  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: 25px;
  margin-top: 25px;
  width: 100%;
  height: var(--navCartHeight);
  line-height: var(--navCartHeight);
  color: var(--defaultColor);
  font-family: var(--boldfont);
  font-weight: bold;
  font-size: 18px;
  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 > a, .l-navigation *:not(.c-sns) a {
  color: var(--defaultColor);
  width: 100%;
  display: block;
}
.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: 22px;
  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: 16px;
  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;
}
.l-navigation .c-sns {
  width: var(--navigationSize);
  height: 70px;
  padding-left: 40px;
  padding-right: 40px;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 2;
  background: var(--defaultBackgroundColor);
}
.l-navigation .c-sns.forMobile {
  display: none;
}
.l-navigation .c-sns a {
  display: flex;
  justify-content: left;
  align-items: center;
}
.l-navigation .c-sns svg {
  width: 24px;
  height: 24px;
}
@media screen and (min-width:1025px) {
  .l-navigation .c-drawerOpener, .l-navigation .c-drawerCloser {
    display: none !important;
  }
}
@media screen and (max-width:1024px) {
  .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-sns {
    width: 100%;
    height: 60px;
    padding-left: 0;
    padding-right: 0;
    position: fixed;
    left: 0;
    bottom: 0;
    display: flex !important;
    justify-content: center;
    z-index: 10;
    opacity: 0;
  }
  .l-navigation .c-sns.active {
    transition: opacity 0.2s ease-out 0.2s;
    opacity: 1;
  }
  .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: block;
  position: absolute;
  top: 120px;
  bottom: 120px;
  width: 2px !important;
  padding: 0;
  left: calc(100% - 19px);
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-out;
  overflow: hidden;
}
.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: var(--defaultColor);
  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: 90px;
  }
  .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;
  }
}
/******************************/
/* free page */
/******************************/
.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;
}

.c-footer-sns {
  margin-top: 2rem;
  text-align: center;
}
.c-footer-title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.c-sns-list {
  display: flex;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
}
.c-sns-list li a img {
  width: 32px;
  height: auto;
  transition: opacity 0.3s ease;
}
.c-sns-list li a:hover img {
  opacity: 0.7;
}

.c-footer-categoryNav {
  margin: 2rem auto;
  max-width: 1000px;
  text-align: center;
}
.c-footer-categoryList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
}
.c-footer-categoryList li {
  flex: 0 1 120px;
}
.c-footer-categoryList a {
  display: block;
  text-decoration: none;
  color: #333;
  font-size: 0.9rem;
}
.c-footer-categoryList img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 0.3rem;
}

.c-footer-categoryNav {
  margin-top: 2rem;
  text-align: center;
}
.c-footer-title {
  font-family: "源ノ明朝", serif;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #333;
  border-bottom: 1px solid #C94F4F;
  padding-bottom: 0.5rem;
}
.c-footer-categoryList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 0;
  list-style: none;
}
.c-footer-categoryList li {
  flex: 0 1 120px;
}
.c-footer-categoryList a {
  display: block;
  text-decoration: none;
  color: #333;
  font-size: 0.9rem;
}
.c-footer-categoryList img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 0.3rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}
.c-footer-categoryList span {
  display: block;
  font-family: "源ノ明朝", serif;
}

@media screen and (max-width: 640px) {
  .c-footer-categoryList {
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  .c-footer-categoryList li {
    flex: 0 1 45%;
  }
}

.c-footer-categoryNav {
  margin: 3rem auto;
  padding: 0 1rem;
  max-width: 1000px;
}

.section-title {
  font-family: "源ノ明朝", serif;
  font-size: 1.4rem;
  border-bottom: 1px solid #C94F4F;
  display: inline-block;
  margin-bottom: 1.5rem;
  padding-bottom: 0.3rem;
  color: #333;
}

.c-footer-categoryList a:hover img {
  opacity: 0.85;
  transform: scale(1.02);
  transition: 0.3s ease;
}

.c-footer {
  background: #F9F5F0;
  padding: 2rem 1rem;
  font-size: 0.85rem;
  color: #555;
}

.c-footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.c-footer-block {
  flex: 1 1 200px;
}

.c-footer-bottom {
  border-top: 1px solid #e2dcd5;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.75rem;
  color: #999;
}	

.c-footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: #666;
}

.c-brand-message {
  font-family: "源ノ明朝", serif;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #A06060;
}

.l-footer {
  background: #f9f5f0;
  padding: 3rem 1rem;
  color: #444;
  font-size: 0.9rem;
  border-top: 1px solid #ddd;
}

.c-footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.c-footer-block {
  flex: 1 1 220px;
  min-width: 200px;
}

.c-footer-heading {
  font-family: "Yu Mincho", serif;
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 1rem;
  border-left: 4px solid var(--accent);
  padding-left: 0.6rem;
}

.c-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.c-footer-links li {
  margin-bottom: 0.5rem;
}

.c-footer-links a {
  color: #444;
  text-decoration: none;
}

.c-footer-links a:hover {
  text-decoration: underline;
  color: var(--accent);
}

.c-footer-sns {
  margin-top: 1rem;
}

.c-sns-list {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.c-sns-list li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.c-sns-list img {
  width: 24px;
  height: 24px;
}

.c-footer-qr {
  margin-top: 1rem;
}

.c-footer-qr img {
  width: 100px;
  height: auto;
}

@media (max-width: 768px) {
  .c-footer-container {
    flex-direction: column;
    gap: 2rem;
  }

  .c-footer-block,
  .c-footer-extras {
    width: 100%;
  }

  .c-sns-list {
    justify-content: flex-start;
  }
}

/* ▼ フィルターグループ全体 */
.c-filter-group {
  background-color: #fdf9f5;
  padding: 1.5rem;
  margin: 2rem auto;
  border: 1px solid #e0dcd5;
  border-radius: 10px;
  max-width: 960px;
}

/* ▼ 見出し */
.c-filter-group h4 {
  font-size: 1.2rem;
  color: #b70105;
  margin-bottom: 1rem;
  font-weight: bold;
  text-align: center;
}

/* ▼ アイコンリスト */
.c-icon-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* ▼ 各アイコンリンク */
.c-icon-list li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: #333;
  transition: transform 0.2s ease;
}

.c-icon-list li a:hover,
.c-icon-list li a.is-active {
  transform: scale(1.05);
  color: #c94f4f;
}

/* ▼ アイコン画像 */
.c-icon-list img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}

.c-icon-list li a:hover img,
.c-icon-list li a.is-active img {
  border-color: #c94f4f;
}

/* ▼ アイコンラベル */
.c-icon-label {
  font-size: 0.85rem;
  margin-top: 0.4rem;
  color: #444;
}

/* ▼ 全体セクション */
#dayori {
  background-color: #fdf9f5;
  padding: 2rem 1rem;
  margin: 2rem auto;
  border-top: 1px solid #e0dcd5;
  border-bottom: 1px solid #e0dcd5;
  max-width: 960px;
}

/* ▼ セクションタイトル */
#dayori .section-title {
  font-size: 1.6rem;
  color: #b70105;
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: "源ノ明朝", "Yu Mincho", serif;
}

/* ▼ カード全体 */
#dayori .card {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff0f0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* ▼ 記事画像 */
#dayori .card img {
  width: 120px;
  height: auto;
  object-fit: cover;
  flex-shrink: 0;
}

/* ▼ テキストボックス */
#dayori .card-body {
  flex: 1;
  padding: 1rem;
}

/* ▼ 記事タイトル */
#dayori .card-body h3 {
  margin-top: 0;
  color: #C94F4F;
  font-size: 1.1rem;
  font-weight: bold;
}

/* ▼ 記事本文 */
#dayori .card-body p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 0.5em;
}

/* ▼ ボタンリンク */
#dayori .card-body a.btn {
  display: inline-block;
  background: #C94F4F;
  color: #fff;
  padding: 0.4em 1em;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.9rem;
}

/* ▼ レイアウト調整用ラッパー */
#dayori .section-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ▼ スクロールアニメーション（scroll-fadeがある場合） */
.scroll-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-fade.is-visible {
  opacity: 1;
  transform: none;
}

.site-footer {
  background: #F9F5F0;
  color: #333;
  font-size: 0.9rem;
  padding: 3rem 1rem 2rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ブランドロゴと説明 */
.footer-brand {
  flex: 1 1 260px;
  min-width: 220px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 1rem;
}

.footer-description {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-links-brand {
  list-style: none;
  padding: 0;
}

.footer-links-brand li {
  margin-bottom: 0.4rem;
}

.footer-links-brand a {
  color: #C94F4F;
  text-decoration: none;
}

.footer-links-brand a:hover {
  text-decoration: underline;
}

/* 各カラム共通 */
.footer-column {
  flex: 1 1 180px;
  min-width: 160px;
}

.footer-column h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #C94F4F;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: inherit;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

/* SNSリンク：横並び */
.footer-sns-links {
  display: flex;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin-top: 0.5rem;
}

.footer-sns-links li a {
  display: inline-block;
  color: #C94F4F;
  text-decoration: none;
}

.footer-sns-links li a:hover {
  text-decoration: underline;
}

/* 下部メッセージ・コピーライト */
.footer-bottom {
  text-align: center;
  margin-top: 2.5rem;
}

.footer-message {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  color: #666;
}

.footer-copyright {
  font-size: 0.75rem;
  color: #999;
}

/* モバイル対応 */
@media screen and (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-brand,
  .footer-column {
    width: 100%;
    margin-bottom: 2rem;
  }

  .footer-sns-links {
    flex-wrap: wrap;
  }

  .footer-sns-links li {
    margin-bottom: 0.5rem;
  }

  .footer-bottom {
    text-align: left;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand,
.footer-column {
  flex: 1 1 calc(25% - 1.5rem); /* gapの分だけ差し引き */
  min-width: 200px; /* 幅を確保しつつ縮小許容 */
}

.c-accordionHeader {
  display: block;
  width: 100%;
  padding: 1rem;
  font-weight: bold;
  background: #f3f0ec;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s ease;
}
.c-accordionHeader:hover {
  background: #e6e0da;
}
.c-accordion {
  padding-left: 1rem;
  background: #fffdf9;
}
.c-accordion a {
  display: block;
  padding: 0.5rem 0;
  text-decoration: none;
  color: #333;
}
.c-accordion a:hover {
  color: #c94f4f;
  text-decoration: underline;
}
.c-accordion ul {
  padding-left: 1rem;
}

/* ▼ スマホ右下固定カートアイコン */
.c-cart-sp {
  position: fixed;
  bottom: 1.2rem;
  right: 1rem;
  width: 54px;
  height: 54px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.c-cart-sp svg {
  width: 28px;
  height: 28px;
}

@media screen and (max-width: 768px) {
  .c-cart-sp {
    display: flex;
  }
}

/* ▼ カレンダー */
@media (max-width: 600px) {
  /* 横スクロールの土台 */
  .c-calendar .l-content {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: .5rem; /* 指でスクロールしやすく */
  }
  .c-calendar .l-content::-webkit-scrollbar { display: none; }

  /* 月の塊（tableでもdivでも対応）を横に並べる */
  /* A: table型カレンダー */
  .c-calendar .l-content table {
    display: inline-block;
    vertical-align: top;
    min-width: 280px;       /* 文字の潰れ防止。320pxなど調整可 */
    margin: 0 .75rem 0 0;   /* 月同士の間隔 */
    white-space: normal;    /* セル内の改行は許可 */
  }
  .c-calendar .l-content table:last-child { margin-right: 0; }

  /* B: div型（例： .month や .calendar-month がある場合） */
  .c-calendar .l-content .month,
  .c-calendar .l-content .calendar-month {
    display: inline-block;
    vertical-align: top;
    min-width: 280px;
    margin: 0 .75rem 0 0;
  }
  .c-calendar .l-content .month:last-child,
  .c-calendar .l-content .calendar-month:last-child { margin-right: 0; }
}

@media (max-width: 600px) {
  /* 余白を全体と同じリズムに */
  footer,
  .footer-brand,
  .footer-min,
  .footer-sns {
    padding: 1.5rem 1rem;
    margin: 1.5rem 0 0;
  }

  /* 最小限の高さ＆中央寄せでコンパクト */
  .footer-brand img { max-width: 180px; height: auto; margin: 0 auto; display: block; }

  /* 法定リンク類を横並び・折り返し */
  .footer-min__list {
    display: flex; flex-wrap: wrap; gap: .6rem 1rem;
    justify-content: center; padding: 0; margin: .5rem 0 0;
    list-style: none;
  }
  .footer-min__link { font-size: .9rem; line-height: 1.6; }

  /* コピーライトを控えめに */
  .footer-copy { margin-top: 1rem; font-size: .8rem; opacity: .8; text-align: center; }
}

/* 総合カタログ・ヒーローバナー（共通） */
.c-catalog-cta{ margin: 28px 0 12px; }
.c-catalogBanner{
  --photo:none;
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border: 2px solid #c94f4f;
  border-radius: 12px;
  background: #fff7f5;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.c-catalogBanner::after{
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(255,247,245,.85) 0%, rgba(255,247,245,.55) 48%, rgba(255,247,245,0) 75%),
    var(--photo) center/cover no-repeat;
  z-index: 0;
}
.c-catalogBanner__copy, .c-catalogBanner__cta{ position: relative; z-index: 1; }
.c-catalogBanner__kicker{
  display: inline-block; font-size: .85rem; letter-spacing: .06em;
  color:#a83d3d; background:#fff; border:1px solid #f2c8c8; border-radius: 999px;
  padding:.2rem .6rem; margin-bottom:.4rem;
}
.c-catalogBanner__title{
  display:block; font-weight: 800; color:#c94f4f; line-height:1.3; font-size:1.3rem;
}
.c-catalogBanner__desc{ display:block; margin-top:.25rem; color:#4a2c2a; font-size:.95rem; }
.c-catalogBanner__cta{
  align-self: center; justify-self: end;
  background:#c94f4f; color:#fff; font-weight:700; border-radius: 10px;
  padding:.6rem 1.1rem; white-space: nowrap;
}
.c-catalogBanner:hover{ transform: translateY(-2px); box-shadow:0 6px 18px rgba(0,0,0,.08); }
.c-catalogBanner:focus-visible{ outline:3px solid #c94f4f; outline-offset:3px; }

/* モバイル最適化 */
@media (max-width: 640px){
  .c-catalogBanner{
    grid-template-columns: 1fr; gap:.75rem; padding: .95rem;
  }
  .c-catalogBanner__title{ font-size:1.15rem; }
  .c-catalogBanner__cta{ justify-self: start; }
  .c-catalogBanner::after{
    background:
      linear-gradient(180deg, rgba(255,247,245,.92) 0%, rgba(255,247,245,.6) 55%, rgba(255,247,245,0) 100%),
      var(--photo) center 35%/cover no-repeat;
  }
}

/* 動き控えめ設定に配慮 */
@media (prefers-reduced-motion: reduce){
  .c-catalogBanner{ transition: none; }
  .c-catalogBanner:hover{ transform:none; box-shadow:none; }
}

/* 追加の軽微な上書き（必要に応じて外部CSSへ移行OK） */
    :root { --accent:#C94F4F; }
    .top-nav a:hover,.top-nav a:focus{ color:#C94F4F; text-decoration:underline; }
    @media (max-width:768px){
      .hero-content h1{ font-size:1.6rem; text-align:center; }
      .hero-content h2{ font-size:1rem; text-align:center; }
      .section-grid{ gap:1.2rem; grid-template-columns:1fr; }
    }
    .c-rankingIndicator{ position:absolute; top:.5rem; left:.5rem; background:#C94F4F; color:#fff; border-radius:50%; width:2rem; height:2rem; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:1rem; }
    .c-items-image{ position:relative; }
    /* 小さなアクセシビリティ補助 */
    .c-cart-icon > span:empty{ display:none; }
    /* 「探す」カード群の見た目 */
    .c-footer-icons{ margin-top:2em; }
    .c-footer-icons h4{ font-size:16px; font-weight:700; margin-bottom:.5em; color:#C94F4F; }
    .c-footer-icons .c-icon-list{ display:flex; gap:12px; flex-wrap:wrap; padding:0; list-style:none; }
    .c-footer-icons .c-icon-list li{ text-align:center; width:80px; }
    .c-footer-icons .c-icon-list img{ width:100%; border-radius:8px; border:1px solid #eee; transition:transform .3s ease; }
    .c-footer-icons .c-icon-list img:hover{ transform:scale(1.05); }
    .c-footer-icons .c-icon-label{ display:block; margin-top:.3em; font-size:12px; color:#333; }
    .c-filter-group{
      background-image:url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='10' height='10' fill='%23f9f5f0'/%3E%3Crect x='10' y='10' width='10' height='10' fill='%23f9f5f0'/%3E%3C/svg%3E");
      background-color:#fff; background-size:20px 20px; border-radius:16px; padding:2rem; margin-top:2rem; box-shadow:0 2px 8px rgba(0,0,0,.05);
    }

/* ミニ誘導バナー（共通） */
.c-miniBanners{ margin: 12px 0 18px; }
.c-miniBanners__grid{
  display:grid; gap:12px;
  grid-template-columns: repeat(4, minmax(0,1fr));
}
@media (max-width: 960px){
  .c-miniBanners__grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .c-miniBanners__grid{ grid-template-columns: 1fr; }
}
.c-miniBanner{
  display:flex; align-items:center; gap:.6rem;
  padding:.75rem .9rem; border:1px solid #e0b8b8; border-radius:10px;
  background: linear-gradient(180deg, #fff 0%, #fff4f1 100%);
  text-decoration:none; color:inherit;
  transition: transform .2s ease, box-shadow .2s ease;
}
.c-miniBanner:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}
.c-miniBanner:focus-visible{
  outline:3px solid #c94f4f; outline-offset:3px;
}
.c-miniBanner__icon{ font-size:1.35rem; line-height:1; }
.c-miniBanner__text{ line-height:1.35; }
.c-miniBanner__text strong{ display:block; color:#c94f4f; font-size:.98rem; }
.c-miniBanner__text em{ display:block; font-style:normal; color:#6b4b45; font-size:.86rem; opacity:.9; }

/* 読みものだけ少し強調 */
.c-miniBanner--accent{
  border-color:#c94f4f;
  background:#fff7f5;
}
@media (prefers-reduced-motion: reduce){
  .c-miniBanner{ transition: none; }
  .c-miniBanner:hover{ transform:none; box-shadow:none; }
}

.c-miniBanner__icon{
  display:inline-flex; align-items:center; justify-content:center;
  width: 1.6em; height: 1.6em; /* 絵文字と同じスケール感 */
  line-height:1;
}
.c-miniBanner__icon img{
  width:100%; height:100%; object-fit:contain;
}

  /* ご利用案内バナー（体裁調整：中央寄せ・角丸・影／総合カタログと同トーン） */
  .c-calendar .c-guide-banner{
    display:block;
    max-width:840px;       /* ← お好みで 720px/900px 等に */
    margin:12px auto 18px; /* 中央寄せ */
    border:2px solid #C94F4F;
    border-radius:12px;
    overflow:hidden;
    background:#fff7f5;
    box-shadow:0 6px 16px rgba(0,0,0,.06);
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .c-calendar .c-guide-banner:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(0,0,0,.10);
  }
  .c-calendar .c-guide-banner img{
    display:block;
    width:100%;
    height:auto;
    aspect-ratio:16/9;       /* CLS対策：枠を先取り */
    object-fit:cover;
  }
  @media (max-width:600px){
    .c-calendar .c-guide-banner{
      max-width:100%;
      margin:10px 0 14px;
      border-width:1.5px;
      border-radius:10px;
    }
  }
  @media (prefers-reduced-motion: reduce){
    .c-calendar .c-guide-banner{ transition:none; }
    .c-calendar .c-guide-banner:hover{ transform:none; box-shadow:0 6px 16px rgba(0,0,0,.06); }
  }

/* ▼ 追従購入バーと重ならないよう、.c-cart-sp を持ち上げる */
@media (max-width: 960px){
  :root{ --sticky-buybar-h: 64px; } /* 初期値。JSで上書きされます */

  .c-cart-sp{
    position: fixed;
    right: 14px;
    bottom: 14px;         /* 追従バーが無いときの標準位置 */
    z-index: 1000;        /* バーより上に出すなら 1000 のまま */
  }

  /* 追従バーが有効なときは、その高さ分だけ底上げ */
  body.has-sticky-buybar .c-cart-sp{
    bottom: calc(var(--sticky-buybar-h) + 12px) !important;
  }
}

@media (max-width: 600px) {
  /* 各セクション全体の上下余白を統一 */
  #feature-highlight,
  #feature-season,
  #catalog-hero,
  #dayori,            /* 最新の読みもの */
  .c-catalog-cta,     /* 総合カタログ誘導バナー */
  .c-calendar         /* 営業日カレンダー */
  {
    padding: 2rem 1rem;
  }

  /* 各ブロック（カード・ハイライト）の余白を統一 */
  .c-highlight-block,
  .season-card,
  .c-guide-banner {
    margin: 1.5rem 0;
    padding: 1.5rem 1rem;
  }

  /* セクション説明文の余白調整 */
  .section-description,
  .season-description {
    margin-bottom: 1.5rem;
  }
}
