:root {
  --color-primary: #EA5812;
  --color-secondary: #58BAD3;
  --color-emphasis: #E22323;
  --color-text-default: #463E3A;
  --color-text-gray: #888888;
  --color-styling-gray-1: #F7F7F7;
  --color-styling-gray-2: #F2F2F2;
  --color-styling-background: #FFF6EF;
  --color-styling-border: #CCCCCC;
  --font-ja: "Noto Sans JP";
  --font-en: "Inter";
  --font-en-sub: "Goldman";
  --font-base: var(--font-en), var(--font-ja), sans-serif;
}

html,
body {
  scroll-behavior: smooth;
  scroll-padding: 10svh;
}
body {
  font-family: var(--font-base);
  color: var(--color-text-default);
}

.s-header {
  height: auto;
  position: sticky;
  z-index: 999;
  top: calc(-1 * var(--header-height));
  transition: top 0.4s ease;
}
.s-header:not(.is-scrolling-down) {
  top: 0;
}
.s-header-wrap {
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
  translate: unset;
  height: 9rem;
  background-color: var(--color-white);
  border-top: 5px solid var(--color-primary);
  border-bottom: none;
}
.s-header-wrap__logo {
  width: min(15.7142857143svw, 22rem);
}

.s-header-contentsNavBlock {
  height: auto;
}
.s-header-categoryNav {
  padding-top: 0;
}
.s-header-categoryNav__head {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.s-footer__pagetop-button {
  position: fixed;
  z-index: 10;
  right: 2rem;
  bottom: 2rem;
  width: 5rem;
  border: none;
  outline: none;
  background-color: unset;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 992px) {
  .s-header-wrap__nav,
  .s-header-navBlok,
  .s-header-navBlok__nav,
  .s-header-contentsNavBlock,
  .s-header-contentsNavBlock__item,
  .s-header-categoryNav,
  .s-header-categoryNav__head {
    height: 100%;
  }

  .s-header-categoryNav__body {

  }
  .s-header-navBlok__nav-layer {
    display: none;
    position: fixed;
    z-index: -2;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 50vh;
    background-color: rgba(0,0,0,0.4);
    pointer-events: none;
  }  
  .s-header-categoryNav:hover .s-header-navBlok__nav-layer {
    display: block;
  }
}
.s-header-categoryNav__head::after {
  display: none;
}

.s-header-categoryNav__head.--category-toggle::after {
  display: block;
  width: 1rem;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath id='多角形_7' data-name='多角形 7' d='M5,0l5,6H0Z' transform='translate(10 6) rotate(180)' fill='%23ea5812'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.s-header-categoryNav,
.s-header-categoryNav:hover {
  border-bottom: none;
}
.s-header-wrap {
  gap: 0 min(3.9285714286svw, 5.5rem);
}
.s-header-freeWordSearch {
  width: fit-content;
  max-width: unset;
}
.c-freeWordSearchBox {
  width: min(17.1428571429svw, 24rem);
  height: 4.5rem;
  border-radius: 0.8rem;
  background-color: #F2F2F2;
  border: none;
  padding: 0;
  position: relative;
}
.c-freeWordSearchBox__form {
  font-size: 1.4rem;
  padding-inline: 1.5rem 3.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
}
.s-header-wrap__utility {
  column-gap: 2rem;
}
.c-freeWordSearchBox__submit {
  position: absolute;
  top: 50%;
  right: 0.8rem;
  translate: 0 -50%;
  display: block;
  width: 2.5rem;
  aspect-ratio: 1;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
  background-color: transparent;
}

.s-header-utilityList__item {
  width: min(3.8571428571svw, 5.4rem);
}

.s-header__contact-btn {
  width: min(10.5svw, 14.7rem);
  height: 4rem;
  color: var(--color-primary) !important;
  border: 2px solid var(--color-primary);
  border-radius: 2rem;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.s-header-utilityList__label {
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.s-header-utilityList__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.s-header-utilityList__icon img {
  width: 74.07407407407%;
  margin-inline: auto;
}

.s-header-utilityList {
  column-gap: min(1.07142857143svw, 1.5rem);
}

.s-header__cartCnt {
  width: min(1.4285714286svw, 2rem);
  height: min(1.4285714286svw, 2rem);
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 1.2rem;
  background-color: var(--color-secondary);
  top: 0;
  right: min(0.3571428571svw, 0.5rem);
}

@media (hover: hover) and (pointer: fine) {
  .c-freeWordSearchBox__submit {
    transition: opacity .4s ease;
  }
  .c-freeWordSearchBox__submit:hover {
    opacity: 0.6;
  }
  .s-header-categoryNav__head.--category-toggle {
    transition: color 0.4s ease;
  }
  .s-header-categoryNav__head.--category-toggle::after {
    transition: scale 0.4s ease;
  }
  .s-header-categoryNav:has(.--category-toggle):hover .s-header-categoryNav__head.--category-toggle {
    color: var(--color-primary);
    opacity: 1;
  }
  .s-header-categoryNav:has(.--category-toggle):hover .s-header-categoryNav__head.--category-toggle::after {
    scale: 1 -1;
  }
  .s-header__contact-btn {
    transition: color 0.4s ease, background-color 0.4s ease;
  }
  .s-header__contact-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-white) !important;
  }
}

.s-header-categoryNav__body {
  background-color: var(--color-white);
  max-height: 78.625svh;
  overflow: auto;
}

.s-header-categoryNav__navlist {
  width: min(100%, 120rem);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: unset;
}
.s-header-categoryNav__navSub {
  border-radius: 1rem;
  padding: 3rem;
  background-color: var(--color-styling-gray-1);
}

.s-header-categoryNav__navSub {
  display: flex;
  flex-direction: column;
  row-gap: 3.5rem;
}
.s-header-categoryNav__navSub-head {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: 0.15em;
}
.s-header-categoryNav__navSub-head::before {
  content: '';
  display: block;
  width: 0.5rem;
  height: 2.3rem;
  background-color: var(--color-primary);
}

.s-header-categoryNav__navSub-itemLink {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.s-header-categoryNav__navSub-itemLink img {
  width: min(3.5714285714svw, 5rem);
  flex-shrink: 0;
}
.s-header-categoryNav__navSub-itemLink span {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
.s-header-categoryNav__navSub-list {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}

.s-header-categoryNav__navSub-list .s-header-categoryNav__navSub-item:nth-child(1) {
  display: none;
}

.s-header-categoryNav__navSub-all {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin-inline: auto;
  gap: 1rem;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
  margin-top: 2.5rem;
}
.s-header-categoryNav__navSub-all span {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  border-bottom: 1px solid var(--color-text-default);
}
.s-header-categoryNav__navSub-all::before {
  content: '';
  display: block;
  width: 1rem;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='10' viewBox='0 0 6 10'%3E%3Cpath id='多角形_2' data-name='多角形 2' d='M5,0l5,6H0Z' transform='translate(6) rotate(90)' fill='%23ea5812'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

@media (hover: hover) and (pointer: fine) {
  .s-header-categoryNav__navSub-all {
    transition: opacity 0.4s ease, color 0.4s ease;
  }
  .s-header-categoryNav__navSub-all span {
    transition: border-color 0.4s ease;
  }
  .s-header-categoryNav__navSub-all:hover {
    opacity: 0.6;
    color: var(--color-primary);
  }
  .s-header-categoryNav__navSub-all:hover span {
    border-color: var(--color-primary);
  }
}


.s-footer__nav {
  display: flex;
  gap: min(4.2857142857svw, 6rem);
  justify-content: flex-start;
}

.s-footer__navigationList {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.s-footer__navigationList-item {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.5;
}

.s-footer__navigationList-itemLink {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.s-footer__navigationList-itemLink::before {
  content: '';
  display: block;
  width: 1rem;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='10' viewBox='0 0 6 10'%3E%3Cpath id='多角形_2' data-name='多角形 2' d='M5,0l5,6H0Z' transform='translate(6) rotate(90)' fill='%23ea5812'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

@media (hover: hover) and (pointer: fine) {
  .s-footer__navigationList-itemLink {
    transition: color 0.4s ease;
  }
  .s-footer__navigationList-itemLink:hover {
    color: var(--color-primary);
  }
}

.s-footer__detail {
  margin-left: auto;
}

.s-footer__logo {
  width: min(21.4285714286svw, 30rem);
}
.s-footer__logo a {
  display: block;
  width: 100%;
  height: 100%;
}
.s-footer__logo img {
  width: 100%;
  height: auto;
}
.s-footer__guide {
  width: fit-content;
  margin-left: auto;
  margin-top: 5rem;
}
.s-footer-guideNav {
  max-width: min(17.8571428571svw, 25rem);
  gap: 1rem 2rem;
  justify-content: flex-end;
}
.s-footer-guideNav__item {
  font-size: 1.1rem;
  line-height: 1.45;
  letter-spacing: 0.1em;
}
.s-footer-guideNav__item a {
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.s-footer__buttonWrap {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}
.s-footer {
  padding-block: 7rem;
  border-top: 4px solid var(--color-primary);
}
.s-footer__button {
  width: 21rem;
  height: 4.5rem;
  border-radius: 2.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.1;
  color: var(--color-white);
  position: relative;
}
.s-footer__button:visited,
.s-footer__button:active {
  color: var(--color-white);
}
.s-footer__button.--primary {
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.s-footer__button.--secondary {
  background-color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}
.s-footer__button.--external::after {
  content: '';
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cg id='グループ_24519' data-name='グループ 24519' transform='translate(10646 -1010)'%3E%3Cg id='前面オブジェクトで型抜き_2' data-name='前面オブジェクトで型抜き 2' transform='translate(-10646 1011.5)' fill='none'%3E%3Cpath d='M9,10.5H0v-9H4.5V6H9v4.5Z' stroke='none'/%3E%3Cpath d='M 7.5 9.000300407409668 L 7.5 7.500300407409668 L 3 7.500300407409668 L 3 3.000300407409668 L 1.5 3.000300407409668 L 1.5 9.000300407409668 L 7.5 9.000300407409668 M 9 10.50030040740967 L 0 10.50030040740967 L 0 1.500300407409668 L 4.5 1.500300407409668 L 4.5 6.000300407409668 L 9 6.000300407409668 L 9 10.50030040740967 Z' stroke='none' fill='%23fff'/%3E%3C/g%3E%3Cg id='長方形_2637' data-name='長方形 2637' transform='translate(-10643 1010)' fill='none' stroke='%23fff' stroke-width='1.5'%3E%3Crect width='9' height='9' stroke='none'/%3E%3Crect x='0.75' y='0.75' width='7.5' height='7.5' fill='none'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  translate: 0 -50%;
}

@media (hover: hover) and (pointer: fine) {
  .s-footer__button {
    transition: background-color 0.4s ease, color 0.4s ease, opacity 0.4s ease;
  }
  .s-footer__button::after {
    transition: background 0.4s ease;
  }
  .s-footer__button.--primary:hover {
    background-color: var(--color-white);
    color: var(--color-primary) !important;
  }
  .s-footer__button.--secondary:hover {
    background-color: var(--color-white);
    color: var(--color-secondary) !important;
  }
  .s-footer__button.--external:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cg id='グループ_24519' data-name='グループ 24519' transform='translate(10646 -1010)'%3E%3Cg id='前面オブジェクトで型抜き_2' data-name='前面オブジェクトで型抜き 2' transform='translate(-10646 1011.5)' fill='none'%3E%3Cpath d='M9,10.5H0v-9H4.5V6H9v4.5Z' stroke='none'/%3E%3Cpath d='M 7.5 9.000300407409668 L 7.5 7.500300407409668 L 3 7.500300407409668 L 3 3.000300407409668 L 1.5 3.000300407409668 L 1.5 9.000300407409668 L 7.5 9.000300407409668 M 9 10.50030040740967 L 0 10.50030040740967 L 0 1.500300407409668 L 4.5 1.500300407409668 L 4.5 6.000300407409668 L 9 6.000300407409668 L 9 10.50030040740967 Z' stroke='none' fill='%2358bad3'/%3E%3C/g%3E%3Cg id='長方形_2637' data-name='長方形 2637' transform='translate(-10643 1010)' fill='none' stroke='%2358bad3' stroke-width='1.5'%3E%3Crect width='9' height='9' stroke='none'/%3E%3Crect x='0.75' y='0.75' width='7.5' height='7.5' fill='none'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: contain;
  }
  .s-header-categoryNav__head {
    transition: color 0.4s ease;
  }
  .s-header-categoryNav__head:hover {
    opacity: 1;
    color: var(--color-primary);
    transition: color 0.4s ease;
  }
}

.s-footer__copy {
  margin-top: 3.2rem;
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-align: right;
  color: var(--color-primary);
}

.p-page-myPage .c-productUser-sIcon__item,
.m-productRecommend-wrap .c-productUser-sIcon__item {
  height: min(2.8571428571svw, 4rem);
}

.c-product-sIcon__item,
.c-productUser-sIcon__item {
  height: min(3.5714285714svw, 5rem);
}
.c-product-sIcon__item img,
.c-productUser-sIcon__item img {
  width: auto;
  height: 100%;
}
.c-product-sIcon__item:not(:has(img)),
.c-productUser-sIcon__item:not(:has(img)){
  display: none;
}
.c-product-head,
.c-productUser-head,
.c-typeListProduct-pictureBox {
  position: relative;
}
.c-product-sIcon li:has([data-index="0"]),
.c-productUser-sIcon li:has([data-index="0"]) {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: min(8.5714285714svw, 12rem);
  height: min(8.5714285714svw, 12rem);
}
.p-page-productDetail .c-product-sIcon li:has([data-index="0"]) {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: min(10svw, 14rem);
  height: min(10svw, 14rem);
}
.p-page-myPage .c-productUser-sIcon li:has([data-index="0"]),
.m-productRecommend-wrap .c-productUser-sIcon li:has([data-index="0"]) {
  width: min(7.1428571429svw, 10rem);
  height: min(7.1428571429svw, 10rem);
}
.p-page-productDetail .c-product-sIcon__item {
  height: min(4.2857142857svw, 6rem);
}
.c-product-sIcon,
.c-productUser-sIcon {
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  padding-right: 0.5rem;
  padding-bottom: 0.5rem;
  gap: 0.3rem;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
}
.c-productUser-sIcon li:has([data-index="5"]),
.c-productUser-sIcon li:has([data-index="6"]),
.c-productUser-sIcon li:has([data-index="7"]),
.c-productUser-sIcon li:has([data-index="8"]),
.c-productUser-sIcon li:has([data-index="9"]) {
  display: none;
}

.c-product-head__picture::before {
  padding-top: 100%;
}
.c-product-head__image {
  object-fit: contain;
}

@media screen and (max-width: 991px) {
  .c-product-sIcon__item,
  .c-productUser-sIcon__item {
    height: 4rem;
  }
  .c-product-sIcon li:has([data-index="0"]),
  .c-productUser-sIcon li:has([data-index="0"]) {
    width: 10rem;
    height: 10rem;
  }
  .m-productRecommend-wrap .c-productUser-sIcon li:has([data-index="0"]),
  .p-page-myPage .c-productUser-sIcon li:has([data-index="0"]) {
    width: 5rem;
    height: 5rem;
  }
  .p-page-myPage .c-productUser-sIcon__item,
  .m-productRecommend-wrap .c-productUser-sIcon__item {
    height: 2rem;
  }
  .p-page-productList .c-product-sIcon__item {
    height: 3rem;
  }
  .p-page-productList .c-product-sIcon li:has([data-index="0"]) {
    width: 6rem;
    height: 6rem;
  }
  .p-page-productDetail .c-product-sIcon li:has([data-index="0"]) {
    width: 10rem;
    height: 10rem;
  }
  .p-page-productDetail .c-product-sIcon__item {
    height: 4rem;
  }
  .s-header {
    height: 13.5rem;
  }
  .s-header-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-inline: 1.5rem;
    height: auto;
    row-gap: 1.5rem;
    padding-block: 1rem;
  }
  .s-header-wrap__utility {
    position: relative;
    width: 100%;
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
    height: auto;
  }
  .s-header-wrap__logo {
    width: 19.5rem;
    flex-shrink: 0;
  }
  .s-header-utilityList {
    justify-content: space-evenly;
  }
  .s-header-utilityList__item {
    width: 5.4rem;
  }
  .s-header-wrap__nav {
    position: relative;
    width: 5.4rem;
    height: auto;
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
  }
  .s-footer__nav {
    display: block;
  }
  .s-header__contact-btn {
    width: 13rem;
    height: 4rem;
    font-size: 1.4rem;
  }
  .s-header-navBlok__openBtn::before,
  .s-header-navBlok__openBtn::after {
    display: none;
  }
  .s-header-navBlok__openBtn {
    width: 5.4rem;
    height: auto;
    top: unset;
    right: unset;
    left: unset;
    bottom: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .s-header-navBlok__openBtn-indicator {
    width: 2.5rem;
    height: 4rem;
    margin-inline: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.7rem;
  }
  .s-header-navBlok__openBtn-indicator::before,
  .s-header-navBlok__openBtn-indicator::after {
    content: '';
  }
  .s-header-navBlok__openBtn-indicator span,
  .s-header-navBlok__openBtn-indicator::before,
  .s-header-navBlok__openBtn-indicator::after {
    display: block;
    width: 100%;
    height: 2px;
    position: relative;
    top: unset;
    bottom: unset;
    left: unset;
    right: unset;
    background-color: var(--color-text-default);
  }
  .s-header-utilityList__label {
    white-space: nowrap;
    text-align: center;
  }
  .s-header-navBlok__openBtn .s-header-utilityList__label {
    position: relative;
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
    width: auto;
    height: auto;
    font-size: 1rem;
    background-color: unset;
  }
  .s-header__cartCnt {
    width: 2rem;
    height: 2rem;
    font-size: 1.2rem;
  }

  .s-header-navBlok__nav {
    top: 0;
    right: 0;
    left: unset !important;
    width: 32rem;
    transform: translate(100vw, 0) !important;
    visibility: visible;
    pointer-events: none;
    border-top: none !important;
  }
  .s-header-navBlok__openBtn.active + .s-header-navBlok__nav {
    transform: translate(0, 0) !important;
    pointer-events: auto;
  }

  .s-footer {
    padding: 4rem 4rem 2rem;
  }
  .s-footer__nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 0;
  }

  .s-footer__buttonWrap {
    grid-column: 1 / span 2;
    align-items: center;
    margin-top: 3rem;
  }
  .s-footer__detail {
    grid-column: 1 / span 2;
    width: 100%;
    margin-top: 5rem;
  }
  .s-footer-guideNav {
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: none;
    gap: 1rem 2rem;
  }
  .s-footer-guideNav__item > a {
    padding: 0;
  }
  .s-footer-guideNav__item {
    border-top: none;
  }
  .s-footer__logo {
    width: 29.5rem;
  }
  .s-footer__guide {
    margin-top: 3rem;
  }

  .s-footer__copy {
    margin-top: 2rem;
    text-align: center;
  }
  .s-footer__navigationList-item {
    font-size: 1.5rem;
  }

  .s-header-categoryNav__navlist {
    grid-template-columns: 1fr;
  }
}

.c-productUser-head__picture::before {
  padding-top: 100%;
}
.c-productUser-head__image {
  object-fit: cover;
}

.c-productUser-body__title-name {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 991px) {
  .s-header-navBlok__nav {
    width: 100vw;
    height: 100%;
    background-color: unset;
  }
  .s-header-navBlock__nav-content {
    width: calc(100% - 5.5rem);
    height: auto;
    min-height: 100vh;
    padding-block: 3rem;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #fff;
  }

  .s-header-navBlok__nav .s-header-wrap__logo {
    width: 28rem;
    margin-inline: auto;
    margin-bottom: 2.5rem;
  }

  .s-header-navBlok__nav-layer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.4);
  }

  .s-header-nav__account-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .s-header-nav__account-btn a {
    width: 100%;
  }
  .s-header-freeWordSearch,
  .c-freeWordSearchBox {
    width: 100%;
  }

  .s-header-navBlok__openBtn.active + .s-header-navBlok__nav + .s-header-navBlok__nav-layer {
    display: block;
  }
  .s-header-navBlok__nav .s-header-navBlok__openBtn.active {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    width: 5.5rem;
    height: 5.5rem;
    background-color: var(--color-primary);
    border-radius: 0.5rem 0 0 0.5rem;
  }
  .s-header-navBlok__openBtn.active .s-header-navBlok__openBtn-indicator span {
    display: none;
  }
  .s-header-navBlok__openBtn.active .s-header-navBlok__openBtn-indicator {
    position: relative;
  }
  .s-header-navBlok__openBtn.active .s-header-navBlok__openBtn-indicator::before,
  .s-header-navBlok__openBtn.active .s-header-navBlok__openBtn-indicator::after {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
  }
  .s-header-navBlok__openBtn.active .s-header-navBlok__openBtn-indicator::before {
    background-color: #fff;
    rotate: 45deg;
  }
  .s-header-navBlok__openBtn.active .s-header-navBlok__openBtn-indicator::after {
    background-color: #fff;
    rotate: -45deg;
  }
  .s-header-categoryNav__head {
    font-size: 1.6rem;
    padding: 2rem;
    letter-spacing: 0.15em;
  }
  .s-header-navBlok__openBtn.active .s-header-utilityList__label {
    display: none;
  }
  .s-header-navBlok__nav .s-header-categoryNav__body {
    max-height: unset;
  }

  .s-header-navBlok__nav .s-header-categoryNav__navSub {
    background-color: #fff;
    padding: 0;
    row-gap: 0;
    border-radius: 0;
  }
  .s-header-navBlok__nav .s-header-categoryNav__navSub-head {
    padding: 1.8rem 2rem;
    justify-content: space-between;
  }
  .s-header-navBlok__nav .s-header-categoryNav__navSub-body {
    padding: 1rem 2rem;
  }
  .s-header-navBlok__nav .s-header-categoryNav__navSub-head::after {
    content: '';
    display: block;
    width: 1.6rem;
    height: 1.6rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cg id='グループ_24510' data-name='グループ 24510' transform='translate(-278 -27)'%3E%3Crect id='長方形_2623' data-name='長方形 2623' width='16' height='16' transform='translate(278 27)' fill='rgba(255,255,255,0)'/%3E%3Cline id='線_344' data-name='線 344' x2='16' transform='translate(278 35)' fill='none' stroke='%23ea5812' stroke-width='2'/%3E%3Cline id='線_345' data-name='線 345' x2='16' transform='translate(286 27) rotate(90)' fill='none' stroke='%23ea5812' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: contain;
  }
  .s-header-navBlok__nav .s-header-categoryNav__navSub-head.is-open::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cg id='グループ_24510' data-name='グループ 24510' transform='translate(-278 -27)'%3E%3Crect id='長方形_2623' data-name='長方形 2623' width='16' height='16' transform='translate(278 27)' fill='rgba(255,255,255,0)'/%3E%3Cline id='線_344' data-name='線 344' x2='16' transform='translate(278 35)' fill='none' stroke='%23ea5812' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: contain;
  }
  .s-header-navBlok__nav .s-header-categoryNav__navSub-head.--direct::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='17.414' viewBox='0 0 16 17.414'%3E%3Cg id='グループ_24510' data-name='グループ 24510' transform='translate(-278 -26.293)'%3E%3Crect id='長方形_2623' data-name='長方形 2623' width='16' height='16' transform='translate(278 27)' fill='rgba(255,255,255,0)'/%3E%3Cpath id='_' data-name='&lt;' d='M593.122,2282.37l-8,8,8,8' transform='translate(875.122 2325.37) rotate(180)' fill='none' stroke='%23ea5812' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: contain;
  }
  .s-header-navBlok__nav .s-header-categoryNav__navSub-head {
    font-size: 1.5rem;
  }
  .s-header-navBlok__nav .s-header-categoryNav__navSub-head::before {
    display: none;
  }
  .s-header-navBlok__nav .s-header-categoryNav__navSub-itemLink img {
    width: 5rem;
  }
  .s-header-navBlok__nav .s-header-categoryNav__navSub-all {
    display: none;
  }
  .s-header-navBlok__nav .s-header-categoryNav__navSub-itemLink span {
    font-size: 1.4rem;
  }

  .s-header-navBlok__nav .s-header-categoryNav__navSub-body {
    display: none;
  }

  .s-header-navBlok__nav .s-header-categoryNav__navlist {
    gap: 0;
  }

  .s-header-navBlok__nav .s-header-categoryNav__navlist-item + .s-header-categoryNav__navlist-item {
    border-top: 1px solid #CCCCCC;
  }

  .s-header-navBlok__nav .s-header-categoryNav__navlist-item:last-of-type {
    border-bottom: 1px solid #CCCCCC;
  }

  .s-header-navBlok__nav .s-header__contact-btn {
    width: calc(100% - 4rem);
    height: 5rem;
    border-radius: 2.5rem;
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    margin-inline: auto;
    background-color: var(--color-white);
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    margin-top: 3rem;
  }

  .p-refinedSearchBtn__btn {
    background-color: var(--color-secondary) !important;
    bottom: 6rem !important;    
  }

  .s-footer__pagetop-button {
    right: 1rem;
    bottom: 1rem;
    width: 4rem;
  }

  .s-footer__button {
    width: 23rem;
  }
}

.c-typeListProduct-pictureBox {
  position: relative;
}
.c-typeListProduct-pictureBox__picture::before {
  padding-top: 100%;
}
.c-typeListProduct-head__status .c-product-sIcon {
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
  justify-content: flex-start;
}

.m-productDetailImg {
  position: relative;
}

@media screen and (min-width: 992px) {
  .s-header-categoryNav__navSub {
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr;
  }
  .s-header-categoryNav__navSub-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.p-refinedSearchBtn__btn {
  right: 1rem;
}

.p-productDetailWrap__recommendBlock-item {
  row-gap: 1rem;
}

.p-productDetailWrap__recommendBlock-item .m-productLine-col2-md4-scroll {
  row-gap: 1.5rem !important;
}
.p-productDetailWrap__recommendBlock-item .c-product-sIcon__item:has([data-index="4"]) {
  height: min(2.8571428571svw, 4rem) !important;
}

@media screen and (max-width: 991px) {
  .p-productDetailWrap__recommendBlock-item .c-product-sIcon__item:has([data-index="4"]),
  .m-productRecommend-wrap .c-productUser-sIcon__item:has([data-index="4"]) {
    height: 3rem !important;
  }
}

.m-productDetailImg-slider__item,
.m-productDetailImg-slider__picture,
.m-productDetailImg-thumsList__item,
.m-productDetailImg-thumsList__picture {
  aspect-ratio: 1;
}

.m-productDetailImg-slider__image,
.m-productDetailImg-thumsList__image {
  height: 100% !important;
  object-fit: contain;
}