
/* .display_text {
  font-size: calc(1.625rem + 1.5vw);
  font-weight: 900;
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.22);
}

@media screen and (max-width: 768px) {
  .display_text {
    font-size: calc(1.625rem + 0.2vw);
    font-weight: 900;
    line-height: 1.4;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.22);
  }
} */

.carousel-indicators [data-bs-target] {
  height: 8px;
}

/* =========================================================
  ケン・バーンズ効果 (画像ズーム)
========================================================= */

/* 1. アニメーションの定義 */
@keyframes kenBurnsZoom {
  from {
    transform: scale(1); /* 開始時: 拡大なし */
  }
  to {
    transform: scale(1.1); /* 終了時: 5%拡大 */
  }
}

/* 2. 画像へのアニメーション適用 */
.carousel-item img.kenburns-zoom {
  /* アニメーション名、時間、イージング（滑らかさ）、終了状態（forwardsで最終状態を維持） */
  animation: kenBurnsZoom 5s ease-out forwards;
  
  /* トランジションが切り替わったときにスムーズにリセットされるように */
  transition: transform 0s;
}

/* 3. 親要素の設定 */
/* アニメーションをカルーセル全体に適用するため、画像がはみ出しても見えないように設定 */
#header_carousel {
  overflow: hidden; 
  position: relative;
}

/* =========================================================
  テキストマスク（左入→滞留→右抜け）
========================================================= */
.headlineReveal {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  margin-top: 70px;
}

.headlineReveal__content {
  position: relative;
  z-index: 1;
  opacity: 0;
}

.headlineReveal__bar {
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: 2;
  transform: translateX(-100%);
  will-change: transform;
}

/* active */
.headlineReveal.is-active .headlineReveal__bar {
  animation: revealBarSharp 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.headlineReveal.is-active .headlineReveal__content {
  animation: revealText 0.2s ease-out forwards;
  animation-delay: 0.46s;
}

@media screen and (max-width: 768px) {
  .headlineReveal {
    position: relative;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    margin-top: 10px;
  }
}




/* 白帯 */
@keyframes revealBarSharp {
  0% {
    transform: translateX(-100%);
  }
  48% {
    transform: translateX(0);
  }
  52% {
    transform: translateX(4%);
  }
  100% {
    transform: translateX(102%);
  }
}

/* テキスト表示 */
@keyframes revealText {
  to {
    opacity: 1;
  }
}

/* メインビジュアル */
#header_carousel .carousel-item {
  height: 40vh;
}

#header_carousel .carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

@media (max-width: 768px) {
  #header_carousel .carousel-item {
    position: relative;
    min-height: 200px;
    height: 30vh;
  }
  
}




/* ==============================
  サービス導入の流れ
============================== */

/* カード全体 */
.feature-card {
  height: 100%;
}

/* 画像エリア */
.feature-img {
  position: relative;
  width: 100%;
  /* aspect-ratio: 4 / 3; */
  overflow: hidden;
}

.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* タイトル */
.feature-title {
  margin-top: 14px;
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

.service_title {
  margin-top: 14px;
  font-size: 24px;
  font-weight: 700;
  color: #333;
  text-align: center;
}

/* 説明文 */
.feature-text {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}



.development_flow_list {
  position: relative;
}

/* 縦ライン */
.development_flow_list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 4px;
  width: 2px;
  height: calc(100% - -10px);
  background: #eee;
}

@media screen and (max-width: 768px) {
  .development_flow_list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 4px;
  width: 2px;
  height: calc(100% - 10px);
  background: #ddd;
  }
}

.development_flow_item {
  display: flex;
  gap: 24px;
  position: relative;
  padding-bottom: 40px;
}

.development_flow_item.is-last {
  padding-bottom: 0;
}

.development_flow_num {
  width: 10px;
  height: 10px;
  background: #5a3a1a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  z-index: 1;
}

.development_flow_content {
  margin-top: -10px;
  display: flex;
  align-items: baseline;
  gap: 22px;
}

.development_flow_content h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: normal;
}

.development_flow_content p {
  margin: 0;
  line-height: 1.8;
  font-size: 16px;
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991.98px) {
  .service_title {
    margin-top: 14px;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    text-align: center;
  }
  .service_text {
    height: 2em;
  }
}


/* =========================================================
  ボタン
========================================================= */
.application_btn_wrap {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 20px 0 20px;
}

.container.default a.application_btn {
  text-decoration: none;
}

.application_btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 500px;
  height: 90px;
  background: #d1a100;
  text-decoration: none;
  overflow: hidden;
}

/* 中央テキスト */
.application_btn-text {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* 矢印位置（右寄せ） */
.application_btn .arrow-box {
  position: absolute;
  right: 30px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* hover時：矢印だけ動かす */
.application_btn:hover .arrow-box {
  transform: translateX(6px);
}

.application_btn:hover {
  opacity: 0.85;
}
.application_text {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .application_btn_wrap {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 80px;
    padding: 20px 0 60px;
  }

  .application_btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 90px;
    background: #d1a100;
    text-decoration: none;
    overflow: hidden;
    padding-left: 20px;
  }

  .application_btn-text {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
  }
  .application_btn .arrow-box {
    position: absolute;
    right: 20px;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }
}


/* Tablet */
@media (min-width: 768px) and (max-width: 991.98px) {
  .application_btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 90px;
    background: #d1a100;
    text-decoration: none;
    overflow: hidden;
    padding-left: 20px;
  }
}

/* ==============================
  タイトル
============================== */
.basic_title {
  text-align: center;
  padding: 20px;
  color: #8b6a2e;
  border: solid 1px #8b6a2e;
}

@media screen and (max-width: 768px) {
  .basic_title {
    text-align: center;
    background: #8b6a2e;
    padding: 20px;
    color: #fff;
    font-size: 18px;
  }
}



/* ==============================
  table
============================== */
.company-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 16px;
}

.company-table th,
.company-table td {
  border: 1px solid #ededed;
  padding: 18px 20px;
  vertical-align: middle;
}

/* 左カラム */
.company-table th {
  width: 180px;
  background: #f7f7f7;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
}

/* 右カラム */
.company-table td {
  line-height: 1.7;
}

/* 複数行セルの余白調整 */
.company-table td br {
  line-height: 2;
}

@media (max-width: 768px) {
  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
  }

  .company-table th {
    background: #f2f2f2;
  }

  .company-table tr {
    margin-bottom: 16px;
    display: block;
  }
}

.ceo_comment {
  padding: 40px;
  background: #f5f5f5;
}

@media (max-width: 768px) {
  .ceo_comment {
    padding: 20px;
    background: #f5f5f5;
  }
}

/* 右リスト */
.feature_list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature_list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.6;
}

.feature_list li:last-child {
  margin-bottom: 0;
}

/* 緑丸 */
.feature_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  background: #0f8f7c;
  border-radius: 50%;
}








/* ==============================
  footer
============================== */
@media screen and (max-width: 768px) {
  .row + .imi-footer-bottom {
    margin-bottom: 10px;
  }
  /* .btn.btn-lg.btn-primary.btn-lg-square.rounded-circle.back_to_top {
    bottom: 95px;
  } */
}
