@charset "UTF-8";
/*
===========================================================
 global
=========================================================== */
/* --------------------------------------------------------
-----------------------------------------------------------
 base
-----------------------------------------------------------
----------------------------------------------------------- */
html {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  -webkit-tap-highlight-color: inherit;
  font-size: 2.667vw;
  min-height: 100%;
}

@media screen and (min-width: 641px) {
  html {
    font-size: 83%;
  }
}
body {
  font-family: "Helvetica Neue", arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  background-color: #F4F2EC;
  color: #403934;
  line-height: 1.7;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  width: 100%;
}

dt {
  font-weight: normal;
}

iframe,
video {
  max-width: 100%;
}

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

@media screen and (min-width: 641px) {
  a,
  button,
  input[type=button],
  input[type=submit] {
    transition: opacity 0.2s;
  }
  a:hover,
  button:hover,
  input[type=button]:hover,
  input[type=submit]:hover {
    opacity: 0.7;
  }
}
img {
  max-width: 100%;
  height: auto;
}

/* --------------------------------------------------------
-----------------------------------------------------------
 components
-----------------------------------------------------------
----------------------------------------------------------- */
/*
-----------------------------------------------------------
 hide object
----------------------------------------------------------- */
@media (max-width: 640px) {
  .c-sp-none {
    display: none !important;
  }
}
@media screen and (min-width: 641px) {
  .c-pc-none {
    display: none !important;
  }
}
/*
-----------------------------------------------------------
 underline link
----------------------------------------------------------- */
.c-underline-link {
  text-decoration: underline;
}

@media screen and (min-width: 641px) {
  .c-underline-link:hover {
    text-decoration: none;
  }
}
/*
-----------------------------------------------------------
 .c-content-block
----------------------------------------------------------- */
.c-content-block ~ .c-content-block {
  margin-top: 6rem;
}

/*
-----------------------------------------------------------
 .c-content-body
----------------------------------------------------------- */
.c-content-body {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

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

/* --------------------------------------------------------
-----------------------------------------------------------
 l-wrapper
-----------------------------------------------------------
----------------------------------------------------------- */
.l-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  min-height: 100%;
}

/* --------------------------------------------------------
-----------------------------------------------------------
 l-pagetop
-----------------------------------------------------------
----------------------------------------------------------- */
.l-pagetop {
  display: none;
  position: fixed;
  bottom: 2rem;
  right: 1.2rem;
  z-index: 90;
  padding-bottom: env(safe-area-inset-bottom);
  padding-bottom: constant(safe-area-inset-bottom);
}

@media screen and (min-width: 641px) {
  .l-pagetop {
    right: 2rem;
  }
}
.l-pagetop a {
  color: #FF6614;
  display: block;
  text-decoration: none;
  position: relative;
  border-radius: 0.3rem;
  width: 4rem;
  height: 4rem;
  background: #FFF;
  border: 0.1rem solid;
}
.l-pagetop a::before {
  content: "";
  display: block;
  width: 1.1rem;
  height: 1.1rem;
  border: 0.2rem solid;
  border-bottom: none;
  border-right: none;
  transform: rotate(45deg);
  margin: 0 auto;
  top: 1.7rem;
  left: 0;
  position: absolute;
  right: 0;
}

/* --------------------------------------------------------
-----------------------------------------------------------
 l-header
-----------------------------------------------------------
----------------------------------------------------------- */
.l-header {
  background-color: #fff;
  box-shadow: 0 0.2rem 0.3rem 0 rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 10;
}

.l-header__logo {
  text-align: center;
  padding: 1.9rem 0;
}

.l-header__logo img {
  margin: 0 auto;
  width: 13rem;
}

/* --------------------------------------------------------
-----------------------------------------------------------
 l-main
-----------------------------------------------------------
----------------------------------------------------------- */
.l-main {
  flex: 1;
  padding-bottom: 6rem;
}

.l-main__inner {
  margin: 0 auto;
  max-width: 640px;
}

/* --------------------------------------------------------
-----------------------------------------------------------
 .l-footer
-----------------------------------------------------------
----------------------------------------------------------- */
.l-footer {
  padding-bottom: env(safe-area-inset-bottom);
  padding-bottom: constant(safe-area-inset-bottom);
}

.l-footer__copyright {
  text-align: center;
  color: #999;
  font-weight: normal;
  font-size: 1rem;
  padding-bottom: 3rem;
}

/* --------------------------------------------------------
-----------------------------------------------------------
 .p-global-page-head
-----------------------------------------------------------
----------------------------------------------------------- */
.p-global-page-head__title {
  color: #4C392F;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 2.3rem;
  line-height: 1.45;
  padding: 10% 2rem 0;
  margin-bottom: 9%;
}

/* --------------------------------------------------------
-----------------------------------------------------------
 p-global-step
-----------------------------------------------------------
----------------------------------------------------------- */
.p-global-step {
  margin-bottom: 3.5rem;
}

.p-global-step ul {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 3.9rem;
}

.p-global-step__number {
  text-align: center;
  background: #D6D2C2;
  color: #FFF;
  width: 3.2rem;
  line-height: 3.2rem;
  border-radius: 50%;
  font-size: 1.6rem;
}

.p-global-step__name {
  color: #B9B39D;
  font-size: 1.2rem;
  text-align: center;
  margin-top: 0.3rem;
}

.p-global-step-item.--current .p-global-step__number {
  background: #087D31;
}

.p-global-step-item.--current .p-global-step__name {
  color: #087D31;
}

/* --------------------------------------------------------
-----------------------------------------------------------
 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: #938275;
  padding: 0.7rem;
  text-decoration: underline;
}
.p-global-page-end__back-button:hover {
  text-decoration: none;
}

/* --------------------------------------------------------
-----------------------------------------------------------
 modal
-----------------------------------------------------------
----------------------------------------------------------- */
/**************************\
  Animation Style
\**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

/*.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
    will-change: transform;
}*/
/*
-----------------------------------------------------------
modal
----------------------------------------------------------- */
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal__container {
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  background-color: #fff;
  padding: 4rem 1.2rem 5rem;
  max-width: 760px;
  max-height: 90vh;
  border-radius: 4px;
  width: calc(100% - 4rem);
}

.modal__content {
  overflow-y: auto;
  padding: 1.5rem 0.5rem 0;
  font-size: 1.3rem;
}

.modal__close {
  position: absolute;
  background: transparent;
  vertical-align: top;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  color: #888;
  width: 4.5rem;
  height: 5rem;
  border: 0;
  right: 0rem;
  top: 0rem;
  font-size: 2.2rem;
}
.modal__close::before {
  content: "✕";
}

.modal__footer-close {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  height: 5rem;
}

.modal__footer-close button {
  color: #9C8F87;
  text-decoration: underline;
  padding: 0.5rem;
}
.modal__footer-close button:hover {
  text-decoration: none;
}

.modal__title02 {
  border-bottom: 0.1rem solid #DDDBD5;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.45;
  letter-spacing: 0.1em;
  padding: 0 0.5rem 0.8rem;
}

.modal__text {
  font-size: 1.3rem;
}

.modal__text p {
  margin: 1.3em 0 0;
}

.modal .color-red {
  font-weight: bold;
  color: #e20b0b;
}

.modal__container a {
  text-decoration: underline;
}
.modal__container a:hover {
  text-decoration: none;
}

/* --------------------------------------------------------
-----------------------------------------------------------
 p-cart
-----------------------------------------------------------
----------------------------------------------------------- */
/*
-----------------------------------------------------------
 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__price-note {
  font-size: 1.1rem;
  margin-top: 0.8rem;
  color: #888;
  text-align: center;
}

/* --------------------------------------------------------
-----------------------------------------------------------
 カスタムダイアログの基本スタイル
-----------------------------------------------------------
----------------------------------------------------------- */
#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;
}