@charset "UTF-8";
/* =============================================================
    Components
============================================================= */
/**
 * #c-userNav-title
 */
.c-userNav-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media screen and (min-width: 992px) {
  .c-userNav-title {
    gap: 0.8rem;
  }
}

.c-userNav-title__text {
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.3;
}

@media screen and (min-width: 992px) {
  .c-userNav-title__text {
    font-size: 1.5rem;
  }
}

.c-userNav-title__iconWrap {
  width: 2.3rem;
}

.c-userNav-title__icon {
  margin: 0 auto;
}

/**
 * #c-userNav-link
 */
.c-userNav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.6rem;
  padding: 1rem 1.4rem 1rem 1.7rem;
  line-height: 1.2;
  font-size: 1.4rem;
}

@media screen and (min-width: 992px) {
  .c-userNav-link {
    padding: 0.9rem 1.6rem 0.8rem 1.6rem;
    line-height: 1.5;
    font-size: 1.3rem;
  }
}

.c-userNav-link--active {
  font-weight: 600;
}

@media screen and (min-width: 992px) {
  .c-userNav-link:hover {
    background-color: var(--color-gray-light);
  }
}

.c-userNav-link::after {
  content: "";
  display: block;
  width: 0.636rem;
  aspect-ratio: 1/1.778;
  background: url(../img/common/icon/icon-arrow-userNav.svg) center/100% no-repeat;
}

@media screen and (min-width: 992px) {
  .c-userNav-link::after {
    content: none;
  }
}

/**
 * #c-userSectHeading
 */
.c-userSectHeading__title {
  margin-bottom: 1.3rem;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
}

@media screen and (min-width: 768px) {
  .c-userSectHeading__title {
    margin-bottom: 1.4rem;
  }
}

.c-userSectHeading__title-primary {
  color: var(--color-primary);
}

.c-userSectHeading__title-red {
  color: var(--color-red);
}

.c-userSectHeading__lead {
  font-size: 1.4rem;
  line-height: 1.6;
}

.c-userSectHeading__link {
  text-decoration: underline;
}

.c-userSectHeading__link:hover {
  text-decoration: underline;
}

.c-userSectHeading__ownerNotice {
  font-size: 1.4rem;
}

  .c-userSectHeading__ownerNotice a {
    color: var(--color-blue-heavy);
    text-decoration: underline;
  }

/**
 * #c-userSect-info
 */
@media screen and (min-width: 768px) {
  .c-userSect-info {
    display: flex;
    gap: 1rem;
  }
}

.c-userSect-info:not(:first-child) {
  margin-top: 0.7rem;
}

@media screen and (min-width: 768px) {
  .c-userSect-info:not(:first-child) {
    margin-top: 0.7rem;
  }
}

.c-userSect-info__title {
  display: inline;
  font-size: 1.4rem;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .c-userSect-info__title {
    display: inline-block;
    flex-shrink: 0;
    width: 22%;
  }
}

.c-userSect-info__title::after {
  content: "：";
}

.c-userSect-info__text {
  display: inline;
  font-size: 1.4rem;
  line-height: 1.6;
  white-space: pre-wrap;
}

@media screen and (min-width: 768px) {
  .c-userSect-info__text {
    display: inline-block;
  }
}

.c-userSect-info__text--red {
  font-weight: 600;
  color: var(--color-red);
}

.c-userSectCol-infoInline {
  font-size: 1.4rem;
  line-height: 1.6;
}

  .c-userSectCol-infoInline:not(:first-child) {
    margin-top: 0.7rem;
  }

@media screen and (min-width: 768px) {
  .c-userSectCol-infoInline:not(:first-child) {
    margin-top: 0.7rem;
  }
}

.c-userSectCol-infoInline__title {
  display: inline;
}

  .c-userSectCol-infoInline__title::after {
    content: "：";
  }

.c-userSectCol-infoInline__text {
  display: inline;
}

.c-userSectCol-infoInline__text--bold {
  font-weight: 600;
}

.c-userSectCol-infoInline__text--red {
  font-weight: 600;
  color: var(--color-red);
}

.c-userSectCol-infoInline__text--sIcon {
  font-size: 1.2rem;
}

/**
 * #c-userSect-infoList
 */
.c-userSect-infoList__annotation {
  margin-top: 1.3rem;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--color-dark);
}

/**
 * #c-userSect-entry
 */
.c-userSect-entry {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

  .c-userSect-entry:not(:first-child) {
    margin-top: 2rem;
  }

@media screen and (min-width: 768px) {
  .c-userSect-entry {
    flex-direction: row;
    justify-content: space-between;
    gap: 3%;
    padding: 2rem 2.5rem;
    border-top: 1px solid var(--color-gray);
  }

    .c-userSect-entry:not(:first-child) {
      margin-top: 0;
    }
}

.c-userSect-entry__title {
  display: flex;
  align-items: center;
  align-content: flex-start;
  font-size: 1.4rem;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .c-userSect-entry__title {
    align-items: flex-start;
    width: 36.5%;
    margin-top: 0.9rem;
    line-height: 1.3;
  }
}

@media screen and (min-width: 768px) {
  .c-userSect-entry__title--top-md-gap-short {
    margin-top: 0.2rem;
  }
}

.c-userSect-entry__title .c-required-icon {
  flex-shrink: 0;
  margin-left: 0.8rem;
}

@media screen and (min-width: 768px) {
  .c-userSect-entry__form {
    width: 60.5%;
  }
}

/* 楽天クレカ用のCSS */
@media screen and ((min-width: 658px) and (max-width: 674px)), ((min-width: 736px) and (max-width: 768px)) {
  .c-userSect-entry--rakuten {
    flex-direction: row;
    justify-content: space-between;
    gap: 3%;
    padding: 2rem 2.5rem;
    border-top: 1px solid var(--color-gray);
  }

    .c-userSect-entry--rakuten:not(:first-child) {
      margin-top: 0;
    }

  .c-userSect-entry__title--rakuten {
    align-items: flex-start;
    width: 36.5%;
    margin-top: 0.9rem;
    line-height: 1.3;
  }

  .c-userSect-entry__title--top-md-gap-short--rakuten {
    margin-top: 0.2rem;
  }

  .c-userSect-entry__form--rakuten {
    width: 60.5%;
  }
}

/**
 * #c-userSectCol-info
 */
.c-userSectCol-infoTitle {
  font-size: 1.4rem;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .c-userSectCol-infoTitle {
    margin-bottom: 1.6rem;
  }
}

/**
 * #c-userSectCol-info
 */
.c-userSectCol-info {
  font-size: 1.4rem;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .c-userSectCol-info {
    display: flex;
    gap: 2rem;
  }
}

.c-userSectCol-info:not(:first-child) {
  margin-top: 0.7rem;
}

@media screen and (min-width: 768px) {
  .c-userSectCol-info:not(:first-child) {
    margin-top: 0.7rem;
  }
}

.c-userSectCol-info__title {
  display: inline;
  font-size: 1.4rem;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .c-userSectCol-info__title {
    display: inline-block;
    flex-shrink: 0;
    width: 22%;
  }
}

.c-userSectCol-info__title::after {
  content: "：";
  letter-spacing: -0.4rem;
}

.c-userSectCol-info__text {
  display: inline;
  font-size: 1.4rem;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .c-userSectCol-info__text {
    display: inline-block;
  }
}

.c-userSectCol-info__text--bold {
  font-weight: 600;
}

/**
 * #c-userSectCol-check
 */
.c-userSectCol-check {
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
}

@media screen and (min-width: 768px) {
  .c-userSectCol-check {
    margin-bottom: 1.7rem;
  }
}

.c-userSectCol-check__checkbox {
  flex-shrink: 0;
}

.c-userSectCol-check__label {
  width: 100%;
}

/**
 * #c-userSectCol-radioItem
 */
.c-userSectCol-radioItem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.c-userSectCol-radioItem__select {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

  .c-userSectCol-radioItem__select input {
    flex-shrink: 0;
  }

.c-userSectCol-radioItem__selectName {
  margin-top: 0.3rem;
}

.c-userSectCol-radioItem__price {
  flex-shrink: 0;
  margin-top: 0.3rem;
}

/**
 * #c-userSectCol-annotation
 */
.c-userSectCol-annotation {
  margin-top: 1.5rem;
}

@media screen and (min-width: 768px) {
  .c-userSectCol-annotation {
    margin-top: 2rem;
  }
}

.c-userSectCol-annotation__text {
  font-size: 1.2rem;
  color: var(--color-dark);
}

  .c-userSectCol-annotation__text:not(:first-child) {
    margin-top: 0.6rem;
  }

@media screen and (min-width: 768px) {
  .c-userSectCol-annotation__text:not(:first-child) {
    margin-top: 0.6rem;
  }
}

.c-userSectCol-annotation__text--warning {
  color: var(--color-red);
}

/**
 * #c-userSectForm-annotation
 */
.c-userSectForm-annotation {
  margin-top: 1.3rem;
}

@media screen and (min-width: 768px) {
  .c-userSectForm-annotation {
    margin-top: 0;
    padding: 0 2.5rem 1.6rem;
  }
}

.c-userSectForm-annotation__text {
  font-size: 1.2rem;
  color: var(--color-dark);
}

  .c-userSectForm-annotation__text:not(:first-child) {
    margin-top: 0.6rem;
  }

@media screen and (min-width: 768px) {
  .c-userSectForm-annotation__text:not(:first-child) {
    margin-top: 0.6rem;
  }
}

.c-userSectForm-annotation__text--warning {
  color: var(--color-red);
}

.c-userSectForm-annotation__link {
  text-decoration: underline;
}

/* =============================================================
    Module
============================================================= */
/**
 * #m-userSect
 */
.m-userSect-wrap {
  padding-top: 2.2rem;
  padding-bottom: 2.3rem;
  border-bottom: solid 1px var(--color-gray);
}

@media screen and (min-width: 768px) {
  .m-userSect-wrap {
    padding-top: 2.7rem;
    padding-bottom: 2.4rem;
  }
}

.m-userSect-wrap:first-child {
  border-top: solid 1px var(--color-gray);
}

.m-userSect-wrap--top:first-child {
  padding-top: 0;
  border-top: none;
}

@media screen and (min-width: 768px) {
  .m-userSect-wrap--top:first-child {
    padding-top: 0.6rem;
  }
}

.m-userSect-wrap--gray {
  padding: 2.2rem 1.6rem 2rem;
  border-radius: 0.5rem;
  border: none !important;
  background-color: var(--color-gray-light);
}

@media screen and (min-width: 768px) {
  .m-userSect-wrap--gray {
    padding: 2.8rem 2.5rem 2.4rem;
    border-radius: 1rem;
  }
}

.m-userSect-wrap--border {
  padding: 2.2rem 1.6rem 2rem;
  border-radius: 0.5rem;
  border: solid 1px var(--color-gray);
}

@media screen and (min-width: 768px) {
  .m-userSect-wrap--border {
    padding: 2.8rem 2.5rem 2.4rem;
    border-radius: 1rem;
  }
}

.m-userSect-wrap--confirm {
  padding: 0;
  border-top: none;
  border-bottom: none;
}

@media screen and (min-width: 768px) {
  .m-userSect-wrap--confirm {
    padding: 2.8rem 2.5rem 2.4rem;
    border-radius: 1rem;
    border: none;
    background-color: var(--color-gray-light);
  }
}

.m-userSect-wrap--confirm:first-child {
  border-top: none;
}

.m-userSect-wrap--confirm .m-userSect:not(:last-of-type) {
  padding-bottom: 1.9rem;
  margin-bottom: 2.1rem;
  border-bottom: solid 1px var(--color-gray);
}

@media screen and (min-width: 768px) {
  .m-userSect-wrap--confirm .m-userSect:not(:last-of-type) {
    padding-bottom: 0;
    margin-bottom: 3.4rem;
    border-bottom: none;
  }
}

.m-userSect:not(:last-of-type) {
  margin-bottom: 3.4rem;
}

@media screen and (min-width: 768px) {
  .m-userSect:not(:last-of-type) {
    margin-bottom: 3.3rem;
  }
}

.m-userSect--typeSep {
  display: flex;
  flex-direction: column;
  gap: 2.15rem;
}

@media screen and (min-width: 768px) {
  .m-userSect--typeSep {
    flex-direction: row;
    justify-content: space-between;
    gap: 4rem;
  }
}

.m-userSect--products {
  margin-bottom: 2.45rem;
}

@media screen and (min-width: 768px) {
  .m-userSect--products {
    margin-bottom: 2.7rem;
  }
}

.m-userSect--products:not(:last-of-type) {
  margin-bottom: 2.45rem;
}

@media screen and (min-width: 768px) {
  .m-userSect--products:not(:last-of-type) {
    margin-bottom: 2.7rem;
  }
}

.m-userSect__info {
  width: 100%;
}

.m-userSect__button-wrap {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .m-userSect__button-wrap {
    flex-shrink: 0;
    width: 15%;
  }
}

.m-userSect-button {
  width: 80%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .m-userSect-button {
    width: 100%;
  }
}

.m-userSect-button:not(:first-child) {
  margin-top: 1rem;
}

.m-userSect-body {
  margin-top: 1.4rem;
}

@media screen and (min-width: 768px) {
  .m-userSect-body {
    margin-top: 1.2rem;
  }
}

/**
 * #m-userSectFrom
 */
.m-userSectForm-wrap {
  padding: 0;
}

@media screen and (min-width: 768px) {
  .m-userSectForm-wrap {
    padding: 2.8rem 0 1rem;
    background-color: var(--color-gray-light);
    border-radius: 1rem;
  }
}

.m-userSectForm-wrap--noneTitle {
  padding-top: 0;
}

@media screen and (min-width: 768px) {
  .m-userSectForm-wrap--noneTitle {
    padding-top: 1rem;
  }
}

.m-userSectForm-wrap--noneTitle .m-userSectForm-body {
  margin-top: 0;
}

.m-userSectForm-wrap--noneTitle .c-userSect-entry:first-child {
  border-top: none;
}

@media screen and (min-width: 768px) {
  .m-userSectForm .c-userSectHeading {
    padding: 0 2.5rem;
  }
}

.m-userSectForm-body {
  margin-top: 1.2rem;
}

@media screen and (min-width: 768px) {
  .m-userSectForm-body {
    margin-top: 1.6rem;
  }
}

.m-userSectForm-body--wide {
  margin-top: 1.3rem;
}

@media screen and (min-width: 768px) {
  .m-userSectForm-body--wide .c-userSect-entry {
    padding: 2rem 2.7rem;
    justify-content: flex-start;
  }
}

@media screen and (min-width: 768px) {
  .m-userSectForm-body--wide .c-userSect-entry__title {
    width: 30%;
  }
}

@media screen and (min-width: 992px) {
  .m-userSectForm-body--wide .c-userSect-entry__title {
    width: 23.8%;
  }
}

@media screen and (min-width: 768px) {
  .m-userSectForm-body--wide .c-userSect-entry__form {
    width: 60%;
  }
}

@media screen and (min-width: 992px) {
  .m-userSectForm-body--wide .c-userSect-entry__form {
    width: 42.2%;
  }
}

@media screen and (min-width: 768px) {
  .m-userSectForm-body--wide .c-userSect-entry__form--wide {
    width: 67%;
  }
}

@media screen and (min-width: 992px) {
  .m-userSectForm-body--wide .c-userSect-entry__form--wide {
    width: 74%;
  }
}

.m-userSectForm-body-contents {
  padding: 2.1rem 0 0;
}

@media screen and (min-width: 768px) {
  .m-userSectForm-body-contents {
    padding: 2rem 0;
    border-top: 1px solid var(--color-gray);
  }
}

@media screen and (min-width: 768px) {
  .m-userSectForm-body-contents__info {
    padding: 0 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .m-userSectForm-body-contents__info--shipping .c-userSect-info__title {
    width: 13%;
  }
}

.m-userSectForm-body-contents__info--creditCard {
  padding-top: 2.1rem;
}

@media screen and (min-width: 768px) {
  .m-userSectForm-body-contents__info--creditCard {
    padding-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .m-userSectForm-body-contents__info--creditCard .c-userSect-info__title {
    width: 15%;
  }
}

@media screen and (min-width: 768px) {
  .m-userSectForm-body-contents .c-userSect-entry:first-child {
    padding-top: 0;
    border-top: none;
  }
}

.m-userSectForm-body-payment-selector {
  padding: 2.4rem 0 0;
}

@media screen and (min-width: 768px) {
  .m-userSectForm-body-payment-selector .c-userSect-info__title {
    width: 15%;
  }
}

.m-userSectForm-body .consent-to-personal-info-usage {
  display: flex;
  justify-content: center;
}

  .m-userSectForm-body .consent-to-personal-info-usage > .c-btn {
    margin: 1.5rem auto 2.5rem;
    width: 60%;
  }

/**
 * #m-userSectCol
 */
.m-userSectCol {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  padding: 2.2rem 0 1.8rem;
  border-top: 1px solid var(--color-gray);
}

@media screen and (min-width: 768px) {
  .m-userSectCol {
    flex-direction: row;
    justify-content: space-between;
    gap: 3%;
    padding: 2.7rem 0 2.7rem 1.6rem;
  }
}

.m-userSectCol:last-child {
  border-bottom: 1px solid var(--color-gray);
}

.m-userSectCol--border-none {
  border: none;
}

  .m-userSectCol--border-none:last-child {
    border: none;
  }

@media screen and (min-width: 768px) {
  .m-userSectCol-head {
    width: 22%;
  }
}

.m-userSectCol-head__title {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
}

@media screen and (min-width: 768px) {
  .m-userSectCol-head__title {
    margin-top: 0.2rem;
  }
}

@media screen and (min-width: 768px) {
  .m-userSectCol-body {
    width: 78%;
  }
}

@media screen and (min-width: 768px) {
  .m-userSectCol-body__inner {
    max-width: 55%;
  }
}

@media screen and (min-width: 768px) {
  .m-userSectCol-typeText {
    padding-right: 1.6rem;
  }
}

.m-userSectCol-typeSep {
  display: flex;
  flex-direction: column;
  gap: 2.05rem;
}

@media screen and (min-width: 768px) {
  .m-userSectCol-typeSep {
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
  }
}

.m-userSectCol-typeSep__button-wrap {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .m-userSectCol-typeSep__button-wrap {
    flex: 0 0 43.5%;
  }
}

.m-userSectCol-typeSep-button {
  width: 80%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .m-userSectCol-typeSep-button {
    width: 100%;
  }
}

.m-userSectCol-typeSep-button:not(:first-child) {
  margin-top: 1rem;
}

.m-userSectCol-typeRadio {
  padding-bottom: 1.8rem;
  border-bottom: solid 1px var(--color-gray);
}

  .m-userSectCol-typeRadio:not(:first-child) {
    margin-top: 1.4rem;
  }

@media screen and (min-width: 768px) {
  .m-userSectCol-typeRadio:not(:first-child) {
    margin-top: 2.6rem;
  }
}

@media screen and (min-width: 768px) {
  .m-userSectCol-typeRadio__item:first-child .c-userSectCol-radioItem {
    padding-top: 0;
    border-top: none;
  }
}

.m-userSectCol-typeRadio__item:last-child .c-userSectCol-radioItem {
  padding-bottom: 0;
}

.m-userSectCol-typeRadio__item:last-child .m-userSectCol-entryFormWrap {
  padding-bottom: 2.2rem;
  margin-top: 1.8rem;
}

@media screen and (min-width: 768px) {
  .m-userSectCol-typeRadio__item .c-userSectCol-radioItem__price {
    padding-right: 1.3rem;
  }
}

.m-userSectCol-typeRadio .c-userSectCol-radioItem {
  padding: 1.4rem 0 1.8rem;
  border-top: 1px solid var(--color-gray);
}

.m-userSectCol-entryFormWrap {
  padding: 2rem 0 4rem;
  border-top: solid 1px var(--color-gray);
}

@media screen and (min-width: 768px) {
  .m-userSectCol-entryFormWrap {
    padding: 1.8rem 0 4.2rem;
  }
}

@media screen and (min-width: 768px) {
  .m-userSectCol-entryForm {
    padding: 3rem 3rem 2.8rem;
    border-radius: 1rem;
    background-color: var(--color-gray-light);
  }
}

.m-userSectCol-entryForm__title {
  margin-bottom: 0.9rem;
}

@media screen and (min-width: 768px) {
  .m-userSectCol-entryForm .m-formInputArea-item {
    max-width: 87%;
  }
}

@media screen and (min-width: 768px) {
  .m-userSectCol-entryForm .m-formInputArea-item--fluid {
    max-width: none;
  }
}

.m-userSectCol-entry__button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  margin: 2.6rem auto 0.4rem;
  width: 80%;
}

@media screen and (min-width: 768px) {
  .m-userSectCol-entry__button {
    flex-direction: row-reverse;
    gap: 2rem;
    margin: 2rem auto 1.2rem;
    width: 90.5%;
  }
}

.m-userSectCol-entry__buttonItem {
  width: 100%;
}

.m-userSectCol-entryFormAdd {
  margin-top: 2.2rem;
}

/**
* #m-userPriceSummary
*/
@media screen and (min-width: 768px) {
  .m-userPriceSummary {
    padding: 2.4rem 3rem 2.4rem;
    border: 1px solid var(--color-gray);
    border-radius: 1rem;
  }
}

.m-userPriceSummary-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.9rem 0 0;
  border-top: 1px solid var(--color-gray);
}

@media screen and (min-width: 768px) {
  .m-userPriceSummary-list {
    gap: 0.7rem;
    padding: 0;
    border-top: none;
  }
}

.m-userPriceSummary-item {
  display: flex;
  justify-content: space-between;
  gap: 2.1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--color-gray);
  font-size: 1.5rem;
  line-height: 1.6;
  border-bottom: 1px solid var(--color-gray);
}

@media screen and (min-width: 768px) {
  .m-userPriceSummary-item {
    gap: 1.5rem;
    padding-bottom: 0.6rem;
  }
}

.m-userPriceSummary-item--discount {
  color: var(--color-red);
}

.m-userPriceSummary-item__price {
  flex: 0 0 11.7rem;
  text-align: right;
}

@media screen and (min-width: 768px) {
  .m-userPriceSummary-item__price {
    flex: 0 0 20.6rem;
  }
}

.m-userPriceSummary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2%;
  padding: 1.7rem 0 0;
}

@media screen and (min-width: 768px) {
  .m-userPriceSummary-total {
    gap: 4rem;
    padding: 1.8rem 0 0;
  }
}

.m-userPriceSummary-total__title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
}

.m-userPriceSummary-total__title--tax {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 2.16;
}

.m-userPriceSummary-total__price {
  flex: 0 0 58%;
  font-size: 2rem;
  text-align: right;
  font-weight: 600;
  line-height: 1.3;
}

/**
 * #m-userProductSectLine
 */
.m-userProductSectLine__title {
  margin-bottom: 1.3rem;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
}

@media screen and (min-width: 768px) {
  .m-userProductSectLine__title {
    margin-bottom: 1.7rem;
  }
}

.m-userProductSectLine__info {
  margin-bottom: 1.1rem;
}

@media screen and (min-width: 768px) {
  .m-userProductSectLine__info {
    margin-bottom: 1.6rem;
  }
}

.m-userProductSectLine__info-title {
  margin-bottom: 0.9rem;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
}

@media screen and (min-width: 768px) {
  .m-userProductSectLine__info-title {
    margin-bottom: 1.3rem;
  }
}

.m-userProductSectLine__info-text {
  font-size: 1.4rem;
  line-height: 1.6;
}

.m-userProductSectLine__info-annotation {
  margin-top: 1rem;
  font-size: 1.2rem;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .m-userProductSectLine__info-annotation {
    margin-top: 1.3rem;
  }
}

.m-userProductSectWrapLine {
  padding: 2.2rem 1.6rem 1.9rem;
  border-radius: 1rem;
  background-color: var(--color-gray-light);
}

@media screen and (min-width: 768px) {
  .m-userProductSectWrapLine {
    padding: 2.7rem 2.5rem 2.5rem;
  }
}

.m-userProductSectWrapLine__title {
  margin-bottom: 1.3rem;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
}

@media screen and (min-width: 768px) {
  .m-userProductSectWrapLine__title {
    margin-bottom: 1.7rem;
  }
}

.m-userProductSectWrapLine__info {
  margin-bottom: 1.1rem;
}

@media screen and (min-width: 768px) {
  .m-userProductSectWrapLine__info {
    margin-bottom: 1.6rem;
  }
}

.m-userProductSectWrapLine__info-title {
  margin-bottom: 0.9rem;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
}

@media screen and (min-width: 768px) {
  .m-userProductSectWrapLine__info-title {
    margin-bottom: 1.3rem;
  }
}

.m-userProductSectWrapLine__info-text {
  font-size: 1.4rem;
  line-height: 1.6;
}

.m-userProductSectWrapLine__info-annotation {
  margin-top: 1rem;
  font-size: 1.2rem;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .m-userProductSectWrapLine__info-annotation {
    margin-top: 1.3rem;
  }
}

@media screen and (min-width: 768px) {
  .m-userProductSectWrapLine .m-productLineUser-col3-md6__item .c-productUser-favorite {
    width: 5.2rem;
    height: 5.2rem;
  }
}

@media screen and (min-width: 768px) {
  .m-userProductSectWrapLine .m-productLineUser-col3-md6__item .c-productUser-favorite__icon {
    margin-top: 0;
    width: 2rem;
  }
}

/**
 * #m-userProductSectCol
 */
.m-userProductSectCol-item {
  padding: 2.4rem 0;
  border-bottom: solid 1px var(--color-gray);
}

@media screen and (min-width: 768px) {
  .m-userProductSectCol-item {
    padding: 3rem 0;
  }
}

.m-userProductSectCol-item:first-child {
  border-top: solid 1px var(--color-gray);
}

.m-userProductSectCol-item__inner {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 2rem;
}

@media screen and (min-width: 768px) {
  .m-userProductSectCol-item__inner {
    flex-direction: row;
    align-items: center;
  }
}

.m-userProductSectCol-item__button-wrap {
  flex-shrink: 0;
}

@media screen and (min-width: 768px) {
  .m-userProductSectCol-item__button-wrap {
    width: 26.6%;
  }
}

.m-userProductSectCol-product {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
}

@media screen and (min-width: 768px) {
  .m-userProductSectCol-product {
    align-items: center;
    gap: 3rem;
  }
}

.m-userProductSectCol-product__pictureWrap {
  flex: 0 0 11.2rem;
}

@media screen and (min-width: 768px) {
  .m-userProductSectCol-product__pictureWrap {
    flex: 0 0 13.33%;
    margin-left: 0;
  }
}

.m-userProductSectCol-product__picture {
  min-width: 12.8rem;
}

@media screen and (min-width: 768px) {
  .m-userProductSectCol-product__picture:hover {
    opacity: var(--hover-opacity);
    transition: opacity var(--transition-default);
  }
}

.m-userProductSectCol-productDetail {
  width: 100%;
}

.m-userProductSectCol-productDetail__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1;
  font-size: 1.2rem;
}

@media screen and (min-width: 768px) {
  .m-userProductSectCol-productDetail__title {
    -webkit-line-clamp: 2;
    max-width: 28rem;
    margin-bottom: 0.3rem;
    line-height: 1.6;
    font-size: 1.4rem;
    font-weight: 600;
  }
}

.m-userProductSectCol-productDetailInfo {
  font-size: 1.2rem;
}

@media screen and (min-width: 768px) {
  .m-userProductSectCol-productDetailInfo {
    font-size: 1.3rem;
  }
}

.m-userProductSectCol-productDetailInfo:not(:last-child) {
  margin-bottom: 0.2rem;
}

.m-userProductSectCol-productDetailInfo__text {
  display: inline;
}

.m-userProductSectCol-productDetailInfo__title {
  display: inline;
}

  .m-userProductSectCol-productDetailInfo__title::after {
    content: "：";
    letter-spacing: -0.4rem;
  }

.m-orderProductSect-productPrice {
  display: flex;
  align-items: center;
  margin-top: 0.4rem;
  gap: 0.2rem;
}


@media screen and (min-width: 768px) {
  .m-orderProductSect-productPrice {
    margin-top: 0.6rem;
    gap: 0.2rem;
  }
}

.m-orderProductSect-productPrice__price {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}

.m-orderProductSect-productPrice__price--discount {
  color: var(--color-red);
}

.m-orderProductSect-productPrice__icon {
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  height: 1.6rem;
  padding: 0 0.6rem;
  font-size: 1rem;
  color: var(--color-white);
  background-color: var(--color-red);
}

.m-userProductSectCol-button {
  width: 80%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .m-userProductSectCol-button {
    width: 100%;
  }
}

.m-userProductSectCol-buttonList {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 0;
  justify-content: space-between;
}

@media screen and (min-width: 768px) {
  .m-userProductSectCol-buttonList {
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
  }
}

.m-userProductSectCol-buttonList__item {
  width: calc(50% - 0.5rem);
}

@media screen and (min-width: 768px) {
  .m-userProductSectCol-buttonList__item {
    width: 100%;
  }
}

/**
 * #m-userProductSect
 */
.m-userProductSect-title {
  display: none;
}

@media screen and (min-width: 768px) {
  .m-userProductSect-title {
    display: flex;
    padding: 0.9rem 0 0.7rem 2.5%;
    font-size: 1.2rem;
    color: var(--color-gray-middle);
    border-bottom: solid 1px var(--color-gray);
  }
}

@media screen and (min-width: 768px) {
  .m-userProductSect-title__info {
    flex: 0 0 72%;
  }
}

@media screen and (min-width: 768px) {
  .m-userProductSect-title__price {
    flex: 0 0 19.5%;
  }
}

@media screen and (min-width: 768px) {
  .m-userProductSect-title__quantity {
    flex: 0 0 8.5%;
  }
}

.m-userProductSect-item {
  position: relative;
  padding: 2rem 0 2rem;
  border-bottom: solid 1px var(--color-gray);
}

@media screen and (min-width: 768px) {
  .m-userProductSect-item {
    padding: 2rem 0 2rem 2.5%;
  }
}

.m-userProductSect-item:first-child {
  border-top: solid 1px var(--color-gray);
}

@media screen and (min-width: 768px) {
  .m-userProductSect-item:first-child {
    border-top: none;
  }
}

.m-userProductSect-item__inner {
  position: relative;
  display: flex;
  justify-content: flex-start;
  gap: 1.6rem;
}

@media screen and (min-width: 768px) {
  .m-userProductSect-item__inner {
    justify-content: space-between;
    gap: 4.5%;
  }
}

.m-userProductSect-item__pictureWrap {
  flex: 0 0 11.2rem;
}

@media screen and (min-width: 768px) {
  .m-userProductSect-item__pictureWrap {
    flex: 0 0 19.5%;
    margin-left: 0;
  }
}

.m-userProductSect-item__picture {
  min-width: 11.2rem;
}

@media screen and (min-width: 768px) {
  .m-userProductSect-item__picture:hover {
    opacity: var(--hover-opacity);
    transition: opacity var(--transition-default);
  }
}

.m-userProductSect-item__info {
  position: relative;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .m-userProductSect-item__info {
    position: static;
    flex: 0 0 76%;
    display: flex;
    align-items: center;
    gap: 5.4%;
    padding-right: 0;
  }
}

.m-userProductSect-item__annotation {
  width: 100%;
  margin-top: 1.4rem;
}

@media screen and (min-width: 768px) {
  .m-userProductSect-item__annotation {
    margin-top: 1.6rem;
  }
}

.m-userProductSect-item__annotation + .m-userProductSect-item__alert {
  margin-top: 0.4rem;
}

.m-userProductSect-item__annotation-text {
  font-size: 1.2rem;
  line-height: 1.6;
}

.m-userProductSect-item__annotation-text--warning {
  color: var(--color-red);
}

.m-userProductSect-item__alert {
  display: none;
  width: 100%;
  margin-top: 1.4rem;
  font-size: 1.2rem;
  line-height: 1.6;
  white-space: pre-wrap;
  color: var(--color-red);
}

@media screen and (min-width: 768px) {
  .m-userProductSect-item__alert {
    margin-top: 1.6rem;
  }
}

.m-userProductSect-item__alert--active {
  display: block;
}

@media screen and (min-width: 768px) {
  .m-userProductSect-itemDetail {
    flex: 0 0 58%;
  }
}

.m-userProductSect-itemDetail__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: 1.2rem;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .m-userProductSect-itemDetail__title {
    -webkit-line-clamp: 2;
    margin-top: 0;
    line-height: 1.6;
    font-size: 1.4rem;
    font-weight: 600;
  }
}

.m-userProductSect-itemDetail__info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: 1.2rem;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .m-userProductSect-itemDetail__info {
    gap: 0.4rem;
    font-size: 1.3rem;
    line-height: 1.5;
  }
}

.m-userProductSect-itemDetail__info:not(:first-child) {
  margin-top: 0.5rem;
}

@media screen and (min-width: 768px) {
  .m-userProductSect-itemDetail__info:not(:first-child) {
    margin-top: 0.4rem;
  }
}

.m-userProductSect-itemDetailInfo__title, .m-userProductSect-itemDetailInfo__text {
  display: inline;
}

.m-userProductSect-itemDetailInfo__title::after {
    content: "：";
}

.m-userProductSect-itemDetailInfo__text-red {
  color: var(--color-red);
}

.m-userProductSect-itemPrice {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

@media screen and (min-width: 768px) {
  .m-userProductSect-itemPrice {
    flex: 0 0 20.5%;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0;
  }
}

.m-userProductSect-itemPrice__price {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}

.m-userProductSect-itemPrice__price--discount {
  color: var(--color-red);
}

.m-userProductSect-itemPrice__icon {
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  height: 1.6rem;
  padding: 0 0.6rem;
  font-size: 1rem;
  color: var(--color-white);
  background-color: var(--color-red);
}

.m-userProductSect-itemQuantity-num {
  margin-top: 0.8rem;
}

@media screen and (min-width: 768px) {
  .m-userProductSect-itemQuantity-num {
    flex: 0 0 10.7%;
    margin-top: 0;
  }
}

.m-userProductSect-itemQuantity-num__text-wrap {
  font-size: 1.2rem;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .m-userProductSect-itemQuantity-num__text-wrap {
    font-size: 1.5rem;
    letter-spacing: 0;
  }

    .m-userProductSect-itemQuantity-num__text-wrap::before {
      content: "×";
    }
}

@media screen and (min-width: 768px) {
  .m-userProductSect-itemQuantity-num__title {
    display: none;
  }
}

.m-userProductSect-itemQuantity-num__title::after {
  content: "：";
}

.m-userProductSect-selectVariation {
  margin-top: 2.05rem;
}

@media screen and (min-width: 768px) {
  .m-userProductSect-selectVariation {
    margin-top: 0.5rem;
  }
}

.m-userProductSect-selectVariation__button {
  width: 80%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .m-userProductSect-selectVariation__button {
    width: 33.2%;
    margin-right: 0;
  }
}

@media screen and (min-width: 992px) {
  .m-userProductSect-selectVariation__button {
    max-width: 21.6rem;
  }
}

.m-userProductSect-selectProductOption {
  margin-top: 2.05rem;
}

@media screen and (min-width: 768px) {
  .m-userProductSect-selectProductOption {
    margin-top: 0.5rem;
  }
}

.m-userProductSect-selectProductOption__button {
  width: 80%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .m-userProductSect-selectProductOption__button {
    width: 33.2%;
    margin-right: 0;
  }
}

@media screen and (min-width: 992px) {
  .m-userProductSect-selectProductOption__button {
    max-width: 21.6rem;
  }
}

.m-userProductSect-info {
  margin-top: 1.5rem;
}

.m-userProductSect-info__text--warning {
  color: var(--color-red);
}

/**
 * #m-userProductSectBox
 */
.m-userProductSectBox {
  padding: 2.4rem 1.6rem;
  background-color: var(--color-gray-light);
  border-radius: 1rem;
}

@media screen and (min-width: 768px) {
  .m-userProductSectBox {
    padding: 3rem 2.5rem;
  }
}

.m-userProductSectBox--noWrap {
  padding: 0;
  background-color: transparent;
}

.m-userProductSectBox-item:not(:last-child) {
  margin-bottom: 1.2rem;
}

@media screen and (min-width: 768px) {
  .m-userProductSectBox-item:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}

.m-userProductSectBox-item__inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.6rem;
}

@media screen and (min-width: 768px) {
  .m-userProductSectBox-item__inner {
    gap: 3%;
  }
}

.m-userProductSectBox-item__pictureWrap {
  flex: 0 0 8.05rem;
}

@media screen and (min-width: 768px) {
  .m-userProductSectBox-item__pictureWrap {
    flex: 0 0 9.2rem;
    margin-left: 0;
  }
}

.m-userProductSectBox-item__picture {
  min-width: 8.05rem;
}

@media screen and (min-width: 768px) {
  .m-userProductSectBox-item__picture:hover {
    opacity: var(--hover-opacity);
    transition: opacity var(--transition-default);
  }
}

.m-userProductSectBox-item__annotation {
  width: 100%;
  margin-top: 1.4rem;
}

@media screen and (min-width: 768px) {
  .m-userProductSectBox-item__annotation {
    margin-top: 1.6rem;
  }
}

.m-userProductSectBox-item__annotation-text {
  font-size: 1.2rem;
  line-height: 1.6;
}

.m-userProductSectBox-item__annotation-text--warning {
  color: var(--color-red);
}

.m-userProductSectBox-itemDetail {
  width: 100%;
}

.m-userProductSectBox-itemDetail__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: 1.2rem;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .m-userProductSectBox-itemDetail__title {
    -webkit-line-clamp: 2;
    margin-top: 0;
    line-height: 1.6;
    font-size: 1.4rem;
  }
}

.m-userProductSectBox-itemDetail__info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: 1.2rem;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .m-userProductSectBox-itemDetail__info {
    gap: 0.4rem;
    font-size: 1.3rem;
    line-height: 1.5;
  }
}

.m-userProductSectBox-itemDetail__info:not(:first-child) {
  margin-top: 0.5rem;
}

@media screen and (min-width: 768px) {
  .m-userProductSectBox-itemDetail__info:not(:first-child) {
    margin-top: 0.4rem;
  }
}

.m-userProductSectBox-itemDetailInfo__title, .m-userProductSectBox-itemDetailInfo__text {
  display: inline;
}

  .m-userProductSectBox-itemDetailInfo__title::after {
    content: "：";
    letter-spacing: -0.4rem;
  }

/**
 * #m-userProductSelectVariation
 */
.m-userProductSelectVariation-wrap {
  margin-inline: auto;
  padding: 2rem 1.7rem 3rem;
}

@media screen and (min-width: 768px) {
  .m-userProductSelectVariation-wrap {
    padding: 3rem 5rem;
  }
}

.m-userProductSelectVariation {
  display: flex;
  gap: 1.5rem;
}

@media screen and (min-width: 768px) {
  .m-userProductSelectVariation {
    gap: 3rem;
  }
}

.m-userProductSelectVariation__pictureWrap {
  flex-shrink: 0;
  width: 9rem;
}

@media screen and (min-width: 768px) {
  .m-userProductSelectVariation__pictureWrap {
    width: 13.1rem;
  }
}

.m-userProductSelectVariation__info-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  margin-top: -0.4rem;
  font-size: 1.4rem;
  font-weight: 600;
}

@media screen and (min-width: 768px) {
  .m-userProductSelectVariation__info-name {
    margin-top: -0.5rem;
    font-size: 1.8rem;
  }
}

.m-userProductSelectVariation-price {
  margin-top: 0.5rem;
}

@media screen and (min-width: 768px) {
  .m-userProductSelectVariation-price {
    margin-top: 0.3rem;
  }
}

.m-userProductSelectVariation-price__tax {
  font-size: 1rem;
  font-weight: 300;
}

.m-userProductSelectVariation-price .c-userSectCol-infoInline {
  font-size: 1.2rem;
}

@media screen and (min-width: 768px) {
  .m-userProductSelectVariation-price .c-userSectCol-infoInline {
    font-size: 1.4rem;
  }
}

.m-userProductSelectVariation-price .c-userSectCol-infoInline__text {
  font-weight: 600;
}

.m-userProductSelectVariation-choice {
  margin-top: 0.8rem;
}

@media screen and (min-width: 768px) {
  .m-userProductSelectVariation-choice {
    margin-top: 1.6rem;
  }
}

.m-userProductSelectVariation-choice__lead {
  font-size: 1rem;
}

@media screen and (min-width: 768px) {
  .m-userProductSelectVariation-choice__lead {
    font-size: 1.4rem;
  }
}

.m-userProductSelectVariation-choice__select {
  margin-top: 0.9rem;
}

@media screen and (min-width: 768px) {
  .m-userProductSelectVariation-choice__select {
    margin-top: 0.6rem;
  }
}

.m-userProductSelectVariation-choice__selectItem {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

@media screen and (min-width: 768px) {
  .m-userProductSelectVariation-choice__selectItem {
    padding-top: 1.2rem;
    padding-bottom: 1.1rem;
    font-size: 1.3rem;
    max-width: 31.8rem;
  }
}

/**
 * #m-userNav
 */
.m-userNav {
  padding: 0;
}

.m-userNav__title {
  padding: 1.3rem 1.9rem 1.4rem;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.5;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  color: var(--color-white);
  background-color: var(--color-gray-middle);
}

@media screen and (min-width: 992px) {
  .m-userNav__title {
    padding: 1.2rem 1.9rem 1.2rem;
    text-align: left;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.5;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    color: var(--color-black);
    background-color: var(--color-gray-light-little);
  }
}

.m-userNav__sections {
  border-left: solid 1px var(--color-gray-middle);
  border-right: solid 1px var(--color-gray-middle);
  border-bottom: solid 1px var(--color-gray-middle);
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

@media screen and (min-width: 768px) {
  .m-userNav__sections {
    border-left: solid 1px var(--color-gray-light-little);
    border-right: solid 1px var(--color-gray-light-little);
    border-bottom: solid 1px var(--color-gray-light-little);
  }
}

.m-userNav-section:first-child .m-userNav-section__title {
  padding-top: 1.9rem;
}

.m-userNav-section:last-child .m-userNav-section__menu {
  padding-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .m-userNav-section:last-child .m-userNav-section__menu {
    padding-bottom: 1.8rem;
  }
}

.m-userNav-section__title {
  padding: 0 1.6rem 1.6rem;
  border-bottom: solid 1px var(--color-gray-middle);
}

@media screen and (min-width: 992px) {
  .m-userNav-section__title {
    padding: 0 1.6rem 1.7rem;
    margin-bottom: 1.2rem;
    border-bottom: solid 1px var(--color-gray-light-little);
  }
}

.m-userNav-section__menu {
  padding-bottom: 2.2rem;
  margin-top: 1.3rem;
}

@media screen and (min-width: 992px) {
  .m-userNav-section__menu {
    padding-bottom: 2.7rem;
    margin-top: 1.2rem;
  }
}

/**
 * #m-userUseCoupon
 */
.m-userUseCoupon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0 2rem;
  width: 100%;
  padding: 2rem 0;
  margin-top: 0.4rem;
  border-top: solid 1px var(--color-gray);
  border-bottom: solid 1px var(--color-gray);
}

.m-userUseCoupon__title {
  width: calc(100% - 13.3rem);
  font-size: 1.6rem;
  text-align: left;
  font-weight: 700;
}

.m-userUseCoupon__input {
  width: 100%;
}

.m-userUseCoupon + .m-userUseCoupon {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px dashed var(--color-light);
}

.m-userUseCoupon-inputSelect {
  display: block;
}

.m-userUseCoupon-inputSelect__select {
  display: flex;
  flex-shrink: 0;
  font-size: 1.5rem;
  line-height: 1.3;
}

.m-userUseCoupon-inputSelect .c-formInput-item__alert--active {
  margin-top: 1rem;
}

.m-userUseCoupon-selectBox {
  grid-area: gridC;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 1.5rem;
  line-height: 1;
}

.m-userUseCoupon-selectBox__select {
  display: block;
  width: calc(100% - 10.2rem);
  vertical-align: middle;
}

.m-userUseCoupon-selectBox__couponBox {
  display: block;
  width: 9.2rem;
  vertical-align: middle;
  text-align: right;
}

.m-userUseCoupon-inputBox {
  grid-area: gridC;
  display: block;
  margin-top: 1.5rem;
}

  .m-userUseCoupon-selectBox + .m-userUseCoupon-inputSelect__select, .m-userUseCoupon-inputBox + .m-userUseCoupon-inputSelect__select {
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--color-gray);
  }

.m-userUseCoupon__canUsePoint {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.m-userUseCoupon__canUsePoint--strong {
  font-weight: 400;
  color: var(--color-red);
}

.m-userUseCoupon__canUsePoint > a {
  color: var(--color-blue);
}

@media screen and (min-width: 768px) {
  .m-userUseCoupon {
    display: block;
    padding: 0;
    margin-top: 0;
    border-top: none;
    border-bottom: none;
  }

  .m-userUseCoupon__title {
    width: 100%;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    text-align: left;
    font-weight: 700;
  }

  .m-userUseCoupon__input {
    display: block;
  }

  .m-userUseCoupon + .m-userUseCoupon {
    margin-top: 3rem;
    padding-top: 0;
    border-top: none;
  }

  .m-userUseCoupon-inputSelect {
    display: grid;
    grid-template-columns: 44% 56%;
    grid-template-areas: "gridA gridB" "gridC gridC";
  }

  .m-userUseCoupon-inputSelect__select {
    display: flex;
    flex-shrink: 0;
    font-size: 1.5rem;
    line-height: 1.3;
  }

    .m-userUseCoupon-inputSelect__select:nth-of-type(1) {
      grid-area: gridA;
    }

    .m-userUseCoupon-inputSelect__select:nth-of-type(2) {
      grid-area: gridB;
    }

  .m-userUseCoupon-selectBox {
    grid-area: gridC;
  }

  .m-userUseCoupon-inputBox {
    grid-area: gridC;
  }

    .m-userUseCoupon-selectBox + .m-userUseCoupon-inputSelect__select, .m-userUseCoupon-inputBox + .m-userUseCoupon-inputSelect__select {
      padding-top: 0;
      margin-top: 0;
      border: none;
    }

  .m-userUseCoupon__canUsePoint--strong {
    color: var(--color-black);
  }

  .m-userUseCoupon__canUsePoint > a:hover {
    opacity: var(--hover-opacity);
    transition: opacity var(--transition-default);
  }
}

/**
 * #m-userUseMergeCoupon
 */
.m-userUseMergeCoupon {
  display: flex;
  flex-direction: column;
}

.m-userUseMergeCouponTitle {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: 600;
}

@media screen and (min-width: 992px) {
  .m-userUseMergeCouponTitle {
    font-size: 1.6rem;
  }
}

.m-userUseMergeCouponInfoBox + .m-userUseMergeCouponUseBox {
  padding-top: 2.7rem;
  margin-top: 3rem;
  border-top: solid 1px var(--color-gray);
}

.m-userUseMergeCouponInfo {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media screen and (min-width: 768px) {
  .m-userUseMergeCouponInfo {
    flex-direction: row;
    align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .m-userUseMergeCouponInfo__name {
    flex: 1 1 auto;
    max-width: 32rem;
  }
}

@media screen and (min-width: 768px) {
  .m-userUseMergeCouponInfo__button {
    flex: 0 0 17rem;
  }
}

.m-userUseMergeCouponUseBox {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.m-userUseMergeCouponUseBox__couponBox .c-couponBox {
  padding: 0;
}

.m-userUseMergeCouponUseBox__couponBox .c-couponBox-item {
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-bottom: solid 1px var(--color-gray);
}

@media screen and (min-width: 768px) {
  .m-userUseMergeCouponUseBox__couponBox .c-couponBox-item {
    border-top: none;
  }
}

.m-userUseMergeCouponUseBox__couponBox .c-couponBox-item:first-child {
  border-top: solid 1px var(--color-gray);
}

@media screen and (min-width: 768px) {
  .m-userUseMergeCouponUseBox__couponBox .c-couponBox-item:first-child {
    border-top: none;
  }
}

.m-userUseMergeCouponUseBox__couponBox .c-couponBox-item + .c-couponBox-item {
  margin-top: 0;
}

.m-userUseMergeCouponInput {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media screen and (min-width: 768px) {
  .m-userUseMergeCouponInput {
    flex-direction: row;
  }
}

@media screen and (min-width: 768px) {
  .m-userUseMergeCouponInput__form {
    flex: 1 1 auto;
    max-width: 32rem;
  }
}

.m-userUseMergeCouponInput__form input[type=text] {
  height: 100%;
}

@media screen and (min-width: 768px) {
  .m-userUseMergeCouponInput__button {
    flex: 0 0 17rem;
  }
}

.m-userUseMergeCouponInput-alert {
  display: none;
  margin-top: 0.8rem;
  font-size: 1.2rem;
  white-space: pre-wrap;
  color: var(--color-red);
}

.m-userUseMergeCouponInput-alert--active {
  display: block;
}

/**
 * #m-socialLogin
 */
.m-socialLogin {
  padding: 3.4rem 1.6rem 3rem;
  background-color: var(--color-gray-light);
  border-radius: 1rem;
}

@media screen and (min-width: 992px) {
  .m-socialLogin {
    padding: 3rem;
  }
}

.m-socialLogin__title {
  margin-bottom: 2.4rem;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}

@media screen and (min-width: 992px) {
  .m-socialLogin__title {
    margin-bottom: 1.3rem;
    font-size: 1.6rem;
  }
}

.m-socialLogin__list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 1.2rem;
}

@media screen and (min-width: 768px) {
  .m-socialLogin__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 0;
    row-gap: 1.6rem;
  }
}

.m-socialLogin__item {
  width: 100%;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .m-socialLogin__item {
    width: calc((100% - 2rem) / 2);
  }
}

@media screen and (min-width: 992px) {
  .m-socialLogin__item {
    width: 100%;
  }
}

/**
 * #m-paymentDescription
 */
.m-paymentDescription__text-link {
  text-decoration: underline;
}

.m-paymentDescription__text-link-for-atone,
.m-paymentDescription__text-link-for-atone:visited {
  color: var(--color-atone);
}

.m-paymentDescription__text-link-for-atone:hover {
  color: var(--color-atone);
  text-decoration: underline;
}

/* =============================================================
    Site
============================================================= */
/* myPage Common
------------------------------------------------------------- */
.s-myPageContent-head {
  padding-left: 1.6rem;
  padding-bottom: 2.1rem;
  padding-right: 1.6rem;
}

@media screen and (min-width: 768px) {
  .s-myPageContent-head {
    padding-left: 0;
    padding-bottom: 4.05rem;
    padding-right: 0;
  }
}

@media screen and (min-width: 992px) {
  .s-myPageContent-body {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
}

.s-myPageContent-infoWrap {
  padding-left: 1.6rem;
  padding-right: 1.6rem;
}

@media screen and (min-width: 992px) {
  .s-myPageContent-infoWrap {
    padding-top: 0.2rem;
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (min-width: 992px) {
  .s-myPageContent-infoWrap {
    width: 70.2%;
  }
}

.s-myPageContent-infoWrap__title {
  padding-bottom: 2.1rem;
}

.s-myPageContent-progress {
  padding-top: 3rem;
}

@media screen and (min-width: 768px) {
  .s-myPageContent-progress {
    padding-top: 5rem;
  }
}

.s-myPageContent-progress--top-short {
  padding-top: 2.7rem;
}

@media screen and (min-width: 768px) {
  .s-myPageContent-progress--top-short {
    padding-top: 4.6rem;
  }
}

.s-myPageContent-navWrap {
  padding: 0 1.6rem;
  margin-top: 5.7rem;
}

@media screen and (min-width: 992px) {
  .s-myPageContent-navWrap {
    width: 24.8%;
    padding: 0;
    margin-top: 0;
  }
}

.s-myPageContent-pager {
  margin-top: 4rem;
}

@media screen and (min-width: 768px) {
  .s-myPageContent-pager {
    margin-top: 4rem;
  }
}

.s-medicalQuestionnaireContent-infoWrap {
  padding-left: 1.6rem;
  padding-right: 1.6rem;
}

@media screen and (min-width: 992px) {
  .s-medicalQuestionnaireContent-infoWrap {
    padding-top: 0.2rem;
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (min-width: 992px) {
  .s-medicalQuestionnaireContent-infoWrap {
    width: 70.2%;
  }
}

.s-medicalQuestionnaireHeading-title {
  text-align: center;
  padding-bottom: 1.3rem;
}

@media screen and (min-width: 768px) {
  .s-medicalQuestionnaireHeading-title {
    margin-bottom: 0.4rem;
  }
}

/* form Content
------------------------------------------------------------- */
.s-formContent-head {
  padding-bottom: 2.1rem;
}

@media screen and (min-width: 768px) {
  .s-formContent-head {
    padding-bottom: 2.6rem;
  }
}

.s-formContent-progress {
  padding-top: 3rem;
  padding-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .s-formContent-progress {
    padding-top: 5rem;
  }
}

.s-formContent-progress--top-short {
  padding-top: 2.7rem;
}

@media screen and (min-width: 768px) {
  .s-formContent-progress--top-short {
    padding-top: 4.6rem;
  }
}

/* =============================================================
    Page
============================================================= */
/* registRegulation
------------------------------------------------------------- */
.p-regulation-terms {
  padding: 2.8rem 1rem 2.6rem 1.5rem;
  border-radius: 1rem;
  background-color: var(--color-gray-light);
}

@media screen and (min-width: 768px) {
  .p-regulation-terms {
    padding: 2.8rem 1.6rem 3rem 2.5rem;
  }
}

.p-regulation-terms__title {
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
}

@media screen and (min-width: 768px) {
  .p-regulation-terms__title {
    margin-bottom: 0.9rem;
  }
}

.p-regulation-terms__lead {
  height: 36.2rem;
  padding-right: 1.6rem;
  overflow-y: scroll;
  font-size: 1.2rem;
}

@media screen and (min-width: 768px) {
  .p-regulation-terms__lead {
    height: 44rem;
    padding-right: 3.4rem;
    font-size: 1.3rem;
    line-height: 1.5;
  }
}

/* registInput
------------------------------------------------------------- */
@media screen and (max-width: 767px) {
  .p-page-registInput .p-userinfo__input-area > div:not(:last-of-type) {
    margin-bottom: 2.4rem;
    padding-bottom: 2.4rem;
    border-bottom: solid 1px var(--color-light);
  }
}

@media screen and (min-width: 768px) {
  .p-page-registInput .p-userinfo__input-area > div:not(:last-of-type) {
    margin-bottom: 3rem;
  }
}

.p-page-registInput .m-userSectForm-body > dl:first-of-type {
  border-top: none;
}

.p-registForm__social {
  padding: 2.5rem 1.6rem 3rem;
  margin-bottom: 2.4rem;
  border-top: solid 1px var(--color-light);
  border-bottom: solid 1px var(--color-light);
}

@media screen and (min-width: 768px) {
  .p-registForm__social {
    padding: 2.5rem 0 0;
    margin-bottom: 4.6rem;
    border-bottom: none;
  }
}

.p-registForm__social .m-socialLogin {
  padding: 0;
  background-color: transparent;
  border-radius: 0;
}

.p-registForm__social .m-socialLogin__title {
  margin-bottom: 1.4rem;
  font-size: 1.6rem;
}

@media screen and (min-width: 768px) {
  .p-registForm__social .m-socialLogin__title {
    margin-bottom: 1rem;
    text-align: left;
  }
}

@media screen and (min-width: 768px) {
  .p-registForm__social .m-socialLogin__title-br {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  .p-registForm__social .m-socialLogin__list {
    justify-content: flex-start;
    column-gap: 2%;
  }
}

@media screen and (min-width: 992px) {
  .p-registForm__social .m-socialLogin__item {
    width: 32%;
  }
}

/* registConfirm
------------------------------------------------------------- */
@media screen and (max-width: 767px) {
  .p-page-registConfirm .m-formHeading-head__stepBar {
    margin-bottom: 3.7rem;
  }
}

@media screen and (max-width: 767px) {
  .p-page-registConfirm .s-formContent-head {
    padding-bottom: 2.2rem;
  }
}

/* registComplete
------------------------------------------------------------- */
@media screen and (max-width: 767px) {
  .p-page-registComplete .m-formHeading-head__stepBar {
    margin-bottom: 3.6rem;
  }
}

@media screen and (min-width: 768px) {
  .p-page-registComplete .m-formHeading-head--onlyTitle {
    padding-bottom: 0;
    border-bottom: none;
  }
}

@media screen and (max-width: 767px) {
  .p-page-registComplete .m-formHeading-head__title {
    border-bottom: none;
    padding-bottom: 0;
  }
}

.p-page-registComplete .s-formContent-head {
  padding-bottom: 1rem;
}

/* easyRegistInput
------------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .p-page-easyRegistInput .m-formHeading-head__title {
    margin-bottom: 1.1rem;
  }
}

@media screen and (max-width: 767px) {
  .p-page-easyRegistInput .p-userinfo__input-area-content {
    margin-bottom: 2.4rem;
    padding-bottom: 2.4rem;
    border-bottom: solid 1px var(--color-light);
  }
}

@media screen and (min-width: 768px) {
  .p-page-easyRegistInput .p-userinfo__input-area-content {
    margin-bottom: 3rem;
  }
}

.p-page-easyRegistInput .p-userinfo__input-area > div:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}

@media screen and (min-width: 768px) {
  .p-page-easyRegistInput .m-userSectForm-body > dl:first-of-type {
    border-top: none;
  }
}

/* inquiryInput
------------------------------------------------------------- */
/* inquiryConfirm
------------------------------------------------------------- */
.p-inquiry-recaptcha {
  width: 28.6rem;
  margin-top: 3rem;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 768px) {
  .p-inquiry-confirmArea .m-userSect--inquiryInfo .c-userSect-info__title {
    width: 15.5%;
  }
}

/* inquiryComplete
------------------------------------------------------------- */
.p-inqruiry-customerSupport {
  padding: 2.2rem 2.1rem 2.4rem;
  margin-top: 2.6rem;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  border-radius: 1rem;
  background-color: var(--color-gray-light);
}

@media screen and (min-width: 768px) {
  .p-inqruiry-customerSupport {
    padding: 2.8rem 2.5rem 2.8rem;
    margin-top: 3.6rem;
    width: 72.8%;
    text-align: center;
  }
}

.p-inqruiry-customerSupport__title {
  margin-bottom: 1.1rem;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .p-inqruiry-customerSupport__title {
    margin-bottom: 0.9rem;
    font-size: 1.8rem;
  }
}

.p-inqruiry-customerSupport__info:not(:first-child) {
  margin-top: 0.7rem;
}

@media screen and (min-width: 768px) {
  .p-inqruiry-customerSupport__info:not(:first-child) {
    margin-top: 0.9rem;
  }
}

.p-inqruiry-customerSupport__info--annotation {
  font-size: 1.2rem;
}

@media screen and (min-width: 768px) {
  .p-inqruiry-customerSupport__info--annotation {
    font-size: unset;
  }
}

.p-inqruiry-customerSupport__inquiry {
  display: block;
  margin-top: 2rem;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 29.3rem;
}

@media screen and (min-width: 768px) {
  .p-inqruiry-customerSupport__inquiry {
    margin-top: 2.5rem;
    max-width: 34.5rem;
  }
}

/* login
------------------------------------------------------------- */
.p-login-body {
  display: flex;
  flex-direction: column;
  margin-top: 1.3rem;
}

@media screen and (min-width: 992px) {
  .p-login-body {
    display: grid;
    grid-template-columns: 49.5% auto;
    justify-content: space-between;
    column-gap: 4%;
    margin-top: 2.7rem;
  }
}

@media screen and (min-width: 992px) {
  .p-login-body__login {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}

.p-login-body__social {
  order: 3;
  margin-top: 5rem;
}

@media screen and (min-width: 992px) {
  .p-login-body__social {
    grid-column: 2/3;
    grid-row: 1/3;
    order: 0;
    max-width: 38.8rem;
    margin-top: 0;
  }
}

.p-login-body__social + .p-login-body__entry {
  padding-top: 2rem;
  border-top: solid 1px var(--color-gray);
}

@media screen and (min-width: 992px) {
  .p-login-body__social + .p-login-body__entry {
    grid-column: 1/2;
    grid-row: 2/3;
    padding-top: 2.8rem;
  }
}

.p-login-body__entry {
  padding-top: 2rem;
  border-top: solid 1px var(--color-gray);
}

@media screen and (min-width: 992px) {
  .p-login-body__entry {
    grid-column: 2/3;
    grid-row: 1/2;
    padding: 0;
    border: none;
  }
}

.p-login-body__entry .p-login-form:last-child {
  padding-bottom: 0;
}

.p-login-form {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  padding: 0 0 3rem;
}

@media screen and (min-width: 768px) {
  .p-login-form {
    flex-direction: row;
    justify-content: space-between;
    gap: 3%;
    padding: 0 0 3rem 1.1rem;
  }
}

.p-login-form:nth-child(n+2) {
  padding-top: 2rem;
  border-top: solid 1px var(--color-gray);
}

@media screen and (min-width: 768px) {
  .p-login-form:nth-child(n+2) {
    padding-top: 2.8rem;
  }
}

@media screen and (min-width: 768px) {
  .p-login-form__head {
    width: 28%;
  }
}

.p-login-form__title {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .p-login-form__title {
    margin-top: -0.2rem;
  }
}

@media screen and (min-width: 768px) {
  .p-login-form__body {
    width: 69%;
  }
}

.p-login-form__body .c-formInput-item__annotation,
.p-login-form__body .c-formInput-item__alert {
  margin-top: 0.9rem;
}

  .p-login-form__body .c-formInput-item__annotation + .c-formInput-item__alert {
    margin-top: 0;
  }

.p-login-form__body-button {
  margin-top: 2.6rem;
}

@media screen and (min-width: 768px) {
  .p-login-form__body-button {
    margin-top: 3rem;
  }
}

.p-login-form__body-button-desc {
  display: block;
  margin-top: 0.7rem;
  width: 100%;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-black);
}

@media screen and (min-width: 768px) {
  .p-login-form__body-button-desc {
    margin-top: 0.7rem;
    font-size: 1.3rem;
    font-weight: 300;
  }
}

.p-login-form__body-button-desc::after {
  content: "";
  display: block;
  margin-top: -0.4rem;
}

@media screen and (min-width: 768px) {
  .p-login-form__body-button-desc::after {
    margin-top: -0.3rem;
  }
}

.p-login-form__body-button-entry {
  margin-top: 2.5rem;
}

  .p-login-form__body-button-entry:nth-of-type(n + 2) {
    margin-top: 1.2rem;
  }

@media screen and (min-width: 768px) {
  .p-login-form__body-button-entry:nth-of-type(n + 2) {
    margin-top: 1rem;
  }
}

.p-login-form__body-button-guest {
  margin-top: 1.8rem;
}

@media screen and (min-width: 768px) {
  .p-login-form__body-button-guest {
    margin-top: 1.6rem;
  }
}

.p-login-form__body-additional {
  margin-top: 1rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-login-form__body-additional {
    margin-top: 1.2rem;
    text-align: center;
  }
}

.p-login-form__body-link {
  display: block;
  padding: 2.1rem 1rem;
  width: 100%;
  background-color: var(--color-gray);
  border: 1px solid var(--color-gray);
  border-radius: 0.8rem;
  color: var(--color-gray-dark) !important;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .p-login-form__body-link {
    padding: 0;
    border: none;
    background: none;
    color: var(--color-black) !important;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.6;
    text-decoration: underline;
  }

    .p-login-form__body-link:hover {
      text-decoration: underline;
    }
}

.p-login-foot {
  padding-top: 3.7rem;
  margin-top: 4rem;
  border-top: solid 1px var(--color-gray);
}

@media screen and (min-width: 768px) {
  .p-login-foot {
    padding-top: 3.7rem;
    margin-top: 10rem;
  }
}

/* mailMagazineRegistInput
------------------------------------------------------------- */
.p-mailMagazineRegistInput-inputArea {
  margin-bottom: 2.7rem;
}

@media screen and (min-width: 768px) {
  .p-mailMagazineRegistInput-inputArea {
    margin-bottom: 3rem;
  }
}

.p-mailMagazineRegistInput-foot {
  padding-top: 2rem;
  margin-top: 5rem;
  border-top: solid 1px var(--color-gray);
}

@media screen and (min-width: 768px) {
  .p-mailMagazineRegistInput-foot {
    padding: 2.8rem 2.5rem 2.4rem;
    margin-top: 5rem;
    border: none;
    border-radius: 1rem;
    background-color: var(--color-gray-light);
  }
}

/* mailMagazineRegistConfirm
------------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .p-mailMagazineRegist-confirmArea .m-userSect--mailMagazineRegistInfo .c-userSect-info__title {
    width: 15.5%;
  }
}

/* mailMagazineRegistComplete
------------------------------------------------------------- */
/* mailMagazineCancelInput
------------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .p-mailMagazineCancel-inputArea .c-userSect-entry__title {
    width: 23%;
  }
}

/* mailMagazineCancelComplete
------------------------------------------------------------- */
/* KADOKAWA page layout - shared
   passwordReminder / registerTerms で共用
------------------------------------------------------------- */
.p-kadokawa-page {
  min-height: 100vh;
  background: var(--kadokawa-page-bg);
}
.p-kadokawa-page--terms {
  background: var(--login-member-bg);
}
.p-kadokawa-page__main {
  padding: 2.4rem 1.6rem;
}
@media (min-width: 768px) {
  .p-kadokawa-page__main {
    max-width: var(--kadokawa-event-accordion-max-width);
    margin-left: auto;
    margin-right: auto;
  }
}
.p-kadokawa-page__pageTitle {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-brand);
  text-align: center;
  margin-bottom: 2rem;
}
.p-kadokawa-page__card {
  background: var(--lottery-form-bg-white);
  border-radius: 1.2rem;
  padding: 2rem;
  max-width: 480px;
  margin: 0 auto 2rem;
}
.p-kadokawa-page__btn,
input.p-kadokawa-page__btn {
  position: relative;
  display: block;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 1.4rem;
  background: var(--color-brand);
  color: var(--lottery-form-text-white);
  border: none;
  border-radius: 3rem;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}
a.p-kadokawa-page__btn {
  color: var(--lottery-form-text-white);
  text-decoration: none;
}
a.p-kadokawa-page__btn:visited {
  color: var(--lottery-form-text-white);
}
.p-kadokawa-page__btn--outline,
input.p-kadokawa-page__btn--outline {
  background: var(--color-white);
  color: var(--color-brand);
  border: 2px solid var(--color-brand);
}
a.p-kadokawa-page__btn--outline,
a.p-kadokawa-page__btn--outline:visited {
  color: var(--color-brand) !important;
}
.p-kadokawa-cart-btnGroup {
  max-width: 480px;
  margin: 2.4rem auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 0 1.6rem;
}

/* passwordReminderInput
------------------------------------------------------------- */
.p-passwordReminder__fieldGroup {
  margin-bottom: 2rem;
}
.p-passwordReminder__label {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--lottery-form-text-dark);
}
.p-passwordReminder__input {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid var(--lottery-form-border-color);
  border-radius: 0.6rem;
  font-size: 1.4rem;
  box-sizing: border-box;
}

/* passwordReminderComplete
------------------------------------------------------------- */
.p-passwordReminder__completeText {
  font-size: 1.4rem;
  line-height: 1.9;
  color: var(--lottery-form-text-dark);
  margin-bottom: 2.4rem;
}

/* registerTerms
------------------------------------------------------------- */
.p-register-terms__lead {
  font-size: 1.2rem;
  line-height: 1.8;
  margin: 0 auto 2rem;
  max-width: 480px;
}
.p-register-terms__lead-em {
  font-style: normal;
  color: var(--login-register-note);
  font-weight: 600;
}
.p-register-terms__sectionTitle {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--lottery-form-title-blue);
  margin: 0 auto 0.8rem;
  max-width: 480px;
}
.p-register-terms__box {
  background: var(--lottery-form-bg-white);
  border: 1px solid var(--color-text-muted);
  padding: 1.6rem;
  max-width: 480px;
  margin: 0 auto 2rem;
  height: 50.5rem;
  overflow-y: auto;
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--lottery-form-text-dark);
}
.p-register-terms__agree-area {
  margin-top: 2.5rem;
  text-align: center;
}
.p-register-terms__agree-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 21rem;
  height: 5.1rem;
  border-radius: 999px;
  background: var(--login-register-btn-bg);
  border: none;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 0;
}
.p-register-terms__agree-btn:hover {
  opacity: var(--hover-opacity);
}
.p-register-terms__agree-arrow {
  position: absolute;
  right: 1.8rem;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}
/* registerForm
------------------------------------------------------------- */
.p-register-form__card {
  background: var(--lottery-form-bg-white);
  border-radius: 0 0 1rem 1rem;
  overflow: hidden;
  max-width: 52rem;
  margin: 0 auto 2rem;
}

.p-register-form__section-header {
  background: var(--lottery-form-btn-blue);
  color: var(--lottery-form-text-white);
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 1.1rem 1.6rem;
  line-height: 1.4;
  border-radius: 0.9rem 0.9rem 0 0;
}

.p-register-form__section-body {
  width: 100%;
  padding: 2rem 2rem 2.8rem;
  box-sizing: border-box;
  overflow: hidden;
}

.p-register-form__note {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  line-height: 1.75;
  color: var(--lottery-form-text-dark);
}

.p-register-form__note-caution {
  color: var(--login-register-note);
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  line-height: 1.75;
}

.p-register-form__note-link {
  background: none;
  border: none;
  padding: 0;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--login-help-link);
  text-decoration: underline;
  cursor: pointer;
}

.p-register-form__note-list {
  margin-top: 1.2rem;
  padding-left: 1.6rem;
  list-style: disc;
}

.p-register-form__note-list li {
  margin-bottom: 0.8rem;
}

.p-register-form__note-list li:last-child {
  margin-bottom: 0;
}

.p-register-form__separator {
  border: none;
  border-top: 1px dashed var(--color-separator-mid);
  margin: 2.8rem 0 3rem;
}

.p-register-form__field {
  margin-bottom: 3.4rem;
}

/* c-formInput-item のマージンをフォームフィールド固有の値で上書き */
.p-register-form__field.c-formInput-item:not(:last-of-type) {
  margin-bottom: 3.4rem;
}

/* バリデーターのバルーンエラー表示は非表示（エラーテキストはVueが担当） */
.p-register-form__field .s-validate-message-base {
  display: none;
}

.p-register-form__label {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.2rem 0.4rem;
  line-height: 1.4;
}

.p-register-form__required {
  color: var(--login-register-note);
  font-weight: 400;
}

.p-register-form__type-hint {
  color: var(--login-register-note);
  font-size: 1.4rem;
  font-weight: 400;
  font-style: normal;
}

.p-register-form__input {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 4rem;
  padding: 0.6rem 1rem;
  border: 1px solid var(--register-input-border);
  background: var(--register-input-bg);
  box-sizing: border-box;
  font-size: 1.6rem;
  outline: none;
}
.p-register-form__field .p-register-form__input {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin-left: 0;
}

.p-register-form__input:focus {
  border-color: var(--lottery-form-btn-blue);
  background: var(--lottery-form-bg-white);
}

.p-register-form__sub-label,
.p-register-form__annotation {
  font-size: 1.4rem;
  line-height: 1.65;
  color: var(--lottery-form-text-body);
  margin-top: 0.5rem;
}

.p-register-form__error {
  color: var(--login-register-note);
  font-size: 1.2rem;
  margin-top: 0.3rem;
}

/* 姓/名 row */
.p-register-form__name-row {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 2.2rem;
}

.p-register-form__name-row:last-of-type {
  margin-bottom: 0;
}

.p-register-form__name-label {
  width: 3.2rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.p-register-form__name-input {
  flex: 1;
  display: block;
  height: 4rem;
  padding: 0.6rem 1rem;
  border: 1px solid var(--register-input-border);
  background: var(--register-input-bg);
  box-sizing: border-box;
  font-size: 1.6rem;
  outline: none;
}

.p-register-form__name-input:focus {
  border-color: var(--lottery-form-btn-blue);
  background: var(--lottery-form-bg-white);
}

/* 郵便番号 */
.p-register-form__zip-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

/* v-validatorが追加するwrapperがflex行を崩さないよう上書き */
.p-register-form__zip-row .c-formInput-item-wrap {
  width: auto;
  flex-shrink: 0;
}

.p-register-form__zip-prefix {
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* input[type=text]の高specificity対策: element+classで上書き */
input.p-register-form__zip-input {
  width: 6.4rem;
  flex-shrink: 0;
  height: 4rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--register-input-border);
  background: var(--register-input-bg);
  box-sizing: border-box;
  font-size: 1.5rem;
  outline: none;
}

input.p-register-form__zip-input:focus {
  border-color: var(--lottery-form-btn-blue);
  background: var(--lottery-form-bg-white);
}

.p-register-form__zip-sep {
  font-size: 1.4rem;
  color: var(--color-icon-muted);
}

input.p-register-form__zip-input--wide {
  width: 12rem;
}

.p-register-form__zip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3.8rem;
  padding: 0 1.4rem;
  border: 1px solid var(--login-register-btn-bg);
  border-radius: 999px;
  background: var(--lottery-form-bg-white);
  color: var(--login-register-btn-bg);
  font-size: 1.3rem;
  white-space: nowrap;
  cursor: pointer;
  box-sizing: border-box;
  flex-shrink: 0;
}

.p-register-form__address-field {
  margin-top: 2.4rem;
}

.p-register-form__address-field.c-formInput-item:not(:last-of-type) {
  margin-bottom: 0;
}

.p-register-form__address-label {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.p-register-form__select {
  height: 4rem;
  padding: 0.6rem 3.4rem 0.6rem 1rem;
  border: 1px solid var(--register-input-border);
  background-color: var(--register-input-bg);
  box-sizing: border-box;
  font-size: 1.5rem;
  outline: none;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--color-select-arrow) 50%),
    linear-gradient(135deg, var(--color-select-arrow) 50%, transparent 50%);
  background-position:
    calc(100% - 14px) 16px,
    calc(100% - 9px) 16px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.p-register-form__select:focus {
  border-color: var(--lottery-form-btn-blue);
  background-color: var(--lottery-form-bg-white);
}

.p-register-form__select--pref {
  width: 12rem;
}

/* 生年月日 */
.p-register-form__birthday-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.p-register-form__birthday-input {
  width: 6.4rem;
  height: 4rem;
  padding: 0.6rem 1rem;
  border: 1px solid var(--register-input-border);
  background: var(--register-input-bg);
  box-sizing: border-box;
  font-size: 1.6rem;
  outline: none;
}

.p-register-form__birthday-input:focus {
  border-color: var(--lottery-form-btn-blue);
  background: var(--lottery-form-bg-white);
}

.p-register-form__birthday-unit {
  font-size: 1.4rem;
}

.p-register-form__birthday-select {
  width: 6.4rem;
  height: 4rem;
  padding: 0.6rem 3.4rem 0.6rem 1rem;
  border: 1px solid var(--register-input-border);
  background-color: var(--register-input-bg);
  box-sizing: border-box;
  font-size: 1.4rem;
  outline: none;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--color-select-arrow) 50%),
    linear-gradient(135deg, var(--color-select-arrow) 50%, transparent 50%);
  background-position:
    calc(100% - 14px) 16px,
    calc(100% - 9px) 16px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.p-register-form__birthday-select:focus {
  border-color: var(--lottery-form-btn-blue);
  background-color: var(--lottery-form-bg-white);
}

/* 性別 */
.p-register-form__radio-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.4rem 2.4rem;
}

.p-register-form__radio-label {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0.8rem 0;
  font-size: 1.6rem;
  line-height: 1.4;
  cursor: pointer;
}

.p-register-form__radio-label input[type="radio"] {
  display: none;
}

.p-register-form__radio-label span {
  position: relative;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--register-input-border);
  border-radius: 50%;
  background: var(--lottery-form-bg-white);
  box-sizing: border-box;
  flex-shrink: 0;
}

.p-register-form__radio-label input[type="radio"]:checked + span::after {
  content: "";
  position: absolute;
  inset: 0.5rem;
  border-radius: 50%;
  background: var(--login-register-btn-bg);
}

/* メールマガジン */
.p-register-form__newsletter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.6rem;
  padding: 1.8rem 0 2.6rem;
  cursor: pointer;
}

.p-register-form__newsletter input[type="checkbox"] {
  display: none;
}

.p-register-form__newsletter span {
  position: relative;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--register-input-border);
  border-radius: 50%;
  background: var(--lottery-form-bg-white);
  box-sizing: border-box;
  flex-shrink: 0;
}

.p-register-form__newsletter input[type="checkbox"]:checked + span::after {
  content: "";
  position: absolute;
  inset: 0.5rem;
  border-radius: 50%;
  background: var(--login-register-btn-bg);
}

/* 確認画面へボタン */
.p-register-form__submit-area {
  text-align: center;
}

.p-register-form__submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30.8rem;
  max-width: 86%;
  height: 5.6rem;
  border-radius: 999px;
  background: var(--login-register-btn-bg);
  border: none;
  color: var(--lottery-form-text-white);
  font-size: 1.7rem;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
}

.p-register-form__submit-btn:hover {
  opacity: var(--hover-opacity);
}

.p-register-form__submit-btn-arrow {
  position: absolute;
  right: 2.2rem;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}

/* 先頭へボタン（固定フローティング） */
.p-register-form__page-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7.2rem;
  height: 4rem;
  padding: 0 1.2rem;
  border-radius: 999px;
  background: var(--lottery-form-bg-white);
  color: var(--login-register-btn-bg);
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
  box-sizing: border-box;
  z-index: 100;
}

.p-register-form__lead {
  font-size: 1.4rem;
  line-height: 1.75;
  margin-bottom: 2.4rem;
  color: var(--lottery-form-text-dark);
}

/* register confirm
------------------------------------------------------------- */
.p-register-confirm__lead {
  font-size: 1.4rem;
  line-height: 1.75;
  margin-bottom: 2.6rem;
  color: var(--lottery-form-text-dark);
}

.p-register-confirm__lead span {
  color: var(--login-register-note);
}

.p-register-confirm__section-title {
  color: var(--login-section-title);
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 1.2rem;
  line-height: 1.4;
}

.p-register-confirm__box {
  margin-bottom: 1.6rem;
  border: 1px solid var(--lottery-form-order-box-border);
  background: var(--lottery-form-bg-white);
}

.p-register-confirm__item + .p-register-confirm__item {
  border-top: 1px solid var(--lottery-form-order-box-border);
}

.p-register-confirm__label {
  padding: 0.8rem 1.4rem;
  background: var(--lottery-form-modal-bg);
  color: var(--lottery-form-text-dark);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-register-confirm__value {
  padding: 1.4rem 1.6rem 1.5rem;
  background: var(--lottery-form-bg-white);
  color: var(--lottery-form-text-dark);
  font-size: 1.3rem;
  line-height: 1.75;
  word-break: break-word;
}

.p-register-confirm__submit-area {
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}

@media (min-width: 768px) {
  .p-register-confirm__submit-area {
    flex-direction: row-reverse;
    justify-content: center;
    gap: 2rem;
  }
}

a.p-register-confirm__back-btn {
  text-decoration: none;
  color: var(--lottery-form-text-white);
}

a.p-register-confirm__back-btn:visited {
  color: var(--lottery-form-text-white);
}

.p-register-confirm__back-btn-arrow {
  position: absolute;
  left: 2.2rem;
  top: 50%;
  transform: translateY(-50%) scaleX(-1);
  display: block;
}

/* register complete
------------------------------------------------------------- */
.p-register-complete__title {
  font-size: 2.1rem;
  font-weight: 400;
  color: var(--login-section-title);
  text-align: center;
  margin-bottom: 3.2rem;
}

.p-register-complete__text {
  font-size: 1.4rem;
  line-height: 1.9;
  text-align: center;
  color: var(--lottery-form-text-dark);
  margin-bottom: 4rem;
}

.p-register-complete__warnings {
  margin-bottom: 2.4rem;
}

.p-register-complete__btn-area {
  text-align: center;
  margin-bottom: 3.2rem;
}

.p-kadokawa-page--compact {
  min-height: auto;
}

a.p-register-complete__btn {
  text-decoration: none;
  color: var(--lottery-form-text-white);
}

a.p-register-complete__btn:visited {
  color: var(--lottery-form-text-white);
}

/* about page
------------------------------------------------------------- */
.p-about__title {
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--login-section-title);
  text-align: center;
  margin: 0 0 1.8rem;
  line-height: 1.45;
}

.p-about__lead {
  font-size: 1.3rem;
  line-height: 1.8;
  margin: 0 0 2.4rem;
  color: var(--lottery-form-text-dark);
}

.p-about__accordion {
  border-top: 1px solid var(--lottery-form-border-color);
}

.p-about__accordion-item {
  border-bottom: 1px solid var(--lottery-form-border-color);
  background: var(--lottery-form-bg-white);
  scroll-margin-top: var(--kadokawa-header-height);
}

.p-about__accordion-head {
  position: relative;
  width: 100%;
  min-height: 4.8rem;
  padding: 1.4rem 4.4rem 1.4rem 1.6rem;
  border: none;
  background: var(--lottery-form-bg-white);
  color: var(--login-section-title);
  text-align: left;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
}

.p-about__accordion-icon {
  position: absolute;
  right: 1.6rem;
  top: 50%;
  width: 1.6rem;
  height: 1.6rem;
  transform: translateY(-50%);
}

.p-about__accordion-icon::before,
.p-about__accordion-icon::after {
  content: "";
  position: absolute;
  background: var(--login-section-title);
}

.p-about__accordion-icon::before {
  left: 0;
  top: 0.7rem;
  width: 1.6rem;
  height: 0.2rem;
}

.p-about__accordion-icon::after {
  left: 0.7rem;
  top: 0;
  width: 0.2rem;
  height: 1.6rem;
  transition: opacity 0.2s ease;
}

.p-about__accordion-item.is-open .p-about__accordion-icon::after {
  opacity: 0;
}

.p-about__accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.6rem;
  background: var(--lottery-form-bg-white);
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--lottery-form-text-dark);
}

.p-about__accordion-item.is-open .p-about__accordion-body {
  max-height: 600rem;
  padding: 0 1.6rem 1.8rem;
}

.p-about__accordion-body p {
  margin: 0 0 1.4rem;
}

.p-about__link-list {
  margin: 1.2rem 0 0;
  padding: 0;
}

.p-about__link-list li {
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
  list-style: none;
}

.p-about__link-list li::before {
  content: "・";
}

.p-about__link-list a {
  color: var(--login-section-title);
  text-decoration: underline;
}

.p-about__env-block {
  margin: 1.6rem 0;
}

.p-about__env-block h3 {
  margin: 0 0 0.6rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.p-about__env-block ul {
  margin: 0;
  padding: 0;
}

.p-about__env-block li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 0.4rem;
  font-size: 1.3rem;
  list-style: none;
}

.p-about__env-block li::before {
  content: "・";
  position: absolute;
  left: 0;
}

/* passwordModifyInput
------------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .p-passwordModify-inputArea .c-userSect-entry__title {
    width: 23%;
  }
}

/* passwordModifyComplete
------------------------------------------------------------- */
/* serialKeyAuthInput
------------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .p-serialKeyAuth-inputArea .c-userSect-entry__title {
    width: 23%;
  }
}

/* serialKeyAuthComplete
------------------------------------------------------------- */
/* myPage Top
------------------------------------------------------------- */
.p-myPage-body {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 992px) {
  .p-myPage-body {
    display: flow-root;
    overflow: hidden;
  }
}

.p-myPage-infoWrap {
  order: 1;
  padding: 0 1.6rem;
  margin-bottom: 3.6rem;
}

@media screen and (min-width: 992px) {
  .p-myPage-infoWrap {
    float: right;
    width: 70.2%;
    padding: 0;
    margin-bottom: 3.8rem;
  }
}

.p-myPage-infoWrap__title {
  padding-bottom: 2.1rem;
}

@media screen and (min-width: 768px) {
  .p-myPage-infoWrap__title {
    padding-bottom: 2.4rem;
  }
}

.p-myPage-navWrap {
  order: 2;
  padding: 0 1.6rem;
  margin-bottom: 5rem;
}

@media screen and (min-width: 992px) {
  .p-myPage-navWrap {
    float: left;
    width: 23%;
    padding: 0;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-myPage-info {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    border-radius: 1rem;
    background-color: var(--color-gray-light);
  }
}

.p-myPage-pointInfo__point {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-primary);
}

.p-myPage-pointInfo__expire {
  font-size: 1.2rem;
  color: var(--color-gray-middle);
}

@media screen and (min-width: 768px) {
  .p-myPage-pointInfo__expire {
    font-size: unset;
    color: unset;
  }
}

@media screen and (min-width: 768px) {
  .p-myPage-pointInfo__expire::before {
    content: "（";
  }
}

@media screen and (min-width: 768px) {
  .p-myPage-pointInfo__expire::after {
    content: "）";
  }
}

.p-myPage-pointInfo .m-userSect-wrap {
  padding-bottom: 0;
  border-bottom: none;
  border-radius: 0;
  background-color: transparent;
}

.p-myPage-pointInfo > .barcode {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-myPage-pointInfo .m-userSect-wrap {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 2.4rem;
  }
}

@media screen and (min-width: 768px) {
  .p-myPage-pointInfo .c-userSect-info__title {
    width: 13.8rem;
  }
}

.p-myPage-pointInfo + .p-myPage-userRankInfo {
  margin-top: 2rem;
  padding-top: 2.3rem;
  border-top: solid 1px var(--color-gray-light-little);
}

@media screen and (min-width: 768px) {
  .p-myPage-pointInfo + .p-myPage-userRankInfo {
    margin-top: 0;
    padding-top: 2.8rem;
  }
}

@media screen and (min-width: 768px) {
  .p-myPage-userRankInfo {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.8rem 0 2.4rem;
  }
}

@media screen and (min-width: 768px) {
  .p-myPage-userRankInfo__info {
    flex-grow: 1;
  }
}

.p-myPage-userRankInfo__info-rank {
  font-size: 2rem;
}

.p-myPage-userRankInfo__button {
  max-width: 80%;
  margin-top: 2.1rem;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .p-myPage-userRankInfo__button {
    flex-shrink: 0;
    max-width: none;
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-myPage-userRankInfo .c-userSect-info__title {
    width: 13.8rem;
  }
}

.p-myPageRankUpInfo-list {
  display: flex;
  flex-direction: column;
  gap: 2.15rem;
  padding: 2rem 1.6rem 2rem;
}

@media screen and (min-width: 768px) {
  .p-myPageRankUpInfo-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2.5rem 2.5rem;
    padding: 4.4rem 4.9rem;
  }
}

@media screen and (min-width: 768px) {
  .p-myPageRankUpInfo-list__item {
    width: calc(50% - 1.25rem);
  }
}

@media screen and (min-width: 992px) {
  .p-myPageRankUpInfo-list__item {
    width: calc(33.3333% - 1.6666666667rem);
  }
}

.p-myPageRankUpInfo-Item__head {
  padding: 1rem 1rem 0.7rem;
  text-align: center;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  font-size: 1.6rem;
  font-weight: 600;
  background-color: var(--color-gray);
}

@media screen and (min-width: 768px) {
  .p-myPageRankUpInfo-Item__head {
    padding-bottom: 0.9rem;
    font-size: 1.4rem;
  }
}

.p-myPageRankUpInfo-Item__body {
  padding: 1.6rem 1.5rem 1.5rem;
  border: solid 1px var(--color-gray);
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

@media screen and (min-width: 768px) {
  .p-myPageRankUpInfo-Item__body {
    padding: 1.7rem 1.5rem 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-myPageRankUpInfo-ItemNext {
    min-height: 11rem;
  }
}

.p-myPageRankUpInfo-ItemNext__or {
  display: flex;
  justify-content: center;
  margin: 0.9rem 0;
  align-items: center;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--color-gray-dark);
}

@media screen and (min-width: 768px) {
  .p-myPageRankUpInfo-ItemNext__or {
    font-size: 1.2rem;
  }
}

.p-myPageRankUpInfo-ItemNext__or::before, .p-myPageRankUpInfo-ItemNext__or::after {
  content: "";
  display: block;
  flex-grow: 1;
  height: 1px;
  flex-grow: 1;
  background-color: var(--color-gray);
}

.p-myPageRankUpInfo-ItemNext__or::before {
  margin-right: 1rem;
}

.p-myPageRankUpInfo-ItemNext__or::after {
  margin-left: 1rem;
}

.p-myPageRankUpInfo-ItemNext__terms {
  font-size: 1.5rem;
}

@media screen and (min-width: 768px) {
  .p-myPageRankUpInfo-ItemNext__terms {
    font-size: 1.3rem;
  }
}

.p-myPageRankUpInfo-ItemNext__termsPrice-em {
  font-weight: 600;
}

.p-myPageRankUpInfo-ItemDetail {
  border-top: solid 1px var(--color-gray);
  margin-top: 1.4rem;
  padding-top: 1.7rem;
  font-size: 1.2rem;
  color: var(--color-gray-dark);
}

@media screen and (min-width: 768px) {
  .p-myPageRankUpInfo-ItemDetail {
    margin-top: 2rem;
    padding-top: 1.7rem;
  }
}

.p-myPageRankUpInfo-ItemDetail__item:nth-child(n+2) {
  margin-top: 0.5rem;
}

@media screen and (min-width: 768px) {
  .p-myPageRankUpInfo-ItemDetail__item:nth-child(n+2) {
    margin-top: 0.4rem;
  }
}

.p-myPageRankUpInfo-ItemDetail__item-title::after {
  content: "：";
}

.p-myPage-recommendWrap {
  order: 3;
  padding-top: 2.7rem;
  border-top: solid 1px var(--color-gray);
}

@media screen and (min-width: 992px) {
  .p-myPage-recommendWrap {
    float: right;
    padding-top: 0;
    width: 70.2%;
    border: none;
  }
}

.p-myPage-recommendWrap__inner {
  display: flex;
  flex-direction: column;
  row-gap: 3.5rem;
  padding: 0 1.6rem;
}

@media screen and (min-width: 992px) {
  .p-myPage-recommendWrap__inner {
    row-gap: 3.2rem;
    padding: 0;
  }
}

/* 折り返しなしにする場合はコメントを外す
@media screen and (min-width: 768px) {
  .p-myPage-recommendWrap__item .m-productLineUser-col3-md4__item:nth-child(n+5) {
    display: none;
  }
}
*/

/* modifyInput
------------------------------------------------------------- */
.p-modifyInput-input-area:not(:last-child) {
  padding-bottom: 2.1rem;
  margin-bottom: 2.2rem;
  border-bottom: 1px solid var(--color-gray);
}

@media screen and (min-width: 768px) {
  .p-modifyInput-input-area:not(:last-child) {
    padding-bottom: 0;
    margin-bottom: 3rem;
    border-bottom: none;
  }
}

.p-modifyInput-input-area .c-formInput-item__inline {
  column-gap: 2rem;
  margin: 1rem 0;
}

@media screen and (min-width: 768px) {
  .p-modifyInput-input-area .c-formInput-item__inline {
    margin: 0.5rem 0;
  }
}

.p-modifyInput-input-area .c-formInput-item__block {
  row-gap: 0.9rem;
}

@media screen and (min-width: 768px) {
  .p-modifyInput-input-area .c-userSect-entry:first-child {
    padding-top: 1rem;
    border-top: 0;
  }
}

/* modifyConfirm
------------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .p-modifyConfirm-info .m-userSect--customer-info .c-userSect-info__title {
    width: 19.5%;
  }
}

@media screen and (min-width: 768px) {
  .p-modifyConfirm-info .m-userSect--useradvanced-info .c-userSect-info__title {
    width: 22%;
  }
}

@media screen and (min-width: 768px) {
  .p-modifyConfirm-info .m-userSect--login-info .c-userSect-info__title {
    width: 15.5%;
  }
}

/* modifyComplete
------------------------------------------------------------- */
/* shippingList
------------------------------------------------------------- */
.p-shippingList-info__head {
  margin-top: 3rem;
  padding-top: 0.9rem;
  padding-bottom: 3rem;
}

@media screen and (min-width: 768px) {
  .p-shippingList-info__head {
    display: flex;
    justify-content: flex-end;
    padding-top: 0.5rem;
  }
}

.p-shippingList-info__progress {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-shippingList-info__progress {
    max-width: 32.775rem;
  }
}

.p-shippingList-info__body .m-userSect-wrap:first-child {
  border-top: none;
}

@media screen and (min-width: 768px) {
  .p-shippingList-info__body .m-userSect .c-userSect-info__title {
    width: 13%;
  }
}

.p-shippingList-info__body .c-userSectHeading__title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

@media screen and (min-width: 768px) {
  .p-shippingList-info__body .c-userSectHeading__title {
    justify-content: flex-start;
    gap: 4rem;
  }
}

.p-shippingList-info__body .c-userSectHeading__title .c-btn-fluid {
  transform: translateY(-0.2rem);
  flex-shrink: 0;
  width: max-content;
  height: 2.6rem;
  margin: 0;
  padding: 0 1rem;
}

.p-shippingList-info__body .c-userSectHeading__title .c-btn-fluid--gray-border {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

  .p-shippingList-info__body .c-userSectHeading__title .c-btn-fluid--gray-border:hover {
    cursor: default;
    opacity: 1;
  }

  .p-shippingList-info__body .c-userSectHeading__title .c-btn-fluid--gray-border::before {
    content: "";
    display: block;
    width: 1.2rem;
    aspect-ratio: 4/3;
    background: url(../img/user/icon-check.svg) center/100% no-repeat;
  }

/**
 * #for Noitem
 */
.c-noItem-message + .p-shippingList-info > .p-shippingList-info__head {
  padding: 0;
}

.c-noItem-message-wrap {
    padding-top: 2.2rem;
    padding-bottom: 2.3rem;
}

@media screen and (min-width: 768px) {
  .c-noItem-message-wrap {
    padding-top: 2.7rem;
    padding-bottom: 2.4rem;
  }
}

/* shippingInput
------------------------------------------------------------- */
/* shippingConfirm
------------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .p-shippingConfirm-info .m-userSect--shipping-info .c-userSect-info__title {
    width: 13%;
  }
}

/* creditCardInput
------------------------------------------------------------- */
.p-creditcard-recaptcha {
  width: 28.6rem;
  margin-top: 3rem;
  margin-right: auto;
  margin-left: auto;
}
/* creditCardConfirm
------------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .p-creditCardConfirm-info .m-userSect--creditCard-info .c-userSect-info__title {
    width: 18%;
  }
}

/* paymentList
------------------------------------------------------------- */
.p-paymentList-info__section:not(:first-child) {
  margin-top: 4rem;
}

.p-paymentList-info__section--others .c-userSectHeading__title {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .p-paymentList-info__section:not(:first-child) {
    margin-top: 5rem;
  }
}

.p-paymentList-info__heading {
  padding-bottom: 1.4rem;
  font-size: 1.8rem;
  font-weight: 600;
  border-bottom: 1px solid var(--color-light);
}

@media screen and (min-width: 768px) {
  .p-paymentList-info__heading {
    padding-bottom: 1.2rem;
    font-size: 2.4rem;
  }
}

.p-paymentList-info__unregistered {
  margin-bottom: 1.7rem;
  font-size: 1.8rem;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .p-paymentList-info__unregistered {
    margin-bottom: 3.1rem;
    font-size: 2.4rem;
    line-height: 1.36;
  }
}

.p-paymentList-info__unregistered + .p-paymentList-info__head {
  padding-bottom: 0;
}

.p-paymentList-info__progress {
  width: 100%;
  margin-top: 3rem;
}

@media screen and (min-width: 768px) {
  .p-paymentList-info__progress {
    max-width: 32.775rem;
    margin-left: auto;
  }
}

.p-paymentList-info__nopaidy {
  margin-top: 2rem;
  font-size: 1.8rem;
}

@media screen and (min-width: 768px) {
  .p-paymentList-info__nopaidy {
    margin-top: 3rem;
    font-size: 2.4rem;
  }
}

@media screen and (min-width: 768px) {
  .p-paymentList-info__body .m-userSect .c-userSect-info__title {
    width: 17.8%;
  }
}

.p-paymentList-info__body .m-userSect-wrap:first-child {
  border-top: none;
}

.p-paymentList-info__body .c-userSectHeading__title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.p-paymentList-info__body .c-userSectHeading__description {
  margin: 1rem;
}

@media screen and (min-width: 768px) {
  .p-paymentList-info__body .c-userSectHeading__title {
    justify-content: flex-start;
    gap: 4rem;
  }
}

.p-paymentList-info__body .c-userSectHeading__title .c-btn-fluid {
  transform: translateY(-0.2rem);
  flex-shrink: 0;
  width: max-content;
  height: 2.6rem;
  margin: 0;
  padding: 0 1rem;
}

.p-paymentList-info__body .c-userSectHeading__title .c-btn-fluid--gray-border {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

  .p-paymentList-info__body .c-userSectHeading__title .c-btn-fluid--gray-border:hover {
    cursor: default;
    opacity: 1;
  }

  .p-paymentList-info__body .c-userSectHeading__title .c-btn-fluid--gray-border::before {
    content: "";
    display: block;
    width: 1.2rem;
    aspect-ratio: 4/3;
    background: url(../img/user/icon-check.svg) center/100% no-repeat;
  }

.p-paymentList-info__body > .c-noItem-message {
  margin-top: 2rem;
}

@media screen and (min-width: 768px) {
  .p-paymentList-info__body > .c-noItem-message {
    margin-top: 3rem;
  }
}


/* clickPoint
------------------------------------------------------------- */
.p-clickPointInfo {
  font-size: 1.6rem;
}

@media screen and (min-width: 768px) {
  .p-clickPointInfo {
    padding-top: 2.9rem;
    text-align: center;
  }
}

.p-clickPointInfo__primary {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color-primary);
}

/* favoriteList
------------------------------------------------------------- */
/* pointHistoryList
------------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .p-pointList-content__user .c-userSect-info__title {
    width: 13.7rem;
  }
}

.p-pointList-content__list {
  margin-top: 3rem;
}

@media screen and (min-width: 768px) {
  .p-pointList-content__list {
    margin-top: 4rem;
  }
}

@media screen and (min-width: 768px) {
  .p-pointList-content__list .c-userSect-info__title {
    width: 20.8%;
  }
}

/* couponBox
------------------------------------------------------------- */
.p-couponBox-content__list .m-userSect-wrap:first-child {
  border-top: none;
  padding-top: 0;
}

@media screen and (min-width: 768px) {
  .p-couponBox-content__list .c-userSect-info__title {
    width: 19.8%;
  }
}

/* orderHistoryList
------------------------------------------------------------- */
.p-orderHistoryList-content__list .m-userSect-wrap:first-child {
  border-top: none;
}

.p-orderHistoryList-content__list .m-userProductSectCol-item:first-child {
  border-top: none;
}

@media screen and (min-width: 768px) {
  .p-orderHistoryList-content__list .c-userSect-info__title {
    width: 18%;
  }
}

.p-historyListChange {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100vw;
  margin-left: -1.6rem;
  margin-bottom: 0.7rem;
  border-bottom: solid 1px var(--color-gray);
  font-size: 1.4rem;
}

@media screen and (min-width: 768px) {
  .p-historyListChange {
    gap: 1.03rem;
    width: 100%;
    margin-left: 0;
    margin-bottom: 0;
    font-size: 1.6rem;
  }
}

.p-historyListChange__item {
  position: relative;
  width: calc(50% - 0.425rem);
}

@media screen and (min-width: 768px) {
  .p-historyListChange__item {
    width: 15.1rem;
  }
}

.p-historyListChange__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 5.9rem;
  text-align: center;
  border: solid 1px;
  border-bottom: none;
  border-color: var(--color-gray-light);
  border-radius: 0.4rem 0.4rem 0 0;
  background-color: var(--color-gray-light);
}

.p-historyListChange__button--current {
  pointer-events: none;
  border-color: var(--color-gray);
  background: var(--color-white);
  font-weight: 600;
}

  .p-historyListChange__button--current::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    border-left: solid 1px;
    border-right: solid 1px;
    border-color: var(--color-gray);
    background-color: var(--color-white);
  }

/* orderHistoryDetail
------------------------------------------------------------- */
.p-orderHistoryDetail-content__info .m-userSectCol:first-child {
  border-top: none;
  padding-top: 0;
}

@media screen and (min-width: 768px) {
  .p-orderHistoryDetail-content__price {
    margin-top: 5rem;
  }
}

/* recieveMailList
------------------------------------------------------------- */
.p-recieveMailList-content__list .m-userSect-wrap:first-child {
  padding-top: 0.1rem;
  border-top: none;
}

@media screen and (min-width: 768px) {
  .p-recieveMailList-content__list .m-userSect-wrap:first-child {
    padding-top: 0.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-recieveMailList-content__list .c-userSect-info__title {
    width: 21%;
  }
}

/* recieveMailDetail
------------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .p-recieveMailDetail-content__overview .c-userSect-info__title {
    width: 24.8%;
  }
}

.p-recieveMailDetail-content__body {
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid var(--color-gray);
  font-size: 1.4rem;
}

@media screen and (min-width: 768px) {
  .p-recieveMailDetail-content__body {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

/* fixedPurchaseList
------------------------------------------------------------- */
.p-fixedPurchaseList-content__list .m-userSect-wrap:first-child {
  border-top: none;
  padding-top: 0;
}

@media screen and (min-width: 768px) {
  .p-fixedPurchaseList-content__list .c-userSect-info__title {
    width: 31.5%;
  }
}

/* fixedPurchaseDetail
------------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .p-fixedPurchaseDetail-content {
    margin-top: 0.4rem;
  }
}

@media screen and (min-width: 768px) {
  .p-fixedPurchaseDetail-content__products {
    border-top: solid 1px var(--color-gray);
  }
}

@media screen and (min-width: 768px) {
  .p-fixedPurchaseDetail-content__price {
    margin-top: 5rem;
  }
}

.p-fixedPurchaseDetail-content .m-userSectCol:first-child {
  border-top: none;
}

@media screen and (min-width: 768px) {
  .p-fixedPurchaseDetail-content .m-userUseCoupon-selectBox {
    max-width: 96%;
  }
}

@media screen and (min-width: 768px) {
  .p-fixedPurchaseDetail-content .m-userUseCoupon-inputBox {
    max-width: 87%;
  }
}

/* fixedPurchaseCancelInput
------------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .p-fixedPurchaseCancelInput-content {
    margin-top: 0.4rem;
  }
}

.p-fixedPurchaseCancelInput-content__entry {
  border-top: solid 1px var(--color-gray);
}

@media screen and (min-width: 768px) {
  .p-fixedPurchaseCancelInput-content__products {
    border-top: solid 1px var(--color-gray);
  }
}

.p-fixedPurchaseCancelInput-content .m-userSectCol:first-child {
  border-top: none;
}

/* fixedPurchaseCancelConfirm
------------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .p-fixedPurchaseCancelConfirm-content {
    margin-top: 0.4rem;
  }
}

.p-fixedPurchaseCancelConfirm-content__entry {
  border-top: solid 1px var(--color-gray);
}

@media screen and (min-width: 768px) {
  .p-fixedPurchaseCancelConfirm-content__products {
    border-top: solid 1px var(--color-gray);
  }
}

.p-fixedPurchaseCancelConfirm-content .m-userSectCol:first-child {
  border-top: none;
}

/* fixedPurchaseCancelComplete
------------------------------------------------------------- */
/* socialLoginCooperation
------------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .p-socialLogin-content__list {
    border-bottom: solid 1px var(--color-gray);
  }
}

.p-socialLogin-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3%;
  width: 100%;
  flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .p-socialLogin-item {
    gap: 3%;
    padding: 2rem 0;
    border-top: solid 1px var(--color-gray);
  }
}

.p-socialLogin-item:nth-child(n+2) {
  padding: 1.6rem 0 0;
}

@media screen and (min-width: 768px) {
  .p-socialLogin-item:nth-child(n+2) {
    padding: 2rem 0;
  }
}

.p-socialLogin-item__media {
  width: 70.5%;
}

@media screen and (min-width: 768px) {
  .p-socialLogin-item__media {
    width: 36%;
  }
}

.p-socialLogin-item__media .c-btn-socialLogin__button--image > img {
  margin: 0;
}

.p-socialLogin-item__status {
  display: none;
}

@media screen and (min-width: 768px) {
  .p-socialLogin-item__status {
    display: block;
    width: 37%;
    font-size: 1.4rem;
  }
}

.p-socialLogin-item__button {
  width: 26.5%;
}

@media screen and (min-width: 768px) {
  .p-socialLogin-item__button {
    width: 21%;
  }
}

.p-socialLogin-item__message {
  width: 100%;
  margin-top: 1rem;
  font-size: 1.2rem;
}

@media screen and (min-width: 768px) {
  .p-socialLogin-item__message {
    width: 21%;
  }
}

.p-socialLogin-item__status-title::after {
  content: "：";
  letter-spacing: -0.4rem;
}

/* invoiceList
------------------------------------------------------------- */
.p-invoiceList-info__head {
  padding-top: 0.9rem;
  padding-bottom: 3rem;
}

@media screen and (min-width: 768px) {
  .p-invoiceList-info__head {
    display: flex;
    justify-content: flex-end;
    padding-top: 0.5rem;
  }
}

.p-invoiceList-info__progress {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-invoiceList-info__progress {
    max-width: 32.775rem;
  }
}

@media screen and (min-width: 768px) {
  .p-invoiceList-info__body .m-userSect .c-userSect-info__title {
    width: 21%;
  }
}

.m-userSectCol-subscriptionPaymentDescription > div {
    padding-bottom: 1.8rem;
}

/* invoiceInput
------------------------------------------------------------- */
/* invoiceConfirm
------------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .p-invoiceConfirm-info .m-userSect .c-userSect-info__title {
    width: 18%;
  }
}

/* productArrivalMailList
------------------------------------------------------------- */
.p-productArrivalMailList-info {
  padding-top: 0.3rem;
}

@media screen and (min-width: 768px) {
  .p-productArrivalMailList-info {
    padding-top: 0.9rem;
  }
}

.p-productArrivalMailList-item {
  display: grid;
  grid-template-columns: 21.5% 1fr;
  grid-template-rows: auto 1.7rem auto 2.6rem auto;
  column-gap: 1.63rem;
  align-items: center;
  padding-bottom: 2.4rem;
  border-bottom: solid 1px var(--color-gray);
}

@media screen and (min-width: 768px) {
  .p-productArrivalMailList-item {
    grid-template-columns: 14% 3% 1fr 5.84% 15.09%;
    grid-template-rows: auto auto;
    column-gap: 0;
    padding-bottom: 3rem;
  }
}

@media screen and (min-width: 992px) {
  .p-productArrivalMailList-item {
    grid-template-columns: 18.94% 4.58% 1fr 5.84% 15.09%;
  }
}

.p-productArrivalMailList-item:not(:first-child) {
  padding-top: 2.4rem;
}

@media screen and (min-width: 768px) {
  .p-productArrivalMailList-item:not(:first-child) {
    padding-top: 3rem;
  }
}

.p-productArrivalMailList-item__pictureWrap {
  grid-area: 1/1/2/2;
}

@media screen and (min-width: 768px) {
  .p-productArrivalMailList-item__pictureWrap {
    grid-area: 1/1/3/2;
  }
}

.p-productArrivalMailList-item__title {
  grid-area: 1/2/2/3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 1.2rem;
}

@media screen and (min-width: 768px) {
  .p-productArrivalMailList-item__title {
    grid-area: 1/3/2/4;
    -webkit-line-clamp: 1;
    margin-top: 0.6rem;
    font-size: 1.6rem;
    font-weight: 600;
  }
}

.p-productArrivalMailList-item__info {
  grid-area: 3/1/4/3;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media screen and (min-width: 768px) {
  .p-productArrivalMailList-item__info {
    grid-area: 2/3/3/4;
    gap: 0.9rem;
    align-self: start;
    margin-top: 0.3rem;
  }
}

.p-productArrivalMailList-item__button {
  grid-area: 5/1/6/3;
  text-align: center;
}

  .p-productArrivalMailList-item__button .c-btn-fluid {
    width: 80%;
    font-weight: 600;
  }

@media screen and (min-width: 768px) {
  .p-productArrivalMailList-item__button {
    grid-area: 1/5/3/6;
  }

    .p-productArrivalMailList-item__button .c-btn-fluid {
      width: 100%;
    }
}

.p-productArrivalMailList-itemInfo {
  font-size: 1.4rem;
  line-height: 1.6;
}

.p-productArrivalMailList-itemInfo__title {
  display: inline-block;
}

  .p-productArrivalMailList-itemInfo__title::after {
    content: "：";
    letter-spacing: -0.4rem;
  }

.p-productArrivalMailList-itemInfo__text {
  display: inline-block;
}

.p-productArrivalMailList-itemInfo__form {
  display: inline-block;
}

.p-productArrivalMailList-itemInfo__limit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.p-productArrivalMailList-itemInfo__limit-selectbox {
  width: 9.1rem;
}

@media screen and (min-width: 768px) {
  .p-productArrivalMailList-itemInfo__limit-selectbox {
    width: 10.2rem;
  }
}

@media screen and (min-width: 768px) {
  .m-userSect__referralUrlCopy-button-wrap {
    flex-shrink: 0;
    width: 23.5%;
  }
}

/* KADOKAWA Login
------------------------------------------------------------- */
.p-login-outer .l-container-wrap__body,
.p-login-outer .p-page-login,
.p-login-outer article,
.p-login-outer .l-container-sm {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
.p-page-login .l-container-sm {
  padding-left: 0;
  padding-right: 0;
}
.p-login-membership-block {
  background: var(--lottery-form-bg-white);
}
/* 会員登録がお済みのお客様 */
.p-login-member-section {
  background: var(--login-member-bg);
  padding: 2.8rem 2.2rem 3rem;
  text-align: center;
}
.p-login-member-section__title,
.p-login-register-section__title {
  margin: 0 0 1.8rem;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--login-section-title);
}
.p-login-member-section__desc,
.p-login-register-section__desc {
  font-size: 1.3rem;
  line-height: 2;
  color: var(--lottery-form-text-dark);
  text-align: left;
  max-width: 26rem;
}
.p-login-member-section__desc {
  margin: 0 auto 2.2rem;
}
/* ログインフォーム白いボックス */
.p-login-form__login-box {
  background: var(--lottery-form-bg-white);
  border-radius: 1rem;
  padding: 1.6rem 1.6rem 1.8rem;
  margin: 0 auto 1.8rem;
  max-width: 28rem;
  text-align: left;
}
.p-login-form__login-group {
  margin-top: 1.8rem;
}
.p-login-form__login-group:first-child {
  margin-top: 0;
}
.p-login-form__login-label {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--lottery-form-text-dark);
}
.p-login-form__login-input {
  width: 100%;
  height: 3.1rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--login-input-border);
  border-radius: 0;
  background: var(--lottery-form-bg-white);
  font-size: 1.4rem;
  box-sizing: border-box;
}
.p-login-form__login-btn {
  display: block;
  width: 19rem;
  margin: 2.2rem auto 0;
  padding: 1.4rem 1rem;
  border: none;
  border-radius: 999px;
  background: var(--login-btn-inactive);
  color: var(--lottery-form-text-white);
  font-size: 1.5rem;
  cursor: pointer;
}
.p-login-form__login-btn.is-active {
  background: var(--color-brand);
}
/* ヘルプリンク */
.p-login-form__help-links {
  text-align: right;
  max-width: 28rem;
  margin: 0 auto;
}
.p-login-form__help-link {
  display: block;
  font-size: 1.2rem;
  line-height: 2;
  color: var(--login-help-link);
  text-decoration: underline;
}
/* 会員登録がお済みでないお客様 */
.p-login-register-section {
  padding: 2.6rem 2.2rem 3rem;
  background: var(--lottery-form-bg-white);
  text-align: center;
}
.p-login-register-section__desc {
  margin: 0 auto 1rem;
}
.p-login-register-section__note {
  margin: 0 auto 2.4rem;
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--login-register-note);
  text-align: left;
  max-width: 26rem;
}
/* c-btn provides: display, text-align, text-decoration, cursor, color:#fff, hover:opacity */
.p-login-register-section__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-width: 19rem;
  padding: 1.4rem 2.4rem;
  border-radius: 999px;
  background: var(--login-register-btn-bg);
  font-size: 1.5rem;
}


/* receiptDownload
------------------------------------------------------------- */

/* =============================================================
    p-lottery-form
============================================================= */
.p-lottery-form__section-body {
  padding: 24px;
}

.p-lottery-form__title {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.p-lottery-form__title--center {
  text-align: center;
}

.p-lottery-form__notice {
  background: var(--color-notice-bg);
  border: 1px solid var(--color-notice-border);
  border-radius: 4px;
  padding: 16px;
  margin-bottom: 16px;
  font-size: 1.4rem;
  line-height: 1.8;
}

.p-lottery-form__caution {
  background: var(--color-caution-bg);
  border: 1px solid var(--color-caution-border);
  border-radius: 4px;
  padding: 16px;
  margin-bottom: 16px;
  font-size: 1.4rem;
  line-height: 1.8;
}

.p-lottery-form__caution-title {
  font-weight: bold;
  margin-bottom: 8px;
}

.p-lottery-form__info {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.p-lottery-form__agree-box {
  border: 1px solid var(--color-border-dashed);
  border-radius: 4px;
  padding: 24px;
  text-align: center;
  margin-bottom: 16px;
}

.p-lottery-form__agree-text {
  margin-bottom: 16px;
}

.p-lottery-form__agree-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 1.6rem;
}

.p-lottery-form__error {
  color: red;
  margin-bottom: 16px;
}

.p-lottery-form__error--center {
  text-align: center;
}

.p-lottery-form__toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.p-lottery-form__toolbar-count {
  font-size: 1.4rem;
}

.p-lottery-form__toolbar-btn {
  padding: 6px 16px;
  border: 1px solid var(--color-text);
  background: var(--color-white);
  cursor: pointer;
  font-size: 1.4rem;
}

.p-lottery-form__toolbar-btn--reset {
  padding: 6px 16px;
  border: 1px solid var(--color-border-dashed);
  background: var(--color-white);
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--color-text-muted);
}

.p-lottery-form__empty {
  padding: 24px;
  text-align: center;
  color: var(--color-text-muted);
}

.p-lottery-form__table {
  width: 100%;
  border-collapse: collapse;
}

.p-lottery-form__table--mb {
  margin-bottom: 16px;
}

.p-lottery-form__table-header {
  border-bottom: 2px solid var(--color-text);
}

.p-lottery-form__table-cell {
  padding: 8px 12px;
}

.p-lottery-form__table-cell--left {
  text-align: left;
  font-weight: bold;
}

.p-lottery-form__table-cell--center {
  text-align: center;
  font-weight: bold;
}

.p-lottery-form__table-cell--sm {
  padding: 8px;
}

.p-lottery-form__table-cell--sm-left {
  padding: 8px;
  text-align: left;
}

.p-lottery-form__table-cell--sm-center {
  padding: 8px;
  text-align: center;
}

.p-lottery-form__table-cell--sm-right {
  padding: 8px;
  text-align: right;
}

.p-lottery-form__table-cell--sm-right-bold {
  padding: 8px;
  text-align: right;
  font-weight: bold;
}

.p-lottery-form__stock-label {
  display: inline-block;
  background: var(--color-border-light);
  color: var(--color-text-muted);
  font-size: 1.1rem;
  padding: 2px 6px;
  border-radius: 2px;
  margin-left: 8px;
}

.p-lottery-form__select {
  width: 70px;
  padding: 4px 8px;
  border: 1px solid var(--color-border-dashed);
  border-radius: 4px;
}

.p-lottery-form__table-row--border {
  border-bottom: 1px solid var(--color-border-light);
}

.p-lottery-form__table-footer {
  border-top: 2px solid var(--color-text);
}

.p-lottery-form__delete-btn {
  padding: 4px 8px;
  border: 1px solid var(--color-error-red);
  background: var(--color-white);
  color: var(--color-error-red);
  cursor: pointer;
  font-size: 1.2rem;
}

.p-lottery-form__complete-text {
  margin-bottom: 8px;
}

.p-lottery-form__modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-lottery-form__modal-overlay--dark {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-lottery-form__modal {
  background: var(--color-white);
  padding: 24px;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
}

.p-lottery-form__modal--lg {
  background: var(--color-white);
  padding: 24px;
  border-radius: 8px;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
}

.p-lottery-form__modal-title {
  margin-bottom: 16px;
  font-size: 1.6rem;
}

.p-lottery-form__modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.p-lottery-form__modal-filter {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.p-lottery-form__modal-filter-group {
  flex: 1;
}

.p-lottery-form__modal-label {
  display: block;
  margin-bottom: 4px;
  font-size: 1.4rem;
}

.p-lottery-form__modal-field {
  display: flex;
  align-items: center;
  gap: 8px;
}

.p-lottery-form__modal-field-text {
  font-size: 1.4rem;
}

.p-lottery-form__modal-field-text--muted {
  font-size: 1.4rem;
  color: var(--color-gray);
}

.p-lottery-form__modal-select-btn {
  padding: 6px 16px;
  border: 1px solid var(--color-text);
  background: var(--color-white);
  cursor: pointer;
  font-size: 1.3rem;
  white-space: nowrap;
}

.p-lottery-form__modal-select {
  width: 100%;
  padding: 8px;
  border: 1px solid var(--color-border-dashed);
  border-radius: 4px;
}

.p-lottery-form__modal-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.p-lottery-form__modal-btn {
  padding: 8px 16px;
  border: 1px solid var(--color-border-dashed);
  background: var(--color-white);
  cursor: pointer;
}

.p-lottery-form__modal-close-btn {
  padding: 4px 12px;
  border: 1px solid var(--color-border-dashed);
  background: var(--color-white);
  cursor: pointer;
  font-size: 1.4rem;
}

.p-lottery-form__name-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 16px;
}

.p-lottery-form__name-item {
  cursor: pointer;
  text-align: center;
  padding: 8px;
  border: 2px solid transparent;
  border-radius: 8px;
}

.p-lottery-form__name-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 8px;
  background: var(--color-gray-light);
}

.p-lottery-form__name-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-lottery-form__name-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lottery-form-text-placeholder);
  font-size: 1.2rem;
}

.p-lottery-form__name-text {
  font-size: 1.3rem;
  line-height: 1.3;
  word-break: break-all;
}

/* =============================================================
    申込履歴
============================================================= */

/* 共通 */
.p-appHistory__title {
  text-align: center;
  color: var(--app-history-color-primary);
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 0.4rem;
}

.p-appHistory__title-line {
  text-align: center;
  color: var(--app-history-color-primary);
  letter-spacing: 0.4rem;
  margin-bottom: 1.6rem;
}

.p-appHistory__notice {
  font-size: 1.3rem;
  color: var(--app-history-color-text-mid);
  margin-bottom: 2rem;
  padding: 0 0.8rem;
}

.p-appHistory__empty {
  padding: 2.4rem;
  text-align: center;
  color: var(--app-history-color-text-mid);
}

/* 申込日ヘッダーバー */
.p-appHistory__date-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--app-history-color-header);
  color: var(--color-white);
  padding: 0.8rem 1.6rem;
  font-size: 1.3rem;
  font-weight: bold;
}

.p-appHistory__date-group {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.p-appHistory__cancelled-badge {
  display: inline-block;
  padding: 0.2rem 0.8rem;
  background: var(--color-white);
  color: var(--color-accent-red);
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 2rem;
}

.p-appHistory__detail-link {
  display: inline-block;
  padding: 0.4rem 1.6rem;
  background: var(--color-white);
  color: var(--app-history-color-primary);
  border: none;
  border-radius: 0.4rem;
  font-size: 1.3rem;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
}

.p-appHistory__detail-link:hover {
  background: var(--app-history-color-primary-light);
}

/* 一覧：テーブル */
.p-appHistory__list-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0;
}

.p-appHistory__list-table th {
  background: var(--app-history-color-bg-light);
  border: 1px solid var(--app-history-color-border);
  padding: 0.8rem 1.2rem;
  font-size: 1.3rem;
  text-align: center;
  font-weight: bold;
}

.p-appHistory__list-table td {
  border: 1px solid var(--app-history-color-border);
  padding: 0.8rem 1.2rem;
  font-size: 1.3rem;
}

.p-appHistory__list-table td.text-center {
  text-align: center;
}

/* ステータス表示 */
.p-appHistory__status {
  font-weight: bold;
}

.p-appHistory__status--waiting {
  color: var(--app-history-color-text-dark);
}

.p-appHistory__status--won {
  color: var(--app-history-color-primary);
}

.p-appHistory__status--partial-won {
  color: var(--app-history-color-primary);
}

.p-appHistory__status--lost {
  color: var(--app-history-color-lost);
}

.p-appHistory__status--cancelled {
  color: var(--app-history-color-text-muted);
}

.p-appHistory__product-name--cancelled {
  text-decoration: line-through;
}

/* 矢印ボタン */
.p-appHistory__arrow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 0.2rem solid var(--app-history-color-primary);
  border-radius: 50%;
  background: var(--color-white);
  color: var(--app-history-color-primary);
  font-size: 1.4rem;
  cursor: pointer;
  text-decoration: none;
}

.p-appHistory__arrow-btn:hover {
  background: var(--app-history-color-primary-light);
}

/* もっと見るボタン */
.p-appHistory__more-btn {
  display: block;
  width: 20rem;
  margin: 2rem auto;
  padding: 1rem;
  border: 1px solid var(--app-history-color-border-mid);
  border-radius: 2rem;
  background: var(--color-white);
  cursor: pointer;
  font-size: 1.4rem;
  text-align: center;
}

.p-appHistory__more-btn:hover {
  background: var(--app-history-color-bg-light);
}

/* 詳細：フィールド */
.p-appHistory__field-label {
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 1.6rem;
  margin-bottom: 0.4rem;
  padding: 0 0.4rem;
}

.p-appHistory__field-value {
  font-size: 1.4rem;
  padding: 1rem 1.2rem;
  background: var(--app-history-color-bg-lighter);
  border: 1px solid var(--app-history-color-border-light);
  border-radius: 0.4rem;
  margin-bottom: 0.8rem;
}

/* セクションタイトル */
.p-appHistory__section-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--app-history-color-primary);
  margin: 2.8rem 0 1rem;
}

.p-appHistory__product-card {
  border: 1px solid var(--app-history-color-border);
  border-radius: 0.4rem;
  margin-bottom: 1.2rem;
  overflow: hidden;
}

.p-appHistory__product-header {
  background: var(--app-history-color-primary-light);
  padding: 1rem 1.2rem;
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--app-history-color-primary);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
}

.p-appHistory__product-name {
  word-break: break-word;
}

.p-appHistory__product-badge {
  display: inline-block;
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--lottery-form-result-badge-border);
  background: var(--lottery-form-result-badge-bg);
  color: var(--lottery-form-result-badge-text);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.6;
}

.p-appHistory__list-table .p-appHistory__product-badge {
  margin-top: 0.4rem;
}

.p-appHistory__product-body {
  padding: 0.8rem 1.2rem;
}

.p-appHistory__product-row {
  font-size: 1.3rem;
  padding: 0.4rem 0;
}

.p-appHistory__product-row-label {
  font-weight: bold;
}

/* 詳細：合計 */
.p-appHistory__total {
  border: 1px solid var(--app-history-color-border);
  border-radius: 0.4rem;
  padding: 1.2rem;
  margin-bottom: 1.6rem;
}

.p-appHistory__total-title {
  font-size: 1.4rem;
  font-weight: bold;
  border-bottom: 1px solid var(--app-history-color-border-light);
  padding-bottom: 0.8rem;
  margin-bottom: 0.8rem;
}

.p-appHistory__total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.4rem;
  padding: 0.4rem 0;
}

/* 詳細：お届け先 */
.p-appHistory__delivery-card {
  border: 1px solid var(--app-history-color-border);
  border-radius: 0.4rem;
  overflow: hidden;
  margin-bottom: 1.6rem;
}

.p-appHistory__delivery-item {
  border-bottom: 1px solid var(--app-history-color-border-light);
}

.p-appHistory__delivery-item:last-child {
  border-bottom: none;
}

.p-appHistory__delivery-label {
  font-size: 1.3rem;
  font-weight: bold;
  padding: 0.8rem 1.2rem;
  background: var(--app-history-color-bg-lighter);
}

.p-appHistory__delivery-value {
  font-size: 1.4rem;
  padding: 1rem 1.2rem;
}

/* ボタン */
.p-appHistory__cancel-btn {
  display: block;
  width: 80%;
  max-width: 30rem;
  margin: 2.4rem auto 1.2rem;
  padding: 1.2rem;
  border: 1px solid var(--app-history-color-text-dark);
  border-radius: 2.4rem;
  background: var(--color-white);
  color: var(--app-history-color-text-dark) !important;
  font-size: 1.4rem;
}

.p-appHistory__cancel-btn:hover {
  background: var(--app-history-color-bg-light);
}

.p-appHistory__cancel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.p-appHistory__back-btn {
  display: block;
  width: 100%;
  border: none;
  background: var(--app-history-color-primary);
  color: var(--color-white);
  text-align: center;
  border-radius: 9.9rem;
  padding: 1rem 0;
  font-size: 1.4rem;
  cursor: pointer;
}

.p-appHistory__back-btn:hover {
  background: var(--app-history-color-primary-dark);
}

.p-appHistory__btn-arrow {
  position: absolute;
  right: 2.2rem;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}

/* キャンセル完了パネル */
.p-appHistory__complete-panel {
  background: var(--app-history-color-primary-light);
  border-radius: 0.8rem;
  padding: 2.4rem 1.6rem;
}

.p-appHistory__error {
  color: var(--app-history-color-danger);
  margin-bottom: 1.6rem;
  text-align: center;
}

/* キャンセル完了 */
.p-appHistory__complete-text {
  text-align: center;
  font-size: 1.4rem;
  color: var(--app-history-color-text-mid);
  line-height: 1.8;
  margin: 2rem 0 2.4rem;
}

/* 詳細ページ：コンテンツ内パディング */
.p-appHistory__content {
  padding: 1.4rem 1.8rem 0;
}

/* 詳細ページ：読み取り専用フィールド */
.p-appHistory__readonly-box {
  background: var(--app-history-color-bg-lighter);
  padding: 0.8rem 1.2rem;
  margin-bottom: 1.8rem;
  color: var(--app-history-color-text-mid);
  font-size: 1.3rem;
}

/* 詳細ページ：商品パネル（ボーダーで囲む） */
.p-appHistory__panel {
  border: 1px solid var(--app-history-color-border);
  margin: 0 1.6rem;
  background: var(--color-white);
}

.p-appHistory__product-item {
  border-bottom: 1px solid var(--app-history-color-border);
}

.p-appHistory__product-item:last-child {
  border-bottom: none;
}

.p-appHistory__product-title {
  background: var(--app-history-color-primary-light);
  color: var(--app-history-color-primary);
  font-weight: bold;
  font-size: 1.5rem;
  padding: 0.8rem 1.4rem;
}

.p-appHistory__info-row {
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
}

.p-appHistory__info-row:last-child {
  margin-bottom: 0;
}

.p-appHistory__info-label {
  font-weight: bold;
  margin-right: 0.4rem;
}

/* 詳細ページ：合計（パネルのボーダーを引き継いでtop除去） */
.p-appHistory__summary {
  border: 1px solid var(--app-history-color-border);
  border-top: none;
  margin: 0 1.6rem;
}

.p-appHistory__summary-title {
  background: var(--app-history-color-bg-lighter);
  font-weight: bold;
  padding: 0.8rem 1.4rem;
  border-bottom: 1px solid var(--app-history-color-border-light);
  font-size: 1.3rem;
}

.p-appHistory__summary-body {
  padding: 1.4rem 1.8rem 1.2rem;
}

.p-appHistory__summary-row {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.p-appHistory__summary-row:last-child {
  margin-bottom: 0;
}

.p-appHistory__summary-name {
  font-weight: bold;
}

/* 詳細ページ：購入者・支払い情報テーブル */
.p-appHistory__info-table {
  border: 1px solid var(--app-history-color-border);
  margin: 0 1.6rem;
  background: var(--color-white);
}

.p-appHistory__table-block {
  border-bottom: 1px solid var(--app-history-color-border);
}

.p-appHistory__table-block:last-child {
  border-bottom: none;
}

.p-appHistory__table-heading {
  background: var(--app-history-color-bg-lighter);
  font-weight: bold;
  padding: 0.7rem 1.4rem;
  font-size: 1.3rem;
}

.p-appHistory__table-body {
  padding: 1.4rem 1.6rem;
  color: var(--color-text-note);
  font-size: 1.3rem;
  line-height: 1.8;
}

/* 詳細ページ：戻るボタンラッパー */
.p-appHistory__back-wrap {
  padding: 3.4rem 5rem 0;
}

/* 詳細ページ：決済手続きボタン */
.p-appHistory__proceed-wrap {
  padding: 2.4rem 5rem 0;
  text-align: center;
}

.p-appHistory__proceed-btn {
  display: block;
  width: 100%;
  border: none;
  background: var(--app-history-color-primary);
  color: var(--color-white);
  text-align: center;
  border-radius: 9.9rem;
  padding: 1rem 0;
  font-size: 1.4rem;
  cursor: pointer;
}

.p-appHistory__proceed-btn:hover {
  background: var(--app-history-color-primary-dark);
}

.p-appHistory__deadline {
  display: block;
  font-size: 1.2rem;
  color: var(--app-history-color-danger);
  margin-bottom: 0.8rem;
}

/* =============================================================
    p-lottery-form
============================================================= */
.p-lottery-form__section-body {
  padding: 24px;
}

.p-lottery-form__title {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.p-lottery-form__title--center {
  text-align: center;
}

.p-lottery-form__notice {
  background: var(--color-notice-bg);
  border: 1px solid var(--color-notice-border);
  border-radius: 4px;
  padding: 16px;
  margin-bottom: 16px;
  font-size: 1.4rem;
  line-height: 1.8;
}

.p-lottery-form__caution {
  background: var(--color-caution-bg);
  border: 1px solid var(--color-caution-border);
  border-radius: 4px;
  padding: 16px;
  margin-bottom: 16px;
  font-size: 1.4rem;
  line-height: 1.8;
}

.p-lottery-form__caution-title {
  font-weight: bold;
  margin-bottom: 8px;
}

.p-lottery-form__info {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.p-lottery-form__agree-box {
  border: 1px solid var(--color-border-dashed);
  border-radius: 4px;
  padding: 24px;
  text-align: center;
  margin-bottom: 16px;
}

.p-lottery-form__agree-text {
  margin-bottom: 16px;
}

.p-lottery-form__agree-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 1.6rem;
}

.p-lottery-form__error {
  color: red;
  margin-bottom: 16px;
}

.p-lottery-form__error--center {
  text-align: center;
}

.p-lottery-form__toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.p-lottery-form__toolbar-count {
  font-size: 1.4rem;
}

.p-lottery-form__toolbar-btn {
  padding: 6px 16px;
  border: 1px solid var(--color-text);
  background: var(--color-white);
  cursor: pointer;
  font-size: 1.4rem;
}

.p-lottery-form__toolbar-btn--reset {
  padding: 6px 16px;
  border: 1px solid var(--color-border-dashed);
  background: var(--color-white);
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--color-text-muted);
}

.p-lottery-form__empty {
  padding: 24px;
  text-align: center;
  color: var(--color-text-muted);
}

.p-lottery-form__table {
  width: 100%;
  border-collapse: collapse;
}

.p-lottery-form__table--mb {
  margin-bottom: 16px;
}

.p-lottery-form__table-header {
  border-bottom: 2px solid var(--color-text);
}

.p-lottery-form__table-cell {
  padding: 8px 12px;
}

.p-lottery-form__table-cell--left {
  text-align: left;
  font-weight: bold;
}

.p-lottery-form__table-cell--center {
  text-align: center;
  font-weight: bold;
}

.p-lottery-form__table-cell--sm {
  padding: 8px;
}

.p-lottery-form__table-cell--sm-left {
  padding: 8px;
  text-align: left;
}

.p-lottery-form__table-cell--sm-center {
  padding: 8px;
  text-align: center;
}

.p-lottery-form__table-cell--sm-right {
  padding: 8px;
  text-align: right;
}

.p-lottery-form__table-cell--sm-right-bold {
  padding: 8px;
  text-align: right;
  font-weight: bold;
}

.p-lottery-form__stock-label {
  display: inline-block;
  background: var(--color-border-light);
  color: var(--color-text-muted);
  font-size: 1.1rem;
  padding: 2px 6px;
  border-radius: 2px;
  margin-left: 8px;
}

.p-lottery-form__select {
  width: 70px;
  padding: 4px 8px;
  border: 1px solid var(--color-border-dashed);
  border-radius: 4px;
}

.p-lottery-form__table-row--border {
  border-bottom: 1px solid var(--color-border-light);
}

.p-lottery-form__table-footer {
  border-top: 2px solid var(--color-text);
}

.p-lottery-form__delete-btn {
  padding: 4px 8px;
  border: 1px solid var(--color-error-red);
  background: var(--color-white);
  color: var(--color-error-red);
  cursor: pointer;
  font-size: 1.2rem;
}

.p-lottery-form__complete-text {
  margin-bottom: 8px;
}

.p-lottery-form__modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-lottery-form__modal-overlay--dark {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-lottery-form__modal {
  background: var(--color-white);
  padding: 24px;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
}

.p-lottery-form__modal--lg {
  background: var(--color-white);
  padding: 24px;
  border-radius: 8px;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
}

.p-lottery-form__modal-title {
  margin-bottom: 16px;
  font-size: 1.6rem;
}

.p-lottery-form__modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.p-lottery-form__modal-filter {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.p-lottery-form__modal-filter-group {
  flex: 1;
}

.p-lottery-form__modal-label {
  display: block;
  margin-bottom: 4px;
  font-size: 1.4rem;
}

.p-lottery-form__modal-field {
  display: flex;
  align-items: center;
  gap: 8px;
}

.p-lottery-form__modal-field-text {
  font-size: 1.4rem;
}

.p-lottery-form__modal-field-text--muted {
  font-size: 1.4rem;
  color: var(--color-gray);
}

.p-lottery-form__modal-select-btn {
  padding: 6px 16px;
  border: 1px solid var(--color-text);
  background: var(--color-white);
  cursor: pointer;
  font-size: 1.3rem;
  white-space: nowrap;
}

.p-lottery-form__modal-select {
  width: 100%;
  padding: 8px;
  border: 1px solid var(--color-border-dashed);
  border-radius: 4px;
}

.p-lottery-form__modal-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.p-lottery-form__modal-btn {
  padding: 8px 16px;
  border: 1px solid var(--color-border-dashed);
  background: var(--color-white);
  cursor: pointer;
}

.p-lottery-form__modal-close-btn {
  padding: 4px 12px;
  border: 1px solid var(--color-border-dashed);
  background: var(--color-white);
  cursor: pointer;
  font-size: 1.4rem;
}

.p-lottery-form__name-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 16px;
}

.p-lottery-form__name-item {
  cursor: pointer;
  text-align: center;
  padding: 8px;
  border: 2px solid transparent;
  border-radius: 8px;
}

.p-lottery-form__name-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 8px;
  background: var(--color-gray-light);
}

.p-lottery-form__name-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-lottery-form__name-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lottery-form-text-placeholder);
  font-size: 1.2rem;
}

.p-lottery-form__name-text {
  font-size: 1.3rem;
  line-height: 1.3;
  word-break: break-all;
}

/* =============================================================
    当選情報
============================================================= */
.p-winningInfo-eventName a {
  color: var(--color-winning-link);
  text-decoration: none;
  font-weight: 600;
}

.p-winningInfo-eventName a:hover {
  text-decoration: underline;
}

.p-winningInfo-status--unpaid {
  color: var(--color-winning-unpaid);
  font-weight: 600;
}

.p-winningInfo-status--paid {
  color: var(--color-winning-paid);
  font-weight: 600;
}

.p-winningInfo-status--unshipped {
  color: var(--color-winning-unshipped);
}

.p-winningInfo-status--shipped {
  color: var(--color-winning-paid);
}

/* =============================================================
    cart/confirm
============================================================= */
.p-cartConfirm {
  width: 100%;
  max-width: 36rem;
  margin: 0 auto;
  background: var(--color-white);
  box-sizing: border-box;
  color: var(--color-text);
  font-size: 1.2rem;
  line-height: 1.8;
}

.p-cartConfirm__topArea {
  background: var(--cart-confirm-bg-light);
  padding: 3rem 3.5rem 3.4rem;
  box-sizing: border-box;
}

.p-cartConfirm__title {
  margin: 0 0 1.8rem;
  text-align: center;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--color-title-blue);
  letter-spacing: 0.03em;
}

.p-cartConfirm__lead {
  margin: 0;
  color: var(--color-text);
  line-height: 1.8;
}

.p-cartConfirm__lead-em {
  color: var(--cart-confirm-accent-pink);
}

.p-cartConfirm__content {
  padding: 2.8rem 3.5rem 4.2rem;
  box-sizing: border-box;
}

.p-cartConfirm__section {
  margin-bottom: 3.8rem;
}

.p-cartConfirm__sectionTitle {
  margin: 0 0 0.8rem;
  font-size: 1.5rem;
  color: var(--color-title-blue);
  font-weight: 700;
}

.p-cartConfirm__borderBox {
  border: 1px solid var(--cart-confirm-border);
  box-sizing: border-box;
  background: var(--color-white);
}

.p-cartConfirm__orderItem {
  border-bottom: 1px solid var(--cart-confirm-border);
}

.p-cartConfirm__orderItem:last-of-type {
  border-bottom: none;
}

.p-cartConfirm__itemTitle {
  margin: 0;
  padding: 0.7rem 1.8rem;
  background: var(--cart-confirm-bg-light);
  color: var(--color-title-blue);
  font-weight: 700;
  font-size: 1.4rem;
}

.p-cartConfirm__itemBody {
  padding: 1.2rem 1.8rem 1.6rem;
}

.p-cartConfirm__row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.6rem;
}

.p-cartConfirm__row:last-child {
  margin-bottom: 0;
}

.p-cartConfirm__label {
  min-width: 6.6rem;
  font-weight: 700;
}

.p-cartConfirm__value {
  flex: 1;
}

.p-cartConfirm__totalTitle {
  background: var(--cart-confirm-total-bg);
  padding: 0.5rem 1.5rem;
  font-weight: 700;
  border-top: 1px solid var(--cart-confirm-border);
}

.p-cartConfirm__totalBody {
  padding: 1.3rem 1.8rem 1.5rem;
}

.p-cartConfirm__totalRow {
  display: flex;
  margin-bottom: 0.5rem;
}

.p-cartConfirm__totalRow:last-child {
  margin-bottom: 0;
}

.p-cartConfirm__totalRow .p-cartConfirm__label {
  min-width: 8.4rem;
}

.p-cartConfirm__paymentAmount {
  color: var(--cart-confirm-accent-pink);
}

.p-cartConfirm__infoTable {
  border: 1px solid var(--cart-confirm-border);
  background: var(--color-white);
}

.p-cartConfirm__infoRow {
  border-bottom: 1px solid var(--cart-confirm-border);
}

.p-cartConfirm__infoRow:last-child {
  border-bottom: none;
}

.p-cartConfirm__infoLabel {
  background: var(--lottery-form-result-card-disabled-bg);
  padding: 0.5rem 1.5rem;
  font-weight: 700;
}

.p-cartConfirm__infoValue {
  padding: 1.4rem 1.8rem;
  min-height: 2.8rem;
  box-sizing: border-box;
}

.p-cartConfirm__paymentBox {
  border: 1px solid var(--cart-confirm-border);
  background: var(--color-white);
}

.p-cartConfirm__paymentHead {
  background: var(--lottery-form-result-card-disabled-bg);
  padding: 0.5rem 1.5rem;
  font-weight: 700;
}

.p-cartConfirm__paymentBody {
  padding: 2.2rem 1.4rem 1.2rem;
}

.p-cartConfirm__paymentMethod {
  margin: 0 0 0.2rem;
}

.p-cartConfirm__note {
  margin: 1.4rem 0 0;
  line-height: 1.9;
}

.p-cartConfirm__yellowBox {
  margin-top: 2.8rem;
  padding: 2rem 1.7rem;
  background: var(--cart-confirm-yellow-bg);
  line-height: 1.9;
}

.p-cartConfirm__yellowBox p {
  margin: 0 0 1.6rem;
}

.p-cartConfirm__yellowBox p:last-child {
  margin-bottom: 0;
}

.p-cartConfirm__bottomNote {
  margin: 1.5rem 1.5rem 0;
  line-height: 1.9;
}

/* =============================================================
    cart/payment-method
============================================================= */
.p-paymentMethod {
  width: 100%;
  max-width: 36rem;
  margin: 0 auto;
  padding: 2.8rem 3rem 3.8rem;
  box-sizing: border-box;
  background: var(--cart-confirm-bg-light);
  color: var(--color-text);
  font-size: 1.3rem;
  line-height: 1.7;
}

.p-paymentMethod__title {
  margin: 0 0 1.8rem;
  text-align: center;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--payment-method-title);
  letter-spacing: 0.03em;
}

.p-paymentMethod__lead {
  margin: 0 0 3.2rem;
  font-size: 1.2rem;
  line-height: 1.8;
}

.p-paymentMethod__lead-em {
  color: var(--payment-method-accent-pink);
}

.p-paymentMethod__box {
  background: var(--color-white);
  padding: 1.4rem 1.7rem 1.8rem;
  margin-bottom: 1.8rem;
  box-sizing: border-box;
}

.p-paymentMethod__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  cursor: pointer;
}

.p-paymentMethod__radio-input {
  position: absolute;
  appearance: none;
  -webkit-appearance: none;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.p-paymentMethod__radio {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid var(--payment-method-radio-border);
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.p-paymentMethod__radio--checked {
  background: var(--payment-method-checked-blue);
  border-color: var(--payment-method-checked-blue);
}

.p-paymentMethod__radio--checked::before {
  content: "";
  width: 0.8rem;
  height: 0.5rem;
  border-left: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: rotate(-45deg);
  margin-top: -0.2rem;
}

.p-paymentMethod__dash {
  border: 0;
  border-top: 1px dashed var(--color-inactive);
  margin: 0.8rem 0 1.4rem;
}

.p-paymentMethod__cardLogos {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1rem 1rem;
  flex-wrap: wrap;
}

.p-paymentMethod__logoText {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
}

.p-paymentMethod__logoText--visa {
  color: var(--payment-brand-visa);
  font-style: italic;
}

.p-paymentMethod__logoText--master {
  position: relative;
  width: 2.8rem;
  height: 1.6rem;
}

.p-paymentMethod__logoText--master::before,
.p-paymentMethod__logoText--master::after {
  content: "";
  position: absolute;
  top: 0.2rem;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
}

.p-paymentMethod__logoText--master::before {
  left: 0.3rem;
  background: var(--payment-brand-master-red);
}

.p-paymentMethod__logoText--master::after {
  right: 0.3rem;
  background: var(--payment-brand-master-orange);
  opacity: 0.9;
}

.p-paymentMethod__logoText--amex {
  color: var(--payment-brand-amex);
  border: 1px solid var(--payment-brand-amex);
  font-size: 0.9rem;
  padding: 0.1rem 0.2rem;
}

.p-paymentMethod__logoText--jcb {
  color: var(--payment-brand-jcb);
}

.p-paymentMethod__logoText--uc {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--payment-brand-uc);
  color: var(--color-white);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.p-paymentMethod__logoText--dc {
  color: var(--payment-brand-dc);
  border: 1px solid var(--payment-brand-dc);
  font-size: 0.9rem;
  padding: 0.1rem 0.2rem;
}

.p-paymentMethod__logoText--orico {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: var(--payment-brand-orico);
  color: var(--color-white);
  font-size: 0.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.p-paymentMethod__boxText {
  margin: 0 0 0 1rem;
  font-size: 1.2rem;
  line-height: 1.75;
}

.p-paymentMethod__selectWrap {
  width: 22.8rem;
  margin: 0.6rem auto 1rem;
  position: relative;
}

.p-paymentMethod__selectWrap select {
  width: 100%;
  height: 3.4rem;
  padding: 0 3.4rem 0 1.2rem;
  border: 1px solid var(--color-inactive);
  background: var(--color-white);
  color: var(--color-gray);
  font-size: 1.2rem;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
}

.p-paymentMethod__selectWrap::after {
  content: "";
  position: absolute;
  right: 1.1rem;
  top: 50%;
  margin-top: -0.3rem;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-top: 0.7rem solid var(--color-select-arrow);
  pointer-events: none;
}


/* =============================================================
    cart/complete
============================================================= */
.p-cartComplete {
  width: 100%;
  max-width: 36rem;
  margin: 0 auto;
  padding: 2.9rem 4.2rem 2rem;
  box-sizing: border-box;
  background: var(--cart-confirm-bg-light);
  color: var(--color-text);
  font-size: 1.3rem;
  line-height: 1.8;
}

.p-cartComplete__title {
  margin: 0 0 3.1rem;
  text-align: center;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--color-title-blue);
  letter-spacing: 0.08em;
}

.p-cartComplete__message {
  margin: 0 0 3rem;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.p-cartComplete__message a {
  color: var(--color-link-cyan);
  text-decoration: underline;
}

.p-cartComplete__info {
  margin-top: 2.6rem;
}

.p-cartComplete__infoRow {
  margin-bottom: 1.6rem;
  font-size: 1.3rem;
  line-height: 1.7;
}

.p-cartComplete__infoLabel {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.p-cartComplete__infoValue {
  margin-left: 2em;
  word-break: break-all;
}

.p-cartComplete__infoValue a {
  color: var(--color-link-cyan);
  text-decoration: underline;
}

.p-cartComplete__subText {
  display: block;
  margin-top: 0.1rem;
  font-size: 1.2rem;
  line-height: 1.6;
}

/* FAQ Page */
.p-faq-page .m-shippingAccordion {
  max-width: none;
  margin-bottom: 0.8rem;
}

.p-faq-page .m-shippingAccordion__header {
  justify-content: flex-start;
  padding-right: 4rem;
}

.p-faq-page .m-shippingAccordion.is-open .m-shippingAccordion__body {
  padding-top: 0;
}

.p-faq-page .m-shippingAccordion__content {
  padding-top: 1.6rem;
  font-size: 1.3rem;
}

@media (min-width: 768px) {
  .p-faq-page .m-shippingAccordion__content {
    font-size: 1.4rem;
  }
}
