@charset "UTF-8";

/*-------------------------------------------
Base styles
-------------------------------------------*/
html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  color: #333;
  font-size: 1rem;
  font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
  background-color: #f9faff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #666;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

li {
  list-style: none;
}

/*-------------------------------------------
Layout
-------------------------------------------*/
.wrapper {
  max-width: 1200px !important;
  padding: 50px 16px !important;
  margin: 0 auto !important;
}

#container {
  margin: 0 auto !important;
}

/*-------------------------------------------
Typography
-------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  margin: 0 0 1rem 0;
  font-weight: 600;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin: 0 0 1rem 0;
}

/*-------------------------------------------
Responsive Typography
-------------------------------------------*/
@media screen and (max-width: 1024px) {
  .wrapper {
    max-width: 1200px !important;
    padding: 40px 20px !important;
    margin: 0 auto !important;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 768px) {
  .wrapper {
    max-width: 1200px !important;
    padding: 30px 16px !important;
    margin: 0 auto !important;
  }
  
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.375rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  h4 {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 480px) {
  .wrapper {
    max-width: 1200px !important;
    padding: 20px 12px !important;
    margin: 0 auto !important;
  }
  
  h1 {
    font-size: 1.375rem;
  }
  
  h2 {
    font-size: 1.25rem;
  }
  
  h3 {
    font-size: 1.125rem;
  }
}
.arrow {
  position: relative;
  display: inline-block;
  padding-left: 12px;
  color: #333;
}
.arrow::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #333;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -6px;
}
.color-white {
  color: #fff;
}
.color-white::before {
  border-color: transparent transparent transparent #fff;
}

/*-------------------------------------------
プライバシーポリシーページ
-------------------------------------------*/
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.privacy-section {
  margin-bottom: 40px;
}

.privacy-section h2 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ff6b35;
}

.privacy-section p {
  margin-bottom: 15px;
  color: #555;
}

.privacy-section ul {
  margin: 15px 0;
  padding-left: 20px;
}

.privacy-section li {
  margin-bottom: 8px;
  color: #555;
}

.privacy-updated {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  text-align: center;
}

.privacy-updated p {
  color: #888;
  font-size: 0.9rem;
}

@media screen and (max-width: 768px) {
  .privacy-content {
    padding: 0 10px;
  }
  
  .privacy-section {
    margin-bottom: 30px;
  }
  
  .privacy-section h2 {
    font-size: 1.2rem;
  }
}

/*-------------------------------------------
大会履歴ページ
-------------------------------------------*/
.tournament-history-content {
  max-width: 1000px;
  margin: 0 auto;
}

/* 現在の大会セクション */
.current-tournament {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 40px;
  border-left: 4px solid #ff6b35;
}

.current-tournament .section-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ff6b35;
}

.current-tournament-info {
  text-align: center;
}

.current-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 25px;
}

.current-link {
  color: #ff6b35;
  text-decoration: none;
  font-weight: bold;
}

.current-link:hover {
  color: #e55a2b;
  text-decoration: underline;
}

.current-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.current-actions .btn {
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.current-actions .btn-primary {
  background: #ff6b35;
  color: white;
}

.current-actions .btn-primary:hover {
  background: #e55a2b;
  color: white;
}

.current-actions .btn-secondary {
  background: white;
  color: #ff6b35;
  border: 2px solid #ff6b35;
}

.current-actions .btn-secondary:hover {
  background: #ff6b35;
  color: white;
}

.history-intro {
  text-align: center;
  margin-bottom: 50px;
}

.history-description {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
}

.history-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.history-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.history-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* PC用レイアウト */
.history-content-pc {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 0;
  min-height: 200px;
}

.history-content-sp {
  display: none;
}

.history-info {
  flex: 4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.history-image {
  flex: 6;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0 8px 8px 0;
}

.history-image img,
.history-hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.history-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-text {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
}

.history-info {
  padding: 20px;
}

.history-title {
  margin-bottom: 15px;
}

.history-title a {
  color: #333;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: bold;
}

.history-title a:hover {
  color: #ff6b35;
}

.history-meta {
  margin-bottom: 15px;
}

.meta-item {
  display: flex;
  margin-bottom: 5px;
  padding-left: 2em; /* 2文字分の字下げ */
}

.meta-label {
  font-weight: bold;
  color: #666;
  min-width: 80px;
}

.meta-value {
  color: #333;
}

.history-excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.history-actions {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: #ff6b35;
  color: #fff;
}

.btn-primary:hover {
  background: #e55a2b;
  color: #fff;
}

.btn-secondary {
  background: #f8f9fa;
  color: #333;
  border: 1px solid #dee2e6;
}

.btn-secondary:hover {
  background: #e9ecef;
  color: #333;
}

.no-history {
  text-align: center;
  padding: 60px 20px;
  color: #666;
}

.history-archive {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
}

.history-archive h2 {
  margin-bottom: 20px;
  color: #333;
}

.history-archive .archive-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.history-archive .archive-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  background: #fff;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.history-archive .archive-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  color: #ff6b35;
}

.history-archive .archive-icon {
  font-size: 1.5rem;
}

/*-------------------------------------------
協賛企業ページ専用スタイル
-------------------------------------------*/
.sponsors-page-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.sponsor-page-item {
  background: white;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  position: relative;
}

.sponsor-page-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.sponsor-page-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  line-height: 1.4;
  order: 0;
}

.sponsor-page-name a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sponsor-page-name a:hover {
  color: #ff6b35;
}



.sponsor-page-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e9ecef;
  border-radius: 8px;
}

.sponsor-page-name-placeholder {
  font-size: 0.9rem;
  color: #6c757d;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
}

.sponsor-stars-container {
  width: 100%;
  margin-bottom: 15px;
  order: -1;
}

.sponsor-page-stars {
  display: flex;
  gap: 2px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.sponsor-page-stars .star {
  color: #ff6b35;
  font-size: 0.8rem;
}

.no-sponsors {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.no-sponsors p {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 15px;
}

.no-sponsors p:last-child {
  margin-bottom: 0;
}

/* 協賛企業ページのレスポンシブ対応 */
@media screen and (max-width: 1200px) {
  .sponsors-page-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}

@media screen and (max-width: 992px) {
  .sponsors-page-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media screen and (max-width: 768px) {
  .sponsors-page-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
  }
  
  .sponsor-page-item {
    padding: 20px;
    gap: 12px;
  }
  
  .sponsor-page-name {
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .sponsors-page-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .sponsor-page-item {
    padding: 15px;
    gap: 10px;
  }
  
  .sponsor-page-name {
    font-size: 0.9rem;
  }
}
.sponsors-content {
  max-width: 1200px;
  margin: 0 auto;
}

.sponsors-intro {
  text-align: center;
  margin-bottom: 50px;
}

.sponsors-description {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
}

.sponsor-group {
  margin-bottom: 50px;
}

.sponsor-group-title {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ff6b35;
}

.sponsor-grid {
  display: grid;
  gap: 30px;
  margin-bottom: 40px;
}

.sponsor-grid-10,
.sponsor-grid-9,
.sponsor-grid-8,
.sponsor-grid-7,
.sponsor-grid-6 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.sponsor-grid-5,
.sponsor-grid-4,
.sponsor-grid-3,
.sponsor-grid-2,
.sponsor-grid-1 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.sponsor-item {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sponsor-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.sponsor-logo {
  margin-bottom: 15px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsor-logo-img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

.sponsor-placeholder {
  width: 100%;
  height: 100%;
  background: #f8f9fa;
  border: 2px dashed #dee2e6;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.sponsor-name {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.sponsor-name a {
  color: #333;
  text-decoration: none;
}

.sponsor-name a:hover {
  color: #ff6b35;
}

.sponsor-description {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 10px;
}

.sponsor-meta {
  margin-top: 10px;
}


.no-sponsors {
  text-align: center;
  padding: 60px 20px;
  color: #666;
}

.sponsor-call {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 8px;
  margin-top: 50px;
}

.sponsor-call h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.sponsor-call-content {
  max-width: 800px;
  margin: 0 auto;
}

.sponsor-benefits {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  margin: 30px 0;
}

.sponsor-benefits h3 {
  color: #333;
  margin-bottom: 20px;
}

.sponsor-benefits ul {
  list-style: none;
  padding: 0;
}

.sponsor-benefits li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  padding-left: 25px;
}

.sponsor-benefits li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ff6b35;
  font-weight: bold;
}

.sponsor-contact {
  text-align: center;
  margin-top: 30px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .history-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* SP用レイアウト */
  .history-content-pc {
    display: none;
  }
  
  .history-content-sp {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
  
  .history-content-sp .history-title {
    padding: 15px 15px 10px 15px;
    margin: 0;
  }
  
  .history-content-sp .history-image {
    width: 100%;
    height: 120px;
    border-radius: 0;
    margin-bottom: 10px;
  }
  
  .history-content-sp .history-actions {
    flex-direction: row;
    padding: 15px;
    gap: 10px;
    justify-content: center;
  }
  
  .history-archive .archive-links {
    flex-direction: column;
    gap: 15px;
  }
  
  .sponsor-grid {
    grid-template-columns: 1fr;
  }
  
  .sponsor-call {
    padding: 30px 20px;
  }
}

/*-------------------------------------------
単体表示ページ
-------------------------------------------*/
.tournament-detail,
.sponsor-detail,
.news-detail {
  max-width: 800px;
  margin: 0 auto;
}

.tournament-header,
.sponsor-header,
.news-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid #ff6b35;
}

.tournament-title,
.sponsor-title,
.news-title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.tournament-meta,
.sponsor-meta,
.news-meta {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.meta-label {
  font-weight: bold;
  color: #666;
}

.meta-value {
  color: #333;
}

.sponsor-logo-large {
  margin-bottom: 20px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsor-logo-large .sponsor-logo-img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
}

.sponsor-placeholder-large {
  width: 200px;
  height: 120px;
  background: #f8f9fa;
  border: 2px dashed #dee2e6;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.sponsor-placeholder-large .sponsor-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: #666;
}


.sponsor-link {
  color: #ff6b35;
  text-decoration: none;
}

.sponsor-link:hover {
  text-decoration: underline;
}

.tournament-image,
.news-image {
  margin-bottom: 30px;
  text-align: center;
}

.tournament-image img,
.news-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tournament-content,
.sponsor-content,
.news-content {
  line-height: 1.8;
  color: #555;
  margin-bottom: 40px;
}

.tournament-content h2,
.sponsor-content h2,
.news-content h2 {
  color: #333;
  margin-top: 30px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.sponsor-description {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.sponsor-description h2 {
  margin-top: 0;
  color: #333;
}

.tournament-actions,
.sponsor-actions,
.news-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

@media screen and (max-width: 768px) {
  .tournament-title,
  .sponsor-title,
  .news-title {
    font-size: 1.5rem;
  }
  
  .tournament-meta,
  .sponsor-meta,
  .news-meta {
    flex-direction: column;
    gap: 15px;
  }
  
  .tournament-actions,
  .sponsor-actions,
  .news-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .sponsor-logo-large {
    height: 100px;
  }
  
  .sponsor-placeholder-large {
    width: 150px;
    height: 100px;
  }
}

/*-------------------------------------------
お知らせ一覧ページ
-------------------------------------------*/
.page-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 40px 0;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 10px;
}

.page-title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-description {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
}

.news-content {
  max-width: 800px;
  margin: 0 auto;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}

.news-item {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.news-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.news-date {
  color: #666;
  font-weight: 500;
}

.news-category {
  background: #ff6b35;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.news-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.news-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-title a:hover {
  color: #ff6b35;
}

.news-excerpt {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.news-actions {
  text-align: right;
}

.read-more {
  display: inline-block;
  background: #ff6b35;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.read-more:hover {
  background: #e55a2b;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
}

.no-content {
  text-align: center;
  padding: 60px 20px;
  background: #f8f9fa;
  border-radius: 10px;
  color: #666;
}

.pagination {
  text-align: center;
  margin-top: 50px;
}

.pagination ul {
  display: inline-flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 5px;
}

.pagination li {
  margin: 0;
}

.pagination a,
.pagination span {
  display: block;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.pagination a:hover {
  background: #ff6b35;
  color: #fff;
  border-color: #ff6b35;
}

.pagination .current {
  background: #ff6b35;
  color: #fff;
  border-color: #ff6b35;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }
  
  .news-item {
    padding: 20px;
  }
  
  .news-title {
    font-size: 1.3rem;
  }
  
  .news-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media screen and (max-width: 480px) {
  .page-header {
    padding: 30px 20px;
  }
  
  .page-title {
    font-size: 1.8rem;
  }
  
  .news-item {
    padding: 15px;
  }
  
  .news-title {
    font-size: 1.2rem;
  }
}

/*-------------------------------------------
お問い合わせページ
-------------------------------------------*/
.contact-content {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-intro {
  text-align: center;
  margin-bottom: 50px;
}

.contact-description {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.contact-form-section,
.contact-info-section {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ff6b35;
}

/* フォームスタイル */
.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}

.required {
  color: #ff6b35;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #ff6b35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-checkbox input[type="checkbox"] {
  margin: 0;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.form-checkbox a {
  color: #ff6b35;
  text-decoration: none;
}

.form-checkbox a:hover {
  text-decoration: underline;
}

.form-submit {
  text-align: center;
  margin-top: 30px;
}

.btn-large {
  padding: 15px 40px;
  font-size: 1.1rem;
}

/* 連絡先情報 */
.contact-info {
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.info-icon {
  font-size: 1.5rem;
  width: 40px;
  text-align: center;
  flex-shrink: 0;
}

.info-content h3 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 5px;
}

.info-content p {
  color: #555;
  margin-bottom: 5px;
  font-weight: 500;
}

.info-content small {
  color: #888;
  font-size: 0.85rem;
}

.contact-note {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 6px;
  border-left: 4px solid #ff6b35;
}

.contact-note h3 {
  color: #333;
  margin-bottom: 15px;
  font-size: 1rem;
}

.contact-note ul {
  margin: 0;
  padding-left: 20px;
}

.contact-note li {
  color: #666;
  margin-bottom: 8px;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* よくある質問 */
.faq-section {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 8px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 6px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question h3 {
  font-size: 1rem;
  color: #333;
  margin: 0;
  flex: 1;
}

.faq-toggle {
  font-size: 1.5rem;
  color: #ff6b35;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 200px;
}

.faq-answer p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Contact Form 7のスタイル調整 */
.wpcf7-form {
  margin: 0;
}

.wpcf7-form p {
  margin-bottom: 25px;
}

.wpcf7-form label {
  display: block;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}

.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;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: #ff6b35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.wpcf7-form input[type="submit"] {
  background: #ff6b35;
  color: #fff;
  padding: 15px 40px;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.wpcf7-form input[type="submit"]:hover {
  background: #e55a2b;
}

/* Contact Form 7 チェックボックスの改行防止 */
.wpcf7-form .wpcf7-acceptance {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 25px;
}

.wpcf7-form .wpcf7-acceptance input[type="checkbox"] {
  width: auto;
  margin: 0;
  flex-shrink: 0;
  margin-top: 2px;
}

.wpcf7-form .wpcf7-acceptance label {
  margin: 0;
  font-weight: normal;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.wpcf7-form .wpcf7-acceptance a {
  color: #ff6b35;
  text-decoration: underline;
}

.wpcf7-form .wpcf7-acceptance a:hover {
  color: #e55a2b;
}

.wpcf7-response-output {
  margin-top: 20px;
  padding: 15px;
  border-radius: 6px;
  font-weight: bold;
}

.wpcf7-mail-sent-ok {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.wpcf7-validation-errors {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.form-error {
  background: #f8d7da;
  color: #721c24;
  padding: 15px;
  border: 1px solid #f5c6cb;
  border-radius: 6px;
  margin: 20px 0;
  text-align: center;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-form-section,
  .contact-info-section {
    padding: 30px 20px;
  }
  
  .faq-section {
    padding: 30px 20px;
  }
  
  .info-item {
    flex-direction: column;
    text-align: center;
  }
  
  .info-icon {
    margin-bottom: 10px;
  }
}
