@charset "UTF-8";
/*ヘッダー*/
.g-nav .g-nav__list .nav-link {
  color: #333333;
}
.u-font-ac {
  color: #00b2eb;
}
.g-nav {
  background-color: #ffffff;
}
.c-visual .c-visual__catchcopy {
  filter: drop-shadow(5px 5px 5px #4e4e4e);
  top: 65%;
}
.c-image .c-image__src.--ratio:after {
  background-color: #0000007d;
}

.c-visual .c-visual__sttl {
  color: #fff;
}
/*スマホヘッダー*/
.g-header .g-header__nav-sp-btn + .lower .ttl.--tel {
  background-color: #431a01;
}
.g-header .g-header__nav-sp-btn + .lower .ttl.--mail {
  background-color: #10ac57;
}
.g-header .g-header__nav-sp-btn {
  background-color: #10ac57;
}
@media screen and (max-width: 768px) {
  .c-visual .c-visual__catchcopy {
    top: 70%;
  }
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

/*セクション*/
.c-after__ac {
  background-color: #10ac57;
}
.c-triangle:after {
  border-color: #10ac57 transparent transparent transparent;
}
.c-headline__type3 {
  border-left: 6px solid #10ac57;
}
.c-image .c-image__caption {
  background-color: #10ac57;
}
.c-headline-grad:before {
  border-color: #00aeee transparent transparent transparent;
}
.p-common-recruit .p-common-recruit__list {
  width: 100%;
  display: block;
}
.c-after__white.--5 {
  background-color: #ffffffc7;
}
.c-section.--right-radius-bg:before {
  background: #dd551a;
  opacity: 1;
}
.ti-widget.ti-goog .ti-rating-text strong.ti-rating {
  color: #fff;
}

.contain {
  background-size: contain !important;
}

.c-headline-leftbig .c-headline-leftbig__sttl {
  color: #00b2eb;
}

/*フッター*/
.g-gmap iframe {
  height: 450px;
  margin-top: 0px;
}
.g-fixarea .contact--1 {
  background-color: #ff7e00;
}
.g-fixarea .contact--1:hover {
  background-color: #e57201;
}
.g-fixarea .contact--2 {
  background-color: #10ac57;
}
.g-fixarea .contact--2:hover {
  background-color: #015eba;
}
.preloader .preloader-after,
.preloader .preloader-before {
  background: linear-gradient(to right, #10ac57, #015eba);
}
.g-hamburger {
  background-color: #10ac57d6;
}
.c-after__black {
  background-color: #f5f5f5;
}
.g-fixarea .g-fixarea-footer__item {
  background: #10ac57;
}
.g-fixarea .g-fixarea-footer {
  border-top: 1px solid #10ac57;
}
.g-pagetop a {
  background: #10ac57;
}
/*下層ページ*/
.c-sitemap .nav-item a {
  background-color: #10ac57;
}
.post-content h2 {
  background-color: #10ac57;
}
.u-font-kc {
  color: #10ac57;
}
.c-headline__type:before {
  background: #10ac57;
}
.c-headline__type2-ttl:after {
  color: #10ac57;
}
.c-section:nth-child(odd) {
  background-color: #fff;
}
.p-contact .g-form {
  background-color: #fff;
}
.c-after__bc {
  background-color: #f5f5f5;
}
.c-box {
  --bc: #10ac57;
}
.table {
  border-collapse: collapse; /* ボーダーを重ねないように設定 */
  width: 100%;
  margin-bottom: 1rem;
  color: var(--bs-table-color);
  vertical-align: top;
  border: 1px solid var(--bs-table-border-color); /* テーブル全体にボーダーを追加 */
}
.table th,
.table td {
  border: 1px solid var(--bs-table-border-color); /* セルにボーダーを追加 */
  padding: 0.5rem 0.5rem;
  background-color: var(--bs-table-bg);
}
.g-gmap {
  filter: grayscale(0%);
}
/*トップページSERVICEセクション*/
.p-common-menu .p-common-menu__link {
  background-color: #fff;
  border-radius: 10px;
  display: block;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 軽い影を追加 */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* ホバー時の変化をスムーズに */
  padding: 20px 16px; /* ← これを追加して余白を確保 */
}
.p-common-menu__link:hover {
  transform: translateY(-5px); /* ホバー時に少し浮き上がる */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* ホバー時の影を少し強調 */
}
.p-common-layout .c-image.--illust {
  top: 5px;
}
.p-common-layout .c-image.--illust2 {
  top: 10px;
}
/* トップスライダー */
.picture_box {
  overflow: hidden; /* 枠外の画像を隠す */
  width: 100%; /* スライダー全体の幅を指定 */
  position: relative;
  background-color: #f5f5f5; /* 必要なら背景色を調整 */
}

.picture_slider {
  display: flex; /* フレックスで横並び */
  gap: 10px; /* 各画像の間隔 */
  animation: slide 20s linear infinite; /* アニメーション追加 */
}

.c-image {
  width: 100%; /* グリッドに合わせてサイズ調整 */
  height: auto; /* アスペクト比を維持 */
}

.c-btn {
  background-color: #dd551a;
}

.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}

.t-link ul li {
  width: 48%;
}

/* アニメーション */
@keyframes slide {
  0% {
    transform: translateX(0); /* 初期位置 */
  }
  100% {
    transform: translateX(-100%); /* 左方向へ流れる */
  }
}

/* スライダーのループを実現するために複製要素を使用 */

/*トップセクション*/

.c-hover__link {
  position: relative;
  display: block;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  z-index: 10;
  text-shadow: 0 2px 4px rgb(0 0 0);
}

.service-text h2 {
  font-size: 24px;
  font-weight: bold;
}

.service-text p {
  font-size: 16px;
  margin-top: 5px;
}

.bp-cc {
  background-position: center center;
}

.bk-orange {
  background: #dd551a;
}

.orange {
  color: #dd551a;
}

.bk-white {
  background: #fff;
}

.k-list li {
  background: #f5f5f5;
  margin-bottom: 5px;
  font-weight: bold;
}

.slick-track {
  transform: none !important;
}

.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}

.carousel-indicators [data-bs-target] {
  background-color: #000;
}

.carousel-indicators {
  bottom: -15px;
}

/* ==============================
   FLOWセクション（変更後）
   ============================== */

.flow {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 3px solid rgb(107, 144, 219);
}

.flow > li {
  padding: 30px;
}

.flow > li:not(:last-child) {
  border-bottom: 3px solid rgb(107, 144, 219);
  position: relative;
}

.flow > li:not(:last-child)::before,
.flow > li:not(:last-child)::after {
  content: "";
  border: solid transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.flow > li:not(:last-child)::before {
  border-width: 22px;
  border-top-color: rgb(107, 144, 219);
}

.flow > li:not(:last-child)::after {
  border-width: 18px;
  border-top-color: #fff;
}

/* 行本体（時間＋本文） */
.flow > li dl {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
}

/* 左側：時間＋見出し（固定40%） */
.flow > li dl dt {
  font-size: 20px;
  font-weight: 600;
  color: rgb(107, 144, 219);
  /* 固定幅化（縮ませない） */
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
  max-width: 40%;
  margin-right: 3vw;
  text-align: center;
}

/* 時刻バッジ（親幅100%で揃える） */
.flow > li dl dt .icon {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 5px 10px;
  margin-bottom: 10px;
  border-radius: 20px;
  font-size: 12px;
  text-align: center;
  color: #fff;
  background: linear-gradient(
    to right,
    rgba(107, 144, 219, 1) 0%,
    rgba(102, 213, 233, 1) 100%
  );
  /* 数字の幅ブレ対策（見た目安定用） */
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  white-space: nowrap;
}

/* 右側：本文（可変・折返し許可） */
.flow > li dl dd {
  margin: 0;
  line-height: 1.8;
  -ms-flex: 1 1 0%;
  flex: 1 1 0%;
  min-width: 0; /* ★重要：dd 側に幅を融通させる */
  word-break: break-word; /* 長い語のはみ出し対策（必要に応じて） */
}

.s-table th {
  color: #fff;
  background: #6fbd29;
  text-align: center;
  border-right: 1px solid #a1d47f;
}
.s-table td {
  background: #f1ffe4;
  border-right: rgba(0, 0, 0, 0.05) 1px solid;
}

.g-hamburger .g-hamburger__body {
  overflow-y: hidden;
}

.g-hamburger .g-hamburger__body .list .nav-link {
  align-items: center;
  line-height: 3;
}

/* スマホなど狭幅時：縦積み */
@media (max-width: 768px) {
  .flow > li dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }
  .flow > li dl dt {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: none;
    margin-right: 0;
    text-align: left;
  }
  .flow > li dl dd {
    margin-top: 0.75rem;
  }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .c-hover__link {
    margin-bottom: 20px;
  }

  .service-text h2 {
    font-size: 18px;
  }

  .service-text p {
    font-size: 14px;
  }

  .col-lg-8,
  .col-lg-4,
  .col-lg-6 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .col-lg-8 {
    width: 100%;
  }

  .col-lg-6 {
    width: 100%;
  }

  .col-lg-4 {
    width: 100%;
  }

  .c-section {
    margin-left: 5px;
    margin-right: 5px;
  }

  .t-link ul li {
    width: 100%;
  }

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

  .g-hamburger .g-hamburger__body .list .nav-link {
    line-height: 1.2;
  }
}
