/* -------------------------
   テキスト入力用
------------------------- */
.tailwindInput {
  display: block;
  width: 100%;                /* w-full */
  padding: 0.5rem 0.75rem;    /* p-2 px-3 */
  border: 1px solid #d1d5db;  /* border border-gray-300 */
  border-radius: 0.25rem;     /* rounded */
  background-color: #fff;     /* bg-white (デフォルト) */
  outline: none;              /* focus:outline-none */
  transition: box-shadow 0.2s, border-color 0.2s;
  font-size: 1rem;            /* テキストサイズ調整 */
}

/* フォーカス時の枠線強調 */
.tailwindInput:focus {
  border-color: #3b82f6;         /* focus:ring-blue-500 */
  box-shadow: 0 0 0 2px #bfdbfe; /* 簡易的に「青系ぼかし」でフォーカスリング的表現 */
}

/* -------------------------
   セレクトボックス用
------------------------- */
.tailwindSelect {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.25rem;
  background-color: #fff;
  outline: none;
  appearance: none;          /* ブラウザ標準の矢印を無効化したい場合 */
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D'10'%20height%3D'6'%20viewBox%3D'0%200%2010%206'%20fill%3D'none'%20xmlns%3D'http%3A//www.w3.org/2000/svg'%3E%3Cpath%20d%3D'M9.33301%200.666657L4.99967%204.99999L0.666342%200.666657'%20stroke%3D'%233B82F6'%20stroke-width%3D'1.5'%20/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center; 
  background-size: 1rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.tailwindSelect:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px #bfdbfe;
}

/* -------------------------
   テキストエリア用
------------------------- */
.tailwindTextarea {
  display: block;
  width: 100%;
  min-height: 8rem;         /* h-32相当 */
  padding: 0.5rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.25rem;
  background-color: #fff;
  outline: none;
  resize: vertical;         /* 任意でリサイズ可能 */
  transition: box-shadow 0.2s, border-color 0.2s;
}

.tailwindTextarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px #bfdbfe;
}

/* -------------------------
   ファイル入力用
------------------------- */
.tailwindFile {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.25rem;
  background-color: #fff;
  outline: none;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.tailwindFile:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px #bfdbfe;
}

/* -------------------------
   ボタン（プライマリ）
------------------------- */
.tailwindButtonPrimary {
  display: inline-block;
  padding: 0.5rem 1rem;       /* px-4 py-2相当 */
  background-color: #3b82f6;  /* bg-blue-500 */
  color: #fff;                /* text-white */
  font-weight: 600;           /* font-semibold */
  border-radius: 0.25rem;     /* rounded */
  transition: background-color 0.2s;
  text-align: center;
  cursor: pointer;
  text-decoration: none;      /* aタグの場合の下線除去 */
  border: none;               /* もし <button> ならデフォルト枠なしに */
}

.tailwindButtonPrimary:hover {
  background-color: #2563eb;  /* hover:bg-blue-600 */
}

/* -------------------------
   ボタン（セカンダリ）
------------------------- */
.tailwindButtonSecondary {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #e5e7eb;  /* bg-gray-300 */
  color: #374151;            /* text-gray-700 */
  border-radius: 0.25rem;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: background-color 0.2s;
}

.tailwindButtonSecondary:hover {
  background-color: #d1d5db; /* hover:bg-gray-400 */
}

/* フッター全体のスタイル */
.site-footer {
  background-color: #004592;    /* 背景色 */
  color: #fff;               /* 文字色 */
  padding: 40px 20px;        /* 上下左右の余白 */
  font-family: Arial, sans-serif;
}

/* フッター内のコンテンツを中央寄せにする */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

/* ロゴ部分 */
.footer-logo img {
  max-width: 150px;
  height: auto;
}

/* ナビゲーションメニュー */
.footer-nav {
  margin: 20px 0;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.footer-nav li {
  margin-right: 15px;
}

.footer-nav a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #fff;
}

/* コピーライト */
.footer-container .copyright {
  width: 100%;
  text-align: center;
  margin-top: 20px;
  font-size: 0.9em;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-nav li {
    margin: 10px 0;
  }
}

/* テーマのCSSや追加CSSに記述 */
.wpcf7-response-output {
  display: none !important;
}
