@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
}

[id] {
  scroll-margin-top: 70px;
}

img {
  max-width: 100%;
}

p {
  text-align: justify;
}

.site-title {
  font-size: 20px;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.sub-title {
  font-size: 12px;
  margin: 0;
  color: #364153;
  padding: 0;
  line-height: 1.4;
}

.menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.menu a {
  color: #364153;
  text-decoration: none;
}

.sp {
  display: block;
}
@media (min-width: 768px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media (min-width: 768px) {
  .pc {
    display: block;
  }
}

/* PCスタイルの基本（一部抜粋） */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 15px;
  max-width: 1280px;
  margin: 0 auto;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  display: flex;
  font-size: 23px;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
  background-color: #00A63E;
  border-radius: 10px;
  color: #fff;
}
.logo span {
  line-height: 1;
  font-weight: bold;
}

.menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

/* --- スマホ用設定 --- */
@media (max-width: 768px) {
  /* ボタンの見た目 */
  .menu-toggle {
    display: block;
    width: 30px;
    height: 25px;
    position: relative;
    z-index: 200;
    /* 最前面に */
    cursor: pointer;
  }
  .menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #364153;
    position: absolute;
    transition: 0.3s;
  }
  .menu-toggle span:nth-child(1) {
    top: 0;
  }
  .menu-toggle span:nth-child(2) {
    top: 11px;
  }
  .menu-toggle span:nth-child(3) {
    top: 22px;
  }
  /* メニューをモーダル（全画面）にする */
  .nav-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    /* 最初は画面の外に隠す */
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    z-index: 150;
  }
  /* メニューが開いた状態 */
  .nav-wrapper.is-active {
    right: 0;
  }
  .menu {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  /* ボタンがバツ印に変わる演出（お好みで） */
  .menu-toggle.is-active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }
  .menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }
}
/* PCではボタンを隠す */
@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }
}
.section {
  padding-top: 80px;
  padding-bottom: 80px;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.section--gray {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-color: #F9FAFB;
  /* 中身を 1280px の位置に押し戻す */
  /* 計算式：(画面の半分) - (コンテンツ最大幅の半分) */
  padding-left: calc(50vw - 640px) !important;
  padding-right: calc(50vw - 640px) !important;
  box-sizing: border-box;
}

.section-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 0.5em;
  color: #101828;
}

.section-title--en {
  text-align: center;
  font-size: 12px;
  color: #4A5565;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  /* 画面いっぱいの高さ */
  min-height: 470px;
  overflow: hidden;
}

/* 背景画像の設定 */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  /* 最初は透明 */
  animation: fadeAnimation 20s infinite;
  /* 3枚 × 4秒 = 12秒 */
}

/* 2枚目以降に遅延をかける */
.slide:nth-child(2) {
  animation-delay: 4s;
}

.slide:nth-child(3) {
  animation-delay: 8s;
}

.slide:nth-child(4) {
  animation-delay: 12s;
}

.slide:nth-child(5) {
  animation-delay: 16s;
}

@keyframes fadeAnimation {
  0% {
    opacity: 0;
  }
  /* 5%地点でふわっと表示完了 */
  5% {
    opacity: 1;
  }
  /* 20%地点（4秒後）まで表示を維持 */
  20% {
    opacity: 1;
  }
  /* 25%地点（5秒後）で次の画像と重なりながら消える */
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* 前面の文字設定 */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* 真ん中寄せ */
  z-index: 10;
  /* 背景より上に */
  text-align: center;
  color: white;
  width: 90%;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  /* 文字を読みやすく */
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.hero-content h1 span {
  font-size: 0.8rem;
  vertical-align: super;
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translate(-50%, 0);
}
@media (min-width: 768px) {
  .hero-content h1 span {
    left: auto;
    right: 6px;
    transform: translate(-50%, 0);
  }
}

.hero-content p {
  text-align: center;
}

.button {
  background-color: #00A63E;
  color: #fff;
  padding: 0.7em 2em;
  font-size: 1em;
  display: inline-block;
  border-radius: 10px;
  margin-top: 1em;
  text-decoration: none;
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 5%;
}
@media (min-width: 768px) {
  .service-list {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}

.service-item {
  width: 84%;
  border: #E5E7EB 1px solid;
  border-radius: 5px;
  margin-top: 1em;
  padding: 5%;
}
@media (min-width: 768px) {
  .service-item {
    width: 25%;
    padding: 2%;
  }
}
.service-item span {
  width: 56px;
  height: 56px;
  background: #DCFCE7;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 56px;
}
.service-item img {
  width: 55%;
}
.service-item h3 {
  color: #101828;
  font-size: 20px;
}
.service-item p {
  color: #4A5565;
  font-size: 16px;
}

@media (min-width: 768px) {
  .commitment-contents {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 15px;
  }
}

@media (min-width: 768px) {
  .image-column {
    width: 50%;
  }
}

.text-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .text-column {
    width: 50%;
    display: block;
    padding-left: 20px;
  }
}
.text-column-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-top: 20px;
}
.text-column-item__icon {
  background: #e6f7ef;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  text-align: center;
  align-items: center;
  display: flex;
  flex: 0 0 48px;
  justify-content: center;
}
.text-column-item__icon img {
  width: 53%;
}
.text-column-item__content h3 {
  font-size: 20px;
  color: #101828;
  padding: 0;
  margin: 0;
}
.text-column-item__content p {
  color: #4A5565;
  font-size: 16px;
  padding: 0;
  margin-top: 5px;
  margin-bottom: 0;
}

.price-list {
  display: block;
  padding: 5%;
}
@media (min-width: 768px) {
  .price-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 15px;
    gap: 20px;
    align-items: center;
  }
}
.price-list-item {
  flex: 1;
  border: 1px solid #E5E7EB;
  padding: 5%;
  width: 90%;
  border-radius: 10px;
  font-weight: bold;
  margin-bottom: 15px;
}
.price-list-item__price {
  font-size: 24px;
  padding: 0;
  margin: 0;
  color: #00A63E;
}

.step-circle {
  /* 円のサイズと色 */
  width: 60px;
  height: 60px;
  background-color: #1a9347;
  /* 濃いめの緑 */
  border-radius: 50%;
  /* 数字のデザインと中央配置 */
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  /* 線の基準位置にするための設定 */
  position: relative;
  margin-bottom: 50px;
  /* 線が伸びる分の余白 */
}

/* 下に伸びる線の実装 */
.step-circle-bar::after {
  content: "";
  position: absolute;
  top: 100%;
  /* 円のすぐ下から開始 */
  left: 50%;
  /* 中央に配置 */
  transform: translateX(-50%);
  /* 真ん中に寄せる */
  width: 2px;
  /* 線の太さ */
  height: 40px;
  /* 線の長さ */
  background-color: #8ce4ad;
  /* 薄い緑（画像に合わせる） */
}

.step-item {
  display: flex;
  width: 90%;
  margin-left: 5%;
  margin-top: 40px;
  gap: 10px;
}
.step-item__content {
  flex: 1;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.step-item__content-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.step-item__content img {
  display: inline-block;
  width: 24px;
  height: 24px;
}
.step-item__content h3 {
  display: inline-block;
  font-size: 20px;
  margin: 0;
  padding: 0;
}
.step-item__content p {
  font-size: 16px;
  margin: 0;
  padding-top: 10px;
  color: #4A5565;
}

.recruit {
  margin: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .recruit {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 15px;
    gap: 20px;
    align-items: center;
  }
}

.recruit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.recruit-item__icon {
  width: 48px !important;
  height: 48px !important;
  flex: 0 0 48px;
  background: #DCFCE7;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  display: flex;
}
.recruit-item__icon img {
  width: 25px;
}
.recruit-item__text h4 {
  font-size: 16px;
  padding: 0;
  margin: 0;
  color: #101828;
}
.recruit-item__text p {
  font-size: 16px;
  padding: 0;
  margin: 0;
  color: #4A5565;
  line-height: 24px;
}

@media (min-width: 768px) {
  .recruit-text,
  .recruit-img {
    width: calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .recruit-text {
    order: 2;
  }
  .recruit-img {
    order: 1;
  }
}
.recruiting {
  padding: 20px;
  background-color: #F9FAFB;
  border-radius: 10px;
  margin-top: 40px;
}
.recruiting h3 {
  font-size: 16px;
  padding: 0;
}
.recruiting p {
  font-size: 16px;
  padding: 0;
  color: #364153;
  font-weight: bold;
}
.recruiting span {
  font-weight: 400;
}

@media (min-width: 768px) {
  .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.contact-items,
.contact-form {
  padding: 5%;
}
@media (min-width: 768px) {
  .contact-items,
  .contact-form {
    width: 45%;
    padding: 2.5%;
  }
}
.contact-items h3,
.contact-form h3 {
  font-size: 20px;
  color: #101828;
}

.contect-item {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}
.contect-item__icon {
  background: #DCFCE7;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contect-item__icon img {
  width: 40%;
}
.contect-item h4 {
  padding: 0;
  margin: 0;
  font-size: 16px;
  padding-bottom: 6px;
}
.contect-item p {
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: #4A5565;
}

.contact-form {
  font-size: 16px;
  color: #364153;
}
.contact-form label {
  display: block;
  padding-bottom: 5px;
  font-weight: bold;
}
.contact-form input {
  width: 95%;
  padding: 14px 14px;
  font-size: 16px;
  border: #D1D5DC 1px solid;
  border-radius: 10px;
}
.contact-form select {
  /* ブラウザ独自のスタイルを解除 */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  border: #D1D5DC 1px solid;
  border-radius: 10px;
  font-size: 14px;
  height: 48px !important;
  cursor: pointer;
  line-height: 1.5;
  /* 行間の調整 */
  padding: 0 40px 0 15px;
  /* 右側に矢印用のスペースを空ける */
  /* 見切れ防止 */
  box-sizing: border-box;
  vertical-align: middle;
}
.contact-form textarea {
  width: 95%;
  padding: 14px 14px;
  font-size: 16px;
  border: #D1D5DC 1px solid;
  border-radius: 10px;
  min-height: 100px;
}
.contact-form div {
  padding-bottom: 20px;
}

#submit {
  width: 100%;
  padding: 14px 14px;
  border: #D1D5DC 1px solid;
  border-radius: 10px;
  background-color: #00A63E;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

.company-info-container {
  /* 外側の薄いグレー背景 */
  padding: 0 5%;
  border-radius: 12px;
  color: #4A5565;
  font-size: 18px;
  line-height: 28px;
}

.company-info {
  background-color: #f8f9fc;
  /* 白いボックス */
  padding: 20px 40px;
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.row {
  display: flex;
  padding: 24px 0;
  border-bottom: 1px solid #eee;
  /* 区切り線 */
}

/* 最後の行だけ線を表示しない */
.row:last-child {
  border-bottom: none;
}

dt {
  width: 30%;
  /* 項目名の幅 */
  font-weight: bold;
  color: #333;
}

dd {
  width: 70%;
  /* 内容の幅 */
  margin: 0;
  color: #555;
  line-height: 1.6;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .row {
    flex-direction: column;
    gap: 8px;
  }
  dt,
  dd {
    width: 100%;
  }
}
.footer-outer {
  background-color: #101828;
}
.footer {
  max-width: 1280px;
  margin: 0 auto;
  color: #fff;
  display: block;
  padding: 5%;
}
@media (min-width: 768px) {
  .footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .footer div:nth-child(1) {
    flex: 0 0 60%;
    padding-right: 40px;
    font-size: 14px;
  }
  .footer div:nth-child(2) {
    flex: 0 0 20%;
  }
  .footer div:nth-child(2) {
    flex: 0 0 20%;
  }
}
.footer div {
  margin-bottom: 60px;
}
.footer div ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer div li a {
  color: #99A1AF;
  margin-top: 0.5em;
  display: block;
  text-decoration: none;
}
.footer-bottom {
  background-color: #101828;
  color: #99A1AF;
  text-align: center;
  font-size: 12px;
  padding: 1em;
}

.text-center {
  text-align: center;
  color: #4A5565;
}

/* モーダルの基本スタイル */
.modal {
  display: none;
  /* 最初は隠す */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* 背景を暗く */
}

.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 30px;
  width: 80%;
  max-width: 400px;
  border-radius: 8px;
  text-align: center;
  position: relative;
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
}/*# sourceMappingURL=style.css.map */