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

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

.purchase_flow_wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 4%;
  .purchase_flow_box {
    width: 60%;
    > dt {
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: bold;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--base-color01);
      margin-bottom: 2rem;
      display: flex;
      align-items: center;
      span {
        font-size: clamp(1.4rem, 2vw, 1.6rem);
        font-weight: bold;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--base-color01);
        padding: 5px 10px 7px;
        line-height: 1;
        margin-right: 2rem;
        position: relative;
      }
      span::after {
        content: "";
        display: block;
        width: 0;
        height: 0;
        border-style: solid;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
        border-left: 8px solid var(--base-color01);
        border-right: 0;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translate(100%, -50%);
      }
    }
  }
  .purchase_flow_img {
    width: 36%;
  }
}

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

.store_address {
  background: #e3e0f6;
  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;
      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: 0.5rem;
        line-height: 1;
      }
    }
  }
  .phone_num {
    a {
      color: #fff;
      font-size: clamp(2.4rem, 4vw, 3.4rem);
      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.7rem) !important;
      height: auto;
      margin-top: 4px;
      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(#4545b0, 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
======================== */
