@charset "UTF-8";
/*
A modern CSS reset 2023 / 9 / 18
https://github.com/Andy-set-studio/modern-css-reset
*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
      text-size-adjust: none;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.1;
}

h1, h2, h3, h4 {
  text-wrap: balance;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

/**  base  **/
@-webkit-keyframes fadeIn {
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes clipPath {
  100% {
    clip-path: inset(0);
  }
}
@keyframes clipPath {
  100% {
    clip-path: inset(0);
  }
}
@-webkit-keyframes clipPathCircle {
  100% {
    clip-path: circle(100% at 50% 50%);
  }
}
@keyframes clipPathCircle {
  100% {
    clip-path: circle(100% at 50% 50%);
  }
}
p,
ul,
ol,
h1,
h2,
h3,
figure,
dl,
dd,
button {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

ul,
ol {
  list-style: none;
}

img,
video {
  max-width: 100%;
  vertical-align: bottom;
  line-height: 1;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

a {
  color: currentColor;
  text-decoration: none;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.5;
  }
}

[x-cloak],
[v-cloak] {
  display: none !important;
}

[data-ge-show] {
  /* global-e時のみ表示 */
  display: none;
}

*:focus {
  outline: none;
}

@media (min-width: 600px) {
  .device-sp {
    display: none;
  }
}

.device-pc {
  display: none;
}
@media (min-width: 600px) {
  .device-pc {
    display: block;
  }
}

br {
  display: none;
}
br.sp {
  display: block;
}
@media (min-width: 600px) {
  br {
    display: block;
  }
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
}
body.scroll_rock {
  overflow: hidden;
}

.hidden {
  display: none !important;
}

/**  common  **/
/** color **/
/** btn size **/
.card {
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  padding: 2rem 1.6rem;
}
@media (min-width: 992px) {
  .card {
    padding: 2.5rem;
  }
}

body {
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: #4D4D4D;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  overflow-wrap: anywhere;
}
@media (min-width: 600px) {
  body {
    font-size: 1.6rem;
    line-height: 2.8rem;
  }
}

[lang=en] body {
  letter-spacing: 0.02em;
}

header {
  padding: 1.2rem;
  -webkit-box-shadow: 0px 1px 6px 0px rgba(148, 148, 148, 0.25);
          box-shadow: 0px 1px 6px 0px rgba(148, 148, 148, 0.25);
}
@media (min-width: 600px) {
  header {
    -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.07);
            box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.07);
  }
}
header div {
  max-width: 90rem;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
}
@media (min-width: 992px) {
  header div {
    gap: 1.4rem;
  }
}
header .logo {
  margin-right: auto;
  font-size: 1.3rem;
}
@media (min-width: 992px) {
  header .logo {
    font-size: 1.7rem;
  }
}
header img {
  height: 3.5rem;
}
@media (min-width: 992px) {
  header img {
    height: 3.2rem;
  }
}

main {
  max-width: 90rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.2rem;
  padding-left: 1.2rem;
}
@media (min-width: 992px) {
  main {
    padding-right: initial;
    padding-left: initial;
  }
}
main a {
  color: #009DBF;
  text-decoration: underline;
}

footer {
  background-color: #F6F6F6;
  position: sticky;
  top: 100vh;
  padding-right: 3rem;
  padding-left: 3rem;
  padding-top: 3rem;
  padding-bottom: 1.4rem;
}
@media (min-width: 992px) {
  footer {
    padding-right: 3.8rem;
    padding-left: 3.8rem;
    padding-top: 2.7rem;
    padding-bottom: 2.7rem;
  }
}
footer > div {
  max-width: 90rem;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 992px) {
  footer > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
footer .footer-hobo {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem 4rem;
  margin-bottom: 4rem;
}
@media (min-width: 992px) {
  footer .footer-hobo {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 2rem;
  }
}
footer .footer-store {
  font-size: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem 0.8em;
  margin-bottom: 4rem;
}
@media (min-width: 600px) {
  footer .footer-store {
    font-size: 1.4rem;
  }
}
@media (min-width: 992px) {
  footer .footer-store {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: initial;
  }
  footer .footer-store li:not(:last-child)::after {
    content: "|";
    margin-left: 0.8em;
    position: relative;
    bottom: 0.1rem;
  }
}
footer .copyright {
  font-size: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.3rem;
  color: #868686;
}
@media (min-width: 600px) {
  footer .copyright {
    font-size: 1.4rem;
  }
}
@media (min-width: 992px) {
  footer .copyright {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 1.1rem;
  }
}
footer .copyright img {
  width: 6.9rem;
}

@media (hover: hover) {
  button:hover {
    opacity: 0.5;
  }
}

hr {
  border: none;
  height: 1px;
  background-color: #DADADA;
  width: 100%;
  margin: 0;
}

a[target=_blank]:not(.no-ext-icon)::after {
  font-family: "Hobonichi-Icons";
  content: "\e914";
}

.link-style {
  color: #009DBF;
  text-decoration: underline;
}

[class^=btn-] {
  border-radius: 100vmax;
  padding-top: 0.95em;
  padding-bottom: 0.85em;
  padding-right: 0.5em;
  padding-left: 0.5em;
  color: inherit;
  text-decoration: none;
}

.confirm-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  gap: 2rem;
  max-width: 45rem;
  margin-right: auto;
  margin-left: auto;
}
.confirm-box [class^=btn-] {
  font-weight: bold;
  line-height: normal;
  font-size: 1.6rem;
  display: block;
}
@media (min-width: 600px) {
  .confirm-box [class^=btn-] {
    font-size: 1.8rem;
  }
}
.confirm-box .btn-next {
  background-color: #FFF56A;
}
.confirm-box .btn-prev {
  border: 3px solid #FFF56A;
}

.alert {
  font-weight: bold;
  line-height: normal;
  font-size: 1.6rem;
  color: #DD2819;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 600px) {
  .alert {
    font-size: 1.8rem;
  }
}
@media (min-width: 992px) {
  .alert {
    margin-top: 2.6rem;
    margin-bottom: 2.6rem;
  }
}
.alert img {
  width: 4.2rem;
}
@media (min-width: 600px) {
  .alert img {
    width: 3.6rem;
  }
}

.caution {
  color: #B03A3A;
  font-size: 1.4rem;
  line-height: 1.25;
  margin-top: 1rem;
}
.caution p + p {
  margin-top: 1rem;
}

.attention {
  font-weight: bold;
  line-height: normal;
  font-size: 1.6rem;
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 600px) {
  .attention {
    font-size: 1.8rem;
  }
}
@media (min-width: 992px) {
  .attention {
    margin-top: 2.6rem;
    margin-bottom: 2.6rem;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100lvw;
  height: 100lvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(132, 132, 132, 0.8);
  z-index: 100;
  border: none;
  padding: 0;
}
.modal .modal-wrapper {
  border-radius: 5px;
  background: #FFF;
  -webkit-box-shadow: 0px 1px 6px 0px rgba(148, 148, 148, 0.25);
          box-shadow: 0px 1px 6px 0px rgba(148, 148, 148, 0.25);
  padding: 2.5rem 4.5rem;
  width: calc(100vw - 5rem);
  max-width: 50rem;
}
.modal .modal-header {
  font-weight: bold;
  line-height: normal;
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 1rem;
}
@media (min-width: 600px) {
  .modal .modal-header {
    font-size: 1.8rem;
  }
}
.modal .modal-inner {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.modal .confirm-box {
  margin-top: 1.5rem;
}

.open-modal {
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.open-modal.not-active {
  opacity: 0.5;
  pointer-events: none;
}

.progress-bar {
  color: #D3D3D3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1rem;
  max-width: 38rem;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 3rem;
}
@media (min-width: 600px) {
  .progress-bar {
    font-size: 1.2rem;
    max-width: 50rem;
  }
}
.progress-bar li {
  white-space: nowrap;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 1rem;
  position: relative;
  line-height: 1.5;
  text-align: center;
}
.progress-bar li br {
  display: block;
}
.progress-bar li::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  border-radius: 2rem;
  background-color: #D3D3D3;
}
.progress-bar li:not(:first-child)::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #D3D3D3;
  bottom: calc(1rem - 1px);
  right: 50%;
}
.progress-bar li.completed, .progress-bar li.current {
  color: #009DBF;
}
.progress-bar li.completed::before, .progress-bar li.completed::after, .progress-bar li.current::before, .progress-bar li.current::after {
  background-color: #009DBF;
  z-index: 10;
}

.nav .title {
  text-align: center;
  font-weight: bold;
  line-height: normal;
  font-size: 2.8rem;
}
@media (min-width: 600px) {
  .nav .title {
    font-size: 3rem;
  }
}
.nav .subtitle {
  margin-top: 1rem;
}

label,
input[type=radio] {
  cursor: pointer;
}

input,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #C2C2C2;
  margin: 0;
}
input.input-error,
textarea.input-error {
  border-color: #DD2819;
}

label.input-error {
  color: #DD2819;
}

.input-error-text {
  color: #DD2819;
  font-size: 1.2rem;
}
@media (min-width: 600px) {
  .input-error-text {
    font-size: 1.4rem;
  }
}

.input-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
.input-wrapper:has(input:disabled) {
  opacity: 0.5;
  pointer-events: none;
}
.input-wrapper > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.input-wrapper > div > label {
  padding-left: 1rem;
}

/* checkbox */
input[type=checkbox] {
  height: 2.8rem;
  width: 2.8rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 3px;
}
input[type=checkbox]:checked {
  border-color: #4D4D4D;
  background-color: #4D4D4D;
}
input[type=checkbox]:checked::before {
  display: grid;
  place-content: center;
  color: #fff;
  height: 100%;
  font-family: "Hobonichi-Icons";
  font-size: 2.4rem;
  content: "hb-check";
}

.min-checkbox {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
  padding-left: 1rem;
  padding-top: 0.7rem;
}
@media (min-width: 992px) {
  .min-checkbox {
    padding-left: 0rem;
    padding-top: 0rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.min-checkbox > input[type=checkbox] {
  height: 1.4rem;
  width: 1.4rem;
}
.min-checkbox > input[type=checkbox]:checked::before {
  font-size: 1.4rem;
}
.min-checkbox > label {
  font-size: 1.2rem;
  font-weight: normal;
}

/* radio */
input[type=radio] {
  height: auto;
  width: 2.8rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 1/1;
  border-radius: 100vmax;
}
input[type=radio]:checked {
  border-color: #4D4D4D;
}
input[type=radio]:checked::before {
  display: grid;
  place-content: center;
  height: 100%;
  font-size: 1.8rem;
  content: "●";
}

/* text */
input[type=text],
input[type=number] {
  border-radius: 4px;
  height: 4rem;
  width: 100%;
  padding-inline: 1rem;
}
input[type=text]:-moz-read-only, input[type=number]:-moz-read-only {
  background-color: #f5f5f5;
  color: currentColor;
}
input[type=text]:disabled, input[type=text]:read-only,
input[type=number]:disabled,
input[type=number]:read-only {
  background-color: #f5f5f5;
  color: currentColor;
}
input[type=text]::-webkit-input-placeholder, input[type=number]::-webkit-input-placeholder {
  color: #C2C2C2;
}
input[type=text]::-moz-placeholder, input[type=number]::-moz-placeholder {
  color: #C2C2C2;
}
input[type=text]:-ms-input-placeholder, input[type=number]:-ms-input-placeholder {
  color: #C2C2C2;
}
input[type=text]::-ms-input-placeholder, input[type=number]::-ms-input-placeholder {
  color: #C2C2C2;
}
input[type=text]::placeholder,
input[type=number]::placeholder {
  color: #C2C2C2;
}
input[type=text]:focus::-webkit-input-placeholder, input[type=number]:focus::-webkit-input-placeholder {
  color: transparent;
}
input[type=text]:focus::-moz-placeholder, input[type=number]:focus::-moz-placeholder {
  color: transparent;
}
input[type=text]:focus:-ms-input-placeholder, input[type=number]:focus:-ms-input-placeholder {
  color: transparent;
}
input[type=text]:focus::-ms-input-placeholder, input[type=number]:focus::-ms-input-placeholder {
  color: transparent;
}
input[type=text]:focus::placeholder,
input[type=number]:focus::placeholder {
  color: transparent;
}

input[type=text][size] {
  width: auto;
}

textarea {
  border-radius: 4px;
  padding-inline: 1rem;
  vertical-align: bottom;
  width: 100%;
}

/* select */
.select-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  border-radius: 4px;
  border: 1px solid #C2C2C2;
}
.select-wrapper::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 1em;
  top: 0;
  right: 0.5em;
  pointer-events: none;
  background-image: url("/sn/images/ico-select-down.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.select-wrapper:has(select:disabled)::after {
  opacity: 0.5;
}
.select-wrapper.input-error {
  border-color: #DD2819;
}

select {
  width: 100%;
  border-radius: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 4rem;
  padding-left: 1rem;
  padding-right: 3.2rem;
  border: none;
}
select:disabled {
  background-color: #f5f5f5;
  color: currentColor;
  opacity: 1;
}
select:disabled option {
  color: currentColor;
}

/*  */
.ico-ref {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 0.4em;
}
.ico-ref::before {
  content: "※";
}

/* ご請求金額 配送手数料 */
.regi-amt {
  border-radius: 4px;
  background: #F6F6F6;
  padding: 2rem 2.4rem;
  margin-top: 4rem;
  margin-bottom: 4rem;
}
@media (min-width: 600px) {
  .regi-amt {
    padding: 3.6rem;
    margin-bottom: 5.5rem;
  }
  .regi-amt:has(.regi-amt-msg) {
    padding-bottom: 2rem;
    padding-top: 2rem;
  }
}
.regi-amt .caution {
  color: #868686;
  margin-top: 1.6rem;
}

.regi-amt-inner {
  display: grid;
  gap: 1.6rem;
}

.regi-amt-incl {
  display: grid;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  grid-template-columns: -webkit-max-content -webkit-max-content;
  grid-template-columns: max-content max-content;
  gap: 1em;
  line-height: 1;
  font-size: 1.2rem;
}
.regi-amt-incl dt, .regi-amt-incl dd {
  text-align: right;
}
.regi-amt-incl dt small, .regi-amt-incl dd small {
  padding-left: 2px;
}
@media (min-width: 600px) {
  .regi-amt-incl {
    font-size: 1.4rem;
  }
}

.regi-amt-total-quantity {
  display: grid;
  grid-template-columns: 1fr -webkit-max-content;
  grid-template-columns: 1fr max-content;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.regi-amt-total-quantity dt {
  font-weight: bold;
  line-height: normal;
  font-size: 2rem;
}
@media (min-width: 992px) {
  .regi-amt-total-quantity dt {
    font-size: 2.3rem;
  }
}
.regi-amt-total-quantity small {
  line-height: normal;
  font-size: 1.6rem;
}
@media (min-width: 992px) {
  .regi-amt-total-quantity small {
    font-size: 1.8rem;
  }
}
.regi-amt-total-quantity dd {
  font-weight: bold;
  line-height: normal;
  font-size: 2rem;
}
@media (min-width: 992px) {
  .regi-amt-total-quantity dd {
    font-size: 2.3rem;
  }
}
.regi-amt-total-quantity dd * + * {
  padding-left: 0.3rem;
}

.regi-amt-total-amount {
  display: grid;
  grid-template-columns: 1fr -webkit-max-content;
  grid-template-columns: 1fr max-content;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.regi-amt-total-amount dt {
  font-weight: bold;
  line-height: normal;
  font-size: 2rem;
}
@media (min-width: 992px) {
  .regi-amt-total-amount dt {
    font-size: 2.3rem;
  }
}
.regi-amt-total-amount small {
  line-height: normal;
  font-size: 1.6rem;
}
@media (min-width: 992px) {
  .regi-amt-total-amount small {
    font-size: 1.8rem;
  }
}
.regi-amt-total-amount dd {
  font-weight: bold;
  line-height: normal;
  font-size: 3rem;
}
@media (min-width: 992px) {
  .regi-amt-total-amount dd {
    font-size: 3.2rem;
  }
}
.regi-amt-total-amount dd small {
  padding-left: 0.3rem;
}

.regi-amt-msg {
  font-size: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 600px) {
  .regi-amt-msg {
    font-size: 1.4rem;
  }
}
.regi-amt-msg:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: #009dbf;
  border-radius: 4px;
  position: relative;
  rotate: 45deg;
  -webkit-transform: skew(12deg, 12deg);
          transform: skew(12deg, 12deg);
}
@media (min-width: 992px) {
  .regi-amt-msg {
    grid-column: 1/3;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    justify-self: center;
  }
}
.regi-amt-msg .regi-amt-msg-text {
  border-radius: 1em;
  background-color: #009dbf;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  display: block;
  padding-right: 1em;
  padding-left: 1em;
  padding-bottom: 0.4em;
  padding-top: 0.4em;
  bottom: 12px;
  margin-bottom: -12px;
}

.regi-amt-detail {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  line-height: 1.75;
  gap: 0.8rem;
}
.regi-amt-detail dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 2px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.regi-amt-coupon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: -10px;
}
.regi-amt-coupon span {
  padding: 0em 1em;
  line-height: 1.5;
  font-size: 0.9em;
  color: #009dbf;
  border-radius: 6px;
  border: 1px solid currentColor;
}

/* 商品一覧 */
.items {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.items ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.2rem;
}
@media (min-width: 992px) {
  .items ul {
    gap: 1.5rem;
  }
}
.items li {
  position: relative;
}
.items li:has(.item-sold) img,
.items li:has(.item-sold) dt,
.items li:has(.item-sold) .item-spec,
.items li:has(.item-sold) .item-quantity-volume {
  opacity: 0.5;
  pointer-events: none;
}
.items small {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.items .item-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.2rem;
}
@media (max-width: 374px) {
  .items .item-detail {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (min-width: 992px) {
  .items .item-detail {
    gap: 2.5rem;
  }
}
.items .item-detail .revision {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0.8rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-block: 0.8rem;
}
.items .item-detail .revision .select-wrapper {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}
@media (min-width: 992px) {
  .items .item-detail .revision {
    gap: 1.2rem;
  }
}
.items dl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 992px) {
  .items dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.items dd {
  line-height: 1.5;
}
.items dt {
  font-weight: bold;
  margin-bottom: 0.4rem;
  width: 100%;
}
.items br {
  display: block;
}
.items img {
  width: 36vw;
  max-width: 12rem;
  height: auto;
  border-radius: 4px;
}
.items .item-subtotal-amt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 2px;
  margin-top: 0.2rem;
}
.items .item-subtotal-amt span {
  font-weight: bold;
  line-height: normal;
  font-size: 2.1rem;
  pointer-events: none;
}
@media (min-width: 600px) {
  .items .item-subtotal-amt span {
    font-size: 2.3rem;
  }
}
@media (min-width: 600px) {
  .items .item-subtotal-amt {
    position: absolute;
    right: 0;
    bottom: -0.8rem;
  }
}
.items .item-sold {
  font-weight: bold;
  color: #DD2819;
  text-align: right;
}
.items > span {
  font-size: 1.2rem;
  color: #868686;
  display: block;
  text-align: right;
  margin-top: 1.2rem;
}
@media (min-width: 600px) {
  .items > span {
    font-size: 1.4rem;
  }
}
@media (min-width: 992px) {
  .items > span {
    margin-top: 1.5rem;
  }
}

.btn-delete {
  background-color: #F3F3F3;
  font-weight: bold;
  padding: 0.4rem 1.6rem;
  white-space: nowrap;
}

.item-quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .item-quantity {
    margin-top: initial;
    margin-bottom: initial;
  }
}

.item-quantity-volume {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 8em;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 600px) {
  .item-quantity-volume {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: 15rem;
  }
}
.item-quantity-volume select {
  padding-left: 3.6em;
}
.item-quantity-volume span {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: inherit;
  height: 100%;
  width: 3.6em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10;
}

.btn_disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.5;
}

.payment_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
}
@media (min-width: 992px) {
  .payment_info {
    gap: 1.5rem;
  }
}
.payment_info .card_name, .payment_info .card_no {
  color: #868686;
}

/**  login  **/
main {
  max-width: 60rem;
  margin-right: auto;
  margin-left: auto;
}

section {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.id {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
}
.id .title {
  font-weight: bold;
  line-height: normal;
  font-size: 1.6rem;
  text-align: center;
}
@media (min-width: 600px) {
  .id .title {
    font-size: 1.8rem;
  }
}
.id br {
  display: block;
}
.id .id-message {
  padding: 2.5rem 1.5rem;
  text-align: justify;
  max-width: 52rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.8rem;
}
@media (min-width: 992px) {
  .id .id-message {
    padding: 3.5rem 2.4rem;
  }
}
.id .id-message dt {
  text-align: center;
  font-weight: bold;
}
.id .id-message dd {
  margin-top: 1.2rem;
}

@media (min-width: 992px) {
  .confirm-box {
    gap: 3rem;
    max-width: 45rem;
  }
}
.confirm-box [class^=btn-] {
  margin-top: 1rem;
}
@media (min-width: 992px) {
  .confirm-box [class^=btn-] {
    margin-top: 1.5rem;
  }
}
.confirm-box .btn-login {
  background-color: #FFF56A;
}
.confirm-box .btn-login + small {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 85%;
  text-align: left;
  margin-inline: auto;
  margin-top: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.5;
}
.confirm-box .btn-login + small a {
  display: block;
  margin-top: 0.75rem;
}
.confirm-box .btn-signup {
  border: 3px solid #FFF56A;
}
.confirm-box br {
  display: block;
}

.amazonpay {
  max-width: 45rem;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3.6rem 2rem;
  border-radius: 5px;
  -webkit-box-shadow: 0px 1px 6px 0px rgba(148, 148, 148, 0.25);
          box-shadow: 0px 1px 6px 0px rgba(148, 148, 148, 0.25);
}
@media (min-width: 992px) {
  .amazonpay {
    padding: 3.4rem 2.9rem;
  }
}
.amazonpay .title {
  font-weight: bold;
  text-align: center;
}
.amazonpay .amazonpay-check {
  display: block;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .amazonpay .amazonpay-check {
    margin-top: 1.6rem;
    margin-bottom: 3.2rem;
  }
}

/* Amazon Pay */
.cart + .AmazonPayNavi {
  border-top: none;
  padding-top: 0;
}

.AmazonPayNavi {
  max-width: 560px;
  margin-inline: auto;
  font-size: 1.4rem;
}

.AmazonPayNavi p {
  line-height: 1.8;
}

.AmazonPayNavi .AmazonPayButton {
  max-width: 60%;
  height: 70px;
  margin: 15px auto 20px;
}/*# sourceMappingURL=login.css.map */