:root {
  --chillplus-black: #1c1c1c;
  --chillplus-white: #fff;
  --chillplus-gray: #838a90;
  --chillplus-bg: #faf8f4;
  --chillplus-footer-bg: #f2f1ef;
  --chillplus-border: #1c1c1c;
  --chillplus-header-border: #e5e8e7;
  --chillplus-footer-border: #ccd0cf;
  --chillplus-disabled: rgba(28, 28, 28, 0.5);
}

/*
 商品一覧・詳細
 */

body {
  background: url(https://chillplus.jp/images/bg-pattern.webp) top / 200px 200px repeat;
  background-image: url(https://chillplus.jp/images/bg-pattern.webp);
  color: var(--chillplus-black);
  font-family: "Noto Sans JP", sans-serif;
}

.ec-color-red {
  color: #5E93F1;
}

.ec-cartRole .ec-cartRole__totalAmount,
.ec-cartRow__name a {
  color: var(--chillplus-black);
}

/*
 ヘッダー
 */

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  width: 100%;
  height: 68px;
  padding: 0 24px;
  background: var(--chillplus-white);
  border-bottom: 2px solid var(--chillplus-header-border);
  box-sizing: border-box;
}

.ec-debugModeAlert + .ec-layoutRole .l-header {
  top: 50px;
}

.l-header ul,
.l-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.l-header a,
.l-footer a {
  color: inherit;
  text-decoration: none;
}

.l-header button {
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.l-header img,
.l-footer img {
  display: block;
  max-width: 100%;
  height: auto;
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.l-header__logo {
  position: relative;
  z-index: 1000;
  width: 61px;
  margin: 0;
}

.l-header__nav,
.l-header__auth,
.l-header__sns,
.l-header__hm {
  display: flex;
  align-items: center;
}

.l-header__nav {
  height: 100%;
}

.l-header__auth {
  gap: 16px;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.l-header__auth img {
  display: block;
  width: 24px;
  height: 24px;
}

.l-header ul.l-header__sns {
  gap: 40px;
  margin-left: 40px;
}

.l-header__sns--pc {
  display: none;
}

.l-header ul.l-header__sns--sp {
  display: none;
}

.l-header button.l-header__hm {
  justify-content: center;
  margin-left: 24px;
}

.l-header__cart {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--chillplus-text);
  text-decoration: none;
}

.l-header__cart svg {
  display: block;
  width: 24px;
  height: 24px;
}

.l-header__cart--pc {
  display: none;
}

.l-header__cart--sp {
  margin-left: 16px;
}

.l-header__hm--pc {
  display: none;
}

.l-header__search {
  position: relative;
  z-index: 1000;
  display: block;
  min-width: 130px;
}

.l-header__searchButton {
  position: absolute;
  bottom: 8px;
  left: 8px;
  z-index: 10;
}

.l-header__searchInput {
  box-sizing: border-box;
  height: 48px;
  border: 1px solid var(--chillplus-border);
  border-right: 0 solid transparent;
  letter-spacing: 0.08em;
  transform-origin: left center;
  transition:
      width 0.3s ease-in-out,
      border-color 0.3s ease-in-out,
      padding 0.3s ease-in-out,
      opacity 0.3s ease-in-out;
}

.l-header__searchInput::placeholder {
  color: #bbb;
}

.l-header__search[aria-hidden="true"] .l-header__searchInput {
  width: 0;
  border-color: transparent;
  opacity: 0;
}

.l-header__search[aria-hidden="false"] {
  margin-left: 40px;
}

.l-header__search[aria-hidden="false"] .l-header__searchInput {
  width: 400px;
  padding-right: 12px;
  padding-left: 48px;
  opacity: 1;
}

html.is-menu-open,
body.is-menu-open {
  overflow: hidden;
}

.l-header__drawer {
  position: fixed;
  top: 68px;
  left: 0;
  z-index: 900;
  box-sizing: border-box;
  width: 100%;
  height: calc(100vh - 68px);
  padding: 55px 24px 120px;
  overflow: auto;
  visibility: hidden;
  background: var(--chillplus-bg);
  opacity: 0;
  transform: translateY(200%);
  transition:
      visibility 0.3s ease,
      opacity 0.3s ease,
      transform 0.3s ease;
}

.ec-debugModeAlert + .ec-layoutRole .l-header__drawer {
  top: 118px;
  height: calc(100vh - 118px);
}

.l-header__drawer.is-active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.l-header__drawer .l-container--md {
  box-sizing: border-box;
  width: 100%;
  max-width: 866px;
  margin: 0 auto;
}

.l-header__search--drawer {
  z-index: auto;
  width: 100%;
  min-width: 0;
  margin: 0 0 48px;
}

.l-header__search--drawer .l-header__menuTitle {
  margin-bottom: 16px;
}

.l-header__search--drawer .l-header__searchForm {
  margin: 0;
}

.l-header__search--drawer .l-header__searchInput {
  width: 100%;
  height: 60px;
  padding: 0 16px 0 50px;
  border: 1px solid var(--chillplus-border);
  opacity: 1;
}

.l-header__search--drawer .l-header__searchButton {
  bottom: 14px;
  left: 16px;
}

.l-header__menu {
  width: 100%;
  margin-bottom: 48px;
}

.l-header__menu ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
}

.l-header__menu li {
  width: 100%;
}

.l-header__menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  color: var(--chillplus-black);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-decoration: none;
}

.l-header__menu li a::after {
  content: "";
  flex: 0 0 auto;
  width: 6px;
  height: 10px;
  background: url("https://chillplus.jp/images/icon/icon-arrow-down.svg") no-repeat center / 100% auto;
  transform: rotate(-90deg);
}

.l-header__menuTitle {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  color: var(--chillplus-black);
  font-family: "Sulphur Point", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
}

.l-header__menuTitle::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--chillplus-black);
}

.l-header__genre {
  order: 2;
  width: 100%;
}

.l-header__genre--spaced {
  margin-top: 48px;
}

.l-header__genreList {
  margin-top: 20px;
}

.p-genre__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.p-genre__more {
  grid-column: 1 / -1;
}

.p-genre__more .p-spot__descriptionMore {
  display: flex;
}

.p-genre__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--chillplus-black);
  background: var(--chillplus-bg);
  text-align: center;
}

@media (hover: hover) {
  .p-genre__link {
    transition: opacity 0.3s ease-in-out;
  }

  .p-genre__link:hover {
    opacity: 0.6;
  }
}

.p-genre__link > * {
  z-index: 1;
}

.p-genre__link > span {
  position: absolute;
  white-space: nowrap;
}

.p-genre__link > span[lang="en"] {
  top: 16px;
  left: -7px;
  color: var(--chillplus-footer-border);
  font-family: "Sulphur Point", sans-serif;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.03em;
  writing-mode: vertical-rl;
}

.p-genre__link > span[lang="ja"] {
  right: 16px;
  bottom: 16px;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: right;
  white-space: pre-line;
  word-break: keep-all;
}

.p-genre__link:has(.p-genre__checkbox:checked)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(87.62% 52.59% at 55.51% 17.34%, rgba(70, 127, 234, 0.5) 0%, rgba(68, 193, 204, 0.5) 100%),
    #ffffff;
  filter: blur(35.9226px);
  transform: rotate(-82.56deg);
}

.p-genre__link img {
  display: block;
  width: 100%;
  height: auto;
}

.p-genre__link img.p-genre__icon--home {
  width: 65%;
}

.p-genre__link--shopping img {
  width: 58%;
  max-height: 58%;
  object-fit: contain;
  transform: translateY(-8%);
}

.p-genre__checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.p-genre__checkbox--custom {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border: 1px solid var(--chillplus-black);
  cursor: pointer;
}

.p-genre__checkbox--custom::before {
  content: "";
  width: 3.5px;
  height: 3.5px;
  background: #ffffff;
  border-radius: 50%;
  opacity: 0;
}

.p-genre__checkbox:checked + .p-genre__checkbox--custom {
  background: var(--chillplus-black);
}

.p-genre__checkbox:checked + .p-genre__checkbox--custom::before {
  opacity: 1;
}

.l-header__snsButton {
  padding: 50px 0;
}

.l-header__snsButtonInner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

.l-header__snsButton .c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  max-width: 350px;
  min-height: 64px;
  padding: 0 24px;
  background: url("https://chillplus.jp/images/bg-button.webp")
  var(--chillplus-black);
  background-repeat: no-repeat;
  background-position: right 50% center;
  background-size: auto 100%;
  color: var(--chillplus-white);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
}

.l-header__snsButton .c-button--instagram::before,
.l-header__snsButton .c-button--x::before {
  content: "";
  flex: 0 0 auto;
  display: inline-block;
  width: 48px;
  height: 48px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.l-header__snsButton .c-button--instagram::before {
  background-image: url("https://chillplus.jp/images/icon/icon-instagram_white.svg");
}

.l-header__snsButton .c-button--x::before {
  background-image: url("https://chillplus.jp/images/icon/icon-x_white.svg");
}

.l-header__snsButtonText {
  margin: 16px 0 0;
  font-family: "Sulphur Point", sans-serif;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-align: right;
}

.l-header__footer {
  order: 20;
  width: 100%;
  padding-top: 40px;
  border-top: 2px solid var(--chillplus-header-border);
}

.l-header__footerList {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  align-items: center;
  justify-content: center;
}

.l-header__footerList a {
  display: block;
  font-size: 14px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.l-header__footerCopy {
  margin: 32px 0 0;
  text-align: center;
}

.l-header__footerCopy small {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  letter-spacing: 0.02em;
}

@media (width < 48em) {
  .l-header__nav .l-header__search {
    display: none;
  }
}

/*
 フッター
 */

.l-footer {
  padding: 40px 24px;
  margin-top: auto;
  background: var(--chillplus-footer-bg);
}

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

.l-footer__info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
}

.l-footer__infoLogo {
  grid-area: 1 / 1 / 2 / 2;
  align-self: center;
  width: 75px;
  margin: 0 0 0 16px;
}

.l-footer__infoNav {
  grid-area: 1 / 2 / 2 / 3;
  margin-right: 16px;
}

.l-footer__infoNav ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-end;
  text-align: right;
}

.l-footer__infoNav a {
  display: block;
  padding: 10px;
  margin: -10px;
  font-size: 14px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.l-footer__button {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 32px;
}

.l-footer__button .c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  max-width: 350px;
  min-height: 64px;
  padding: 0 24px;
  color: var(--chillplus-white);
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  background: url("https://chillplus.jp/images/bg-button.webp")
    var(--chillplus-black);
  background-repeat: no-repeat;
  background-position: right 50% center;
  background-size: auto 100%;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .l-header__snsButton .c-button.adjust,
  .l-footer__button .c-button.adjust {
    justify-content: flex-start;
    padding-left: 8px;
  }

  .l-footer__button {
    flex-direction: column;
    align-items: flex-end;
  }
}

.l-footer__button .c-button--instagram::before,
.l-footer__button .c-button--x::before {
  content: "";
  flex: 0 0 auto;
  display: inline-block;
  width: 48px;
  height: 48px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.l-footer__button .c-button--instagram::before {
  background-image: url("https://chillplus.jp/images/icon/icon-instagram_white.svg");
}

.l-footer__button .c-button--x::before {
  background-image: url("https://chillplus.jp/images/icon/icon-x_white.svg");
}

.l-footer__menuGroups {
  --footer-menu-groups-space: 40px;

  display: block;
  margin: 0 0 var(--footer-menu-groups-space);
  padding-bottom: var(--footer-menu-groups-space);
  border-bottom: 1px solid #d9d9d9;
  font-size: 14px;
}

.l-footer__menuTabInput {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.l-footer__menuTabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-bottom: 24px;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: var(--footer-menu-groups-space);
}

.l-footer__menuTabs label {
  display: flex;
  justify-content: center;
  justify-self: start;
  width: max-content;
  padding: 0 0 10px;
  color: #7b7a79;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.l-footer__menuTabInput:nth-of-type(1):checked ~ .l-footer__menuTabs label:nth-child(1),
.l-footer__menuTabInput:nth-of-type(2):checked ~ .l-footer__menuTabs label:nth-child(2),
.l-footer__menuTabInput:nth-of-type(3):checked ~ .l-footer__menuTabs label:nth-child(3),
.l-footer__menuTabInput:nth-of-type(4):checked ~ .l-footer__menuTabs label:nth-child(4) {
  color: #565555;
  font-weight: 700;
  border-bottom-color: #565555;
}

.l-footer__menuGroup {
  display: none;
  text-align: left;
}

.l-footer__menuTabInput:nth-of-type(1):checked ~ .l-footer__menuGroup--genre,
.l-footer__menuTabInput:nth-of-type(2):checked ~ .l-footer__menuGroup--scene,
.l-footer__menuTabInput:nth-of-type(3):checked ~ .l-footer__menuGroup--news,
.l-footer__menuTabInput:nth-of-type(4):checked ~ .l-footer__menuGroup--shopping {
  display: block;
}

.l-footer__menuTitle {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  color: #7b7a79;
  font-size: inherit;
  font-weight: 400;
  letter-spacing: 0.1em;
}

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

.l-footer__menuList {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(var(--footer-menu-row-count), auto);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 0;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.l-footer__menuList li {
  min-width: 0;
}

.l-footer__shoppingMenus {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 24px;
}

.l-footer__menuGroup--shopping .l-footer__menuList {
  align-self: start;
  grid-auto-flow: row;
  grid-template-rows: none;
  grid-template-columns: 1fr;
}

.l-footer__menuList a {
  display: block;
  padding: 10px;
  margin: -10px;
  color: inherit;
  font-size: inherit;
  letter-spacing: 0.1em;
  text-decoration: none;
  white-space: pre-line;
  word-break: keep-all;
}

.l-footer__bottom {
  padding-top: 32px;
  margin-top: 40px;
  border-top: 2px solid var(--chillplus-footer-border);
}

.l-footer__list {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 12px;
}

.l-footer__list a {
  display: block;
  padding: 10px;
  margin: -10px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  white-space: normal;
}

.l-footer__copyright {
  margin: 40px 0 0;
  font-family: "Manrope", sans-serif;
  text-align: center;
}

.l-footer__copyright small {
  font-size: 10px;
  letter-spacing: 0.02em;
}

@media (min-width: 1240px) {
  .l-header {
    height: 80px;
    padding: 0 0 0 80px;
  }

  .l-header__logo {
    width: 94px;
  }

  .l-header__auth {
    gap: 36px;
    font-size: 18px;
  }

  .l-header__auth img {
    width: 32px;
    height: 32px;
  }

  .l-header__sns--pc {
    display: flex;
  }

  .l-header__sns--sp {
    display: none;
  }

  .l-header button.l-header__hm {
    margin-left: 40px;
  }

  .l-header__cart--pc {
    display: inline-flex;
    width: 32px;
    height: 32px;
    margin-left: 40px;
  }

  .l-header__cart--pc svg {
    width: 32px;
    height: 32px;
  }

  .l-header__cart--sp {
    display: none;
  }

  .l-header__hm--pc {
    display: flex;
  }

  .l-header__hm--sp {
    display: none;
  }

  .l-header__search {
    margin-left: 24px;
    transition: margin 0.3s ease-in-out;
  }

  .l-header__auth,
  .l-header__sns {
    padding: 0;
    margin-block: 0;
  }

  .l-header ul.l-header__sns {
    margin-left: 40px;
    column-gap: 40px;
  }

  .l-header button.l-header__hm {
    margin-left: 40px;
  }

  .l-header__search {
    margin-left: 24px;
  }

  .l-header__drawer {
    top: 80px;
    height: calc(100vh - 80px);
    padding: 55px 80px 120px;
    transform: translateY(0);
    transition:
      visibility 0.5s ease,
      opacity 0.5s ease;
  }

  .ec-debugModeAlert + .ec-layoutRole .l-header__drawer {
    top: 130px;
    height: calc(100vh - 130px);
  }

  .l-header__search--drawer,
  .l-header__mypage {
    display: none;
  }

  .l-header__menu {
    margin-bottom: 64px;
  }

  .l-header__menu ul {
    grid-auto-flow: column;
    grid-template-rows: repeat(3, auto);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 80px;
  }

  .l-header__menu li a {
    font-size: 20px;
    letter-spacing: 0.08em;
  }

  .l-header__genre--spaced {
    margin-top: 64px;
  }

  .l-header__snsButtonInner {
    flex-direction: row;
    justify-content: flex-end;
  }

  .l-header__snsButton .c-button {
    width: 350px;
  }

  .l-footer {
    padding: 64px 80px 40px;
  }

  .l-footer__info {
    display: flex;
    align-items: center;
  }

  .l-footer__infoLogo {
    width: 131px;
    margin-left: 0;
  }

  .l-footer__infoNav {
    margin-left: auto;
    margin-right: 0;
  }

  .l-footer__infoNav ul {
    flex-direction: row;
    gap: 32px;
    align-items: center;
    justify-content: flex-end;
  }

  .l-footer__infoNav a {
    font-size: 18px;
  }

  .l-footer__button {
    flex-direction: row;
  }

  .l-footer__menuGroups {
    --footer-menu-groups-space: 56px;

    display: grid;
    grid-template-columns: repeat(4, max-content);
    justify-content: space-between;
    column-gap: 30px;
    row-gap: 40px;
  }

  .l-footer__menuTabInput,
  .l-footer__menuTabs {
    display: none;
  }

  .l-footer__menuGroup {
    display: block;
  }

  .l-footer__menuGroup:not(:first-of-type) {
    position: relative;
    padding-left: 30px;
  }

  .l-footer__menuGroup:not(:first-of-type)::before {
    content: "";
    position: absolute;
    top: 50px;
    bottom: 0;
    left: 0;
    width: 1px;
    background-color: #e2e3e2;
  }

  .l-footer__menuTitle {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0 0 28px;
    overflow: visible;
    clip: auto;
    white-space: nowrap;
    border: 0;
    font-size: 18px;
  }

  .l-footer__menuList {
    grid-auto-flow: row;
    grid-template-rows: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
    font-size: inherit;
    line-height: normal;
  }

  .l-footer__menuGroup--scene .l-footer__menuList,
  .l-footer__menuGroup--news .l-footer__menuList {
    grid-template-columns: 1fr;
  }

  .l-footer__shoppingMenus {
    grid-template-columns: repeat(2, max-content);
    gap: 24px 32px;
  }

  .l-footer__menuGroup--shopping .l-footer__menuList {
    grid-template-columns: 1fr;
  }

  .l-footer__menuGroup--genre .l-footer__menuList a {
    white-space: nowrap;
  }

  .l-footer__bottom {
    margin-top: 64px;
  }

  .l-footer__list a {
    font-size: 14px;
  }

  .l-footer__copyright small {
    font-size: 12px;
  }
}

@media (min-width: 768px) {
  .p-genre__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .p-genre__list .sp-hidden {
    display: block;
  }
}

@media (max-width: 767px) {
  .p-genre__list .sp-hidden {
    position: absolute;
    visibility: hidden;
    pointer-events: none;
  }

  .is-opened .p-genre__list .sp-hidden {
    position: static;
    visibility: visible;
    pointer-events: auto;
  }

  .p-genre__link > span[lang="en"] {
    left: -5px;
    font-size: 24px;
  }

  .p-genre__link > span[lang="ja"] {
    right: 16px;
    bottom: 16px;
    font-size: 14px;
  }
}

.ec-layoutRole {
  background: transparent;
}

.ec-layoutRole .ec-layoutRole__contents {
  padding-block: 84px 72px;
}

@media (width >= 48em) {
  .ec-layoutRole .ec-layoutRole__contents {
    padding-block: 145px 112px;
  }
}

:is(body#page_product_detail, body#page_product_list) .ec-layoutRole__contents {
  padding: 0 24px;
  max-width: 1248px;
  background: transparent;
}

body#page_product_detail .ec-productDetailBg,
body#page_product_list .ec-productListBg {
  padding: 145px 0 112px;
  background: url("https://chillplus.jp/images/spot/sp/bg-archive.png") top
  center / 100% auto no-repeat;
}

:is(body#page_product_detail, body#page_product_list) .ec-layoutRole__main {
  max-width: 1248px;
  margin: 0 auto;
  padding: 0;
}

body#page_product_list .ec-productListLayout {
  display: grid;
  grid-template-columns: minmax(0, 864px) 288px;
  gap: 48px;
  align-items: start;
}

body#page_product_list .ec-productListLayout__primary {
  min-width: 0;
}

body#page_product_list .ec-productListLayout__secondary {
  min-height: 1px;
}

@media (width >= 48em) {
  body#page_product_list .ec-productListLayout__secondary {
    margin-bottom: 48px;
  }
}

body#page_product_list .ec-productListSearch {
  width: 288px;
  margin: 0;
  color: #1c1c1c;
}

body#page_product_list .ec-productListSearch__title {
  margin: 0 0 16px;
  color: #1c1c1c;
  font-family: "Sulphur Point", "Manrope", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
}

body#page_product_list .ec-productListSearch__box {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  width: 288px;
  min-height: 64px;
  margin: 0;
  padding: 16px;
  border: 1px solid #1c1c1c;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(5px);
  cursor: text;
  box-sizing: border-box;
}

body#page_product_list .ec-productListSearch__icon {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  color: #1c1c1c;
}

body#page_product_list .ec-productListSearch__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

body#page_product_list .ec-productListSearch input {
  width: 100%;
  min-width: 0;
  height: 30px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #1c1c1c;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  outline: 0;
}

body#page_product_list .ec-productListSearch input::placeholder {
  color: rgba(28, 28, 28, 0.3);
  opacity: 1;
}

body#page_product_list .ec-productScene {
  width: 288px;
  margin-top: 56px;
  color: #2e3339;
}

body#page_product_list .ec-productScene__title {
  margin: 0 0 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid #2e3339;
  color: inherit;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

body#page_product_list .ec-productScene__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body#page_product_list .ec-productScene__link {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 114px;
  padding: 16px;
  border: 1px solid #2e3339;
  color: inherit;
  text-decoration: none;
}

body#page_product_list .ec-productScene__link img {
  display: block;
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  object-fit: contain;
}

body#page_product_list .ec-productScene__link span {
  min-width: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.1em;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

body#page_product_list .p-top__shoppingListLink {
  position: relative;
  display: block;
  width: 160px;
  margin: 48px 0 0 auto;
  padding: 0 40px 8px 0;
  color: #2e3339;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  text-decoration: none;
}

body#page_product_list .p-top__shoppingListLink::before,
body#page_product_list .p-top__shoppingListLink::after {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  height: 1px;
  background: #838a90;
  content: "";
}

body#page_product_list .p-top__shoppingListLink::before {
  left: 0;
}

body#page_product_list .p-top__shoppingListLink::after {
  width: 14px;
  transform: rotate(45deg);
  transform-origin: right center;
}

body#page_product_list .ec-productListHeader {
  margin-bottom: 56px;
}

body#page_product_list .ec-productListHeader__title {
  margin: 0 0 10px;
  color: #161616;
  font-family: "Manrope", sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

body#page_product_list .ec-productListHeader__subtitle {
  margin: 0;
  color: #161616;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.12em;
}

body#page_product_list .ec-searchnavRole {
  margin-bottom: 36px;
  padding-inline: 0;
  color: #161616;
}

body#page_product_list .ec-searchnavRole__infos {
  display: grid;
  gap: 32px;
  margin-top: 28px;
  padding-inline: 0;
  border-top: 0;
}

body#page_product_list .ec-searchnavRole__counter {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 8px;
}

body#page_product_list .ec-searchnavRole__counterLabel {
  display: block;
  width: auto;
  margin-bottom: 0;
  color: #161616;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
}

body#page_product_list .ec-searchnavRole__counter .ec-font-bold {
  color: #161616;
  font-family: "Manrope", sans-serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
}

body#page_product_list .ec-searchnavRole__counterUnit {
  color: #161616;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.08em;
}

body#page_product_list .ec-searchnavRole__actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  width: 100%;
  padding-bottom: 8px;
  border-bottom: 1px solid #e5e6e2;
}

body#page_product_list .ec-searchnavRole__sortLabel {
  margin: 0;
  color: #161616;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.08em;
}

body#page_product_list .ec-searchnavRole__actions .ec-select {
  display: flex;
  gap: 12px;
  margin-left: auto;
  justify-content: flex-end;
  white-space: nowrap;
}

body#page_product_list .ec-searchnavRole__actions select {
  width: auto;
  min-width: 0;
  height: 40px;
  padding: 0 36px 0 0;
  border: 0;
  background: url("https://chillplus.jp/images/icon/icon-select.svg") no-repeat right center / 24px 24px;
  color: #161616;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-align: right;
  appearance: none;
}

body#page_product_list .ec-topicpath,
body#page_product_list .ec-topicpath__item {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

body#page_product_list .ec-topicpath__item a {
  color: inherit;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-decoration: none;
}

body#page_product_list .ec-shelfRole {
  margin-inline: 0;
  padding-inline: 0;
}

body#page_product_list .ec-shelfGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 56px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body#page_product_list .ec-shelfGrid__item {
  width: auto;
  margin: 0;
  padding: 0;
  border-bottom: 0;
}

body#page_product_list .ec-shelfGrid__item a {
  display: block;
  color: inherit;
  text-decoration: none;
}

body#page_product_list .ec-shelfGrid__item p {
  margin: 14px 0 0;
  color: #161616;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

body#page_product_list .ec-shelfGrid__item p + p {
  margin-top: 8px;
}

body#page_product_list .ec-shelfGrid__item-image {
  margin: 0;
  width: auto;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: transparent;
}

body#page_product_list .ec-shelfGrid__item-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body#page_product_list .ec-shelfGrid__item form,
body#page_product_list .ec-shelfGrid__item .ec-productRole__btn {
  display: none;
}

body#page_product_list .ec-pagerRole {
  margin-top: 80px;
}

body#page_product_detail .ec-productRole__category {
  margin: 0 0 28px;
  padding: 0;
  color: #161616;
  font-size: 13px;
  line-height: 1.75;
  letter-spacing: 0.1em;
}

body#page_product_detail .ec-productRole__category ol,
body#page_product_detail .ec-productRole__category li {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

body#page_product_detail .ec-productRole__category ol {
  flex-wrap: wrap;
}

body#page_product_detail .ec-productRole__category li:not(:last-child)::after {
  content: "〉";
  display: inline-block;
  margin: 0 0.55em;
  font-size: 11px;
  letter-spacing: 0.1em;
}

body#page_product_detail .ec-productRole__category a,
body#page_product_detail .ec-productRole__category span {
  color: inherit;
  text-decoration: none;
}

body#page_product_detail .ec-productRole {
  margin: 0;
  padding: 0;
}

body#page_product_detail .ec-productRole .ec-grid2 {
  display: grid;
  grid-template-columns: minmax(0, 540px) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  margin: 0;
}

body#page_product_detail .ec-productRole .ec-grid2__cell {
  width: auto;
  margin: 0;
  padding: 0;
}

body#page_product_detail .ec-sliderItemRole {
  margin: 0;
  padding-inline: 0;
}

body#page_product_detail .ec-sliderItemRole .item_visual {
  width: 100%;
  max-width: 540px;
  margin: 0;
  background: transparent;
  box-shadow: none;
}

@media (width >= 48em) {
  body#page_product_detail .ec-sliderItemRole .item_visual {
    position: relative;
  }

  body#page_product_detail .ec-sliderItemRole .slide-item {
    display: block !important;
    width: min(100%, clamp(320px, calc(80svh - 320px), 540px)) !important;
    margin-inline: auto;
  }

  body#page_product_detail .ec-sliderItemRole .item_visual .slick-arrow {
    position: absolute;
    top: 50%;
    z-index: 1;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid #161616;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.86);
    color: transparent;
    transform: translateY(-50%);
  }

  body#page_product_detail .ec-sliderItemRole .item_visual .slick-prev {
    left: -18px;
  }

  body#page_product_detail .ec-sliderItemRole .item_visual .slick-next {
    right: -18px;
  }

  body#page_product_detail .ec-sliderItemRole .item_visual .slick-arrow::before {
    display: block;
    color: #161616;
    font-size: 20px;
    line-height: 34px;
  }

  body#page_product_detail .ec-sliderItemRole .item_visual .slick-prev::before {
    content: "\2190";
  }

  body#page_product_detail .ec-sliderItemRole .item_visual .slick-next::before {
    content: "\2192";
  }

  body#page_product_detail .ec-sliderItemRole .item_visual .slick-disabled {
    opacity: 0.28;
  }

  body#page_product_detail .ec-sliderItemRole .item_nav {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    width: 100%;
    max-width: 540px;
  }

  body#page_product_detail .ec-sliderItemRole .item_nav .slideThumb {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
  }
}

body#page_product_detail .ec-sliderItemRole .slide-item {
  aspect-ratio: 4 / 5;
  vertical-align: middle;
  background: transparent;
  box-shadow: none;
}

body#page_product_detail .ec-sliderItemRole .slide-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: none;
}

body#page_product_detail .ec-sliderItemRole .slick-dots {
  display: none !important;
}

body#page_product_detail .ec-sliderItemRole .item_nav {
  display: flex;
  gap: 11px;
  margin-top: 30px;
}

body#page_product_detail .ec-sliderItemRole .item_nav.slick-initialized {
  display: block;
  width: 100%;
  max-width: 540px;
  padding-inline: 0;
  overflow: visible;
}

body#page_product_detail .ec-sliderItemRole .item_nav .slick-list {
  overflow: hidden;
}

body#page_product_detail .ec-sliderItemRole .item_nav .slick-track {
  display: flex;
}

body#page_product_detail .ec-sliderItemRole .slideThumb {
  width: 80px;
  height: 100px;
  margin: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
}

body#page_product_detail .ec-sliderItemRole .item_nav.slick-initialized .slideThumb {
  padding-inline: 5.5px;
  border: 0;
}

body#page_product_detail .ec-sliderItemRole .slideThumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: none;
}

body#page_product_detail .ec-sliderItemRole .item_nav .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid #161616;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  color: transparent;
  transform: translateY(-50%);
}

body#page_product_detail .ec-sliderItemRole .item_nav .slick-prev {
  left: -18px;
}

body#page_product_detail .ec-sliderItemRole .item_nav .slick-next {
  right: -18px;
}

body#page_product_detail .ec-sliderItemRole .item_nav .slick-arrow::before {
  display: block;
  color: #161616;
  font-size: 20px;
  line-height: 34px;
}

body#page_product_detail .ec-sliderItemRole .item_nav .slick-prev::before {
  content: "\2190";
}

body#page_product_detail .ec-sliderItemRole .item_nav .slick-next::before {
  content: "\2192";
}

body#page_product_detail .ec-sliderItemRole .item_nav .slick-disabled {
  opacity: 0.28;
}

body#page_product_detail .ec-productRole__profile {
  padding: 30px 0 0;
  color: #161616;
}

body#page_product_detail .ec-productRole__categoryLabel {
  margin: 0 0 18px;
}

body#page_product_detail .ec-productRole__categoryLabel a {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #1c1c1c;
  border-radius: 0;
  background: transparent;
  color: #1c1c1c;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  text-decoration: none;
}

body#page_product_detail .ec-productRole__title {
  margin: 0 0 22px;
}

body#page_product_detail .ec-productRole__title .ec-headingTitle {
  margin: 0;
  color: #161616;
  font-size: 24px;
  line-height: 1.46;
  letter-spacing: 0.1em;
}

body#page_product_detail .ec-productRole__tags,
body#page_product_detail .ec-productRole__priceRegular {
  display: none;
}

body#page_product_detail .ec-productRole__price {
  margin: 0 0 14px;
  padding: 0;
  border: 0;
}

body#page_product_detail .ec-productRole__price .ec-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

body#page_product_detail .ec-productRole__price .ec-price__price {
  color: #161616;
  font-size: 27px;
  line-height: 1.75;
  letter-spacing: 0.1em;
}

body#page_product_detail .ec-productRole__price .ec-price__tax {
  color: #161616;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.1em;
}

body#page_product_detail .ec-productRole__point,
body#page_product_detail .ec-productRole__shipping {
  color: #161616;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.1em;
}

body#page_product_detail .ec-productRole__shipping {
  margin: 2px 0 32px;
}

body#page_product_detail .ec-productRole__code {
  display: none;
}

body#page_product_detail .ec-productRole__actions {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0 0 24px;
}

body#page_product_detail .ec-productRole__actions .ec-select {
  width: 100%;
  min-width: 0;
  margin: 0;
}

body#page_product_detail .ec-productRole__actions .ec-select .mb-3 {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  margin-bottom: 0;
}

body#page_product_detail .ec-productRole__actions .ec-numberInput {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  margin: 0;
}

body#page_product_detail .ec-productRole__actions label,
body#page_product_detail .ec-productRole__actions .ec-numberInput span {
  display: block;
  flex: 0 0 88px;
  margin: 0;
  color: #161616;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.1em;
}

body#page_product_detail .ec-productRole__actions select,
body#page_product_detail .ec-productRole__actions input[type="number"] {
  flex: 1 1 0;
  min-width: 0;
  width: auto;
  max-width: 330px;
  height: 48px;
  border: 1px solid #161616;
  border-radius: 0;
  background: transparent;
  color: #161616;
  font-size: 14px;
  letter-spacing: 0.08em;
}

body#page_product_detail .ec-productRole__actions select {
  flex-basis: 220px;
  height: 40px;
  margin-bottom: 0;
  border-color: #edeef0;
  border-radius: 3px;
  background-color: #fff;
}

body#page_product_detail
.ec-productRole__actions
.ec-numberInput
input[type="number"] {
  width: 100px;
  height: 40px;
  margin-bottom: 0;
  border-color: #edeef0;
  border-radius: 3px;
  background: #fff;
}

body#page_product_detail .ec-productRole__btn {
  margin: 0 0 14px;
}

body#page_product_detail .ec-productRole__buttonRow {
  margin: 0 0 14px;
}

body#page_product_detail .ec-productRole__buttonRow .ec-productRole__btn {
  margin: 0;
}

body#page_product_detail .ec-productRole__btn .ec-blockBtn--action,
body#page_product_detail .ec-productRole__btn .ec-blockBtn--cancel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 330px;
  height: 56px;
  border-radius: 0;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.12em;
}

body#page_product_detail #favorite {
  gap: 12px;
}

body#page_product_detail #favorite:focus,
body#page_product_detail #favorite:focus-visible,
body#page_product_detail #favorite:active {
  outline: none !important;
  box-shadow: none !important;
}

body#page_product_detail #favorite::before {
  content: "\f004";
  color: #fff;
  font-family: "Font Awesome 6 Free";
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
}

body#page_product_detail .ec-productRole__descriptionTitle {
  margin: 54px 0 17px;
  color: #161616;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.1em;
}

body#page_product_detail .ec-productRole__description {
  margin: 0;
  color: #161616;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.1em;
}

body#page_product_detail .ec-productRole__infoTabs {
  margin-top: 40px;
}

body#page_product_detail .ec-productRole__infoTabInput,
body#page_product_detail .ec-productRole__infoAccordionInput {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body#page_product_detail .ec-productRole__infoTabList {
  display: none;
}

body#page_product_detail .ec-productRole__infoPanel {
  border-top: 1px solid #d9d9d9;
}

body#page_product_detail .ec-productRole__infoPanel:last-child {
  border-bottom: 1px solid #d9d9d9;
}

body#page_product_detail .ec-productRole__infoAccordionTitle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
  margin: 0;
  color: #161616;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.1em;
  cursor: pointer;
}

body#page_product_detail .ec-productRole__infoAccordionTitle::after {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}

body#page_product_detail .ec-productRole__infoPanelBody {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  padding: 0;
  transition:
    grid-template-rows 0.3s ease,
    opacity 0.3s ease;
}

body#page_product_detail
.ec-productRole__infoPanelBody > * {
  min-height: 0;
}

body#page_product_detail
.ec-productRole__infoPanelBody > .ec-productRole__description {
  overflow: hidden;
}

body#page_product_detail
.ec-productRole__infoPanelBody > .ec-productRole__description::after {
  content: "";
  display: block;
  height: 28px;
}

body#page_product_detail
.ec-productRole__infoAccordionInput:checked
+ .ec-productRole__infoAccordionTitle
+ .ec-productRole__infoPanelBody {
  grid-template-rows: 1fr;
  opacity: 1;
}

body#page_product_detail
.ec-productRole__infoAccordionInput:checked
+ .ec-productRole__infoAccordionTitle::after {
  transform: rotate(225deg);
}

body#page_product_detail .ec-productRole__sizeGuide {
  max-width: 100%;
  margin-top: 8px;
}

body#page_product_detail .ec-productRole__sizeGuideHeader {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 8px;
}

body#page_product_detail .ec-productRole__sizeGuideUnit,
body#page_product_detail .ec-productRole__sizeGuideNote {
  margin: 0;
  color: #666;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

body#page_product_detail .ec-productRole__sizeGuideScroll {
  overflow-x: auto;
  border-top: 1px solid #c9c9c9;
  -webkit-overflow-scrolling: touch;
}

body#page_product_detail .ec-productRole__sizeTable {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  color: #161616;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.06em;
}

body#page_product_detail .ec-productRole__sizeTable th,
body#page_product_detail .ec-productRole__sizeTable td {
  min-width: 88px;
  padding: 13px 12px;
  border: 0;
  border-bottom: 1px solid #d9d9d9;
  background: #fff;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

body#page_product_detail .ec-productRole__sizeTable thead th {
  background: #f4f4f4;
  color: #555;
  font-weight: 400;
}

body#page_product_detail .ec-productRole__sizeTable tbody th {
  font-weight: 400;
}

body#page_product_detail .ec-productRole__sizeGuideNote {
  margin-top: 10px;
}

body#page_product_detail .ec-productRole__detailTable {
  width: 100%;
  border-collapse: collapse;
  color: #161616;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.1em;
}

body#page_product_detail .ec-productRole__detailTable th,
body#page_product_detail .ec-productRole__detailTable td {
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  vertical-align: top;
}

body#page_product_detail .ec-productRole__detailTable th {
  position: relative;
  width: 178px;
  padding-right: 40px;
  color: #161616;
  font-weight: 400;
  white-space: nowrap;
}

body#page_product_detail .ec-productRole__detailTable th::after {
  content: ":";
  position: absolute;
  top: 0;
  right: 20px;
  font-weight: 400;
}

body#page_product_detail .ec-productRelated {
  margin: 116px 0 0;
}

body#page_product_detail .ec-productRelated + .ec-productRelated {
  margin-top: 88px;
}

body#page_product_detail .ec-productRelated__title {
  margin: 0 0 7px;
  color: #161616;
  font-family: "Manrope", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.01em;
}

body#page_product_detail .ec-productRelated__subtitle {
  margin: 0 0 27px;
  color: #161616;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.1em;
}

body#page_product_detail .ec-productRelated__spBreak {
  display: none;
}

body#page_product_detail .ec-productRelated .ec-shelfRole {
  margin: 0;
  padding-inline: 0;
}

body#page_product_detail .ec-productRelated .ec-shelfGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body#page_product_detail .ec-productRelated .ec-shelfGrid__item {
  width: auto;
  margin: 0;
  padding: 0;
}

body#page_product_detail .ec-productRelated .ec-shelfGrid__item a {
  display: block;
  color: #161616;
  text-decoration: none;
}

body#page_product_detail .ec-productRelated .ec-shelfGrid__item p {
  margin: 0;
  color: #161616;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.1em;
}

body#page_product_detail .ec-productRelated .ec-shelfGrid__item p + p {
  margin-top: 8px;
}

body#page_product_detail
.ec-productRelated
.ec-shelfGrid__item
.ec-shelfGrid__item-image {
  aspect-ratio: 4 / 5;
  margin: 0 0 18px;
  border: 1px solid #e4e4e4;
  background: transparent;
  overflow: hidden;
}

body#page_product_detail
.ec-productRelated
.ec-shelfGrid__item
.ec-shelfGrid__item-image
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body#page_product_detail .ec-layoutRole__mainBottom {
  display: none;
}

@media (width >= 48em) {
  body#page_product_list .ec-productListBg {
    background-image: url("https://chillplus.jp/images/spot/bg-archive.png");
  }

  body#page_product_detail .ec-productDetailBg {
    background-image: url("https://chillplus.jp/images/spot/bg-archive.png");
  }

  body#page_product_detail .ec-productRole__buttonRow {
    display: flex;
    align-items: center;
    gap: 24px;
    min-width: 0;
  }

  body#page_product_detail .ec-productRole__buttonRow > .ec-productRole__btn {
    flex: 0 0 380px;
    width: 380px;
    min-width: 0;
  }

  body#page_product_detail .ec-productRole__buttonRow form {
    flex: 0 0 30px;
    width: 30px;
    min-width: 0;
    margin: 0;
  }

  body#page_product_detail
  .ec-productRole__buttonRow
  form
  .ec-productRole__btn {
    flex: 0 0 30px;
    width: 30px;
    min-width: 0;
    max-width: 30px;
  }

  body#page_product_detail .ec-productRole__buttonRow .ec-blockBtn--action {
    width: 380px;
    max-width: none;
  }

  body#page_product_detail #favorite {
    width: 30px;
    min-width: 0;
    max-width: 30px;
    height: 30px;
    padding: 0;
    border: 0;
    background: transparent;
    color: transparent;
    font-size: 0;
    letter-spacing: 0;
  }

  body#page_product_detail #favorite::before {
    color: #a0a0a0;
    font-size: 30px;
  }

  body#page_product_detail #favorite:disabled,
  body#page_product_detail #favorite.disabled {
    opacity: 1;
  }

  body#page_product_detail #favorite:disabled::before,
  body#page_product_detail #favorite.disabled::before {
    color: #2593cb;
    font-weight: 900;
  }

  body#page_product_detail .ec-productRole__infoTabList {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-bottom: 1px solid #d9d9d9;
  }

  body#page_product_detail .ec-productRole__infoTab {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    margin: 0;
    border-bottom: 2px solid transparent;
    color: #7b7a79;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.1em;
    cursor: pointer;
  }

  body#page_product_detail
  #product-info-description:checked
  ~ .ec-productRole__infoTabList
  .ec-productRole__infoTab:nth-child(1),
  body#page_product_detail
  #product-info-detail:checked
  ~ .ec-productRole__infoTabList
  .ec-productRole__infoTab:nth-child(2),
  body#page_product_detail
  #product-info-size:checked
  ~ .ec-productRole__infoTabList
  .ec-productRole__infoTab:nth-child(3) {
    border-bottom-color: #161616;
    color: #161616;
  }

  body#page_product_detail .ec-productRole__infoPanels {
    padding-top: 24px;
  }

  body#page_product_detail .ec-productRole__infoPanel,
  body#page_product_detail .ec-productRole__infoPanel:last-child {
    display: none;
    border: 0;
  }

  body#page_product_detail .ec-productRole__infoAccordionTitle {
    display: none;
  }

  body#page_product_detail .ec-productRole__infoPanelBody {
    display: block;
    opacity: 1;
    overflow: visible;
    padding: 0;
  }

  body#page_product_detail
  .ec-productRole__infoPanelBody > .ec-productRole__description {
    overflow: visible;
  }

  body#page_product_detail
  .ec-productRole__infoPanelBody > .ec-productRole__description::after {
    display: none;
  }

  body#page_product_detail
  #product-info-description:checked
  ~ .ec-productRole__infoPanels
  .ec-productRole__infoPanel--description,
  body#page_product_detail
  #product-info-detail:checked
  ~ .ec-productRole__infoPanels
  .ec-productRole__infoPanel--detail,
  body#page_product_detail
  #product-info-size:checked
  ~ .ec-productRole__infoPanels
  .ec-productRole__infoPanel--size {
    display: block;
  }
}

@media (width < 48em) {
  body#page_product_list .ec-productListBg {
    padding: 84px 0 72px;
  }

  body#page_product_list .ec-productListLayout {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 36px;
  }

  body#page_product_list .ec-productListLayout__secondary {
    order: 2;
    width: 100%;
  }

  body#page_product_list .ec-productListLayout__primary {
    order: 1;
  }

  body#page_product_list .ec-productListSearch,
  body#page_product_list .ec-productListSearch__box,
  body#page_product_list .ec-productScene {
    width: 100%;
  }

  body#page_product_list .ec-productListSearch__title {
    font-size: 28px;
  }

  body#page_product_list .ec-productScene {
    margin-top: 40px;
  }

  body#page_product_list .ec-productScene__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 8px;
  }

  body#page_product_list .ec-productScene__link {
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
    min-height: 140px;
    height: 100%;
    padding: 16px 8px;
    text-align: center;
  }

  body#page_product_list .ec-productScene__link img {
    flex-basis: auto;
    width: 70px;
    height: 70px;
  }

  body#page_product_list .ec-productScene__link span {
    line-height: 1.4;
    text-align: center;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  body#page_product_list .ec-productListHeader {
    margin-bottom: 44px;
  }

  body#page_product_list .ec-productListHeader__title {
    font-size: 30px;
  }

  body#page_product_list .ec-searchnavRole {
    margin-bottom: 36px;
  }

  body#page_product_list .ec-searchnavRole__infos {
    display: block;
  }

  body#page_product_list .ec-searchnavRole__actions {
    margin-top: 18px;
  }

  body#page_product_list .ec-searchnavRole__actions .ec-select {
    flex-wrap: nowrap;
    margin-left: auto;
  }

  body#page_product_list .ec-shelfGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 18px;
  }

  body#page_product_list .ec-shelfGrid__item p {
    font-size: 13px;
    line-height: 1.7;
  }

  body#page_product_list .ec-pagerRole {
    margin-top: 56px;
  }

  body#page_product_detail .ec-productDetailBg {
    padding: 84px 0 72px;
  }

  body#page_product_detail .ec-productRole__category {
    margin-bottom: 20px;
    font-size: 12px;
  }

  body#page_product_detail .ec-productRole .ec-grid2 {
    display: block;
  }

  body#page_product_detail .ec-sliderItemRole .item_nav {
    width: 100%;
    margin-top: 16px;
  }

  body#page_product_detail .ec-sliderItemRole .item_nav.slick-initialized {
    padding-inline: 0;
  }

  body#page_product_detail .ec-sliderItemRole .slideThumb {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
  }

  body#page_product_detail .ec-productRole__profile {
    padding-top: 54px;
  }

  body#page_product_detail .ec-productRole__title .ec-headingTitle {
    font-size: 21px;
    line-height: 1.5;
  }

  body#page_product_detail .ec-productRole__price .ec-price__price {
    font-size: 24px;
  }

  body#page_product_detail .ec-productRole__actions select,
  body#page_product_detail .ec-productRole__actions input[type="number"] {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    max-width: none;
  }

  body#page_product_detail .ec-productRole__btn .ec-blockBtn--action,
  body#page_product_detail .ec-productRole__btn .ec-blockBtn--cancel {
    width: 100%;
    min-width: 0;
    max-width: none;
  }

  body#page_product_detail .ec-productRole__actions select {
    flex-basis: 0;
  }

  body#page_product_detail .ec-productRole__actions .ec-select .mb-3,
  body#page_product_detail .ec-productRole__actions .ec-numberInput {
    align-items: center;
  }

  body#page_product_detail .ec-productRole__actions label,
  body#page_product_detail .ec-productRole__actions .ec-numberInput span {
    flex: 0 0 94px;
  }

  body#page_product_detail
  .ec-productRole__buttonRow
  .ec-productRole__btn
  + form,
  body#page_product_detail .ec-productRole__buttonRow form {
    margin-top: 14px;
  }

  body#page_product_detail #favorite::before {
    color: #2593cb;
  }

  body#page_product_detail #favorite:disabled::before,
  body#page_product_detail #favorite.disabled::before {
    color: #2593cb;
    font-weight: 900;
  }

  body#page_product_detail .ec-productRole__descriptionTitle {
    margin-top: 40px;
  }

  body#page_product_detail .ec-productRole__detailTable {
    font-size: 13px;
  }

  body#page_product_detail .ec-productRole__detailTable th {
    width: 118px;
    padding-right: 22px;
    white-space: normal;
  }

  body#page_product_detail .ec-productRole__detailTable th::after {
    right: 10px;
  }

  body#page_product_detail .ec-productRelated {
    margin-top: 72px;
    padding: 0;
  }

  body#page_product_detail .ec-productRelated + .ec-productRelated {
    margin-top: 56px;
  }

  body#page_product_detail .ec-productRelated__title {
    margin: 0 0 6px;
    font-size: 26px;
  }

  body#page_product_detail .ec-productRelated__subtitle {
    margin: 0 0 22px;
  }

  body#page_product_detail .ec-productRelated__spBreak {
    display: block;
  }

  body#page_product_detail .ec-productRelated .ec-shelfRole {
    margin-inline: 0;
  }

  body#page_product_detail .ec-productRelated .ec-shelfGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 18px;
  }

  body#page_product_detail
  .ec-productRelated
  .ec-shelfGrid__item
  .ec-shelfGrid__item-image {
    margin-bottom: 14px;
  }

  body#page_product_detail .ec-productRelated .ec-shelfGrid__item p {
    font-size: 13px;
    line-height: 1.7;
  }

  body#page_product_detail .ec-modal-box .ec-role .ec-inlineBtn--action {
    margin-top: 10px;
  }
}

.ec-pagerRole {
  margin: 56px 0 0;
  padding: 0;
}

/*
 ページャー
 */

.ec-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: max-content;
  margin: 0 auto;
  padding: 0;
  border: 0;
  font-family: "Sulphur Point", sans-serif !important;
  list-style: none;
}

.ec-pager li,
.ec-pager a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--chillplus-black);
  font-family: "Sulphur Point", sans-serif !important;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  text-decoration: none;
  opacity: 0.5;
  box-sizing: border-box;
}

.ec-pager__item--active {
  background: transparent !important;
}

.ec-pager__item--active a {
  background: transparent !important;
  opacity: 1;
}

.ec-pager__item:last-child:not(.ec-pager__item--active) a {
  width: auto;
  font-size: 0;
  letter-spacing: 0;
}

.ec-pager__item:last-child:not(.ec-pager__item--active) a::before {
  content: "→";
  font-size: 24px;
  letter-spacing: 0;
}

.ec-pager__item:first-child:not(.ec-pager__item--active) a[href*="pageno"] {
  width: auto;
  font-size: 0;
  letter-spacing: 0;
}

.ec-pager__item:first-child:not(.ec-pager__item--active) a[href*="pageno"]::before {
  content: "←";
  font-size: 24px;
  letter-spacing: 0;
}

.ec-orderRole {
  justify-content: center;
}

@media (width >= 48em) {
  .ec-orderRole .ec-orderRole__detail {
    display: flex;
    justify-content: center;
  }
}

.ec-layoutRole__main {
  max-width: 869px;
  margin: 0 auto;
  padding: 0;
  color: var(--chillplus-black);
}


.ec-layoutRole__main > .ec-layoutRole__main {
  max-width: none;
}

.ec-pageHeader {
  margin: 0 0 48px;
  border: 0;
  border-bottom: 0;
}

@media (width >= 48em) {
  .ec-pageHeader {
    margin-block-end: 58px
  }
}

.ec-pageHeader::before,
.ec-pageHeader h1::after {
  content: none;
  display: none;
}


.ec-pageHeader h1 {
  margin: 0 !important;
  padding: 0 !important;
  border: 0;
  border-bottom: 0;
  color: var(--chillplus-black);
  font-family: "Manrope", sans-serif;
  font-size: 0;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.ec-pageHeader h1::before {
  font-size: 26px;
  line-height: 1;
}

.ec-pageHeader::after {
  display: block;
  margin-top: 8px;
  color: var(--chillplus-black);
  font-size: 14px;
  font-weight: 350;
  line-height: 1;
  letter-spacing: 0.1em;
}

body#page_plugin_coupon_shopping .ec-pageHeader h1::before {
  content: "Coupon";
}

body#page_plugin_coupon_shopping .ec-pageHeader::after {
  content: "クーポンコードの入力";
}

body#page_shopping_shipping .ec-pageHeader h1::before {
  content: "Shipping Address";
}

body#page_shopping_shipping .ec-pageHeader::after {
  content: "お届け先の変更";
}

:is(body#page_shopping_shipping_edit, body#page_mypage_delivery_new) .ec-pageHeader h1::before {
  content: "Shipping Address";
}

:is(body#page_shopping_shipping_edit, body#page_mypage_delivery_new) .ec-pageHeader::after {
  content: "お届け先を追加する";
}
body#page_mypage_change .ec-pageHeader h1::before,
body#page_mypage_change_complete .ec-pageHeader h1::before {
  content: "Personal Info";
}

body#page_mypage_change .ec-pageHeader::after,
body#page_mypage_change_complete .ec-pageHeader::after {
  content: "会員情報の設定";
}

.ec-mypageRole,
.ec-addressRole {
  margin: 0 0 40px;
  border: 0;
}
@media (width >= 48em) {
  .ec-mypageRole,
  .ec-addressRole {
    padding: 0;
  }
}

.ec-para-normal {
  margin: 0 0 30px;
  color: var(--chillplus-black);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.2em;
}

.ec-addressRole .ec-addressRole__actions {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  border-bottom: 0;
}

.ec-addressRole__actions .ec-inlineBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 64px;
  max-width: 350px;
  width: 100%;
  margin: 0;
  border: solid 1px #1c1c1c;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.6);
  color: #1c1c1c;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-align: center;
  text-decoration: none !important;
}

.ec-addressRole__actions .ec-inlineBtn::before,
.ec-addressRole__actions .ec-inlineBtn::after {
  content: none;
  display: none;
}

.ec-addressList {
  width: 100%;
  margin: 0;
  padding: 0;
  border-top: 1px solid #afafaf;
}

.ec-addressList__item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 111px;
  margin: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid #afafaf;
}

.ec-addressList__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 35px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #b3b2b2;
  font-size: 0;
  text-decoration: none;
}

.ec-addressList__remove::before {
  content: "×";
  color: #b3b2b2;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
}

body#page_shopping_shipping .ec-addressList__remove::before {
  content: none
}

.ec-addressList__remove .ec-icon {
  display: none;
}

.ec-addressList__address {
  /*width: 260px;*/
  margin: 0;
  padding: 0;
  color: var(--chillplus-black);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.2em;
}

.ec-addressList__address div {
  margin: 0;
  padding: 0;
}

.ec-addressList__action {
  align-self: center;
  justify-self: end;
  top: auto;
  margin: 0;
  padding: 0;
}

.ec-addressList__action .ec-inlineBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 40px;
  margin: 0;
  padding: 0 16px;
}

@media (width >= 48em) {
  :is(.ec-editRole, .ec-orderRole) {
    padding: 0;
  }
}

:is(.ec-off1Grid, .ec-off1Grid .ec-off1Grid__cell, .ec-off3Grid, .ec-off3Grid .ec-off3Grid__cell, .ec-off4Grid, .ec-off4Grid .ec-off4Grid__cell) {
  width: 100%;
  margin: 0;
}

.ec-borderedDefs {
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-top: 0;
}

.ec-borderedDefs dl {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  border: 0;
  border-top: 0;
}

.ec-borderedDefs dt,
.ec-borderedDefs dd {
  width: 100%;
  margin: 0;
  padding: 0;
}

.ec-borderedDefs dd {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ec-borderedDefs dt {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ec-borderedDefs dt::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--chillplus-black);
  flex: 0 0 auto;
}

.ec-label {
  margin: 0;
  color: var(--chillplus-black);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
}

.ec-required {
  color: #c65a5a;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
}

:is(.ec-editRole, .ec-orderRole) :is(input, select, textarea) {
  width: 100%;
  margin-bottom: 0;
  min-height: 61px;
  border: 1px solid var(--chillplus-border);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.5);
  color: var(--chillplus-black);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
  box-shadow: none;
}

:is(.ec-editRole, .ec-orderRole) :is(input[type="radio"], input[type="checkbox"]),
:is(body#page_shopping, body#page_shopping_confirm) :is(.form-control, .form-select),
:is(body#page_shopping, body#page_shopping_confirm) .ec-borderedDefs :is(input, select) {
  width: auto;
  min-height: 0;
}

:is(body#page_shopping, body#page_shopping_confirm) textarea.form-control {
  width: 100%;
}

.ec-orderDelivery__actions .ec-selects {
  border: 0;
  display: grid;
  gap: 10px;
}

.ec-orderDelivery__actions .ec-select {
  align-items: center;
}

.ec-orderDelivery__actions .ec-select label {
  width: 5em;
}

:is(.ec-editRole, .ec-orderRole) :is(input:focus, select:focus, textarea:focus) {
  border-color: var(--chillplus-black);
  box-shadow: 0 0 0 2px rgba(28, 28, 28, 0.12);
  outline: none;
}

:is(.ec-editRole, .ec-orderRole) :is(.ec-halfInput, .ec-input, .ec-telInput, .ec-select) {
  display: flex;
  width: 100%;
  margin-bottom: 0;
  gap: 16px;
}

:is(.ec-editRole, .ec-orderRole) :is(.ec-halfInput, .ec-input, .ec-telInput, .ec-select).error {
  flex-wrap: wrap;
}

.ec-RegisterRole__actions {
  margin-top: 40px;
}

.ec-RegisterRole__actions .ec-off4Grid__cell {
  display: flex;
  justify-content: stretch;
}

.ec-cartCompleteRole .ec-off4Grid__cell {
  display: flex;
  justify-content: center;
}

.ec-RegisterRole__buttonGroup {
  flex-direction: column;
  gap: 16px;
}

.ec-off4Grid .ec-off4Grid__cell:has(.ec-blockBtn--cancel:only-child) {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

@media (width >= 48em) {
  .ec-pageHeader h1::before {
    font-size: 32px;
    line-height: 1.2;
  }

  :is(.ec-editRole, .ec-orderRole) .ec-halfInput {
    flex-wrap: nowrap;
  }

  .ec-RegisterRole__actions {
    margin-top: 56px;
  }

  .ec-RegisterRole__actions .ec-off4Grid__cell {
    justify-content: flex-end;
  }

  .ec-RegisterRole__actions .ec-off4Grid__cell.ec-RegisterRole__buttonGroup {
    flex-direction: row;
    justify-content: flex-end;
    gap: 24px;
  }

  .ec-blockBtn--action,
  .ec-blockBtn--cancel {
    width: 260px;
  }
}

@media (hover: hover) {
  .ec-pager a {
    transition: opacity 0.3s ease-in-out;
  }

  .ec-pager a:hover {
    opacity: 1;
  }
}

.ec-navlistRole,
.ec-welcomeMsg,
.ec-layoutRole__mainBottom {
  display: none !important;
}

.ec-off1Grid,
.ec-off1Grid__cell {
  width: 100%;
  margin: 0;
}

.ec-editRole input::placeholder,
.ec-editRole textarea::placeholder {
  color: rgba(28, 28, 28, 0.36);
}

.ec-editRole .ec-halfInput input {
  margin-left: 0;
}

.ec-editRole .ec-input.error {
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

.ec-editRole .ec-zipInput {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ec-editRole .ec-zipInput > span {
  color: var(--chillplus-black);
  font-size: 16px;
  line-height: 1.8;
}

.ec-editRole .ec-zipInput input {
  width: 112px;
  max-width: 112px;
  min-height: 48px;
}

.ec-editRole .ec-zipInputHelp {
  flex: 0 0 auto;
  margin: 0;
  color: var(--chillplus-black);
  font-size: 13px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.ec-RegisterRole__actions .ec-off4Grid__cell {
  display: flex;
  justify-content: stretch;
}

.ec-RegisterRole__buttonGroup {
  flex-direction: column;
  gap: 16px;
}

.ec-blockBtn--action,
.ec-blockBtn--cancel {
  width: 100%;
  margin: 0;
}

@media (width >= 48em) {
  .ec-editRole .ec-zipInput input {
    width: 100%;
    max-width: 240px;
    min-height: 61px;
  }

  .ec-RegisterRole__buttonGroup .ec-blockBtn--cancel {
    order: 1;
  }

  .ec-RegisterRole__buttonGroup .ec-blockBtn--action {
    order: 2;
  }
}

.ec-registerCompleteRole {
  margin-top: 48px;
}

body#page_mypage_change .ec-editRole .ec-birth {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

body#page_mypage_change .ec-editRole .ec-birth select {
  flex: 1 1 84px;
  width: auto;
}

body#page_mypage_change .ec-editRole .ec-radio #entry_sex {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

body#page_mypage_change .ec-editRole .ec-radio input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

body#page_mypage_change .ec-editRole .ec-radio label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  margin: 0;
  color: var(--chillplus-black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
  cursor: pointer;
}

body#page_mypage_change .ec-editRole .ec-radio label::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 1px solid var(--chillplus-black);
  border-radius: 50%;
  background: transparent;
  box-sizing: border-box;
}

body#page_mypage_change
  .ec-editRole
  .ec-radio
  input[type="radio"]:checked
  + label::before {
  border: 6px solid var(--chillplus-black);
}

body#page_mypage_delivery_edit .ec-pageHeader h1::before {
  content: "Shipping Addresses";
}

body#page_mypage_delivery_edit .ec-pageHeader::after {
  content: "お届け先一覧";
}

body#page_shopping_nonmember .ec-pageHeader h1::before {
  content: "Shipping Address";
}

body#page_shopping_nonmember .ec-pageHeader::after {
  content: "お届け先の入力";
}

body#page_mypage .ec-pageHeader h1::before {
  content: "History";
}

body#page_mypage .ec-pageHeader::after {
  content: "ご注文履歴";
}

/*
 ご注文履歴
 */

body#page_mypage .ec-historyRole {
  margin: 0 0 30px;
  padding: 0;
  border-top: 1px solid rgba(28, 28, 28, 0.32);
}

body#page_mypage .ec-historyRole:last-of-type {
  margin-bottom: 0;
}

body#page_mypage .ec-historyRole:last-of-type {
  border-bottom: 1px solid rgba(28, 28, 28, 0.32);
}

body#page_mypage .ec-historyRole__contents {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 240px;
  grid-template-rows: 40px minmax(100px, auto);
  min-height: 140px;
  padding: 0;
  border: 0;
  background: transparent;
}

body#page_mypage .ec-historyRole__header {
  display: contents;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

body#page_mypage .ec-historyListHeader {
  display: contents;
  margin: 0;
  padding: 0;
  border: 0;
}

body#page_mypage .ec-historyListHeader__date {
  grid-column: 1 / 3;
  grid-row: 1;
  align-self: center;
  margin: 0;
  color: var(--chillplus-black);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.2em;
}

body#page_mypage .ec-historyListHeader .ec-definitions:nth-of-type(2) {
  display: none;
}

body#page_mypage .ec-historyListHeader .ec-definitions:first-of-type {
  display: flex;
  grid-column: 3;
  grid-row: 1;
  align-self: center;
  gap: 4px;
  margin: 0;
  color: var(--chillplus-black);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.2em;
  pointer-events: none;
  width: 240px;
}

body#page_mypage .ec-historyListHeader .ec-definitions:first-of-type dt,
body#page_mypage .ec-historyListHeader .ec-definitions:first-of-type dd {
  width: auto;
  margin: 0;
  padding: 0;
}

body#page_mypage .ec-historyListHeader__action {
  grid-column: 3;
  grid-row: 1;
  align-self: center;
  margin: 0;
  justify-self: end;
  width: 240px;
  text-align: right;
}

body#page_mypage .ec-historyListHeader__action .ec-inlineBtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  min-width: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--chillplus-black);
  font-size: 0;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.2em;
  text-decoration: none;
}

body#page_mypage .ec-historyListHeader__action .ec-inlineBtn::before {
  content: "｜注文内容を見る";
  font-size: 13px;
}

body#page_mypage .ec-historyListHeader__action .ec-inlineBtn::after {
  content: "→";
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0;
}

body#page_mypage .ec-historyRole__detail {
  display: grid;
  grid-column: 1 / -1;
  grid-row: 2;
  width: 100%;
  flex-direction: column;
  gap: 30px;
  justify-items: start;
  margin: 0;
  padding: 29px 0 0;
  border: 0;
  border-top: 1px solid rgba(28, 28, 28, 0.32);
}

body#page_mypage .ec-imageGrid {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin: 0;
  width: 248px;
  min-height: 70px;
  padding: 0;
  border: 0;
}

body#page_mypage .ec-imageGrid__img {
  width: 70px;
  height: 70px;
  margin: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.5);
  overflow: hidden;
}

body#page_mypage .ec-imageGrid__img img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  object-fit: cover;
}

body#page_mypage .ec-imageGrid__content {
  margin: 0;
  padding: 0;
  color: var(--chillplus-black);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.2em;
  word-break: keep-all;
}

body#page_mypage .ec-historyRole__detailTitle,
body#page_mypage .ec-historyRole__detailPrice {
  margin: 0;
  color: var(--chillplus-black);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.2em;
}

body#page_mypage .ec-historyRole__detailPrice {
  margin-top: 4px;
}

/*
 お届け先一覧
 */

body#page_mypage_delivery .ec-pageHeader h1::before {
  content: "Shipping Addresses";
}

body#page_mypage_delivery .ec-pageHeader::after {
  content: "お届け先一覧";
}

is:(body#page_mypage_delivery, #page_shopping_shipping) .ec-addressRole__actions {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  border-bottom: 0;
}

@media (hover: hover) {
  body#page_mypage_delivery .ec-addressRole__actions .ec-inlineBtn {
    transition: background-color 0.3s ease-in-out;
  }

  body#page_mypage_delivery .ec-addressRole__actions .ec-inlineBtn:hover {
    background-color: #f2f1ef;
    border-color: #1c1c1c;
    color: #1c1c1c;
  }
}

body#page_mypage_delivery .ec-addressList {
  width: 100%;
  margin: 0;
  padding: 0;
  border-top: 1px solid #afafaf;
}

:is(body#page_mypage_delivery, body#page_shopping_shipping) .ec-addressList__item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 111px;
  margin: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid #afafaf;
}

body#page_mypage_delivery .ec-addressList__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 35px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #b3b2b2;
  font-size: 0;
  text-decoration: none;
}

body#page_mypage_delivery .ec-addressList__remove::before {
  content: "×";
  color: #b3b2b2;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
}

body#page_mypage_delivery .ec-addressList__remove .ec-icon {
  display: none;
}

body#page_mypage_delivery .ec-addressList__address {
  /*width: 260px;*/
  margin: 0;
  padding: 0;
  color: var(--chillplus-black);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.2em;
}

body#page_mypage_delivery .ec-addressList__address div {
  margin: 0;
  padding: 0;
}

body#page_mypage_delivery .ec-addressList__action {
  align-self: center;
  justify-self: end;
  top: auto;
  margin: 0;
  padding: 0;
}

body#page_mypage_delivery .ec-addressList__action .ec-inlineBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 40px;
  margin: 0;
  padding: 0 16px;
  border: 1px solid rgba(28, 28, 28, 0.32);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.54);
  color: var(--chillplus-black);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.2em;
  text-decoration: none;
}

/*
 お気に入り一覧
 */

body#page_mypage_favorite .ec-pageHeader h1::before {
  content: "Wishlist";
}

body#page_mypage_favorite .ec-pageHeader::after {
  content: "お気に入り一覧";
}

body#page_mypage_favorite .ec-favoriteRole__header p {
  margin: 0;
  color: var(--chillplus-black);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.2em;
}

body#page_mypage_favorite .ec-favoriteRole__detail {
  margin: 0;
  padding: 0;
}

body#page_mypage_favorite .ec-favoriteRole__itemList {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 48px;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(28, 28, 28, 0.32);
  list-style: none;
}

body#page_mypage_favorite .ec-favoriteRole__item {
  position: relative;
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  width: 100%;
  min-height: 110px;
  margin: 0;
  padding: 30px 34px 30px 0;
  border: 0;
  border-bottom: 1px solid rgba(28, 28, 28, 0.32);
  background: transparent;
  box-sizing: border-box;
}

body#page_mypage_favorite .ec-closeBtn--circle {
  position: absolute;
  top: 30px;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  min-width: 22px;
  height: 22px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--chillplus-black);
  border-radius: 50%;
  background: var(--chillplus-black);
}

body#page_mypage_favorite .ec-closeBtn--circle .ec-icon,
body#page_mypage_favorite .ec-closeBtn--circle img {
  display: none;
}

body#page_mypage_favorite .ec-closeBtn--circle::before {
  content: "×";
  color: var(--chillplus-white);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-1px);
}

body#page_mypage_favorite .ec-favoriteRole__itemThumb {
  grid-row: 1 / 3;
  display: block;
  width: 88px;
  aspect-ratio: 4 / 5;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
}

body#page_mypage_favorite .ec-favoriteRole__item-image {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

body#page_mypage_favorite .ec-favoriteRole__item-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body#page_mypage_favorite .ec-favoriteRole__itemTitle,
body#page_mypage_favorite .ec-favoriteRole__itemPrice {
  margin: 0;
  padding: 0;
  color: var(--chillplus-black);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.2em;
}

body#page_mypage_favorite .ec-favoriteRole__itemPrice {
  margin-top: 4px;
}

body#page_mypage_favorite .ec-pagerRole {
  margin: 56px 0 0;
  padding: 0;
}

/*
 退会
 */

body#page_mypage_withdraw .ec-pageHeader h1::before {
  content: "Withdrawal";
}

body#page_mypage_withdraw .ec-pageHeader::after {
  content: "退会手続き";
}

.ec-withdrawRole {
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
}

/*
 ご注文履歴
 */

body#page_mypage_history .ec-pageHeader h1::before {
  content: "History";
}

body#page_mypage_history .ec-pageHeader::after {
  content: "ご注文履歴";
}

/*body#page_mypage_history .ec-role.ec-orderRole {*/
/*  display: none !important;*/
/*}*/

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderRole {
  display: grid;
  grid-template-columns: 520px 300px;
  gap: 49px;
  width: 869px;
  max-width: 100%;
  margin: 0;
  padding: 0 26px;
  border: 0;
  background: transparent;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderRole__detail,
:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderRole__summary {
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderOrder {
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  gap: 10px 24px;
  margin: 0 0 30px;
  padding: 10px 0;
  border-top: 1px solid rgba(28, 28, 28, 0.32);
  border-bottom: 1px solid rgba(28, 28, 28, 0.32);
  background: transparent;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderOrder .ec-definitions {
  display: flex;
  align-items: center;
  gap: 4px;
  width: auto;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--chillplus-black);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.2em;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderOrder .ec-definitions:first-of-type dt {
  display: none;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderOrder .ec-definitions dt,
:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderOrder .ec-definitions dd {
  width: auto;
  margin: 0;
  padding: 0;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderOrder .ec-definitions:first-of-type dd {
  white-space: nowrap;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderDelivery {
  display: flex;
  flex-direction: column;
  width: 520px;
  margin: 0;
  padding: 0;
  border: 0;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderDelivery__item {
  order: 1;
  margin: 0;
  padding: 0;
  border: 0;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderDelivery__item li {
  border: 0
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) :is(.ec-orderDelivery__item + .ec-orderDelivery__item, .ec-borderedList > li + li) {
  margin-top: 30px;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderDelivery .ec-imageGrid {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  width: 100%;
  min-height: 70px;
  margin: 0;
  padding: 0;
  border: 0;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderDelivery .ec-imageGrid__img {
  width: 70px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderDelivery .ec-imageGrid__img img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  object-fit: cover;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderDelivery .ec-imageGrid__content,
:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderDelivery .ec-imageGrid__content p,
:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderDelivery .ec-imageGrid__content a {
  margin: 0;
  padding: 0;
  color: var(--chillplus-black);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.2em;
  text-decoration: none;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderDelivery .ec-imageGrid__content p + p {
  margin-top: 4px;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) :is(.ec-orderDelivery, .ec-orderAccount, .ec-orderPayment, .ec-orderCoupon, .ec-orderMails) .ec-rectHeading {
  display: flex;
  align-items: center;
  width: 520px;
  min-height: 40px;
  margin: 40px 0 18px;
  padding: 0;
  border: 0;
  border-top: 1px solid #afafaf;
  border-bottom: 1px solid #afafaf;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderPayment :is([class^="vt4g"], [class*=" vt4g"]) {
  margin-top: 40px;
}

body#page_mypage_history .ec-orderDelivery .ec-rectHeading {
  order: 3;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) :is(.ec-orderDelivery, .ec-orderAccount, .ec-orderPayment, .ec-orderCoupon, .ec-orderMails) .ec-rectHeading h2 {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--chillplus-black);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.2em;
}

body#page_mypage_history .ec-orderDelivery__title,
body#page_mypage_history .ec-orderDelivery__address,
body#page_mypage_history .ec-orderDelivery .ec-definitions--soft {
  order: 4;
}

/*:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderDelivery__title {*/
/*  display: none;*/
/*}*/

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) :is(.ec-orderDelivery__address, .ec-orderAccount__account, .customer_detail_box, #customer_detail_box) {
  /*width: 260px;*/
  margin: 0 0 20px;
  padding: 0;
  color: var(--chillplus-black);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.12em;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderDelivery__address p {
  margin: 0;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderDelivery .ec-definitions--soft {
  display: flex;
  gap: 8px;
  /*width: 260px;*/
  margin: 0;
  color: var(--chillplus-black);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.12em;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderDelivery .ec-definitions--soft dt,
:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderDelivery .ec-definitions--soft dd {
  width: auto;
  margin: 0;
  padding: 0;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderPayment,
:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderConfirm,
:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderMails {
  width: 520px;
  margin: 30px 0 0;
  padding: 0;
  border: 0;
  color: var(--chillplus-black);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.12em;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderPayment .ec-rectHeading,
:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderConfirm .ec-rectHeading,
:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderMails .ec-rectHeading {
  display: flex;
  align-items: center;
  width: 520px;
  min-height: 40px;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  border-top: 1px solid #afafaf;
  border-bottom: 1px solid #afafaf;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderPayment .ec-rectHeading h2,
:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderConfirm .ec-rectHeading h2,
:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderMails .ec-rectHeading h2 {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--chillplus-black);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.2em;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderPayment p,
:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderConfirm p {
  /*width: 260px;*/
  margin: 0;
  padding: 0;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderPayment__details {
  /*width: 260px;*/
  margin: 0;
  padding: 0;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderPayment__details p {
  width: auto;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderPayment .ec-definitions--soft {
  display: flex;
  gap: 8px;
  /*width: 260px;*/
  margin: 0;
  padding: 0;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderPayment .ec-definitions--soft dt,
:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderPayment .ec-definitions--soft dd {
  width: auto;
  margin: 0;
  padding: 0;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderMail {
  margin: 0;
  padding: 0;
  border: 0;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderMail__time,
:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderMail__link,
:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderMail__body {
  margin: 0 0 10px;
  padding: 0;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderMail__link a {
  color: var(--chillplus-black);
  text-decoration: underline;
  text-underline-offset: 3px;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderMail__body {
  max-height: 240px;
  overflow: auto;
  font-size: 12px;
  line-height: 1.75;
  letter-spacing: 0.08em;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-totalBox {
  width: 300px;
  min-height: 274px;
  margin: 0;
  padding: 20px 20px 23px;
  border: 0;
  background: #e7e7e7;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-totalBox__spec {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 0;
  padding: 0;
  color: var(--chillplus-black);
  font-size: 15px;
  font-weight: 350;
  line-height: 1.75;
  letter-spacing: 0.1em;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-totalBox__spec:nth-of-type(2) {
  display: none;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-totalBox__spec dt,
:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-totalBox__spec dd {
  width: auto;
  margin: 0;
  padding: 0;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-totalBox__total {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 9px;
  margin: 25px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(28, 28, 28, 0.32);
  color: var(--chillplus-black);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.2em;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-totalBox__price {
  color: var(--chillplus-black);
  font-size: 27px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-totalBox__taxLabel {
  font-size: 13px;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-totalBox__paymentTotal {
  display: none;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-totalBox__taxRate {
  margin: 8px 0 0;
  padding: 0 0 26px;
  border-bottom: 1px solid rgba(28, 28, 28, 0.32);
  color: var(--chillplus-black);
  font-size: 11px;
  font-weight: 350;
  line-height: 1.75;
  letter-spacing: 0.08em;
  text-align: right;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-totalBox__taxRate dt {
  display: none;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-totalBox__taxRate dd {
  width: auto;
  margin: 0;
  padding: 0;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-totalBox .ec-blockBtn--action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 260px;
  height: 55px;
  margin: 20px 0 0;
  padding: 0;
  border: 0;
  border-radius: 5px;
  color: var(--chillplus-white);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.1em;
  text-decoration: none;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-totalBox .ec-blockBtn--action::before {
  content: "\f07a";
  font-family: "Font Awesome 6 Free", sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

body#page_plugin_coupon_shopping .ec-borderedDefs {
  gap: 10px;
}

body#page_plugin_coupon_shopping .ec-borderedDefs dl {
  flex-direction: row;
}

body#page_plugin_coupon_shopping .ec-borderedDefs dt {
  width: 112px;
}

body#page_plugin_coupon_shopping .ec-borderedDefs dd {
  width: auto;
}

body#page_plugin_coupon_shopping .ec-borderedDefs dt::before {
  content: none;
}

body#page_plugin_coupon_shopping #coupon_use_coupon_use {
  display: grid;
  gap: 20px;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .vt4g_payment_credit .ec-rectHeading {
  align-items: start;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

:is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .vt4g_payment_credit .ec-para-normal {
  margin-block: 16px;
  width: auto;
}

.ec-totalBox .ec-totalBox__pointBlock {
  background: transparent;
}

@media (width >= 48em) {
  :is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderRole .ec-orderRole__detail {
    flex-direction: column;
  }
}

@media (width < 48em) {
  body#page_mypage_change .ec-editRole .ec-radio #entry_sex {
    gap: 16px;
    flex-wrap: wrap;
    overflow-x: visible;
  }

  body#page_mypage_change .ec-editRole .ec-radio label {
    min-height: 48px;
    white-space: nowrap;
  }

  body#page_mypage .ec-historyListHeader {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  body#page_mypage .ec-historyRole__contents {
    display: block;
    min-height: 0;
  }

  body#page_mypage .ec-historyRole__header {
    display: block;
    margin-bottom: 0;
  }

  body#page_mypage .ec-historyListHeader {
    grid-template-columns: max-content minmax(0, 1fr) max-content;
    align-items: center;
    gap: 12px;
    min-height: 56px;
  }

  body#page_mypage .ec-historyListHeader__date {
    grid-column: 1;
    grid-row: 1;
    white-space: nowrap;
    line-height: 1;
  }

  body#page_mypage .ec-historyListHeader .ec-definitions:first-of-type {
    grid-column: 2;
    grid-row: 1;
    width: auto;
    min-width: 0;
    white-space: nowrap;
  }

  body#page_mypage .ec-historyListHeader__action {
    grid-column: 3;
    grid-row: 1;
    width: auto;
    justify-self: end;
  }

  body#page_mypage .ec-historyListHeader__action .ec-inlineBtn {
    width: auto;
    gap: 0;
  }

  body#page_mypage .ec-historyListHeader__action .ec-inlineBtn::before {
    content: "";
  }

  body#page_mypage .ec-historyListHeader__action .ec-inlineBtn::after {
    font-size: 18px;
  }

  body#page_mypage .ec-historyRole__detail {
    gap: 24px;
    padding-bottom: 28px;
  }

  body#page_mypage .ec-imageGrid {
    gap: 16px;
  }

  body#page_mypage_delivery .ec-layoutRole__contents {
    padding: 84px 0 72px;
  }

  body#page_mypage_delivery .ec-pageHeader h1 {
    line-height: 1;
  }

  body#page_mypage_delivery .ec-pageHeader h1::before {
    font-size: 26px;
  }

  body#page_mypage_delivery .ec-pageHeader::after {
    margin-top: 8px;
  }

  body#page_mypage_delivery .ec-addressRole {
    margin-bottom: 32px;
  }

  body#page_mypage_delivery .ec-addressRole__actions .ec-inlineBtn {
    width: 100%;
  }

  :is(body#page_mypage_delivery, body#page_shopping_shipping) .ec-addressList__item {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 16px;
    min-height: 112px;
    padding: 22px 0;
  }

  body#page_mypage_delivery .ec-addressList__address {
    width: auto;
  }

  body#page_mypage_delivery .ec-addressList__action {
    grid-column: 2;
    justify-self: start;
  }

  body#page_mypage_favorite .ec-layoutRole__contents {
    padding: 84px 0 72px;
  }

  body#page_mypage_favorite .ec-pageHeader h1 {
    line-height: 1;
  }

  body#page_mypage_favorite .ec-pageHeader h1::before {
    font-size: 26px;
  }

  body#page_mypage_favorite .ec-pageHeader::after {
    margin-top: 8px;
  }

  body#page_mypage_favorite .ec-favoriteRole__itemList {
    grid-template-columns: 1fr;
    gap: 0;
  }

  body#page_mypage_favorite .ec-favoriteRole__item {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 16px;
    min-height: 84px;
    padding: 24px 34px 24px 0;
  }

  body#page_mypage_favorite .ec-closeBtn--circle {
    top: 24px;
  }

  body#page_mypage_favorite .ec-favoriteRole__itemThumb {
    width: 84px;
  }

  :is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderRole {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 16px;
  }

  :is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderRole__detail,
  :is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderRole__summary {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  :is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderDelivery .ec-imageGrid {
    gap: 16px;
  }

  :is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderDelivery .ec-imageGrid__content {
    min-width: 0;
  }

  :is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderOrder {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  :is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderOrder .ec-definitions {
    min-width: 0;
  }

  :is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderDelivery {
    width: 100%;
    min-width: 0;
  }

  :is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderPayment,
  :is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderConfirm,
  :is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderMails,
  :is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) :is(.ec-orderDelivery, .ec-orderAccount, .ec-orderPayment, .ec-orderCoupon, .ec-orderConfirm, .ec-orderMails) .ec-rectHeading {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  :is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderDelivery__address,
  :is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderDelivery .ec-definitions--soft,
  :is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderPayment p,
  :is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderPayment__details,
  :is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-orderPayment .ec-definitions--soft {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  :is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-totalBox,
  :is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-totalBox .ec-blockBtn--action {
    box-sizing: border-box;
    width: 100%;
  }

  :is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-totalBox__total {
    flex-wrap: wrap;
  }

  :is(body#page_mypage_history, body#page_shopping, body#page_shopping_confirm) .ec-totalBox__taxRate {
    overflow-wrap: anywhere;
  }
}

@media (width < 48em) {
  body#page_cart .ec-layoutRole__contents {
    padding-inline: 0;
  }

  body#page_cart .ec-cartRole {
    padding-inline: 0;
  }

  body#page_cart .ec-cartRole__progress,
  body#page_cart .ec-cartRole__totalText,
  body#page_cart .ec-cartRole__actions {
    padding-inline: 20px;
  }

  body#page_cart .ec-cartRole__totalText {
    margin-block: 32px 20px;
    line-height: 1.8;
  }

  body#page_cart .ec-cartTable {
    border-top: 1px solid rgba(28, 28, 28, 0.18);
  }

  body#page_cart .ec-cartHeader {
    display: none;
  }

  body#page_cart .ec-cartRow {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 16px;
    margin: 0;
    padding: 24px 20px;
    border-bottom: 1px solid rgba(28, 28, 28, 0.18);
    list-style: none;
  }

  body#page_cart .ec-cartRow__delColumn {
    grid-row: 1 / span 3;
  }

  body#page_cart .ec-cartRow__delColumn .ec-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
  }

  body#page_cart .ec-cartRow__delColumn .ec-icon img {
    width: 18px;
    height: 18px;
  }

  body#page_cart .ec-cartRow__contentColumn {
    display: flex;
    gap: 16px;
    min-width: 0;
    border-bottom: 0;
  }

  body#page_cart .ec-cartRow__img {
    flex: 0 0 96px;
  }

  body#page_cart .ec-cartRow__img img {
    display: block;
    width: 96px;
    height: 96px;
    object-fit: cover;
  }

  body#page_cart .ec-cartRow__summary {
    flex-grow: 1;
    min-width: 0;
  }

  body#page_cart .ec-cartRow__name {
    line-height: 1.7;
  }

  body#page_cart .ec-cartRow__name a {
    text-decoration: none;
  }

  body#page_cart .ec-cartRow__unitPrice,
  body#page_cart .ec-cartRow__amountSP,
  body#page_cart .ec-cartRow__sutbtotalSP {
    margin-top: 8px;
    letter-spacing: 0.06em;
  }

  body#page_cart .ec-cartRow__amountColumn,
  body#page_cart .ec-cartRow__subtotalColumn {
    grid-column: 2;
  }

  body#page_cart .ec-cartRow__amountColumn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    width: 100%;
    padding-bottom: 18px;
  }

  body#page_cart .ec-cartRow__amount,
  body#page_cart .ec-cartRow__sutbtotal {
    display: none;
  }

  body#page_cart .ec-cartRow__amountSP {
    margin-top: 0;
    margin-bottom: 0;
    white-space: nowrap;
  }

  body#page_cart .ec-cartRow__amountUpDown {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 0;
  }

  body#page_cart .ec-cartRole__progress {
    margin-top: 28px;
    line-height: 1.8;
  }

  body#page_cart .ec-cartRole__actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
  }

  body#page_cart .ec-cartRole__total {
    margin-bottom: 4px;
    font-size: 18px;
    letter-spacing: 0.08em;
  }

  body#page_cart .ec-cartRole__actions .ec-blockBtn--action,
  body#page_cart .ec-cartRole__actions .ec-blockBtn--cancel {
    max-width: none;
  }
}

@media (width >= 48em) {
  body#page_cart .ec-cartRole .ec-cartRole__cart {
    margin: 0;
  }
  body#page_cart .ec-cartRole .ec-cartRole__actions {
    margin-right: 0;
  }
}

.ec-blockBtn--action,
.ec-inlineBtn--action,
.ec-blockBtn--cancel,
.ec-inlineBtn--cancel,
.ec-blockBtn--cancel:disabled,
.ec-inlineBtn--cancel:disabled,
.ec-blockBtn--cancel.disabled,
.ec-inlineBtn--cancel.disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 64px;
  max-width: 350px;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: center;
  text-decoration: none !important;
  border-radius: 0;
  -webkit-tap-highlight-color: transparent;
}

.ec-inlineBtn--action,
.ec-inlineBtn--cancel {
  max-width: 240px;
}

.ec-blockBtn--action,
.ec-inlineBtn--action {
  background: url("https://chillplus.jp/images/bg-button.webp") #1c1c1c !important;
  background-image: url("https://chillplus.jp/images/bg-button.webp") !important;
  background-size: auto 100% !important;
  background-repeat: no-repeat !important;
  background-position: right 50% center !important;
  border-color: #1c1c1c !important;
  color: #fff !important;
  -webkit-appearance: none;
  appearance: none;
}

.ec-blockBtn--action:disabled,
.ec-blockBtn--action.disabled,
.ec-blockBtn--action:disabled:active,
.ec-blockBtn--action.disabled:active,
.ec-blockBtn--action:disabled:focus,
.ec-blockBtn--action.disabled:focus,
.ec-blockBtn--action:disabled:focus-visible,
.ec-blockBtn--action.disabled:focus-visible,
.ec-blockBtn--action:disabled.focus,
.ec-blockBtn--action.disabled.focus {
  background: #d9d9d9 !important;
  background-image: none !important;
  border-color: #d9d9d9 !important;
  color: #1c1c1c !important;
  opacity: 1 !important;
}

.ec-blockBtn--action:active,
.ec-inlineBtn--action:active,
.ec-blockBtn--action:focus,
.ec-inlineBtn--action:focus,
.ec-blockBtn--action:focus-visible,
.ec-inlineBtn--action:focus-visible,
.ec-blockBtn--action.focus,
.ec-inlineBtn--action.focus,
.ec-blockBtn--action.active,
.ec-inlineBtn--action.active,
.ec-blockBtn--action:active:focus,
.ec-inlineBtn--action:active:focus,
.ec-blockBtn--action.active:focus,
.ec-inlineBtn--action.active:focus {
  background: url("https://chillplus.jp/images/bg-button.webp") #1c1c1c !important;
  background-image: url("https://chillplus.jp/images/bg-button.webp") !important;
  background-repeat: no-repeat !important;
  background-position: right 50% center !important;
  border-color: #1c1c1c !important;
  color: #fff !important;
  background-size: auto 150% !important;
  box-shadow: none !important;
  outline: none !important;
  opacity: 0.8;
}

.ec-blockBtn--cancel,
.ec-inlineBtn--cancel,
.ec-blockBtn--cancel:disabled,
.ec-inlineBtn--cancel:disabled,
.ec-blockBtn--cancel.disabled,
.ec-inlineBtn--cancel.disabled {
  background-color: rgba(255, 255, 255, 0.6);
  border: solid 1px #1c1c1c;
  color: #1c1c1c !important;
  opacity: 1;
}

.ec-blockBtn--cancel:active,
.ec-inlineBtn--cancel:active,
.ec-blockBtn--cancel:focus,
.ec-inlineBtn--cancel:focus,
.ec-blockBtn--cancel:focus-visible,
.ec-inlineBtn--cancel:focus-visible,
.ec-blockBtn--cancel.focus,
.ec-inlineBtn--cancel.focus {
  background-color: #f2f1ef !important;
  border-color: #1c1c1c !important;
  color: #1c1c1c !important;
  box-shadow: none !important;
  outline: none !important;
}

.ec-alert-warning {
  background-color: #74aeb0;
}

/*
 特商法
 */

body#page_help_tradelaw .ec-layoutRole__contents {
  padding: 157px 24px 120px;
}

body#page_help_tradelaw .ec-layoutRole__main,
body#page_help_tradelaw .ec-role,
body#page_help_tradelaw .ec-off1Grid,
body#page_help_tradelaw .ec-off1Grid__cell {
  width: 100%;
  max-width: 870px;
  margin-inline: auto;
}

body#page_help_tradelaw .ec-pageHeader {
  margin: 0 0 40px;
  padding: 0;
  border: 0;
}

body#page_help_tradelaw .ec-pageHeader h1 {
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--chillplus-black);
  font-size: 13.4px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.2em;
}

body#page_help_tradelaw .ec-pageHeader h1::before {
  content: "Legal notice";
  display: block;
  margin-bottom: 2px;
  font-family: "Manrope", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: -0.025em;
}

body#page_help_tradelaw .ec-borderedDefs {
  border: 0;
  border-top: 1px solid #b4b4b4;
  gap: 0;
}

body#page_help_tradelaw .ec-borderedDefs dl {
  align-items: start;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  margin: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid #b4b4b4;
}

body#page_help_tradelaw .ec-borderedDefs dl:first-child {
  border-top: 0;
}

body#page_help_tradelaw .ec-borderedDefs dt,
body#page_help_tradelaw .ec-borderedDefs dd {
  width: auto;
  margin: 0;
  padding: 15px 12px;
  color: var(--chillplus-black);
  font-size: 13.4px;
  line-height: 1.6;
  letter-spacing: 0.2em;
}

body#page_help_tradelaw .ec-borderedDefs dt {
  padding-left: 0;
  font-weight: 500;
}

body#page_help_tradelaw .ec-borderedDefs dt::before {
  content: none;
}

body#page_help_tradelaw .ec-borderedDefs dd {
  display: block;
  padding-right: 0;
  font-weight: 400;
  word-break: break-word;
}

body#page_help_tradelaw .ec-borderedDefs .ec-label {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

@media (width < 48em) {
  body#page_help_tradelaw .ec-layoutRole__contents {
    padding: 96px 20px 80px;
  }

  body#page_help_tradelaw .ec-pageHeader {
    margin-bottom: 32px;
    padding-bottom: 0;
  }

  body#page_help_tradelaw .ec-pageHeader h1 {
    font-size: 13px;
    line-height: 1.8;
  }

  body#page_help_tradelaw .ec-pageHeader h1::before {
    margin-bottom: 0;
    font-size: 31px;
    line-height: 1.55;
  }

  body#page_help_tradelaw .ec-borderedDefs dl {
    grid-template-columns: 1fr;
    row-gap: 8px;
    padding: 18px 0;
  }

  body#page_help_tradelaw .ec-borderedDefs dt,
  body#page_help_tradelaw .ec-borderedDefs dd {
    padding: 0;
    font-size: 13px;
    line-height: 1.8;
  }
}

@media (hover: hover) {
  .l-header__snsButton .c-button,
  .l-footer__button .c-button,
  .ec-blockBtn--action,
  .ec-inlineBtn--action {
    transition:
      opacity 0.3s ease-in-out,
      background-size 0.3s ease-in-out;
  }

  .l-header__snsButton .c-button:hover,
  .l-footer__button .c-button:hover,
  .ec-blockBtn--action:hover,
  .ec-inlineBtn--action:hover {
    background-color: #1c1c1c !important;
    border-color: #1c1c1c !important;
    color: #fff !important;
    background-size: auto 150%;
    opacity: 0.8;
  }

  .ec-blockBtn--action:disabled:hover,
  .ec-blockBtn--action.disabled:hover {
    background: #d9d9d9 !important;
    border-color: #d9d9d9 !important;
    color: #1c1c1c !important;
    opacity: 1 !important;
  }

  .ec-blockBtn--cancel,
  .ec-inlineBtn--cancel,
  .ec-blockBtn--cancel:disabled,
  .ec-inlineBtn--cancel:disabled,
  .ec-blockBtn--cancel.disabled,
  .ec-inlineBtn--cancel.disabled {
    transition: background-color 0.3s ease-in-out;
  }

  .ec-blockBtn--cancel:hover,
  .ec-inlineBtn--cancel:hover,
  .ec-blockBtn--cancel:disabled:hover,
  .ec-inlineBtn--cancel:disabled:hover,
  .ec-blockBtn--cancel.disabled:hover,
  .ec-inlineBtn--cancel.disabled:hover {
    background-color: #f2f1ef;
    border-color: #1c1c1c;
    color: #1c1c1c !important;
  }
}
