@charset "UTF-8";
/*
Theme Name: Chosui Volleyball Theme
Theme URI: https://www.chosui-volleyball-association.com
Description: 長水バレーボール協会 公式サイト用WordPressテーマ。SWELL子テーマとしても、単体テーマとしても利用可能。
Author: Ryo Sakai
Author URI: https://your-site.com
Template: swell
Version: 1.0.0
Text Domain: chosui
*/

/* 実際のスタイルは /assets/css/main.css に記述 */

/* ============================================
 * 長水バレーボール協会 カスタムCSS
 * 最終更新: 2026-06-28
 * ============================================ */


/* 1. ヘッダーロゴ */
.header__logo-img {
  width: auto;
  height: 64px;
  max-height: 80px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}

.header__logo,
.header__logo:hover,
.header__logo:focus,
.header__logo:active {
  text-decoration: none !important;
  background: transparent !important;
  opacity: 1 !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}


/* 2. ヘッダーメニュー(視認性UP) */
.header__nav,
.header__nav-list,
.header__nav-list a,
.header__nav-list li a,
header nav a,
header nav ul li a {
  color: #ffffff !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  font-weight: 600;
}

.header__nav-list a:hover,
.header__nav-list li a:hover,
header nav a:hover {
  color: #ff9933 !important;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}


/* 3. ヒーローエリア(視認性UP) */
.hero::before,
.hero__overlay {
  background: linear-gradient(
    135deg,
    rgba(26, 35, 126, 0.5) 0%,
    rgba(26, 35, 126, 0.35) 100%
  ) !important;
}

.hero__title,
.hero h1 {
  color: #ffffff !important;
  text-shadow: 
    0 2px 12px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(0, 0, 0, 0.4);
  font-weight: 700;
}

.hero__subtitle,
.hero p {
  color: #ffffff !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.hero__cta,
.hero a {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero__scroll-indicator,
.hero__scroll-text {
  color: #ffffff !important;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}


/* 4. お問い合わせフォーム */
.form-wrapper,
.entry-content .wpcf7 {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  border: 1.5px solid #d0d7e2;
  border-radius: 6px;
  background: #fff;
  box-sizing: border-box;
}

.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: #ff6f00;
  box-shadow: 0 0 0 3px rgba(255, 111, 0, 0.15);
}

.wpcf7-form label {
  display: block;
  margin-bottom: 1.2rem;
  font-weight: 600;
  color: #1a237e;
  font-size: 0.95rem;
}

.wpcf7-form textarea {
  min-height: 180px;
}

.wpcf7-submit,
.wpcf7-form input[type="submit"] {
  display: inline-block;
  background: linear-gradient(135deg, #ff6f00 0%, #ff9933 100%);
  color: #ffffff !important;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 14px 48px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(255, 111, 0, 0.4);
}

.wpcf7-submit:hover,
.wpcf7-form input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 111, 0, 0.5);
}


/* 5. スマホ表示(ハンバーガーメニュー対応) */
@media (min-width: 769px) {
  .header__menu-btn {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .header__menu-btn {
    display: flex !important;
    align-items: center;
    gap: 4px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
  }

  .header__menu-btn .material-icons {
    color: #ffffff;
    font-size: 1.4rem;
  }

  .header__nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(26, 35, 126, 0.98);
    padding: 80px 24px 24px;
    z-index: 1000;
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
  }

  .header__nav.is-open {
    display: block;
  }

  .header__nav-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .header__nav-list a {
    display: block;
    padding: 0.5rem 0;
    font-size: 1.1rem;
    color: #ffffff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .header__logo-img {
    height: 44px;
    max-height: 50px;
  }

  .header__inner {
    padding: 12px 16px;
  }

  .hero__cta {
    font-size: 0.95rem;
    padding: 14px 20px;
    white-space: nowrap;
    max-width: 90%;
    margin: 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .hero__cta span {
    white-space: nowrap;
  }

  .hero__title,
  .hero h1 {
    font-size: 1.6rem !important;
    line-height: 1.4;
  }

  .hero__subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .wpcf7-submit,
  .wpcf7-form input[type="submit"] {
    width: 100%;
  }
}


