:root {
  --color-default: #333;
  --color-light: #fff;
  --color-dark: #000;
  --color-background-primary: #ddd;
  --color-border: #eee;
  --color-hover: #8b8b8b;
  --color-visited: #6a5885;
}

html.is-frozen-os {
  overflow: hidden;
}

a:not([class]) {
  transition: text-decoration 0.3s ease, color 0.3s ease;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  color: var(--color-default);
}

a:not([class]):hover {
  text-decoration-color: var(--color-hover);
  color: var(--color-hover);
}

a:not([class]):visited {
  text-decoration-color: var(--color-visited);
  color: var(--color-visited);
}

@media (min-width: 950px) {
  html {
    overflow: auto scroll;
  }
}

html.is-frozen-windows body {
  position: fixed;
  width: 100%;
}

.container-common {
  color: var(--color-default);
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro W3", -apple-system, BlinkMacSystemFont, Roboto, Meiryo, Arial, sans-serif;
  font-weight: 300;
}

@media (min-width: 950px) and (max-width: 1010px) {
  .container-common .wrapper {
    width: calc(100% - 40px);
    max-width: 950px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media only screen and (max-width: 949.98px) {
  .container-common .wrapper {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (min-width: 950px) {
  .sm {
    display: none !important;
  }
}

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

.modal-common-information {
  display: block !important;
  position: fixed;
  z-index: 99999;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.5s ease, transform 0.5s ease;
  opacity: 0 !important;
  background-color: rgba(136, 132, 132, 0.5);
  pointer-events: none;
}

.modal-common-information .modal-viewport {
  display: flex;
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  flex-direction: column;
  justify-content: center;
}

.modal-common-information .modal-wrapper {
  display: flex;
  position: relative;
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0.05rem;
  background-color: var(--color-light);
}

.modal-common-information .modal-mask {
  position: fixed;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

@media (min-width: 950px) {
  .modal-common-information .modal-wrapper {
    box-sizing: border-box;
    width: calc(100% - 60px);
    max-width: 950px;
    height: calc(100% - 103px);
    margin: 90px auto;
    padding: 44px 47px;
  }

  .modal-common-information .list-common-fashion .item-wrapper {
    height: 100%;
  }
}

@media only screen and (max-width: 949.98px) {
  .modal-common-information {
    transform: translateX(100%);
  }

  .modal-common-information .modal-wrapper {
    width: 100%;
  }
}

.modal-common-information.is-active {
  opacity: 1 !important;
}

.modal-common-information.is-active .modal-wrapper,
.modal-common-information.is-active .modal-toggle,
.modal-common-information.is-active .modal-mask {
  pointer-events: auto;
}

@media only screen and (max-width: 949.98px) {
  .modal-common-information.is-active {
    transform: translateX(0);
  }
}

.frame-common-information {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--color-light);
}

.frame-common-information .frame-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.frame-common-information .heading-title {
  display: block;
  font-weight: 600;
}

html.is-android .frame-common-information .heading-title {
  font-weight: 700;
}

.frame-common-information .list-common-fashion .item-image {
  display: none;
}

@media (min-width: 950px) {
  .frame-common-information .list-common-fashion {
    max-width: 760px;
    margin: 0 auto;
  }

  .frame-common-information .list-common-fashion .list-item {
    max-width: 375px;
  }

  .frame-common-information .list-common-fashion .title-quantity {
    font-size: 10px;
  }

  .frame-common-information .frame-heading {
    top: 0;
    height: 76px;
    padding: 30px 96px 0;
    border-bottom: 1px solid var(--color-background-primary);
  }

  .frame-common-information .frame-content {
    padding: 40px 0;
    overflow: hidden auto;
    border-width: 1px 0;
    flex: 1 1 0;
  }

  .frame-common-information .heading-title {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .frame-common-information .frame-button {
    display: flex;
    bottom: 0;
    align-items: center;
    justify-content: center;
    height: 90px;
    padding: 36px 10px;
    border-top: 1px solid var(--color-background-primary);
    font-size: 14px;
    font-weight: 600;
  }

  html.is-android .frame-common-information .frame-button {
    font-weight: 700;
  }

  .frame-common-information .frame-button .button-icon {
    width: 8px;
    height: 8px;
    margin: 1px 16px 0;
  }

  .frame-common-information .frame-button .icon-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .frame-common-information .frame-button .button-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .frame-common-information .frame-button,
  .frame-common-information .frame-heading {
    position: relative;
    z-index: 2;
    left: 0;
    width: 100%;
    background-color: var(--color-light);
  }
}

@media only screen and (max-width: 949.98px) {
  .frame-common-information {
    overflow: hidden auto;
  }

  .frame-common-information .heading-title {
    font-size: 16px;
  }

  .frame-common-information .frame-button,
  .frame-common-information .heading-title {
    display: none;
  }

  .frame-common-information .frame-wrapper {
    padding-bottom: 60px;
  }

  .frame-common-information .list-common-fashion {
    padding: 0 20px;
  }

  .frame-common-information .list-common-fashion .item-wrapper {
    padding: 21.5px 0;
    background-color: transparent;
    font-size: 13px;
  }

  .frame-common-information .list-common-fashion .item-wrapper::after {
    right: 0;
  }

  .frame-common-information .list-common-fashion .list-item {
    margin-bottom: 0;
    border-top: 1px solid var(--color-border);
  }

  .frame-common-information .list-common-fashion .list-item:last-child {
    border-bottom: 1px solid var(--color-border);
  }
}

@media only screen and (max-width: 949.98px) {
  .frame-common-information.is-active {
    display: block;
  }
}

@media (min-width: 950px) {
  .button-heading-previous {
    display: none;
  }
}

@media only screen and (max-width: 949.98px) {
  .button-heading-previous {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 60px;
    padding: 0 20px;
  }

  .button-heading-previous .button-text {
    display: inline-block;
    position: relative;
    padding: 5px 0 5px 10px;
    font-size: 11px;
    font-weight: 300;
    cursor: pointer;
  }

  .button-heading-previous .button-text::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 6px;
    margin-top: -2px;
    background: url("../img/common/icn_arrow_02.svg") 50% 50%/100% auto no-repeat;
  }
}

.list-common-tabs {
  display: flex;
  border-radius: 15px;
  background-color: #f7f7f7;
}

.list-common-tabs .list-item {
  color: #c7c7c7;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

html.is-android .list-common-tabs .list-item {
  font-weight: 700;
}

.list-common-tabs .list-item:first-child {
  padding-left: 0;
}

.list-common-tabs .list-item:last-child {
  padding-right: 0;
}

.list-common-tabs .list-item.is-current .item-wrapper {
  background-color: #3d3d3d;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2509803922);
  color: var(--color-light);
}

.list-common-tabs .list-item .item-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  border-radius: 15px;
  background-color: transparent;
  cursor: pointer;
}

.list-common-tabs .list-item .item-wrapper:hover {
  background-color: #3d3d3d;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2509803922);
  color: var(--color-light);
}

@media (min-width: 950px) {
  .list-common-tabs {
    margin-top: 4px;
  }

  .list-common-tabs .item-wrapper {
    min-width: 111px;
  }
}

@media only screen and (max-width: 949.98px) {
  .list-common-tabs .list-item {
    width: 33.3333333333%;
  }

  .list-common-tabs .item-wrapper {
    padding: 0 5px;
  }
}

.title-common-primary {
  font-weight: 600;
}

html.is-android .title-common-primary {
  font-weight: 700;
}

@media (min-width: 950px) {
  .title-common-primary {
    font-size: 24px;
  }
}

@media only screen and (max-width: 949.98px) {
  .title-common-primary {
    font-size: 18px;
  }
}

.title-common-secondary {
  margin-bottom: 30px;
  font-weight: 600;
}

html.is-android .title-common-secondary {
  font-weight: 700;
}

.title-common-secondary.is-center {
  text-align: center;
}

@media (min-width: 950px) {
  .title-common-secondary {
    font-size: 22px;
  }
}

@media only screen and (max-width: 949.98px) {
  .title-common-secondary {
    font-size: 16px;
  }
}

.list-common-product .item-image {
  flex: 0 0 auto;
  margin: 0;
  border-radius: 50%;
}

.list-common-product .item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.list-common-product .list-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-weight: 600;
}

html.is-android .list-common-product .list-wrapper {
  font-weight: 700;
}

.list-common-product .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.3s ease;
  opacity: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.list-common-product .item-wrapper:hover {
  opacity: 0.8;
}

@media (min-width: 950px) {
  .list-common-product .list-wrapper {
    gap: 24px 40px;
  }

  .list-common-product .item-image {
    width: 120px;
    height: 120px;
    margin-bottom: 19px;
  }

  .list-common-product .list-item {
    width: 20%;
    max-width: 120px;
    font-size: 12px;
  }
}

@media only screen and (max-width: 949.98px) {
  .list-common-product .list-wrapper {
    gap: 37px 10px;
  }

  .list-common-product .item-image {
    width: 100px;
    height: 100px;
    margin-bottom: 12px;
  }

  .list-common-product .list-item {
    width: 33.3333333333%;
    max-width: 100px;
    font-size: 10px;
  }
}

.list-common-fashion .item-wrapper {
  display: flex;
  position: relative;
  align-items: center;
  transition: opacity 0.3s ease;
  opacity: 1;
  background-color: #f7f7f7;
  font-weight: 300;
  text-decoration: none;
  cursor: pointer;
}

.list-common-fashion .item-wrapper:hover {
  opacity: 0.8;
}

.list-common-fashion .item-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 7px;
  background: url("../img/common/icn_arrow_01.svg") 50% 50%/100% auto no-repeat;
}

.list-common-fashion .item-image {
  width: 30px;
  height: 30px;
  margin: 0 10px 0 0;
  flex: 0 0 auto;
}

.list-common-fashion .item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.list-common-fashion .title-quantity {
  color: #555;
  font-size: 10px;
  font-weight: 300;
  position: relative;
}

@media (min-width: 950px) {
  .list-common-fashion .list-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .list-common-fashion .list-item {
    width: calc(50% - 5px);
    max-width: 470px;
    min-width: 0;
    font-size: 15px;
    margin-bottom: 10px;
  }

  .list-common-fashion .item-wrapper {
    min-height: 30px;
    padding: 15px 40px 15px 20px;
    height: calc(100% - 30px);
  }

  .list-common-fashion .title-quantity {
    margin-left: 10px;
    top: -1px;
  }
}

@media only screen and (max-width: 949.98px) {
  .list-common-fashion .list-item {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .list-common-fashion .list-item:last-child {
    margin-bottom: 0;
  }

  .list-common-fashion .item-wrapper {
    padding: 10px 30px 10px 20px;
  }

  .list-common-fashion .title-quantity {
    margin-left: 5px;
  }
}

@media (min-width: 950px) {
  .heading-common {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 30px;
  }
}

@media only screen and (max-width: 949.98px) {
  .heading-common {
    margin-top: 20px;
  }
}

.article-common-contact .contact-list {
  max-width: 436px;
  margin: 0 auto 25px;
}

.article-common-contact .contact-list .list-wrapper {
  display: flex;
  justify-content: center;
  padding: 0;
}

.article-common-contact .contact-title {
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

html.is-android .article-common-contact .contact-title {
  font-weight: 700;
}

.article-common-contact .contact-item {
  width: 100%;
  border: 1px solid var(--color-background-primary);
  border-radius: 12px;
  background: var(--color-light);
  text-align: center;
}

.article-common-contact .item-link {
  display: block;
  transition: opacity 0.3s ease;
  opacity: 1;
  color: var(--color-default);
  text-decoration: none;
}

.article-common-contact .item-link:hover {
  opacity: 0.8;
}

.article-common-contact .contact-text {
  font-size: 13px;
  font-weight: 600;
}

html.is-android .article-common-contact .contact-text {
  font-weight: 700;
}

.article-common-contact .contact-icon {
  width: 80px;
  height: 60px;
  margin: 0 auto 16px;
}

.article-common-contact .contact-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.article-common-contact .contact-time {
  color: var(--color-dark);
  font-size: 11px;
  font-weight: 300;
  line-height: 1.6;
}

.article-common-contact .contact-note {
  color: var(--color-default);
  font-size: 13px;
  font-weight: 300;
  text-align: center;
}

@media (min-width: 950px) {
  .article-common-contact {
    margin-bottom: 100px;
  }

  .article-common-contact .title-common-secondary {
    font-size: 20px;
    line-height: 1.5;
  }

  .article-common-contact .list-wrapper {
    justify-content: center;
    padding: 0;
    gap: 30px;
  }

  .article-common-contact .contact-text {
    margin-bottom: 20px;
    line-height: 1.3846153846;
  }

  .article-common-contact .item-link {
    padding: 18px 20px 16px;
  }
}

@media only screen and (max-width: 949.98px) {
  .article-common-contact {
    margin-bottom: 60px;
  }

  .article-common-contact .title-common-secondary {
    font-size: 15px;
    line-height: 1.5;
  }

  .article-common-contact .contact-text {
    margin-bottom: 15px;
    line-height: 1.5;
  }

  .article-common-contact .item-link {
    padding: 20px 16px 16px;
  }

  .article-common-contact .contact-list .list-wrapper {
    gap: 16px;
  }

  .article-common-contact .wrapper {
    padding: 0 20px;
  }
}

.list-common-guide .list-wrapper {
  list-style: none;
}

.list-common-guide .list-item {
  border-top: 1px solid var(--color-border);
}

.list-common-guide .item-link {
  display: flex;
  position: relative;
  align-items: center;
  padding: 21px 40px 21px 20px;
  transition: opacity 0.3s ease;
  opacity: 1;
  font-size: 15px;
  font-weight: 300;
}

.list-common-guide .item-link:hover {
  opacity: 0.8;
}

.list-common-guide .item-link::after {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 6px;
  background: url("../img/common/icn_arrow_01.svg") 50% 50%/100% auto no-repeat;
}

.block-common-about {
  position: fixed;
  z-index: 999;
  right: 0;
  bottom: 0;
  left: 0;
}

.block-common-about .button-about-contact {
  display: flex;
  position: absolute;
  bottom: 0;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 4px 0;
  transition: opacity 0.3s ease;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  opacity: 1;
  background: linear-gradient(90deg, #ede1ff, #dbe7ff);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

html.is-android .block-common-about .button-about-contact {
  font-weight: 700;
}

.block-common-about .button-about-contact::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 36px;
  margin: 6px 8px 0 0;
  background: url("../img/common/icn_message.svg") no-repeat center/contain;
}

.block-common-about .button-about-contact .button-content {
  position: relative;
}

.block-common-about .button-about-contact:hover {
  opacity: 0.8;
}

.block-common-about .button-common-top {
  position: absolute;
  bottom: 20px;
  cursor: pointer;
  pointer-events: auto;
}

.block-common-about .button-common-top .button-wrapper {
  margin: 0;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.block-common-about .button-common-top.is-active .button-wrapper {
  opacity: 1;
}

.block-common-about .button-common-top .button-wrapper img {
  opacity: 0.7;
}

.block-common-about .button-common-top.is-active .button-wrapper:hover {
  opacity: 0.8;
}

@media (min-width: 950px) {
  .block-common-about {
    max-width: 950px;
    margin: 0 auto;
  }

  .block-common-about .button-about-contact {
    left: 0;
  }

  .block-common-about .button-common-top {
    right: 0;
  }
}

@media only screen and (max-width: 949.98px) {
  .block-common-about .button-common-top {
    right: 20px;
  }

  .block-common-about .button-about-contact {
    left: 30px;
  }
}

.section-common-payment {
  position: relative;
}

.section-common-payment .payment-wrapper {
  display: flex;
}

.section-common-payment .content-list,
.section-common-payment .detail-list {
  list-style: none;
}

.section-common-payment .payment-content {
  font-weight: 300;
}

.section-common-payment .content-title {
  font-weight: 700;
}

.section-common-payment .content-logo {
  width: 262px;
}

.section-common-payment .content-text {
  font-size: 14px;
  font-weight: 300;
}

.section-common-payment .detail-text {
  font-size: 14px;
  line-height: 2;
}

.section-common-payment .text-link,
.section-common-payment .detail-link {
  transition: text-decoration 0.3s ease, color 0.3s ease;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  color: var(--color-default);
}

.section-common-payment .text-link:hover,
.section-common-payment .detail-link:hover {
  text-decoration-color: var(--color-hover);
  color: var(--color-hover);
}
.section-common-payment .text-link:visited,
.section-common-payment .detail-link:visited {
  text-decoration-color: var(--color-visited);
  color: var(--color-visited);
}

.section-common-payment .content-item:last-child {
  margin-bottom: 0;
}

.section-common-payment .detail-item:last-child {
  margin-bottom: 0;
}

.section-common-payment .describe-text {
  margin-bottom: 10px;
  line-height: 2;
}

.section-common-payment .describe-detail {
  font-size: 14px;
}

.section-common-payment .contact-text,
.section-common-payment .describe-text {
  font-size: 13px;
}

@media (min-width: 950px) {
  .section-common-payment {
    padding: 50px 0;
  }

  .section-common-payment .payment-describe {
    margin-bottom: 100px;
  }

  .section-common-payment .payment-describe.is-spacing {
    margin-bottom: 57px;
  }

  .section-common-payment .contact-text {
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .section-common-payment .contact-icon {
    margin-bottom: 16px;
  }

  .section-common-payment .title-common-primary {
    margin-bottom: 53px;
    font-size: 22px;
  }

  .section-common-payment .payment-wrapper {
    align-items: flex-start;
    justify-content: space-between;
  }

  .section-common-payment .sidebar-common {
    flex: 0 0 auto;
    width: 27.3684210526%;
  }

  .section-common-payment .payment-content {
    width: 67.3684210526%;
    margin-bottom: 50px;
  }

  .section-common-payment .content-logo {
    margin-top: 25px;
    margin-bottom: 50px;
  }

  .section-common-payment .content-title {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.25;
  }

  .section-common-payment .content-item {
    margin-bottom: 48px;
  }

  .section-common-payment .content-text {
    font-size: 14px;
  }

  .section-common-payment .detail-text {
    margin-bottom: 10px;
  }

  .section-common-payment .detail-item {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 2;
  }

  .section-common-payment .detail-dot {
    margin-right: -5px;
  }

  .section-common-payment .article-common-contact {
    margin-top: 152px;
  }
}

@media only screen and (max-width: 949.98px) {
  .section-common-payment {
    padding: 20px 0 446px;
  }

  .section-common-payment .describe-detail {
    line-height: 2;
  }

  .section-common-payment .payment-describe {
    margin-bottom: 29px;
  }

  .section-common-payment .contact-text {
    margin-bottom: 15px;
    line-height: 1.5;
  }

  .section-common-payment .contact-icon {
    margin-bottom: 5px;
  }

  .section-common-payment .title-common-primary {
    margin-bottom: 35px;
    font-size: 16px;
  }

  .section-common-payment .payment-wrapper {
    flex-direction: column-reverse;
  }

  .section-common-payment .payment-content {
    padding-bottom: 100px;
  }

  .section-common-payment .content-logo {
    margin-top: 25px;
    margin-bottom: 40px;
  }

  .section-common-payment .content-title {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.3333333333;
  }

  .section-common-payment .content-item {
    margin-bottom: 40px;
  }

  .section-common-payment .detail-text {
    margin-bottom: 10px;
  }

  .section-common-payment .detail-list.is-other .detail-item {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .section-common-payment .detail-list.is-other .detail-item:last-child {
    margin-bottom: 0;
  }

  .section-common-payment .detail-item {
    margin-bottom: 11px;
    font-size: 13px;
    line-height: 2;
  }

  .section-common-payment .detail-dot {
    margin-right: -5px;
  }

  .section-common-payment .article-common-contact {
    position: absolute;
    right: 20px;
    bottom: 0;
    left: 20px;
  }
}

.sidebar-common .sidebar-wrapper {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-common .item-text {
  display: block;
  position: relative;
  transition: opacity 0.3s;
  cursor: pointer;
}

.sidebar-common .item-wrapper {
  position: relative;
}

.sidebar-common .item-wrapper.is-link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 12px;
  transform: translateY(-50%);
  background: url("../img/common/icn_arrow_01.svg") center/100% auto no-repeat;
}

.sidebar-common .item-wrapper.is-link .item-text::before,
.sidebar-common .item-wrapper.is-link .item-text::after {
  display: none;
}

.sidebar-common .item-wrapper.is-link .item-text {
  display: flex;
  align-items: center;
}

.sidebar-common .item-text::before,
.sidebar-common .item-text::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 2px;
  transform: translateY(-50%);
  transition: transform 0.3s ease-in-out;
  border-radius: 20px;
  background: #8538f9;
}

.sidebar-common .item-text::before {
  margin-top: 1px;
}

.sidebar-common .item-text::after {
  transform: rotate(90deg);
}

.sidebar-common .item-text.is-active::after {
  transform: translateY(0) rotate(0);
}

.sidebar-common .item-text:hover {
  opacity: 0.8;
}

.sidebar-common .text-wrapper {
  position: relative;
}

.sidebar-common .item-content {
  display: none;
}

.sidebar-common .content-child:last-child {
  margin-bottom: 0;
}

.sidebar-common .child-link {
  transition: background-color 0.3s;
  display: block;
  color: var(--color-default);
}

.sidebar-common .child-link.is-active {
  pointer-events: none;
  background-color: #f7f7f7;
}

.sidebar-common .child-link:hover {
  background-color: #f7f7f7;
}

.sidebar-common .text-logo img {
  display: block;
  width: 100%;
}

@media (min-width: 950px) {
  .sidebar-common {
    position: sticky;
    top: 50px;
    margin-top: 5px;
    font-weight: 300;
  }

  .sidebar-common .sidebar-item {
    margin-bottom: 2px;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--color-border);
  }

  .sidebar-common .sidebar-title {
    display: none;
  }

  .sidebar-common .sidebar-item:first-child {
    border-top: 1px solid var(--color-border);
  }

  .sidebar-common .item-wrapper.is-link .text-wrapper {
    top: 1px;
  }

  .sidebar-common .item-text::before,
  .sidebar-common .item-text::after {
    right: 0;
  }

  .sidebar-common .item-text {
    padding: 15px 12px 11px 0;
    font-size: 15px;
  }

  .sidebar-common .text-logo {
    width: 14px;
    margin-right: 10px;
  }

  .sidebar-common .content-child {
    font-size: 13px;
  }

  .sidebar-common .content-child .child-link {
    padding: 12px 10px;
  }
}

@media only screen and (max-width: 949.98px) {
  .sidebar-common {
    margin: 0 -20px;
    padding: 40px 20px;
    background-color: var(--color-border);
    font-weight: 600;
  }

  html.is-android .sidebar-common {
    font-weight: 700;
  }

  .sidebar-common .sidebar-title {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
  }

  .sidebar-common .sidebar-item {
    margin-bottom: 10px;
  }

  .sidebar-common .sidebar-item:last-child {
    margin-bottom: 0;
  }

  .sidebar-common .item-wrapper.is-link::before {
    margin-right: 19px;
  }

  .sidebar-common .item-wrapper {
    border-radius: 12px;
    background-color: var(--color-light);
  }

  .sidebar-common .item-text::before,
  .sidebar-common .item-text::after {
    right: 20px;
  }

  .sidebar-common .item-text {
    padding: 15px 13px 15px 20px;
    font-size: 14px;
    line-height: 1.4285714286;
  }

  .sidebar-common .text-logo {
    width: 14px;
    margin-right: 10px;
  }

  .sidebar-common .item-content {
    font-weight: 300;
  }

  .sidebar-common .content-child {
    border-bottom: 1px solid var(--color-border);
    font-size: 14px;
  }

  .sidebar-common .content-child:last-child {
    border: none;
  }

  .sidebar-common .content-child:first-child {
    border-top: 1px solid var(--color-border);
  }

  .sidebar-common .child-link {
    display: block;
    position: relative;
    padding: 16px 20px;
  }

  .sidebar-common .child-link::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 19px;
    width: 7px;
    height: 12px;
    transform: translateY(-50%);
    background: url("../img/common/icn_arrow_01.svg") center/100% auto no-repeat;
  }
}

.section-common-payment.is-eposcard .title-common-secondary {
  line-height: 1.5;
}

.section-common-payment.is-eposcard .describe-text:last-child {
  margin: 0;
}

.section-common-payment.is-eposcard .heading-common {
  margin-bottom: 30px;
}

@media (min-width: 950px) {
  .section-common-payment.is-eposcard .title-common-secondary {
    font-size: 20px;
  }

  .section-common-payment.is-eposcard .title-common-primary {
    margin-bottom: 32px;
  }

  .section-common-payment.is-eposcard .article-common-contact {
    margin-top: 0;
  }
}

@media only screen and (max-width: 949.98px) {
  .section-common-payment.is-eposcard .title-common-primary {
    margin-bottom: 31px;
  }

  .section-common-payment.is-eposcard .title-common-secondary {
    font-size: 15px;
  }

  .section-common-payment.is-eposcard .payment-content {
    padding-bottom: 72px;
  }
}

.list-common-payment .item-wrapper {
  display: flex;
  position: relative;
  align-items: center;
  padding: 10px 30px 10px 20px;
  transition: opacity 0.3s ease;
  border-radius: 12px;
  opacity: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: var(--color-default);
  text-decoration: none;
}

.list-common-payment .item-wrapper:hover {
  opacity: 0.8;
}

.list-common-payment .item-wrapper::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translateY(-50%);
  background: url("../img/common/icn_arrow_01.svg") no-repeat center/contain;
}

.list-common-payment .item-image {
  flex-shrink: 0;
  align-self: flex-start;
  width: 57px;
  margin: 0;
}

.list-common-payment .item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.list-common-payment .item-content {
  flex: 1;
  margin-left: 22px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

html.is-android .list-common-payment .item-content {
  font-weight: 700;
}

@media (min-width: 950px) {
  .list-common-payment {
    margin-bottom: 50px;
  }

  .list-common-payment .list-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .list-common-payment .list-item {
    width: calc(50% - 10px);
  }

  .list-common-payment .item-wrapper::before {
    width: 12px;
    height: 12px;
  }
}

@media only screen and (max-width: 949.98px) {
  .list-common-payment {
    margin-bottom: 40px;
  }

  .list-common-payment .list-item {
    margin-bottom: 10px;
  }

  .list-common-payment .list-item:last-child {
    margin-bottom: 0;
  }

  .list-common-payment .item-wrapper::before {
    width: 13px;
    height: 13px;
  }
}

.breadcrumb-common {
  overflow: auto hidden;
  background-color: #fff;
  margin-top: 30px;
  padding-bottom: 5px;
}
.breadcrumb-common .breadcrumb-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.05rem 0.14rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumb-common .item-wrapper {
  color: #c7c7c7;
}
.breadcrumb-common a.item-wrapper {
  transition: opacity 0.3s ease;
  color: #555;
  opacity: 1;
}
.breadcrumb-common a.item-wrapper:hover {
  opacity: 0.8;
}
.breadcrumb-common .breadcrumb-item {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  font-size: 10px;
  line-height: calc(15 / 10);
}
.breadcrumb-common .breadcrumb-item::after {
  content: "/";
  position: relative;
  display: inline-block;
  padding: 0 5px;
}
.breadcrumb-common .breadcrumb-item:last-child::after {
  content: none;
}
@media only screen and (max-width: 949.98px) {
  .breadcrumb-common .breadcrumb-item:last-child {
    padding-right: 20px;
  }
}