@charset "UTF-8";
/* CSS Document */
/* ===== 基本スタイル ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
figure {
  margin: 0;
}
figure img {
  width: 100%;
}
img {
  width: 100%;
}
body {
  color: #2e2e2e;
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  font-size: 18px;
}
span.aks {
  display: inline-block;
}
h3 {
  font-size: 32px;
  font-weight: 700;
  color: #2e2e2e;
  margin-bottom: 15px;
  position: relative;
  padding-left: 60px; /* アイコン画像分のスペースを確保 */
  display: inline-block; /* インラインブロック要素に変更 */
  letter-spacing: 1px;
}
ol, ul {
  list-style: none;
  padding-left: 0; /* 左の余白もなくすなら */
}
/* ===== ヘッダー ===== */
#header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0);
}
#header header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px auto;
  padding: 0 30px;
}
#header h1 {
  margin: 0;
}
#header h1 img {
  height: 65px;
  width: auto;
}
#header nav {
  background-color: #ffffff;
  border-radius: 50px;
  height: 80px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
#header nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 10px 20px 10px 30px;
  height: 100%;
}
#header nav ul li {
  margin: 0 10px;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
}
#header nav ul li:first-child {
  color: #2e2e2e;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 36px;
  font-family: "DIN Alternate", "Bahnschrift", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
}
#header nav ul li img {
  height: 40px;
  width: auto;
  flex-shrink: 0;
}
#header nav ul .form {
  background-color: #ff6f61;
  border-radius: 50px;
  margin: 0 10px;
  padding: 0; /* パディングを削除 */
}
#header nav ul .form a {
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 1px;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 30px; /* パディングをaタグに移動 */
  display: block; /* ブロック要素に変更してクリック領域を拡大 */
  width: 100%; /* 幅を100%に */
  height: 100%; /* 高さを100%に */
}
#header nav ul li a {
  text-decoration: none;
  color: #2e2e2e;
  font-weight: 600;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}
#header nav ul li a:hover {
  opacity: 0.7;
}
/* ホバー効果をaタグに移動 */
#header nav ul .form a:hover {
  color: #ffffff;
  opacity: 0.7;
}
/* 電話番号と受付時間のスタイル */
#header nav ul li.phone-info {
  color: #2e2e2e;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-right: 15px;
}
#header nav ul li.phone-info .phone-number {
  font-size: 36px;
  font-family: "DIN Alternate", "Bahnschrift", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}
#header nav ul li.phone-info .phone-number img {
  height: 40px;
  width: auto;
  flex-shrink: 0;
}
#header nav ul li.phone-info .reception-time {
  font-size: 12px;
  margin-top: 2px;
  margin-left: auto;
  font-weight: 400;
}
/* デフォルト（1100px以上）でハンバーガーメニュー関連を完全に非表示 */
.hamburger-menu, .mobile-menu-overlay, .mobile-menu-content {
  display: none;
}
/* ===== メインビジュアル ===== */
#main-visual {
  width: 100%;
  height: 100vh;
  background-image: url(../img/fv-wave.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  background-color: #f9f7f4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 120px; /* ヘッダーの高さ分のパディングを追加 */
}
#main-visual .main-visual_inner {
  width: 90%;
}
#main-visual .main-visual_inner .flex-area {
  display: flex;
  gap: 70px;
  position: relative;
  justify-content: space-between;
  align-items: center; /* 上下中央揃えを追加 */
}
#main-visual .main-visual_inner .text-area {
  width: 60.1%;
  padding-left: 1.5%;
  text-align: left;
}
#main-visual .main-visual_inner .text-area h2 {
  overflow: hidden;
  font-size: 2.0vw;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.6;
}
#main-visual .main-visual_inner .main-visual_title_top {
  font-size: 40px;
  letter-spacing: 1px;
}
#main-visual .main-visual_inner .main-visual_title_top .border {
  font-size: 2.5em;
  color: #2d8ce2;
  background-color: #fff68a;
  padding: 10px 20px;
}
#main-visual .main-visual_inner .main-visual_title_bottom {
  margin-top: 30px;
}
#main-visual .main-visual_inner .main-visual_title_bottom p {
  font-size: 1.3vw;
  letter-spacing: 1px;
  background-color: #2d8ce2;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
}
#main-visual .main-visual_inner .main-visual_title_bottom img {
  margin-top: 30px;
}
/*　スライダーのスタイル */
#main-visual .main-visual_inner .image-area {
  opacity: 1;
  visibility: inherit;
  transform: translate(0px, 0px);
  position: relative;
  width: 55%; /* 幅を追加 */
  height: 650px;
}
#main-visual .main-visual_inner .image-area .slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
}
#main-visual .main-visual_inner .image-area .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
#main-visual .main-visual_inner .image-area .slide.active {
  opacity: 1;
}
#main-visual .main-visual_inner .image-area .slide img {
  width: 100%;
  height: 100%;
  transform: translate3d(0px, 0px, 0px);
  object-fit: cover;
}
/* インジケーターのスタイル */
#main-visual .main-visual_inner .image-area .slider-indicators {
  position: absolute;
  bottom: -40px;
  right: 0;
  display: flex;
  gap: 10px;
}
#main-visual .main-visual_inner .image-area .indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
#main-visual .main-visual_inner .image-area .indicator.active {
  background-color: #ff6f61;
}
/* メダル画像の追加スタイル */
#main-visual .main-visual_inner .image-area {
  opacity: 1;
  visibility: inherit;
  transform: translate(0px, 0px);
  position: relative;
  width: 55%; /* 幅を追加 */
  height: 650px;
}
#main-visual .main-visual_inner .image-area::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -70px;
  width: 200px;
  height: 200px;
  background-image: url(../img/medal.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 20;
}
/* ===== メイン ===== */
/* ===== こんなことが気になっていませんか？ ===== */
#trouble {
  background-color: #f9f7f4;
}
#trouble .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 150px 20px;
}
#trouble .trouble_title {
  text-align: center;
  margin-bottom: 50px;
}
#trouble .trouble_title h3 {
  font-size: 32px;
  font-weight: 700;
  color: #2e2e2e;
  margin-bottom: 15px;
  position: relative;
  padding-left: 60px; /* アイコン画像分のスペースを確保 */
  display: inline-block; /* インラインブロック要素に変更 */
  letter-spacing: 1px;
}
#trouble .trouble_title h3::before {
  content: "";
  position: absolute;
  left: 10px;
  top: -20px; /* 上に配置するために変更（数値は調整可能） */
  transform: none; /* 中央揃えのtransformを削除 */
  width: 50px; /* アイコン画像の幅 */
  height: 50px; /* アイコン画像の高さ */
  background-image: url(../img/onayami_icon.png); /* アイコン画像のパス */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#trouble .trouble_title p {
  font-size: 16px;
  color: #666;
  letter-spacing: 1px;
}
#trouble .trouble_title p span {
  color: #ff6f61;
  font-weight: 600;
}
#trouble .accordion {
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0 7px 15px -5px rgb(0 0 0 / 5%);
  background-color: #fff;
  align-self: start; /* 追加：各アコーディオンが独自の高さを持つように */
}
#trouble .accordion-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列固定 */
  gap: 30px 50px;
  padding: 30px 50px;
  justify-content: center; /* グリッド全体を中央揃え */
  margin: 0 auto; /* グリッド自体を中央揃え */
  grid-auto-rows: min-content; /* 追加：行の高さを内容に合わせる */
}
#trouble .accordion summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  color: #333333;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 1px;
}
#trouble .accordion summary::-webkit-details-marker {
  display: none;
}
#trouble .accordion summary::before, #trouble .accordion summary::after {
  width: 3px;
  height: .9em;
  border-radius: 5px;
  background-color: #333333b3;
  content: "";
}
#trouble .accordion summary::before {
  position: absolute;
  right: 2em;
  rotate: 90deg;
}
#trouble .accordion summary::after {
  transition: rotate .3s;
  margin-left: 15px;
}
#trouble .accordion[open] summary::after {
  rotate: 90deg;
}
#trouble .accordion p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: .3em 2em 1.5em;
  color: #333333;
  transition: transform .5s, opacity .5s;
}
#trouble .accordion[open] p {
  transform: none;
  opacity: 1;
  letter-spacing: 1px;
}
#trouble .accordion p span {
  color: #ff6f61;
  font-weight: 600;
}
/* ===== 理由 ===== */
#reason .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 150px 20px 100px;
}
#reason .reason_title {
  text-align: center;
  margin-bottom: 50px;
}
#reason .reason_title h3 span {
  font-weight: bold;
  color: #fff;
  background-color: #ff6f61;
  padding: 5px 5px;
}
#reason .reason_title h3::before {
  content: "";
  position: absolute;
  left: 10px;
  top: -20px; /* 上に配置するために変更（数値は調整可能） */
  transform: none; /* 中央揃えのtransformを削除 */
  width: 50px; /* アイコン画像の幅 */
  height: 50px; /* アイコン画像の高さ */
  background-image: url(../img/light_icon.png); /* アイコン画像のパス */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#reason .reason_title p {
  font-size: 16px;
  color: #666;
  letter-spacing: 1px;
}
#reason .reason_title p span {
  color: #ff6f61;
  font-weight: 600;
}
#reason .reasons-list {
  display: flex;
  flex-direction: column;
  gap: 70px;
  max-width: 900px;
  margin: 100px auto;
}
/* 画像付きのポイント（1〜4） */
#reason .reason-item.with-image {
  display: flex;
  align-items: center;
  gap: 30px;
  background-color: #f9f7f4;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
#reason .reason-image {
  flex-shrink: 0;
  width: 150px;
  height: 150px;
}
#reason .reason-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
#reason .reason-content {
  flex: 1;
}
#reason .reason-content h4 {
  font-size: 24px;
  color: #2d8ce2;
  margin-bottom: 15px;
  letter-spacing: 1px;
}
#reason .reason-content p {
  letter-spacing: 1px;
}
/* 文章のみのポイント（5〜7） */
#reason .reason-item.text-only {
  background-color: #f9f7f4;
  border-radius: 15px;
  padding: 30px 30px 30px 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
#reason .reason-item.text-only h4 {
  font-size: 20px;
  color: #2d8ce2;
  margin-bottom: 15px;
  letter-spacing: 1px;
}
#reason .reason-item.text-only p {
  letter-spacing: 1px;
}
/* 選ばれる理由セクション - POINT画像の追加 */
#reason .reason-item {
  position: relative; /* 疑似要素の基準点として設定 */
}
#reason .reason-item::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -3%;
  width: 60px;
  height: 60px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 10;
}
/* 各理由項目に対応するPOINT画像を設定 */
#reason .reason-item:nth-child(1)::before {
  background-image: url(../img/p01.png);
}
#reason .reason-item:nth-child(2)::before {
  background-image: url(../img/p02.png);
}
#reason .reason-item:nth-child(3)::before {
  background-image: url(../img/p03.png);
}
#reason .reason-item:nth-child(4)::before {
  background-image: url(../img/p04.png);
}
#reason .reason-item:nth-child(5)::before {
  background-image: url(../img/p05.png);
}
#reason .reason-item:nth-child(6)::before {
  background-image: url(../img/p06.png);
}
#reason .reason-item:nth-child(7)::before {
  background-image: url(../img/p07.png);
}
#reason .reason_note {
  border: 1px solid #2e2e2e;
  padding: 50px;
  max-width: 900px;
  margin: 0 auto;
}
#reason .reason_note .prevention_title {
  text-align: center;
}
#reason .reason_note .prevention_title h3 {
  font-size: 22px;
  font-weight: bold;
  padding: 0;
  margin-bottom: 40px;
}
#reason .reason_note .prevention_content p {
  text-align: center;
}
#reason .reason_note .prevention_content p span {
  color: #ff6f61;
  font-weight: 600;
}
/* ===== 料金比較 ===== */
#price-comparison {
  background-color: #f9f7f4;
}
#price-comparison .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 150px 20px;
}
#price-comparison .comparison-title {
  text-align: center;
  margin-bottom: 50px;
}
#price-comparison .comparison-title h3 {
  font-size: 32px;
  font-weight: 700;
  color: #2e2e2e;
  margin-bottom: 15px;
  position: relative;
  padding-left: 60px;
  display: inline-block;
  letter-spacing: 1px;
}
#price-comparison .comparison-title h3::before {
  content: "";
  position: absolute;
  left: 10px;
  top: -20px;
  transform: none;
  width: 50px;
  height: 50px;
  background-image: url(../img/price_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#price-comparison .comparison-title p {
  font-size: 16px;
  color: #666;
  letter-spacing: 1px;
}
#price-comparison .comparison-title p span {
  color: #ff6f61;
  font-weight: 600;
}
#price-comparison .comparison-container {
  display: flex;
  gap: 30px;
  margin: 0 auto;
  align-items: stretch;
}
#price-comparison .comparison-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#price-comparison .comparison-item.our-company {
  border-radius: 15px;
}
/* 一般的なネズミ駆除業者の吹き出し（灰色） */
#price-comparison .comparison-item.general .speech-bubble {
  background-color: #666666;
  color: white;
  padding: 15px 20px;
  border-radius: 25px;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  position: relative;
  letter-spacing: 1px;
}
#price-comparison .comparison-item.general .speech-bubble::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #666666;
}
/* ネズミ駆除本舗の吹き出し（青色） */
#price-comparison .comparison-item.our-company .speech-bubble {
  background-color: #2d8ce2;
  color: white;
  padding: 15px 20px;
  border-radius: 25px;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  position: relative;
}
#price-comparison .comparison-item.our-company .speech-bubble::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #2d8ce2;
}
#price-comparison .price-box {
  background-color: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  height: 150px; /* 固定高さを追加 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  letter-spacing: 1px;
}
#price-comparison .comparison-item.our-company .price-box {
  border: 2px solid #2d8ce2;
}
#price-comparison .feature-box {
  background-color: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  height: 400px; /* .price-boxの2倍の高さに設定 */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  letter-spacing: 1px;
}
#price-comparison .comparison-item.our-company .feature-box {
  border: 2px solid #2d8ce2;
}
#price-comparison .feature-image {
  width: 100%;
  padding: 20px;
}
#price-comparison .comparison-item.our-company .feature-image {
  width: 70%;
}
#price-comparison .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#price-comparison .feature-box p {
  font-size: 20px;
  line-height: 1.6;
  color: #333;
}
#price-comparison .blue-price {
  font-size: 24px;
  color: #2d8ce2;
}
#price-comparison .description {
  margin: 50px 20px;
  letter-spacing: 1px;
}
#price-comparison .description .yellow-band {
  background-color: #fff68a;
}
#price-comparison .caution {
  padding: 1.5rem;
  background: #ff6f61;
  color: #2e2e2e;
}
#price-comparison .caution .caution_inner {
  padding: 1rem;
  background-color: white;
  color: #2e2e2e;
  padding: 30px 50px;
}
#price-comparison .caution .caution_inner h4 {
  text-align: center;
  color: #ff6f61;
  font-size: 20px;
}
#price-comparison .caution .caution_inner p {
  line-height: 2;
  margin-top: 30px;
}
#price-comparison .caution .caution_inner .red-band {
  color: #ff6f61;
}
/* ===== 無限ギャラリー ===== */
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}
.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
}
.scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
.scroll-infinity__item {
  width: calc(100vw / 6);
}
.scroll-infinity__item > img {
  width: 100%;
}
/* ===== お客様の声 ===== */
#voice {
  background-color: #fff9d1; /* 薄い黄色の背景 */
  padding: 100px 0;
}
#voice .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
#voice .voice_title {
  text-align: center;
  margin-bottom: 50px;
}
#voice .voice_title h3 {
  font-size: 32px;
  font-weight: 700;
  color: #2e2e2e;
  margin-bottom: 15px;
  position: relative;
  padding-left: 60px;
  display: inline-block;
  letter-spacing: 1px;
}
#voice .voice_title h3::before {
  content: "";
  position: absolute;
  left: 10px;
  top: -20px;
  transform: none;
  width: 50px;
  height: 50px;
  background-image: url(../img/voice_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#voice .voice_title p {
  font-size: 16px;
  color: #666;
  letter-spacing: 1px;
}
#voice .voice_title p span {
  color: #ff6f61;
  font-weight: 600;
}
/* スライダーコンテナ */
#voice .voice-slider-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}
/* 矢印ボタン */
#voice .voice-arrow {
  background-color: #ff6f61;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 111, 97, 0.3);
  z-index: 10;
  flex-shrink: 0; /* 矢印ボタンが縮まないように */
}
#voice .voice-arrow:hover {
  background-color: #ff6f61;
  transform: scale(1.1);
}
#voice .voice-arrow:active {
  transform: scale(0.95);
}
/* スライダー本体 */
#voice .voice-slider {
  flex: 1;
  overflow: hidden;
  border-radius: 15px;
}
#voice .voice-cards {
  display: flex;
  transition: transform 0.5s ease;
  /* gap: 30px; を削除 */
}
/* カードスタイル */
#voice .voice-card {
  flex: 0 0 calc(33.333% - 30px); /* PC版で3枚表示 - margin分を差し引く */
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0 15px; /* 左右にマージンを追加してカード間に間隔を作る */
  box-sizing: border-box;
}
#voice .voice-card:last-child {
  margin-right: 0; /* 最後のカードはmarginなし */
}
/* 各カードに異なるアイコンを配置 */
#voice .voice-card::before {
  content: "";
  position: absolute;
  top: 20px; /* カードの上に配置 */
  left: 50%;
  transform: translateX(-50%); /* 中央揃え */
  width: 90px;
  height: 90px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 10;
}
/* 1枚目のカード - voice01.png */
#voice .voice-card:nth-child(1)::before {
  background-image: url(../img/voice01.png);
}
/* 2枚目のカード - voice02.png */
#voice .voice-card:nth-child(2)::before {
  background-image: url(../img/voice02.png);
}
/* 3枚目のカード - voice03.png */
#voice .voice-card:nth-child(3)::before {
  background-image: url(../img/voice03.png);
}
/* 4枚目のカード - voice04.png */
#voice .voice-card:nth-child(4)::before {
  background-image: url(../img/voice04.png);
}
/* お客様名（一番上・太字） */
#voice .voice-customer-name {
  padding: 120px 20px 0;
  font-size: 16px;
  color: #2e2e2e;
  text-align: center;
}
/* カードのテキスト部分（中央） */
#voice .voice-card-text {
  padding: 25px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
#voice .voice-card-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: #2d8ce2; /* 青字 */
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-align: center;
}
#voice .voice-card-text p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  letter-spacing: 0.5px;
  flex: 1;
  text-align: left;
}
/* カードの画像部分（一番下） */
#voice .voice-card-image {
  height: 180px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#voice .voice-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s ease;
}
#voice .voice-card:hover .voice-card-image img {
  transform: scale(1.05);
}
/* 768px以下用の矢印ボタンコンテナ（デフォルトで非表示） */
#voice .voice-arrows-mobile {
  display: none;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
/* ===== ご利用の流れ ===== */
#flow {
  background-color: #fff9d1;
  padding: 100px 0;
}
#flow .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
#flow .flow-title {
  text-align: center;
  margin-bottom: 80px;
}
#flow .flow-title h3::before {
  content: "";
  position: absolute;
  left: 10px;
  top: -20px;
  transform: none;
  width: 50px;
  height: 50px;
  background-image: url(../img/flow_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#flow .flow-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
#flow .flow-step {
  flex: 1;
  background-color: #f9f7f4;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 450px;
}
#flow .step-number {
  color: #2d8ce2;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
}
#flow .step-title {
  font-size: 18px;
  font-weight: 700;
  color: #2e2e2e;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
#flow .step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}
#flow .step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#flow .step-line {
  width: 90%;
  height: 2px;
  background-color: #2d8ce2;
  margin-bottom: 20px;
}
#flow .step-text {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  letter-spacing: 0.5px;
}
#flow .flow-arrow {
  font-size: 30px;
  color: #2d8ce2;
  align-self: center;
  flex-shrink: 0;
}
#free-survey-section {
  background-color: #fff;
  padding: 100px 0 30px;
}
#free-survey-section .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
#free-survey-section .free-survey {
  padding: 1rem;
  background-color: rgba(238, 124, 48, 0.3);
  color: #2e2e2e;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
#free-survey-section .free-survey_inner {
  padding: 30px 30px 50px 30px;
  background-color: rgba(255, 249, 240);
  color: #2e2e2e;
}
#free-survey-section .free-survey h3 {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.5;
  padding: 0;
}
#free-survey-section .free-survey .red-band {
  color: #ff6f61;
}
#free-survey-section .free-survey .sub-text {
  display: block;
  font-size: 31px;
  font-weight: bold;
  color: #2e2e2e;
}
#free-survey-section .free-survey .survey-icon {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}
#free-survey-section .free-survey .survey-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #ff6f61;
  border-radius: 15px;
  padding: 30px 20px;
  width: 200px;
  height: 200px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
#free-survey-section .free-survey .survey-item .icon-img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}
#free-survey-section .free-survey .survey-item .icon-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#free-survey-section .free-survey .survey-item .icon-text {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.5px;
}
/* ===== 矢印アニメーション ===== */
#arrow-animation {
  background-color: #fff;
  text-align: center;
  margin-bottom: 50px;
}
#arrow-animation .arrow-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 100px;
  margin: 0 auto;
}
#arrow-animation .arrow-item {
  width: 150px;
  height: 40px;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}
#arrow-animation .arrow-item img {
  width: 100%;
  object-fit: contain;
}
/* 点灯アニメーション */
@keyframes arrow-light-up {
  0% {
    opacity: 0.3;
  }
  33% {
    opacity: 1;
  }
  66% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.3;
  }
}
#arrow-animation .arrow-item:nth-child(1) {
  animation: arrow-light-up 2s infinite;
  animation-delay: 0s;
}
#arrow-animation .arrow-item:nth-child(2) {
  animation: arrow-light-up 2s infinite;
  animation-delay: 0.3s;
}
#arrow-animation .arrow-item:nth-child(3) {
  animation: arrow-light-up 2s infinite;
  animation-delay: 0.6s;
}
/* ===== CVボタンセクション ===== */
#cv-button {
  padding: 5rem;
  background-color: #2d8ce2;
}
#cv-button .inner {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 20px;
  background-color: #fff;
}
#cv-button .cv-content {
  background-color: #fff;
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  max-width: 800px; /* 全体の最大幅を設定 */
  margin: 0 auto; /* 中央揃え */
}
/* 共通の幅設定 */
#cv-button .consultation-free, #cv-button .phone-section, #cv-button .reception-hours, #cv-button .contact-methods, #cv-button .credit-card-section, #cv-button .notice-section {
  width: 100%;
  max-width: 700px; /* 統一された最大幅 */
  margin-left: auto;
  margin-right: auto;
}
/* 1段目：ご相談・お見積作成無料 */
#cv-button .consultation-free {
  margin-bottom: 40px;
}
#cv-button .consultation-free h3 {
  font-size: 40px;
  font-weight: 700;
  color: #2d8ce2;
  border: 3px solid #2d8ce2;
  padding: 10px 50px;
  margin: 0;
  letter-spacing: 2px;
  border-radius: 5px;
}
/* 2段目：電話番号 */
#cv-button .phone-number-large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 70px;
  font-weight: 700;
  color: #2e2e2e;
  font-family: "DIN Alternate", "Bahnschrift", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  letter-spacing: 3px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
#cv-button .phone-number-large:hover {
  opacity: 0.7;
}
#cv-button .phone-number-large img {
  width: 70px;
  height: 70px;
}
/* 3段目：受付時間 */
#cv-button .reception-hours {
  margin-bottom: 40px;
}
#cv-button .reception-hours p {
  font-size: 16px;
  color: #666;
  margin: 0;
}
/* 4段目：お問い合わせ方法 */
#cv-button .contact-methods {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}
#cv-button .contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  width: 200px;
  height: 150px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(45, 140, 226, 0.3);
  cursor: pointer;
  transition: transform 0.3s ease;
  border: 3px solid #2d8ce2;
}
#cv-button .contact-item:hover {
  transform: translateY(-5px);
}
#cv-button .contact-item .contact-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}
#cv-button .contact-item .contact-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#cv-button .contact-item .contact-text {
  color: #2d8ce2;
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  letter-spacing: 0.5px;
  line-height: 1.3;
}
.contact-item-link {
  text-decoration: none;
}
.contact-item-link:hover {
  text-decoration: none;
}
/* 5段目：クレジットカード対応 */
#cv-button .credit-card-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
#cv-button .credit-card-text {
  border: 2px solid #ff6f61;
  border-radius: 5px;
  padding: 5px 5px;
}
#cv-button .credit-card-text span {
  color: #ff6f61;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
}
#cv-button .credit-card-logos {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#cv-button .credit-card-logos img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
/* 6段目：注意事項 */
#cv-button .notice-section {
  text-align: left;
  border-top: 1px solid #ddd;
  padding: 30px;
}
#cv-button .notice-section p {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
#cv-button .notice-section p:last-child {
  margin-bottom: 0;
}
/* ===== 解決事例 ===== */
#case {
  background-color: #f9f7f4;
  padding: 100px 0;
}
#case .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
#case .case-title {
  text-align: center;
  margin-bottom: 50px;
}
#case .case-title h3 {
  font-size: 32px;
  font-weight: 700;
  color: #2e2e2e;
  margin-bottom: 15px;
  position: relative;
  padding-left: 60px;
  display: inline-block;
  letter-spacing: 1px;
}
#case .case-title h3::before {
  content: "";
  position: absolute;
  left: 10px;
  top: -20px;
  transform: none;
  width: 50px;
  height: 50px;
  background-image: url(../img/check_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
/* スライダーコンテナ */
#case .case-slider-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
/* 矢印ボタン */
#case .case-arrow {
  color: #fff;
  background-color: #2d8ce2;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  flex-shrink: 0;
}
#case .case-arrow:hover {
  background-color: #ff6f61;
  transform: scale(1.1);
}
#case .case-arrow:active {
  transform: scale(0.95);
}
/* モバイル用矢印ボタンコンテナ */
#case .case-arrows-mobile {
  display: none;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}
/* スライダー本体 */
#case .case-slider {
  flex: 1;
  overflow: hidden;
  border-radius: 15px;
}
#case .case-cards {
  display: flex;
  transition: transform 0.5s ease;
}
/* カードスタイル */
#case .case-card {
  flex: 0 0 100%;
  background-color: white;
  border: 2px solid #2d8ce2;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
/* 事例タグ */
#case .case-tag {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #2d8ce2;
  color: white;
  padding: 10px 50px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 10px 0 15px 0;
  z-index: 10;
  letter-spacing: 2px;
}
/* カードコンテンツ */
#case .case-content {
  display: flex;
  height: 400px;
}
/* 画像エリア */
#case .case-image {
  flex: 1;
  overflow: hidden;
  padding: 50px;
}
#case .case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* テキストエリア */
#case .case-text {
  flex: 1;
  padding: 40px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#case .case-info {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#case .case-info-item {
  display: flex;
}
#case .case-info-item h4 {
  font-size: 18px;
  color: #2d8ce2;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  width: 50%;
}
#case .case-info-item p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  letter-spacing: 0.5px;
  text-align: right;
}
/* インジケーター */
#case .case-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
}
#case .case-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
#case .case-indicator.active {
  background-color: #2d8ce2;
}
/* ===== 対応エリア ===== */
#area {
  background-color: #fff9d1;
  padding: 100px 0;
}
#area .inner {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 20px;
  padding: 50px 50px 20px 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 90%;
}
#area .area-title {
  text-align: center;
  margin-bottom: 50px;
}
#area .area-title h3 {
  font-size: 32px;
  font-weight: 700;
  color: #2e2e2e;
  margin-bottom: 15px;
  position: relative;
  padding-left: 60px;
  display: inline-block;
  letter-spacing: 1px;
}
#area .area-title h3::before {
  content: "";
  position: absolute;
  left: 10px;
  top: -20px;
  transform: none;
  width: 50px;
  height: 50px;
  background-image: url(../img/area_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#area .inner .area-name {
  background-color: #ff6f61;
  color: #fff;
  border-radius: 5px;
  padding: 5px 10px;
  width: 100px;
  text-align: center;
  letter-spacing: 1.5px;
  font-size: 18px;
  margin-bottom: 10px;
}
#area .inner .area-text {
  padding: 10px;
  margin-bottom: 30px;
}
/* ===== よくあるご質問 ===== */
#qa {
  padding: 100px 0 0 0;
}
#qa .inner {
  max-width: 1000px;
  margin: 0 auto;
  width: 90%;
}
#qa .qa-title {
  text-align: center;
  margin-bottom: 50px;
}
#qa .qa-title h3 {
  font-size: 32px;
  font-weight: 700;
  color: #2e2e2e;
  margin-bottom: 15px;
  position: relative;
  padding-left: 60px;
  display: inline-block;
  letter-spacing: 1px;
}
#qa .qa-title h3::before {
  content: "";
  position: absolute;
  left: 10px;
  top: -20px;
  transform: none;
  width: 50px;
  height: 50px;
  background-image: url(../img/q_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.cp_qa03 .cp_actab {
  position: relative;
  width: 100%;
  margin: 0 0 1.5em 0;
  color: #2e2e2e;
}
.cp_qa03 .cp_actab input {
  display: none;
}
/* 質問 */
.cp_qa03 .cp_actab label {
  line-height: 1.6em;
  position: relative;
  display: block;
  margin: 0 0 0 0;
  padding: 1em 3em 1em 2.5em;
  text-indent: 2em;
  border-radius: 5em;
  background: #fff9d1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #2d8ce2;
}
.cp_qa03 .cp_actab label::before {
  content: 'Q';
  font-size: 1.3em;
  margin-left: -2em;
  padding-right: 0.5em;
}
.cp_qa03 .cp_actab label:hover {
  transition: all 0.3s;
}
/* --質問の＋アイコン */
.cp_qa03 .cp_actab label::after {
  position: absolute;
  top: 0;
  right: 20px;
  content: '+';
  font-size: 1.7em;
  line-height: 2em;
  display: inline-block;
  width: 2em;
  height: 2em;
  transition: transform 0.3s;
}
/* 答え */
.cp_qa03 .cp_actab .cp_actab-content {
  position: relative;
  overflow: hidden;
  max-height: 0;
  padding: 0 0 0 2.5em;
  border-radius: 5em;
  transition: max-height 0.2s;
}
.cp_qa03 .cp_actab .cp_actab-content::before {
  position: absolute;
  font-size: 1.5em;
  margin: 0.4em 0 0 -1em;
  padding: 0;
}
.cp_qa03 .cp_actab .cp_actab-content p {
  margin: 1.3em 1em 2em 0;
}
/* 質問を開いた時の仕様 */
/* --答えの高さ */
.cp_qa03 .cp_actab input:checked ~ .cp_actab-content {
  max-height: 40em;
}
/* 質問をクリックした時のアイコンの動き */
.cp_qa03 .cp_actab input:checked ~ label {
  border-radius: 5em;
}
/* 質問をクリックした時の+の動き */
.cp_qa03 .cp_actab input[type=checkbox]:checked + label::after {
  position: absolute;
  top: 0;
  right: 20px;
  content: '-';
  font-size: 1.7em;
  line-height: 2em;
  display: inline-block;
  width: 2em;
  height: 2em;
  transition: transform 0.3s;
}
/* ===== 会社概要 ===== */
#company {
  background-color: #fff;
  padding: 100px 0;
}
#company .inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}
#company .company-title {
  text-align: center;
  margin-bottom: 50px;
}
#company .company-title h3::before {
  content: "";
  position: absolute;
  left: 10px;
  top: -20px;
  transform: none;
  width: 50px;
  height: 50px;
  background-image: url(../img/company_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#company .philosophy-container {
  background-color: #f9f7f4;
  border-radius: 20px;
  padding: 50px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
#company .philosophy-logo {
  flex: 0 0 25%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
#company .philosophy-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
#company .philosophy-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#company .philosophy-item {
  margin-bottom: 10px;
}
#company .philosophy-title {
  font-size: 24px;
  font-weight: 700;
  color: #2d8ce2;
  margin: 0;
  letter-spacing: 1px;
}
#company .philosophy-subtitle {
  font-size: 18px;
  font-weight: 700;
  color: #2e2e2e;
  margin: 0;
  letter-spacing: 1px;
}
#company .philosophy-description {
  font-size: 16px;
  color: #2e2e2e;
  line-height: 1.8;
  margin: 0;
  letter-spacing: 0.5px;
}
#company .philosophy-guidelines {
  list-style: none;
  padding: 0;
  margin: 0;
}
#company .philosophy-guidelines li {
  font-size: 16px;
  color: #2e2e2e;
  line-height: 1.8;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  position: relative;
  padding-left: 20px;
}
#company .philosophy-guidelines li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #2d8ce2;
  font-weight: 700;
}
#company .philosophy-guidelines li:last-child {
  margin-bottom: 0;
}
#company .company-info {
  margin-top: 100px;
}
#company .company-details {
  max-width: 800px;
  margin: 0 auto;
}
#company .company-row {
  display: flex;
  margin-bottom: 20px;
  align-items: flex-start;
}
#company .company-label {
  flex: 0 0 200px;
  font-size: 18px;
  font-weight: 700;
  color: #2d8ce2;
  letter-spacing: 0.5px;
  padding-bottom: 30px;
  padding-top: 10px;
  border-bottom: 0.5px solid #b3b3b3;
  margin-right: 40px;
  margin-bottom: 0;
  letter-spacing: 3px;
}
#company .company-value {
  flex: 1;
  font-size: 18px;
  color: #2e2e2e;
  letter-spacing: 0.5px;
  line-height: 1.6;
  padding-top: 10px;
  padding-bottom: 28px;
  border-bottom: 0.5px solid #b3b3b3;
  margin-bottom: 0;
  letter-spacing: 1.5px;
}
/* 最後の行の下線を削除 */
#company .company-row:last-child .company-label, #company .company-row:last-child .company-value {
  border-bottom: none;
}
/* ===== お問い合わせ ===== */
#contact {
  background-color: #f9f7f4;
  padding: 100px 0;
}
#contact .contact-title {
  text-align: center;
  margin-bottom: 50px;
}
#contact .contact-title h3::before {
  content: "";
  position: absolute;
  left: 10px;
  top: -20px;
  transform: none;
  width: 50px;
  height: 50px;
  background-image: url(../img/mail_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#contact .contact-form {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px;
  border-radius: 30px;
  background-color: #fff9d1;
  width: 90%;
}
#contact .contact-form fieldset {
  border: none;
  padding: 0;
}
#contact .contact-form legend {
  font-size: 1.5em;
  margin-bottom: 10px;
  font-weight: bold;
}
#contact .contact-form label {
  display: block;
  margin: 20px 0 10px;
  font-weight: bold;
}
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"], .contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 0.5px solid #ccc;
  border-radius: 3px;
  background-color: #fff;
  box-sizing: border-box;
}

/* PC版（デフォルト）：入力フィールド全体をクリック可能に */
.contact-form input[type="date"] {
  width: 100%;
  padding: 10px;
  border: 0.5px solid #ccc;
  border-radius: 3px;
  background-color: #fff;
  box-sizing: border-box;
  cursor: pointer; /* カーソルをポインターに */
  position: relative;
}

/* PC版でカレンダーピッカーを全体に拡張 */
.contact-form input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0; /* 透明にして見た目は変えない */
  background: transparent;
}

#contact .contact-form textarea {
  resize: vertical;
}
#contact .checkbox-group {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
#contact .visit-note {
  margin-top: 30px;
  margin-bottom: 10px;
  padding: 10px;
  background-color: #f9f7f4;
  border-left: 4px solid #ff6f61;
  font-size: 0.95em;
  color: #2e2e2e;
  border-radius: 3px;
}
#contact .checkbox-group label {
  display: block;
  margin: 0 10px 0 0;
  font-weight: normal;
}
#contact .contact-form .required {
  color: #fff;
  background-color: #ff6f61;
  padding: 5px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  margin-left: 10px;
  letter-spacing: 1px;
}
#contact .scroll-box {
  border: 0.5px solid #ccc;
  border-radius: 3px;
  background: #fff;
  padding: 15px;
  height: 100px;
  overflow-y: scroll;
  margin-top: 5px;
  font-size: 14px;
}
#contact .scroll-box li {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
#contact .contact-form .notice {
  margin-top: 20px;
  font-size: 0.9em;
  color: #333;
}
#contact .contact-form .submit {
  margin: 50px auto 0;
  padding: 12px 30px;
  border: none;
  border-radius: 3px;
  background-color: #333;
  color: #fff;
  font-size: 1em;
  cursor: pointer;
  display: block;
  letter-spacing: 1px;
}
#contact .contact-form .submit:hover {
  background-color: #555;
}
/* Contact Form 7用の追加CSS 
.wpcf7-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.wpcf7-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="date"],
.wpcf7-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 15px;
}

.wpcf7-form .checkbox-group {
  margin-bottom: 15px;
}

.wpcf7-form .submit {
  background-color: #ff6f61;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
}*/
/* Contact Form 7用の追加CSS 送信画面表示されません*/
.memo {
  text-align: center;
  margin-top: 40px;
}
/* ===== 追従ボタン ===== */
/* 追従ボタンのメインコンテナ */
.floating-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1001; /* 既存のz-indexより高く設定 */
}
/* 個別ボタンコンテナ */
.individual-buttons {
  position: absolute;
  bottom: 80px;
  right: 4px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.individual-buttons.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/* 個別ボタンのスタイル */
.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  text-decoration: none;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.contact-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.contact-btn .icon {
  width: 24px;
  height: 24px;
}
/* 各ボタンの色設定 */
.phone-btn {
  background: linear-gradient(135deg, #2d8ce2, #1e6bb8);
}
.phone-btn:hover {
  background: linear-gradient(135deg, #1e6bb8, #155a9b);
}
.line-btn {
  background: linear-gradient(135deg, #4caf50, #388e3c);
}
.line-btn:hover {
  background: linear-gradient(135deg, #388e3c, #2e7d32);
}
.line-btn .icon, .instagram-btn .icon {
  display: block !important;
}
.line-btn::after {
  content: "LINE";
  font-size: 12px;
  font-weight: bold;
  color: white;
}
.instagram-btn {
  background: linear-gradient(135deg, #a855f7, #ec4899);
}
.instagram-btn:hover {
  background: linear-gradient(135deg, #9333ea, #db2777);
}
.mail-btn {
  background: linear-gradient(135deg, #ff6f61, #e55a4e);
}
.mail-btn:hover {
  background: linear-gradient(135deg, #e55a4e, #cc4a3d);
}
/* ツールチップ */
.tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}
.tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: rgba(0, 0, 0, 0.8);
}
.contact-btn:hover .tooltip {
  opacity: 1;
  visibility: visible;
}
/* メイントグルボタン */
.main-toggle-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #f97316, #dc2626);
  color: white;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.main-toggle-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.5);
}
.main-toggle-btn.expanded {
  transform: rotate(45deg);
  background: linear-gradient(135deg, #dc2626, #b91c1c);
}
.btn-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  transition: all 0.3s ease;
}
.btn-content .icon {
  width: 30px;
  height: 30px;
  margin-bottom: 2px;
}
.btn-text {
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
}
/* キャッチフレーズ */
.catchphrase {
  position: absolute;
  bottom: 80px;
  right: 0;
  background: #dc2626;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  animation: pulse 2s infinite;
  transition: all 0.15s ease;
}
.catchphrase::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 20px;
  border: 6px solid transparent;
  border-top-color: #dc2626;
}
.catchphrase.hide {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}
.line-btn::after, .instagram-btn::after {
  pointer-events: none;
}
.line-btn .tooltip, .instagram-btn .tooltip {
  pointer-events: none;
}
/* 背景オーバーレイ */
/*
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}
.overlay.show {
  opacity: 1;
  visibility: visible;
}
*/
/* アニメーション */
@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* ===== フッター ===== */
#footer {
  border-top: 1px solid #2e2e2e;
  padding: 20px;
}
#footer .copy {
  text-align: center;
  font-size: 14px;
}
/* ===== レスポンシブ ===== */
/* ===== レスポンシブ ===== */
/* 1625px以下での.flex-area対応を追加 */
@media (max-width: 1625px) {
  #main-visual .main-visual_inner .flex-area {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
}
/* 1100px以下のレスポンシブ対応 */
@media (max-width: 1100px) {
  /* ヘッダー */
  #header header {
    padding: 0 20px;
    align-items: flex-start;
  }
  #header h1 img {
    height: 60px;
  }
  #header nav {
    height: auto;
    padding: 0;
    width: 490px;
    border-radius: 100px;
    margin-left: 20px;
  }
  #header nav ul {
    flex-wrap: nowrap;
    justify-content: center;
    padding: 0;
    gap: 0px;
  }
  #header nav ul li {
    margin: 0 8px;
    font-size: 14px;
  }
  #header nav ul li.phone-info .phone-number img {
    height: 25px;
  }
  #header nav ul li.phone-info {
    order: -1; /* 電話番号を最初に */
    width: 45%;
    align-items: flex-start;
  }
  #header nav ul li.phone-info .phone-number {
    font-size: 25px;
  }
  #header nav ul li.phone-info .reception-time {
    font-size: 14px;
    margin-left: 0;
    text-align: center;
    width: 100%;
  }
  #header nav ul li img {
    height: 40px;
  }
  #header nav ul .form {
    background-color: #fff;
  }
  /* お問い合わせボタンをメールアイコンに変更 */
  #header nav ul .form a {
    font-size: 0; /* テキストを非表示 */
    padding: 10px 0; /* パディングを調整 */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #header nav ul .form a::before {
    content: "";
    background-image: url(../img/mail2.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 40px;
    height: 40px;
    display: block;
  }
  /* メインビジュアル */
  #main-visual {
    padding-top: 150px; /* ヘッダーの高さが増えたため調整 */
    height: auto;
    /* 1100px以下用の背景画像に変更 */
    background-image: url(../img/fv-wave02.png); /* タブレット用背景画像 */
    background-attachment: scroll; /* スクロール時の負荷軽減 */
  }
  #main-visual .main-visual_inner .flex-area {
    flex-direction: column-reverse; /* 画像を上、テキストを下に */
    gap: 40px;
    align-items: center;
  }
  #main-visual .main-visual_inner .text-area, #main-visual .main-visual_inner .image-area {
    width: 100%;
    padding-left: 0;
  }
  #main-visual .main-visual_inner .text-area {
    text-align: center;
  }
  #main-visual .main-visual_inner .text-area h2 {
    font-size: 24px;
  }
  #main-visual .main-visual_inner .main-visual_title_top {
    font-size: 32px;
  }
  #main-visual .main-visual_inner .main-visual_title_top .border {
    font-size: 1.8em;
    padding: 8px 15px;
  }
  #main-visual .main-visual_inner .main-visual_title_bottom p {
    font-size: 18px;
  }
  #main-visual .main-visual_inner .image-area {
    height: 450px;
  }
  #main-visual .main-visual_inner .image-area::after {
    width: 150px;
    height: 150px;
    bottom: -25px;
    left: -50px;
  }
  /* ===== こんなことが気になっていませんか？ ===== */
  #trouble .trouble_title h3 {
    font-size: 24px;
    padding-left: 40px; /* スマホ用にパディングを調整 */
  }
  #trouble .trouble_title h3::before {
    width: 40px; /* スマホ用にアイコンサイズを調整 */
    height: 40px;
  }
  #trouble .inner {
    padding: 150px 0;
    width: 80%;
  }
  #trouble .accordion-grid {
    grid-template-columns: 1fr; /* 1列に変更 */
    padding: 0;
    gap: 10px 50px;
  }
  #trouble .accordion {
    width: 100%;
  }
  /* 選ばれる理由セクション */
  #reason .reason_title h3 {
    font-size: 24px;
    padding-left: 40px; /* スマホ用にパディングを調整 */
  }
  #reason .reason_title h3::before {
    width: 40px; /* スマホ用にアイコンサイズを調整 */
    height: 40px;
  }
  #reason .inner {
    padding: 100px 0;
    width: 80%;
  }
  #reason .reasons-list {
    margin: 60px auto 100px;
    gap: 50px;
  }
  #reason .reason-item.with-image {
    padding: 20px;
    gap: 20px;
  }
  #reason .reason-image {
    width: 120px;
    height: 120px;
  }
  #reason .reason-content h4 {
    font-size: 20px;
  }
  #reason .reason-item.text-only {
    padding: 20px;
  }
  #reason .reason-item.text-only h4 {
    font-size: 18px;
  }
  #reason .reason-item::before {
    top: -20%;
    left: -3%;
    width: 40px;
    height: 40px;
  }
  /* 料金比較セクション */
  #price-comparison .comparison-title h3 {
    font-size: 24px;
    padding-left: 40px;
  }
  #price-comparison .comparison-title h3::before {
    width: 40px;
    height: 40px;
  }
  #price-comparison .inner {
    padding: 100px 20px;
    width: 90%;
  }
  #price-comparison .comparison-container {
    flex-direction: column;
    gap: 40px;
  }
  #price-comparison .comparison-item.our-company {
    border-width: 2px;
    padding: 15px;
  }
  #price-comparison .speech-bubble {
    font-size: 16px;
    padding: 12px 18px;
  }
  #price-comparison .price-box {
    padding: 25px;
    font-size: 16px;
  }
  #price-comparison .price-box strong {
    font-size: 18px;
  }
  #price-comparison .feature-box {
    height: 300px;
  }
  #price-comparison .feature-image {
    width: 450px;
  }
  #price-comparison .comparison-item.our-company .feature-image {
    width: 300px;
  }
  #price-comparison .feature-box p {
    font-size: 15px;
  }
  .scroll-infinity__item {
    width: calc(100vw / 3);
  }
  /* お客様の声セクション */
  #voice {
    padding: 100px 0;
  }
  #voice .voice_title h3 {
    font-size: 24px;
    padding-left: 40px;
  }
  #voice .voice_title h3::before {
    width: 40px;
    height: 40px;
  }
  #voice .voice-card {
    flex: 0 0 calc(50% - 20px); /* タブレットで2枚表示 - margin分を差し引く */
    margin: 0 10px; /* タブレット用の間隔調整 */
  }
  #voice .voice-card::before {
    width: 80px;
    height: 80px;
  }
  #voice .voice-customer-name {
    padding: 120px 15px 0;
    font-size: 15px;
  }
  #voice .voice-card-text {
    padding: 20px 15px;
  }
  #voice .voice-card-text h4 {
    font-size: 16px;
    margin-bottom: 12px;
  }
  #voice .voice-card-text p {
    font-size: 13px;
  }
  #voice .voice-card-image {
    height: 200px;
  }
  #voice .voice-slider-container {
    gap: 15px;
  }
  #voice .voice-arrow {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  #voice .voice-card {
    flex: 0 0 calc(50% - 20px); /* タブレットで2枚表示 - margin分を差し引く */
    margin: 0 10px; /* タブレット用の間隔調整 */
  }
  #voice .voice-card-text {
    padding: 20px 20px;
  }
  #voice .voice-card-text h4 {
    font-size: 16px;
    margin-bottom: 12px;
  }
  #voice .voice-card-text p {
    font-size: 13px;
  }
  #voice .voice-card-image {
    height: 160px;
  }
  #flow .inner {
    padding: 0 20px;
    width: 90%;
  }
  #flow .flow-container {
    flex-direction: column;
    gap: 30px;
  }
  #flow .flow-step {
    width: 100%;
    padding: 25px 20px;
    height: 450px;
  }
  #flow .step-title {
    font-size: 16px;
  }
  #flow .step-icon {
    width: 70px;
    height: 70px;
  }
  #flow .step-text {
    padding: 10px 30px;
  }
  #flow .flow-arrow {
    transform: rotate(90deg);
    font-size: 30px;
    margin-top: 0;
    align-self: center;
  }
  #free-survey-section .inner {
    width: 90%;
  }
  #free-survey-section .free-survey h3 {
    font-size: 29px;
  }
  #free-survey-section .free-survey .sub-text {
    font-size: 23px;
  }
  #free-survey-section .free-survey .survey-icon {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
    justify-items: center;
    max-width: 500px;
    margin: 50px auto 0;
  }
  #free-survey-section .free-survey .survey-item {
    width: 180px;
    height: 180px;
    padding: 25px 15px;
  }
  #free-survey-section .free-survey .survey-item .icon-img {
    width: 70px;
    height: 70px;
  }
  #free-survey-section .free-survey .survey-item .icon-text {
    font-size: 15px;
  }
  #cv-button .cv-content {
    padding: 50px 0;
  }
  #cv-button .consultation-free h3 {
    font-size: 28px;
  }
  #cv-button .phone-number-large {
    font-size: 60px;
  }
  #cv-button .contact-methods {
    flex-wrap: wrap;
    gap: 20px;
  }
  #cv-button .contact-item {
    width: 150px;
    height: 150px;
    padding: 25px 15px;
  }
  #cv-button .credit-card-section {
    flex-direction: column;
    gap: 20px;
  }
  #cv-button .credit-card-text {
    width: 300px;
  }
  #cv-button .contact-item .contact-icon {
    width: 50px;
    height: 50px;
  }
  #cv-button .contact-item .contact-text {
    font-size: 14px;
  }
  /* 施工事例 */
  #case .case-tag {
    padding: 10px 30px;
    font-size: 16px;
    letter-spacing: 2px;
  }
  #case .case-title h3 {
    font-size: 24px;
    padding-left: 40px;
  }
  #case .case-title h3::before {
    width: 40px;
    height: 40px;
  }
  #case .case-content {
    height: auto;
  }
  #case .case-image {
    height: 250px;
    padding: 30px;
  }
  #case .case-text {
    padding: 30px 25px;
  }
  #case .case-info {
    gap: 5px;
  }
  #case .case-info-item h4 {
    font-size: 16px;
    margin-left: 30px;
  }
  #case .case-info-item p {
    font-size: 14px;
  }
  #area .area-title h3 {
    font-size: 24px;
    padding-left: 40px;
  }
  #area .area-title h3::before {
    width: 40px;
    height: 40px;
  }
  #qa .qa-title h3 {
    font-size: 24px;
    padding-left: 40px;
  }
  #qa .qa-title h3::before {
    width: 40px;
    height: 40px;
  }
  #company .company-title h3 {
    font-size: 24px;
    padding-left: 40px;
  }
  #company .company-title h3::before {
    width: 40px;
    height: 40px;
  }
  #company .philosophy-container {
    padding: 40px;
    gap: 30px;
  }
  #company .philosophy-logo {
    flex: 0 0 30%;
  }
  #company .philosophy-title {
    font-size: 22px;
  }
  #company .philosophy-subtitle {
    font-size: 17px;
  }
  #company .philosophy-description, #company .philosophy-guidelines li {
    font-size: 15px;
  }
  #company .company-info {
    margin-top: 60px;
  }
  #company .company-label {
    flex: 0 0 180px;
    font-size: 16px;
    margin-right: 30px;
  }
  #company .company-value {
    font-size: 16px;
  }
  #contact .contact-title h3 {
    font-size: 24px;
    padding-left: 40px;
  }
  #contact .contact-title h3::before {
    width: 40px;
    height: 40px;
  }
  #contact .contact-form {
    padding: 30px;
    border-radius: 20PX;
  }
  /* ハンバーガーメニュー用のスタイル */
  .hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
  }
  .hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: #2e2e2e;
    margin: 3px 0;
    transition: 0.3s;
  }
  /* ハンバーガーメニューが開いた時のアニメーション */
  .hamburger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  .hamburger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  /* モバイルメニューオーバーレイ */
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 20vh; /* 上1/3の高さ */
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  .mobile-menu-overlay.active {
    transform: translateY(0);
  }
  /* モバイルメニューコンテンツ */
  .mobile-menu-content {
    padding: 80px 20px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  /* 電話番号エリア */
  .mobile-phone-area {
    text-align: center;
    margin-bottom: 50px;
  }
  .mobile-phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 28px;
    font-family: "DIN Alternate", "Bahnschrift", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    color: #2e2e2e;
    text-decoration: none;
    margin-bottom: 5px;
  }
  .mobile-phone-number img {
    width: 30px;
    height: 30px;
  }
  .mobile-reception-time {
    font-size: 12px;
    color: #666;
  }
  /* お問い合わせボタンエリア */
  .mobile-contact-buttons {
    display: flex;
    justify-content: space-around;
    gap: 10px;
  }
  .mobile-contact-btn {
    flex: 1;
    background-color: #2d8ce2;
    color: white;
    padding: 12px 8px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  .mobile-contact-btn:hover {
    filter: brightness(0.90);
  }
  .mobile-contact-btn img {
    width: 20px;
    height: 20px;
  }
  
}
/* 768px以下のレスポンシブ対応（スマホ） */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
  /* ハンバーガーメニューを強制表示 */
  .hamburger-menu {
    display: flex;
    background-color: #ff6f61;
    border-radius: 50px;
    margin: 20px auto;
    position: relative;
    padding: 0;
    cursor: pointer;
    z-index: 100;
    color: #ffffff;
    font-size: 24px;
    letter-spacing: 2px;
    text-decoration: none;
    font-weight: 600;
    padding: 15px 30px;
    align-items: center;
    justify-content: center;
    width: 90%;
  }
  .hamburger-menu-container {
    background-color: #f9f7f4;
    padding: 20px 0;
    width: 100%;
  }
  .hamburger-menu span {
    display: none; /* 3本線を非表示 */
  }
  .hamburger-menu::after {
    content: "お問い合わせ";
  }
  /* ハンバーガーメニューが開いた時のアニメーション */
  .hamburger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  .hamburger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  /* モバイルメニューオーバーレイを強制表示 */
  .mobile-menu-overlay {
    display: block !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 320px;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  .mobile-menu-overlay.active {
    transform: translateY(0);
  }
  /* モバイルメニューコンテンツを強制表示 */
  .mobile-menu-content {
    display: flex !important;
    padding: 80px 20px 20px;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
  }
  /* 電話番号エリア */
  .mobile-phone-area {
    text-align: center;
    margin-bottom: 20px;
  }
  .mobile-phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 40px;
    font-family: "DIN Alternate", "Bahnschrift", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    color: #2e2e2e;
    text-decoration: none;
    margin-bottom: 5px;
  }
  .mobile-phone-number img {
    width: 30px;
    height: 30px;
  }
  .mobile-reception-time {
    font-size: 12px;
    color: #666;
  }
  /* お問い合わせボタンエリア */
  .mobile-contact-buttons {
    display: flex;
    justify-content: space-around;
    gap: 10px;
  }
  .mobile-contact-btn {
    flex: 1;
    background-color: #fff;
    color: #2d8ce2;
    padding: 12px 8px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    border: 4px solid #2d8ce2;
  }
  .mobile-contact-btn:hover {
    filter: brightness(0.90);
  }
  .mobile-contact-btn img {
    width: 50px;
    height: 50px;
    object-fit: contain;
  }
  /* 閉じるボタンのスタイル */
  .mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1001;
  }
  .close-btn {
    background: none;
    border: none;
    font-size: 30px;
    color: #2e2e2e;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
  }
  .close-btn:hover {
    color: #ff6f61;
  }
  /* 既存のnavを非表示 */
  #header nav {
    display: none;
  }
  /* ヘッダーの調整 */
  #header header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    margin: 15px auto;
    padding: 0 15px;
  }
  #header h1 img {
    height: 50px;
  }
  /* メインビジュアル */
  #main-visual {
    background-image: url(../img/fv-wave02.png);
    background-attachment: scroll;
    min-height: 0;
    padding-top: 100px;
  }
  #main-visual .main-visual_inner .text-area h2 {
    font-size: 20px;
  }
  #main-visual .main-visual_inner .main-visual_title_top {
    font-size: 28px;
  }
  #main-visual .main-visual_inner .main-visual_title_top .border {
    font-size: 1.6em;
    padding: 6px 12px;
  }
  #main-visual .main-visual_inner .main-visual_title_bottom {
    margin-top: 20px;
  }
  #main-visual .main-visual_inner .main-visual_title_bottom p {
    font-size: 16px;
  }
  #main-visual .main-visual_inner .image-area {
    height: 350px;
  }
  #main-visual .main-visual_inner {
    width: 100%;
  }
  #main-visual .main-visual_inner .image-area::after {
    width: 120px;
    height: 120px;
    bottom: -30px;
    left: -10px;
  }
  /* 選ばれる理由セクション */
  #trouble .inner {
    padding: 50px 0 100px;
  }
  #reason .reasons-list {
    margin: 40px auto 80px;
    gap: 40px;
  }
  #reason .reason-item.with-image {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
  #reason .reason-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin-bottom: 15px;
  }
  #reason .reason-content {
    width: 100%;
  }
  #reason .reason-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  #reason .reason-item.text-only {
    padding: 20px 20px 20px 40px;
  }
  #reason .reason-item.text-only h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  #reason .reason-item::before {
    top: -5%;
    left: -3%;
    width: 40px;
    height: 40px;
  }
  #reason .reason_note {
    padding: 30px;
  }
  /* 料金比較セクション */
  #price-comparison {
    padding: 80px 0;
  }
  #price-comparison .comparison-title h3 {
    font-size: 24px;
    padding-left: 50px;
  }
  #price-comparison .comparison-title h3::before {
    width: 40px;
    height: 40px;
  }
  #price-comparison .inner {
    padding: 0 15px;
  }
  #price-comparison .comparison-container {
    flex-direction: column;
    gap: 30px;
  }
  #price-comparison .comparison-item.our-company {
    border-width: 2px;
    padding: 15px;
  }
  #price-comparison .speech-bubble {
    font-size: 16px;
    padding: 12px 18px;
  }
  #price-comparison .price-box {
    padding: 20px;
    font-size: 16px;
  }
  #price-comparison .price-box strong {
    font-size: 18px;
  }
  #price-comparison .feature-box {
    padding: 20px;
    gap: 15px;
    height: 250px;
  }
  #price-comparison .feature-image {
    width: 400px;
  }
  #price-comparison .comparison-item.our-company .feature-image {
    width: 250px;
  }
  #price-comparison .feature-box p {
    font-size: 14px;
  }
  #price-comparison .caution .caution_inner {
    padding: 30px 30px;
  }
  /* お客様の声セクション */
  #voice {
    padding: 80px 0;
  }
  #voice .voice_title h3 {
    font-size: 24px;
    padding-left: 50px;
  }
  #voice .voice_title h3::before {
    width: 40px;
    height: 40px;
  }
  #voice .voice-slider-container {
    flex-direction: column;
    gap: 20px;
    align-items: center; /* 中央揃えを追加 */
  }
  #voice .desktop-arrows {
    display: none;
  }
  /* 768px以下用の矢印ボタンを表示 */
  #voice .voice-arrows-mobile {
    display: flex;
  }
  /* スライダーコンテナの調整 */
  #voice .voice-slider-container {
    gap: 0; /* 矢印ボタンがないのでgapを0に */
  }
  #voice .voice-card {
    flex: 0 0 calc(100% - 20px); /* スマホで1枚表示 - margin分を差し引く */
    margin: 0 10px; /* スマホ用の間隔調整 */
  }
  #voice .voice-card::before {
    width: 70px;
    height: 70px;
    top: 15px;
  }
  #voice .voice-customer-name {
    padding: 100px 15px 0;
    font-size: 14px;
  }
  #voice .voice-card-text {
    padding: 18px 20px;
  }
  #voice .voice-card-text h4 {
    font-size: 15px;
    margin-bottom: 10px;
  }
  #voice .voice-card-text p {
    font-size: 13px;
  }
  #voice .voice-card-image {
    height: 140px;
  }
  /* 矢印ボタンを横並びにするためのコンテナスタイル */
  #voice .voice-slider-container::after {
    content: "";
    display: flex;
    justify-content: center;
    gap: 20px;
    order: 2;
  }
  /* 矢印ボタンの配置調整 */
  #voice .voice-arrow {
    position: relative;
  }
  /* 左矢印ボタンの配置 */
  #voice .voice-arrow-left {
    order: 1;
  }
  /* 右矢印ボタンの配置 */
  #voice .voice-arrow-right {
    order: 3;
  }
  /* スライダーの順序 */
  #voice .voice-slider {
    order: 0;
  }
  #voice .voice-card {
    flex: 0 0 calc(100% - 20px); /* スマホで1枚表示 - margin分を差し引く */
  }
  #voice .voice-card-text {
    padding: 18px 30px;
  }
  #voice .voice-card-text h4 {
    font-size: 15px;
    margin-bottom: 10px;
  }
  #voice .voice-card-text p {
    font-size: 13px;
  }
  #voice .voice-card-image {
    height: 300px;
  }
  #voice .voice-info {
    margin-top: 15px;
    padding-top: 10px;
  }
  #voice .voice-name {
    font-size: 14px;
  }
  #voice .voice-location {
    font-size: 11px;
  }
  #flow {
    padding: 100px 0;
  }
  #flow .flow-title h3 {
    font-size: 24px;
    padding-left: 40px;
  }
  #flow .flow-title h3::before {
    width: 40px;
    height: 40px;
  }
  #flow .step-title {
    font-size: 18px;
  }
  #flow .step-icon {
    width: 80px;
    height: 80px;
  }
  #flow .step-text {
    font-size: 15px;
  }
  #free-survey-section .free-survey h3 {
    font-size: 23px;
  }
  #free-survey-section .free-survey .sub-text {
    font-size: 18px;
  }
  #free-survey-section .free-survey .survey-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 40px auto 0;
  }
  #free-survey-section .free-survey .survey-item {
    width: 280px;
    height: 120px;
    flex-direction: row;
    text-align: left;
    padding: 20px;
    justify-content: flex-start;
  }
  #free-survey-section .free-survey .survey-item .icon-img {
    width: 60px;
    height: 60px;
    margin-bottom: 0;
    margin-right: 20px;
    flex-shrink: 0;
  }
  #free-survey-section .free-survey .survey-item .icon-text {
    font-size: 15px;
    flex: 1;
  }
  #arrow-animation .arrow-item {
    width: 120px;
    height: 30px;
  }
  #cv-button {
    padding: 3rem;
  }
  #cv-button .inner {
    padding: 0;
  }
  #cv-button .cv-content {
    padding: 30px 20px;
  }
  #cv-button .consultation-free h3 {
    font-size: 22px;
    padding: 12px;
  }
  #cv-button .phone-number-large {
    font-size: 40px;
    gap: 10px;
    letter-spacing: 1px;
  }
  #cv-button .phone-number-large img {
    width: 35px;
    height: 35px;
  }
  #cv-button .contact-methods {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  #cv-button .contact-item {
    width: 300px;
    height: 100px;
    flex-direction: row;
    text-align: center;
    padding: 20px;
    justify-content: space-around;
  }
  #cv-button .contact-item .contact-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0;
    margin-right: 20px;
  }
  #cv-button .contact-item .contact-text {
    font-size: 15px;
  }
  #cv-button .credit-card-logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  #cv-button .credit-card-logos img {
    height: 30px;
  }
  /*　　施工事例　　*/
  #case {
    padding: 80px 0;
  }
  #case .case-title h3 {
    font-size: 24px;
    padding-left: 50px;
  }
  #case .case-title h3::before {
    width: 40px;
    height: 40px;
  }
  #case .case-slider-container {
    gap: 15px;
  }
  #case .case-slider-container .case-arrow {
    display: none; /* デスクトップ用矢印を非表示 */
  }
  #case .case-arrows-mobile {
    display: flex; /* モバイル用矢印を表示 */
  }
  #case .case-tag {
    padding: 8px 15px;
    font-size: 14px;
  }
  #case .case-text {
    padding: 25px 20px;
  }
  #case .case-info {
    width: 80%;
  }
  #case .case-content {
    flex-direction: column;
  }
  #case .case-info-item {
    display: block;
  }
  #case .case-info-item h4 {
    margin-left: 0;
    text-align: center;
    width: 100%;
  }
  #case .case-info-item p {
    text-align: center;
    margin-bottom: 10px;
  }
  #company {
    padding: 80px 0;
  }
  #company .philosophy-container {
    flex-direction: column;
    padding: 30px;
    gap: 30px;
    text-align: center;
  }
  #company .philosophy-logo {
    flex: none;
    width: 200px;
    margin: 0 auto;
  }
  #company .philosophy-content {
    text-align: left;
  }
  #company .philosophy-title {
    font-size: 20px;
  }
  #company .philosophy-subtitle {
    font-size: 16px;
  }
  #company .philosophy-description, #company .philosophy-guidelines li {
    font-size: 14px;
  }
  #company .company-info {
    margin-top: 40px;
  }
  #company .company-row {
    flex-direction: column;
    margin-bottom: 0;
  }
  #company .company-label {
    flex: none;
    margin-right: 0;
    font-size: 15px;
    width: 100%;
    padding: 15px 0;
  }
  #company .company-value {
    flex: none;
    font-size: 15px;
    width: 100%;
    padding: 15px 0;
  }
  .floating-buttons {
    bottom: 20px;
    right: 20px;
  }
  .contact-btn {
    width: 52px;
    height: 52px;
  }
  .contact-btn .icon {
    width: 22px;
    height: 22px;
  }
  .main-toggle-btn {
    width: 60px;
    height: 60px;
  }
  .btn-content .icon {
    width: 28px;
    height: 28px;
  }
  .tooltip {
    right: 65px;
    font-size: 13px;
    padding: 6px 10px;
  }
  .catchphrase {
    font-size: 13px;
    padding: 6px 10px;
    bottom: 75px;
  }
  /* Contact Form 7用の追加CSS 送信画面表示されません*/
  .memo {
    text-align: left;
    margin-top: 40px;
  }
  .contact-form input[type="date"] {
    width: 95%;
  }

}
/* 480px以下のレスポンシブ対応（小型スマホ） */
@media (max-width: 480px) {
  #header header {
    margin: 20px auto 30px;
    display: block;
  }
  #header h1 {
    text-align: center;
  }
  #header h1 img {
    height: 50px;
  }
  #header nav {
    height: auto;
    padding: 5px;
  }
  #header nav ul {
    padding: 5px;
  }
  #header nav ul li {
    margin: 0 5px;
    font-size: 12px;
  }
  #header nav ul li img {
    height: 20px;
  }
  #header nav ul .form {
    padding: 0;
  }
  #header nav ul .form a {
    font-size: 14px;
    padding: 8px 15px;
  }
  #header nav ul li.phone-info .phone-number {
    font-size: 20px;
  }
  #header nav ul li.phone-info .phone-number img {
    height: 20px;
  }
  #header nav ul li.phone-info .reception-time {
    font-size: 9px;
  }
  /* ハンバーガーメニュー */
  .mobile-menu-overlay {
    height: 350px;
  }
  .mobile-phone-number {
    font-size: 35px;
  }
  /* メインビジュアル */
  #main-visual {
    background-image: url(../img/fv-wave03.png);
  }
  #main-visual .main-visual_inner .text-area h2 {
    font-size: 18px;
  }
  #main-visual .main-visual_inner .main-visual_title_top {
    font-size: 24px;
  }
  #main-visual .main-visual_inner .main-visual_title_top .border {
    font-size: 1.5em;
    padding: 5px 10px;
  }
  #main-visual .main-visual_inner .main-visual_title_bottom p {
    font-size: 14px;
  }
  #main-visual .main-visual_inner .image-area {
    height: 280px;
  }
  #main-visual .main-visual_inner .image-area .indicator {
    width: 10px;
    height: 10px;
  }
  #main-visual .main-visual_inner .image-area::after {
    width: 100px;
    height: 100px;
    bottom: -30px;
    left: -15px;
  }
  /* トラブルセクション */
  #trouble .trouble_title h3 {
    font-size: 20px;
    padding-left: 25px;
  }
  #trouble .trouble_title h3::before {
    width: 35px;
    height: 35px;
    left: 0;
  }
  #trouble .trouble_title p {
    font-size: 14px;
    width: 80%;
    margin: 0 auto;
  }
  #trouble .inner {
    width: 90%;
    padding: 50px 0;
  }
  #trouble .accordion-grid {
    width: 100%; /* 幅を90%に設定 */
  }
  /* 選ばれる理由セクション */
  #reason .reason_title h3 {
    font-size: 20px;
    padding-left: 25px;
  }
  #reason .reason_title h3::before {
    width: 35px;
    height: 35px;
    left: 0;
  }
  #reason .reason_title p {
    font-size: 14px;
    width: 90%;
    margin: 0 auto;
  }
  #reason .inner {
    width: 90%;
    padding: 80px 0;
  }
  #reason .reasons-list {
    margin: 30px auto;
    gap: 40px;
  }
  #reason .reason-item.with-image {
    padding: 15px;
  }
  #reason .reason-image {
    margin-bottom: 10px;
  }
  #reason .reason-content h4 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  #reason .reason-content p {
    font-size: 14px;
    line-height: 1.6;
  }
  #reason .reason-item.text-only {
    padding: 15px 15px 15px 40px;
  }
  #reason .reason-item.text-only h4 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  #reason .reason-item.text-only p {
    font-size: 14px;
    line-height: 1.6;
  }
  #reason .reason-item.text-only p span {
    display: block;
    margin-top: 5px;
    font-size: 12px;
  }
  #reason .reason_note {
    padding: 30px;
  }
  /* 料金比較セクション */
  #price-comparison {
    padding: 60px 0;
  }
  #price-comparison .caution {
    padding: 1rem;
  }
  #price-comparison .comparison-title h3 {
    font-size: 20px;
    padding-left: 25px;
  }
  #price-comparison .comparison-title h3::before {
    width: 35px;
    height: 35px;
    left: 0;
  }
  #price-comparison .comparison-title p {
    font-size: 14px;
    width: 90%;
    margin: 0 auto;
  }
  #price-comparison .inner {
    padding: 0 15px;
    width: 100%;
  }
  #price-comparison .comparison-container {
    gap: 25px;
  }
  #price-comparison .comparison-item.our-company {
    padding: 12px;
  }
  #price-comparison .speech-bubble {
    font-size: 14px;
    padding: 10px 15px;
  }
  #price-comparison .price-box {
    padding: 18px;
    font-size: 14px;
  }
  #price-comparison .price-box strong {
    font-size: 16px;
  }
  #price-comparison .feature-box {
    padding: 18px;
    gap: 12px;
  }
  #price-comparison .feature-image {
    width: 300px;
  }
  #price-comparison .comparison-item.our-company .feature-image {
    width: 200px;
  }
  #price-comparison .feature-box p {
    font-size: 16px;
  }
  #price-comparison .description {
    font-size: 16px;
    margin: 50px 20px;
  }
  #price-comparison .caution .caution_inner {
    padding: 30px 20px;
  }
  #price-comparison .caution .caution_inner p {
    font-size: 16px;
  }
  /* お客様の声セクション */
  #voice {
    padding: 60px 0;
  }
  #voice .voice_title h3 {
    font-size: 20px;
    padding-left: 25px;
  }
  #voice .voice_title h3::before {
    width: 35px;
    height: 35px;
    left: 0;
  }
  #voice .voice_title p {
    font-size: 14px;
    width: 90%;
    margin: 0 auto;
  }
  #voice .inner {
    padding: 0 15px;
  }
  /* 768px以上用の矢印ボタンを非表示 */
  #voice .desktop-arrows {
    display: none;
  }
  /* 768px以下用の矢印ボタンを表示 */
  #voice .voice-arrows-mobile {
    display: flex;
  }
  /* スライダーコンテナの調整 */
  #voice .voice-slider-container {
    gap: 0; /* 矢印ボタンがないのでgapを0に */
  }
  #voice .voice-card {
    flex: 0 0 calc(100% - 20px); /* 小型スマホで1枚表示 - margin分を差し引く */
    margin: 0 10px;
  }
  #voice .voice-card {
    margin-right: 10px;
  }
  #voice .voice-card::before {
    width: 70px;
    height: 70px;
    top: 15px;
  }
  #voice .voice-customer-name {
    padding: 100px 12px 0;
    font-size: 13px;
  }
  #voice .voice-card-text {
    padding: 15px 12px;
  }
  #voice .voice-card-text h4 {
    font-size: 14px;
    margin-bottom: 8px;
  }
  #voice .voice-card-text p {
    font-size: 12px;
    line-height: 1.5;
  }
  #voice .voice-arrow {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  #voice .voice-slider-container {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  /* 矢印ボタンを横並びにするためのコンテナスタイル */
  #voice .voice-slider-container::after {
    content: "";
    display: flex;
    justify-content: center;
    gap: 20px;
    order: 2;
  }
  /* 矢印ボタンの配置調整 */
  #voice .voice-arrow {
    position: relative;
  }
  /* 左矢印ボタンの配置 */
  #voice .voice-arrow-left {
    order: 1;
  }
  /* 右矢印ボタンの配置 */
  #voice .voice-arrow-right {
    order: 3;
  }
  /* スライダーの順序 */
  #voice .voice-slider {
    order: 0;
  }
  #voice .voice-card-text {
    padding: 15px 20px;
  }
  #voice .voice-card-text h4 {
    font-size: 14px;
    margin-bottom: 8px;
  }
  #voice .voice-card-text p {
    font-size: 14px;
    line-height: 1.5;
  }
  #voice .voice-card-image {
    height: 250px;
  }
  #voice .voice-info {
    margin-top: 10px;
    padding-top: 8px;
  }
  #voice .voice-name {
    font-size: 13px;
  }
  #voice .voice-location {
    font-size: 10px;
  }
  #flow {
    padding: 50px 0;
  }
  #flow .flow-title {
    margin-bottom: 30px;
  }
  #flow .flow-title h3 {
    font-size: 20px;
    padding-left: 25px;
  }
  #flow .flow-title h3::before {
    width: 35px;
    height: 35px;
    left: 0;
  }
  #flow .flow-step {
    padding: 20px 15px;
  }
  #flow .step-number {
    font-size: 14px;
    padding: 6px 15px;
  }
  #flow .step-title {
    font-size: 16px;
  }
  #flow .step-icon {
    width: 70px;
    height: 70px;
  }
  #flow .step-text {
    font-size: 14px;
  }
  #flow .flow-arrow {
    font-size: 25px;
  }
  #free-survey-section {
    padding-top: 50px;
  }
  #free-survey-section .free-survey h3 {
    font-size: 20px;
  }
  #free-survey-section .free-survey .sub-text {
    font-size: 16px;
  }
  #free-survey-section .inner {
    width: 100%;
  }
  #free-survey-section .free-survey .survey-item {
    width: 200px;
  }
  #cv-button {
    padding: 1rem;
  }
  #cv-button .consultation-free h3 {
    font-size: 20px;
    padding: 10px;
  }
  #cv-button .consultation-free {
    margin-bottom: 20px;
  }
  #cv-button .phone-number-large {
    font-size: 24px;
  }
  #cv-button .reception-hours {
    margin-bottom: 20px;
  }
  #cv-button .contact-item {
    width: 100%;
    max-width: 250px;
    padding: 15px;
    flex-direction: row;
    width: 200px;
  }
  #cv-button .contact-item .contact-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
  }
  #cv-button .contact-item .contact-text {
    font-size: 14px;
  }
  #cv-button .credit-card-text {
    width: 100%;
  }
  #cv-button .credit-card-text span {
    font-size: 16px;
  }
  /*　施工事例　*/
  #case {
    padding: 60px 0 20px;
  }
  #case .case-title {
    margin-bottom: 20px;
  }
  #case .case-title h3 {
    font-size: 20px;
    padding-left: 25px;
  }
  #case .case-title h3::before {
    width: 35px;
    height: 35px;
    left: 0;
  }
  #case .case-arrow {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  #case .case-image {
    height: 200px;
    padding: 10px;
  }
  #case .case-text {
    padding: 20px 15px;
  }
  #case .case-info-item h4 {
    font-size: 15px;
    margin-bottom: 0;
  }
  #case .case-info-item p {
    font-size: 13px;
    margin-bottom: 5px;
  }
  #case .case-indicator {
    width: 10px;
    height: 10px;
  }
  #area {
    padding: 60px 0;
  }
  #area .inner {
    border-radius: 10px;
    padding: 30px 20px 30px 20px;
  }
  #area .area-title h3 {
    font-size: 20px;
    padding-left: 25px;
  }
  #area .area-title h3::before {
    width: 35px;
    height: 35px;
    left: 0;
  }
  #area .inner .area-name {
    font-size: 16px;
  }
  #area .inner .area-text {
    font-size: 16px;
  }
  #qa {
    padding: 60px 0 0 0;
  }
  #qa .qa-title {
    margin-bottom: 20px;
  }
  #qa .qa-title h3 {
    font-size: 20px;
    padding-left: 25px;
  }
  #qa .qa-title h3::before {
    width: 35px;
    height: 35px;
    left: 0;
  }
  #company {
    padding: 50px 0;
  }
  #company .company-title {
    margin-bottom: 20px;
  }
  #company .company-title h3 {
    font-size: 20px;
    padding-left: 25px;
  }
  #company .company-title h3::before {
    width: 35px;
    height: 35px;
    left: 0;
  }
  #company .philosophy-container {
    padding: 25px 20px;
  }
  #company .philosophy-logo {
    width: 150px;
  }
  #company .philosophy-title {
    font-size: 18px;
  }
  #company .philosophy-subtitle {
    font-size: 15px;
  }
  #company .philosophy-description, #company .philosophy-guidelines li {
    font-size: 13px;
    line-height: 1.7;
  }
  #company .company-info {
    margin-top: 50px;
  }
  #company .company-label {
    font-size: 14px;
  }
  #company .company-value {
    font-size: 14px;
  }
  #contact {
    padding: 60px 0;
  }
  #contact .contact-title {
    margin-bottom: 20px;
  }
  #contact .contact-form {
    padding: 15px;
    border-radius: 15PX;
  }
  #contact .checkbox-group {
    display: block;
  }
  #contact .contact-form label {
    font-size: 16px;
  }
  #contact .visit-note {
    font-size: 16px;
  }
  #contact .checkbox-group label {
    font-size: 16px;
    margin: 0;
  }
  #contact .contact-title h3 {
    font-size: 20px;
    padding-left: 25px;
  }
  #contact .contact-title h3::before {
    width: 35px;
    height: 35px;
    left: 0;
  }
  #footer {
    padding: 5px;
  }
  #footer .copy {
    font-size: 12px;
  }
  .floating-buttons {
    bottom: 16px;
    right: 16px;
  }
  .contact-btn {
    width: 48px;
    height: 48px;
  }
  .contact-btn .icon {
    width: 20px;
    height: 20px;
  }
  .main-toggle-btn {
    width: 56px;
    height: 56px;
  }
  .btn-content .icon {
    width: 26px;
    height: 26px;
  }
  .btn-text {
    font-size: 11px;
  }
  .tooltip {
    right: 60px;
    font-size: 12px;
    padding: 5px 8px;
  }
  .catchphrase {
    font-size: 12px;
    padding: 5px 8px;
    bottom: 70px;
  }
}