@charset "UTF-8";
@media only screen and (min-width: 768px) {
  html {
    font-size: 1.1428571429vw;
  }
}
@media only screen and (min-width: 1400px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  background: #fff;
}
body.is-active {
  overflow: hidden;
}

main {
  padding-top: 3rem;
}
@media only screen and (min-width: 768px) {
  main {
    padding-top: 5rem;
  }
}

.en {
  font-family: "Roboto", sans-serif;
}

@media only screen and (min-width: 768px) {
  .only-sp {
    display: none !important;
  }
}

@media only screen and (max-width: 767px) {
  .only-pc {
    display: none !important;
  }
}

.ec-layoutRole .ec-layoutRole__contents {
  max-width: 87.5rem;
}

.c-img {
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 0;
}
.c-img.--contain {
  overflow: visible;
}
.c-img.--contain img {
  object-fit: contain;
}
.c-img img {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.c-inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  max-width: 87.5rem;
}
@media only screen and (min-width: 768px) {
  .c-inner {
    padding: 0 3.125rem;
  }
}
.c-inner.--sm {
  max-width: 56.875rem;
}

.c-container {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.c-container.--center {
  display: flex;
  align-items: center;
  height: 100%;
}
@media only screen and (min-width: 768px) {
  .c-container {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.c-form__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
@media only screen and (min-width: 768px) {
  .c-form__list {
    gap: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
.c-form__item.is-error input[type=text],
.c-form__item.is-error input[type=email],
.c-form__item.is-error input[type=password] {
  border-color: #FF0000;
}
.c-form__item.is-error .c-form__caution {
  display: block;
}
.c-form__item-label {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4285714286;
}
@media only screen and (min-width: 768px) {
  .c-form__item-label {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
  }
}
.c-form__item-field .ec-errorMessage {
  color: #FF0000;
  font-size: 0.625rem;
  line-height: 1.4;
  margin-top: 0.25rem;
}
@media only screen and (min-width: 768px) {
  .c-form__item-field .ec-errorMessage {
    font-size: 0.875rem;
    line-height: 1.5714285714;
    margin-top: 0.5rem;
  }
}
.c-form__item-field input[type=text],
.c-form__item-field input[type=email],
.c-form__item-field input[type=password] {
  width: 100%;
  min-height: 40px;
  border: 1px solid #D3D3D3;
  background: #FFFFFF;
  border-radius: 2px;
  font-size: 14px;
  line-height: 1.4285714286;
  font-weight: 400;
  padding: 9px 11px;
}
.c-form__item-field input[type=text]:placeholder,
.c-form__item-field input[type=email]:placeholder,
.c-form__item-field input[type=password]:placeholder {
  color: #BABABA;
}
@media only screen and (min-width: 768px) {
  .c-form__item-field input[type=text],
  .c-form__item-field input[type=email],
  .c-form__item-field input[type=password] {
    font-size: 1rem;
    line-height: 1.5;
    padding: 0.75rem 0.9375rem;
    min-height: 3.125rem;
  }
}
.c-form__item-caution {
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 0.25rem;
}
@media only screen and (min-width: 768px) {
  .c-form__item-caution {
    font-size: 0.875rem;
    line-height: 1.4285714286;
    margin-top: 0.5rem;
  }
}
.c-form__hr {
  margin: 0.75rem 0;
  width: 100%;
  border: none;
  height: 1px;
  background: #E3E3E3;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .c-form__hr {
    margin: 1.25rem 0;
  }
}
.c-form__checkbox .form-check {
  position: relative;
  padding-left: 1.5625rem;
  margin: 0;
  min-height: 1.0625rem;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .c-form__checkbox .form-check {
    padding-left: 2.25rem;
  }
}
.c-form__checkbox input[type=checkbox] {
  cursor: pointer;
  background: white;
  border: 1px solid #D3D3D3;
  width: 1.0625rem;
  height: 1.0625rem;
  border-radius: 0.125rem;
  margin: 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (min-width: 768px) {
  .c-form__checkbox input[type=checkbox] {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.c-form__checkbox input[type=checkbox]:checked {
  background: #B43333 url(../img/common/check.svg) no-repeat center/0.875rem auto;
}
@media only screen and (min-width: 768px) {
  .c-form__checkbox input[type=checkbox]:checked {
    background-size: 1.25rem auto;
  }
}
.c-form__checkbox label {
  cursor: pointer;
  font-size: 0.75rem;
  line-height: 1.4166666667;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .c-form__checkbox label {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.c-form__error {
  border: 1px solid #B43333;
  border-radius: 0.125rem;
  background: #FFEDED;
  margin-bottom: 1.25rem;
  padding: 0.6875rem;
  color: #B43333;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4285714286;
  letter-spacing: -0.01em;
}
@media only screen and (min-width: 768px) {
  .c-form__error {
    letter-spacing: 0;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    padding: 1.1875rem;
  }
}
.c-form__caution {
  font-size: 0.625rem;
  line-height: 1.5;
  font-weight: 400;
  color: #FF0000;
  margin-top: 0.25rem;
  display: none;
}
@media only screen and (min-width: 768px) {
  .c-form__caution {
    font-size: 0.875rem;
    line-height: 1.4285714286;
    margin-top: 0.5rem;
  }
}
.c-form__container {
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .c-form__container {
    max-width: 50.625rem;
  }
}
.c-form__bottom {
  margin-top: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .c-form__bottom {
    margin-top: 2.5rem;
  }
}
.c-form__bottom-txt {
  font-size: 0.75rem;
  line-height: 1.6666666667;
  text-align: center;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .c-form__bottom-txt {
    font-size: 1rem;
    line-height: 1.75;
  }
}
.c-form__bottom-txt a {
  text-decoration: underline;
  color: #0089FF;
  transition: 0.3s ease-out;
  transition-property: opacity;
}
@media (hover: hover) {
  .c-form__bottom-txt a:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .c-form__bottom-txt a:active {
    opacity: 0.7;
  }
}
.c-form__input.error input[type=text],
.c-form__input.error input[type=email],
.c-form__input.error input[type=password],
.c-form__input.error textarea,
.c-form__input.error select {
  border: 1px solid #FF0000;
}

.c-btn {
  appearance: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 0.125rem;
  background: #B43333;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4285714286;
  min-height: 2.5rem;
  padding: 0;
  margin: 0;
  height: auto;
  width: 100%;
  transition: 0.3s ease-out;
  transition-property: opacity;
}
@media (hover: hover) {
  .c-btn:hover {
    opacity: 0.7;
    background: #B43333;
    border-color: #B43333;
  }
}
@media (hover: none) {
  .c-btn:active {
    opacity: 0.7;
    background: #B43333;
    border-color: #B43333;
  }
}
@media only screen and (min-width: 768px) {
  .c-btn {
    max-width: 26.875rem;
    min-height: 3.125rem;
    font-size: 1.125rem;
    line-height: 1.4444444444;
  }
}
.c-btn.--black {
  background: #3C3C3C;
  color: #fff;
}
.c-btn.--half {
  width: calc(50% - 0.375rem);
}
@media only screen and (min-width: 768px) {
  .c-btn.--half {
    width: 100%;
  }
}
.c-btn.--outlined {
  background: transparent;
  border: 1px solid #3C3C3C;
  color: #3C3C3C;
}
.c-btn.--print {
  max-width: 9.625rem;
  min-height: 1.875rem;
  font-size: 0.75rem;
  line-height: 1.4166666667;
}
@media only screen and (min-width: 768px) {
  .c-btn.--print {
    max-width: 22.9375rem;
    min-height: 3.125rem;
    font-size: 1.125rem;
    line-height: 1.4444444444;
  }
}
.c-btn.--sm {
  max-width: 10.375rem;
}
.c-btn.--mid {
  min-height: 1.875rem;
  font-size: 0.75rem;
  line-height: 1.4166666667;
}
@media only screen and (min-width: 768px) {
  .c-btn.--mid {
    font-size: 1.125rem;
    line-height: 1.4444444444;
    min-height: 3.125rem;
  }
}
.c-btn.--cart {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
@media only screen and (min-width: 768px) {
  .c-btn.--cart {
    gap: 0.5rem;
  }
}
.c-btn.--cart .cart-icon {
  aspect-ratio: 14/17;
  width: 0.875rem;
  flex: 0 0 auto;
  background: url(../img/common/icon-cart-white.svg) no-repeat center center/contain;
}
@media only screen and (min-width: 768px) {
  .c-btn.--cart .cart-icon {
    width: 1.25rem;
    aspect-ratio: 20/26;
    background-site: 100% auto;
  }
}
.c-btn.--xs {
  font-size: 0.75rem;
  line-height: 1.4166666667;
  padding: 0.1875rem 0.625rem 0.25rem;
  min-height: 1.5rem;
  width: auto;
  min-width: 5rem;
}
@media only screen and (min-width: 768px) {
  .c-btn.--xs {
    font-size: 0.875rem;
    line-height: 1.4285714286;
    padding: 0.25rem 0.75rem 0.3125rem;
    min-height: 1.8125rem;
    min-width: 5.875rem;
  }
}
.c-btn.--add {
  display: flex;
  align-items: center;
  gap: 0.1875rem;
}
.c-btn.--add .add-icon {
  width: 0.8125rem;
  aspect-ratio: 1/1;
  border: 1px solid #fff;
  position: relative;
  border-radius: 50%;
}
.c-btn.--add .add-icon::before, .c-btn.--add .add-icon::after {
  content: "";
  width: 0.375rem;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
}
.c-btn.--add .add-icon::after {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.c-btn .arrow {
  position: absolute;
  top: 50%;
  right: 0.75rem;
  aspect-ratio: 4/6;
  width: 0.25rem;
  background: url(../img/common/btn-arrow-white.svg) no-repeat center center/contain;
  transform: translateY(-50%);
}
@media only screen and (min-width: 768px) {
  .c-btn .arrow {
    right: 1rem;
    aspect-ratio: 6/8;
    width: 0.375rem;
    background: url(../img/common/btn-arrow-white.svg) no-repeat center center/contain;
  }
}
.c-btn__box {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
@media only screen and (min-width: 768px) {
  .c-btn__box {
    gap: 1.5rem 2.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-btn__box.--row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    direction: rtl;
  }
}
.c-btn__box.--mb {
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .c-btn__box.--mb {
    margin-bottom: 2rem q;
  }
}
.c-btn__box.--mt {
  margin-top: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .c-btn__box.--mt {
    margin-top: 2rem q;
  }
}
.c-btn__wrapper {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .c-btn__wrapper {
    max-width: 26.875rem;
  }
}

.c-title {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 auto 1.5rem;
}
@media only screen and (min-width: 768px) {
  .c-title {
    font-size: 1.75rem;
    line-height: 1.4285714286;
    margin-bottom: 2.5rem;
  }
}

.c-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4285714286;
}
@media only screen and (min-width: 768px) {
  .c-text {
    font-size: 1.5rem;
    line-height: 1.4583333333;
  }
}
.c-text a {
  text-decoration: underline;
  color: #0089FF;
  transition: 0.3s ease-out;
  transition-property: opacity;
}
@media (hover: hover) {
  .c-text a:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .c-text a:active {
    opacity: 0.7;
  }
}
.c-text.--sm {
  font-size: 0.75rem;
  line-height: 1.8333333333;
}
@media only screen and (min-width: 768px) {
  .c-text.--sm {
    font-size: 1.125rem;
    line-height: 1.7777777778;
  }
}
.c-text.--xs {
  font-size: 0.625rem;
  line-height: 1.5;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  .c-text.--xs {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}
.c-text.--center {
  text-align: center;
}
.c-text.--mt {
  margin-top: 0.5rem;
}
@media only screen and (min-width: 768px) {
  .c-text.--mt {
    margin-top: 0.75rem;
  }
}
.c-text.--margin {
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .c-text.--margin {
    margin-bottom: 2rem;
  }
}
.c-text.--caution {
  color: #B43333;
}

.c-box {
  background: #F8F8F8;
  border: 1px solid #F2F2F2;
  border-radius: 0.25rem;
  padding: 0.6875rem;
}
@media only screen and (min-width: 768px) {
  .c-box {
    padding: 1.6875rem;
  }
}

.c-history__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media only screen and (min-width: 768px) {
  .c-history__list {
    gap: 1.25rem;
  }
}
.c-history__item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .c-history__item {
    gap: 2rem;
  }
}
.c-history__info {
  position: relative;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  gap: 0.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.c-history__info.--border {
  padding-bottom: 0;
  margin-bottom: 0;
}
.c-history__info.--border::before {
  display: none;
}
@media only screen and (min-width: 768px) {
  .c-history__info {
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    gap: 0.75rem;
  }
}
.c-history__info::before {
  content: "";
  width: 100%;
  height: 4px;
  background: radial-gradient(circle at center, #000 1px, transparent 1px);
  background-size: 4px 4px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
}
.c-history__date {
  font-size: 0.75rem;
  line-height: 1.4166666667;
  font-weight: 400;
  color: #7C7C7C;
}
@media only screen and (min-width: 768px) {
  .c-history__date {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}
.c-history__number, .c-history__status {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .c-history__number, .c-history__status {
    font-size: 1.25rem;
    line-height: 1.45;
  }
}
.c-history__point {
  font-size: 0.75rem;
  line-height: 1.4166666667;
  font-weight: 500;
}
.c-history__print {
  position: relative;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
}
@media only screen and (min-width: 768px) {
  .c-history__print {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }
}
.c-history__print::before {
  content: "";
  width: 100%;
  height: 4px;
  background: radial-gradient(circle at center, #000 1px, transparent 1px);
  background-size: 4px 4px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
}

.c-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
}
.c-header::after {
  content: "";
  height: 1px;
  background: #E3E3E3;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
}
.c-header__contents {
  width: 100%;
  margin: 0 auto;
  max-width: 113.75rem;
  padding: 0 1rem;
  height: 3rem;
  display: flex;
  align-items: center;
  padding-right: 0;
}
@media only screen and (min-width: 768px) {
  .c-header__contents {
    padding: 0 3.125rem;
    height: 5rem;
  }
}
.c-header__logo {
  margin-right: 1rem;
  aspect-ratio: 119/24;
  width: 7.4375rem;
}
@media only screen and (min-width: 768px) {
  .c-header__logo {
    width: 12.0625rem;
  }
}
.c-header__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 3px;
  gap: 0.25rem;
  width: 5rem;
  border-left: 1px solid #E3E3E3;
  color: inherit;
  transition: 0.3s ease-out;
  transition-property: opacity;
}
@media (hover: hover) {
  .c-header__btn:hover {
    opacity: 0.7;
  }
  .c-header__btn:hover .txt {
    color: #B43333;
  }
}
@media (hover: none) {
  .c-header__btn:active {
    opacity: 0.7;
  }
  .c-header__btn:active .txt {
    color: #B43333;
  }
}
@media only screen and (min-width: 768px) {
  .c-header__btn {
    width: auto;
    border: none;
    gap: 0.5625rem;
    padding-top: 0;
  }
}
.c-header__btn .icon {
  aspect-ratio: 23/18;
  width: 1.4375rem;
  position: relative;
  overflow: visible;
}
.c-header__btn .icon .num {
  position: absolute;
  top: 0;
  right: -0.125rem;
  transform: translate(100%, 0);
  background: #FFEB00;
  color: #B43333;
  font-size: 0.6875rem;
  line-height: 1;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  padding-bottom: 0.125rem;
}
@media only screen and (min-width: 768px) {
  .c-header__btn .icon {
    aspect-ratio: 28/22;
    width: 1.75rem;
  }
}
.c-header__btn .txt {
  font-size: 0.625rem;
  line-height: 1.5;
  font-weight: 500;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) {
  .c-header__btn .txt {
    font-size: 0.75rem;
    line-height: 1.4166666667;
  }
}
.c-header__btn-box {
  display: flex;
  margin-left: auto;
}
@media only screen and (min-width: 768px) {
  .c-header__btn-box {
    gap: 2.5rem;
  }
}
.c-header__menu {
  appearance: none;
  border: none;
  background: #B43333;
  width: 3rem;
  aspect-ratio: 1/1;
  position: relative;
  color: inherit;
  cursor: pointer;
}
.c-header__menu.is-active .bar {
  background: transparent;
}
.c-header__menu.is-active .bar::before, .c-header__menu.is-active .bar::after {
  top: 0;
}
.c-header__menu.is-active .bar::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-header__menu.is-active .bar::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media only screen and (min-width: 768px) {
  .c-header__menu {
    display: none;
  }
}
.c-header__menu .bar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.625rem;
  height: 0.125rem;
  background: #fff;
  transition: 0.3s ease-out;
}
.c-header__menu .bar::before, .c-header__menu .bar::after {
  content: "";
  position: absolute;
  width: 1.625rem;
  height: 0.125rem;
  background: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s ease-out;
}
.c-header__menu .bar::before {
  top: -0.4375rem;
}
.c-header__menu .bar::after {
  top: 0.4375rem;
}
.c-header__menu {
  cursor: pointer;
  aspect-ratio: 1/1;
  flex: 0 0 auto;
  width: 3rem;
  background: #B43333;
  transition: 0.3s ease-out;
  transition-property: opacity;
  position: relative;
}
@media (hover: hover) {
  .c-header__menu:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .c-header__menu:active {
    opacity: 0.7;
  }
}
.c-header__menu .bar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.625rem;
  height: 0.125rem;
  background: #fff;
}
.c-header__menu .bar::before, .c-header__menu .bar::after {
  content: "";
  width: 1.625rem;
  height: 0.125rem;
  background: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s ease-out;
}
.c-header__menu .bar::before {
  top: -0.4375rem;
}
.c-header__menu .bar::after {
  top: 0.4375rem;
}

.c-nav {
  position: fixed;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #fff;
  visibility: visible;
  opacity: 1;
  padding: 4.5rem 1rem;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-out;
  transition-property: opacity, visibility;
}
.c-nav.is-active {
  opacity: 1;
  visibility: visible;
}
@media only screen and (min-width: 768px) {
  .c-nav {
    background: transparent;
    border: none;
    visibility: visible;
    opacity: 1;
    position: static;
    top: auto;
    margin-left: 5rem;
    padding: 0;
    display: flex;
    align-items: center;
    z-index: 1;
  }
}
.c-nav__top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .c-nav__top {
    width: auto;
    flex-direction: row;
    align-items: flex-end;
    margin: 0;
    margin-right: 1.5rem;
  }
}
.c-nav__top-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media only screen and (min-width: 768px) {
  .c-nav__top-block {
    width: 12.5rem;
  }
}
.c-nav__top-txt {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4166666667;
}
@media only screen and (min-width: 768px) {
  .c-nav__top-txt {
    display: none;
  }
}
.c-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .c-nav__list {
    flex-direction: row;
  }
}
.c-nav__item {
  width: 100%;
  flex: 0 0 auto;
  position: relative;
}
.c-nav__item::before, .c-nav__item::after {
  content: "";
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
  background: #E3E3E3;
}
@media only screen and (min-width: 768px) {
  .c-nav__item::before, .c-nav__item::after {
    left: auto;
    right: auto;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
  }
}
.c-nav__item::before {
  top: 0;
}
@media only screen and (min-width: 768px) {
  .c-nav__item::before {
    left: 0;
  }
}
.c-nav__item::after {
  bottom: 0;
  display: none;
}
@media only screen and (min-width: 768px) {
  .c-nav__item::after {
    right: 0;
  }
}
.c-nav__item:last-child::after {
  display: block;
}
@media only screen and (min-width: 768px) {
  .c-nav__item {
    width: auto;
  }
}
.c-nav__link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  color: inherit;
  padding: 1rem 0;
  transition: 0.3s ease-out;
  transition-property: opacity;
}
@media (hover: hover) {
  .c-nav__link:hover {
    opacity: 0.7;
  }
  .c-nav__link:hover .txt {
    color: #B43333;
  }
}
@media (hover: none) {
  .c-nav__link:active {
    opacity: 0.7;
  }
  .c-nav__link:active .txt {
    color: #B43333;
  }
}
@media only screen and (min-width: 768px) {
  .c-nav__link {
    gap: 0.5rem;
    height: 1.5rem;
    padding: 0 1.5rem;
  }
}
.c-nav__link .icon {
  aspect-ratio: 1/1;
  width: 1.25rem;
  flex: 0 0 auto;
}
@media only screen and (min-width: 768px) {
  .c-nav__link .icon {
    aspect-ratio: 16/24;
    width: 1rem;
  }
}
.c-nav__link .txt {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4285714286;
}
@media only screen and (min-width: 768px) {
  .c-nav__link .txt {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.c-nav__bottom {
  margin-top: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .c-nav__bottom {
    margin-top: 0;
    margin-left: 1.5rem;
    width: 12.5rem;
    flex: 0 0 auto;
  }
}
.c-nav__sub {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  margin-top: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .c-nav__sub {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .c-nav__sub {
    flex-direction: row;
    gap: 2.5rem;
  }
}
.c-nav__sub-item {
  font-size: 0.75rem;
  line-height: 1.4166666667;
}
@media only screen and (min-width: 768px) {
  .c-nav__sub-item {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.4285714286;
  }
}
.c-nav__sub-item a {
  color: #3C3C3C;
  text-decoration: underline;
  font-weight: 400;
  transition: 0.3s ease-out;
  transition-property: opacity;
}
@media (hover: hover) {
  .c-nav__sub-item a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
@media (hover: none) {
  .c-nav__sub-item a:active {
    opacity: 0.7;
    text-decoration: none;
  }
}

.product_page .c-footer {
  padding-top: 0;
  padding-bottom: 9.375rem;
  border-top: none;
}
@media only screen and (min-width: 768px) {
  .product_page .c-footer {
    padding: 2.5rem 0;
  }
}
.product_page .c-footer__contents {
  display: none;
}
@media only screen and (min-width: 768px) {
  .product_page .c-footer__contents {
    display: flex;
  }
}

.c-footer {
  border-top: 0.375rem solid #F8F8F8;
  padding: 1.5rem 0;
}
@media only screen and (min-width: 768px) {
  .c-footer {
    padding: 2.5rem 0;
    border: none;
    background: #F8F8F8;
  }
}
.c-footer__copyright {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  line-height: 1.4166666667;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  .c-footer__copyright {
    margin-top: 0;
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}
@media only screen and (min-width: 768px) {
  .c-footer__contents {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.c-footer__nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .c-footer__nav {
    flex-direction: row;
    gap: 2.5rem;
  }
}
.c-footer__nav-item {
  font-size: 0.75rem;
  line-height: 1.4166666667;
}
@media only screen and (min-width: 768px) {
  .c-footer__nav-item {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.4285714286;
  }
}
.c-footer__nav-item a {
  color: #3C3C3C;
  text-decoration: underline;
  font-weight: 400;
  transition: 0.3s ease-out;
  transition-property: opacity;
}
@media (hover: hover) {
  .c-footer__nav-item a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
@media (hover: none) {
  .c-footer__nav-item a:active {
    opacity: 0.7;
    text-decoration: none;
  }
}

.c-ranking {
  border-top: 0.375rem solid #F8F8F8;
  padding: 1.5rem 0;
}
@media only screen and (min-width: 768px) {
  .c-ranking {
    padding: 2.5rem 0;
  }
}
.c-ranking__title {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .c-ranking__title {
    margin-bottom: 1.5rem;
  }
}
.c-ranking__title::before {
  content: "";
  width: 3.75rem;
  height: 0.25rem;
  clip-path: polygon(3.333% 0, 100% 0%, 96.667% 100%, 0% 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  background: #B43333;
}
@media only screen and (min-width: 768px) {
  .c-ranking__list {
    display: flex !important;
    gap: 1.5625rem;
  }
}
.c-ranking__item {
  color: inherit;
}
@media only screen and (min-width: 768px) {
  .c-ranking__item {
    width: 12.25rem;
  }
}
.c-ranking__number {
  position: absolute;
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.16);
  border-radius: 50%;
  position: absolute;
  left: 0.25rem;
  top: 0.25rem;
  background: #fff;
  z-index: 1;
  width: 1.5rem;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3571428571;
  letter-spacing: 0;
  color: #B43333;
  padding-bottom: 1px;
}
@media only screen and (min-width: 768px) {
  .c-ranking__number {
    left: 0.75rem;
    top: 0.75rem;
  }
}
.c-ranking__img {
  aspect-ratio: 1/1;
  width: 100%;
  margin-bottom: 0.5rem;
}
@media only screen and (min-width: 768px) {
  .c-ranking__img {
    margin-bottom: 1rem;
  }
}
.c-ranking__name {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  margin-bottom: 0.375rem;
}
@media only screen and (min-width: 768px) {
  .c-ranking__name {
    font-size: 0.875rem;
    line-height: 1.5714285714;
    margin-bottom: 0.625rem;
  }
}
.c-ranking__price {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  line-height: 1.4166666667;
}
.c-ranking__price .num {
  color: #B43333;
  font-size: 0.875rem;
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .c-ranking__price .num {
    font-size: 1.25rem;
  }
}

.c-contact {
  max-width: 50.625rem;
  margin: 0 auto;
}
.c-contact__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .c-contact__list {
    gap: 1rem;
    margin-bottom: 2rem;
  }
}
.c-contact__item-label {
  display: flex;
  align-items: center;
  font-weight: 500;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  margin-bottom: 0.5rem;
}
@media only screen and (min-width: 768px) {
  .c-contact__item-label {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    gap: 1.25rem;
  }
}
.c-contact__item-label .ec-required {
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.4166666667;
  vertical-align: 0;
  margin: 0;
  color: #FF0000;
}
@media only screen and (min-width: 768px) {
  .c-contact__item-label .ec-required {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}
.c-contact__item-field .ec-errorMessage {
  color: #FF0000;
  font-size: 0.625rem;
  line-height: 1.4;
  margin-top: 0.25rem;
}
@media only screen and (min-width: 768px) {
  .c-contact__item-field .ec-errorMessage {
    font-size: 0.875rem;
    line-height: 1.5714285714;
    margin-top: 0.5rem;
  }
}
.c-contact__item-field input[type=text],
.c-contact__item-field input[type=email],
.c-contact__item-field input[type=password],
.c-contact__item-field textarea,
.c-contact__item-field select {
  display: block;
  margin: 0;
  width: 100%;
  min-height: 40px;
  border: 1px solid #D3D3D3;
  background: #FFFFFF;
  border-radius: 2px;
  font-size: 14px;
  line-height: 1.4285714286;
  font-weight: 400;
  padding: 9px 11px;
  appearance: none;
}
.c-contact__item-field input[type=text]:placeholder,
.c-contact__item-field input[type=email]:placeholder,
.c-contact__item-field input[type=password]:placeholder,
.c-contact__item-field textarea:placeholder,
.c-contact__item-field select:placeholder {
  color: #BABABA;
}
@media only screen and (min-width: 768px) {
  .c-contact__item-field input[type=text],
  .c-contact__item-field input[type=email],
  .c-contact__item-field input[type=password],
  .c-contact__item-field textarea,
  .c-contact__item-field select {
    font-size: 1rem;
    line-height: 1.5;
    padding: 0.75rem 0.9375rem;
    min-height: 3.125rem;
  }
}
.c-contact__item-field textarea {
  height: 14.875rem;
  resize: none;
}
@media only screen and (min-width: 768px) {
  .c-contact__item-field textarea {
    height: 17.5rem;
  }
}
.c-contact__item-field select {
  background: #fff url(../img/common/select.svg) no-repeat right 0.75rem center/0.375rem auto;
  color: #BABABA;
}
@media only screen and (min-width: 768px) {
  .c-contact__item-field select {
    background: #fff url(../img/common/select.svg) no-repeat right 1rem center/0.5rem auto;
  }
}
.c-contact__item-field select.is-selected {
  color: #3C3C3C;
}
.c-contact__input.error input[type=text],
.c-contact__input.error input[type=email],
.c-contact__input.error input[type=password],
.c-contact__input.error textarea,
.c-contact__input.error select {
  border: 1px solid #FF0000;
}
.c-contact__caution {
  padding: 0;
  margin-top: 0.5rem;
  font-size: 0.625rem;
  line-height: 1.6;
  font-weight: 400;
  list-style: none;
}
@media only screen and (min-width: 768px) {
  .c-contact__caution {
    font-size: 0.875rem;
    line-height: 1.5714285714;
  }
}
.c-contact__caution-item {
  padding-left: 0.625rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .c-contact__caution-item {
    padding-left: 0.875rem;
  }
}
.c-contact__caution-item a {
  color: #0089FF;
  text-decoration: underline;
  transition: 0.3s ease-out;
  transition-property: opacity;
}
@media (hover: hover) {
  .c-contact__caution-item a:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .c-contact__caution-item a:active {
    opacity: 0.7;
  }
}
.c-contact__caution-item::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}
.c-contact__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-mypage {
  margin: 0 auto 1.5rem;
  max-width: 50.625rem;
}
@media only screen and (min-width: 768px) {
  .c-mypage {
    margin-bottom: 2.5rem;
  }
}
.c-mypage__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .c-mypage__list {
    gap: 0.9375rem;
  }
}
.c-mypage__item {
  flex: 0 0 auto;
  width: calc(33.3333333333% - 0.3333333333rem);
}
@media only screen and (min-width: 768px) {
  .c-mypage__item {
    width: calc(33.3333333333% - 0.625rem);
  }
}
.c-mypage__item.active .link {
  background-color: #B43333;
  border-color: #B43333;
}
.c-mypage__item.active .txt {
  color: #fff;
}
.c-mypage__item.active .icon.--history {
  background: url("../img/common/mypage-history-hover.svg") no-repeat center center/auto 100%;
}
.c-mypage__item.active .icon.--favorite {
  background: url("../img/common/mypage-favorite-hover.svg") no-repeat center center/auto 100%;
}
.c-mypage__item.active .icon.--top {
  background: url("../img/common/mypage-top-hover.svg") no-repeat center center/auto 100%;
}
.c-mypage__item.active .icon.--edit {
  background: url("../img/common/mypage-edit-hover.svg") no-repeat center center/auto 100%;
}
.c-mypage__item.active .icon.--delivery {
  background: url("../img/common/mypage-top-hover.svg") no-repeat center center/auto 100%;
}
.c-mypage__item .link {
  width: 100%;
  background: #fff;
  border: 1px solid #F2F2F2;
  border-radius: 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0.1875rem rgba(0, 0, 0, 0.06);
  padding: 0.4375rem;
  transition: 0.3s ease-out;
  transition-property: background, border, opacity;
}
@media (hover: hover) {
  .c-mypage__item .link:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .c-mypage__item .link:active {
    opacity: 0.7;
  }
}
@media only screen and (min-width: 768px) {
  .c-mypage__item .link {
    padding: 0.9375rem;
  }
}
.c-mypage__item .txt {
  font-size: 0.75rem;
  line-height: 1.4166666667;
  font-weight: 500;
  color: #3C3C3C;
  transition: 0.3s ease-out;
  transition-property: color;
}
@media only screen and (min-width: 768px) {
  .c-mypage__item .txt {
    font-size: 1.125rem;
    line-height: 1.4444444444;
  }
}
.c-mypage__item .icon {
  aspect-ratio: 20/22;
  width: 1.25rem;
  transition: 0.3s ease-out;
  transition-property: background;
}
@media only screen and (min-width: 768px) {
  .c-mypage__item .icon {
    aspect-ratio: 31/34;
    width: 1.9375rem;
  }
}
.c-mypage__item .icon.--history {
  background: url("../img/common/mypage-history.svg") no-repeat center center/contain;
}
.c-mypage__item .icon.--favorite {
  background: url("../img/common/mypage-favorite.svg") no-repeat center center/contain;
}
.c-mypage__item .icon.--top {
  background: url("../img/common/mypage-top.svg") no-repeat center center/contain;
}
.c-mypage__item .icon.--edit {
  background: url("../img/common/mypage-edit.svg") no-repeat center center/contain;
}
.c-mypage__item .icon.--delivery {
  background: url("../img/common/mypage-top.svg") no-repeat center center/contain;
}

.c-related__title {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .c-related__title {
    margin-bottom: 1.5rem;
  }
}
.c-related__title::before {
  content: "";
  width: 3.75rem;
  height: 0.25rem;
  clip-path: polygon(3.333% 0, 100% 0%, 96.667% 100%, 0% 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  background: #B43333;
}
.c-related__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  gap: 1rem;
}
@media only screen and (min-width: 768px) {
  .c-related__list {
    gap: 1.5625rem;
  }
}
.c-related__item {
  width: calc(50% - 0.5rem);
}
@media only screen and (min-width: 768px) {
  .c-related__item {
    width: 12.25rem;
  }
}
.c-related__link {
  color: inherit;
  width: 100%;
}
.c-related__img {
  aspect-ratio: 1/1;
  width: 100%;
  margin-bottom: 0.5rem;
}
@media only screen and (min-width: 768px) {
  .c-related__img {
    margin-bottom: 1rem;
  }
}
.c-related__name {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  margin-bottom: 0.375rem;
}
@media only screen and (min-width: 768px) {
  .c-related__name {
    font-size: 0.875rem;
    line-height: 1.5714285714;
    margin-bottom: 0.625rem;
  }
}
.c-related__price {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  line-height: 1.4166666667;
}
.c-related__price .num {
  color: #B43333;
  font-size: 0.875rem;
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .c-related__price .num {
    font-size: 1.25rem;
  }
}

.c-modal {
  z-index: 10;
  position: fixed;
  top: 2.5rem;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}
@media only screen and (min-width: 768px) {
  .c-modal {
    top: 5rem;
  }
}
.c-modal.is-active {
  opacity: 1;
  visibility: visible;
}
.c-modal__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: 1;
}
.c-modal__wrap {
  background: #fff;
  border: 1px solid #B43333;
  border-radius: 0.125rem;
  position: relative;
  z-index: 2;
  padding: 1.4375rem;
  text-align: center;
  width: 100%;
  max-width: 39.375rem;
}
@media only screen and (min-width: 768px) {
  .c-modal__wrap {
    padding: 1.9375rem;
  }
}
.c-modal__title {
  font-weight: 50;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 768px) {
  .c-modal__title {
    font-size: 1.25rem;
    line-height: 1.45;
    margin-bottom: 1.5rem;
  }
}
.c-modal__text {
  font-size: 0.75rem;
  line-height: 1.4166666667;
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .c-modal__text {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
  }
}
.c-modal__close {
  border: none;
  appearance: none !important;
  position: absolute;
  z-index: 3;
  top: -1px;
  right: -1px;
  background: #B43333;
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 0.125rem;
  cursor: pointer;
  transition: 0.3s ease-out;
  transition-property: opacity;
}
@media (hover: hover) {
  .c-modal__close:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .c-modal__close:active {
    opacity: 0.7;
  }
}
@media only screen and (min-width: 768px) {
  .c-modal__close {
    width: 2.75rem;
    height: 2.75rem;
  }
}
.c-modal__close::before, .c-modal__close::after {
  content: "";
  background: #fff;
  width: 1.125rem;
  height: 0.125rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 768px) {
  .c-modal__close::before, .c-modal__close::after {
    width: 1.625rem;
    height: 0.1875rem;
  }
}
.c-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.c-modal__btn {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0.9375rem;
}
@media only screen and (min-width: 768px) {
  .c-modal__btn {
    gap: 1.25rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-modal__btn .c-btn {
    max-width: 15rem;
  }
}
.c-modal__btn .c-btn.--cart .cart-icon {
  aspect-ratio: 16/20;
  width: 1rem;
  background: url(../img/common/icon-cart-white.svg) no-repeat center center/contain;
}
@media only screen and (min-width: 768px) {
  .c-modal__btn .c-btn.--cart .cart-icon {
    width: 1.25rem;
    aspect-ratio: 20/26;
    background-site: 100% auto;
  }
}

.c-progress {
  display: flex;
  gap: 1.125rem;
  margin-bottom: 1.5rem;
  list-style: none;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .c-progress {
    gap: 1.875rem;
    margin-bottom: 2.5rem;
  }
}
.c-progress__item {
  flex: 0 0 auto;
  position: relative;
  width: calc(25% - 0.84375rem);
  padding-top: 0.4375rem;
}
@media only screen and (min-width: 768px) {
  .c-progress__item {
    width: calc(25% - 1.40625rem);
    padding-top: 0.75rem;
  }
}
.c-progress__item:not(:last-child) .c-progress__label::after {
  content: "";
  height: 1px;
  background: #000000;
  width: 1.125rem;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(100%, -50%);
}
@media only screen and (min-width: 768px) {
  .c-progress__item:not(:last-child) .c-progress__label::after {
    width: 1.875rem;
  }
}
.c-progress__item.is-complete .c-progress__number {
  background: #B43333;
}
.c-progress__item.is-complete .c-progress__label {
  background: #FFEDED;
  border-color: #B43333;
}
.c-progress__item.is-finish {
  opacity: 0.5;
}
.c-progress__number {
  font-size: 0.625rem;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  background: #BABABA;
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .c-progress__number {
    font-size: 1rem;
    width: 1.5rem;
    height: 1.5rem;
  }
}
.c-progress__label {
  background: #F8F8F8;
  border-bottom: 2px solid #F8F8F8;
  min-height: 2.5rem;
  padding: 0.8125rem 0.5rem 0.5rem;
  font-size: 0.75rem;
  line-height: 1.4166666667;
  width: 100%;
  text-align: center;
  font-weight: 500;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .c-progress__label {
    border-bottom: 0.25rem solid #F8F8F8;
    min-height: 5rem;
    padding: 1.9375rem 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.45;
  }
}

.c-error {
  background: #FFEDED;
  margin-bottom: 1.25rem;
  border: 1px solid #B43333;
  border-radius: 0.125rem;
  padding: 0.6875rem;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .c-error {
    padding: 1.1875rem;
  }
}
.c-error.--margin {
  margin: 1rem auto;
}
@media only screen and (min-width: 768px) {
  .c-error.--margin {
    margin: 1.5rem auto;
  }
}

.c-cart__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media only screen and (min-width: 768px) {
  .c-cart__list {
    gap: 1.25rem;
  }
}
.c-cart__item {
  border: 1px solid #F0F0F0;
  border-radius: 0.25rem;
  background: #fff;
}
.c-cart__item-img {
  aspect-ratio: 76/60;
  width: 4.75rem;
}
@media only screen and (min-width: 768px) {
  .c-cart__item-img {
    aspect-ratio: 164/130;
    width: 10.25rem;
  }
}
.c-cart__item-top {
  display: flex;
  gap: 0.5rem;
  padding: 0.4375rem;
  border-bottom: 1px solid #E3E3E3;
}
@media only screen and (min-width: 768px) {
  .c-cart__item-top {
    gap: 0.875rem;
    padding: 0.9375rem;
  }
}
.c-cart__item-summary {
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
}
@media only screen and (min-width: 768px) {
  .c-cart__item-summary {
    gap: 0.875rem;
  }
}
.c-cart__item-name {
  font-size: 0.75rem;
  line-height: 1.6666666667;
  font-weight: 500;
  color: #3C3C3C;
}
@media only screen and (min-width: 768px) {
  .c-cart__item-name {
    font-size: 1.125rem;
    line-height: 1.7777777778;
  }
}
.c-cart__item-bottom {
  padding: 0.4375rem;
  display: flex;
  justify-content: space-between;
}
@media only screen and (min-width: 768px) {
  .c-cart__item-bottom {
    padding: 0.9375rem;
  }
}
.c-cart__item-amount {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .c-cart__item-amount {
    gap: 0.875rem;
  }
}
.c-cart__item-amount .label {
  font-size: 0.75rem;
  line-height: 1.4166666667;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .c-cart__item-amount .label {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.c-cart__item-amount .num {
  font-size: 0.625rem;
  line-height: 1.5;
}
@media only screen and (min-width: 768px) {
  .c-cart__item-amount .num {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}
.c-cart__item-price {
  font-size: 1rem;
  line-height: 1.3125;
  color: #B43333;
  font-weight: 700;
  flex: 1 1 auto;
  text-align: right;
}
@media only screen and (min-width: 768px) {
  .c-cart__item-price {
    font-size: 1.25rem;
    line-height: 1.3;
  }
}

.c-input input[type=text],
.c-input input[type=tel],
.c-input input[type=email],
.c-input input[type=password],
.c-input select,
.c-input textarea {
  width: 100%;
  display: block;
  border: 1px solid #D3D3D3;
  background: #fff;
  border-radius: 0.125rem;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  font-weight: 400;
  letter-spacing: 0;
  padding: 0.5625rem 0.6875rem;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .c-input input[type=text],
  .c-input input[type=tel],
  .c-input input[type=email],
  .c-input input[type=password],
  .c-input select,
  .c-input textarea {
    font-size: 1rem;
    line-height: 1.5;
    padding: 0.75rem 0.9375rem;
  }
}
.c-input input[type=text]:placeholder,
.c-input input[type=tel]:placeholder,
.c-input input[type=email]:placeholder,
.c-input input[type=password]:placeholder,
.c-input select:placeholder,
.c-input textarea:placeholder {
  color: #BABABA;
}
.c-input select {
  appearance: none;
  background: #fff url(../img/common/select.svg) no-repeat right 0.75rem center/0.375rem auto;
}
@media only screen and (min-width: 768px) {
  .c-input select {
    background: #fff url(../img/common/select.svg) no-repeat right 1rem center/0.5rem auto;
  }
}
.c-input__radio {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.c-input__radio-item input[type=radio] {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.c-input__radio-item input[type=radio]:checked + label::after, .c-input__radio-item input[type=radio]:checked + span::after {
  opacity: 1;
}
.c-input__radio-item input[type=radio] + label, .c-input__radio-item input[type=radio] + span {
  cursor: pointer;
  text-align: left;
  font-size: 0.75rem;
  line-height: 1.4166666667;
  font-weight: 500;
  display: inline-block;
  padding-left: 1.5625rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .c-input__radio-item input[type=radio] + label, .c-input__radio-item input[type=radio] + span {
    font-size: 1rem;
    line-height: 1.5;
    padding-left: 2.25rem;
  }
}
.c-input__radio-item input[type=radio] + label::before, .c-input__radio-item input[type=radio] + label::after, .c-input__radio-item input[type=radio] + span::before, .c-input__radio-item input[type=radio] + span::after {
  content: "";
  width: 1.0625rem;
  aspect-ratio: 1/1;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}
@media only screen and (min-width: 768px) {
  .c-input__radio-item input[type=radio] + label::before, .c-input__radio-item input[type=radio] + label::after, .c-input__radio-item input[type=radio] + span::before, .c-input__radio-item input[type=radio] + span::after {
    width: 1.5rem;
  }
}
.c-input__radio-item input[type=radio] + label::before, .c-input__radio-item input[type=radio] + span::before {
  border: 1px solid #D3D3D3;
  background: #fff;
}
.c-input__radio-item input[type=radio] + label::after, .c-input__radio-item input[type=radio] + span::after {
  width: 0.625rem;
  left: 0.21875rem;
  background: #B43333;
  opacity: 0;
}
@media only screen and (min-width: 768px) {
  .c-input__radio-item input[type=radio] + label::after, .c-input__radio-item input[type=radio] + span::after {
    width: 0.875rem;
    left: 0.3125rem;
  }
}
.c-input__radio-item input[type=radio] + label a, .c-input__radio-item input[type=radio] + span a {
  color: #0089FF;
  text-decoration: underline;
  transition: 0.3s ease-out;
  transition-property: opacity;
}
@media (hover: hover) {
  .c-input__radio-item input[type=radio] + label a:hover, .c-input__radio-item input[type=radio] + span a:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .c-input__radio-item input[type=radio] + label a:active, .c-input__radio-item input[type=radio] + span a:active {
    opacity: 0.7;
  }
}
.c-input__radio-box {
  text-align: center;
}

.c-item {
  border: 1px solid #F0F0F0;
  background: #fff;
  border-radius: 0.25rem;
}
.c-item__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media only screen and (min-width: 768px) {
  .c-item__list {
    gap: 1rem;
  }
}
.c-item__main {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4375rem;
}
@media only screen and (min-width: 768px) {
  .c-item__main {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0.9375rem;
  }
}
.c-item__bottom {
  padding: 0.4375rem;
  border-top: 1px solid #E3E3E3;
}
@media only screen and (min-width: 768px) {
  .c-item__bottom {
    padding: 0.9375rem;
  }
}
.c-item__content {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
@media only screen and (min-width: 768px) {
  .c-item__content {
    gap: 0.875rem;
  }
}
.c-item__title {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.6666666667;
}
@media only screen and (min-width: 768px) {
  .c-item__title {
    font-size: 1.125rem;
    line-height: 1.7777777778;
  }
}
.c-item__type {
  color: #7C7C7C;
  font-size: 0.75rem;
  line-height: 1.3333333333;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .c-item__type {
    font-size: 0.875rem;
    line-height: 1.3571428571;
  }
}
.c-item__price {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}
@media only screen and (min-width: 768px) {
  .c-item__price {
    border-top: 1px solid #E3E3E3;
    padding: 0.9375rem;
    justify-content: space-between;
    width: 100%;
  }
}
.c-item__price .label {
  position: relative;
  bottom: 0.0625rem;
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .c-item__price .label {
    gap: 0.875rem;
  }
}
.c-item__price .label .lg {
  font-size: 0.75rem;
  line-height: 1.4166666667;
}
@media only screen and (min-width: 768px) {
  .c-item__price .label .lg {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.c-item__price .label .sm {
  font-size: 0.625rem;
  line-height: 1.5;
}
@media only screen and (min-width: 768px) {
  .c-item__price .label .sm {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}
.c-item__price .num {
  color: #B43333;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3125;
}
@media only screen and (min-width: 768px) {
  .c-item__price .num {
    font-size: 1.25rem;
    line-height: 1.3;
  }
}
.c-item__img {
  aspect-ratio: 76/60;
  width: 4.75rem;
}
@media only screen and (min-width: 768px) {
  .c-item__img {
    aspect-ratio: 164/130;
    width: 10.25rem;
  }
}

.c-detail {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media only screen and (min-width: 768px) {
  .c-detail {
    gap: 1.25rem;
  }
}
.c-detail__block-title {
  font-size: 1rem;
  line-height: 1.5;
  padding-bottom: 0.75rem;
  margin: 0 0 0.75rem;
  font-weight: 500;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .c-detail__block-title {
    font-size: 1.25rem;
    line-height: 1.45;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
  }
}
.c-detail__block-title::before {
  content: "";
  width: 100%;
  height: 4px;
  background: radial-gradient(circle at center, #000 1px, transparent 1px);
  background-size: 4px 4px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
}
.c-detail__block-text {
  font-size: 0.75rem;
  line-height: 1.4166666667;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .c-detail__block-text {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.c-detail__mail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media only screen and (min-width: 768px) {
  .c-detail__mail {
    gap: 0.5rem;
  }
}
.c-detail__mail:nth-child(n+2) {
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  border-top: 1px solid #E3E3E3;
}
@media only screen and (min-width: 768px) {
  .c-detail__mail:nth-child(n+2) {
    padding-top: 1rem;
    margin-top: 1rem;
  }
}
.c-detail__mail-head {
  color: #0089FF;
  text-decoration: underline;
  cursor: pointer;
  transition: 0.3s ease-out;
  transition-property: opacity;
}
@media (hover: hover) {
  .c-detail__mail-head:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .c-detail__mail-head:active {
    opacity: 0.7;
  }
}
.c-detail__mail-body {
  display: none;
}
.c-detail__summary .ec-totalBox {
  padding: 0;
  background: transparent;
  margin: 0;
}
.c-detail__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media only screen and (min-width: 768px) {
  .c-detail__list {
    gap: 1rem;
  }
}
.c-detail__list-item {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .c-detail__list-item {
    gap: 1rem;
    font-size: 1rem;
    line-height: 1.5;
  }
}
.c-detail__list-item .label {
  flex: 0 0 auto;
  width: 6.875rem;
}
@media only screen and (min-width: 768px) {
  .c-detail__list-item .label {
    width: 9.75rem;
  }
}
.c-detail__list-item .body {
  flex: 1 1 auto;
  font-weight: 400;
}
.c-detail__items {
  margin-top: 1rem;
}
@media only screen and (min-width: 768px) {
  .c-detail__items {
    margin-top: 1.25rem;
  }
}

.c-list__item .ec-blockBtn--action {
  min-height: 3.5rem;
  white-space: normal;
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.c-list__item .ec-blockBtn--action.c-btn.--black {
  color: #fff;
}
.c-list__item .ec-blockBtn--action.c-btn.--outlined {
  color: #3C3C3C;
}
.c-list__item .item-link {
  transition: 0.3s ease-out;
  transition-property: opacity;
}
@media (hover: hover) {
  .c-list__item .item-link:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .c-list__item .item-link:active {
    opacity: 0.7;
  }
}
.c-list__item .item-name,
.c-list__item .item-price {
  color: #0066c0;
  text-decoration: underline;
  margin-bottom: 0.5rem;
}
.c-list__item .item-logout {
  margin-bottom: 0.5rem;
}

.p-login__forgot {
  text-align: center;
  margin-top: 0.75rem;
}
@media only screen and (min-width: 768px) {
  .p-login__forgot {
    margin-top: 1rem;
  }
}
.p-login__forgot a {
  color: #0089FF;
  font-size: 0.75rem;
  line-height: 1.4166666667;
  font-weight: 500;
  text-decoration: underline;
  transition: 0.3s ease-out;
  transition-property: opacity;
}
@media (hover: hover) {
  .p-login__forgot a:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .p-login__forgot a:active {
    opacity: 0.7;
  }
}
@media only screen and (min-width: 768px) {
  .p-login__forgot a {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}
.p-login__bottom {
  margin-top: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .p-login__bottom {
    margin-top: 2.5rem;
  }
}
.p-login__bottom-txt {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4166666667;
}
@media only screen and (min-width: 768px) {
  .p-login__bottom-txt {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.5;
  }
}

.p-mail {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .p-mail {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.p-mail__text {
  text-align: center;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 768px) {
  .p-mail__text {
    margin-bottom: 1.5rem;
  }
}
.p-mail__desc {
  text-align: center;
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 768px) {
  .p-mail__desc {
    margin-bottom: 2.5rem;
  }
}

.p-complete {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .p-complete {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.p-complete__text {
  text-align: center;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 768px) {
  .p-complete__text {
    margin-bottom: 1.5rem;
  }
}
.p-complete__desc {
  text-align: center;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 768px) {
  .p-complete__desc {
    margin-bottom: 1.5rem;
  }
}
.p-complete__caution {
  text-align: center;
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .p-complete__caution {
    margin-bottom: 2rem;
  }
}

.p-verify__img {
  aspect-ratio: 1/1;
  max-width: 4.375rem;
  margin: 0 auto 1.25rem;
}
@media only screen and (min-width: 768px) {
  .p-verify__img {
    max-width: 6.25rem;
    margin-bottom: 2.5rem;
  }
}
.p-verify__text {
  text-align: center;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 768px) {
  .p-verify__text {
    margin-bottom: 1.5rem;
  }
}
.p-verify__desc {
  text-align: center;
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .p-verify__desc {
    margin-bottom: 2rem;
  }
}

.p-error__img {
  aspect-ratio: 180/110;
  max-width: 11.25rem;
  margin: 0 auto 1.5rem;
}
@media only screen and (min-width: 768px) {
  .p-error__img {
    max-width: 14.3125rem;
    margin-bottom: 2.5rem;
  }
}
.p-error__text {
  text-align: center;
}

.p-contact__text {
  text-align: center;
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .p-contact__text {
    margin-bottom: 2.5rem;
  }
}

.p-thanks__text {
  text-align: center;
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .p-thanks__text {
    margin-bottom: 2rem;
  }
}
.p-thanks__img {
  aspect-ratio: 1/1;
  max-width: 4.375rem;
  margin: 0 auto 1.25rem;
}
@media only screen and (min-width: 768px) {
  .p-thanks__img {
    margin-bottom: 2.5rem;
    max-width: 6.25rem;
  }
}

.p-password__text {
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 768px) {
  .p-password__text {
    margin-bottom: 2.5rem;
  }
}
.p-password-complete__text {
  margin-bottom: 1rem;
}
@media only screen and (min-width: 768px) {
  .p-password-complete__text {
    margin-bottom: 1.5rem;
  }
}
.p-password-complete__text {
  margin-bottom: 1rem;
}
@media only screen and (min-width: 768px) {
  .p-password-complete__text {
    margin-bottom: 1.5rem;
  }
}
.p-password-complete__caution {
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .p-password-complete__caution {
    margin-bottom: 2rem;
  }
}
.p-password-complete__img {
  aspect-ratio: 1/1;
  margin: 0 auto 1.5rem;
  max-width: 3.75rem;
}
@media only screen and (min-width: 768px) {
  .p-password-complete__img {
    margin-bottom: 2.5rem;
    max-width: 6.25rem;
  }
}

.p-reset__text {
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 768px) {
  .p-reset__text {
    margin-bottom: 2.5rem;
  }
}

.p-entry__form {
  margin: 0 auto;
  max-width: 50.625rem;
}
.p-entry__form .ec-errorMessage {
  color: #FF0000;
  font-size: 0.625rem;
  line-height: 1.5;
  font-weight: 400;
  display: block;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .p-entry__form .ec-errorMessage {
    font-size: 0.875rem;
    line-height: 1.4285714286;
    margin-top: 0.5rem;
  }
}
.p-entry__list {
  background: #F8F8F8;
  border-radius: 0.25rem;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media only screen and (min-width: 768px) {
  .p-entry__list {
    padding: 1.75rem;
    gap: 1rem;
  }
}
.p-entry__item-label {
  font-size: 0.875rem;
  line-height: 1.4285714286;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
@media only screen and (min-width: 768px) {
  .p-entry__item-label {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    gap: 1.25rem;
  }
}
.p-entry__item-label .ec-required {
  color: #FF0000;
  font-size: 0.75rem;
  line-height: 1.4166666667;
  font-weight: 500;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .p-entry__item-label .ec-required {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}
.p-entry__item-field.error input[type=text],
.p-entry__item-field.error input[type=tel],
.p-entry__item-field.error input[type=email],
.p-entry__item-field.error input[type=password],
.p-entry__item-field.error select,
.p-entry__item-field.error textarea {
  border-color: #FF0000;
}
.p-entry__item-field input[type=text],
.p-entry__item-field input[type=tel],
.p-entry__item-field input[type=email],
.p-entry__item-field input[type=password],
.p-entry__item-field select,
.p-entry__item-field textarea {
  width: 100%;
  display: block;
  border: 1px solid #D3D3D3;
  background: #fff;
  border-radius: 0.125rem;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  font-weight: 400;
  letter-spacing: 0;
  padding: 0.5625rem 0.6875rem;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .p-entry__item-field input[type=text],
  .p-entry__item-field input[type=tel],
  .p-entry__item-field input[type=email],
  .p-entry__item-field input[type=password],
  .p-entry__item-field select,
  .p-entry__item-field textarea {
    font-size: 1rem;
    line-height: 1.5;
    padding: 0.75rem 0.9375rem;
  }
}
.p-entry__item-field input[type=text]:placeholder,
.p-entry__item-field input[type=tel]:placeholder,
.p-entry__item-field input[type=email]:placeholder,
.p-entry__item-field input[type=password]:placeholder,
.p-entry__item-field select:placeholder,
.p-entry__item-field textarea:placeholder {
  color: #BABABA;
}
.p-entry__item-field input[type=tel] {
  max-width: 10rem;
}
@media only screen and (min-width: 768px) {
  .p-entry__item-field input[type=tel] {
    max-width: 23.5625rem;
  }
}
.p-entry__item-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6875rem;
}
@media only screen and (min-width: 768px) {
  .p-entry__item-half {
    gap: 1.25rem;
  }
}
.p-entry__item-caution {
  font-size: 0.625rem;
  line-height: 1.4;
  margin-top: 0.25rem;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  .p-entry__item-caution {
    font-size: 0.875rem;
    line-height: 1.4285714286;
    margin-top: 0.5rem;
  }
}
.p-entry__postal {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media only screen and (min-width: 768px) {
  .p-entry__postal {
    gap: 2rem;
  }
}
.p-entry__postal input {
  max-width: 10rem;
}
@media only screen and (min-width: 768px) {
  .p-entry__postal input {
    max-width: 23.5625rem;
  }
}
.p-entry__postal-btn {
  appearance: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  line-height: 1.4166666667;
  min-width: 5.625rem;
  flex: 0 0 auto;
  min-height: 1.5rem;
  background: #3C3C3C;
  border: none;
  color: #fff;
  border-radius: 0.125rem;
  transition: 0.3s ease-out;
  transition-property: opacity;
}
@media (hover: hover) {
  .p-entry__postal-btn:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .p-entry__postal-btn:active {
    opacity: 0.7;
  }
}
@media only screen and (min-width: 768px) {
  .p-entry__postal-btn {
    min-width: 6.25rem;
    min-height: 2rem;
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}
.p-entry__address {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media only screen and (min-width: 768px) {
  .p-entry__address {
    gap: 0.75rem;
  }
}
.p-entry__address-pref {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media only screen and (min-width: 768px) {
  .p-entry__address-pref {
    gap: 1.25rem;
  }
}
.p-entry__address-pref .label {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4285714286;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) {
  .p-entry__address-pref .label {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.p-entry__address-pref input {
  flex: 1 1 auto;
}
@media only screen and (min-width: 768px) {
  .p-entry__address-pref input {
    max-width: 18.3125rem;
  }
}
.p-entry__bottom {
  margin-top: 1.5rem;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .p-entry__bottom {
    margin-top: 2.5rem;
  }
}
.p-entry__privacy {
  margin-bottom: 0.75rem;
}
@media only screen and (min-width: 768px) {
  .p-entry__privacy {
    margin-bottom: 1.25rem;
  }
}
.p-entry__privacy-label input[type=checkbox] {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.p-entry__privacy-label input[type=checkbox]:checked + span::before {
  background: #B43333;
}
.p-entry__privacy-label input[type=checkbox]:checked + span::after {
  opacity: 1;
}
.p-entry__privacy-label input[type=checkbox] + span {
  font-size: 0.75rem;
  line-height: 1.4166666667;
  font-weight: 500;
  display: inline-block;
  padding-left: 1.5625rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .p-entry__privacy-label input[type=checkbox] + span {
    font-size: 1rem;
    line-height: 1.5;
    padding-left: 2.25rem;
  }
}
.p-entry__privacy-label input[type=checkbox] + span::before, .p-entry__privacy-label input[type=checkbox] + span::after {
  content: "";
  width: 1.0625rem;
  aspect-ratio: 1/1;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (min-width: 768px) {
  .p-entry__privacy-label input[type=checkbox] + span::before, .p-entry__privacy-label input[type=checkbox] + span::after {
    width: 1.5rem;
  }
}
.p-entry__privacy-label input[type=checkbox] + span::before {
  border: 1px solid #D3D3D3;
  background: #fff;
  border-radius: 0.125rem;
}
.p-entry__privacy-label input[type=checkbox] + span::after {
  background: url(../img/common/check.svg) no-repeat center center/contain;
  opacity: 0;
}
.p-entry__privacy-label input[type=checkbox] + span a {
  color: #0089FF;
  text-decoration: underline;
  transition: 0.3s ease-out;
  transition-property: opacity;
}
@media (hover: hover) {
  .p-entry__privacy-label input[type=checkbox] + span a:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .p-entry__privacy-label input[type=checkbox] + span a:active {
    opacity: 0.7;
  }
}
.p-entry-complete__img {
  aspect-ratio: 1/1;
  max-width: 4.375rem;
  margin: 0 auto 1.25rem;
}
@media only screen and (min-width: 768px) {
  .p-entry-complete__img {
    max-width: 6.25rem;
    margin-bottom: 2.5rem;
  }
}
.p-entry-complete__text {
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .p-entry-complete__text {
    margin-bottom: 2rem;
  }
}

.p-cancel__btn {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4166666667;
  color: #0089FF;
  text-decoration: underline;
  transition: 0.3s ease-out;
  transition-property: opacity;
}
@media (hover: hover) {
  .p-cancel__btn:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .p-cancel__btn:active {
    opacity: 0.7;
  }
}
@media only screen and (min-width: 768px) {
  .p-cancel__btn {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.p-cancel__btn-box {
  text-align: center;
  margin-top: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .p-cancel__btn-box {
    margin-top: 2.5rem;
  }
}

.p-delivery__empty {
  margin-bottom: 1.5rem;
}
.p-delivery__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 50.625rem;
  margin: 0 auto 1.5rem;
}
@media only screen and (min-width: 768px) {
  .p-delivery__list {
    margin-bottom: 2rem;
    gap: 1.25rem;
  }
}
.p-delivery__item {
  display: block;
}
.p-delivery__item-head {
  display: flex;
  align-items: center;
  width: 100%;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  position: relative;
}
.p-delivery__item-head::before {
  content: "";
  width: 100%;
  height: 4px;
  background: radial-gradient(circle at center, #000 1px, transparent 1px);
  background-size: 4px 4px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
}
@media only screen and (min-width: 768px) {
  .p-delivery__item-head {
    gap: 0.75rem;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
.p-delivery__item-ttl {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  margin-right: auto;
}
@media only screen and (min-width: 768px) {
  .p-delivery__item-ttl {
    font-size: 1.25rem;
    line-height: 1.45;
  }
}
.p-delivery__block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
@media only screen and (min-width: 768px) {
  .p-delivery__block {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
}
.p-delivery__block-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.75rem;
  line-height: 1.6666666667;
}
@media only screen and (min-width: 768px) {
  .p-delivery__block-item {
    font-size: 1rem;
    line-height: 1.5;
    gap: 1.5rem;
  }
}
.p-delivery__block-item .label {
  flex: 0 0 auto;
  width: 3.5rem;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .p-delivery__block-item .label {
    width: 8rem;
  }
}
.p-delivery__block-item .field {
  font-weight: 400;
}
.p-delivery__btn {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}
@media only screen and (min-width: 768px) {
  .p-delivery__btn {
    gap: 2.5rem;
  }
}

.p-withdraw__title {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1rem;
}
.p-withdraw__text {
  font-size: 0.75rem;
  line-height: 2.1666666667;
  margin-bottom: 1.5rem;
  font-weight: 500;
  text-align: center;
}

.p-favorite__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 50.625rem;
  gap: 0.75rem;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .p-favorite__list {
    gap: 1.25rem;
  }
}
.p-favorite__item-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
@media only screen and (min-width: 768px) {
  .p-favorite__item-head {
    margin-bottom: 1rem;
  }
}
.p-favorite__item-title {
  font-size: 0.75rem;
  line-height: 1.4166666667;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .p-favorite__item-title {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.p-favorite__item-body {
  border: 1px solid #F0F0F0;
  background: #fff;
  border-radius: 0.25rem;
}
.p-favorite__item-info {
  padding: 0.4375rem;
  display: flex;
  gap: 0.5rem;
}
@media only screen and (min-width: 768px) {
  .p-favorite__item-info {
    gap: 1rem;
    padding: 0.6875rem;
  }
}
.p-favorite__img {
  aspect-ratio: 76/60;
  flex: 0 0 auto;
  width: 4.75rem;
}
@media only screen and (min-width: 768px) {
  .p-favorite__img {
    aspect-ratio: 164/130;
    width: 10.25rem;
  }
}
.p-favorite__price {
  color: #B43333;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .p-favorite__price {
    font-size: 1.25rem;
    line-height: 1.3;
  }
}
.p-favorite__btn {
  padding: 0.4375rem;
  border-top: 1px solid #E3E3E3;
  display: flex;
  gap: 0.6875rem;
}
@media only screen and (min-width: 768px) {
  .p-favorite__btn {
    padding: 0.6875rem;
    gap: 1.25rem;
  }
}

.p-product__inner {
  max-width: 87.5rem;
}
@media only screen and (min-width: 768px) {
  .p-product__inner {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 3.75rem;
  }
}
.p-product__nav {
  display: flex;
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 768px) {
  .p-product__nav {
    display: none;
  }
}
.p-product__nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  appearance: none !important;
  border: none;
  flex: 0 0 auto;
  width: 20%;
  border-bottom: 0.125rem solid #E3E3E3;
  color: #BABABA;
  background: transparent;
  padding: 0 0 0.25rem;
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.4166666667;
  font-weight: 500;
}
.p-product__nav-item.is-active {
  color: #B43333;
  border-bottom: 0.125rem solid #B43333;
}
@media only screen and (min-width: 768px) {
  .p-product__title {
    text-align: left;
    margin-bottom: 1.3125rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-product__head {
    flex: 0 0 auto;
    width: 26.875rem;
    position: sticky;
    top: 6.25rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-product__container {
    max-width: calc(100% - 30.625rem);
    flex: 1 1 auto;
  }
}
.p-product__block {
  display: none;
}
.p-product__block.is-active {
  display: block;
}
@media only screen and (min-width: 768px) {
  .p-product__block {
    display: block;
  }
}
.p-product__block-title {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .p-product__block-title {
    margin-bottom: 1.5rem;
  }
}
.p-product__block-title::before {
  content: "";
  width: 3.75rem;
  height: 0.25rem;
  clip-path: polygon(3.333% 0, 100% 0%, 96.667% 100%, 0% 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  background: #B43333;
}
.p-product__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  margin-top: 0.75rem;
  position: static;
}
@media only screen and (min-width: 768px) {
  .p-product__dots {
    display: none !important;
  }
}
.p-product__dots > li {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: #BABABA;
  cursor: pointer;
  transition: 0.3s ease-out;
  transition-property: opacity;
  margin: 0;
  padding: 0;
}
@media (hover: hover) {
  .p-product__dots > li:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .p-product__dots > li:active {
    opacity: 0.7;
  }
}
.p-product__dots > li.slick-active {
  background: #B43333;
}
.p-product__arrow {
  position: absolute;
  background: rgba(255, 255, 255, 0.8) url(../img/common/slide-arrow-sp.svg) no-repeat center/100% auto;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: none;
  appearance: none;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.2);
  top: 50%;
  transform: translate(0, -50%);
  z-index: 2;
}
@media only screen and (min-width: 768px) {
  .p-product__arrow {
    width: 4.25rem;
    height: 4.25rem;
    background: rgba(255, 255, 255, 0.8) url(../img/common/slide-arrow-pc.svg) no-repeat center/100% auto;
  }
}
.p-product__arrow::before {
  display: none;
}
.p-product__arrow:hover, .p-product__arrow:focus {
  opacity: 0.7;
  background: rgba(255, 255, 255, 0.8) url(../img/common/slide-arrow-sp.svg) no-repeat center/100% auto;
}
@media only screen and (min-width: 768px) {
  .p-product__arrow:hover, .p-product__arrow:focus {
    background: rgba(255, 255, 255, 0.8) url(../img/common/slide-arrow-pc.svg) no-repeat center/100% auto;
  }
}
.p-product__arrow--prev {
  left: 1rem;
  transform: translate(0, -50%) scale(-1, -1);
}
@media only screen and (min-width: 768px) {
  .p-product__arrow--prev {
    left: 1.25rem;
  }
}
.p-product__arrow--next {
  right: 1rem;
}
@media only screen and (min-width: 768px) {
  .p-product__arrow--next {
    right: 1.25rem;
  }
}
.p-product__img {
  aspect-ratio: 810/640;
  background: #000000;
}
.p-product__img-box {
  position: relative;
}
.p-product__img-list {
  opacity: 0;
  visibility: hidden;
}
.p-product__img-list.slick-initialized {
  opacity: 1;
  visibility: visible;
}
.p-product__img-box {
  margin-left: -1rem;
  margin-right: -1rem;
}
@media only screen and (min-width: 768px) {
  .p-product__img-box {
    margin: 0;
  }
}
.p-product__thumb {
  display: none;
}
@media only screen and (min-width: 768px) {
  .p-product__thumb {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4375rem;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
  }
}
.p-product__thumb-item {
  aspect-ratio: 1/1;
  width: 6rem;
}
.p-product__tags {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 768px) {
  .p-product__tags {
    gap: 0.5rem 1rem;
    margin-bottom: 1.5rem;
  }
}
.p-product__tags-item {
  border: 1px solid #3C3C3C;
  background: #3C3C3C;
  color: #fff;
  border-radius: 0.125rem;
  min-height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem;
  font-size: 0.625rem;
  line-height: 1.5;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .p-product__tags-item {
    font-size: 0.875rem;
    line-height: 1.4285714286;
    min-height: 1.875rem;
    padding: 0 0.75rem;
  }
}
.p-product__tags-item.--red {
  border-color: #B43333;
  background: #B43333;
}
.p-product__status {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 768px) {
  .p-product__status {
    margin-bottom: 2rem;
  }
}
.p-product__stock {
  display: flex;
  font-size: 0.75rem;
  line-height: 1.4166666667;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .p-product__stock {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}
.p-product__stock .label {
  display: inline-block;
  padding-left: 1rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .p-product__stock .label {
    padding-left: 1.375rem;
  }
}
.p-product__stock .label::before {
  content: "";
  width: 0.75rem;
  aspect-ratio: 12/17;
  background: url(../img/common/stock-icon-sp.svg) no-repeat center/100% auto;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
@media only screen and (min-width: 768px) {
  .p-product__stock .label::before {
    width: 0.875rem;
    aspect-ratio: 14/20;
    background: url(../img/common/stock-icon-pc.svg) no-repeat center/100% auto;
  }
}
.p-product__stock .date {
  display: inline-block;
  padding-left: 0.75rem;
  margin-left: 0.75rem;
  border-left: 1px solid #E3E3E3;
  color: #B43333;
}
@media only screen and (min-width: 768px) {
  .p-product__stock .date {
    padding-left: 1.5rem;
    margin-left: 1.5rem;
  }
}
.p-product__favorite {
  text-align: right;
}
.p-product__favorite-btn {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  appearance: none;
  border: none;
  padding: 0;
  background: transparent;
  gap: 0.25rem;
  font-size: 0.625rem;
  line-height: 1.5;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .p-product__favorite-btn {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}
.p-product__favorite-btn .icon {
  display: block;
  flex: 0 0 auto;
  width: 1.0625rem;
  aspect-ratio: 1/1;
  border: 1px solid #F2F2F2;
  background: #F8F8F8 url(../img/common/favorite-btn.svg) no-repeat center/0.6875rem auto;
  border-radius: 0.125rem;
}
@media only screen and (min-width: 768px) {
  .p-product__favorite-btn .icon {
    width: 1.25rem;
    background-size: 0.8125rem auto;
  }
}
.p-product__description-text, .p-product__freearea {
  font-size: 0.875rem;
  line-height: 1.7142857143;
  font-weight: 400;
}
.p-product__hr {
  margin: 1.5rem -1rem;
  opacity: 1;
  height: 0.375rem;
  background: #F8F8F8;
  border: none;
}
@media only screen and (min-width: 768px) {
  .p-product__hr {
    margin: 2.5rem 0;
  }
}
.p-product__price-wrapper {
  overflow: auto;
  margin-left: -1rem;
  margin-right: -1rem;
  padding: 0 1rem;
  padding-bottom: 1rem;
}
@media only screen and (min-width: 768px) {
  .p-product__price-wrapper {
    margin: 0;
    padding: 0;
    padding-bottom: 1rem;
  }
}
.p-product__price-wrapper .simplebar-horizontal {
  height: 0.25rem;
  border-radius: 0.125rem;
  background: #E3E3E3;
  left: 1rem;
  right: 1rem;
}
@media only screen and (min-width: 768px) {
  .p-product__price-wrapper .simplebar-horizontal {
    left: 0;
    right: 0;
  }
}
.p-product__price-wrapper .simplebar-scrollbar {
  background: #BABABA;
  border-radius: 0.125rem;
}
.p-product__price-list {
  display: flex;
  gap: 0.75rem;
}
@media only screen and (min-width: 768px) {
  .p-product__price-list {
    gap: 0.875rem;
  }
}
.p-product__price-list::after {
  content: "";
  flex: 0 0 auto;
  width: 0.25rem;
}
@media only screen and (min-width: 768px) {
  .p-product__price-list::after {
    display: none;
  }
}
.p-product__price-list .price-box {
  cursor: pointer;
  border-radius: 0.25rem;
  min-width: 9.375rem;
  min-height: 5.9375rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: 0.3s ease-out;
  transition-property: opacity;
}
@media (hover: hover) {
  .p-product__price-list .price-box:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .p-product__price-list .price-box:active {
    opacity: 0.7;
  }
}
@media only screen and (min-width: 768px) {
  .p-product__price-list .price-box {
    min-width: 13.125rem;
    min-height: 8.25rem;
  }
}
.p-product__price-list .price-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  border: 1px solid #A5A5A5;
  border-radius: 0.25rem;
}
.p-product__price-list .price-box.is-logout {
  min-height: 0;
}
.p-product__price-list .price-box.is-active {
  background: #FFEDED;
}
.p-product__price-list .price-box.is-active::before {
  border: 0.125rem solid #B43333;
}
.p-product__price-list .price-box .type {
  border-bottom: 1px solid #E3E3E3;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  line-height: 1.4166666667;
  font-weight: 500;
  width: 100%;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) {
  .p-product__price-list .price-box .type {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}
.p-product__price-list .price-box .body {
  flex: 1 1 auto;
  width: 100%;
  padding: 0.25rem 0.5rem 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media only screen and (min-width: 768px) {
  .p-product__price-list .price-box .body {
    padding: 0.4375rem 0.75rem 0.75rem;
  }
}
.p-product__price-list .price-box .price {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
}
.p-product__price-list .price-box .price .num {
  color: #B43333;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.3333333333;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) {
  .p-product__price-list .price-box .price .num {
    font-size: 1.8125rem;
    line-height: 1.3103448276;
  }
}
.p-product__price-list .price-box .price .unit {
  position: relative;
  bottom: 0.3125rem;
  font-size: 0.625rem;
  letter-spacing: 0;
  line-height: 1.4166666667;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) {
  .p-product__price-list .price-box .price .unit {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}
.p-product__price-list .price-box .quantity {
  margin-top: 0.5625rem;
  background: #fff;
  border-radius: 0.125rem;
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.2);
  font-size: 0.75rem;
  line-height: 1.4166666667;
  min-height: 1.25rem;
  padding: 0.0625rem 0.5rem 0.125rem;
  text-align: center;
  font-weight: 700;
  color: #B43333;
}
@media only screen and (min-width: 768px) {
  .p-product__price-list .price-box .quantity {
    font-size: 0.875rem;
    line-height: 1.4285714286;
    min-height: 1.875rem;
    padding: 0.3125rem;
    font-weight: 700;
  }
}
.p-product__price-list .price-box .quantity.is-low {
  background: #F5FF00;
}
.p-product__price-list .price-box .quantity.is-empty {
  background: #7C7C7C;
  color: #fff;
}
.p-product__cart {
  position: fixed;
  z-index: 3;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 0.625rem;
  min-height: 7.875rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 -0.375rem 0.625rem rgba(0, 0, 0, 0.1);
}
@media only screen and (min-width: 768px) {
  .p-product__cart {
    position: static;
    padding: 0;
    box-shadow: none;
  }
}
.p-product__cart.is-logout {
  min-height: 0;
}
.p-product__cart-head {
  display: flex;
  gap: 0.9375rem;
  justify-content: space-between;
  margin-bottom: 0.6875rem;
  flex: 1 1 auto;
}
@media only screen and (min-width: 768px) {
  .p-product__cart-head {
    flex-direction: column;
    gap: 1.4375rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
  }
}
.p-product__cart-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media only screen and (min-width: 768px) {
  .p-product__cart-price {
    gap: 1.25rem;
  }
}
.p-product__cart-price .label {
  flex: 0 0 auto;
  white-space: nowrap;
  border: 1px solid #7C7C7C;
  border-radius: 0.125rem;
  width: 1.75rem;
  height: 1.75rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  line-height: 1.1;
  font-weight: 500;
  color: #7C7C7C;
}
@media only screen and (min-width: 768px) {
  .p-product__cart-price .label {
    width: 5rem;
    height: 1.75rem;
    font-size: 1rem;
    line-height: 1.5;
  }
}
.p-product__cart-price .price {
  display: flex;
  gap: 0.25rem;
  align-items: flex-end;
}
.p-product__cart-price .num {
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 700;
  color: #B43333;
}
@media only screen and (min-width: 768px) {
  .p-product__cart-price .num {
    font-size: 1.75rem;
    line-height: 1.3214285714;
  }
}
.p-product__cart-price .tax {
  font-size: 0.75rem;
  line-height: 1.4166666667;
  color: #3C3C3C;
  font-weight: 500;
  position: relative;
  bottom: 0.25rem;
}
@media only screen and (min-width: 768px) {
  .p-product__cart-price .tax {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.p-product__cart-quantity {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media only screen and (min-width: 768px) {
  .p-product__cart-quantity {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
}
.p-product__cart-quantity.is-logout {
  display: none;
}
.p-product__cart-quantity .label {
  font-size: 0.75rem;
  line-height: 1.4166666667;
  font-weight: 500;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) {
  .p-product__cart-quantity .label {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.p-product__cart-hidden {
  visibility: hidden;
  position: absolute;
}
.p-product__cart-field {
  display: flex;
}
.p-product__cart-field input[type=number] {
  -moz-appearance: textfield;
  appearance: none;
  max-width: 5.125rem;
  border: 1px solid #E3E3E3;
  border-right: none;
  border-left: none;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4166666667;
  height: 1.5rem;
  flex: 1 1 auto;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.p-product__cart-field input[type=number]::-webkit-outer-spin-button, .p-product__cart-field input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .p-product__cart-field input[type=number] {
    height: 1.875rem;
    font-size: 1rem;
    line-height: 1.5;
  }
}
.p-product__cart-field .quantity-add, .p-product__cart-field .quantity-sub {
  width: 1.5rem;
  flex: 0 0 auto;
  height: 1.5rem;
  background: #E3E3E3;
  border: none;
  appearance: none !important;
  position: relative;
  transition: 0.3s ease-out;
  transition-property: opacity;
}
@media (hover: hover) {
  .p-product__cart-field .quantity-add:hover, .p-product__cart-field .quantity-sub:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .p-product__cart-field .quantity-add:active, .p-product__cart-field .quantity-sub:active {
    opacity: 0.7;
  }
}
@media only screen and (min-width: 768px) {
  .p-product__cart-field .quantity-add, .p-product__cart-field .quantity-sub {
    height: 1.875rem;
  }
}
.p-product__cart-field .quantity-add::before, .p-product__cart-field .quantity-add::after, .p-product__cart-field .quantity-sub::before, .p-product__cart-field .quantity-sub::after {
  content: "";
  background: #3C3C3C;
  height: 1px;
  width: 0.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-product__cart-field .quantity-add::after, .p-product__cart-field .quantity-sub::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.p-product__cart-field .quantity-add {
  border-radius: 0.125rem 0 0 0.125rem;
}
.p-product__cart-field .quantity-sub {
  border-radius: 0 0.125rem 0.125rem 0;
}
.p-product__cart-field .quantity-sub::after {
  display: none;
}
.p-product__cart-hr {
  margin: 1.5rem 0;
  opacity: 1;
  height: 0.375rem;
  background: #F8F8F8;
  border: none;
}
.p-product__cart-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.6875rem auto;
}
@media only screen and (min-width: 768px) {
  .p-product__cart-info {
    margin: 0;
  }
}
.p-product__cart-info .block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.p-product__cart-info .block .label,
.p-product__cart-info .block .text {
  font-size: 0.75rem;
  line-height: 1.4166666667;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .p-product__cart-info .block .label,
  .p-product__cart-info .block .text {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.p-product__cart-info .block .price {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
}
.p-product__cart-info .block .price .num {
  font-size: 1.75rem;
  line-height: 1.3214285714;
  font-weight: 700;
  color: #B43333;
}
.p-product__cart-info .block .price .unit {
  position: relative;
  bottom: 0.25rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
.p-product__btn[disabled] {
  pointer-events: none;
  opacity: 0.5;
}
.p-product__caution {
  background: #FFEDED;
  margin-bottom: 1.25rem;
  border: 1px solid #B43333;
  border-radius: 0.125rem;
  padding: 0.6875rem;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .p-product__caution {
    padding: 1.1875rem;
  }
}
.p-product__caution-title {
  color: #B43333;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  margin-bottom: 0.5rem;
}
@media only screen and (min-width: 768px) {
  .p-product__caution-title {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }
}
.p-product__caution-text {
  font-size: 0.75rem;
  line-height: 1.6666666667;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .p-product__caution-text {
    font-size: 0.875rem;
    line-height: 1.5714285714;
  }
}

.p-cart__total {
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .p-cart__total {
    margin-bottom: 2rem;
  }
}
.p-cart__total-head {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  padding-bottom: 0.6875rem;
  margin-bottom: 0.75rem;
  position: relative;
}
.p-cart__total-head::before {
  content: "";
  width: 100%;
  height: 4px;
  background: radial-gradient(circle at center, #000 1px, transparent 1px);
  background-size: 4px 4px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
}
@media only screen and (min-width: 768px) {
  .p-cart__total-head {
    font-size: 1.25rem;
    line-height: 1.45;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
.p-cart__total-text {
  border: 1px solid #F0F0F0;
  background: #fff;
  border-radius: 0.25rem;
  padding: 1rem 0.75rem;
  gap: 2rem;
  font-size: 0.8125rem;
  line-height: 1.4615384615;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (min-width: 768px) {
  .p-cart__total-text {
    padding: 1rem 1.5rem;
    gap: 2rem;
    font-size: 1.125rem;
    line-height: 1.4444444444;
  }
}
.p-cart__total-text .label {
  font-weight: 700;
}
.p-cart__total-text .num {
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 700;
  color: #B43333;
}
.p-cart__total-text .num .unit {
  color: #3C3C3C;
  font-size: 0.75rem;
}
@media only screen and (min-width: 768px) {
  .p-cart__total-text .num .unit {
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-cart__total-text .num {
    font-size: 1.5rem;
    line-height: 1.3333333333;
  }
}
.p-cart__total-bottom {
  margin-top: 0.5rem;
  gap: 0.25rem;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .p-cart__total-bottom {
    margin-top: 1.25rem;
    gap: 0.75rem;
  }
}
.p-cart__total-caution {
  font-size: 0.625rem;
  line-height: 1.4;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  .p-cart__total-caution {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}
.p-cart__total-caution.--strong {
  color: #B43333;
}
.p-cart__form {
  width: 100%;
}
.p-cart__hr {
  background: #F8F8F8;
  border: none;
  height: 0.375rem;
  margin: 1.5rem -1rem;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .p-cart__hr {
    margin: 1.5625rem 0;
    height: 0.625rem;
    background: transparent;
  }
}
.p-cart__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media only screen and (min-width: 768px) {
  .p-cart__list {
    gap: 1.25rem;
  }
}
.p-cart__item {
  list-style: none;
  padding: 0;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .p-cart__item {
    padding: 1.1875rem;
  }
}
.p-cart__item-box {
  background: #fff;
  border: 1px solid #F0F0F0;
  border-radius: 0.25rem;
  position: relative;
}
.p-cart__item-delete {
  z-index: 1;
  display: block;
  width: 1rem;
  height: 1rem;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(50%, -50%);
  background: #3C3C3C;
  border-radius: 50%;
  transition: 0.3s ease-out;
  transition-property: opacity;
}
@media only screen and (min-width: 768px) {
  .p-cart__item-delete {
    width: 1.5rem;
    height: 1.5rem;
  }
}
@media (hover: hover) {
  .p-cart__item-delete:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .p-cart__item-delete:active {
    opacity: 0.7;
  }
}
.p-cart__item-delete::before, .p-cart__item-delete::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.125rem;
  height: 0.5rem;
  background: #fff;
}
@media only screen and (min-width: 768px) {
  .p-cart__item-delete::before, .p-cart__item-delete::after {
    height: 0.75rem;
  }
}
.p-cart__item-delete::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.p-cart__item-delete::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.p-cart__item-img {
  aspect-ratio: 76/60;
  width: 4.75rem;
}
@media only screen and (min-width: 768px) {
  .p-cart__item-img {
    aspect-ratio: 164/130;
    width: 10.25rem;
  }
}
.p-cart__item-top {
  display: flex;
  gap: 0.5rem;
  padding: 0.4375rem;
  border-bottom: 1px solid #E3E3E3;
}
@media only screen and (min-width: 768px) {
  .p-cart__item-top {
    gap: 1rem;
    padding: 0.9375rem;
  }
}
.p-cart__item-summary {
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
}
@media only screen and (min-width: 768px) {
  .p-cart__item-summary {
    gap: 0.875rem;
  }
}
.p-cart__item-name {
  font-size: 0.75rem;
  line-height: 1.6666666667;
  font-weight: 500;
  color: #3C3C3C;
}
@media only screen and (min-width: 768px) {
  .p-cart__item-name {
    font-size: 1.125rem;
    line-height: 1.7777777778;
  }
}
.p-cart__item-info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  font-weight: 500;
  color: #7C7C7C;
}
@media only screen and (min-width: 768px) {
  .p-cart__item-info {
    gap: 0.5rem 0.875rem;
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}
.p-cart__item-bottom {
  padding: 0.4375rem;
  display: flex;
  justify-content: space-between;
}
@media only screen and (min-width: 768px) {
  .p-cart__item-bottom {
    padding: 0.9375rem;
  }
}
.p-cart__item-total {
  display: flex;
  align-content: inherit;
  gap: 0.5rem;
  min-width: 6.8125rem;
}
.p-cart__item-total .label {
  font-size: 0.75rem;
  line-height: 1.4166666667;
  font-weight: 500;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) {
  .p-cart__item-total .label {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.p-cart__item-total .price {
  font-size: 1rem;
  line-height: 1.3125;
  color: #B43333;
  font-weight: 700;
  flex: 1 1 auto;
  text-align: right;
}
.p-cart__item-total .price .unit {
  color: #3C3C3C;
  font-size: 0.625rem;
}
@media only screen and (min-width: 768px) {
  .p-cart__item-total .price .unit {
    font-size: 0.75rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-cart__item-total .price {
    font-size: 1.25rem;
    line-height: 1.3;
  }
}
.p-cart__item-amount {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1 1 auto;
}
@media only screen and (min-width: 768px) {
  .p-cart__item-amount {
    gap: 1.75rem;
  }
}
.p-cart__item-amount .label {
  white-space: nowrap;
  font-size: 0.75rem;
}
@media only screen and (min-width: 768px) {
  .p-cart__item-amount .label {
    font-size: 1rem;
  }
}
.p-cart__item-amount .field {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
}
.p-cart__item-amount .quantity-num {
  width: 100%;
  background: #fff;
  border: 1px solid #E3E3E3;
  border-right: none;
  border-left: none;
  max-width: 5.125rem;
  font-size: 0.75rem;
  line-height: 1.4166666667;
  min-height: 1.5rem;
  font-weight: 500;
  flex: 1 1 auto;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .p-cart__item-amount .quantity-num {
    max-width: 6.25rem;
    font-size: 1rem;
    line-height: 1.5;
    min-height: 2.5rem;
  }
}
.p-cart__item-amount .quantity-add, .p-cart__item-amount .quantity-sub {
  display: flex;
  width: 1.5rem;
  flex: 0 0 auto;
  height: 1.5rem;
  background: #E3E3E3;
  border: none;
  appearance: none !important;
  position: relative;
  transition: 0.3s ease-out;
  transition-property: opacity;
}
@media (hover: hover) {
  .p-cart__item-amount .quantity-add:hover, .p-cart__item-amount .quantity-sub:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .p-cart__item-amount .quantity-add:active, .p-cart__item-amount .quantity-sub:active {
    opacity: 0.7;
  }
}
@media only screen and (min-width: 768px) {
  .p-cart__item-amount .quantity-add, .p-cart__item-amount .quantity-sub {
    height: 2.5rem;
    width: 2.5rem;
  }
}
.p-cart__item-amount .quantity-add::before, .p-cart__item-amount .quantity-add::after, .p-cart__item-amount .quantity-sub::before, .p-cart__item-amount .quantity-sub::after {
  content: "";
  background: #3C3C3C;
  height: 1px;
  width: 0.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 768px) {
  .p-cart__item-amount .quantity-add::before, .p-cart__item-amount .quantity-add::after, .p-cart__item-amount .quantity-sub::before, .p-cart__item-amount .quantity-sub::after {
    width: 0.875rem;
  }
}
.p-cart__item-amount .quantity-add::after, .p-cart__item-amount .quantity-sub::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.p-cart__item-amount .quantity-add {
  border-radius: 0.125rem 0 0 0.125rem;
}
.p-cart__item-amount .quantity-sub {
  border-radius: 0 0.125rem 0.125rem 0;
}
.p-cart__item-amount .quantity-sub::after {
  display: none;
}

.p-shopping__container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media only screen and (min-width: 768px) {
  .p-shopping__container {
    gap: 1.25rem;
  }
}
.p-shopping__block-head {
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .p-shopping__block-head {
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
.p-shopping__block-head::before {
  content: "";
  width: 100%;
  height: 4px;
  background: radial-gradient(circle at center, #000 1px, transparent 1px);
  background-size: 4px 4px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
}
.p-shopping__block-head--btns {
  display: flex;
  gap: 0.5rem;
}
@media only screen and (min-width: 768px) {
  .p-shopping__block-head--btns {
    gap: 1rem;
  }
}
.p-shopping__block-title {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  color: #3C3C3C;
}
@media only screen and (min-width: 768px) {
  .p-shopping__block-title {
    font-size: 1.25rem;
    line-height: 1.45;
  }
}
.p-shopping__block-body #payment_method {
  padding: 0 !important;
}
.p-shopping__block-body .ec-totalBox {
  padding: 0.75rem;
  background: #fff;
  border-radius: 0.25rem;
  margin: 1rem 0 0;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .p-shopping__block-body .ec-totalBox {
    padding: 1rem;
    margin-top: 1.25rem;
  }
}
.p-shopping__block-body #zeus_payment_confirm {
  border: none;
  padding: 0;
  margin-top: 0.75rem;
  line-height: 1.4;
  font-size: 0.625rem;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .p-shopping__block-body #zeus_payment_confirm {
    font-size: 0.875rem;
    line-height: 1.5714285714;
  }
}
.p-shopping__block-body #zeus_payment_confirm .text-danger {
  color: #FF0000;
  margin-top: 0.5rem;
  display: block;
}
@media only screen and (min-width: 768px) {
  .p-shopping__block-body #zeus_payment_confirm .text-danger {
    margin-top: 0.75rem;
  }
}
.p-shopping__block-body #zeus_payment_confirm dl {
  font-size: 0.875rem;
  line-height: 1.4285714286;
}
.p-shopping__block-body #zeus_payment_confirm dl dt,
.p-shopping__block-body #zeus_payment_confirm dl dd {
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .p-shopping__block-body #zeus_payment_confirm dl {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.p-shopping__block-body #zeus_input_method {
  font-size: 0.75rem;
  line-height: 1.4166666667;
}
@media only screen and (min-width: 768px) {
  .p-shopping__block-body #zeus_input_method {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.p-shopping__payment .ec-rectHeading h2 {
  font-size: 0.875rem;
  line-height: 1.4285714286;
  font-weight: 500;
  color: #3C3C3C;
  margin: 1.25rem 0 0.75rem;
  background: none;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .p-shopping__payment .ec-rectHeading h2 {
    font-size: 1rem;
    line-height: 1.5;
    margin: 1rem 0 0.75rem;
  }
}
.p-shopping__payment-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media only screen and (min-width: 768px) {
  .p-shopping__payment-list {
    gap: 0.75rem;
  }
}
.p-shopping__payment-item input[type=radio] {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.p-shopping__payment-item input[type=radio]:checked + label::after, .p-shopping__payment-item input[type=radio]:checked + span::after {
  opacity: 1;
}
.p-shopping__payment-item input[type=radio] + label, .p-shopping__payment-item input[type=radio] + span {
  font-size: 0.75rem;
  line-height: 1.4166666667;
  font-weight: 500;
  display: inline-block;
  padding-left: 1.5625rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .p-shopping__payment-item input[type=radio] + label, .p-shopping__payment-item input[type=radio] + span {
    font-size: 1rem;
    line-height: 1.5;
    padding-left: 2.25rem;
  }
}
.p-shopping__payment-item input[type=radio] + label::before, .p-shopping__payment-item input[type=radio] + label::after, .p-shopping__payment-item input[type=radio] + span::before, .p-shopping__payment-item input[type=radio] + span::after {
  content: "";
  width: 1.0625rem;
  aspect-ratio: 1/1;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}
@media only screen and (min-width: 768px) {
  .p-shopping__payment-item input[type=radio] + label::before, .p-shopping__payment-item input[type=radio] + label::after, .p-shopping__payment-item input[type=radio] + span::before, .p-shopping__payment-item input[type=radio] + span::after {
    width: 1.5rem;
  }
}
.p-shopping__payment-item input[type=radio] + label::before, .p-shopping__payment-item input[type=radio] + span::before {
  border: 1px solid #D3D3D3;
  background: #fff;
}
.p-shopping__payment-item input[type=radio] + label::after, .p-shopping__payment-item input[type=radio] + span::after {
  width: 0.625rem;
  left: 0.21875rem;
  background: #B43333;
  opacity: 0;
}
@media only screen and (min-width: 768px) {
  .p-shopping__payment-item input[type=radio] + label::after, .p-shopping__payment-item input[type=radio] + span::after {
    width: 0.875rem;
    left: 0.3125rem;
  }
}
.p-shopping__payment-item input[type=radio] + label a, .p-shopping__payment-item input[type=radio] + span a {
  color: #0089FF;
  text-decoration: underline;
  transition: 0.3s ease-out;
  transition-property: opacity;
}
@media (hover: hover) {
  .p-shopping__payment-item input[type=radio] + label a:hover, .p-shopping__payment-item input[type=radio] + span a:hover {
    opacity: 0.7;
  }
}
@media (hover: none) {
  .p-shopping__payment-item input[type=radio] + label a:active, .p-shopping__payment-item input[type=radio] + span a:active {
    opacity: 0.7;
  }
}
.p-shopping__payment-item #zeus_payment_input {
  border: none;
  padding: 0;
  margin-top: 0.75rem;
  line-height: 1.4;
  font-size: 0.625rem;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .p-shopping__payment-item #zeus_payment_input {
    font-size: 0.875rem;
    line-height: 1.5714285714;
  }
}
.p-shopping__payment-item #zeus_payment_input .text-danger {
  color: #FF0000;
  margin-top: 0.5rem;
  display: block;
}
@media only screen and (min-width: 768px) {
  .p-shopping__payment-item #zeus_payment_input .text-danger {
    margin-top: 0.75rem;
  }
}
.p-shopping__payment-item #zeus_payment_input dl#zeus_input_name .ec-halfInput {
  display: flex;
  gap: 0.5rem;
}
@media only screen and (min-width: 768px) {
  .p-shopping__payment-item #zeus_payment_input dl#zeus_input_name .ec-halfInput {
    gap: 1rem;
  }
}
.p-shopping__payment-item #zeus_payment_input dl#zeus_input_name .ec-halfInput input {
  width: calc(50% - 0.25rem);
}
@media only screen and (min-width: 768px) {
  .p-shopping__payment-item #zeus_payment_input dl#zeus_input_name .ec-halfInput input {
    width: calc(50% - 0.5rem);
  }
}
.p-shopping__payment-item #zeus_payment_input dl#zeus_input_expire select {
  width: 5rem;
  min-width: 5rem;
}
.p-shopping__payment-item #zeus_payment_input dl#zeus_input_cvv input {
  width: 9.375rem;
}
.p-shopping__payment-item #zeus_payment_input dl#zeus_input_cvv .ec-halfInput {
  display: flex;
  flex-direction: column;
}
.p-shopping__payment-item #zeus_payment_input dl#zeus_input_cvv .d-flex {
  gap: 0.5rem;
  max-width: 25rem;
}
@media only screen and (min-width: 768px) {
  .p-shopping__payment-item #zeus_payment_input dl#zeus_input_cvv .d-flex {
    gap: 1rem;
  }
}
.p-shopping__payment-item #zeus_payment_input dl#zeus_input_cvv .col-sm-6 {
  width: calc(50% - 0.25rem);
}
@media only screen and (min-width: 768px) {
  .p-shopping__payment-item #zeus_payment_input dl#zeus_input_cvv .col-sm-6 {
    width: calc(50% - 0.5rem);
  }
}
.p-shopping__payment-item #zeus_payment_input dl#zeus_input_cvv .col-sm-6 img {
  max-width: 100%;
}
.p-shopping__payment-item #zeus_payment_input dl dt label {
  font-size: 0.875rem;
  line-height: 1.4285714286;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .p-shopping__payment-item #zeus_payment_input dl dt label {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.p-shopping__payment-item #zeus_payment_input dl input[type=text],
.p-shopping__payment-item #zeus_payment_input dl input[type=tel],
.p-shopping__payment-item #zeus_payment_input dl input[type=email],
.p-shopping__payment-item #zeus_payment_input dl input[type=password],
.p-shopping__payment-item #zeus_payment_input dl select,
.p-shopping__payment-item #zeus_payment_input dl textarea {
  min-width: 9.375rem;
  width: auto;
  display: inline-block;
  border: 1px solid #D3D3D3;
  background: #fff;
  border-radius: 0.125rem;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  font-weight: 400;
  letter-spacing: 0;
  padding: 0.5625rem 0.6875rem;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .p-shopping__payment-item #zeus_payment_input dl input[type=text],
  .p-shopping__payment-item #zeus_payment_input dl input[type=tel],
  .p-shopping__payment-item #zeus_payment_input dl input[type=email],
  .p-shopping__payment-item #zeus_payment_input dl input[type=password],
  .p-shopping__payment-item #zeus_payment_input dl select,
  .p-shopping__payment-item #zeus_payment_input dl textarea {
    font-size: 1rem;
    line-height: 1.5;
    padding: 0.75rem 0.9375rem;
  }
}
.p-shopping__payment-item #zeus_payment_input dl input[type=text]:placeholder,
.p-shopping__payment-item #zeus_payment_input dl input[type=tel]:placeholder,
.p-shopping__payment-item #zeus_payment_input dl input[type=email]:placeholder,
.p-shopping__payment-item #zeus_payment_input dl input[type=password]:placeholder,
.p-shopping__payment-item #zeus_payment_input dl select:placeholder,
.p-shopping__payment-item #zeus_payment_input dl textarea:placeholder {
  color: #BABABA;
}
.p-shopping__payment-item #zeus_payment_input dl select {
  appearance: none;
  background: #fff url(../img/common/select.svg) no-repeat right 0.75rem center/0.375rem auto;
}
@media only screen and (min-width: 768px) {
  .p-shopping__payment-item #zeus_payment_input dl select {
    background: #fff url(../img/common/select.svg) no-repeat right 1rem center/0.5rem auto;
  }
}
.p-shopping__payment-item #zeus_payment_input #zeus_input_quick {
  font-size: 0.75rem;
  line-height: 1.4166666667;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .p-shopping__payment-item #zeus_payment_input #zeus_input_quick {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}
.p-shopping__payment-item #zeus_payment_input #zeus_input_quick dt {
  position: relative;
  display: flex;
  flex-direction: column;
}
.p-shopping__payment-item #zeus_payment_input #zeus_input_quick input[type=checkbox] {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.p-shopping__payment-item #zeus_payment_input #zeus_input_quick input[type=checkbox]:checked + label::before {
  background: #B43333;
}
.p-shopping__payment-item #zeus_payment_input #zeus_input_quick input[type=checkbox]:checked + label::after {
  opacity: 1;
}
.p-shopping__payment-item #zeus_payment_input #zeus_input_quick input[type=checkbox] + label {
  font-size: 0.75rem;
  line-height: 1.4166666667;
  font-weight: 500;
  display: inline-block;
  padding-left: 1.5625rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .p-shopping__payment-item #zeus_payment_input #zeus_input_quick input[type=checkbox] + label {
    font-size: 1rem;
    line-height: 1.5;
    padding-left: 2.25rem;
  }
}
.p-shopping__payment-item #zeus_payment_input #zeus_input_quick input[type=checkbox] + label::before, .p-shopping__payment-item #zeus_payment_input #zeus_input_quick input[type=checkbox] + label::after {
  content: "";
  width: 1.0625rem;
  aspect-ratio: 1/1;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (min-width: 768px) {
  .p-shopping__payment-item #zeus_payment_input #zeus_input_quick input[type=checkbox] + label::before, .p-shopping__payment-item #zeus_payment_input #zeus_input_quick input[type=checkbox] + label::after {
    width: 1.5rem;
  }
}
.p-shopping__payment-item #zeus_payment_input #zeus_input_quick input[type=checkbox] + label::before {
  border: 1px solid #D3D3D3;
  background: #fff;
  border-radius: 0.125rem;
}
.p-shopping__payment-item #zeus_payment_input #zeus_input_quick input[type=checkbox] + label::after {
  background: url(../img/common/check.svg) no-repeat center center/contain;
  opacity: 0;
}
.p-shopping__remarks-title {
  font-size: 0.875rem;
  line-height: 1.4285714286;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .p-shopping__remarks-title {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
  }
}
.p-shopping__remarks-field textarea {
  resize: none;
  height: 5rem;
}
.p-shopping__bottom {
  margin-top: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .p-shopping__bottom {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    direction: rtl;
  }
}
.p-shopping__address {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media only screen and (min-width: 768px) {
  .p-shopping__address {
    gap: 1rem;
  }
}
.p-shopping__address-item {
  display: flex;
  gap: 0.5rem;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  .p-shopping__address-item {
    font-size: 1rem;
    line-height: 1.5;
    gap: 1.5rem;
  }
}
.p-shopping__address-item.--center {
  align-items: center;
}
.p-shopping__address-item .label {
  font-weight: 500;
  flex: 0 0 auto;
  width: 3.75rem;
}
@media only screen and (min-width: 768px) {
  .p-shopping__address-item .label {
    width: 9.25rem;
  }
}
.p-shopping__address-item .field {
  flex: 1 1 auto;
}
.p-shopping__hr {
  background: #E3E3E3;
  height: 1px;
  width: 100%;
  border: none;
  margin: 0.75rem 0;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .p-shopping__hr {
    margin: 1.25rem 0;
  }
}
.p-shopping__complete-title {
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 768px) {
  .p-shopping__complete-title {
    margin: 1.5rem;
    font-size: 1.5rem;
    line-height: 1.4583333333;
  }
}
.p-shopping__complete-text {
  font-size: 0.75rem;
  line-height: 1.8333333333;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  .p-shopping__complete-text {
    font-size: 1.125rem;
    line-height: 1.7777777778;
    margin-bottom: 2.5rem;
  }
}
.p-shopping__complete-box {
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .p-shopping__complete-box {
    margin-bottom: 2rem;
  }
}
.p-shopping__complete-box-title {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  position: relative;
  padding-bottom: 0.75rem;
  margin-bottom: 0.625rem;
  position: relative;
  text-align: center;
}
.p-shopping__complete-box-title::before {
  content: "";
  width: 100%;
  height: 4px;
  background: radial-gradient(circle at center, #000 1px, transparent 1px);
  background-size: 4px 4px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
}
@media only screen and (min-width: 768px) {
  .p-shopping__complete-box-title {
    font-size: 1.25rem;
    line-height: 1.45;
    margin-bottom: 1.25rem;
    margin-bottom: 0.875rem;
  }
}
.p-shopping__complete-box-number {
  text-align: center;
  color: #B43333;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}
@media only screen and (min-width: 768px) {
  .p-shopping__complete-box-number {
    font-size: 3.125rem;
    line-height: 1.32;
  }
}

/*# sourceMappingURL=customize.css.map */
