@charset "UTF-8";
body {
  font-family: "Outfit", "Zen Kaku Gothic New", sans-serif;
  color: #1a1a1a;
}

p {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 1em;
}
p:last-child {
  margin-bottom: 0;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

section {
  position: relative;
}

.section-outer {
  max-width: 100%;
  padding: 0 10px;
  position: relative;
  overflow: hidden;
}

.section-inner {
  background: #fff;
  margin: 0 auto;
}

.divider {
  position: absolute;
  bottom: -14px;
  left: 10px;
  width: calc(100% - 20px);
  height: 28px;
  background-image: radial-gradient(circle, #f8c31c 6px, transparent 6px), radial-gradient(circle, #f47920 6px, transparent 6px);
  background-size: 56px 28px; /* 丸間隔 */
  background-position: 0 0, 28px 0; /* 2つ目を右に32pxずらす */
  background-repeat: repeat-x;
  z-index: 1;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

.td {
  position: relative;
  font-weight: bold;
  display: inline-block;
}
.td::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%; /* 下半分だけ */
  background: none;
  mix-blend-mode: multiply;
}
.td._underline {
  text-decoration: underline;
}
.td._highlight::before {
  background-color: #FFEB3B; /* 黄色 */
}
.td._orange::before {
  background-color: #FF9800;
}

@media screen and (min-width: 768px) {
  p {
    font-size: 16px;
  }
  .section-outer {
    padding: 0 10px;
  }
  .section-inner {
    max-width: 980px;
  }
  .divider {
    max-width: 980px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.lp-hero {
  background: #F7931E;
}
.lp-hero .section-outer {
  padding-top: 10px;
}
.lp-hero .section-inner {
  padding-top: 10px;
}
.lp-hero h1 .img-container {
  position: relative;
  width: 100%;
}
.lp-hero h1 .img-container img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}
.lp-hero h1 .img-container::after {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  position: absolute;
  bottom: -19vw;
  left: -20px;
  background: url("../../img/local_fukuoka/hero.webp") center/contain no-repeat;
  pointer-events: none;
}
.lp-hero .lp-hero-text {
  padding: 35px 20px;
  text-align: center;
  padding-top: 10vw;
}
.lp-hero .lp-hero-text p {
  margin-bottom: 0.7em;
}
.lp-hero .lp-hero-text p span {
  font-size: 1.15em;
}
@media screen and (min-width: 768px) {
  .lp-hero .section-outer, .lp-hero .section-inner {
    padding-top: 0;
  }
  .lp-hero h1 .img-container::after {
    content: "";
    display: block;
    width: min(113vw, 1515px);
    max-width: 1515px;
    height: auto;
    aspect-ratio: 3032/1565;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8.8vw;
    background: url("../../img/local_fukuoka/hero_pc.webp") center/min(113vw, 1515px) auto no-repeat;
    pointer-events: none;
  }
  .lp-hero .lp-hero-text {
    padding: 10vw 200px 65px;
  }
  .lp-hero .lp-hero-text p span {
    font-size: 1.25em;
  }
}
@media screen and (min-width: 1515px) {
  .lp-hero h1 .img-container::after {
    bottom: -130px;
  }
  .lp-hero .lp-hero-text {
    padding-top: 150px;
  }
}

.lp-contents {
  background: #ff6e1c;
}
.lp-contents .section-inner {
  padding: 70px 20px 35px;
}
.lp-contents .section-inner .header {
  margin-bottom: 1em;
}
.lp-contents .section-inner h2 {
  width: 100%;
  text-align: center;
  padding: 0.5em 0;
  display: inline-block;
  background: #fdf2de;
  font-size: 1.3em;
  font-weight: bold;
  border-top: 3px solid #ff6e1c;
  border-bottom: 3px solid #ff6e1c;
  position: relative;
}
.lp-contents .section-inner h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -35px;
  width: 90px;
  height: auto;
  aspect-ratio: 300/113;
  background: url("../../img/local_fukuoka/point01.svg") center/contain no-repeat;
}
.lp-contents .section-inner .heading-bullet {
  position: relative;
  display: inline-block;
  padding-left: 0.7em;
  font-size: 1.1em;
  font-weight: bold;
}
.lp-contents .section-inner .heading-bullet::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 1.1em;
  background: #ff6e1c;
  border-radius: 10px;
}
.lp-contents .section-inner .heading-bullet._blue::before {
  background: #4ab9e2;
}
.lp-contents .section-inner .heading-bullet._green::before {
  background: #74bb2f;
}
.lp-contents .section-inner .row .col-md-6 {
  margin-bottom: 1em;
}
.lp-contents .section-inner .box {
  padding: 30px 15px 20px;
  background: #fdf2de;
  border-radius: 5px;
  position: relative;
}
.lp-contents .section-inner .box._bubble {
  margin-top: 1em;
}
.lp-contents .section-inner .box._bubble::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -15px;
  width: 200px;
  height: auto;
  aspect-ratio: 300/53;
  background: url("../../img/local_fukuoka/bubble_1.svg") center/contain no-repeat;
}
.lp-contents .section-inner .list-checkbox {
  margin: 0;
  padding: 0;
  list-style: none;
}
.lp-contents .section-inner .list-checkbox li {
  position: relative;
  padding-left: 1.6em;
  font-weight: bold;
  font-size: 0.85em;
}
.lp-contents .section-inner .list-checkbox li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 1em;
  height: 1em;
  background-image: url("../../img/local_fukuoka/checkbox.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.lp-contents .section-inner .list-checkbox li:not(:last-child) {
  border-bottom: 1px dashed #ccc;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}
.lp-contents .section-inner .message p {
  font-size: 1.1em;
}
.lp-contents .section-inner .heading-container {
  text-align: center;
  padding: 0.6em 0;
}
.lp-contents .section-inner .heading-container h4 {
  font-size: 1em;
}
.lp-contents .section-inner .btn-container {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 1.5em;
  max-width: 375px;
}
.lp-contents .section-inner .btn-container a {
  display: block;
}
.lp-contents .section-inner .heading {
  margin-bottom: 1em;
}
.lp-contents .section-inner .heading .wrapper {
  border-bottom: 2px solid #74bb2f;
}
.lp-contents .section-inner .heading .wrapper .heading-numbox {
  margin-bottom: 1.5vw;
}
.lp-contents .section-inner .heading .wrapper .heading-numbox span {
  padding: 0.5em 0.7em;
  font-weight: bold;
  font-size: 4vw;
}
.lp-contents .section-inner .heading .wrapper .heading-numbox span.num {
  color: #fff;
  background: #74bb2f;
  border-radius: 5px 5px 0 0;
}
.lp-contents .section-inner .box .box-header {
  width: 100%;
  padding: 0.6em 0;
  border-radius: 5px 5px 0 0;
  background: #74bb2f;
  text-align: center;
  color: #fff;
  font-weight: bold;
}
.lp-contents .section-inner .box .box-header > * {
  font-size: 1em;
  margin-bottom: 0;
}
.lp-contents .section-inner .box .box-body {
  padding: 1em 15px;
}
.lp-contents .section-inner .box .box-body .message {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 0.5em;
  font-weight: bold;
}
.lp-contents .section-inner .list-dot {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 1em;
}
.lp-contents .section-inner .list-dot li {
  position: relative;
  padding-left: 1.3em;
  font-weight: 500;
  font-size: 0.85em;
}
.lp-contents .section-inner .list-dot li::before {
  content: "";
  position: absolute;
  left: 0.2em;
  top: 0.5em;
  width: 0.5em;
  height: 0.5em;
  background: #4ab9e2;
  border-radius: 10px;
}
.lp-contents .section-inner .list-dot li:not(:last-child) {
  margin-bottom: 1em;
}
.lp-contents .section-inner .list-dot._colorfull li:nth-child(2n):before {
  background: #74bb2f;
}
.lp-contents .section-inner .list-dot._colorfull li:nth-child(3n):before {
  background: #ff6e1c;
}
.lp-contents .section-inner .list-dot._orange li:before {
  background: #ff6e1c;
}
.lp-contents .section-inner .list-dot._green li:before {
  background: #74bb2f;
}
.lp-contents._02 {
  background: #74bb2f;
}
.lp-contents._02 .section-inner h2 {
  border-color: #74bb2f;
}
.lp-contents._02 .section-inner h2::after {
  background: url("../../img/local_fukuoka/point02.svg") center/contain no-repeat;
}
.lp-contents._02 .section-inner .box {
  padding-bottom: 15px;
  margin-bottom: 1.5em;
}
.lp-contents._02 .section-inner .box._bubble {
  margin-top: 2em;
}
.lp-contents._02 .section-inner .box._bubble::before {
  background: url("../../img/local_fukuoka/bubble_2.svg") center/contain no-repeat;
  aspect-ratio: 300/79;
  width: 190px;
  top: -33px;
}
.lp-contents._02 .section-inner .box._green {
  background: #e7f3dc;
}
.lp-contents._02 .section-inner .box .list-numbox {
  margin: 0;
  padding: 0;
  list-style: none;
}
.lp-contents._02 .section-inner .box .list-numbox li {
  border: 2px solid #74bb2f;
  background: #fff;
  border-radius: 5px;
  font-size: 2.9vw;
}
.lp-contents._02 .section-inner .box .list-numbox li:not(:last-child) {
  margin-bottom: 0.2em;
}
.lp-contents._02 .section-inner .box .list-numbox span {
  padding: 0.5em 1em;
  font-weight: bold;
  display: inline-block;
}
.lp-contents._02 .section-inner .box .list-numbox span.num {
  color: #fff;
  background: #74bb2f;
  width: 3vw;
  padding: 0.5em 1.3em 0.5em 0.5em;
}
.lp-contents._02 .section-inner .box .figure {
  display: block;
  max-width: 300px;
  margin: auto;
}
.lp-contents._02 .section-inner .box .d-flex {
  gap: 5px;
}
.lp-contents._03 {
  background: #4ab9e2;
}
.lp-contents._03 .section-inner h2 {
  border-color: #4ab9e2;
}
.lp-contents._03 .section-inner h2::after {
  background: url("../../img/local_fukuoka/point03.svg") center/contain no-repeat;
}
.lp-contents._03 .section-inner .heading-numbox {
  display: flex;
  border-radius: 5px;
  border: 2px solid #4ab9e2;
  align-items: stretch;
}
.lp-contents._03 .section-inner .heading-numbox span {
  font-size: 0.85em;
  font-weight: bold;
  padding: 0.4em;
}
.lp-contents._03 .section-inner .heading-numbox .num {
  background: #4ab9e2;
  width: 10%;
  max-width: 40px;
  height: 100%;
  display: flex;
  height: auto;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.lp-contents._04 {
  background: #F7931E;
}
.lp-contents._04 .section-inner {
  padding: 40px 20px 30px;
}
.lp-contents._04 .section-inner .message {
  font-weight: 500;
  margin-bottom: 2em;
}
.lp-contents._04 .section-inner .message span {
  font-weight: bold;
}
.lp-contents._04 .section-inner .message .fc-red {
  color: #e61a13;
}
.lp-contents._04 .section-inner .message .fc-green {
  color: #74bb2f;
}
.lp-contents._04 .section-inner .message small {
  font-size: 0.8em;
}
.lp-contents._04 .section-inner #recruitment .box._recruit {
  background: #fff;
  overflow: hidden;
}
.lp-contents._04 .section-inner #recruitment .box._recruit .box-header {
  background: #0071bc;
}
.lp-contents._04 .section-inner #recruitment .box._recruit .mask {
  position: relative;
}
.lp-contents._04 .section-inner #recruitment .box._recruit .mask::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3em;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white 90%);
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.lp-contents._04 .section-inner #recruitment .box._recruit .recruit-content {
  max-height: 17em;
  overflow: hidden;
  position: relative;
  background: white;
  padding: 1em;
  transition: max-height 0.3s ease;
  border: 1px solid #ccc;
  border-top: none;
  border-radius: 0 0 5px 5px;
}
.lp-contents._04 .section-inner #recruitment .box._recruit .recruit-content .heading-bullet:before {
  background: #0071bc;
}
.lp-contents._04 .section-inner #recruitment .box._recruit .toggle-button {
  display: block;
  margin: 1em auto 0;
  padding: 0.6em 1.2em;
  background: #333;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 2em;
  cursor: pointer;
}
.lp-contents._04 .section-inner #recruitment.expanded .box._recruit .mask::after {
  display: none;
}
.lp-contents._04 .section-inner #recruitment.expanded .box._recruit .recruit-content {
  max-height: none;
}
.lp-contents._04 .section-inner .btn-container {
  position: relative;
}
.lp-contents._04 .section-inner .btn-container._bubble::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -22px;
  width: 200px;
  height: auto;
  aspect-ratio: 300/53;
  background: url("../../img/local_fukuoka/bubble_3.svg") center/contain no-repeat;
  z-index: 1;
}
.lp-contents._04 .divider {
  bottom: -8px;
}
.lp-contents.lp-footer {
  background-color: #fff;
  background-image: radial-gradient(#e9e9e9 2px, transparent 2px);
  background-size: 16px 16px;
}
.lp-contents.lp-footer .section-inner {
  background: none;
  padding: 30px 20px 25px;
}
.lp-contents.lp-footer .copyright {
  background: #1a1a1a;
  color: #fff;
  padding: 0.2em 0;
}
.lp-contents.lp-footer .copyright p {
  font-size: 0.7em;
}
@media screen and (min-width: 768px) {
  .lp-contents .section-inner {
    padding: 110px 50px 30px;
  }
  .lp-contents .section-inner h2::after {
    width: 130px;
    top: -52px;
  }
  .lp-contents .section-inner .heading-bullet {
    font-size: 1.4em;
  }
  .lp-contents .section-inner .message p {
    margin-bottom: 2em;
  }
  .lp-contents .section-inner .btn-container {
    margin-bottom: 3em;
  }
  .lp-contents .section-inner .btn-container a {
    transition: 0.2s;
  }
  .lp-contents .section-inner .btn-container a:hover {
    transform: translateY(-3px);
  }
  .lp-contents .section-inner .box .box-body {
    padding: 2em;
  }
  .lp-contents .section-inner > .row {
    margin-bottom: 2em;
  }
  .lp-contents .section-inner .heading {
    margin-bottom: 1em;
  }
  .lp-contents .section-inner .heading .wrapper .heading-numbox {
    margin-bottom: 0.4em;
  }
  .lp-contents .section-inner .heading .wrapper .heading-numbox span {
    font-size: 0.85em;
  }
  .lp-contents._02 .section-inner .box .list-numbox li {
    font-size: 14px;
  }
  .lp-contents._02 .section-inner .box .list-numbox span.num {
    width: 20px;
  }
  .lp-contents._02 .section-inner .box .figure {
    margin: 30px auto;
  }
  .lp-contents._02 .section-inner .box .list-dot {
    margin-bottom: 2em;
  }
  .lp-contents._02 .section-inner .box .list-dot li {
    font-size: 1em;
  }
  .lp-contents._02 .section-inner hr {
    margin: 2em 0;
  }
  .lp-contents._04 .section-inner {
    padding: 80px 50px 30px;
  }
  .lp-contents._04 .section-inner .message p {
    margin-bottom: 0;
    font-size: 1.5em;
  }
  .lp-contents.lp-footer .section-inner {
    padding: 70px 50px 65px;
  }
  .lp-contents.lp-footer .section-inner .text-md-center {
    font-size: 1.2em;
  }
}/*# sourceMappingURL=style.css.map */