@charset "UTF-8";
/* ==============================
  base
============================== */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap");
/* ==============================
  sub_page
  ---------------------------
  sub_page - commons

  form
    >_flow
      >__title /__submit
    >product
      >_list
        >_item
          >--name /--price /--num
    >wapper_designated
    >payment

    form入力後のモーダルはmoda.sass

============================== */
img, svg {
  display: block;
  width: 100%;
}

.subpage {
  padding: 20% 0;
}

@media screen and (min-width: 750px) {
  .subpage {
    padding: 100px 0;
  }
}

.subpage_title {
  font-size: 3rem;
}

.form {
  background: #eaeaea;
}

@media screen and (min-width: 750px) {
  .form_inner {
    width: 750px;
    margin-left: auto;
    margin-right: auto;
  }
}

.form_title .subpage_title--img {
  width: 66%;
  margin: auto;
}

.form_flow {
  margin-bottom: 20px;
  padding: 5%;
  background: #fff;
}

@media screen and (min-width: 750px) {
  .form_flow {
    padding: 20px 40px;
  }
}

.form_flow__title {
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 5%;
}

.form_flow__submit {
  margin: auto;
  padding: 5% 0;
  width: 250px;
  background: #fff;
  font-size: 2rem;
  letter-spacing: 2px;
}

@media screen and (min-width: 750px) {
  .form_flow__submit {
    padding: 25px 0;
  }
}

.form_flow .picker__select--month {
  padding: 0 0 0 5px;
  width: 22.5%;
}

.form_flow .picker__select--year {
  padding: 0 0 0 5px;
  width: 35%;
}

.form .product_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.form .product_list__item {
  width: 47.5%;
}

@media screen and (min-width: 750px) {
  .form .product_list__item {
    width: 32%;
  }
}

.form .product_list__item:nth-child(7) {
  width: 100%;
}

.form .product_item {
  padding: 2.5% 0;
  margin-bottom: 5%;
  background: #fff;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media screen and (min-width: 750px) {
  .form .product_item {
    margin-bottom: 2%;
  }
}

.form .product_item > * {
  width: 100%;
}

@media screen and (min-width: 750px) {
  .form .product_item--name br {
    display: none;
  }
}

.form .product_item--price {
  font-size: 2rem;
  color: #5f5f5f;
}

.form .product_item--price span {
  font-weight: bold;
}

.form .product_item--num {
  color: #a2928b;
}

.form .wapper_designated {
  padding: 5%;
  margin-bottom: 5%;
  border: #eee 10px solid;
  background: #f9f9f9;
}

.form .payment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: left;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.form .payment_info {
  width: 100%;
  padding: 2.5% 5%;
  background: #eeeeee;
  margin-bottom: 5%;
}

.form .payment_check {
  position: relative;
  height: 50px;
  width: 50px;
  border: 3px #999 solid;
  border-radius: 3px;
}

.form .payment_check.check_ok::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: auto;
  right: auto;
  width: 100%;
  height: 100%;
  content: "";
  background: url(../img/form/check.svg) no-repeat center center;
  background-size: 80%;
}

.form .payment_text {
  width: calc(100% - 70px);
}
