@charset "UTF-8";
/* --------------------------------
  under-ttl
--------------------------------*/
.ud-ttl {
  font-size: var(--fs-32);
  letter-spacing: 0.3em;
  font-family: var(--font-shippori);
}

/* --------------------------------
  contanct
--------------------------------*/
section.contanct {
  background: var(--color-pink-03);
}
section.contanct p {
  font-size: var(--fs-25);
  letter-spacing: 0.2em;
  font-weight: var(--fw-bold);
  color: var(--color-white);
  text-align: center;
  padding-bottom: 16px;
}
section.contanct .cmn-cnt-img {
  max-width: 740px;
  background-color: var(--color-white);
  border-radius: 30px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 140px;
  pointer-events: none;
  cursor: default;
}
section.contanct .cmn-cnt-img img {
  max-width: 400px;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  section.contanct p {
    font-size: var(--fs-18);
  }
  section.contanct .cmn-cnt-img {
    max-width: 600px;
    padding: 20px 60px;
  }
}
@media screen and (max-width: 600px) {
  section.contanct .cmn-cnt-img {
    max-width: 600px;
    padding: 20px 40px;
    pointer-events: auto;
    cursor: pointer;
  }
}

/* --------------------------------
  flow（ご利用の流れ）- 共通
  service.html / recruit.html で使用
--------------------------------*/
#flow {
  position: relative;
  background-color: #f4f4f1;
  z-index: 0;
}
#flow .flow-inr {
  position: relative;
}
.flow-step {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 64px;
  padding: 40px 0;
  border-bottom: 1px solid var(--color-text);
  align-items: flex-start;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}
.flow-step:last-child {
  border-bottom: none;
}
.flow-step__num img {
  width: 146px;
  height: auto;
}
.flow-step__body {
  flex: 1;
}
.flow-step__ttl {
  margin: 0 0 16px;
  font-size: var(--fs-22);
  font-weight: var(--fw-bold);
  letter-spacing: 0.2em;
}
.flow-step__txt {
  margin: 0 0 16px;
}
.flow-step__point-label {
  display: block;
  width: fit-content;
  padding: 8px 12px;
  font-size: var(--fs-18);
  letter-spacing: 0.2em;
  color: var(--color-text);
  line-height: 1;
  font-weight: var(--fw-bold);
  border: 1px solid var(--color-text);
  margin-bottom: 16px;
}
#flow .flower-img-02 {
  position: absolute;
  top: 50%;
  transform: translateX(80%);
  right: 0;
  z-index: -1;
}
#flow .flower-img-03 {
  position: absolute;
  top: 40%;
  left: 0;
  z-index: -1;
  transform: translate(-100%, 50%);
}
@media screen and (max-width: 960px) {
  .flow-step {
    flex-direction: column;
    gap: 16px;
    padding: 32px 0;
    max-width: 640px;
  }
  .flow-step__num {
    margin-left: auto;
    margin-right: auto;
  }
  .flow-step__num img {
    width: 100px;
  }
  .flow-step__ttl {
    font-size: var(--fs-18);
    text-align: center;
  }
  .flow-step__point-label {
    margin-left: auto;
    margin-right: auto;
  }

  #flow .flower-img-02 {
    top: 60%;
    transform: translateX(50%);
  }
  #flow .flower-img-03 {
    transform: translate(-50%, -50%);
    top: 0;
  }
}
@media screen and (max-width: 600px) {
  .flow-step__num img {
    width: 80px;
  }
  .flow-step {
    gap: 12px;
  }
  .flow-step__txt,
  .flow-step__point-label {
    margin-bottom: 12px;
  }
}
