/*----------------------------------------------------------

setting

----------------------------------------------------------*/
/*----------------------------------------------------------

mixin

----------------------------------------------------------*/
.pc {
  display: block;
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

/* common_label  */
.common_label {
  background-color: #EFEFEF;
  padding: 36px 50px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .common_label {
    padding: 27px 35px;
  }
}
.common_label_container {
  max-width: 710px;
  width: 100%;
  margin-inline: auto;
}
.common_label_btnLists {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .common_label_btnLists {
    flex-direction: column;
  }
}
.common_label_btnList {
  width: 280px;
  height: 46px;
  max-width: 100%;
  display: flex;
  flex-direction: column-reverse;
}
@media only screen and (max-width: 768px) {
  .common_label_btnList {
    width: 360px;
    margin-inline: auto;
  }
}
.common_label_btnList:last-child {
  margin-left: 30px;
}
@media only screen and (max-width: 768px) {
  .common_label_btnList:last-child {
    margin-top: 25px;
    margin-left: 0;
    margin-inline: auto;
  }
}
.common_label_btnLabel {
  width: 90px;
  max-width: 100%;
  margin-left: 25%;
  height: 100%;
  position: relative;
  z-index: 2;
  aspect-ratio: 90/28;
  transition: all 0.3s ease 0s;
}
.common_label_btnLabel img {
  height: auto;
}
.common_label_btnLink {
  color: #0E9352;
  font-weight: 700;
  margin-top: -18px;
  background-color: #FFF;
  padding: 10px;
  display: block;
  transition: all 0.3s ease 0s;
}
.common_label_btnLink:hover {
  box-shadow: 0 2px 0 #0A6D3D;
  transform: translateY(2px);
}
.common_label_btnLink:hover + .common_label_btnLabel {
  transform: translateY(2px);
}
.common_label_btnLink::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-top: solid 1px #FFF;
  border-right: solid 1px #FFF;
  right: 23px;
  transform: rotate(135deg) translateY(-50%);
  transform-origin: top;
  top: 47%;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .common_label_btnLink::before {
    right: 18px;
  }
}
.common_label_btnLink::after {
  content: "";
  position: absolute;
  background: #0E9352;
  border-radius: 23px;
  width: 23px;
  height: 23px;
  right: 15px;
  transform: translateY(-50%);
  transform-origin: top;
  top: 50%;
  z-index: 0;
}
@media only screen and (max-width: 1024px) {
  .common_label_btnLink::after {
    right: 10px;
  }
}

.waitingService {
  margin-top: 100px;
}
@media only screen and (max-width: 768px) {
  .waitingService {
    margin-top: 60px;
  }
}
.waitingService_note {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-align: center;
  color: #0e9352;
  position: relative;
  margin-inline: auto;
}
@media only screen and (max-width: 768px) {
  .waitingService_note {
    font-size: 16px;
  }
}
.waitingService_note .number {
  font-size: 30px;
}
@media only screen and (max-width: 768px) {
  .waitingService_note .number {
    font-size: 20px;
  }
}
.waitingService_note::before, .waitingService_note::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: #0e9352;
}
@media only screen and (max-width: 768px) {
  .waitingService_note::before, .waitingService_note::after {
    width: 50px;
  }
}
.waitingService_note::before {
  position: absolute;
  bottom: 20px;
  left: -90px;
  rotate: 45deg;
}
@media only screen and (max-width: 768px) {
  .waitingService_note::before {
    bottom: 12px;
    left: -60px;
    rotate: 70deg;
  }
}
.waitingService_note::after {
  position: absolute;
  bottom: 20px;
  right: -90px;
  rotate: 135deg;
}
@media only screen and (max-width: 768px) {
  .waitingService_note::after {
    bottom: 12px;
    right: -60px;
    rotate: 110deg;
  }
}
.waitingService_container {
  margin-top: 20px;
  border-radius: 12px;
  border: 6px solid #0e9352;
}
@media only screen and (max-width: 768px) {
  .waitingService_container {
    border: 4px solid #0e9352;
  }
}
.waitingService_container.--small {
  width: min(100%, 940px);
  margin-inline: auto;
}
.waitingService_subtitle {
  font-weight: bold;
  font-size: 26px;
  letter-spacing: 0.2em;
  text-align: center;
  color: #ffffff;
  background-color: #0e9352;
  padding: 16px 16px 20px;
}
@media only screen and (max-width: 768px) {
  .waitingService_subtitle {
    font-size: 18px;
    letter-spacing: 0.1em;
  }
}
@media only screen and (max-width: 768px) {
  .waitingService_subtitle.sp_left {
    text-align: left;
  }
}
.waitingService_content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 40px 80px 50px;
}
@media screen and (max-width: 1000px) {
  .waitingService_content {
    flex-direction: column;
    padding: 40px 24px 50px;
  }
}
@media only screen and (max-width: 768px) {
  .waitingService_content {
    padding: 24px 24px 26px;
  }
}
.waitingService_body {
  width: min(100%, 740px);
}
@media only screen and (max-width: 768px) {
  .waitingService_body {
    width: 100%;
  }
}
.waitingService_text {
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.03em;
  line-height: 1.8;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .waitingService_text {
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
  }
}
.waitingService_text .comment {
  display: inline-block;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.03em;
  line-height: 1.92;
  color: #ffffff;
  background-color: #0e9352;
  border-radius: 100vh;
  padding: 10px 36px;
  margin-top: 20px;
  margin-right: 18px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .waitingService_text .comment {
    width: 100%;
    font-size: 16px;
    letter-spacing: 0.03em;
    line-height: 1.5625;
    text-align: center;
    padding: 12px 36px;
    margin-right: 0;
    margin-bottom: 18px;
  }
  .waitingService_text .comment::after {
    content: "";
    width: 72px;
    background: url("../../img/campaign/2024registration/contact_truck.webp") no-repeat center center/contain;
    position: absolute;
    top: 0%;
    right: 10px;
    translate: 0 -65%;
    aspect-ratio: 1;
  }
}
.waitingService_text .comment::before {
  content: "";
  display: block;
  width: 25px;
  height: 15px;
  background-color: #0e9352;
  -webkit-clip-path: polygon(65% 0, 0 0, 100% 100%);
          clip-path: polygon(65% 0, 0 0, 100% 100%);
  position: absolute;
  top: 96%;
  left: 18px;
}
@media only screen and (max-width: 768px) {
  .waitingService_text .comment::before {
    top: 90%;
  }
}
@media only screen and (max-width: 768px) {
  .waitingService_text.sp_center {
    max-width: 400px;
    margin-inline: auto;
  }
}
.waitingService_img {
  width: 220px;
}
@media only screen and (max-width: 768px) {
  .waitingService_img {
    display: none;
  }
}
.waitingService_footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6.734006734%;
  background-color: #eff7f2;
  border-radius: 0 0 12px 12px;
  padding: 20px 11.2794612795% 25px 24px;
}
@media screen and (max-width: 900px) {
  .waitingService_footer {
    padding: 16px 3.5377358491% 22px 24px;
    position: relative;
  }
}
@media only screen and (max-width: 768px) {
  .waitingService_footer {
    padding: 20px 16px;
  }
}
.waitingService_footer.--wide {
  padding-block: 70px;
}
@media only screen and (max-width: 768px) {
  .waitingService_footer.--wide {
    padding: 20px 16px;
  }
}
.waitingService_footer.--wide .waitingService_footer-img {
  width: 196px;
}
@media only screen and (max-width: 768px) {
  .waitingService_footer.--wide .waitingService_footer-img {
    width: 111px;
  }
}
.waitingService_footer.--wide .waitingService_footer-img img {
  width: 100%;
  bottom: -75px;
  height: 265px;
}
@media only screen and (max-width: 768px) {
  .waitingService_footer.--wide .waitingService_footer-img img {
    height: auto;
  }
}
.waitingService_footer-img {
  width: 157px;
  position: relative;
  align-self: flex-end;
}
@media only screen and (max-width: 768px) {
  .waitingService_footer-img {
    width: 111px;
    position: absolute;
    top: 0;
    left: 50%;
    translate: 60px -60%;
  }
}
.waitingService_footer-img img {
  width: 100%;
  position: absolute;
  bottom: -30px;
  left: 0;
}
@media only screen and (max-width: 768px) {
  .waitingService_footer-img img {
    width: 100%;
    position: static;
    bottom: 0;
  }
}
.waitingService_footer-btn::before {
  background: url("../../img/campaign/2024registration/icon_arrow-right-white.svg") no-repeat center center/contain;
}
.waitingService_phone {
  display: flex;
  align-items: center;
  gap: 26px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 8px;
  position: relative;
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  .waitingService_phone {
    background-color: #ffffff;
    border: 3px solid #0e9352;
    box-shadow: 0px 4px 0px 0px #0e9352;
    padding: 4px 24px 4px;
    padding-right: 12px;
    gap: 22px;
    margin-top: 0px;
    margin-inline: auto;
    pointer-events: auto;
    width: 100%;
    max-width: 360px;
    justify-content: space-between;
  }
}
@media screen and (max-width: 374px) {
  .waitingService_phone {
    padding: 10px 20px;
  }
}
.waitingService_phone::after {
  content: "";
  display: none;
  aspect-ratio: 1;
  background: url("../../img/campaign/2024registration/icon_arrow-right-green.svg") no-repeat center center/contain;
}
@media only screen and (max-width: 768px) {
  .waitingService_phone::after {
    width: 22px;
    display: block;
  }
}
.waitingService_phone.is-sp {
  display: none;
  visibility: hidden;
}
@media only screen and (max-width: 768px) {
  .waitingService_phone.is-sp {
    display: flex;
    visibility: visible;
  }
}
.waitingService_phone.is-pc {
  display: flex;
  visibility: visible;
}
@media only screen and (max-width: 768px) {
  .waitingService_phone.is-pc {
    display: none;
    visibility: hidden;
  }
}
.waitingService_phone-label {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.15em;
  color: #ffffff;
  background-color: #0e9352;
  border-radius: 100vh;
  padding: 3px 18px;
  position: absolute;
  top: 8px;
  left: 30px;
  translate: 0 -50%;
}
@media only screen and (max-width: 768px) {
  .waitingService_phone-label {
    font-size: 10px;
    padding: 3px 8px;
    top: 0;
    left: 44px;
  }
}
.waitingService_phone-label::before {
  content: "";
  display: block;
  width: 22px;
  height: 15px;
  background-color: #0e9352;
  -webkit-clip-path: polygon(50% 0, 0 0, 100% 100%);
          clip-path: polygon(50% 0, 0 0, 100% 100%);
  position: absolute;
  top: 74%;
  left: 2px;
}
@media only screen and (max-width: 768px) {
  .waitingService_phone-label::before {
    width: 10px;
    height: 8px;
    top: 90%;
    left: 6px;
    -webkit-clip-path: polygon(86% 0, 0 0, 100% 100%);
            clip-path: polygon(86% 0, 0 0, 100% 100%);
  }
}
.waitingService_phone-name {
  font-size: 15.68px;
  letter-spacing: 0.5em;
  font-weight: 500;
  line-height: 2;
  text-align: right;
  color: #0e9352;
}
@media only screen and (max-width: 768px) {
  .waitingService_phone-name {
    font-size: 11px;
    letter-spacing: 0.07em;
    line-height: 1.5;
  }
}
.waitingService_phone-text {
  display: flex;
  align-items: center;
  gap: 4px;
}
.waitingService_phone-text .icon {
  width: 34px;
  flex-shrink: 0;
}
@media only screen and (max-width: 768px) {
  .waitingService_phone-text .icon {
    width: 20px;
  }
}
.waitingService_phone-text .icon img {
  width: 100%;
  height: 100%;
}
.waitingService_phone-text .number {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 60px;
  letter-spacing: -0.01em;
  line-height: 1;
  color: #0e9352;
}
@media only screen and (max-width: 768px) {
  .waitingService_phone-text .number {
    font-size: 32px;
  }
}
@media screen and (max-width: 374px) {
  .waitingService_phone-text .number {
    font-size: 24px;
  }
}
.waitingService_phone-time {
  font-size: 18px;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .waitingService_phone-time {
    font-size: 11px;
    letter-spacing: -0.07em;
    margin-top: 0px;
  }
}
.waitingService_btn-wrap {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .waitingService_btn-wrap {
    margin-top: 60px;
  }
}/*# sourceMappingURL=waitingService.css.map */