@charset "UTF-8";
.btn {
  --color: white;
  --bg: var(--black);
  min-width: 300px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  padding: 0.75em 0;
  color: var(--color);
  background: var(--bg);
  border-radius: 10rem;
  font-size: 1.25rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 991.98px) {
  .btn {
    font-size: 1rem;
    min-width: 200px;
  }
}
.btn::after {
  content: "▶";
  font-size: 0.8em;
}

.btn-center {
  margin-inline: auto;
}

.hl-lv01 {
  font-size: 2.25rem;
  font-weight: bold;
}
@media screen and (max-width: 991.98px) {
  .hl-lv01 {
    font-size: 1.25rem;
  }
}
.hl-lv01 small {
  font-size: 0.55em;
  display: block;
  margin: 0.25em 0;
}

.hl-lv02 {
  font-size: 1.75rem;
  font-weight: bold;
}
@media screen and (max-width: 991.98px) {
  .hl-lv02 {
    font-size: 1.25rem;
  }
}
.hl-lv02 small {
  font-size: 0.55em;
  display: block;
  margin: 0.25em 0;
}

.hl-lv03 {
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (max-width: 991.98px) {
  .hl-lv03 {
    font-size: 1rem;
  }
}

.hl-lv04 {
  font-size: 1rem;
  font-weight: bold;
}
@media screen and (max-width: 991.98px) {
  .hl-lv04 {
    font-size: 0.875rem;
  }
}

.hl-border {
  color: var(--black);
  margin-bottom: 1.5em;
}
.hl-border::after {
  content: "";
  display: block;
  height: 7px;
  width: 100%;
  border-radius: 10rem;
  background: var(--black);
}
@media screen and (max-width: 991.98px) {
  .hl-border::after {
    height: 3px;
  }
}

.hl-dot::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: var(--black);
  border-radius: 10rem;
  margin-inline: auto;
  margin-bottom: 1em;
}

.hl-dot-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.hl-dot-bottom::before {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin-bottom: 0;
  margin-top: 1em;
}

p {
  line-height: 1.75;
}

section.__red .has-color {
  color: var(--red);
}
section.__red .hl-dot::before {
  background: var(--red);
}
section.__red .hl-border::after {
  background: var(--red);
}
section.__red .btn {
  background: var(--red);
}
section.__blue .has-color {
  color: var(--blue);
}
section.__blue .hl-dot::before {
  background: var(--blue);
}
section.__blue .hl-border::after {
  background: var(--blue);
}
section.__blue .btn {
  background: var(--blue);
}
section.__green .has-color {
  color: var(--green);
}
section.__green .hl-dot::before {
  background: var(--green);
}
section.__green .hl-border::after {
  background: var(--green);
}
section.__green .btn {
  background: var(--green);
}
section.__orange .has-color {
  color: var(--orange);
}
section.__orange .hl-dot::before {
  background: var(--orange);
}
section.__orange .hl-border::after {
  background: var(--orange);
}
section.__orange .btn {
  background: var(--orange);
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
}

.modal {
  background-color: white;
  padding: 20px;
  border-radius: 4px;
  width: 80%;
  max-width: 600px;
  position: relative;
}

.picture {
  display: block;
}
.picture img {
  border-radius: 20px;
}
@media screen and (max-width: 991.98px) {
  .picture img {
    border-radius: 15px;
  }
}

.table th,
.table td {
  padding: 0.05em 2em;
}
.table thead th {
  padding-bottom: 2em;
}
.table tbody th,
.table tbody td {
  border-bottom: 28px solid white;
}
.table tbody th {
  font-weight: bold;
  color: var(--green);
}
.table tbody td {
  border-left: 3px solid var(--green);
}
.table tbody .has-distance {
  line-height: 2;
}
.table tbody span {
  display: block;
}
.table tbody span + span {
  margin-top: 0.75em;
}
.table tr.access th, .table tr.access td {
  width: 100%;
}
.table tr.access td {
  border-left: none;
}
.table.company {
  width: 100%;
}

.footer .wrapper-wide {
  background: url(../../dist/img/bg-footer.webp) left/contain no-repeat;
}

.footer-content {
  gap: 30px;
}
@media screen and (max-width: 991.98px) {
  .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer-content .tel {
  padding-left: 30px;
}
@media screen and (max-width: 991.98px) {
  .footer-content .tel {
    padding-left: 0;
  }
}

.footer-nav .list-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 45px;
  font-weight: bold;
}
@media screen and (max-width: 991.98px) {
  .footer-nav .list-nav {
    gap: 20px;
  }
}

.service-items {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 991.98px) {
  .service-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.service-items > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 450px;
          flex: 0 0 450px;
}
@media screen and (max-width: 991.98px) {
  .service-items > * {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
}

.company-bottom {
  background: #278131;
}
.company-bottom .wrapper {
  background: url(../../dist/img/bg-company.webp) left no-repeat;
}
.company-bottom .hl-dot {
  line-height: 1.75;
}
.company-bottom .hl-dot::before {
  background: white !important;
}

.pagetop {
  background: url("../../dist/img/pagetop.jpg") no-repeat center top;
  background-size: cover;
  height: 300px;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 991.98px) {
  .pagetop {
    height: 30vh;
  }
}
.pagetop h1 {
  color: #fff;
  padding: 10px 30px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  font-weight: 800;
  font-size: 22px;
}
.pagetop h1 span {
  display: inline-block;
  font-size: 38px;
  padding-right: 20px;
}
.pagetop #pagetop-service h1 {
  background-color: rgba(216, 42, 67, 0.7);
}
.pagetop #pagetop-recruit h1 {
  background-color: rgba(252, 162, 76, 0.7);
}
.pagetop #pagetop-company h1 {
  background-color: rgba(91, 188, 102, 0.7);
}
.pagetop #pagetop-contact h1 {
  background-color: rgba(77, 108, 174, 0.7);
}

.formTable {
  margin-top: 60px;
  margin-bottom: 40px;
  width: 100%;
}
.formTable th, .formTable td {
  padding-bottom: 30px;
}
@media screen and (max-width: 991.98px) {
  .formTable th, .formTable td {
    padding-bottom: 10px;
  }
}
.formTable th {
  text-align: left;
  font-weight: bold;
  width: 20%;
  vertical-align: top;
}
@media screen and (max-width: 991.98px) {
  .formTable th {
    display: block;
    width: 100%;
  }
}
.formTable td {
  padding-left: 20px;
}
@media screen and (max-width: 991.98px) {
  .formTable td {
    display: block;
    width: 100%;
  }
}
.formTable span.hissu {
  font-size: 12px;
  color: var(--blue);
  display: inline-block;
  margin-left: 10px;
}
.formTable input, .formTable textarea, .formTable select {
  border: 1px solid var(--blue);
  width: 85%;
  padding: 6px 10px;
}
@media screen and (max-width: 991.98px) {
  .formTable input, .formTable textarea, .formTable select {
    width: 95%;
  }
}
.formTable textarea {
  height: 200px;
}

.submit input {
  display: block;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  background-color: var(--blue);
  width: 200px;
  padding: 4px 10px;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 991.98px) {
  .submit input {
    width: 200px;
  }
}

.kids {
  gap: 20px;
}
.kids img {
  width: 50%;
}

.recruit_table {
  width: 100%;
  margin-top: 40px;
  border: 2px solid var(--orange);
}
.recruit_table th {
  background-color: var(--orange);
  color: #fff;
  padding: 12px 20px;
  font-weight: bold;
  border-bottom: 2px solid #fff;
}
.recruit_table tr:last-child th {
  border-bottom: 2px solid var(--orange);
}
.recruit_table td {
  border: 2px solid var(--orange);
  padding: 12px 20px;
}

.recruit-ul {
  color: var(--orange);
  font-weight: bold;
  line-height: 2em;
  font-size: 1.2rem;
}
@media screen and (min-width: 992px) {
  .recruit-ul {
    width: 400px;
    margin: 0 auto;
  }
}
.recruit-ul li:before {
  content: "● ";
}

.section-greeting {
  background-image: url("../../dist/img/rainbow.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.service_table {
  width: 100%;
  margin-top: 40px;
  border: 2px solid var(--red);
}
.service_table th {
  background-color: var(--red);
  color: #fff;
  padding: 12px 10px;
  font-weight: bold;
  border-bottom: 2px solid #fff;
}
.service_table tr:last-child th {
  border-bottom: 2px solid var(--red);
}
.service_table td {
  border: 2px solid var(--red);
  padding: 12px 20px;
}

.fade {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 1.5s, -webkit-transform 1s;
  transition: opacity 1.5s, -webkit-transform 1s;
  transition: opacity 1.5s, transform 1s;
  transition: opacity 1.5s, transform 1s, -webkit-transform 1s;
}

.fade.active {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.mt-05 {
  margin-top: calc(var(--gap) / 2) !important;
}

.mb-05 {
  margin-bottom: calc(var(--gap) / 2) !important;
}

.mt-1 {
  margin-top: var(--gap) !important;
}

.mb-1 {
  margin-bottom: var(--gap) !important;
}

.mt-2 {
  margin-top: calc(var(--gap) * 2) !important;
}

.mb-2 {
  margin-bottom: calc(var(--gap) * 2) !important;
}

.mt-3 {
  margin-top: calc(var(--gap) * 3) !important;
}

.mb-3 {
  margin-bottom: calc(var(--gap) * 3) !important;
}

.mt-4 {
  margin-top: calc(var(--gap) * 4) !important;
}

.mb-4 {
  margin-bottom: calc(var(--gap) * 4) !important;
}

.mt-5 {
  margin-top: calc(var(--gap) * 5) !important;
}

.mb-5 {
  margin-bottom: calc(var(--gap) * 5) !important;
}

@media screen and (max-width: 991.98px) {
  .mt-0-sp {
    margin-top: 0 !important;
  }
  .mb-0-sp {
    margin-bottom: 0 !important;
  }
  .pt-0-sp {
    padding-top: 0 !important;
  }
  .pb-0-sp {
    padding-bottom: 0 !important;
  }
  .mt-05-sp {
    margin-top: calc(var(--gap) / 2) !important;
  }
  .mb-05-sp {
    margin-bottom: calc(var(--gap) / 2) !important;
  }
  .mt-1-sp {
    margin-top: var(--gap) !important;
  }
  .mb-1-sp {
    margin-bottom: var(--gap) !important;
  }
  .mt-2-sp {
    margin-top: calc(var(--gap) * 2) !important;
  }
  .mb-2-sp {
    margin-bottom: calc(var(--gap) * 2) !important;
  }
  .mt-3-sp {
    margin-top: calc(var(--gap) * 3) !important;
  }
  .mb-3-sp {
    margin-bottom: calc(var(--gap) * 3) !important;
  }
  .mt-4-sp {
    margin-top: calc(var(--gap) * 4) !important;
  }
  .mb-4-sp {
    margin-bottom: calc(var(--gap) * 4) !important;
  }
  .mt-5-sp {
    margin-top: calc(var(--gap) * 5) !important;
  }
  .mb-5-sp {
    margin-bottom: calc(var(--gap) * 5) !important;
  }
}
.mi-auto {
  margin-inline: auto;
}

.bg-white {
  background-color: var(--white);
}

.bg-black {
  background-color: var(--black);
}

.color-white {
  color: var(--white);
}

.color-black {
  color: var(--black);
}

.fw-bold {
  font-weight: bold;
}

.fw-light {
  font-weight: lighter;
}

.fw-normal {
  font-weight: normal;
}

.w-100 {
  width: 100%;
}

.w-50 {
  width: 50%;
}

.ta-center {
  text-align: center;
}

.ta-right {
  text-align: right;
}

.ta-left {
  text-align: left;
}

@media screen and (max-width: 991.98px) {
  .ta-center-sp {
    text-align: center;
  }
  .ta-right-sp {
    text-align: right;
  }
  .ta-left-sp {
    text-align: left;
  }
}