* { 
  box-sizing: border-box;
}

body {
background: #e6e6e6;
font-family: "Hiragino Kaku Gothic ProB", "Yu Gothic", "Meiryo", sans-serif;
font-weight: 700; /* Yu Gothic, Meiryo などに太字を適用 */
margin: 0;
padding-top: 50px; /* ヘッダーの高さ分だけ余白を確保 */
}

body.wf-loading .feature-title {
display: none;
}

body.wf-active .feature-title {
display: block;
}

.feature-title::after {
content: '';
position: absolute;
bottom: -4px;  /* 下からの距離 */
left: 0;
height: 10px;  /* アンダーラインの太さ */
width: 0;
background-color: #ffff33;  /* アンダーラインの色 */
transition: width 1s ease;
}

.feature-title.animate::after {
width: 100%;  /* アニメーションで幅を100%に */
}

header {
display: flex;
align-items: center;
justify-content: space-between;
height: 80px;
background-color: #e6e6e6;
padding: 0 10px;
position: fixed; /* 画面の一番上に固定 */
top: 0;
left: 0;
width: 100%;
z-index: 9999;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 少し影をつけると区別しやすい */
}


h1, h2, h3, h4, h5, h6 {
  font-family: "GenShinGothic-P-Bold", sans-serif;
  font-weight: normal;
}

.hero-title {
  margin-top: 70px; /* ヘッダーの高さ分だけ余白を追加 */
}

header #header_logo {
  width: 578px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* 上揃えにする */
}

header #header_logo img {
  max-height: 50px;
  height: auto;
}

header #header_logo img {
  flex: 0 0 auto; /* 自然なサイズで表示 */
}

header #header_logo img:nth-child(1) {
  width: 150px; /* サイト全体の幅に応じて調整 */
}

header #header_logo img:nth-child(2) {
  width: 70%;
}

@media screen and (max-width: 900px) {
  header #header_logo img:nth-child(2) {
    display: none;
  }
}

/* メニュー */
.menu-toggle {
  background: none;
  border: none; /* ボーダーを完全に消す */
  outline: none; /* フォーカス時の青枠も削除 */
  box-shadow: none; /* 不要な影を削除 */
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 30px;
  flex-direction: column;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  gap: 6px;
}

/* ハンバーガーメニューの線（アイコン部分） */
.menu-toggle .line {
  display: block;
  width: 100%;
  height: 4px;
  background: #333;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}


.menu-toggle:focus,
.menu-toggle:active {
  border: none !important;  /* クリック時のボーダーを削除 */
  outline: none !important; /* フォーカス時の枠線を削除 */
  box-shadow: none !important; /* 影を削除 */
}

.menu-toggle .line {
  display: block;  /* ← ブロック要素にして確実に間隔が開くようにする */
  width: 100%;
  height: 4px;
  background: #333;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
}
.navbar ul li {
  display: inline;
}
.navbar ul li a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
}

/* メニューの動き */
.navbar ul li a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  position: relative;
  display: inline-block;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.navbar ul li a:hover {
  color: #000;
  transform: translateY(-5px); /* 少し上に移動 */
}




@media (max-width: 900px) {
  .menu-toggle {
    display: flex; /* ボタンを確実に表示 */
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 30px;
    flex-direction: column;
    cursor: pointer;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    
  }
  .navbar {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background-color: white;
      flex-direction: column;
      justify-content: center;
      align-items: center;
  }
  .navbar ul {
      flex-direction: column;
      text-align: center;
  }
  .navbar ul li {
      margin: 20px 0;
  }
  .navbar.active {
      display: flex;
  }
/* メニューが開いたときの "×" にするアニメーション */
.menu-toggle.active .line:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.menu-toggle.active .line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .line:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}
}
/* 中身 */

#about img {
  margin-top: 80px; /* 画像に直接マージンを適用 */
  display: block;
  width: 100%;
}
.hero {
  margin-top: 10px;
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #e6e6e6; /* 背景色を追加 */
}

.hero-video-container {
  display: flex;
  justify-content: center; /* 動画を中央寄せ */
  background-color: #e6e6e6; /* 背景色を追加 */
}

.hero-video {
  max-width: 1200px;
  width: 100%;
  height: auto;
  object-fit: contain;
}


.next-section {
  padding-top: 20px; /* 次のセクションとの隙間 */
}


#about h2 {
  max-width: 600px;
  padding: 0 10px;
  margin: 0 auto 30px auto;
}

#about h2 img {
  margin-top: 40px; /* 画像の上に40pxのスペースを追加 */
}


 /* 2つ分け */
 .two-column {
  max-width: 1200px; /* 最大幅を1200pxに指定 */
  margin: 0 auto;    /* セクション全体を中央に配置 */
  margin-top: 100px; 
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px; /* カラム間の余白 */
}

.image-column img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}


.text-column {
  line-height: 2.5;
  flex: 1;
  padding-left: 40px; /* 左側に40pxの余白を追加 */
  box-sizing: border-box;
}



.image-column {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-column img {
  width: 100%;          /* 親要素に対して画像を最大幅で表示 */
  max-width: 800px;     /* 必要に応じて最大幅を制限 */
  border-radius: 8px; /* 画像の角を少し丸める */
}

@media (max-width: 900px) {

  #about img {

    display: block;
    width: 100%;
  }


  .hero {/* 動画に直接マージンを適用 */
    margin-top: 20px;

  }


  .two-column {
    flex-direction: column;
    gap: 20px; /* モバイルでは余白を少し狭くする */
    margin-top: 40px; 
  }



  .text-column {
    font-size: 16px; /* モバイルで本文の文字を小さく */
    padding-left: 20px; /* モバイル版では余白を小さく */
  }
}
/* アンダーライン */
.feature-title {
  font-weight: bold;
  font-size: 38px;
  color: #4c8e8c;
  margin-bottom: 20px;
  text-align: center;
  position: relative; /* ← ここが重要 */
  display: inline-block; /* 必要に応じて */
}




/* 中央2※ */
.feature-section {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
  margin-top: 0px; 
  height: 600px;
}

.image-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  z-index: 2;
}

.image-container img {
  max-width: 600px;
  height: auto;
  display: block;
}

.text-container {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  padding: 20px;
  z-index: 1;
  text-align: right;
}
.text_01{
  line-height: 2.5;

}

.text_02{
  line-height: 2.5;
  width: 800px;
  border: 2px solid  #4c8e8c;   /* 枠線の色と太さを指定 */
  padding: 40px;            /* 枠線と中身の余白 */
  font-size: 1.2em;

}

.feature-title {
  font-family: 'fot-tsukuardgothic-std',  'GenShinGothic-P-Bold', sans-serif;

  font-size: 38px;
  color: #4c8e8c;
  margin-bottom: 20px; /* 見出しと本文の間の余白 */
}

.feature-subtitle {
  font-size: 32px;
  color: #ff6600;
  margin-bottom: 20px;
}

.feature-title_contact {
  font-weight: bold;
  font-size: 38px; /* PC版の文字サイズ */
  color: #4c8e8c;
  margin-bottom: 20px;
  text-align: center; /* 中央揃え */
  display: block;
  width: 100%;
}

/* スマホ版の文字サイズを小さくする */
@media (max-width: 900px) {
  .feature-title_contact {
    font-size: 24px; /* スマホ版の文字サイズ */
  }
}

.feature-title_contact::after {
  content: '';
  position: absolute;
  bottom: -4px;  /* 下からの距離 */
  left: 0;
  height: 10px;  /* アンダーラインの太さ */
  width: 0;
  background-color: #ffff33;  /* アンダーラインの色 */
  transition: width 1s ease;
  }
  
  .feature-title_contact.animate::after {
  width: 100%;  /* アニメーションで幅を100%に */
  }

  body.wf-loading .feature-title_contact {
    display: none;
    }
    
    body.wf-active .feature-title_contact {
    display: block;
    }



/* すべての画面サイズ共通 */
.mobile-feature-title {
  position: relative; /* 親要素を相対位置に */
  display: inline-block;
}




/* PC版でのみ改行 */

.pc-only-br {
  display: none;
}

@media (min-width: 901px) { /* PC版でのみ改行 */
  .pc-only-br {
    display: block;
  }

  

  
}

/* 中央2※テキスト左、画像右 */
.custom-feature-section {
  position: relative;
  max-width: 1200px;
  height: 600px;
  margin: 0 auto;
  padding: 20px 0;
}

.image-right-container {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  z-index: 2; /* 画像を上層に配置 */
}

.image-right-container img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;

}

.text-left-container {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2; /* テキストを画像の上に配置 */
  z-index: 1; /* テキストを下層に配置 */
  width: 65%;

  padding: 20px;

}

.custom-feature-title {
  font-size: 38px;
  color: #5fb7b6;
  margin-bottom: 20px;
}

.custom-text {
  line-height: 2.5;
  width: 800px;
  border: 2px solid  #4c8e8c;   /* 枠線の色と太さを指定 */
  padding: 40px;            /* 枠線と中身の余白 */
  font-size: 1.2em;
}

/* PC,SP使い分け */
.desktop-content {
  display: block;
}
.mobile-content {
  display: none;
}

@media (max-width: 900px) {
  .desktop-content {
    display: none;
  }
  .mobile-content {
    display: block;
  }
}


@media (max-width: 900px) {
/* mobile-content全体 */
.mobile-content {
padding: 20px;
}

/* タイトル */
/* スマホ版 タイトル */
.mobile-feature-title-wrapper {
  text-align: center;  /* タイトル全体を中央揃え */
}

.mobile-feature-title {
  font-family: 'fot-tsukuardgothic-std', 'GenShinGothic-P-Bold', sans-serif;
  font-weight: bold;
  font-size: 25px;
  color: #4c8e8c;
  margin-top: 40px;
  position: relative;
  display: inline-block;
}


/* テキスト */
.mobile-feature-text {
font-size: 13px;
line-height: 1.8;
color: #333;
margin-bottom: 20px;
}

/* 画像 */
.mobile-image-container img {
position: relative; /* absolute を relative に変更 */
left: 0;
top: 0;
width: 100%; /* 幅を100%に */
z-index: 1;
}

}
 /* ふわっと下から上に */
 
 .slidein {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1.0s ease;
}

.slidein.slidein-left {
  transform: translate(-100%, 0);
}

.slidein.slidein-right {
  transform: translate(100%, 0);
}

.slidein.slidein-up {
  transform: translate(0, -10%); 
}

.slidein.slidein-bottom {
  transform: translate(0, 100%);
}

.slidein.scrollin {
  transform: translate(0, 0) !important;
  opacity: 1 !important;
}

/* 注釈スタイル */
.annotation {
  font-size: 0.8em;
  vertical-align: super; /* 上付き文字風に */
}

.feature-annotation {
  font-size: 0.85em;
  color: #666;
  margin-top: 5px;
}


 /* product */

 #products h2 {
  max-width: 600px;  /* 幅を「ダンラップのここがすごい！」と統一 */
  padding: 30px 10px;
  margin: 0 auto 30px auto;
}

#products img {
  margin-top: 20px;  /* 画像のマージンを統一 */
  display: block;
  width: 100%;
}


 .spec_content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.spec_row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.spec_image,
.spec_table {
  flex: 1;
  padding:10px;
  box-sizing: border-box;
}

.spec_image img {
  width: 100%;
  height: auto;
}

.spec_table table {
  width: 100%;
  border-collapse: collapse;
}

.spec_table th, .spec_table td {
  border: 1px solid #ddd;
  padding: 28px;
  text-align: left;
  font-size: 120%;
}

.spec_table th {
  background-color: #d4d2d2;
}
.buy-button {
  margin-top: 20px;
  display: block;
  width: 100%;
  padding: 18px;
  font-size: 23px;
  text-align: center;
  color: #333;
  border: 2px solid #333;
  border-radius: 38px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s; /* 背景と文字色の変化をスムーズに */
}

.buy-button:hover {
  background:  #ffff33;
  color: #000; /* マウスオーバー時に文字色も変更する場合はこの行を残す */
}


.step {
  max-width: 50%; 
  height: auto;

  }

    


.spec_tax{
  font-size: 90%;
  color: darkolivegreen;
    }


@media (max-width: 900px) {
  .spec_row {
    flex-direction: column;
  }

  .spec_image,
  .spec_table {
    flex: 100%;
    padding: 5px;
  }

  .step {
    max-width: 90%; 
    height: auto;

    }

    .spec_table th, .spec_table td {
      border: 1px solid #ddd;
      padding: 15px;
      text-align: left;
      font-size: 14px; /* スマホ用の小さいフォント */
    }
    
    .buy-button {
      margin-top: 20px; 
      font-size: 14px; /* スマホ用の小さいフォント */
    }


  #about img  {
    margin-top: 220px; /* モバイルでは少し余白を減らす */
    width: 100%;

}

#products img{
  margin-top: 50px; /* モバイルでは少し余白を減らす */
  width: 100%;

}

}

/* カルーセル */
/* カルーセル全体 */
.carousel {
  position: relative;
  width: 100%;
  max-width: 500px;
  overflow: hidden;
  aspect-ratio: 4 / 3; /* 画像の縦横比を固定 */
}

/* カルーセルのスライドコンテナ */
.carousel-container {
  display: flex;
  width: 100%;
  height: 100%; /* 高さを明示的に設定 */
  transition: transform 0.5s ease-in-out;
}

/* 各スライド */
.carousel-item {
  flex: 0 0 100%; /* 各スライドが親要素の幅にぴったり合う */
  width: 100%;
  height: 100%; /* 高さを確実に設定 */
  object-fit: contain; /* 画像を枠内に縮小表示（トリミングなし） */
  display: block;
}


.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

.prev { left: 10px; }
.next { right: 10px; }


/* お見積もりボタン */
/* お見積もりボタンの中央揃え */
.custom-button-wrapper {
  display: flex;
  justify-content: center; /* 左右中央揃え */
  align-items: center; /* 上下中央揃え */
  width: 100%;
  margin: 50px auto; /* 上下の余白を適用 */
}

/* ボタンデザイン */
a.btn_06 { 
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  width: 60%;
  margin: auto;
  padding: 15px 40px;
  font-weight: bold;
  border-radius: 50px;
  background:  #4c8e8c;
  color: #fff;
  font-size: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease; /* border-bottom の代わりに box-shadow を使う */
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  border-bottom: 7px solid transparent; /* 空の border を維持 */
  box-shadow: 0px 7px 0px #2f4d4c; /* ボーダーの代わり */
}

/* ホバー時のエフェクト（box-shadow のみ変更） */
a.btn_06:hover {
  transform: translateY(3px); /* ボタン全体を下げる */
  box-shadow: 0px 3px 0px #2f4d4c; /* 影を薄くして押し込まれたように見せる */
  color: #fff;
}


/* スマホ用 */
@media (max-width: 900px) { 
  a.btn_06 { 

    width: 90%; /* 横幅を80%に */
    margin: auto;
    padding: 10px 20px; /* ボタンの高さと横幅を大きく */
    font-weight: bold;
    border-radius: 50px;
    border-bottom: 7px solid #4c8e8c;
    background: #4c8e8c;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
  }
  

}


/* 実用 */
.usage-examples {
max-width: 1200px; /* セクションの最大幅を設定 */
margin: 0 auto; /* 左右中央寄せ */
text-align: center; /* テキスト（キャプション）を中央揃え */
padding: 20px 0;
}

.swiper-container {
position: relative;
width: 100%;
max-width: 1000px; /* カルーセルの最大幅を設定（調整可能） */
margin: 0 auto; /* 左右中央寄せ */
}


/* 丸ボタンをPC版で非表示 */
@media (min-width: 901px) {
.swiper-pagination {
  display: none !important;
}
}

/* PCでは3枚横並び */
@media (min-width: 901px) {
.swiper-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.swiper-slide {
  flex: 1;
  max-width: 33%;
}
}

/* スマホではカルーセル */
@media (max-width: 900px) {
.swiper-wrapper {
  display: flex;
}
.swiper-slide {
  width: 100%;
}
}

.swiper-slide img {
width: 100%;
max-width: 400px; /* 画像サイズ調整 */
height: auto;
border-radius: 10px;
}

.caption {
margin-top: 0px;
font-size: 16px;
color: #333;
}

/* スライドボタンのデザイン（スマホ用） */
.swiper-pagination {
position: absolute;
bottom: 10px;
text-align: center;
width: 100%;
}

.swiper-pagination-bullet {
width: 10px;
height: 10px;
background-color: #ccc;
border-radius: 50%;
display: inline-block;
margin: 50px 5px !important;
cursor: pointer;
transition: background 0.3s;
}

.swiper-pagination-bullet-active {
background-color: #4c8e8c;
}

/* スマホ時の丸ボタン（スライドのドット）を画像の上に配置 */
@media (max-width: 900px) {
.swiper-container {
  position: relative;
}

.swiper-pagination {
  position: absolute !important;
  top: 15%; /* 画像の上に配置 */
  left: 50%;
  transform: translateX(-50%);
  z-index: 100; /* 画像よりも前面に確実に配置 */
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.8); /* 半透明の白 */
  border: 1px solid #333; /* 枠線を追加 */
  opacity: 1 !important; /* 確実に表示させる */
}

.swiper-pagination-bullet-active {
  background-color: #4c8e8c; /* アクティブ時の色 */
}
}

/* 問い合わせセクション */
.contact-section {
  max-width: 1200px;
  margin: 50px auto;
  text-align: center; /* テキストを中央揃え */
  color: #333;
}

/* 2カラムコンテナ */
.contact-container {
display: flex;
justify-content: space-between;
gap: 20px;
max-width: 1000px;
margin: 0 auto;
}

/* 各ボックス（電話・WEB） */
.contact-box {
flex: 1;
border: 2px solid #4c8e8c;
padding: 20px;
text-align: center;
}

/* 電話番号 */
.phone-number {
font-size: 24px;
font-weight: bold;
margin-top: 10px;
}


/* WEB問い合わせのボタン */
.contact-buttons {
display: flex;
flex-direction: column;
gap: 10px;
margin-top: 10px;
}

.contact-button {
display: block;
padding: 10px;
font-size: 16px;
color: #333;
border: 2px solid #4c8e8c;
text-decoration: none;
transition: background 0.3s, color 0.3s;
}

.contact-button:hover {
background: #333;
color: #fff;
}

/* スマホ対応 */
@media (max-width: 900px) {
.contact-container {
  flex-direction: column;
  margin: 10px;
}
}

/* フッター全体 */
.footer {
  margin-top: 50px;
background: #333; /* ダークグレーの背景 */
color: #fff;
padding: 30px 20px;
text-align: center;
}

/* フッターのコンテナ */
.footer-container {
max-width: 1200px;
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
}

/* リンクスタイル */
.footer-links a {
color: #fff;
text-decoration: none;
font-weight: bold;
transition: color 0.3s;
}

.footer-links a:hover {
color: #caffff; /* ホバー時に色を変更 */
}

.footer-info a {
color: #fff;
text-decoration: none;
font-weight: bold;
transition: color 0.3s;
}

.footer-info a:hover {
color: #caffff; /* ホバー時に色変更 */
}


/* フッター情報 */
.footer-info p {
margin: 5px 0;
font-size: 14px;
}

/* 著作権部分 */
.footer-bottom {
margin-top: 20px;
font-size: 12px;
opacity: 0.8;
}

/* PC表示で横並び */
@media (min-width: 900px) {
.footer-container {
  flex-direction: row;
  justify-content: space-between;
  text-align: left;
}
.footer-info {
  text-align: left;
}
}
/* フローティングボタンのコンテナ */
.floating-buttons {
position: fixed;
bottom: 30px;
right: 0; /* 画面の右端に配置 */
display: flex;
flex-direction: column;
gap: 15px; /* ボタン間の間隔 */
z-index: 1000;
padding-right: 10px; /* 画面の端にくっつきすぎないよう調整 */
}

/* 共通のフローティングボタンデザイン */
.floating-button {
background: #ffff33; /* ホバー時に明るい黄色 */
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 80px;
height: 80px;

color: #333; /* 文字 & アイコンの色（濃いグレー） */
border-radius: 50%;
text-decoration: none;
font-size: 13px;
font-weight: 500; 
text-align: center;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
transition: all 0.3s ease-in-out;
position: relative;
margin-left: auto; /* 右寄せを確実にする */
}

/* アイコンデザイン */
.floating-button i {
font-size: 22px;
color: #333;
margin-bottom: 3px;
}

/* ホバー時のエフェクト */
.floating-button:hover {
background: #fffcc5; /* 背景色（柔らかい黄色） */

transform: translateY(-3px);
box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
}

/* スマホ用サイズ調整 */
@media (max-width: 900px) {
.floating-buttons {
  bottom: 20px;
  right: 0;
  padding-right: 5px; /* 端の調整 */
  gap: 10px;
}

.floating-button {
  width: 60px;
  height: 60px;
  font-size: 12px;
  font-weight: 400;
}

.floating-button i {
  font-size: 18px;
}
}
/* アンダーライン*/
.feature-title, .mobile-feature-title {
  display: inline-block;
  position: relative;
  font-weight: bold;
  text-decoration: none;
}

.feature-title::after, .mobile-feature-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 8px;
  background-color: #ffff33;
  transition: width 7s ease-in-out;
}

.underline-active::after {
  width: 100%;
}


@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* 文字がバウンドする（動きがはっきり）*/

.feature-title_contact {
  display: inline-block;


  animation: bounce 1.5s infinite;
}
