@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #222222;
  line-height: 1.5;
  font-weight: 400;
  font-style: normal;
}

a {
  color: #222222;
}


.siteHeader {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  padding-top: 15px;
  background: #fff;
}

.siteHeader__inner {
  padding-top: 14px;
}

.siteHeader__top {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px 26px;
  align-items: center;
}

.siteHeader__logo {
  width: 220px;
}

.siteHeader__catch {
  margin: 0;
  font-size: 12px;
}

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

.utilityNav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: flex-end;
  font-size: 14px;
  font-weight: 500;
}

.siteHeader__searchRow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 12px 0 14px;
}

.headerSearch {
  position: relative;
  width: 274px;
  max-width: 100%;
}

.headerSearch__input {
  width: 100%;
  height: 40px;
  padding: 4px 38px 8px 10px;
  border: 1px solid #bfb7ab;
  background: #f9f7f2;
  font-size: 14px;
  border-radius: 0;
}
.headerSearch__input::placeholder {
  color: #707070;
  font-size: 14px;
}

.headerSearch__detail {
  font-size: 13px;
}

.headerSearch__button {
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  border: 0;
  background: transparent;
  color: var(--chuko-black);
  cursor: pointer;
}
.headerSearch__button .icon img {
  width: 18px;
}

.globalNav__item.is-active .globalNav__button,
.globalNav__button:hover {
  color: #fff;
  background: #b9841f;
  opacity: 1;
}

.siteHeader__mobileBar {
  display: none;
}

.header_actionbox {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
}

.globalNavWrap {
  background: #000;
  color: #fff;
  margin-top: 4px;
}

.globalNavWrap__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.globalNav__list {
  display: flex;
  align-items: stretch;
}

.globalNav__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.globalNav__arrow {
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.accountNav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: -8px;
}

.accountNav__item .icon {
  width: 22px;
}

.accountNav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 8px;
  min-height: 48px;
  font-size: 12px;
  color: #fff;
}

.accountNav__link svg {
  opacity: 0.95;
}

.accountNav__count {
  position: absolute;
  top: 5px;
  left: 0;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #b9841f;
  color: #fff;
  font-size: 11px;
  line-height: 18px;
  text-align: center;
}

.megaMenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  pointer-events: none;
  display: none;
}

.megaMenu__inner {
  margin-top: 0;
}

.megaPanel {
  display: none;
  pointer-events: auto;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 34px 40px 42px;
}

.categoryList--menu {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.categoryList {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 16px;
}

.categoryList__item {
  min-width: 0;
}

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

.categoryList__link {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 8px 10px;
}

.categoryList__thumb {
  flex: none;
  width: 34px;
  width: 50px;
}

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

.chukoTop img {
  max-width: 100%;
  display: block;
}

.categoryList__label {
  display: block;
  font-size: 14px;
  line-height: 1.5;
}

.makerGrid--menu {
  gap: 16px;
}

.makerGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  grid-template-rows: subgrid;
}

.makerGrid--menu .makerGrid__link {
  background: transparent;
  border-width: 0 0 1px;
  min-height: 106px;
}

.makerGrid__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 126px;
  padding: 20px 12px 18px;
  border: 1px solid var(--chuko-border-soft);
  background: #fff;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
  border-bottom: 1px solid #cccccc;
}

.makerGrid__en {
  display: flex;
  flex-wrap: wrap;
  height: 42px;
  align-items: center;
  justify-content: center;
}

.makerGrid__en img {
  max-height: 42px;
}

.makerGrid__jp {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}

.megaPanel__condition {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 30px;
}

.megaPanel__ttl {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: bold;
}

.chipList {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chipList--mega {
  gap: 10px;
}

.chipList__item {
  max-width: 100%;
}

.chipList__link {
  display: flex;
  min-width: 108px;
  padding: 12px 16px;
  border: 1px solid #dddddd;
  background: #fff;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.megaPanel.is-active {
  display: block;
}

.megaMenu.is-open {
  display: block;
}

.mobileDrawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mobileDrawer.is-open {
  visibility: visible;
  opacity: 1;
}

.mobileDrawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.mobileDrawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding: 16px 0 0;
  background: #f3f2ef;
  background: #fff;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}

.mobileDrawer.is-open .mobileDrawer__panel {
  transform: translateX(0);
}

.mobileDrawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-left: 20px;
  padding-right: 20px;
}

.mobileDrawer__logo {
  width: 150px;
}

.mobileDrawer__close {
  width: 20px;
  border: 0;
  background: transparent;
}

.mobileDrawer__auth {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 20px 20px;
}

.drawerBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 48px;
  border: 1px solid #cfc9be;
  background: #fff;
  font-weight: 500;
}
.drawerBtn .icon {
  width: 24px;
}

.drawerBtn--dark {
  background: #222;
  border-color: #222;
  color: #fff;
}

.drawerSection {
  padding: 20px 16px;
}

.drawerSection--history {
  background: #F8F8F4;
}

.drawerSection__ttl {
  margin: 0 0 14px;
  font-size: 16px;
}

.drawerSection__ttl span {
  margin-left: 10px;
  color: #8b8a84;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.historyMiniList {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  scroll-snap-type: x mandatory;
  padding-bottom: 4px;
}

.historyMiniList::-webkit-scrollbar {
  display: none; /* WebKit */
}

.historyMini {
  flex: 0 0 auto;
  width: 100px;
  scroll-snap-align: start;
}

.historyMini__figure {
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 8px;
}

.historyMini__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.historyMini__title {
  margin: 0;
  font-size: 11px;
  line-height: 1.5;
}

.drawerQuickLinks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 14px;
}

.drawerQuickLinks a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #d8d2c7;
}
.drawerQuickLinks a .icon {
  width: 20px;
}

.drawerSearch {
  position: relative;
}

.drawerSearch input {
  width: 100%;
  height: 48px;
  padding: 0 48px 0 14px;
  border: 1px solid #ccc;
  background: #F7F7F7;
  border-radius: 0;
}

.drawerSearch button {
  position: absolute;
  right: 0;
  top: 0;
  width: 46px;
  height: 48px;
  border: 0;
  background: transparent;
}
.drawerSearch button .icon img {
  width: 20px;
  vertical-align: middle;
}

.chipList--drawer {
  margin-top: 12px;
  gap: 8px;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  padding-bottom: 4px;
}

.chipList--drawer::-webkit-scrollbar {
  display: none; /* WebKit */
}

.chipList--drawer .chipList__item {
  flex: 0 0 auto;
  white-space: nowrap;
}

.chipList--drawer .chipList__link {
  min-width: auto;
  padding: 8px 12px;
  font-size: 12px;
}

.drawerAccordion {
  margin-top: 16px;
  border-top: 1px solid #d8d2c7;
  border-bottom: 1px solid #d8d2c7;
}

.drawerAccordion + .drawerAccordion {
  margin-top: -1px;
}

.drawerAccordion summary {
  position: relative;
  padding: 16px 20px 16px;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  background: #fff;
}

.drawerAccordion summary::-webkit-details-marker {
  display: none;
}

.drawerAccordion summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-50%);
}

.drawerAccordion[open] summary::after {
  content: "−";
}

.categoryList--drawer {
  grid-template-columns: 1fr;
  gap: 0;
  padding-bottom: 14px;
  background: #F8F8F4;
}

.categoryList--drawer .categoryList__link {
  padding: 10px 20px;
}

.drawerTextList {
  background: #F8F8F4;
}

.drawerTextList a {
  display: block;
  padding: 12px 20px;
}

.drawerContact {
  margin-top: 18px;
  padding-left: 20px;
  padding-right: 20px;
}

.drawerContact__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  border: 1px solid #cfc9be;
  background: #fff;
}
.drawerContact__btn .icon {
  width: 20px;
}

.drawerBottom {
  margin-top: 24px;
  padding-top: 24px;
  text-align: center;
  background: #F8F8F4;
  padding-bottom: 50px;
}

.drawerBottom__lead {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.drawerBottom__logo {
  display: inline-block;
  width: 180px;
}

.socialList--drawer {
  justify-content: center;
  margin-top: 16px;
}

.mobileIconNav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobileIconNav a,
.mobileMenuButton {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  border: 0;
  background: transparent;
  color: #222;
}

.mobileIconNav .mobileIconNav__cart {
  width: 28px;
}

.mobileIconNav__count {
  position: absolute;
  top: -9px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  padding: 0 3px;
  border-radius: 999px;
  background: #BC871E;
  color: #fff;
  font-size: 11px;
  line-height: 18px;
  text-align: center;
}

.mobileMenuButton__icon--close {
  display: none;
}

.mobileMenuButton.is-active .mobileMenuButton__icon--menu {
  display: none;
}

.mobileMenuButton.is-active .mobileMenuButton__icon--close {
  display: inline-flex;
}
/*0414NeWItem*/
.productRail .item .img {
  overflow: hidden;
}
.productRail .item .img img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.productRail .item a:hover .img img {
  transform: scale(1.05);
  opacity: 0.7;
}
ul.newitem_list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 5px;
    margin-top: 5px;
}
ul.newitem_list li {
    border: 1px solid;
    border-radius: 5px;
    padding: 0 5px;
    width: fit-content;
    font-size: 12px;
    line-height: 1.6;
}
@media (max-width: 767px) {
  .siteHeader__top,
  .siteHeader__searchRow,
  .globalNavWrap,
  .megaMenu {
    display: none;
  }
  .siteHeader__inner {
    padding-top: 10px;
  }
  .siteHeader__mobileBar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 10px;
  }
  .siteHeader__mobileLogo {
    width: 136px;
  }
}
.siteFooter {
  margin-top: 52px;
  padding: 48px 0 30px;
  background: #efede8;
}

.siteFooter__box {
  display: grid;
  gap: 120px;
  grid-template-columns: 238px 1fr;
}

.siteFooter__bottom {
  border-top: 1px solid #cccccc;
  padding-top: 38px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.siteFooter__logo {
  display: block;
  width: 238px;
}

.socialList {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.socialList__item a {
  width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footerNav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.footerNav__ttl {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: bold;
}

.footerNav__list li + li {
  margin-top: 8px;
}

.footerNav__list a {
  font-size: 13px;
}

.siteFooter__payments {
  width: 348px;
}

.siteFooter__copy {
  margin: 0;
  text-align: center;
  color: #565656;
  font-size: 12px;
}

@media (max-width: 767px) {
  .siteFooter {
    margin-top: 36px;
    padding: 32px 0 24px;
  }
  .siteFooter__box {
    display: block;
  }
  .siteFooter__logo {
    margin: 0 auto;
  }
  .socialList {
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
  }
  .footerAccordion {
    padding-top: 40px;
  }
  .socialList__item a {
    width: 32px;
  }
  .footerAccordion__summary {
    position: relative;
    padding: 14px 26px 14px 0;
    cursor: pointer;
    list-style: none;
    font-weight: 700;
  }
  .footerAccordion__summary::-webkit-details-marker {
    display: none;
  }
  .footerAccordion__summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
  }
  .footerAccordion__item[open] .footerAccordion__summary::after {
    content: "−";
  }
  .footerAccordion__list {
    padding: 0 0 14px;
  }
  .footerAccordion__list li + li {
    margin-top: 8px;
  }
  .footerAccordion__list a {
    color: #555;
    font-size: 14px;
  }
  .siteFooter__payments {
    justify-content: flex-start;
  }
  .siteFooter__bottom {
    flex-direction: column;
  }
  .siteFooter__copy {
    order: 2;
  }
}


.l-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.spOnlyBlock {
  display: none;
}

@media (max-width: 767px) {
  .pcOnlyFlex,
  .pcOnly {
    display: none !important;
  }
  .spOnlyBlock {
    display: block;
  }
}
.a-headline {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 30px;
}
.a-headline .title {
  font-size: 28px;
  font-weight: 500;
  margin: 0;
}
@media print, screen and (max-width: 979px) {
  .a-headline .title {
    font-size: 20px;
  }
}
.a-headline .label {
  font-size: 18px;
  margin: 0;
  font-family: "Open Sans", sans-serif;
  color: #707070;
}
@media print, screen and (max-width: 979px) {
  .a-headline .label {
    font-size: 14px;
  }
}

@media print, screen and (max-width: 979px) {
  .pcOnlyBlock {
    display: none;
  }
}

.a-productList {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.a-productList .item .content {
  padding: 16px 0 0;
}
@media print, screen and (max-width: 979px) {
  .a-productList .item .content {
    padding: 8px 0 0;
  }
}
.a-productList .item .content .text {
  font-size: 13px;
}
.a-productList .item .content .price {
  margin-top: 8px;
}
.a-productList .item .content .price .price__value {
  font-size: 18px;
  font-family: "Open Sans", sans-serif;
}
.a-productList .item .content .price .price__value.is-primary {
  color: #ad0000;
}
.a-productList .item .content .price .price__label {
  font-size: 13px;
}
.a-productList .item .content .price .price__label.is-primary {
  color: #ad0000;
}

@media (max-width: 767px) {
  /* Pickup shop: 2 columns on SP */
  .pickupShop .a-productList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}
@media (max-width: 767px) {
  /* Service: 2 columns on SP */
  .service .a-productList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 12px;
  }
}
.productRail {
  position: relative;
}

.productRail__track {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
}

.productRail__track::-webkit-scrollbar {
  display: none;
}

.productRail .a-productList {
  display: flex;
  gap: 16px;
  padding: 0;
  margin: 0;
}

.productRail .a-productList .item {
  flex: 0 0 auto;
  width: min(260px, 72vw);
  scroll-snap-align: start;
}

@media (max-width: 767px) {
  .productRail__track {
    margin-left: -20px;
    margin-right: -20px;
    scroll-padding-left: 20px;
  }
  .productRail .a-productList {
    gap: 12px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .productRail .a-productList .item {
    width: 43.4782608696%;
  }
}
@media (min-width: 768px) {
  .productRail .a-productList .item {
    width: calc((100% - 48px) / 4);
  }
}
.railArrow {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgb(0, 0, 0);
  cursor: pointer;
  z-index: 2;
}

.railArrow--prev {
  right: 60px;
}

.railArrow--next {
  right: 0;
}

.railArrow::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(135deg);
}

.railArrow--next::before {
  transform: rotate(-45deg);
}

.heroSlider {
  --hero-arrow-size: 40px;
  --hero-arrow-inset: -20px;
  --hero-slide-basis: 800px;
  position: relative;
  overflow: hidden;
  padding-bottom: 20px;
}

.heroSlider__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  gap: 12px;
  will-change: transform;
  transition: transform 0.4s ease;
}

.heroSlider .heroSlide {
  flex: 0 0 100%;
}

.heroSlider .heroSlide img {
  width: 100%;
  height: auto;
  display: block;
}

.heroSlider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: var(--hero-arrow-size);
  height: var(--hero-arrow-size);
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

@media (max-width: 767px) {
  .heroSlider__arrow {
    display: none;
  }
}
.heroSlider__arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(135deg);
}

.heroSlider__arrow--prev {
  left: 12px;
}

.heroSlider__arrow--next {
  right: 12px;
}

.heroSlider__arrow--next::before {
  transform: rotate(-45deg);
}

.heroSlider__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0 12px;
}

.heroSlider__dot {
  width: 24px;
  height: 4px;
  border: 0;
  background: #cccccc;
  cursor: pointer;
}

.heroSlider__dot.is-active {
  background: #888888;
}

@media (min-width: 768px) {
  .heroSlider {
    overflow: visible;
  }
  .heroSlider .heroSlide {
    flex-basis: var(--hero-slide-basis);
  }
  .heroSlider__arrow--prev {
    left: calc((100% - var(--hero-slide-basis)) / 2 - var(--hero-arrow-size) / 2 + var(--hero-arrow-inset));
    right: auto;
  }
  .heroSlider__arrow--next {
    right: calc((100% - var(--hero-slide-basis)) / 2 - var(--hero-arrow-size) / 2 + var(--hero-arrow-inset));
    left: auto;
  }
}
.topMain .section {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .topMain .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.topMain .section.ranking .railArrow__wrap {
  top: 70px;
}
.topMain .section.about {
  background: #f8f8f4;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media print, screen and (max-width: 979px) {
  .topMain .section.about {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.topMain .section.about .title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
}
@media print, screen and (max-width: 979px) {
  .topMain .section.about .title {
    font-size: 24px;
  }
}
.topMain .section.about .title .bar {
  background: linear-gradient(transparent 70%, #cfe5d3 70%);
}
.topMain .section.about .lead {
  text-align: center;
  font-size: 16px;
  margin-top: 30px;
  line-height: 1.75;
}
@media print, screen and (max-width: 979px) {
  .topMain .section.about .lead {
    font-size: 14px;
    text-align: left;
  }
}
.topMain .section.about .list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media print, screen and (max-width: 979px) {
  .topMain .section.about .list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 30px;
  }
}
.topMain .section.about .list .item {
  background-color: #ffffff;
  padding: 20px 10px;
  text-align: center;
}
.topMain .section.about .list .item .icon img {
  height: 80px;
  margin: auto;
}
@media print, screen and (max-width: 979px) {
  .topMain .section.about .list .item .icon img {
    height: 60px;
  }
}
.topMain .section.about .list .item .ttl {
  font-size: 16px;
  margin-top: 24px;
  font-weight: bold;
}
@media print, screen and (max-width: 979px) {
  .topMain .section.about .list .item .ttl {
    font-size: 14px;
    margin-top: 16px;
  }
}
.topMain .section.about .list .item .text {
  font-size: 13px;
  margin-top: 10px;
  line-height: 1.75;
}
@media print, screen and (max-width: 979px) {
  .topMain .section.about .list .item .text {
    font-size: 12px;
    margin-top: 8px;
    text-align: left;
  }
}
.topMain .section.guideline, .topMain .section.news, .topMain .section.banner02 {
  background: #f8f8f4;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media print, screen and (max-width: 979px) {
  .topMain .section.guideline, .topMain .section.news, .topMain .section.banner02 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.topMain .section.guideline .morebutton, .topMain .section.news .morebutton, .topMain .section.banner02 .morebutton {
  position: absolute;
  top: 0;
  right: 0;
  width: 270px;
  text-align: center;
}
@media print, screen and (max-width: 979px) {
  .topMain .section.guideline .morebutton, .topMain .section.news .morebutton, .topMain .section.banner02 .morebutton {
    position: relative;
    width: 100%;
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
  }
}
.topMain .section.guideline .morebutton a, .topMain .section.news .morebutton a, .topMain .section.banner02 .morebutton a {
  display: block;
  width: 100%;
  padding: 12px 0;
  border: 1px solid #cccccc;
}
.topMain .section.guideline .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media print, screen and (max-width: 979px) {
  .topMain .section.guideline .list {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
@media print, screen and (max-width: 979px) {
  .topMain .section.guideline .list .item a {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
.topMain .section.guideline .list .item .text {
  font-size: 14px;
  margin-top: 16px;
}
@media print, screen and (max-width: 979px) {
  .topMain .section.guideline .list .item .text {
    margin-top: 0;
  }
}
.topMain .section.banner02 {
  padding-top: 0;
}
.topMain .section.banner02 img {
  max-width: 640px;
  margin: auto;
}
@media print, screen and (max-width: 979px) {
  .topMain .section.banner02 img {
    max-width: 100%;
  }
}
.topMain .section.news {
  padding-top: 0;
}
.topMain .section.news .list {
  background: #fff;
  padding: 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media print, screen and (max-width: 979px) {
  .topMain .section.news .list {
    padding: 30px 20px;
    gap: 24px;
  }
}
.topMain .section.news .list .item a {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
}
@media print, screen and (max-width: 979px) {
  .topMain .section.news .list .item a {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.topMain .section.news .list .item .date {
  font-size: 14px;
  line-height: 1.75;
  color: #707070;
}
.topMain .section.news .list .item .text {
  font-size: 15px;
  line-height: 1.75;
}
.topMain .section.voice .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.topMain .section.voice .list .item {
  background: #F8F8F4;
  padding: 20px;
}
.topMain .section.voice .list .item .profile {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 12px;
}
.topMain .section.voice .list .item .profile img {
  width: 48px;
  height: 48px;
}
.topMain .section.voice .list .item .text {
  font-size: 14px;
}
@media print, screen and (max-width: 979px) {
  .topMain .section.voice .productList {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    scroll-snap-type: x mandatory;
    margin-left: -20px;
    margin-right: -20px;
    scroll-padding-left: 20px;
  }
  .topMain .section.voice .productList::-webkit-scrollbar {
    display: none;
  }
  .topMain .section.voice .list {
    display: flex;
    gap: 12px;
    padding: 0 0 0 20px;
    margin: 0;
  }
  .topMain .section.voice .list .item {
    flex: 0 0 auto;
    width: 80%;
    scroll-snap-align: start;
  }
}
.topMain .search .box {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 0;
  margin-bottom: 60px;
}
@media print, screen and (max-width: 979px) {
  .topMain .search .box {
    display: block;
  }
}
.topMain .search .box .title {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}
@media print, screen and (max-width: 979px) {
  .topMain .search .box .title {
    margin-bottom: 10px;
  }
}
.topMain .search .box .brandList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media print, screen and (max-width: 979px) {
  .topMain .search .box .brandList {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
.topMain .search .box .brandList .item {
  text-align: center;
  border: 1px solid #cccccc;
}
.topMain .search .box .brandList .item a {
  display: block;
  width: 100%;
  height: 100%;
}
.topMain .search .box .brandList .item .img {
  text-align: center;
  padding: 30px 0;
  min-height: 100px;
}
@media print, screen and (max-width: 979px) {
  .topMain .search .box .brandList .item .img {
    padding: 16px 0;
    min-height: 50px;
  }
}
.topMain .search .box .brandList .item .img.importedpiano01 img {
  height: 30px;
}
@media print, screen and (max-width: 979px) {
  .topMain .search .box .brandList .item .img.importedpiano01 img {
    height: 16px;
  }
}
.topMain .search .box .brandList .item .img img {
  height: 40px;
  margin: auto;
}
@media print, screen and (max-width: 979px) {
  .topMain .search .box .brandList .item .img img {
    height: 20px;
  }
}
.topMain .search .box .brandList .item .text {
  font-size: 14px;
  border-top: 1px solid #cccccc;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media print, screen and (max-width: 979px) {
  .topMain .search .box .brandList .item .text {
    min-height: 40px;
    font-size: 10px;
    line-height: 1.2;
  }
}
.topMain .search .box .categoryList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media print, screen and (max-width: 979px) {
  .topMain .search .box .categoryList {
    grid-template-columns: repeat(2, 1fr);
  }
}
.topMain .search .box .categoryList .item a {
  padding: 0;
}
.topMain .search .box .priceList {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 9px;
}
@media print, screen and (max-width: 979px) {
  .topMain .search .box .priceList {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
.topMain .search .box .priceList .item a {
  height: 56px;
  width: 100%;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  border: 1px solid #cccccc;
}
@media print, screen and (max-width: 979px) {
  .topMain .search .box .priceList .item a {
    font-size: 12px;
    height: 48px;
  }
}
.topMain .search .box .conditionList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media print, screen and (max-width: 979px) {
  .topMain .search .box .conditionList {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.topMain .search .box .conditionList .item a {
  height: 56px;
  width: 100%;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  border: 1px solid #cccccc;
}
@media print, screen and (max-width: 979px) {
  .topMain .search .box .conditionList .item a {
    font-size: 12px;
    height: 48px;
  }
}

.railArrow__wrap {
  position: absolute;
  top: 10px;
  right: 0;
}
@media print, screen and (max-width: 979px) {
  .railArrow__wrap {
    display: none;
  }
}

.tableList {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 30px;
}

.tableList .item {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  /* Tabs: horizontal scroll on SP */
  .tableList[data-tabs] {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
  }
  .tableList[data-tabs]::-webkit-scrollbar {
    display: none;
  }
  .tableList[data-tabs] .item {
    flex-wrap: nowrap;
    white-space: nowrap;
  }
  .tableList[data-tabs] .tableTab {
    flex: 0 0 auto;
  }
}
.tableTab {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 10px 14px;
  cursor: pointer;
  border-bottom: 2px solid #cccccc;
  font-size: 14px;
  color: #707070;
}

.tableTab.is-active {
  border-bottom-color: #b9841f;
  font-weight: 700;
  color: #222222;
}

.tabPanel[hidden] {
  display: none;
}

.tabPanel {
  margin-top: 14px;
}