p.lead {
  max-width: 1000px;
  margin: 0 auto;
  width: 90%;
}
.anchor-area {
  margin-top: 80px;
  background-color: var(--light-blue);
  padding: 50px 0;
}
@media screen and (max-width: 767px) {
  .anchor-area {
    padding: 30px 0;
  }
}
.anchor-area ul.anchor-list {
  max-width: 1000px;
  margin: 0 auto;
  width: 90%;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px 40px;
}
@media screen and (max-width: 1040px) {
  .anchor-area ul.anchor-list {
    gap: 20px;
    align-items: flex-start;
  }
}
.anchor-area ul.anchor-list li {
  width: calc((100% - 120px) / 3);
}
@media screen and (max-width: 1040px) {
  .anchor-area ul.anchor-list li {
    width: calc((100% - 20px) / 2);
  }
}
.anchor-area ul.anchor-list li:nth-child(4) a {
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .anchor-area ul.anchor-list li:nth-child(4) a {
    font-size: 16px;
  }
}
.anchor-area ul.anchor-list li a {
  color: var(--blue);
  font-size: 16px;
  border-bottom: 1px solid var(--light-gray);
  display: block;
  padding-bottom: 10px;
  position: relative;
  padding-right: 25px;
  cursor: pointer !important;
  transition: border 0.3s;
  line-height: 1.7;
}
.anchor-area ul.anchor-list li a:after {
  content: "";
  position: absolute;
  pointer-events: none;
  bottom: 17px;
  right: 0;
  width: 12px;
  height: 12px;
  background: url(/common/img/icn_arrow.svg) no-repeat center/12px;
  rotate: 90deg;
}
@media screen and (max-width: 767px) {
  .anchor-area ul.anchor-list li a:after {
    bottom: auto;
    top: 10px;
  }
}
@media (hover) {
  .anchor-area ul.anchor-list li a:hover {
    border-color: var(--blue);
  }
}

section.contact {
  max-width: 1000px;
  margin: 140px auto 0;
  width: 90%;
}
section.contact > p {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  section.contact > p {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  section.contact {
    margin-top: 80px;
  }
}
section.contact .box-wrapper {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  section.contact .box-wrapper {
    margin-top: 20px;
    flex-direction: column;
  }
}
section.contact .box-wrapper .tel-box {
  width: calc((100% - 20px) / 2);
  padding: 35px 40px 30px;
  background-color: var(--light-blue);
}
@media screen and (max-width: 767px) {
  section.contact .box-wrapper .tel-box {
    width: 100%;
    padding: 30px 5%;
  }
}
section.contact .box-wrapper .tel-box ul {
  margin-top: 10px;
}
section.contact .box-wrapper .tel-box ul li {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
section.contact .box-wrapper .tel-box ul li span {
  font-size: 30px;
}
@media screen and (max-width: 767px) {
  section.contact .box-wrapper .tel-box ul li span {
    font-size: 26px;
  }
}
section.contact .box-wrapper .tel-box dl {
  margin-top: 20px;
}
section.contact .box-wrapper .tel-box dl dt {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
section.contact .box-wrapper .tel-box dl dd {
  font-size: 30px;
  line-height: 1.5;
  font-weight: 400;
}
section.contact .box-wrapper .form-box {
  width: 100%;
  padding: 35px 40px 30px;
  background-color: var(--light-blue);
}
@media screen and (max-width: 767px) {
  section.contact .box-wrapper .form-box {
    padding: 30px 5%;
  }
}
section.contact .box-wrapper .form-box h3 {
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 5px;
  display: flex;
  justify-content: center;
  gap: 15px;
}
section.contact .box-wrapper .form-box h3 .icn-mail {
  width: 28px;
}
section.contact .box-wrapper .form-box h3 .icn-tel {
  width: 23px;
}
@media screen and (max-width: 767px) {
  section.contact .box-wrapper .form-box h3 {
    font-size: 18px;
  }
}
section.contact .box-wrapper a.btn-cta {
  margin: 0 auto;
  line-height: 1.5;
  max-width: 380px;
}
@media screen and (max-width: 500px) {
  section.contact .box-wrapper a.btn-cta {
    padding: 0 60px 0 35px;
  }
}
section.contact a.txt-link {
  padding-right: 30px;
  position: relative;
  margin-top: 20px;
  display: inline-block;
}
section.contact a.txt-link:before {
  content: "";
  position: absolute;
  top: 15px;
  right: 10px;
  translate: 0 -50%;
  width: 10px;
  height: 10px;
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(/common/img/icn_arrow.svg);
  background: var(--blue);
}
section.contact a.txt-link2 {
  width: fit-content;
  display: block;
  border-bottom: 1px solid var(--blue);
  color: var(--blue);
  font-size: 20px;
  margin: 30px auto 0;
  padding: 0 50px 12px 0;
  position: relative;
  transition: border-color 0.3s;
}
@media screen and (max-width: 767px) {
  section.contact a.txt-link2 {
    margin-top: 20px;
    font-size: 18px;
  }
}
@media (hover) {
  section.contact a.txt-link2:hover {
    border-color: transparent;
  }
}
section.contact a.txt-link2[target=_blank]:before {
  rotate: -45deg;
}
section.contact a.txt-link2:before {
  content: "";
  position: absolute;
  top: 20px;
  right: 10px;
  translate: 0 -50%;
  width: 10px;
  height: 10px;
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(/common/img/icn_arrow.svg);
  background: var(--blue);
}
section.contact a.txt-link2:after {
  content: "";
  position: absolute;
  top: 20px;
  right: 0;
  translate: 0 -50%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--blue);
}

#contact05 .box-wrapper {
  margin-top: 30px;
}