.circle-hover {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #ffffff;
  color: #007f7a;
  border: 2px solid #007f7a;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  transition: 0.3s ease;
  position: relative;
}

.circle-hover .hover {
  display: none;
}

.circle-hover:hover {
  background: #007f7a;
  color: #ffffff;
}

.circle-hover:hover .normal {
  display: none;
}

.circle-hover:hover .hover {
  display: inline;
}


H5{
	color:#000000;
}

/* フォーム全体 */
.wpcf7 form .cf7-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  background: #ffffff;
  border: 1px solid #e6e9ec;
  border-radius: 12px;
  padding: 24px;
}

/* テキスト/テキストエリア */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cfd8e3;
  border-radius: 8px;
  background: #fff;
  font-size: 16px;
  line-height: 1.5;
  transition: border-color .2s, box-shadow .2s;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: #0F6B7C;
  box-shadow: 0 0 0 3px rgba(15,107,124,.12);
}

/* ラベル */
.wpcf7 form .cf7-grid label {
  font-weight: 600;
  font-size: 14px;
  color: #263238;
}

/* 送信ボタン */
.wpcf7 input[type="submit"],
.wpcf7 .wpcf7-submit {
  background: #0F6B7C;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .05s ease, background .2s ease;
}
.wpcf7 input[type="submit"]:hover {
  background: #0C5562;
}
.wpcf7 input[type="submit"]:active {
  transform: translateY(1px);
}

/* 2カラム→1カラム（スマホ） */
.wpcf7 form .cf7-grid p.full { grid-column: 1 / -1; }
@media (max-width: 767px) {
  .wpcf7 form .cf7-grid {
    grid-template-columns: 1fr;
    padding: 18px;
    gap: 14px;
  }
}

/* バリデーション・送信メッセージ */
.wpcf7 form .wpcf7-response-output {
  margin: 16px 0 0;
  border-radius: 8px;
  padding: 10px 14px;
}
.wpcf7-not-valid-tip { font-size: 13px; color: #d64545; }

/* ====== Seamless Logo Marquee ====== */
/* ====== Marquee 基本 ====== */
.logo-marquee{
  overflow: hidden;
  width: 100%;
  padding: 8px 0;
}

.logo-marquee .logo-track{
  display: inline-flex;
  align-items: center;
  gap: 44px;                       /* ロゴ間隔はお好みで */
  will-change: transform;
  animation: logoMarquee var(--duration,40s) linear infinite;
  animation-play-state: paused;    /* 読み込み完了まで一時停止（JSで解除） */
}

/* ロゴの見え方を統一 */
.logo-marquee img{
  height: 56px;                    /* 最大高さ（お好みで） */
  width: auto;
  flex: 0 0 auto;
  object-fit: contain;
  display: block;
}

/* モバイルはゆったり */
@media (max-width: 768px){
  .logo-marquee .logo-track{ gap: 28px; }
  .logo-marquee img{ height: 52px; }
}

/* 実測距離で動かす（JSが --distance を設定） */
@keyframes logoMarquee{
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-1 * var(--distance, 0px))); }
}

/* ユーザーが reduced-motion を設定している場合は止める */
/* @media (prefers-reduced-motion: reduce){
  .logo-marquee .logo-track{ animation: none !important; transform: none !important; }
} */

/*@media (prefers-reduced-motion: no-preference) {
  .logo-marquee .logo-track {
    animation: logoMarquee var(--duration, 40s) linear infinite !important;
  }
}*/




/* =============================
   ロゴグリッド拡張スタイル
   1) 各セルの中央揃え
   2) ロゴ高さの統一
   3) レスポンシブでの高さ調整
   4) 軽いホバー効果
   ============================= */

/* セル内を縦横センターに */
.logo-grid .elementor-widget,
.logo-grid .elementor-container,
.logo-grid .elementor-column,
.logo-grid .elementor-widget-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 画像の基本ルール（等比・にじみ防止） */
.logo-grid img {
  max-height: 80px;        /* ←PC基準の最大高さ（お好みで） */
  height: auto !important; /* 画像の縦横比を守る */
  width: auto !important;  /* 画像を横方向に伸ばさない */
  max-width: 100%;         /* ボックスからはみ出さない */
  object-fit: contain;
  display: block;
  margin: 0 auto;          /* 横センター補強 */
  transition: transform .25s ease, opacity .25s ease;
}

/* 画像間のゆとり（必要なら） */
.logo-grid .elementor-widget-image { 
  padding: 12px;           /* セル内余白 */
}

/* ホバー時の軽いアクセント（任意） */
.logo-grid img:hover {
  transform: scale(1.05);
  opacity: 0.92;
}

/* タブレットで少し小さく */
@media (max-width: 1024px) {
  .logo-grid img {
    max-height: 64px;
  }
}

/* スマホでさらに小さく */
@media (max-width: 768px) {
  .logo-grid img {
    max-height: 50px;
  }
}

/* SmartSlider テキストのフォントを Noto Sans に固定 */
.n2-ss-slider * {
  font-family: 'Noto Sans', 'Helvetica Neue', Helvetica, Arial, 'Yu Gothic', 'Meiryo', sans-serif !important;
}

.wpcf7 a {
  display: inline-block;
  margin-right: 5px;
  text-decoration: underline;
	color: blue;
}





