@charset "utf-8";
@import url("root.css");

/***************************************
-------------- PURCHASE --------------
***************************************/

.purchase_flow_wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 4%;
  border: 1px solid var(--base-color01);
  border-radius: 5px;
  padding: 2%;
  position: relative;
}
.purchase_flow_wrap::after {
  display: block;
  content: "";
  background-image: url("../img/svg/icn_arw_down_rd.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -4rem;
  left: 50%;
  right: 50%;
  width: 40px;
  height: auto;
  aspect-ratio: 40/26;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.purchase_flow_wrap.last::after{
	display: none;
}

.purchase_flow_box {
  width: 60%;
}
.purchase_flow_box dt {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: bold;
  padding-bottom: 1rem;
  padding-left: 70px;
  border-bottom: 1px solid var(--base-color01);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}
.purchase_flow_box dt span {
  display: inline-block;
  position: absolute;
  top: -6px;
  left: 2%;
  margin: 0;
  padding: 10px 0 7px;
  z-index: 2;
  width: 60px;
  text-align: center;
  color: #fff;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  line-height: 1.0;
  background: var(--base-color01);
  border-radius: 2px 0 0 0;
}
.purchase_flow_box dt span::before {
  position: absolute;
  content: '';
  top: 0;
  right: -5px;
  border: none;
  border-bottom: solid 6px #d07676;
  border-right: solid 5px transparent;
}
.purchase_flow_box dt span:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  height: 0;
  width: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 10px solid var(--base-color01);
}
.purchase_flow_box dt span strong {
  display: block;
  font-size: 160%;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .purchase_flow_wrap::after {
    bottom: -3rem;
    width: 30px;
    aspect-ratio: 30/20;
  }
  .purchase_flow_wrap {
    padding-bottom: 3%;
  }
}
@media screen and (max-width: 599px) {
  .purchase_flow_box dt {
    padding-left: 0px;
    margin-bottom: 1rem;
    justify-content: center;
  }
}
.purchase_flow_img {
  width: 36%;
}

.purchase_flow_wrap:not(:last-of-type) {
  margin-bottom: clamp(25px, 5vw, 50px);
}

.store_address {
  background: var(--base-bgcolor01);
  width: 100%;
  margin-top: clamp(10px, 2vw, 20px);
  padding: clamp(10px, 2vw, 20px);
  border-radius: 4px;
  display: flex;
  flex-wrap: wrap;
  justify-content:space-between;
  > p {
    width: 100%;
    text-align: center;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: bold;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--base-color01);
    margin-bottom: 2rem;
  }
  .phone_num,
  .form_link {
    width: 100%;
    margin: 0;
    a {
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      line-height: 1.0;
      font-weight: 600;
      width: 100%;
      height: clamp(60px,20vw, 80px);
      margin: 0;
      background: #fff;
      border-radius: 8px;
      padding: 5px 10px 7px;
      span {
        text-align: center;
        display: flex;
      }
      span:nth-of-type(2) {
        font-size: clamp(1.2rem, 2vw, 1.6rem);
        margin-top: .5rem;
        line-height: 1.0;
      }
    }
  }
  .phone_num {
    a {
      color: #fff;
      font-size: clamp(2.4rem, 4vw, 3.6rem);
      background: linear-gradient(#c80000,#990000);
    }
    a::before {
      content: none;
    }
    a span:nth-of-type(1)::before {
      flex-shrink: 0;
      content: "";
      display: block;
      background: url(../img/svg/icn_tel_wh.svg) no-repeat;
      background-position: center center;
      background-size: contain;
      width: clamp(2.4rem, 4vw, 3.6rem)!important;
      height: auto;
      margin-right: 10px;
      aspect-ratio: 31/25;
      object-fit: cover;
      flex-shrink: 0;
    }
    
  }
  .form_link {
    margin-top: clamp(10px, 2vw, 20px);
    a {
      color: #fff;
      font-size: clamp(2rem, 3vw, 2.8rem);
      background: linear-gradient(#7d0000,var(--base-color01));
    }
    a span:nth-of-type(1)::before {
      content: "";
      display: block;
      background: url(../img/svg/icn_mail_wh.svg) no-repeat;
      background-position: center center;
      background-size: contain;
      width: clamp(2.2rem, 3.5vw, 3rem);
      height: auto;
      margin-right: 10px;
      aspect-ratio: 1/1;
      object-fit: cover;
      flex-shrink: 0;
    }
  }
}

@media (min-width: 600px) {
  a[href^="tel:"] span {
      pointer-events: none;
  }
}

@media (max-width: 599.98px) {
  .purchase_flow_wrap {
    .purchase_flow_box {
      width: 100%;
      order: 2;
    }
    .purchase_flow_img {
      width: 100%;
      order: 1;
      margin-bottom: clamp(10px, 2vw, 20px);
    }
  }
  .phone_num,
  .form_link {
    p { font-size: clamp(1.4rem, 2vw, 1.6rem); }
  }
}


.tips_wrap {
  display: block;
  width: 100%;
  background: #fafafa !important;
  padding: min(10px, 1.5%) min(20px, 2.5%);
  border: 4px double var(--base-color01);
}

.tips {
  width: 100%;
}

.tips dt {
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  color: #333;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 2px dotted #ddd;
  margin-bottom: 1rem;

}
.tips dt::before {
  content: "";
  display: block;
  background: url(../img/svg/icn_check_rd.svg) no-repeat;
  background-position: top center;
  background-size: contain;
  width: 20px;
  height: auto;
  margin-top: 3px;
  margin-right: 10px;
  aspect-ratio: 86/75;
  object-fit: cover;
}

.tips dd {
  font-size: 18px;
  margin-left: 20px;
  line-height: 1.5;
}

.tips dd::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--base-color01);
  margin-right: 10px;
  margin-left: -20px;
}


.seizen_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 4%;
  margin-bottom: clamp(15px, 3vw, 30px);
  .seizen_txt {
    width: 60%;
  }
  .seizen_img {
    width: 36%;
  }
}
@media (max-width: 599.98px) {
  .seizen_wrap {
    .seizen_txt {
      width: 100%;
      order: 2;
    }
    .seizen_img {
      width: 100%;
      order: 1;
      margin-bottom: clamp(10px, 2vw, 20px);
    }
  }
}



/* =======================
  PC
======================== */
@media screen and (min-width: 1200px) {
}

/* =======================
  TABLET
======================== */
@media screen and (max-width: 1199px) {
}

/* =======================
  SP
======================== */



