/*
Theme Name: 2025expo
Description: オリジナルテーマ
Version: 1.0
Author: Your Name
*/

/* リセットCSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial,
    sans-serif;
  line-height: 1.6;
  color: #333;
}

/* ヘッダー */
.site-header {
  background-color: #fff;
  padding: 20px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  @media (max-width: 768px) {
    padding: 10px 0;
  }
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-title {
  display: flex;
  gap: 16px;
}

.site-title a {
  text-decoration: none;
  color: #333;
}

.site-title img {
  width: 64px;
  height: 64px;
  @media (max-width: 768px) {
    width: 48px;
    height: 48px;
  }
}

.header__textTitle {
  font-size: 24px;
  font-weight: bold;
  @media (max-width: 768px) {
    font-size: 18px;
  }
}

.header__textSubtitle {
  font-size: 16px;
  font-weight: normal;
  @media (max-width: 768px) {
    font-size: 14px;
  }
}

/* メインコンテンツ */
.lp__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  @media (max-width: 768px) {
    padding: 20px 0;
  }
}

/* フッター */
.site-footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* LP */
.lp__container {
  width: 100%;
  height: 100%;
}

.lp__container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* お問い合わせフォーム */
.contact-form-container {
  margin-top: 60px;
  margin-bottom: 60px;
}

.contact-form-title {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  color: #364e96; /*文字色*/
  padding: 0.5em 0; /*上下の余白*/
  display: flex;
  align-items: center;/* 縦位置の調整 */
  gap: 16px;
}

.contact-form-title::before,
.contact-form-title::after {
  content: '';
  flex-grow: 1;/* 余白を分け与える */
  height: 3px;
  background: #364e96;
}

.wpcf7-form {
  max-width: 600px;
  margin: 0 auto;
}

.wpcf7-form p {
  margin-bottom: 24px;
}

.wpcf7-form label {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
  @media (max-width: 768px) {
    font-size: 16px;
  }
}

.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.wpcf7-form-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.wpcf7-form-control:focus {
  outline: none;
  border-color: #364e96;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.wpcf7-form-control.wpcf7-validates-as-required {
  border-left: 3px solid #364e96;
}

.wpcf7-form-control[aria-invalid="true"] {
  border-color: #dc3545;
}

.wpcf7-form-control[aria-invalid="true"]:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

/* 送信ボタン */
.wpcf7-submit {
  width: 100%;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: #364e96;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.1s ease;
}

.wpcf7-submit:hover {
  background-color: #0052a3;
  transform: translateY(-1px);
}

.wpcf7-submit:active {
  transform: translateY(0);
}

.wpcf7-submit:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  transform: none;
}

/* スピナー */
.wpcf7-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: wpcf7-spin 0.6s linear infinite;
}

@keyframes wpcf7-spin {
  to {
    transform: rotate(360deg);
  }
}

/* レスポンスメッセージ */
.wpcf7-response-output {
  margin-top: 20px;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 14px;
}

.wpcf7-mail-sent-ok {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.wpcf7-mail-sent-ng,
.wpcf7-aborted {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.wpcf7-spam {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
}

.wpcf7-validation-errors {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* 必須マークのスタイル（必要に応じて） */
.wpcf7-form-control-wrap[data-name]::after {
  content: "";
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .contact-form-container {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .contact-form-title {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .wpcf7-form {
    max-width: 100%;
  }

  .wpcf7-form p {
    margin-bottom: 20px;
  }

  .wpcf7-form-control {
    padding: 10px 14px;
    font-size: 16px; /* iOSでズームを防ぐ */
  }

  .wpcf7-submit {
    padding: 12px 24px;
    font-size: 16px;
  }
}
