/* ========= */
/* ABOUT */
/* ========= */

/* lead */
.about .lead .imgbox {
  margin-bottom: 30px;
}

.about .lead .txtbox {
  display: flex;
}

.about .lead .txtbox > div:first-child {
  width: 40%;
}

.about .lead .txtbox > div:last-child {
  width: 60%;
}

/* profile */

.about .profile {
  background: var(--main-light-grey-color);
}

.about .profile dl {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid #000;
  padding: 20px;
}

.about .profile dl:first-child {
  border-top: 1px solid #000;
}

.about .profile dl dt {
  width: 30%;
  min-width: 200px;
}

.about .profile dl dd {
  width: 70%;
}

/* CSR */

/* ========= */
/* SERVICE */
/* ========= */

.service .system .txtbox {
  background: var(--main-light-grey-color);
  border-radius: 30px;
  padding: 40px;
}

.service .system .cards .card {
  position: relative;
  padding-bottom: 100px;
  margin-bottom: 60px;
}

.service .system .cards .card .card_txtbox {
  background: #fff;
  padding: 30px;
  width: 45vw;
}

.service .system .cards .card:nth-child(odd) {
  background: linear-gradient(#fff 0 10%, transparent 10% 95%, #fff 95% 100%),
    linear-gradient(to right, var(--main-color), var(--main-light-color));
  padding-right: 3vw;
}

.service .system .cards .card:nth-child(even) {
  background: linear-gradient(#fff 0 10%, transparent 10% 95%, #fff 95% 100%),
    linear-gradient(to left, var(--main-color), var(--main-light-color));
  padding-left: 3vw;
}

.service .system .cards .card:nth-child(odd) .card_txtbox {
  position: absolute;
  left: 0;
  bottom: 0;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-top: 2px solid var(--main-color);
  border-right: 2px solid var(--main-color);
  border-bottom: 2px solid var(--main-color);
}

.service .system .cards .card:nth-child(even) .card_txtbox {
  position: absolute;
  right: 0;
  bottom: 0;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border-top: 2px solid var(--main-color);
  border-left: 2px solid var(--main-color);
  border-bottom: 2px solid var(--main-color);
}

.service .system .cards .card .card_imgbox {
  width: 84vw;
  border-radius: 20px;
  overflow: hidden;
}

.service .system .cards .card:nth-child(odd) .card_imgbox {
  margin-left: auto;
}

.service .info {
  background: var(--main-light-grey-color);
}

.service .info .section_ttl,
.service .chart .section_ttl {
  font-family: var(--font-family-2);
  font-size: 120px;
  font-style: italic;
  text-transform: capitalize;
  color: var(--main-color);
  margin-bottom: 30px;
}

.service .info .inner,
.service .chart .inner {
  max-width: 1200px;
}

.service .info .cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.service .info .cards .card {
  width: calc(calc(100% / 3) - 15px);
  background: #fff;
  aspect-ratio: 1/1;
  padding: 10px;
  border-radius: 20px;
  box-shadow: var(--box-shadow-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.service .info .cards .card .card_img {
  width: 40%;
  margin: 0 auto;
}

.service .info .cards .card .card_txtbox {
  color: var(--main-color);
  text-align: center;
  font-family: var(--font-family-2);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service .info .cards .card .card_txtbox .ttl {
  font-size: 24px;
}

.service .info .cards .card .card_txtbox .num {
  font-size: 20px;
  height: 60px;
  vertical-align: middle;
}

.service .info .cards .card .card_txtbox .num span:first-child {
  font-size: 80px;
  font-family: var(--font-family-4);
  font-weight: 400;
  line-height: 1;
}

.service .info .cards .card.gender .card_txtbox .num {
  display: flex;
  gap: 20px;
  height: auto;
}

.service .info .cards .card.gender .card_txtbox .num p br ~ span:last-child {
  position: relative;
  top: -35px;
}

/* Chart */

.service .chart_ttl {
  font-size: 18px;
  font-weight: 600;
}

.service .chart .chart-occupation .stat,
.service .chart .chart-occupation .label {
  display: flex;
  align-items: flex-end;
  justify-content: space-evenly;
  gap: 20px;
}

.service .chart .chart-occupation,
.service .chart .chart-transpo {
  background: #eaf6ff;
  padding: 30px;
}

.service .chart .chart-occupation {
  margin-bottom: 100px;
}

.service .chart .chart-occupation .stat {
  height: 400px;
  padding: 0 30px;
  border-bottom: 1px solid #000;
  margin-bottom: 20px;
}

.service .chart .chart-occupation .stat div {
  background-image: linear-gradient(var(--main-color), var(--main-dark-color));
  width: 20%;
  max-width: 200px;
}

.service .chart .chart-occupation .stat div:nth-child(1) {
  height: 24%;
}

.service .chart .chart-occupation .stat div:nth-child(2) {
  height: 4%;
}

.service .chart .chart-occupation .stat div:nth-child(3) {
  height: 22%;
}

.service .chart .chart-occupation .stat div:nth-child(4) {
  height: 50%;
}

.service .chart .chart-occupation .label p {
  text-align: center;
  width: 20%;
  max-width: 200px;
}

.service .chart .chart-occupation .label p span {
  font-family: var(--font-family-4);
  color: var(--main-color);
  font-size: 50px;
}

/* chart-transpo */

.service .chart .chart-transpo .chart_ttl {
  margin-bottom: 60px;
}

.service .chart .chart-transpo .label,
.service .chart .chart-transpo .stat {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

.service .chart .chart-transpo .stat {
  height: 200px;
}

.service .chart .chart-transpo .stat div {
  height: 100%;
}

.service .chart .chart-transpo .stat div:nth-child(1) {
  background-image: linear-gradient(
    to right,
    rgba(0, 71, 115, 1),
    rgba(217, 210, 0, 1)
  );
}

.service .chart .chart-transpo .stat div:nth-child(2) {
  background-image: linear-gradient(
    to right,
    rgba(0, 71, 115, 1),
    rgba(217, 0, 0, 1)
  );
}

.service .chart .chart-transpo .stat div:nth-child(3) {
  background-image: linear-gradient(
    to right,
    rgba(0, 71, 115, 1),
    rgba(101, 217, 0, 1)
  );
}

.service .chart .chart-transpo .stat div:nth-child(4) {
  background-image: linear-gradient(
    to right,
    rgba(0, 71, 115, 1),
    rgba(0, 134, 217, 1)
  );
}
.service .chart .chart-transpo .label {
  width: 100%;
}

.service .chart .chart-transpo .label p {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

.service .chart .chart-transpo .stat div:nth-child(1),
.service .chart .chart-transpo .label div:nth-child(1) {
  width: 10%;
}

.service .chart .chart-transpo .stat div:nth-child(2),
.service .chart .chart-transpo .label div:nth-child(2) {
  width: 15%;
}

.service .chart .chart-transpo .stat div:nth-child(3),
.service .chart .chart-transpo .label div:nth-child(3) {
  width: 20%;
}

.service .chart .chart-transpo .stat div:nth-child(4),
.service .chart .chart-transpo .label div:nth-child(4) {
  width: 55%;
}

.service .chart .chart-transpo .label {
  height: 240px;
}

.service .chart .chart-transpo .label div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.service .chart .chart-transpo .label p {
  text-align: center;
  margin-bottom: 20px;
  height: 120px;
}

.service .chart .chart-transpo .label p span {
  font-size: 16px;
}

.service .chart .chart-transpo .label p span.text-lg {
  font-family: var(--font-family-4);
  color: var(--main-color);
  font-size: 50px;
}

.service .chart .chart-transpo .label div .imgbox {
  width: 70%;
  max-width: 200px;
  margin: 0 auto;
  max-height: 100px;
}

.service .chart .chart-transpo .label div .imgbox img {
  object-fit: contain;
  object-position: center bottom;
}

.service .chart .chart-transpo .label div:nth-child(2) .imgbox {
  width: 45%;
}

/* ========= */
/* RECRUIT */
/* ========= */
.recruit .lead .flexbox {
  display: flex;
}

.recruit .lead .flexbox .txtbox,
.recruit .lead .flexbox .imgbox {
  width: 50%;
}

.recruit .requirements {
  background: var(--main-light-color);
}

.recruit .lead .flexbox .txtbox {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 30px;
}

.recruit .requirements dl {
  display: flex;
  gap: 20px;
  padding: 20px;
  border-bottom: 1px solid #000;
}

.recruit .requirements dl:first-child {
  border-top: 1px solid #000;
}

.recruit .requirements dl dt {
  width: 30%;
  min-width: 200px;
  color: var(--main-color);
}

.recruit .requirements dl dd {
  width: 70%;
}

.recruit .requirements dl dd .sp {
  display: none;
}

/* ========= */
/* FAQ */
/* ========= */
.faq {
  background: var(--main-light-grey-color);
}

.faq .accordions .accordion {
  border-bottom: 1px solid var(--main-grey-color);
  color: var(--main-color);
  position: relative;
}

.faq .accordions .accordion:first-child {
  border-top: 1px solid var(--main-grey-color);
}

.faq .accordions .accordion::before,
.faq .accordions .accordion::after {
  content: "";
  position: absolute;
  top: 35px;
  right: 10px;
  width: 20px;
  height: 2px;
  background: var(--main-color);
  transform: translate(-50%, -50%);
  transition: 0.6s;
}

.faq .accordions .accordion::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion.is-open::after {
  opacity: 0;
}

.faq .accordions .accordion .accordion_q,
.faq .accordions .accordion .accordion_a {
  padding: 20px;
  padding-right: 50px;
  display: flex;
  gap: 10px;
  color: #635649;
}

.faq .accordions .accordion .accordion_a {
  padding-top: 0;
}

.faq .accordions .accordion .accordion_q::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: url(../../img/faq/q.png) no-repeat;
  background-size: contain;
  background-position: center;
}

.faq .accordions .accordion .accordion_a::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background: url(../../img/faq/a.png) no-repeat;
  background-size: contain;
  background-position: center;
}

/* ========= */
/* INTERVIEW */
/* ========= */

.interview .content-box {
  margin-bottom: 60px;
}

.interview .ttl {
  position: relative;
  width: fit-content;
  padding-bottom: 20px;
}

.interview .ttl::after {
  content: "";
  display: flex;
  width: 40px;
  height: 2px;
  background: var(--main-color);
  position: absolute;
  left: 0;
  bottom: 0;
}

.interview .cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.interview .cards .card {
  width: 48%;
  font-weight: 700;
}

.interview .cards .card a {
  width: 100%;
  height: 100%;
}

.interview .cards .card a .card_name {
  font-size: 18px;
  color: #000;
}

.interview .cards .card a .card_desc {
  color: #000;
}

.interview .cards .card .card_department {
  color: var(--main-color);
  border-radius: 100vw;
  padding: 4px 10px;
  border: 1px solid var(--main-color);
  width: fit-content;
}

.two-categories {
  display: flex;
  gap: 20px;
}

.two-categories > div {
  width: 48%;
}

.two-categories > div .cards .card {
  width: 100%;
}

/* interview detail */
.interview-details section p {
  white-space: pre-line;
}

.interview-details .lead .department {
  border: 1px solid var(--main-color);
  padding: 6px 15px;
  border-radius: 100vw;
  color: var(--main-color);
  font-size: 20px;
  width: fit-content;
  margin-bottom: 30px;
}

.interview-details .lead .section_ttl {
  margin-bottom: 30px;
}

.interview-details .lead .imgbox {
  margin-bottom: 30px;
}

.interview-details .lead .name {
  padding-left: 30px;
  font-size: 40px;
  color: var(--main-dark-color);
}

.interview-details .ttl-custom {
  font-size: var(--text-h3);
  color: var(--main-dark-color);
  padding-bottom: 20px;
  border-bottom: 3px solid var(--main-light-grey-color);
  margin-bottom: 30px;
  position: relative;
}

.interview-details .ttl-custom::before {
  content: "";
  display: flex;
  height: 3px;
  width: 50px;
  background: var(--main-color);
  position: absolute;
  left: 0;
  bottom: -3px;
}

.interview-details .section-01 .txtbox ul li,
.interview-details .section-02 .txtbox ul li,
.interview-details .section-03 .txtbox ul li {
  display: flex;
  gap: 20px;
}

.interview-details .section-01 .txtbox ul li:not(:last-child),
.interview-details .section-02 .txtbox ul li:not(:last-child),
.interview-details .section-03 .txtbox ul li:not(:last-child) {
  margin-bottom: 20px;
}

.interview-details .section-01 .txtbox ul li::before,
.interview-details .section-02 .txtbox ul li::before,
.interview-details .section-03 .txtbox ul li::before {
  width: 80px;
  min-width: 80px;
  max-width: 80px;
  display: block;
}

.interview-details .section-01 .txtbox ul li:nth-child(odd)::before,
.interview-details .section-02 .txtbox ul li:nth-child(odd)::before {
  content: "Y・M:";
}
.interview-details .section-03 .txtbox ul li:nth-child(odd)::before {
  content: "H・S:";
}

.interview-details .section-03 .txtbox ul li:nth-child(even)::before {
  content: "Y・M:";
}
.interview-details .section-01 .txtbox ul li:nth-child(even)::before,
.interview-details .section-02 .txtbox ul li:nth-child(even)::before {
  content: "H・S:";
}

.interview-details .imgbox--flex {
  margin: 0 auto;
  display: flex;
  gap: 20px;
}

.interview-details .imgbox--flex > div {
  width: 50%;
  object-fit: cover;
}

.interview-details .schedule {
  background: var(--main-light-color);
}

.interview-details .schedule .flex-schedules {
  display: flex;
  gap: 20px;
}

.interview-details .schedule .flex-schedules .schedule-block {
  width: 50%;
}

.interview-details .schedule dl {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.interview-details .schedule dl:not(:last-child) {
  margin-bottom: 30px;
}

.interview-details .schedule dl dt {
  width: 80px;
  font-size: 24px;
  font-weight: 600;
  padding-top: 20px;
  text-align: right;
}

.interview-details .schedule dl dd {
  width: calc(100% - 110px);
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.interview-details .schedule dl dd::before {
  content: "";
  display: block;
  width: 30px;
  aspect-ratio: 1/1;
  background: var(--main-color);
  border-radius: 50%;
  position: absolute;
  left: -30px;
  top: 20px;
}

.interview-details .schedule dl:not(:last-child) dd::after {
  content: "";
  display: block;
  width: 10px;
  height: calc(100% + 30px);
  background: var(--main-color);
  position: absolute;
  left: -15px;
  transform: translateX(-50%);
  top: 20px;
}

.interview-details .schedule dl dd .ttl {
  font-size: 20px;
  font-weight: 600;
}

.contact-confirmation .check-icon {
  object-fit: contain;
  display: block;
  max-width: 200px;
  margin: 0 auto 60px;
}

/* recommended-policy */

.company article dl.flexbox,
.recommended-policy article dl.flexbox {
  display: flex;
  gap: 60px;
}

.recommended-policy article ul.disc,
.recommended-policy article ol {
  padding-left: 32px;
}

.recommended-policy article ul.disc li {
  list-style-type: disc;
}

/* company */
.company .profile div > dl {
  display: flex;
  padding: 20px;
  gap: 20px;
}

.company .profile div > dl:nth-child(even) {
  background: var(--main-lighter-color);
}

.company .profile div > dl dt {
  width: 20%;
  min-width: 100px;
}

.company .profile div > dl dd {
  width: 80%;
}

.company .profile .infobox {
  border-radius: 10px;
  box-shadow: 0 0 8px 4px #e9e9e9c4;
}

.company article dl.flexbox.pc {
  display: flex;
}

.company article dl.flexbox.sp {
  display: none;
}

.company .profile div > dl dd.sp {
  display: none;
}

/* insurance */
.insurance {
  background: var(--main-lighter-color);
}

.insurance .insurance-nav .inner {
  background: #fff;
  border-radius: 20px;
  padding: var(--section-py) var(--section-px);
}

.insurance .insurance-nav .list {
  display: flex;
  flex-wrap: wrap;
}

.insurance .insurance-nav .list .item {
  width: 50%;
}

.insurance .insurance-nav .list .item_link {
  text-align: center;
  display: block;
  font-size: 20px;
}

.insurance .cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.insurance .cards .card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 8px 4px #e9e9e9c4;
  padding: 20px;
}

.insurance .cards .card .btnbox {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.insurance .cards .card_ttl {
  font-size: 20px;
  font-weight: 600;
}

.insurance .cards .card_subttl {
  margin-bottom: 30px;
}

.insurance .cards .card .btnbox .btn {
  min-width: 100px;
  padding: 10px 15px;
}

/* news */
.news-details .lower_mv {
  background-image: url(../img/news/mv.png) !important;
}

.news-item a {
  display: flex;
}

.news-item a .news-img {
  width: 150px;
}

.news-item a .news-group {
  padding: 20px;
  width: 100%;
}

.news-item a .news-img img.no-image {
  display: none;
}

.news-item {
  border-bottom: solid 1px #9C9C9C;
  border-right: solid 1px #9C9C9C;
  border-left: solid 1px #9C9C9C;
}

.news-item:nth-child(1) {
  border-top: solid 1px #9C9C9C;
}

.news-details .inner p {
  margin-bottom: 20px;
}

.news-details_img {
  width: 100%;
  max-width: 400px;
}

/* preparations */
.custom-preparations form ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-preparations form ul li input {
  width: 15px;
  height: 15px;
}

.custom-preparations form {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  gap: 50px 0;
}

.custom-preparations form ul {
  width: 33%;
}

.custom-preparations form p {
  text-align: end;
  font-size: 14px;
  width: 100%;
}

.custom-preparations.sec02 .wrap {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #EBEBEB;
  padding: 30px 25px;
  margin-bottom: 30px;
  border-radius: 10px;
  border: solid;
}

.custom-preparations.sec02 .wrap.no-bg {
  padding: 10px 25px;
}

.custom-preparations.sec02 .wrap div ul {
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
}

.custom-preparations.sec02 .wrap.no-bg div ul {
  background-color: unset;
}

.custom-preparations.sec02 .wrap div ul li {
  display: flex;
  margin-bottom: 10px;
}

.custom-preparations.sec02 .wrap div ul li:nth-last-child(1) {
  margin-bottom: 0;
}

.custom-preparations.sec02 .wrap div ul li label {
  width: 100%;
}

.custom-preparations.sec02 .wrap div ul li label:nth-last-child(1) {
  text-align: end;
}

.customer-service .inner p:nth-last-child(1) {
  width: 100%;
  max-width: 900px;
}

@media (max-width: 1300px) {
  .service .info .cards .card {
    width: 48%;
  }

  .interview-details .schedule dl dd::before {
    content: "";
    display: block;
    width: 20px;
    aspect-ratio: 1/1;
    background: var(--main-color);
    border-radius: 50%;
    position: absolute;
    left: -20px;
    top: 20px;
  }

  .interview-details .schedule dl:not(:last-child) dd::after {
    content: "";
    display: block;
    width: 8px;
    height: calc(100% + 30px);
    background: var(--main-color);
    position: absolute;
    left: -10px;
    transform: translateX(-50%);
    top: 20px;
  }
}

@media (max-width: 1200px) {
  .service .system .cards .card .card_txtbox {
    width: 50vw;
  }
}

@media (max-width: 1100px) {
  .service .system .cards .card .card_txtbox {
    width: 60vw;
  }
}

@media (max-width: 1000px) {
  .about .profile dl dt {
    width: 20%;
    min-width: 100px;
  }

  .about .profile dl dd {
    width: 80%;
  }

  .service .chart .chart-occupation .stat {
    height: 300px;
  }
  .service .chart .chart-transpo .stat {
    height: 130px;
  }

  .service .info .section_ttl,
  .service .chart .section_ttl {
    font-size: 70px;
  }

  .interview-details .schedule .flex-schedules {
    flex-direction: column;
    gap: 60px;
  }

  .interview-details .schedule .flex-schedules .schedule-block {
    width: 100%;
  }

  .insurance .insurance-nav .list .item_link {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .about .lead .txtbox {
    flex-direction: column;
    gap: 30px;
  }

  .about .lead .txtbox .px {
    padding-left: unset;
    padding-right: unset;
  }

  .about .lead .txtbox {
    padding-right: var(--section-px);
  }

  .about .lead .txtbox > div:first-child,
  .about .lead .txtbox > div:last-child {
    width: 100%;
  }

  .service .system .cards .card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 0;
  }

  .service .system .cards .card .card_imgbox,
  .service .system .cards .card .card_txtbox {
    width: 100%;
  }

  .service .system .cards .card:nth-child(odd),
  .service .system .cards .card:nth-child(even) {
    padding-left: var(--section-px);
    padding-right: var(--section-px);
  }

  .service .system .cards .card:nth-child(odd) .card_txtbox,
  .service .system .cards .card:nth-child(even) .card_txtbox {
    position: static;
    border-top: 2px solid var(--main-color);
    border-left: 2px solid var(--main-color);
    border-right: 2px solid var(--main-color);
    border-bottom: 2px solid var(--main-color);
    border-radius: 20px;
  }

  .service .chart .chart-occupation .label p,
  .service .chart .chart-transpo .label p {
    font-size: 14px;
  }

  .service .chart .chart-occupation .label p span,
  .service .chart .chart-transpo .label p span {
    font-size: 40px;
  }

  .service .chart .chart-transpo .label,
  .service .chart .chart-transpo .stat {
    gap: 5px;
  }

  .service .chart .chart-occupation .stat {
    height: 200px;
  }

  .service .chart .chart-transpo .stat {
    height: 100px;
  }

  .service .chart .chart-occupation {
    margin-bottom: 50px;
  }

  .recruit .lead .flexbox {
    flex-direction: column;
    gap: 30px;
  }
  .recruit .lead .flexbox .txtbox,
  .recruit .lead .flexbox .imgbox {
    width: 100%;
  }

  .recruit .lead .flexbox .txtbox.pr {
    padding-right: unset;
  }

  .recruit .requirements dl {
    flex-direction: column;
    gap: 8px;
  }

  .recruit .requirements dl dt,
  .recruit .requirements dl dd {
    width: 100%;
  }

  .recruit .requirements dl dd .sp {
    display: block;
  }

  .interview .cards,
  .two-categories {
    flex-direction: column;
  }

  .interview .cards .card,
  .two-categories > div {
    width: 100%;
  }

  .insurance .insurance-nav .list .item_link {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .about .profile dl {
    flex-direction: column;
  }

  .about .profile dl dt,
  .about .profile dl dd {
    width: 100%;
  }

  .service .info .cards .card {
    width: 100%;
  }

  .service .chart .chart-occupation .label p,
  .service .chart .chart-transpo .label p {
    font-size: 8px;
  }

  .service .chart .chart-transpo .label p {
    margin-bottom: 0;
    height: 75px;
  }

  .service .chart .chart-occupation .label p span,
  .service .chart .chart-transpo .label p span {
    font-size: 16px;
  }

  .service .info .section_ttl,
  .service .chart .section_ttl {
    font-size: 50px;
  }

  .service .chart .chart-transpo .label {
    height: 110px;
  }

  .service .chart .chart-transpo .stat {
    height: 60px;
  }

  .service .chart .chart-transpo .stat div:nth-child(1),
  .service .chart .chart-transpo .label div:nth-child(1) {
    width: 20%;
  }

  .service .chart .chart-transpo .stat div:nth-child(2),
  .service .chart .chart-transpo .label div:nth-child(2) {
    width: 25%;
  }

  .service .chart .chart-transpo .stat div:nth-child(3),
  .service .chart .chart-transpo .label div:nth-child(3) {
    width: 40%;
  }

  .service .chart .chart-transpo .stat div:nth-child(4),
  .service .chart .chart-transpo .label div:nth-child(4) {
    width: 45%;
  }

  .service .chart .chart-transpo .label div .imgbox {
    width: 70%;
    max-width: 200px;
  }

  .interview-details .schedule dl {
    flex-direction: column;
    align-items: center;
    gap: 60px;
    position: relative;
  }

  .interview-details .schedule dl:not(:last-child)::after {
    content: "";
    display: block;
    width: 8px;
    height: 30px;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--main-color);
  }

  .interview-details .schedule dl dt,
  .interview-details .schedule dl dd {
    width: 100%;
  }

  .interview-details .schedule dl dt {
    text-align: center;
    padding-right: unset;
    padding-top: unset;
  }

  .interview-details .schedule dl dd::before {
    content: "";
    display: block;
    width: 20px;
    aspect-ratio: 1/1;
    background: var(--main-color);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -60px;
    z-index: 0;
  }

  .interview-details .schedule dl:not(:last-child) dd::after,
  .interview-details .schedule dl:last-child dd::after {
    content: "";
    display: block;
    width: 8px;
    height: 42px;
    background: var(--main-color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -42px;
    z-index: 0;
  }

  .insurance .cards .card .btnbox {
    justify-content: center;
  }

  .news-item a .news-group {
    font-size: 14px;
  }

  .news-item a .news-img {
    width: 50%;
  }

  .company article dl.flexbox.pc {
    display: none;
  }

  .company article dl.flexbox.sp {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .company .profile div > dl dt {
    width: 50%;
  }

  .company .profile div > dl dd {
    width: 100%;
  }

  .company .profile div > dl dd.sp {
    display: block;
  }

  .custom-preparations form ul {
    width: 50%;
  }

  .custom-preparations form ul:nth-last-child(2) {
    width: 100%;
  }

  .custom-preparations form p {
    font-size: 10px;
  }

  .custom-preparations form ul li {
    font-size: 13px;
  }

  .custom-preparations.sec02 .wrap div ul li {
    flex-direction: column;
  }

  .custom-preparations.sec02 .wrap div ul li label:nth-last-child(1) {
    text-align: start;
  }

  .customer-service table tbody {
    border: solid 1px #D1D5DC;
  }

  .customer-service table tbody tr th {
    background-color: #F3F4F6;
  }

  .customer-service table tbody tr th,
  .customer-service table tbody tr td {
    border-right: solid 1px #D1D5DC;
    border-bottom: solid 1px #D1D5DC;
    font-size: 12px;
    height: 40px;
    text-align: center;
    vertical-align: middle;
    padding: 10px;
  }

  .customer-service table tbody tr th:nth-last-child(1),
  .customer-service table tbody tr td:nth-last-child(1) {
    border-right: 0;
  }

  .customer-service table tbody tr th:nth-child(1),
  .customer-service table tbody tr td:nth-child(1) {
    text-align: start;
  }

  .customer-service .inner p:nth-last-child(1) {
    border-bottom: solid 1px #D1D5DC;
    border-right: solid 1px #D1D5DC;
    border-left: solid 1px #D1D5DC;
    padding: 10px;
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  .about .lead .txtbox > div:last-child div.ml-auto {
    margin-left: unset;
  }
}
