@charset "UTF-8";

/*
===========================================================
 global
=========================================================== */

textarea,
input[type="email"],
input[type="tel"],
input[type="text"],
input[type="password"],
select {
  border: 0.2rem solid #9c9c9a;
  font-family: inherit;
  font-weight: normal;
  background: #fff;
  border-radius: 0.6rem;
  padding: 0.3rem 1rem;
}

textarea::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
input[type="text"]::placeholder,
input[type="password"]::placeholder,
select::placeholder {
  color: #ddddd9;
}

textarea,
input[type="email"],
input[type="tel"],
input[type="text"],
input[type="password"] {
  font-size: 27px;
}

select {
  font-size: 23px;
  height: 56px;
  background: #fff url(../img/icon-form-select.svg) no-repeat right 12px center;
}

input[style="background-color: rgb(255, 204, 204);"],
select[style="pointer-events: auto;background-color: rgb(255, 204, 204);"],
select[style="background-color: rgb(255, 204, 204);"] {
  border-color: #fb0404;
  background-color: rgb(255, 231, 231) !important;
}

input[style="background-color: rgb(255, 204, 204);"]::placeholder,
select[style="pointer-events: auto;background-color: rgb(255, 204, 204);"]::placeholder,
select[style="background-color: rgb(255, 204, 204);"]::placeholder {
  color: #aaa !important;
}

img {
  max-width: 100%;
  height: auto;
}

/* --------------------------------------------------------
-----------------------------------------------------------
 components
-----------------------------------------------------------
----------------------------------------------------------- */

/*
-----------------------------------------------------------
 .c-content-block
----------------------------------------------------------- */
.c-content-block ~ .c-content-block {
  margin-top: 6rem;
}
/*
-----------------------------------------------------------
 c-title-block
----------------------------------------------------------- */
.c-title-block {
  border-bottom: 0.1rem solid #dddbd5;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  padding: 0 1.5rem 0.6rem;
  letter-spacing: 0.08em;
}
/* --------------------------------------------------------
-----------------------------------------------------------
 p-global-page-end
-----------------------------------------------------------
----------------------------------------------------------- */
.p-global-page-end {
  margin-top: 4rem;
}

.p-global-page-end__submit-button {
  background: #087d31;
  display: block;
  text-align: center;
  font-weight: bold;
  color: #fff;
  margin: 0 auto;
  width: 27.4rem;
  padding: 1.5rem 1rem;
  font-size: 1.8rem;
  border-radius: 0.7rem;
  line-height: 1.45;
  /* 無効化されたボタンのスタイル */
}

.p-global-page-end__submit-button:disabled {
  background: #8eafa1;
  /* 薄い緑色 */
  color: #cfd9cf;
  /* 薄い白色 */
  cursor: not-allowed;
  /* カーソルを禁止アイコンに変更 */
}

.p-global-page-end__back {
  text-align: center;
  margin-top: 3rem;
}

.p-global-page-end__back-button {
  color: #9c8f87;
  padding: 0.7rem;
  text-decoration: underline;
}

.p-global-page-end__back-button:hover {
  text-decoration: none;
}

/* --------------------------------------------------------
-----------------------------------------------------------
 COMMON
-----------------------------------------------------------
----------------------------------------------------------- */
/*
-----------------------------------------------------------
 p-form-item
----------------------------------------------------------- */
.p-form-item + .p-form-item {
  margin-top: 5rem;
}

.p-form-item__title {
  margin-bottom: 0.7rem;
}

.p-form-item__title-text {
  display: inline-block;
  vertical-align: middle;
  line-height: 1.5;
  font-size: 1.8rem;
}

.p-form-item__required {
  background-color: #cc1a1a;
  vertical-align: middle;
  color: #fff;
  font-size: 1rem;
  padding: 0.3rem 0.7rem;
  margin: 0.2rem;
}

.p-form-item__body textarea,
.p-form-item__body input[type="email"],
.p-form-item__body input[type="tel"],
.p-form-item__body input[type="text"],
.p-form-item__body input[type="password"],
.p-form-item__body select {
  width: 100%;
}

.p-form-item__body input:disabled {
  pointer-events: none !important;
  background-color: #e9ecef !important;
  border-color: #cfd1d3 !important;
}

.p-form-item__alert {
  border-color: #cc1a1a !important;
  background-color: #fff6f6 !important;
}

.p-form-item__alert-text {
  color: #cc1a1a;
  font-weight: bold;
  margin-top: 0.5rem;
}

/*
  -----------------------------------------------------------
   p-note
  ----------------------------------------------------------- */
.p-note {
  color: #9f9c93;
  font-family: ryo-gothic-plusn, "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    Meiryo, sans-serif;
  text-indent: -1em;
  margin-left: 1em;
  font-size: 1.25rem;
  line-height: 1.55;
  margin-top: 0.6rem;
}

.p-note::before {
  content: "※";
}

/* --------------------------------------------------------
  -----------------------------------------------------------
   p-cart__item
  -----------------------------------------------------------
  ----------------------------------------------------------- */
/*
  -----------------------------------------------------------
   p-cart__item
  ----------------------------------------------------------- */
.p-cart__item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 1.5rem;
}

.p-cart__item-text {
  flex: 1;
  margin-right: 0.8rem;
}

.p-cart__item-name {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
}

.p-cart__item-detail {
  color: #9f9c93;
  margin-top: 0.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.p-cart__item-img {
  width: 6.4rem;
}

.p-cart__item-img-inner {
  position: relative;
  background: #fff;
  height: 0;
  padding-bottom: 100%;
}

.p-cart__item-img-inner img {
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  max-height: 100%;
}

/*
  -----------------------------------------------------------
   p-cart__price
  ----------------------------------------------------------- */
.p-cart__price {
  background: #fff;
  border-radius: 0.4rem;
  padding: 1.5rem;
}

.p-cart__price-area + .p-cart__price-area {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 0.1rem solid #dddbd5;
}

.p-cart__price dl {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: baseline;
  line-height: 1.4;
}

.p-cart__price dl + dl {
  margin-top: 0.6rem;
}

.p-cart__price dt {
  font-weight: bold;
  letter-spacing: 0.03em;
  font-size: 1.3rem;
}

.p-cart__price dd {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 0.2rem;
}

.p-cart__price-item-value {
  font-size: 1.6rem;
  letter-spacing: 0;
}

.p-cart__price-item-unit {
  font-size: 1.1rem;
}

.p-cart__price-item-total .p-cart__price-item-value {
  font-weight: bold;
  font-size: 2rem;
}

.p-cart__price-item-total .p-cart__price-item-unit {
  font-weight: bold;
  font-size: 1.2rem;
}

/*
  -----------------------------------------------------------
   p-cart__prcode
  ----------------------------------------------------------- */
.p-cart__prcode {
  margin-top: 3rem;
}

.p-cart__prcode-input {
  position: relative;
}

.p-cart__prcode-input-input {
  width: 100%;
  padding-right: 8.5rem;
  position: relative;
  z-index: 0;
}

.p-cart__prcode-input-button {
  color: #087d31;
  position: absolute;
  font-weight: bold;
  text-align: center;
  font-size: 1.3rem;
  width: 8rem;
  top: 0;
  right: 0;
  z-index: 10;
  height: 100%;
  transition: opacity 0.6s;
}

.p-cart__prcode-input-button[disabled] {
  opacity: 0;
}

.p-form-item__prcode-complete {
  background: #36ad4a;
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin: 0.8rem auto 0;
  padding: 0.3rem 0.6rem;
  border-radius: 0.3rem;
  font-size: 1.3rem;
}

/* --------------------------------------------------------
  -----------------------------------------------------------
   p-customer
  -----------------------------------------------------------
  ----------------------------------------------------------- */
.p-form-zip__main {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
}

.p-form-zip__button {
  background: #087d31;
  display: flex;
  text-align: center;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 0.8rem 1.3rem;
  font-size: 1.4rem;
  border-radius: 0.4rem;
  line-height: 1.45;
  letter-spacing: 0.08em;
  min-height: 46px;
}

.p-form-zip__button:disabled {
  background: #8eafa1;
  color: #cfd9cf;
  cursor: not-allowed;
  /* カーソルを禁止アイコンに変更 */
  opacity: 1;
}

.p-form-zip__input {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
}

.p-form-zip__text01,
.p-form-zip__text02 {
  font-size: 1.6rem;
}

.p-form-zip__text01 {
  margin-right: 0.2rem;
}

.p-form-zip__text02 {
  margin: 0 0.4rem;
}

.p-form-zip__input input.p-form-zip__input01 {
  width: 88px;
}

.p-form-zip__input input.p-form-zip__input02 {
  width: 108px;
}

/* --------------------------------------------------------
  -----------------------------------------------------------
   p-shipping
  -----------------------------------------------------------
  ----------------------------------------------------------- */
.p-shipping__checkbox {
  display: none;
}

.p-shipping__check {
  display: flex;
}

.p-shipping__check-label {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.6rem;
}

.p-shipping__check-icon {
  border: 0.2rem solid #9c9c9a;
  position: relative;
  display: block;
  background: #fff;
  width: 3rem;
  height: 3rem;
  border-radius: 0.6rem;
}

.p-shipping__check-icon::before {
  border-color: #087d31;
  border-style: none;
  border-left-style: solid;
  border-bottom-style: solid;
  border-width: 0.3rem;
  content: "";
  opacity: 0;
  width: 1.6rem;
  height: 0.9rem;
  transform: rotate(-45deg);
  display: block;
  position: absolute;
  top: 0.6rem;
  left: 0.5rem;
}

.p-shipping__checkbox:disabled ~ .p-shipping__check .p-shipping__check-icon {
  pointer-events: none !important;
  background-color: #e9ecef !important;
  border-color: #cfd1d3 !important;
}

.p-shipping__checkbox:disabled
  ~ .p-shipping__check
  .p-shipping__check-icon::before {
  border-color: #71787f !important;
}

.p-shipping__check-text {
  font-size: 1.8rem;
  line-height: 1.5;
  padding-top: 0.1rem;
}

.p-shipping__checkbox:checked
  ~ .p-shipping__check
  .p-shipping__check-icon::before {
  opacity: 1;
}

.p-shipping__form {
  visibility: visible;
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
  margin-top: 4rem;
}

.p-shipping__checkbox:checked ~ .p-shipping__form {
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
  height: 0;
  margin: 0;
}

/* --------------------------------------------------------
  -----------------------------------------------------------
   p-payment
  -----------------------------------------------------------
  ----------------------------------------------------------- */
.p-payment_top {
  margin-bottom: 2rem;
}

.p-form-cc-exp__input {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.4rem;
}

.p-form-cc-exp__input input.p-form-cc-exp__input01 {
  width: 60px;
}

.p-form-zip__text {
  font-size: 1.6rem;
}

.p-form-cc-exp__input input.p-form-cc-exp__input02 {
  width: 80px;
}

.p-form-cc-csc input.p-form-cc-csc__input {
  width: 80px;
}

.p-form-cc-csc__input {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 1.2rem;
}

.p-form-cc-csc__input .p-note {
  margin-top: 0;
}
.p-attention__box {
  background: #f4f4f4;
  border-radius: 0.4rem;
  padding: 1.3rem 1.5rem;
  line-height: 1.55;
  font-size: 1.3rem;
}

.p-attention__text-em {
  color: #cc1a1a;
  font-weight: bold;
}

.p-attention__box ul {
  list-style-position: outside;
  list-style-type: disc;
  padding-left: 1.3rem;
}

.p-attention__box li + li {
  margin-top: 12px;
}

.p-attention__box a {
  color: #9f9c93;
  text-decoration: underline;
}

.p-attention__box a:hover {
  text-decoration: none;
}

/* --------------------------------------------------------
  -----------------------------------------------------------
   #delivery-message
  -----------------------------------------------------------
  ----------------------------------------------------------- */
#delivery-message {
  display: none;
  /* 初期状態では非表示にする */
  height: 0;
  overflow: hidden;
  transition: height 0.3s;
  /* オプション: スムーズな遷移のためのアニメーション */
}

/* --------------------------------------------------------
  -----------------------------------------------------------
   StripeElementsへのCSS適用
  -----------------------------------------------------------
  ----------------------------------------------------------- */
.elements-style.StripeElement {
  border: 0.2rem solid #9c9c9a;
  font-family: inherit;
  font-weight: normal;
  background: #fff;
  border-radius: 0.4rem;
  padding: 0.3rem 1rem;
}

/* --------------------------------------------------------
  -----------------------------------------------------------
   カスタムダイアログの基本スタイル
  -----------------------------------------------------------
  ----------------------------------------------------------- */
#custom-dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 10000;
}

.dialog-content {
  width: 100%;
  padding: 2rem;
  background: #fff;
  border-radius: 0.8rem;
  max-width: 560px;
}

#dialog-close {
  border: none;
  background: none;
  padding: 0.5rem;
  cursor: pointer;
  margin: 1.5rem auto 0;
  display: block;
  border: 0.1rem solid #ccc;
  border-radius: 0.6rem;
  min-width: 10rem;
  text-align: center;
  color: #666;
}

#custom-dialog.dialog-hidden {
  display: none;
}

/* --------------------------------------------------------
  -----------------------------------------------------------
   p-repeater
  -----------------------------------------------------------
  ----------------------------------------------------------- */
.p-repeater {
  border: 0.3rem solid #087d31;
  margin-bottom: 4rem;
  border-radius: 1rem;
  background: #fff;
  overflow: hidden;
}

.p-repeater__button {
  position: relative;
  display: block;
  width: 100%;
  line-height: 1.45;
  padding: 1.3rem 3.3rem 1.1rem 1rem;
}

.p-repeater__button-title {
  color: #087d31;
  display: block;
  font-weight: bold;
  margin-bottom: 0.4rem;
  letter-spacing: 0.05rem;
  font-size: 1.6rem;
}

.p-repeater__button-detail {
  display: block;
  font-size: 1.2rem;
  color: #777;
}

.p-repeater__button-icon {
  position: absolute;
  height: 1.6rem;
  width: 1.6rem;
  top: 0;
  bottom: 0;
  right: 0.9rem;
  margin: auto 0;
}

.p-repeater__button-icon::before,
.p-repeater__button-icon::after {
  content: "";
  background: #51895a;
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  top: 0;
  bottom: 0;
}

.p-repeater__button-icon::before {
  width: 0.2rem;
  height: 100%;
  transition: 0.3s height;
}

.p-repeater__button.--open .p-repeater__button-icon::before {
  height: 0;
}

.p-repeater__button-icon::after {
  height: 0.2rem;
  width: 100%;
}

.p-repeater__body {
  display: none;
  padding: 1.4rem 1rem 1.7rem;
  background: #f4f4f4;
}

.p-repeater__body-top {
  font-weight: bold;
  font-size: 1.3rem;
  line-height: 1.55;
  margin-bottom: 2.5rem;
}

.p-repeater .p-form-item__title-text {
  font-size: 1.6rem;
}

.p-repeater .p-form-item + .p-form-item {
  margin-top: 2.3rem;
}

.p-repeater__body-bottom {
  margin-top: 2rem;
}

.p-repeater__body-bottom-button {
  background: #087d31;
  display: block;
  text-align: center;
  color: #fff;
  padding: 1rem 1.3rem;
  font-size: 1.5rem;
  border-radius: 0.4rem;
  line-height: 1.45;
  letter-spacing: 0.08em;
  margin: 0 auto;
  width: 62%;
}

.p-form-customerSearch__main {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
}

#oder-4code {
  width: 95px;
}

#customerAppliedMessage {
  background: #36ad4a;
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin: 0.8rem auto 0;
  padding: 0.3rem 0.6rem;
  border-radius: 0.3rem;
  font-size: 1.3rem;
  margin-top: -3rem;
}

#refreshButton {
  color: #9c8f87;
  text-decoration: underline;
  display: block;
  text-align: center;
  margin: 0.6rem auto 4rem;
  font-size: 1.5rem;
  width: 13rem;
  line-height: 1.3;
  padding: 0.7rem 0;
}

#refreshButton:hover {
  text-decoration: none;
}

/* --------------------------------------------------------
  -----------------------------------------------------------
   p-delivery-message
  -----------------------------------------------------------
  ----------------------------------------------------------- */
.p-delivery-message {
  display: none;
  margin-top: 3rem;
  background: #fff;
  border-radius: 0.4rem;
  padding: 1.3rem 1.5rem;
  /* border: 0.1rem solid #dddbd5; */
}

.p-delivery-message:not(:empty)::before {
  content: "お届けについて";
  display: block;
  font-weight: bold;
  border-bottom: 0.1rem solid #dddbd5;
  margin-bottom: 0.7rem;
  line-height: 1.45;
  padding-bottom: 0.4rem;
}

/* --------------------------------------------------------
  -----------------------------------------------------------
   readonly
  -----------------------------------------------------------
  ----------------------------------------------------------- */
input.readonly,
select.readonly {
  pointer-events: none !important;
  background-color: #e9ecef !important;
  color: #71787f !important;
  border-color: #cfd1d3 !important;
}

.not-require {
  display: none;
}
.order-block {
    /* padding-top: 5rem; */
    padding-bottom: 10rem;
    /* background: #fff; */
    background-color: #F4F2EC;
}

/* --------------------------------------------------------
  -----------------------------------------------------------
   p-form-back
  -----------------------------------------------------------
  ----------------------------------------------------------- */

.p-form-back {
  display: flex;
  justify-content: center;
  margin: 3rem 0;
}

.p-form-back__img-s {
  width: 17rem;
}

@media (min-width: 521px) {
  .p-form-back__img-s {
    width: 21rem;
  }
}

.p-form-back__img-m {
  width: 21rem;
}

@media (min-width: 521px) {
  .p-form-back__img-m {
    width: 25.9rem;
  }
}

.p-form-back__img-l {
    width: 24rem;
  }
  
  @media (min-width: 521px) {
    .p-form-back__img-l {
      width: 29.6rem;
    }
  }

  /* --------------------------------------------------------
-----------------------------------------------------------
 カスタムダイアログの基本スタイル
-----------------------------------------------------------
----------------------------------------------------------- */
#custom-dialog,#timeout-dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 10000;
}

.dialog-content {
  width: 100%;
  padding: 2rem;
  background: #fff;
  border-radius: 0.8rem;
  max-width: 560px;
}

.dialog-content .dialog-list01 {
  margin-top: 1.5rem;
  list-style-position: outside;
  list-style-type: decimal;
  padding-left: 2.2rem;
  line-height: 1.4;
}

.dialog-content .dialog-list01 > li + li {
  margin-top: 1rem;
}

.dialog-content .dialog-list01 .dialog-list-text-main {
  font-weight: bold;
}

.dialog-content .dialog-list01 .dialog-list-text-sub {
  font-size: 1.3rem;
  margin-top: 0.4rem;
  color: #777;
}

#dialog-close,#timeout-dialog-close {
  border: none;
  background: none;
  padding: 0.5rem;
  cursor: pointer;
  margin: 1.5rem auto 0;
  display: block;
  border: 0.1rem solid #ccc;
  border-radius: 0.6rem;
  min-width: 10rem;
  text-align: center;
  color: #666;
}

#custom-dialog.dialog-hidden,#timeout-dialog.dialog-hidden {
  display: none;
}