@charset "utf-8";
/* CSS Document */
.reserve_flow_a .titlebox h2 {
  line-height: 1;
}

.flow_h .inner {
  max-width: 1280px;
  margin: 0 auto;
}

.flow_h .item {
  display: grid;
  grid-template-columns: 38% 72px 1fr;
  gap: clamp(20px, 4vw, 40px);
  position: relative;
  width: 100%;
  padding-bottom: clamp(54px, 7vw, 90px);
}

.flow_h .item:last-child {
  padding-bottom: 0;
}

.flow_h .col-num {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.flow_h .col-num::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 78px;
  bottom: 0;
  transform: translateX(-50%);
  border-left: 1px dotted rgba(74, 71, 69, .45);
  pointer-events: none;
}

.flow_h .item:last-child .col-num::before {
  display: none;
}

.flow_h .circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #4A4745;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none;
}

.flow_h .circle p {
  margin: 0;
  line-height: 1.1;
  letter-spacing: .08em;
  color: #fff;
  font-size: 12px;
}

.flow_h .circle p:last-child {
  font-size: 16px;
}

.flow_h .imgbox {
  width: 100%;
  aspect-ratio: 38 / 67;
  height: auto;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
}

.flow_h .imgbox img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.flow_h .txtbox {
  margin-top: clamp(18px, 3vw, 34px);
}

.flow_h h3 {
  margin-bottom: clamp(20px, 3vw, 30px);
  color: #4A4745;
  letter-spacing: .08em;
  font-weight: 500;
}

.flow_h .txtbox p {
  letter-spacing: .08em;
}

.flow_h .more_btn {
  justify-content: flex-start;
}

.flow_h .more_btn a {
  min-width: 280px;
  height: 60px;
}

@media screen and (max-width: 768px) {
  .flow_h .item {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 560px;
    margin: 0 auto;
    grid-template-areas:
      "col"
      "imgbox"
      "txtbox";
  }

  .flow_h .col-num {
    grid-area: col;
    justify-content: flex-start;
  }

  .flow_h .imgbox {
    grid-area: imgbox;
  }

  .flow_h .txtbox {
    grid-area: txtbox;
    margin-top: 0;
      max-width: 400px;
  }

  .flow_h .col-num::before {
    display: none;
  }

  .flow_h .more_btn {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 576px) {
  .flow_h .item {
    padding-bottom: 56px;
  }

  .flow_h .circle {
    width: 58px;
    height: 58px;
  }

  .flow_h h3 {
    margin-bottom: 16px;
  }

  .flow_h .txtbox p br {
    display: none;
  }

  .flow_h .more_btn,
  .flow_h .more_btn a {
    width: 100%;
  }

  .flow_h .more_btn a {
    min-width: auto;
  }
}
.cancel_policy_a .policy_wrap {
  max-width: 1280px;
  margin: 0 auto;
}

.cancel_policy_a .titlebox {
  position: relative;
  z-index: 2;
  margin-bottom: clamp(-70px, -3vw, -50px);
}

.cancel_policy_a .titlebox h2 {
  line-height: 1;
}

.cancel_policy_a .policy_box {
  background: #E7DED1;
  border-radius: 14px;
  padding:
    clamp(70px, 7vw, 90px)
    clamp(20px, 8vw, 180px)
    clamp(40px, 5vw, 60px);
}

.cancel_policy_a .policy_box p {
  letter-spacing: .08em;
}

@media screen and (max-width: 576px) {
 

  .cancel_policy_a .policy_box {
    padding:
      80px
      20px
      34px;
    border-radius: 12px;
  }
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

