* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

button {
  cursor: pointer;
  font-family: inherit;
}

:root {
  --bg1: #ffffff;
  --bg2: #edf3e8;
  --mainColor: #85b83a;
  --accentColor: #c14d4d;
  --lightGray: #e2e2e2;
  --textColor: #444;
  --textttlColor: #333;
  --textGlayColor: #777;
  --fontLight: 300;
  --fontRegurlar: 400;
  --fontMedium: 500;
  --fontSemiBold: 600;
  --fontBold: 700;
  --failed: #a0a0a0;
}

html {
  font-size: 62.5%;
  max-width: 100%;
}

body {
  font-size: 1.6rem;
  font-family:
    "Roboto", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  color: var(--textColor);
  font-weight: var(--fontRegurlar);
  letter-spacing: 0.05rem;
  line-height: 1.6;
}

h2 {
  color: var(--textttlColor);
  font-size: 2.8rem;
  font-weight: 500;
}

.sp {
  display: block;
}

.pc {
  display: none;
}

/* =========================
   Header
========================= */

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg1);
}

body.no-sticky header {
  position: static;
}

.header__nav {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__left {
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.header__tools {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.header__hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
}

.header__hamburgerBtn {
  width: 30px;
  height: 30px;
  border: 0;
  background: none;
  color: #444;
  cursor: pointer;
}

.header__logo img,
.header__serch img,
.header__login img,
.header__cart img {
  display: block;
  padding: 10px;
}

.header__cart {
  position: relative;
}

.cartBadge {
  position: absolute;
  top: 3px;
  right: 5px;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accentColor);
  color: #fff;
  font-size: 1.4rem;
  line-height: 150%;
  text-align: center;
  display: inline-block;
}

#cartBadge[hidden],
.cartBadge[hidden] {
  display: none !important;
}

/* =========================
   Navigation Drawer
========================= */

.navOverlay[hidden],
.navDrawer[hidden] {
  display: none !important;
}

.navOverlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 70px;
  bottom: 0;
  background: rgba(0, 0, 0, 0.24);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 2000;
}

.navOverlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.navDrawer {
  position: fixed;
  left: 0;
  right: auto;
  top: 70px;
  bottom: 0;
  width: min(720px, 100%);
  background: var(--bg1);
  display: grid;
  grid-template-rows: auto 1fr;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 3001;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.navDrawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

html.is-nav-open {
  overflow: hidden;
}

.header__hamburgerBtn .hambIcon line {
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
  transform-origin: 12px 12px;
  stroke-linecap: round;
}

html.is-nav-open .header__hamburgerBtn[data-nav-open] .b1 {
  transform: translateY(6px) rotate(45deg);
}

html.is-nav-open .header__hamburgerBtn[data-nav-open] .b2 {
  opacity: 0;
}

html.is-nav-open .header__hamburgerBtn[data-nav-open] .b3 {
  transform: translateY(-6px) rotate(-45deg);
}

.menuSection {
  background: var(--bg1);
}

.menuSection__title {
  font-size: 13px;
  font-weight: 700;
  padding: 5px 20px;
}

.menuList {
  list-style: none;
  background: var(--bg2);
}

.menuItem {
  display: flex;
  align-items: center;
  height: 50px;
  gap: 10px;
  width: 100%;
  padding: 10px 20px;
  border-bottom: 1px solid #fff;
  color: var(--textColor);
  text-decoration: none;
  background: transparent;
}

.menuItem .chev {
  width: 20px;
  height: 20px;
  margin-left: auto;
  color: #444;
}

.menuItem--toggle {
  border: 0;
  font-size: 1.6rem;
  background: var(--bg2);
}

.menuItem--toggle .chev .v {
  transform-box: fill-box;
  transform-origin: 50% 50%;
  transition:
    transform 0.18s ease,
    opacity 0.18s ease;
  opacity: 1;
}

.menuItem--toggle[aria-expanded="true"] .chev .v {
  transform: scaleY(0);
  opacity: 0;
}

.submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #edf3e8;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 0.28s ease,
    opacity 0.28s ease;
  will-change: max-height, opacity;
}

.submenu.is-open {
  opacity: 1;
}

.submenuItem {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--textColor);
  padding-right: 20px;
  border-top: 1px solid #fff;
  background: #e3eadb;
}

.submenuItem:hover {
  background: #e8efe3;
}

.submenuItem--thumb img {
  width: 50px;
}

.submenuItem .chev {
  width: 20px;
  height: 20px;
  margin-left: auto;
  color: #444;
}

.menuSNS {
  display: flex;
  justify-content: center;
  padding: 30px 0;
  gap: 30px;
}

.menuSNS a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menuSNS img {
  width: 30px;
  height: auto;
}

/* =========================
   Hamburger
========================= */

.btn-trigger {
  position: relative;
  width: 21px;
  height: 16px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

.btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--textColor);
  border-radius: 1px;
}

.btn-trigger,
.btn-trigger span {
  display: inline-block;
  transition: all 0.4s ease;
  box-sizing: border-box;
}

.btn-trigger span:nth-of-type(1) {
  top: 0;
}

.btn-trigger span:nth-of-type(2) {
  top: 7px;
}

.btn-trigger span:nth-of-type(3) {
  bottom: 0;
}

#btn03.active {
  transform: rotate(360deg);
}

#btn03.active span:nth-of-type(1) {
  transform: translateY(7px) rotate(-45deg);
}

#btn03.active span:nth-of-type(2) {
  transform: translateY(0) rotate(45deg);
}

#btn03.active span:nth-of-type(3) {
  opacity: 0;
}

/* =========================
   Key Visual / News
========================= */

.keyVisual {
  max-width: 780px;
  aspect-ratio: 1 / 1;
  background-image: -webkit-image-set(
    url(../images/keyvisual/keyvisual-390.webp) 1x,
    url(../images/keyvisual/keyvisual-780.webp) 2x
  );
  background-image: image-set(
    url(../images/keyvisual/keyvisual-390.webp) 1x,
    url(../images/keyvisual/keyvisual-780.webp) 2x
  );
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.keyVisual h1 {
  font-family: "Noto Serif JP", serif;
  font-size: 3.2rem;
  color: #fff;
  font-weight: 200;
  letter-spacing: 0.2em;
  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.95),
    0 1px 2px rgba(0, 0, 0, 0.9);
  padding-left: 30px;
}

.news__item {
  display: flex;
  align-items: center;
  justify-content: left;
  background-color: var(--bg2);
  height: auto;
  padding: 10px;
  gap: 10px;
  border-radius: 0 0 20px 20px;
}

.news__icon img {
  display: block;
}

.news__content {
  display: grid;
  grid-template-rows: auto;
}

.news__title {
  font-size: 1.4rem;
}

.news__date {
  font-size: 1.2rem;
  color: var(--textGlayColor);
}

/* =========================
   Products
========================= */

.products {
  margin: 60px 20px 0 20px;
}

.products__ttl {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  justify-content: space-between;
}

.moreLink {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--textColor);
  text-decoration: none;
}

.moreLink__text {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
  transition:
    color 0.25s ease,
    text-shadow 0.25s ease;
}

.moreLink img {
  width: 1em;
  height: 1em;
}

.section__title {
  display: inline-block;
  vertical-align: baseline;
  line-height: 1.4;
  margin: 0;
}

.moreLink span {
  display: inline-block;
  box-sizing: border-box;
  width: 0.65em;
  height: 0.65em;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-0.5px) rotate(45deg);
  transform-origin: center;
  line-height: 1;
  transition:
    color 0.25s ease,
    text-shadow 0.25s ease;
}

.moreLink:visited {
  color: var(--textColor);
}

.moreLink:hover {
  color: var(--mainColor, #85b83a);
  font-size: 1.3rem;
  font-weight: 500;
  vertical-align: baseline;
  transition: all 0.25s ease-in-out;
}

.productGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  padding: 30px 0;
  margin: 0 auto;
}

.productCard {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 165px;
  max-width: 200px;
  list-style: none;
}

.productCard__link {
  color: var(--textColor);
  text-decoration: none;
}

.productCard__thumbWrap {
  position: relative;
  display: block;
  width: 100%;
}

.productCard__thumb {
  display: block;
  width: 100%;
  height: auto;
}

.productCard__rowA {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr auto;
  gap: 5px;
  width: 100%;
  margin: 0 5px;
}

.productCard__name {
  font-size: 1.4rem;
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  min-height: calc(1.6em * 2);
}

.productCard__rowB {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  width: 100%;
  padding: 5px 0 0 5px;
}

.productCard__stock {
  font-size: 1.2rem;
  line-height: 1;
  white-space: nowrap;
  min-height: 1em;
}

.productCard__stock--low {
  color: var(--accentColor);
}

.productCard__stock--none {
  color: var(--textGlayColor);
}

.productCard__price {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.productCard__cta {
  display: flex;
  justify-content: center;
  margin: 10px 0;
  width: 100%;
}

.favBtn {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: none;
  line-height: 0;
  cursor: pointer;
}

.badge {
  position: absolute;
  right: 1px;
  top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 110%;
  background: #fff;
  color: var(--mainColor);
  border: 1px solid var(--mainColor);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.badge--limited {
  background: #fff;
  color: var(--mainColor);
  border: 1px solid var(--mainColor);
}

.badge[hidden] {
  display: none !important;
}

/* =========================
   Common buttons
========================= */

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 280px;
  height: 50px;
  margin: 0 35px;
  color: #fff;
  background: var(--mainColor);
  border-radius: 9999px;
  text-decoration: none;
  border: none;
  position: relative;
}

.btn::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--mainColor);
  border-bottom: 1px solid var(--mainColor);
  z-index: 2;
}

.btnContainer {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btnCart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 145px;
  height: 30px;
  padding: 10px;
  border-radius: 50px;
  border: 1px solid var(--mainColor);
  background: #fff;
  color: var(--mainColor);
  font-size: 1.2rem;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    transform 0.02s ease;
}

.btnCart:hover {
  background: var(--mainColor);
  color: #fff;
}

.btnCart:active {
  transform: translateY(1px);
}

.btnCart[disabled],
.btnCart.is-disabled {
  border-color: var(--lightGray);
  color: #bbb;
  cursor: not-allowed;
  pointer-events: none;
}

.btnCart.is-disabled,
.btnCart:disabled {
  background: #ccc;
  color: #fff;
  cursor: not-allowed;
  opacity: 0.7;
  border: none;
}

.btnCart.is-disabled img,
.btnCart:disabled img,
.btnCart.is-disabled svg,
.btnCart:disabled svg {
  filter: grayscale(1) brightness(0.7);
  opacity: 0.7;
}

.btnCart.is-disabled::before,
.btnCart:disabled::before {
  border-color: #bbb;
  opacity: 0.7;
}

.productCard .btnCart.is-disabled,
.productCard .btnCart:disabled {
  background: white;
  color: var(--lightGray);
  border: 1px solid var(--lightGray);
  cursor: not-allowed;
  opacity: 1;
}

/* =========================
   Categories
========================= */

.categories {
  margin: 90px 20px;
}

.categories__list {
  display: flex;
  gap: 5px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-top: 20px;
  padding-bottom: 10px;
  margin: 0 -20px;
}

.categories__item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 165px;
  overflow: hidden;
}

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

.categories__name {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-shadow: 0 0 2px #2b2b2b;
  transition:
    transform 0.3s,
    color 0.3s;
}

.categories__fabric,
.categories__kitchen,
.categories__interior,
.categories__relax,
.categories__storage {
  position: relative;
  width: 165px;
  aspect-ratio: 1 / 1;
  background-size: cover;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-decoration: none;
  overflow: hidden;
}

.categories__fabric {
  background-image: -webkit-image-set(
    url(../images/categories/fabric/fabric-165.jpg) 1x,
    url(../images/categories/fabric/fabric-330.jpg) 2x
  );
}

.categories__kitchen {
  background-image: -webkit-image-set(
    url(../images/categories/kitchen/kitchen-165.jpg) 1x,
    url(../images/categories/kitchen/kitchen-330.jpg) 2x
  );
}

.categories__interior {
  background-image: -webkit-image-set(
    url(../images/categories/interior/interior-165.jpg) 1x,
    url(../images/categories/interior/interior-330.jpg) 2x
  );
}

.categories__relax {
  background-image: -webkit-image-set(
    url(../images/categories/relax/relax-165.jpg) 1x,
    url(../images/categories/relax/relax-330.jpg) 2x
  );
}

.categories__storage {
  background-image: -webkit-image-set(
    url(../images/categories/storage/storage-165.jpg) 1x,
    url(../images/categories/storage/storage-330.jpg) 2x
  );
}

/* =========================
   About
========================= */

.about {
  margin-top: 90px;
  position: relative;
  overflow: hidden;
}

.about__card {
  position: relative;
  background: var(--bg2);
  border-radius: 0 100px 0 0;
  padding: 60px 0;
  overflow: hidden;
}

.about__title {
  text-align: center;
  margin-bottom: 40px;
}

.about__title span {
  font-weight: 700;
}

.about__subtitle {
  font-weight: var(--fontMedium);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
}

.about__text {
  display: flex;
  justify-content: center;
  line-height: 1.9;
  padding: 0 20px;
  margin: 0 auto;
}

.about__gallery {
  position: relative;
  display: grid;
  margin: 30px 0 20px 0;
}

.about__photo {
  overflow: hidden;
}

.about__photo img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.about__photoA.sp {
  border-radius: 0 50px 0 50px;
  width: calc(290 / 390 * 100%);
  margin-left: 20px;
}

.about__photoB.sp {
  border-radius: 50px 0 50px 0;
  width: calc(210 / 390 * 100%);
  margin-left: auto;
  transform: translateY(-20%);
}

.about__photoC.sp {
  border-radius: 0 50px 0 50px;
  width: calc(230 / 390 * 100%);
}

.about__caption {
  text-align: center;
  margin: 30px;
}

.decor-circle {
  position: absolute;
  border-radius: 50%;
  background: #87caac;
}

.c1 {
  width: 12px;
  height: 12px;
  top: 36%;
  right: 9%;
}

.c2 {
  width: 28px;
  height: 28px;
  top: 54%;
  left: 7%;
}

.c3 {
  width: 23px;
  height: 23px;
  bottom: 25%;
  right: 10%;
}

.c4 {
  width: 12px;
  height: 12px;
  bottom: 23%;
  right: 17%;
}

/* =========================
   FAQ
========================= */

.faq__prevcl {
  background: var(--bg2);
}

.faq__card {
  position: relative;
  background: var(--bg1);
  border-radius: 0 100px 0 0;
  padding: 60px calc(20 / 390 * 100%) 90px calc(20 / 390 * 100%);
  overflow: hidden;
}

.faq__title {
  text-align: center;
  margin-bottom: 30px;
}

.faq__item {
  border-top: 1px solid #e2e2e2;
}

.faq__item:last-of-type {
  border-bottom: 1px solid #e6e6e6;
}

.faq__q {
  list-style: none;
  cursor: pointer;
  display: block;
  position: relative;
  padding: 20px 0;
}

.faq__q::-webkit-details-marker {
  display: none;
}

.faq__q::marker {
  content: "";
}

.faq__q::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 1px solid #444;
  border-bottom: 1px solid #444;
  transform: translateY(-50%) rotate(45deg);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.faq__item[open] .faq__q::after {
  transform: translateY(-50%) rotate(-135deg);
}

.faq__a {
  font-size: 1.4rem;
  margin-bottom: 30px;
}

.faq__btnContainer {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* =========================
   Footer
========================= */

.footer__prev {
  background: var(--bg1);
}

.footer__inner {
  background: #f5f5f5;
  border-radius: 0 100px 0 0;
  padding: 90px 20px 0;
  text-align: center;
}

.footer__logo img {
  height: 40px;
  margin-bottom: 30px;
}

.footer__nav {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footer__nav .navleft {
  list-style: none;
  text-align: left;
}

.footer__nav .navright {
  font-size: 1.3rem;
  list-style: none;
  text-align: left;
}

.footer__nav li {
  margin-bottom: 15px;
}

.footer__nav a {
  color: var(--textColor);
  text-decoration: none;
}

.footer__sns {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 20px 0;
}

.footer__sns img {
  width: 30px;
  height: 30px;
  display: block;
}

.copy__container {
  padding: 20px 0;
  border-top: 1px solid #d0d0d0;
}

.footer__copy {
  font-size: 1.4rem;
  color: var(--textGlayColor);
}

/* =========================
   Breadcrumb / Pager
========================= */

.productsname {
  margin: 0 20px;
}

.productsname .products__ttl {
  padding: 30px 0;
}

.breadcrumb__list {
  height: 30px;
  background-color: #f5f5f5;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  padding: 0 20px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  white-space: nowrap;
}

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

.breadcrumb__list li {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.breadcrumb__list li a {
  text-decoration: none;
  color: var(--textColor);
}

.breadcrumb__list li span {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--textColor);
  border-right: 1px solid var(--textColor);
  transform: rotate(45deg);
  margin: 0 4px;
}

#breadcrumbCurrent {
  max-width: none;
  overflow: visible;
  text-overflow: clip;
  white-space: nowrap;
}

.products__pager {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  margin: 40px 0;
}

.products__count {
  font-size: 1.2rem;
  text-align: center;
}

.pagination {
  width: 100%;
  display: flex;
  justify-content: center;
}

.pagination ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  font-size: 1.2rem;
  padding: 0;
  margin: 0;
}

.pagination ul li {
  min-width: 24px;
  text-align: center;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 28px;
  padding: 0 0.4rem;
  text-decoration: none;
  line-height: 1;
  color: var(--textColor);
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.pagination a:hover {
  color: var(--mainColor);
}

.pagination .is-current {
  font-weight: 700;
  border-bottom: 1px solid var(--textColor);
  pointer-events: none;
  cursor: default;
}

.pagination .is-disabled {
  color: var(--textGlayColor);
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
}

.pagination .arrow {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
}

/* =========================
   Filter / Sort
========================= */

.products__controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  padding: 0 20px;
  margin: 16px 0 8px;
}

.uiSelect {
  position: relative;
  display: block;
  width: 100%;
  background: #eee;
  border-radius: 8px;
  padding: 14px 16px;
  cursor: pointer;
  user-select: none;
}

.uiSelect select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  appearance: none;
  cursor: pointer;
}

.uiSelect__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 1.6rem;
  color: var(--textColor);
  letter-spacing: 0.06em;
}

.uiSelect::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--textColor);
  border-bottom: 2px solid var(--textColor);
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}

.uiSelect:first-child::before {
  content: "+";
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-52%);
  font-size: 1.8rem;
  color: var(--textColor);
  opacity: 0.55;
  pointer-events: none;
}

.filterBar {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.filterBtn {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 30px;
  max-width: 165px;
  background: #f5f5f5;
  border-radius: 2px;
  border: 1px solid #f5f5f5;
  color: var(--textColor);
  font-size: 1.4rem;
}

.filterBtn__chev,
.filterBtn__plus {
  position: relative;
  width: 20px;
  height: 20px;
  display: inline-block;
  color: #444;
}

.filterBtn__chev::before,
.filterBtn__chev::after,
.filterBtn__plus::before,
.filterBtn__plus::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 12px;
  height: 1px;
  background: currentColor;
  border-radius: 2px;
  transition:
    transform 0.18s ease,
    opacity 0.18s ease;
}

.filterBtn__chev::after,
.filterBtn__plus::after {
  transform: rotate(90deg);
}

.filterBtn[aria-expanded="true"] .filterBtn__chev::after,
.filterBtn[aria-expanded="true"] .filterBtn__plus::after {
  transform: rotate(0deg);
  opacity: 0;
}

.sortMenu {
  position: absolute;
  z-index: 2100;
  width: min(600px, calc(100% - 40px));
  left: 20px;
  right: 20px;
  margin-top: 0.8rem;
  background: #f5f5f5;
  border-radius: 5px;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.sortMenu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sortMenu__item {
  display: flex;
  height: 60px;
  width: 100%;
  text-align: left;
  align-items: center;
  background: none;
  border: 0;
  padding: 10px 20px;
  font-size: 1.6rem;
  color: var(--textColor);
  gap: 20px;
  cursor: pointer;
}

.sortMenu__item[aria-checked="true"] {
  font-weight: 700;
}

.sortMenu__item + .sortMenu__item {
  margin-top: 0.4rem;
}

.sortMenu__check {
  display: block;
  width: 40px;
}

.sortMenu__item[aria-checked="true"] .sortMenu__check::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url("../images/icon/check.svg") no-repeat center / contain;
}

.filterOverlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.24);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  z-index: 2200;
}

.filterOverlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.categorySheet {
  position: fixed;
  left: 50%;
  top: 50px;
  width: 350px;
  transform: translate(-50%, 6px);
  background: var(--bg1);
  border-radius: 5px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  z-index: 2201;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.categorySheet.is-open {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.categorySheet__bar {
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px 20px;
}

.categorySheet__title {
  font-size: 2rem;
  font-weight: 700;
}

.categorySheet__close {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border: 0;
  background: none;
  cursor: pointer;
}

.categorySheet__close span {
  position: absolute;
  left: 2px;
  right: 2px;
  top: 14px;
  height: 2px;
  background: #444;
  border-radius: 1px;
}

.categorySheet__close span:first-child {
  transform: rotate(45deg);
}

.categorySheet__close span:last-child {
  transform: rotate(-45deg);
}

.categorySheet__body {
  overflow: hidden;
}

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

.categorySheet__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 20px;
  height: 62px;
  border-top: 2px solid var(--bg2);
  color: var(--textColor);
  text-decoration: none;
  font-size: 1.6rem;
}

.categorySheet__item--thumb {
  padding: 0 0;
  padding-right: 20px;
}

.categorySheet__item--thumb img {
  width: 62px;
  height: 62px;
  object-fit: cover;
}

.categorySheet__item .chev {
  width: 20px;
  height: 20px;
  margin-left: auto;
  color: #444;
}

html.is-filter-open {
  overflow: hidden;
}

html.is-filter-open
  body
  > *:not(#cartOverlay):not(#cartSheet):not(#cartConfirm) {
  pointer-events: none;
}

html.is-filter-open header {
  pointer-events: none;
}

/* =========================
   Cart Modal
========================= */

.cartOverlay[hidden],
.cartSheet[hidden],
.cartConfirm[hidden] {
  display: none !important;
}

.cartOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  z-index: 4200;
}

.cartOverlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cartSheet,
.cartConfirm {
  position: fixed;
  left: 50%;
  top: 50px;
  width: min(560px, calc(100% - 24px));
  transform: translate(-50%, 8px);
  background: var(--bg1);
  border-radius: 5px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
  z-index: 4201;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.cartSheet.is-open,
.cartConfirm.is-open {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.cartSheet__bar {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 20px;
  background: var(--bg2);
  border-radius: 12px 12px 0 0;
}

.cartSheet__bar h3 {
  font-size: 2rem;
  font-weight: var(--fontSemiBold);
  color: var(--textttlColor);
}

.cartSheet__close {
  position: absolute;
  left: 20px;
  top: 18px;
  width: 30px;
  height: 30px;
  border: 0;
  background: none;
  cursor: pointer;
}

.cartSheet__close span {
  position: absolute;
  left: 7px;
  right: 7px;
  top: 17px;
  height: 2px;
  background: var(--textColor);
}

.cartSheet__close span:first-child {
  transform: rotate(45deg);
}

.cartSheet__close span:last-child {
  transform: rotate(-45deg);
}

.cartSheet__body {
  padding: 30px 50px;
}

.cartSheet__name {
  font-size: 1.6rem;
  color: var(--textColor);
  font-weight: var(--fontMedium);
}

.cartSheet__imgWrap {
  display: flex;
  justify-content: center;
  margin: 5px 0 10px;
}

.cartSheet__imgWrap img {
  width: 200px;
  max-width: 100%;
  height: auto;
  display: block;
}

.cartQty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 10px 0 20px;
}

.cartQty__btn {
  width: 40px;
  height: 40px;
  border: none;
  background: #d8d8d8;
  border-radius: 10px;
  font-size: 2.2rem;
}

.cartQty__btn.is-disabled,
.cartQty__btn[disabled] {
  opacity: 0.4;
  cursor: default;
  background: #f5f5f5;
  color: #9aa0a6;
  border-color: #e0e0e0;
}

.cartQty__btn img {
  transform: translateY(3px);
}

.cartQty__value {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 1.4rem;
  background: #fff;
}

.cartPrimaryBtn__Container {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cartAddBtn,
.cartPrimaryBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 50px;
  color: #fff;
  border: none;
  background: var(--mainColor);
  border-radius: 9999px;
  text-decoration: none;
  position: relative;
}

.cartPrimaryBtn::before {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--mainColor);
  border-bottom: 1px solid var(--mainColor);
  z-index: 2;
}

.cartPrimaryBtn::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  z-index: 1;
}

.cartPrimaryBtn:hover {
  opacity: 0.95;
}

.cartPrimaryBtn:active {
  transform: translateY(1px);
}

.cartConfirm__body {
  display: flex;
  justify-content: space-between;
  padding: 20px 20px 0 20px;
}

.cartConfirm__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 480px;
  gap: 5px;
  font-size: 1.4rem;
}

.cartConfirm__row strong {
  font-size: 2rem;
  font-weight: var(--fontBold);
}

/* =========================
   Product Detail
========================= */

.productDetail {
  max-width: 1200px;
  margin: 0 auto;
  min-width: 0;
  box-sizing: border-box;
}

.productDetail .productCard__stock::before {
  content: none !important;
}

.productDetail__Card {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

.productDetail__title {
  font-size: 1.8rem;
  font-weight: var(--fontMedium);
  padding: 20px 0 10px;
}

.productDetail__code {
  font-size: 1.3rem;
  margin: 10px 0 20px;
  color: var(--failed);
}

.productDetail__gallery {
  margin-top: 12px;
  margin-bottom: 25px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  justify-items: center;
}

.productDetail__mainImg {
  position: relative;
  width: min(100%, 560px);
  margin: 0 auto;
  overflow: hidden;
}

#pdMainImg {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  object-fit: contain;
}

#pdBadge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.1rem;
}

.productDetail__thumbs {
  width: min(100%, 560px);
  margin: 0 auto;
  padding: 5px 0;
  display: flex;
  gap: 5px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  list-style: none;
}

.productDetail__thumbs > li {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.productDetail__thumbs .pdThumb {
  all: unset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06) inset;
}

.productDetail__thumbs .pdThumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.productDetail__thumbs .pdThumb.is-active {
  box-shadow: 0 0 0 2px #7ebb3a inset;
}

.productDetail__thumbBtn {
  display: block;
  width: 100%;
  background: #fff;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
}

.productDetail__thumbBtn:focus {
  outline: none;
}

.productDetail__thumbBtn img {
  width: 100px;
}

.productDetail__buyArea {
  max-width: 560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
}

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

.productDetail__price {
  display: flex;
  align-items: baseline;
}

.productDetail .productCard__price {
  font-size: 2.8rem;
  font-weight: var(--fontSemiBold);
}

.productCard__tax {
  font-size: 1.4rem;
  color: var(--failed);
}

.productDetail__actions {
  display: flex;
  gap: 30px;
  align-items: center;
}

#pdFav.favBtn {
  width: 32px;
  height: 32px;
  border: 1px solid #eee;
  border-radius: 999px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}

#pdFav[aria-pressed="true"] {
  background: #fffaf2;
  border-color: #ffd9a8;
}

.productDetail__share {
  display: inline-block;
}

.shareBtn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
}

.shareBtn img {
  display: block;
  width: 32px;
  height: 32px;
}

.productDetail .productCard__stock {
  font-size: 1.4rem;
  margin-top: 10px;
}

#pdStock.productDetail__stock--none {
  color: var(--textGlayColor);
}

#pdStock.productDetail__stock--low {
  color: var(--accentColor);
}

#pdStock.is-hidden {
  display: none !important;
}

.productDetail__cartBox {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 20px 0;
}

.detailQty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.detailQty__btn {
  width: 40px;
  height: 40px;
  border: none;
  background: #d8d8d8;
  border-radius: 10px;
  font-size: 2.2rem;
}

.detailQty__btn.is-disabled,
.detailQty__btn[disabled] {
  opacity: 0.4;
  cursor: default;
  background: #f5f5f5;
  color: #9aa0a6;
  border-color: #e0e0e0;
}

.detailQty__btn img {
  transform: translateY(3px);
}

.detailQty__value {
  min-width: 40px;
  text-align: center;
  font-size: 1.4rem;
}

.productDetail .productCard__cta {
  width: 100%;
  display: flex;
  justify-content: center;
  grid-column: 1 / -1;
  margin: 0;
}

.productDetail .btnCart {
  width: min(100%, 280px);
  height: 50px;
  border-radius: 50px;
  border: none;
  background: var(--mainColor);
  color: #fff;
  font-size: 1.5rem;
  margin: 0;
}

.productDetail .btnCart.is-disabled,
.productDetail .btnCart[disabled] {
  background: #bbb !important;
  color: #fff !important;
  cursor: not-allowed;
  border: none;
  opacity: 0.7;
}

.productDetail__tabs,
.productDetail__panes {
  width: min(100%, 560px);
  margin-left: auto;
  margin-right: auto;
}

.productDetail__tabs {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.pdTab {
  color: var(--textColor);
  flex: 1 1 0%;
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  padding: 10px;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.pdTab:hover {
  background: #f1f1f1;
}

.pdTab:focus-visible {
  outline: 2px solid #a8d26d;
  outline-offset: 2px;
}

.pdTab.is-active {
  background: var(--bg1);
  border-bottom: 3px solid var(--textGlayColor);
  font-weight: var(--fontMedium);
}

.pdTab.is-active:hover,
.pdTab.is-active:focus-visible {
  background: var(--bg1);
}

.productDetail__panes {
  margin-bottom: 40px;
  background: var(--bg1);
  padding: 10px 0;
  border-top: 1px solid #e6e6e6;
}

.pdPane {
  display: none;
}

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

#pdPaneDesc p {
  line-height: 1.9;
  font-size: 1.6rem;
}

.pdPane h3 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: var(--fontMedium);
  margin-top: 20px;
  margin-bottom: 30px;
}

.pdSpecList {
  display: grid;
  grid-template-columns: 120px 1fr;
  grid-auto-rows: minmax(44px, auto);
  border: 1px solid #e6e6e6;
  overflow: hidden;
  background: #fff;
  margin: 0;
}

.pdSpecList > dt {
  display: flex;
  background: #f3f3f3;
  font-weight: var(--fontMedium);
  padding: 5px;
  border-top: 1px solid var(--lightGray);
}

.pdSpecList > dd {
  margin: 0;
  padding: 5px;
  border-top: 1px solid var(--lightGray);
  border-left: 1px solid var(--lightGray);
}

.pdSpecList > dt:nth-child(-n + 2),
.pdSpecList > dd:nth-child(-n + 2) {
  border-top: none;
}

.textLink {
  text-decoration: none;
  color: var(--textColor);
}

/* =========================
   Stepper
========================= */

.stepper {
  background: var(--bg1);
  padding: 20px;
}

.stepper__track {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 5px;
}

.stepper__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--mainColor) 35%, #fff);
  position: relative;
}

.stepper__dot.is-done {
  background: var(--mainColor);
}

.stepper__dot.is-current {
  background: var(--mainColor);
}

.stepper__dot.is-current::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid var(--mainColor);
  border-radius: 50%;
}

.stepper__line {
  display: inline;
  width: 100%;
  height: 3px;
}

.stepper__line line {
  stroke: color-mix(in srgb, var(--mainColor) 35%, #fff);
  stroke-width: 2;
  stroke-linecap: round;
}

.stepper__labels {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  text-align: center;
}

.stepper__label {
  font-size: 1.3rem;
  color: var(--textColor);
}

.stepper.is-step-1 .stepper__line line {
  stroke-width: 2;
}

.stepper.is-step-2 .stepper__line:nth-of-type(1) line {
  stroke: var(--mainColor);
  stroke-width: 2;
}

.stepper.is-step-3 .stepper__line line {
  stroke: var(--mainColor);
  stroke-width: 4;
}

.sortSheet__item {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 62px;
  padding: 0 20px;
  border: 0;
  border-top: 2px solid var(--bg2);
  background: #fff;
  color: var(--textColor);
  font-size: 1.6rem;
  text-align: left;
}

.sortSheet__item[aria-pressed="true"] {
  font-weight: 700;
  color: var(--mainColor);
}

.sortSheet__item::after {
  content: "";
  margin-left: auto;
  width: 18px;
  height: 18px;
  opacity: 0;
  background: url("../images/icon/check.svg") no-repeat center / contain;
}

.sortSheet__item[aria-pressed="true"]::after {
  opacity: 1;
}

.fade-kv {
  opacity: 0;
  transform: scale(1.02);
  animation: kvFadeIn 1s ease forwards;
}

.fade-copy {
  opacity: 0;
  transform: translateY(12px);
  animation: copyFadeIn 0.9s ease forwards;
  animation-delay: 0.55s;
}

@keyframes kvFadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes copyFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   Desktop
========================= */

@media (min-width: 769px) {
  body {
    font-size: 1.8rem;
  }

  .sp {
    display: none;
  }

  .pc {
    display: block;
  }

  .header__left {
    width: 780px;
    display: flex;
    margin-left: 50px;
    justify-content: space-between;
  }

  .header__left a {
    text-decoration: none;
    color: var(--textColor);
    transition:
      color 0.25s ease,
      text-shadow 0.25s ease;
  }

  .header__left a:hover {
    color: var(--mainColor);
  }

  .header__tools {
    margin-right: 50px;
    gap: clamp(20px, 2.083vw, 30px);
  }

  .main {
    max-width: 1200px;
    margin: 0 auto;
  }

  header .header__nav {
    max-width: 100%;
    margin: 0 auto;
    height: 80px;
    align-items: center;
  }

  .keyVisual {
    width: 100%;
    height: 100vh;
    min-height: 750px;
    max-width: none;
    aspect-ratio: unset;
    margin: 0;
    background-image: -webkit-image-set(
      url(../images/keyvisual/keyvisual-1440.webp) 1x,
      url(../images/keyvisual/keyvisual-2880.webp) 2x
    );
    background-image: image-set(
      url(../images/keyvisual/keyvisual-1440.webp) 1x,
      url(../images/keyvisual/keyvisual-2880.webp) 2x
    );
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .keyVisual h1 {
    font-size: 8rem;
    text-shadow: 0 0 3.5px rgba(0, 0, 0, 1);
  }

  .news__item {
    width: 100%;
    height: 75px;
    padding: 10px 100px;
    border-radius: 0 0 50px 50px;
  }

  .news__title {
    font-size: 1.6rem;
  }

  .news__date {
    font-size: 1.4rem;
  }

  h2 {
    font-size: 3.2rem;
  }

  .products__ttl {
    max-width: 1040px;
    margin: 0 auto;
    margin-bottom: 16px;
  }

  .productGrid {
    display: grid;
    max-width: 1040px;
    margin: 0 auto;
    grid-template-columns: repeat(4, 1fr);
  }

  .productCard {
    width: 210px;
    max-width: 210px;
    border-radius: 5px;
    margin: 0 auto;
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
    padding: 10px;
  }

  .productCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 5, 0.15);
  }

  .productCard__name {
    font-size: 1.6rem;
  }

  .moreLink__text {
    font-size: 1.6rem;
  }

  .moreLink span {
    width: 0.75em;
    height: 0.75em;
    transform: translateY(-1px) rotate(45deg);
  }

  .categories .products__ttl {
    max-width: 1240px;
    margin: 0 auto;
    margin-bottom: 16px;
    margin-top: 30px;
  }

  .categories__list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    max-width: 1220px;
    margin: 0 auto;
  }

  .categories__item {
    margin: 0 auto;
    width: 240px;
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
  }

  .categories__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 5, 0.15);
  }

  .categories__fabric,
  .categories__kitchen,
  .categories__interior,
  .categories__relax,
  .categories__storage {
    width: 240px;
  }

  .categories__fabric {
    background-image: -webkit-image-set(
      url(../images/categories/fabric/fabric-240.jpg) 1x,
      url(../images/categories/fabric/fabric-480.jpg) 2x
    );
  }

  .categories__kitchen {
    background-image: -webkit-image-set(
      url(../images/categories/kitchen/kitchen-240.jpg) 1x,
      url(../images/categories/kitchen/kitchen-480.jpg) 2x
    );
  }

  .categories__interior {
    background-image: -webkit-image-set(
      url(../images/categories/interior/interior-240.jpg) 1x,
      url(../images/categories/interior/interior-480.jpg) 2x
    );
  }

  .categories__relax {
    background-image: -webkit-image-set(
      url(../images/categories/relax/relax-240.jpg) 1x,
      url(../images/categories/relax/relax-480.jpg) 2x
    );
  }

  .categories__storage {
    background-image: -webkit-image-set(
      url(../images/categories/storage/storage-240.jpg) 1x,
      url(../images/categories/storage/storage-480.jpg) 2x
    );
  }

  .categories__namepc {
    display: inline-block;
    text-align: center;
  }

  .about__card {
    padding: 60px 100px 60px 100px;
    z-index: 0;
  }

  .about__gallery {
    display: flex;
    align-items: flex-end;
    margin: 60px 0 95px;
  }

  .about__caption {
    padding: 80px 0 30px;
  }

  .about__photoA.pc {
    border-radius: 0 clamp(60px, 6.94vw, 100px) 0 clamp(60px, 6.94vw, 100px);
    width: 42.9vw;
  }

  .about__photoB.pc {
    border-radius: clamp(60px, 6.94vw, 100px) 0 clamp(60px, 6.94vw, 100px) 0;
    width: 31.32vw;
    margin-left: auto;
  }

  .about__photoC.pc {
    border-radius: clamp(60px, 6.94vw, 100px);
  }

  .decor-circle {
    position: absolute;
    border-radius: 50%;
    background: #87caac;
    z-index: 1;
    pointer-events: none;
  }

  .c1 {
    width: 65px;
    height: 65px;
    top: 17%;
    right: 27%;
  }

  .c2 {
    width: 30px;
    height: 30px;
    top: 26%;
    left: 55%;
  }

  .c3 {
    width: 30px;
    height: 30px;
    bottom: 43%;
    left: 4%;
  }

  .c4 {
    width: 30px;
    height: 30px;
    bottom: 12%;
    left: 7%;
  }

  .c5 {
    width: 50px;
    height: 50px;
    bottom: 1%;
    left: 18%;
  }

  .c6 {
    width: 20px;
    height: 20px;
    bottom: 8%;
    right: 14%;
  }

  .about__card > *:not(.decor-circle) {
    position: relative;
    z-index: 2;
  }

  .faq__title,
  .faq__item {
    max-width: 1040px;
    margin: 0 auto;
  }

  .faq__title {
    margin-top: 60px;
    margin-bottom: 30px;
  }

  .siteFooter {
    background: var(--bg1, #fff);
  }

  .siteFooter__inner {
    background: #f5f5f5;
    border-radius: 0 200px 0 0;
    margin: 0 auto;
  }

  .siteFooter__top {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: baseline;
    padding: 117px 100px 0;
    gap: auto;
    min-height: 80px;
  }

  .footerLogo img {
    height: 40px;
    display: block;
  }

  .footerNav__list {
    list-style: none;
    display: flex;
    gap: clamp(30px, 3.5vw, 60px);
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
  }

  .footerNav__list a {
    text-decoration: none;
    color: var(--textColor, #444);
    transition:
      color 0.25s ease,
      text-shadow 0.25s ease;
  }

  .footerNav__list a:hover {
    color: var(--mainColor, #85b83a);
  }

  .footerLegal {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: clamp(16px, 2.1vw, 48px);
    justify-content: end;
    padding: 65px 100px 0;
  }

  .footerLegal a {
    color: var(--textColor, #444);
    text-decoration: none;
    font-size: 1.4rem;
    transition: color 0.25s ease;
  }

  .footerLegal a:hover {
    color: var(--mainColor, #85b83a);
  }

  .footerSNS {
    display: flex;
    justify-content: flex-end;
    padding: 65px 100px 60px;
    gap: 16px;
  }

  .snsLink {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease,
      background-color 0.25s ease;
  }

  .snsLink:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
    background: #fafafa;
  }

  .snsLink img {
    width: 22px;
    height: 22px;
    display: block;
  }

  .siteFooter__bottom {
    width: calc(1240 / 1440 * 100%);
    border-top: 1px solid #dcdcdc;
    padding: 20px 100px;
    text-align: center;
    margin: 0 auto;
  }

  .footerCopy {
    color: #777;
  }

  .btn {
    transition:
      background-color 0.25s ease,
      box-shadow 0.25s ease;
  }

  .btn::after,
  .btn::before {
    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
  }

  .btn:hover {
    background-color: color-mix(in srgb, var(--mainColor) 85%, white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  }

  .btn:hover::before {
    transform: translate(4px, -50%) rotate(-45deg);
  }

  .coOrderBtn:hover {
    background-color: color-mix(in srgb, var(--accentColor) 85%, white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  }
}
