@charset "utf-8";
/*  butsu.css
---------------------------------------------- */
/*  pc
---------------------------------------------- */
.cart_bottom {
  margin-top: 100px;
}
.cart_tel {
  margin: 130px auto 200px;
  width: fit-content;
  padding: 25px 60px;
  position: relative;
}
.cart_tel::before,
.cart_tel::after {
  content: "";
  width: 35px;
  height: 100%;
  position: absolute;
}
.cart_tel::before {
  border-left: solid 2px #4a858c;
  border-top: solid 2px #4a858c;
  border-bottom: solid 2px #4a858c;
  top: 0;
  left: 0;
}
.cart_tel::after {
  border-right: solid 2px #4a858c;
  border-top: solid 2px #4a858c;
  border-bottom: solid 2px #4a858c;
  top: 0;
  right: 0;
}
.cart_tel .txt {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 30px;
}
.cart_tel .txt::before {
  content: "";
  width: 30px;
  height: 30px;
  background: url(../img/cart/icon_tel.svg) no-repeat center / contain;
}
.cart_tel .num {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #4a858c;
  color: #fff;
  font-weight: 400;
  font-size: 28px;
  font-family: "Judson", serif;
}
.error {
  font-weight: 500;
  font-size: 1.6rem;
  color: #b80808;
}
.error_end {
  text-align: center;
  margin-bottom: 10px;
}

/*--------------------------------
 cart_head 
 --------------------------------*/
#cart_head {
  padding: 100px 0 20px;
  background: rgb(229, 246, 248);
  background: linear-gradient(180deg, rgba(229, 246, 248, 1) 70%, rgba(229, 246, 248, 0) 100%);
}
#cart_head .ttl {
  margin-bottom: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  font-size: 4.8rem;
  font-weight: 700;
}
#cart_head .ttl::after {
  content: "";
  width: 145px;
  height: 3px;
  background: #68a5ad;
}
#cart_head .flow {
  display: flex;
  overflow: hidden;
  border-right: 3px solid #fff;
  border-left: 3px solid #fff;
}
#cart_head .flow li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% / 5);
  height: 65px;
  background: #c6c6c6;
  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
  font-weight: 600;
  font-size: 23px;
  text-indent: 25px;
}
#cart_head .flow li:not(:last-child)::before,
#cart_head .flow li:not(:last-child)::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  border-right: 0;
}
#cart_head .flow li:not(:last-child)::before {
  right: -25px;
  border-top: 32.5px solid transparent;
  border-bottom: 32.5px solid transparent;
  border-left: 25px solid #fff;
  z-index: 1;
}
#cart_head .flow li:not(:last-child)::after {
  right: -22px;
  border-top: 29.5px solid transparent;
  border-bottom: 29.5px solid transparent;
  border-left: 22px solid #c6c6c6;
  z-index: 2;
}
#cart_head .flow li.active:not(:last-child)::after {
  border-left: 22px solid #87bcc3;
}
#cart_head .flow li.active {
  color: #fff;
  background: #87bcc3;
}

/*--------------------------------
 select 
 --------------------------------*/
#select {
  padding-top: 30px;
}
#select .slc_cont1 {
  display: flex;
  align-items: flex-start;
  gap: 7%;
}
#select .slc_cont1 .cart {
  width: 100%;
  /* width: calc(100% - 7% - 280px); */
}
#select .cart .cart_h {
  padding-bottom: 10px;
  font-weight: 700;
  font-size: 3.2rem;
  border-bottom: 2px solid #707070;
}
#select .cart .cart_term {
  padding-left: calc(120px + 35px);
  margin-top: 25px;
  background: #cecece;
}
#select .cart .cart_list li {
  padding: 15px 0;
  display: flex;
  align-items: center;
  font-weight: 600;
}
#select .cart .cart_list li:not(:last-child) {
  background-image: linear-gradient(to right, #707070 2px, transparent 2px);
  background-size: 4px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
#select .select_confirm .cart .cart_list li {
  padding: 15px 20px;
  background-image: linear-gradient(to right, #707070 2px, transparent 2px);
  background-size: 4px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
#select .cart .cart_list li .img {
  width: 150px;
  height: auto;
  aspect-ratio: 1/1;
  cursor: pointer;
}
#select .cart .cart_list li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#select .cart .cart_list li .name {
  margin-left: 35px;
  font-size: 2.6rem;
}
#select .cart .cart_list li .delete {
  margin: 0 0 0 auto;
  font-size: 1.8rem;
  color: #929292;
  border-bottom: 1px solid #929292;
}
#select .slc_cont1 .similar {
  padding: 40px;
  width: 280px;
  background: #f6f6ec;
}
#select .similar .similar_h {
  font-weight: 600;
  font-size: 2.6rem;
}
#select .similar .similar_list li {
  margin-top: 30px;
}
#select .similar .similar_list li .img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
#select .similar .similar_list li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#select .similar .similar_list li .name {
  margin-top: 15px;
  text-align: center;
}
#select .list .list_desc {
  margin: 250px 0 40px;
  text-align: center;
  font-weight: 700;
  font-size: 2.2rem;
}

/*--------------------------------
 option 
 --------------------------------*/
#option {
  margin-top: 100px;
}
#option .list_cont .category_s {
  margin-bottom: 70px;
}
#option .list_cont .cat_head_s .note {
  margin-left: 20px;
  font-weight: 500;
  font-size: 14px;
}
#option .list_cont .cat_head_s .red {
  margin-left: 10px;
  color: #b80808;
}

/*--------------------------------
 form 
 --------------------------------*/
#form {
  margin-top: 110px;
}
#form .form_list > li {
  display: flex;
  border-bottom: 1px solid #afafaf;
}
#form .form_list > li:first-child {
  border-top: 1px solid #afafaf;
  font-weight: 600;
}
#form .form_list > li .term {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 305px;
  padding: 40px 30px 30px;
  background: #f6f6ec;
}
#form .form_list > li .term.req::after {
  content: "必須";
  width: 45px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #b22222;
  font-weight: 600;
  font-size: 12px;
}
#form .form_list > li .box {
  padding: 30px 4%;
  width: calc(100% - 305px);
}
#form .form_list > li .box input[type="text"],
#form .form_list > li .box input[type="tel"],
#form .form_list > li .box input[type="email"],
#form .form_list > li .box .select_wrap select,
#form .form_list > li .box input[type="date"],
#form .form_list > li .box textarea {
  padding: 10px 20px;
  border: 1px solid #afafaf;
  cursor: pointer;
}
#form .form_list > li .box::placeholder {
  color: #afafaf;
}
#form .form_list > li .box > input {
  width: 52%;
  min-width: 390px;
}
#form .form_list > li .box.w100 * {
  width: 100%;
}
#form .form_list > li .box li {
  display: flex;
  align-items: center;
  gap: 20px;
}
#form .form_list > li .box li label {
  font-weight: 500;
  font-size: 1.8rem;
}
#form .form_list > li .box .box_time {
  display: flex;
  gap: 20px;
}
#form .form_list > li .box .box_time input[type="date"] {
  width: 250px;
}
#form .form_list > li .box .box_time .select_wrap {
  position: relative;
  width: 140px;
}
#form .form_list > li .box .box_time .select_wrap::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 5px solid #1a1612;
  border-bottom: 0;
  pointer-events: none;
}
#form .form_list > li .box .box_time .select_wrap select {
  width: 100%;
  height: 100%;
}
#form .form_list > li .box textarea {
  height: 180px;
  resize: none;
}
#form .form_agree {
  width: fit-content;
  margin: 100px auto 0;
  font-weight: 600;
  font-size: 2.2rem;
}
#form .form_agree li {
  margin-bottom: 10px;
}
#form .form_agree li label a {
  text-decoration: underline;
  color: #4a858c;
}
#form .form_agree li input {
  position: relative;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  border: 1px solid #707070;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#form .form_agree li input:checked {
  background: #4a858c;
  border: none;
}
#form .form_agree li input:checked::before {
  position: absolute;
  padding: 4px;
  color: white;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  content: "\f00c";
}
#form .form_agree li span {
  padding-left: 28px;
  display: block;
  font-size: 1.6rem;
}
#form .form_agree .agree_btm {
  font-weight: 700;
  margin-top: 80px;
  text-align: center;
  font-size: 2.4rem;
}

/* confirm */
#form.confirm .form_list > li .term {
  padding: 40px 30px;
}
#form.confirm .form_list > li .box {
  padding: 40px 4%;
}
#form.confirm .form_list > li .box li:not(:first-child) {
  margin-top: 20px;
}
#form.confirm .cart_btn {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
#form.confirm .cart_btn > * {
  margin: 0;
}

/*--------------------------------
 complete 
 --------------------------------*/
#complete {
  margin-top: 140px;
}
#complete p {
  text-align: center;
}
#complete .comp_txt1 {
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 4rem;
}
#complete .comp_txt2 {
  line-height: 1.7;
}
#complete .btn_back {
  margin-top: 80px;
}

/*  mobile & smart phone
---------------------------------------------- */
@media only screen and (max-width: 959px) {
  .cart_bottom {
    margin-top: 50px;
  }
  .cart_tel {
    margin: 100px auto 150px;
    width: 90%;
    padding: 20px 40px;
  }
  .cart_tel::before,
  .cart_tel::after {
    width: 30px;
  }
  .cart_tel .txt {
    margin-bottom: 10px;
    font-size: 3rem;
  }
  .cart_tel .txt::before {
    width: 25px;
    height: 25px;
  }

  /*--------------------------------
   cart_head 
   --------------------------------*/
  #cart_head {
    padding: 50px 0 20px;
  }
  #cart_head .ttl {
    margin-bottom: 40px;
    font-size: 4rem;
  }
  #cart_head .flow li {
    width: calc(100% / 5);
    height: 50px;
    font-size: 12px;
    text-indent: 10px;
    text-align: center;
    white-space: nowrap;
    line-height: 1.2;
  }
  #cart_head .flow li:not(:last-child)::before {
    right: -10px;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 10px solid #fff;
    z-index: 1;
  }
  #cart_head .flow li:not(:last-child)::after {
    right: -8px;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    border-left: 8px solid #c6c6c6;
    z-index: 2;
  }
  #cart_head .flow li.active:not(:last-child)::after {
    border-left: 8px solid #87bcc3;
  }

  /*--------------------------------
   select 
   --------------------------------*/

  #select .slc_cont1 {
    flex-direction: column;
    gap: 100px;
  }
  #select .slc_cont1 .cart {
    margin-bottom: 0;
    width: 100%;
  }
  #select .cart .cart_h {
    font-size: 2.8rem;
  }
  #select .cart .cart_term {
    padding-left: calc(80px + 20px);
    margin-top: 20px;
  }
  #select .select_confirm .cart .cart_list li {
    padding: 15px 0;
  }
  #select .cart .cart_list li .img {
    width: 80px;
  }
  #select .cart .cart_list li .name {
    margin-left: 20px;
    font-size: 2rem;
  }
  #select .cart .cart_list li .delete {
    font-size: 1.6rem;
  }
  #select .slc_cont1 .similar {
    padding: 20px;
    width: 100%;
  }
  #select .similar .similar_list {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4%;
  }
  #select .similar .similar_list li {
    margin-top: 0;
    width: calc(50% - 2%);
  }
  #select .similar .similar_list li .name {
    margin-top: 10px;
  }
  #select .list .list_desc {
    margin: 150px 0 20px;
  }

  /*--------------------------------
   option 
   --------------------------------*/
  #option {
    margin-top: 70px;
  }
  #option .list_cont .category_s {
    margin-bottom: 60px;
  }
  #option .list_cont .cat_head_s .note {
    margin-left: 10px;
  }

  /*--------------------------------
   form 
   --------------------------------*/
  #form {
    margin-top: 70px;
  }
  #form .form_list > li {
    flex-direction: column;
  }

  #form .form_list > li .term {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    padding: 20px;
  }
  #form .form_list > li .box {
    padding: 20px;
    width: 100%;
  }
  #form .form_list > li .box > input {
    width: 100%;
    min-width: inherit;
  }
  #form .form_list > li .box.w100 * {
    width: 100%;
  }
  #form .form_list > li .box li {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  #form .form_list > li .box li:not(:last-child) {
    margin-bottom: 15px;
  }
  #form .form_list > li .box .box_time {
    width: 100%;
    display: flex;
    gap: 10px;
  }
  #form .form_list > li .box .box_time input[type="date"] {
    width: 60%;
  }
  #form .form_list > li .box .box_time .select_wrap {
    width: 40%;
  }
  #form .form_list > li .box textarea {
    height: 150px;
  }
  #form .form_agree {
    width: 100%;
    margin: 50px auto 0;
  }
  #form .form_agree li {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
  }
  #form .form_agree li input {
    position: relative;
    bottom: -3px;
    width: 16px;
    height: 16px;
  }
  #form .form_agree li input:checked::before {
    padding: 3px;
  }
  #form .form_agree li label {
    width: calc(100% - 26px);
  }
  #form .form_agree li span {
    padding-left: 28px;
  }

  /* confirm */
  #form.confirm .form_list > li .term {
    padding: 20px;
  }
  #form.confirm .form_list > li .box {
    padding: 20px;
  }
  #form.confirm .form_list > li .box li {
    flex-direction: row;
  }
  #form.confirm .form_list > li .box li:not(:first-child) {
    margin-top: 10px;
  }
  #form.confirm .cart_btn {
    flex-direction: column-reverse;
    gap: 10px;
  }

  /*--------------------------------
   complete 
   --------------------------------*/
  #complete {
    margin-top: 70px;
  }
}
