@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% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
@keyframes clipPath {
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
@-webkit-keyframes clipPathCircle {
  100% {
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
  }
}
@keyframes clipPathCircle {
  100% {
    -webkit-clip-path: circle(100% at 50% 50%);
            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;
}
@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;
}

/**  common  **/
/** color **/
/** btn size **/
.card {
  border-radius: 5px;
  -webkit-box-shadow: 0px 1px 6px 0px rgba(148, 148, 148, 0.4);
          box-shadow: 0px 1px 6px 0px rgba(148, 148, 148, 0.4);
  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;
}
@media (min-width: 600px) {
  body {
    font-size: 1.6rem;
    line-height: 2.8rem;
  }
}

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;
  padding-right: 3rem;
  padding-left: 3rem;
  padding-top: 3rem;
  padding-bottom: 1.4rem;
}
footer.sticky {
  position: sticky;
  top: 100vh;
}
@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]::after {
  font-family: "Hobonichi-Icons";
  content: "\e914";
}
a.no-linkmark::after {
  content: "";
}

.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;
  cursor: pointer;
}
@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{
  @include font-h2();
  color: #EA4335;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: {
    top: 3rem;
    bottom: 3rem;
  }
  @include base.tab{
    margin: {
      top: 2.6rem;
      bottom: 2.6rem;
    }
  }
  img{
    width: 4.2rem;
    @include base.sp{
      width: 3.6rem;
    }
  }
}
*/
.alert {
  font-weight: bold;
  line-height: normal;
  font-size: 1.6rem;
  text-align: center;
  color: #DD2819;
  background-color: transparent;
  border-radius: 4px;
  padding: 1.5rem;
  margin-block: 2rem;
  border: 1px solid #DD2819;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.2rem;
}
@media (min-width: 600px) {
  .alert {
    font-size: 1.8rem;
  }
}
.alert.alert-small {
  font-size: 12px;
}
.alert.keep-br br {
  display: block;
}

.info {
  font-weight: bold;
  line-height: normal;
  font-size: 1.6rem;
  text-align: center;
  color: #4D4D4D;
  background-color: transparent;
  border-radius: 4px;
  padding: 1.5rem;
  margin-block: 2rem;
  border: 1px solid #4D4D4D;
}
@media (min-width: 600px) {
  .info {
    font-size: 1.8rem;
  }
}

.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);
}
.modal .modal-header {
  font-weight: bold;
  line-height: normal;
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 0.5rem;
}
@media (min-width: 600px) {
  .modal .modal-header {
    font-size: 1.8rem;
  }
}
.modal .modal-inner + * {
  margin-top: 1.5rem;
}

.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: 1.1rem;
  max-width: 38rem;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 3rem;
}
@media (min-width: 600px) {
  .progress-bar {
    font-size: 1.3rem;
  }
}
.progress-bar li {
  -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;
  gap: 1rem;
  position: relative;
}
.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;
}

/* input */
label:not(:disabled),
input:not(:disabled) {
  cursor: pointer;
}

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

.input-error-text {
  color: #EA4335;
  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: 1rem;
}
.input-wrapper:has(input:disabled) {
  opacity: 0.5;
  pointer-events: none;
}

/* checkbox */
input[type=checkbox] {
  height: 2.8rem;
  width: 2.8rem;
  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";
}

/* radio */
input[type=radio] {
  height: 2.8rem;
  width: 2.8rem;
  border-radius: 2.8rem;
}
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-right: 1rem;
  padding-left: 1rem;
}
input[type=text]:disabled,
input[type=number]:disabled {
  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;
}

/* 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("../images/common/ico-select-down.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.select-wrapper:has(select:disabled)::after {
  opacity: 0.5;
}

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 dd {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

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

.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.8rem;
}
@media (min-width: 992px) {
  .regi-amt-total-quantity small {
    font-size: 2rem;
  }
}
.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.8rem;
}
@media (min-width: 992px) {
  .regi-amt-total-amount small {
    font-size: 2rem;
  }
}
.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;
}

/* 商品一覧 */
.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: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 .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;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@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 .unit-price {
  padding-inline: 0.2rem;
  font-size: 1.8rem;
}
.items dl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 768px) {
  .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 dt {
  font-weight: bold;
  margin-bottom: 1rem;
  width: 100%;
}
.items br {
  display: block;
}
.items img {
  width: 36vw;
  max-width: 12rem;
  height: auto;
  border-radius: 4px;
}
.items .item-subtotal-amt {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  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;
}
.items .item-subtotal-amt > span {
  padding-left: 0.2rem;
  pointer-events: none;
}
.items .item-subtotal-amt .line-total {
  font-weight: bold;
  line-height: normal;
  font-size: 2.1rem;
  padding-inline: 0.3rem;
}
@media (min-width: 600px) {
  .items .item-subtotal-amt .line-total {
    font-size: 2.3rem;
  }
}
.items .item-sold {
  font-weight: bold;
  color: #EA4335;
  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;
  pointer-events: none;
}

/**  cart  **/
section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
section + section:not(.no-border-top) {
  border-top: 1px solid #EFEFEF;
}

.ge-flag {
  font-size: 1.2rem;
  border-radius: 4px;
  border: 1px solid #C2C2C2;
  background: #F6F6F6;
  padding: 0.4rem 0.8rem;
  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;
}
@media (min-width: 600px) {
  .ge-flag {
    font-size: 1.4rem;
  }
}
.ge-flag a {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}

.is-restricted-item {
  border: 1px solid #DD2819;
}

.restricted-item-message {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-top: 0.5rem;
  color: #DD2819;
}
@media (min-width: 600px) {
  .restricted-item-message {
    font-size: 1.4rem;
  }
}

.store-message {
  font-weight: bold;
  line-height: normal;
  font-size: 1.6rem;
  text-align: center;
  color: #676767;
  background-color: #F6F6F6;
  border-radius: 4px;
  padding: 1.5rem;
  margin-block: 2rem;
  font-weight: normal;
  color: #4d4d4d;
  font-size: 1.2rem;
  padding: 1.5rem;
}
@media (min-width: 600px) {
  .store-message {
    font-size: 1.8rem;
  }
}
@media (min-width: 600px) {
  .store-message {
    font-size: 1.4rem;
  }
}
.store-message ul {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: left;
  list-style-type: disc;
  padding-left: 1.5rem;
  line-height: 1.5;
}
.store-message ul li + li {
  margin-top: 0.5rem;
}

.unavailable {
  cursor: normal;
  pointer-events: none;
  opacity: 0.3;
}

.cart {
  /* 商品一覧 */
  /* ラッピングサービス */
  /*  */
}
.cart .title {
  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;
}
.cart h1 {
  font-weight: bold;
  line-height: normal;
  font-size: 2.8rem;
}
@media (min-width: 600px) {
  .cart h1 {
    font-size: 3rem;
  }
}
.cart .items li {
  border-radius: 5px;
  -webkit-box-shadow: 0px 1px 6px 0px rgba(148, 148, 148, 0.4);
          box-shadow: 0px 1px 6px 0px rgba(148, 148, 148, 0.4);
  padding: 2rem 1.6rem;
}
@media (min-width: 992px) {
  .cart .items li {
    padding: 2.5rem;
  }
}
.cart .gift {
  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: 1rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 600px) {
  .cart .gift {
    gap: 0.5rem;
  }
}
.cart .gift br {
  display: block;
}
@media (min-width: 600px) {
  .cart .gift br {
    display: none;
  }
}
.cart .gift-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.cart .gift-check.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.cart .gift-alert {
  font-size: 1.2rem;
  color: #868686;
}
@media (min-width: 600px) {
  .cart .gift-alert {
    font-size: 1.4rem;
  }
}

.timeout {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-right: auto;
  margin-left: auto;
}
.timeout .alert {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.timeout .inner {
  margin-top: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .timeout .inner {
    margin-top: 2.5rem;
    margin-bottom: 4rem;
  }
}

.note dl:not(:last-child) {
  margin-bottom: 2rem;
}
.note dl.type-danger {
  color: #B03A3A;
}
.note dt:not(:last-child),
.note dd:not(:last-child),
.note div:not(:last-child),
.note ul:not(:last-child) {
  margin-bottom: 1.1rem;
}
.note dt {
  font-weight: bold;
  line-height: normal;
  font-size: 1.6rem;
  text-align: center;
}
@media (min-width: 600px) {
  .note dt {
    font-size: 1.8rem;
  }
}
@media (min-width: 600px) {
  .note dt {
    text-align: left;
  }
}
.note.store-info {
  padding-bottom: 0;
}
.note.store-info dt {
  font-size: 1.6rem;
  text-align: left;
}
.note.store-info dt:not(:last-child) {
  margin-bottom: 0.6rem;
}
.note.store-info dd {
  font-size: 1.4rem;
}

.help dt {
  font-weight: bold;
  line-height: normal;
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 1.1rem;
}
@media (min-width: 600px) {
  .help dt {
    font-size: 1.8rem;
  }
}
@media (min-width: 600px) {
  .help dt {
    text-align: left;
  }
}
.help li {
  line-height: 3rem;
}
.help a::before {
  content: "> ";
}

.foot-cart-navi {
  position: sticky;
  bottom: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0px -2px 3.9px 0px rgba(148, 148, 148, 0.25);
          box-shadow: 0px -2px 3.9px 0px rgba(148, 148, 148, 0.25);
  padding: 1.3rem;
}
.foot-cart-navi .inner {
  max-width: 90rem;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5em;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 600px) {
  .foot-cart-navi .inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2.4rem;
  }
}
@media (min-width: 992px) {
  .foot-cart-navi .foot-cart-amt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.foot-cart-navi .foot-cart-amt-title {
  display: inline-block;
}
.foot-cart-navi strong {
  font-weight: bold;
  line-height: normal;
  font-size: 3rem;
}
@media (min-width: 600px) {
  .foot-cart-navi strong {
    font-size: 3.2rem;
  }
}
@media (max-width: 374px) {
  .foot-cart-navi strong {
    word-break: break-all;
  }
}
.foot-cart-navi small {
  margin-left: 0.25em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.foot-cart-navi .btn-submit {
  background-color: #FFF56A;
  max-width: 45rem;
  font-weight: bold;
  line-height: normal;
  font-size: 1.6rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  white-space: nowrap;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
}
@media (min-width: 600px) {
  .foot-cart-navi .btn-submit {
    font-size: 1.8rem;
  }
}

/* 削除モーダル */
.modal-item-quantity .modal-wrapper {
  max-width: 50rem;
}
@media (min-width: 600px) {
  .modal-item-quantity .modal-inner {
    text-align: center;
  }
}
.modal-item-quantity .confirm-box {
  max-width: 25rem;
}

/* 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;
}

/* chat bot */
.ul-widget-main-window.ul-widget-hide {
  -webkit-transform: translateY(-112px);
          transform: translateY(-112px);
}
@media (min-width: 600px) {
  .ul-widget-main-window.ul-widget-hide {
    -webkit-transform: translateY(-60px);
            transform: translateY(-60px);
  }
}/*# sourceMappingURL=cart.v2.0.6.css.map */