/* リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacMacSystemFont, "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo,
    sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}

/* ヘッダー */
.header {
  background-color: #2c3e50;
  padding: 1.5rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.logo-subtitle {
  color: #95a5a6;
  font-size: 0.9rem;
}

.nav a {
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid #fff;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.nav a:hover {
  background-color: #fff;
  color: #2c3e50;
}

/* ヒーローセクション */
.hero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  padding: 4rem 20px;
  text-align: center;
  color: #fff;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #ecf0f1;
}

/* コンテナ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 緊急連絡先 */
.emergency {
  padding: 3rem 20px;
  background-color: #fff;
  margin-top: -2rem;
  position: relative;
  z-index: 1;
}

.emergency-card {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: #fff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.emergency-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.emergency-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.emergency-text {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.emergency-phone {
  display: inline-block;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  margin: 1rem 0;
  padding: 1rem 2rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.emergency-phone:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.emergency-note {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* サポートメニュー */
.support-menu {
  padding: 4rem 20px;
  background-color: #f5f5f5;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #2c3e50;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #3498db;
}

/* カードグリッド */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.support-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.card-description {
  color: #7f8c8d;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.card-list {
  list-style: none;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-list li {
  padding: 0.5rem 0;
  color: #555;
  position: relative;
  padding-left: 1.5rem;
}

.card-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: bold;
}

.card-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #3498db;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  text-align: center;
  transition: all 0.3s ease;
  font-weight: 500;
}

.card-button:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
}

/* 営業時間 */
.business-hours {
  padding: 4rem 20px;
  background-color: #fff;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.hours-card {
  background-color: #ecf0f1;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

.hours-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.hours-card p {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: #555;
}

.closed {
  color: #e74c3c !important;
  font-weight: bold;
}

/* フッター */
.footer {
  background-color: #2c3e50;
  color: #fff;
  padding: 2rem 20px;
  text-align: center;
}

.footer p {
  margin-bottom: 0.5rem;
}

.footer-link a {
  color: #3498db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link a:hover {
  color: #5dade2;
}

/* パンくずリスト */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.9rem;
  color: #7f8c8d;
}

.breadcrumb a {
  color: #3498db;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ページコンテンツ */
.page-content {
  padding: 2rem 20px 4rem;
  background-color: #fff;
  min-height: 60vh;
}

.page-title {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid #3498db;
}

.content-section {
  margin-bottom: 3rem;
}

.content-section .section-title {
  text-align: left;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #2c3e50;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #ecf0f1;
}

.content-section .section-title::after {
  display: none;
}

/* 緊急セクション（詳細ページ用） */
.emergency-section {
  background-color: #fef5f5;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 3rem;
}

.emergency-title {
  color: #e74c3c !important;
  border-bottom-color: #e74c3c !important;
}

.emergency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.emergency-grid .emergency-card {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  padding: 1.5rem;
  margin: 0;
}

.emergency-grid .emergency-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.emergency-tel {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 1rem 0;
}

.emergency-tel a {
  color: #fff;
  text-decoration: none;
}

/* フロー表示 */
.flow-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.flow-step {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: #3498db;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.flow-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #2c3e50;
}

.flow-step p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* トラブルリスト */
.trouble-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.trouble-item {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #3498db;
}

.trouble-item h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.trouble-item ul {
  list-style: none;
  padding-left: 0;
}

.trouble-item ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #555;
}

.trouble-item ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #3498db;
  font-weight: bold;
  font-size: 1.2rem;
}

/* 費用情報 */
.cost-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.cost-card {
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cost-card.owner {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: #fff;
}

.cost-card.tenant {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  color: #fff;
}

.cost-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cost-card ul {
  list-style: none;
  padding-left: 0;
}

.cost-card ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}
/*
.cost-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: bold;
}
*/

.note {
  font-size: 0.9rem;
  color: #7f8c8d;
  margin-top: 1rem;
  font-style: italic;
}

.span-bold {
  font-weight: 600;
}

/* 支払い方法 */
.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.payment-card {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  border-top: 4px solid #3498db;
}

.payment-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.payment-card p {
  margin-bottom: 1rem;
  color: #555;
}

.payment-card ul {
  list-style: none;
  padding-left: 0;
}

.payment-card ul li {
  padding: 0.5rem 0;
  color: #555;
}

/* 銀行情報 */
.bank-info {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  max-width: 600px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

.info-table tr {
  border-bottom: 1px solid #ddd;
}

.info-table th,
.info-table td {
  padding: 1rem;
  text-align: left;
}

.info-table th {
  background-color: #ecf0f1;
  font-weight: 600;
  color: #2c3e50;
  width: 40%;
}

.info-table td {
  color: #555;
  font-weight: 500;
}

/* 注意ボックス */
.notice-box {
  background-color: #fff9e6;
  border-left: 4px solid #f39c12;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 4px;
}

.notice-box h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #e67e22;
}

.notice-box p {
  color: #555;
  line-height: 1.6;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #3498db;
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #2c3e50;
  font-weight: 600;
}

.faq-item p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.faq-item ul {
  margin-top: 0.5rem;
  padding-left: 1.5rem;
}

.faq-item ul li {
  color: #555;
  margin-bottom: 0.25rem;
}

/* 連絡先情報 */
.contact-info {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

.contact-info p {
  margin-bottom: 1rem;
  color: #555;
}

.contact-tel {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2c3e50;
  margin: 1.5rem 0;
}

.contact-tel a {
  color: #e74c3c;
  text-decoration: none;
}

.contact-tel a:hover {
  text-decoration: underline;
}

.contact-email {
  font-size: 1.1rem;
}

.contact-email a {
  color: #3498db;
  text-decoration: none;
}

.contact-email a:hover {
  text-decoration: underline;
}

/* 手続きリスト */
.procedure-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.procedure-card {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #3498db;
}

.procedure-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.procedure-card .where,
.procedure-card .when,
.procedure-card .what {
  font-weight: 600;
  color: #555;
  margin-bottom: 0.5rem;
}

.procedure-card ul {
  list-style: none;
  padding-left: 0;
  margin-top: 0.5rem;
}

.procedure-card ul li {
  padding: 0.3rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #666;
  font-size: 0.95rem;
}

.procedure-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #3498db;
}

/* ユーティリティリスト */
.utility-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.utility-card {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #27ae60;
}

.utility-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #27ae60;
}

.utility-card p {
  margin-bottom: 1rem;
  color: #555;
}

.utility-card ul {
  list-style: none;
  padding-left: 0;
}

.utility-card ul li {
  padding: 0.3rem 0;
  color: #666;
  font-size: 0.95rem;
}

/* 郵便サービス */
.mail-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-item {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
}

.service-item h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.service-item p {
  margin-bottom: 1rem;
  color: #555;
}

.service-item ul {
  list-style: none;
  padding-left: 0;
}

.service-item ul li {
  padding: 0.3rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #666;
  font-size: 0.95rem;
}

.service-item ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #3498db;
}

/* その他の手続き */
.other-procedures {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.procedure-item {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
}

.procedure-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #2c3e50;
}

.procedure-item p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* 通知ボックス */
.notification-box {
  background-color: #e8f4f8;
  border-left: 4px solid #3498db;
  padding: 1.5rem;
  border-radius: 4px;
}

.notification-box p {
  margin-bottom: 1rem;
  color: #2c3e50;
  font-weight: 600;
}

.notification-list {
  list-style: none;
  padding-left: 0;
}

.notification-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #555;
}

.notification-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #3498db;
  font-weight: bold;
}

/* 設備詳細 */
.equipment-detail {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.equipment-detail h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #2c3e50;
  border-bottom: 2px solid #3498db;
  padding-bottom: 0.5rem;
}

.equipment-detail ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.equipment-detail ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #555;
}

.equipment-detail ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: bold;
}

/* ゴミガイド */
.garbage-guide {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
}

.garbage-guide h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.garbage-guide ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.garbage-guide ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #555;
}

.garbage-guide ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: bold;
}

/* チェックリスト */
.checklist {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.check-item {
  padding: 0.75rem;
  background-color: #fff;
  border-radius: 4px;
  border-left: 3px solid #3498db;
  color: #555;
}

/* 更新情報 */
.renewal-info,
.cancellation-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.info-box {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #3498db;
}

.info-box h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.info-box p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.info-box ul {
  list-style: none;
  padding-left: 0;
}

.info-box ul li {
  padding: 0.3rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #666;
}

.info-box ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #3498db;
}

.important-box {
  background-color: #fff9e6;
  border-left: 4px solid #f39c12;
  padding: 1.5rem;
  border-radius: 8px;
}

.important-box h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #e67e22;
}

.important-box p {
  color: #555;
  line-height: 1.6;
}

.important-box ul li{
  list-style-type: none;
}

.important-box strong {
  color: #e67e22;
  font-size: 1.1rem;
}

/* 戻るボタン */
.back-button {
  text-align: center;
  margin: 3rem 0 2rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #3498db;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

/* ドキュメントダウンロード */
.document-download {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 3rem;
}

.document-download p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  color: #667eea;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  background: #f8f9fa;
}

.download-icon {
  width: 24px;
  height: 24px;
}

/* ドキュメントガイド */
.document-guide {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.document-guide h3 {
  color: #2c3e50;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid #3498db;
}

.guide-intro {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background: #f0f8ff;
  border-left: 4px solid #3498db;
  border-radius: 4px;
}

.document-image {
  margin: 2rem 0;
  text-align: center;
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
}

.document-image img {
  max-width: 100%;
  height: auto;
  border: 2px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 記入説明 */
.fill-instructions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.instruction-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #3498db;
  transition: all 0.3s ease;
}

.instruction-item:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.instruction-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

.instruction-content {
  flex: 1;
}

.instruction-content h4 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.instruction-content p {
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .document-download {
    padding: 1.5rem;
  }

  .download-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  .document-guide {
    padding: 1.5rem;
  }

  .document-image {
    padding: 1rem;
  }

  .instruction-item {
    flex-direction: column;
    gap: 1rem;
  }

  .instruction-number {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .instruction-content h4 {
    font-size: 1.1rem;
  }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .emergency-phone {
    font-size: 1.5rem;
    padding: 0.75rem 1.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .page-title {
    font-size: 1.8rem;
  }

  .content-section .section-title {
    font-size: 1.4rem;
  }

  .flow-steps,
  .trouble-list,
  .cost-info,
  .payment-methods,
  .procedure-list,
  .utility-list,
  .mail-services,
  .other-procedures {
    grid-template-columns: 1fr;
  }

  .emergency-grid {
    grid-template-columns: 1fr;
  }

  .emergency-tel {
    font-size: 1.2rem;
  }

  .contact-tel {
    font-size: 1.2rem;
  }

  .checklist {
    grid-template-columns: 1fr;
  }
}

/* 準備中ページ用のスタイルを追加 */

/* 準備中ページ */
.coming-soon {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 4rem 20px;
}

.coming-soon-container {
  max-width: 800px;
  background-color: #fff;
  padding: 4rem 3rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.coming-soon-icon {
  font-size: 5rem;
  margin-bottom: 2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.coming-soon-title {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.coming-soon-text {
  font-size: 1.2rem;
  color: #7f8c8d;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.coming-soon-info {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.info-label {
  font-size: 1.1rem;
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.contact-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.contact-item {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-label {
  font-size: 0.9rem;
  color: #7f8c8d;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.contact-value {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.phone-link {
  color: #e74c3c;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: #c0392b;
}

.email-link {
  color: #3498db;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.email-link:hover {
  color: #2980b9;
}

.contact-hours {
  font-size: 0.85rem;
  color: #95a5a6;
  margin-top: 0.5rem;
}

/* レスポンシブ対応（準備中ページ） */
@media (max-width: 768px) {
  .coming-soon-container {
    padding: 3rem 1.5rem;
  }

  .coming-soon-icon {
    font-size: 4rem;
  }

  .coming-soon-title {
    font-size: 1.8rem;
  }

  .coming-soon-text {
    font-size: 1rem;
  }

  .contact-box {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-value {
    font-size: 1.2rem;
  }
}

/* フォーム要素のスタイルを追加 */

/* フォーム全体 */
form label {
  display: block;
  margin-bottom: 1.5rem;
  color: #2c3e50;
  font-weight: 600;
  font-size: 1rem;
}

/* テキスト入力フィールド */
.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #2c3e50;
  background-color: #fff;
  border: 2px solid #dfe6e9;
  border-radius: 6px;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  font-family: inherit;
}

.inquiry-type-label,
.inquiry-type-field {
    display: none;
}

.form-input:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-input::placeholder {
  color: #b2bec3;
}

.form-input:hover {
  border-color: #b2bec3;
}

/* テキストエリア */
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #fff;
  border: 2px solid #dfe6e9;
  border-radius: 6px;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  min-height: 150px;
  resize: vertical;
  font-family: inherit;
}

.form-textarea:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-textarea::placeholder {
  color: #b2bec3;
}

.form-textarea:hover {
  border-color: #b2bec3;
}

/* ファイルアップロード */
.form-file {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 0.95rem;
  color: #2c3e50;
  background-color: #f8f9fa;
  border: 2px dashed #dfe6e9;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.form-file:hover {
  border-color: #3498db;
  background-color: #ecf6fc;
}

.form-file:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-file::file-selector-button {
  padding: 0.5rem 1rem;
  margin-right: 1rem;
  background-color: #3498db;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.form-file::file-selector-button:hover {
  background-color: #2980b9;
}

/* 送信ボタン */
.form-submit {
  display: inline-block;
  padding: 1rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
  margin-top: 1rem;
}

.form-submit:hover {
  background: linear-gradient(135deg, #2980b9 0%, #21618c 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(52, 152, 219, 0.4);
}

.form-submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

.form-submit:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.3);
}

/* フォームのレスポンシブ対応 */
@media (max-width: 768px) {
  .form-input,
  .form-textarea,
  .form-file {
    font-size: 0.95rem;
    padding: 0.75rem 0.875rem;
  }

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

  .form-submit {
    width: 100%;
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }

  .form-file::file-selector-button {
    padding: 0.4rem 0.875rem;
    margin-right: 0.75rem;
    font-size: 0.9rem;
  }
}



/* 送信完了ページ */
.thanks-page {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8f4f8 100%);
  padding: 4rem 20px;
}

.thanks-container {
  max-width: 800px;
  width: 100%;
  background-color: #fff;
  padding: 4rem 3rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.thanks-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
  color: #fff;
  font-size: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thanks-title {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.thanks-message {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.thanks-info-box {
  background-color: #f8f9fa;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  text-align: left;
}

.thanks-subtitle {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 600;
}

.thanks-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.thanks-step {
  text-align: center;
}

.thanks-step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.thanks-step-text {
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
}

.thanks-notice {
  background-color: #fff9e6;
  border-left: 4px solid #f39c12;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  text-align: left;
}

.thanks-notice h3 {
  font-size: 1.2rem;
  color: #e67e22;
  margin-bottom: 0.75rem;
}

.thanks-notice p {
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.thanks-contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.thanks-contact-item {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
}

.thanks-contact-label {
  font-size: 0.9rem;
  color: #7f8c8d;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.thanks-contact-phone {
  margin-bottom: 0.5rem;
}

.thanks-contact-phone a {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.emergency-phone-link {
  color: #e74c3c;
}

.emergency-phone-link:hover {
  color: #c0392b;
  text-decoration: underline;
}

.thanks-contact-hours {
  font-size: 0.85rem;
  color: #95a5a6;
}

.thanks-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
  background-color: #ecf0f1;
  color: #2c3e50;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  background-color: #bdc3c7;
  transform: translateY(-2px);
}

.thanks_line_block {
  margin: auto auto 2rem;
}
.thanks_line_block h2 {
  color: red;
}

/* レスポンシブ対応（送信完了ページ） */
@media (max-width: 768px) {
  .thanks-container {
    padding: 3rem 1.5rem;
  }

  .thanks-icon {
    width: 80px;
    height: 80px;
    font-size: 3rem;
  }

  .thanks-title {
    font-size: 1.8rem;
  }

  .thanks-message {
    font-size: 1rem;
  }

  .thanks-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .thanks-contact {
    grid-template-columns: 1fr;
  }

  .thanks-contact-phone a {
    font-size: 1.2rem;
  }

  .thanks-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    padding: 0.875rem 1.5rem;
  }
}


/* ページヘッダー */
.page-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2.5rem 1rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
}

.page-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

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

/* お知らせフィルター */
.news-filter {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.625rem 1.5rem;
  border: 2px solid #e0e0e0;
  background-color: #fff;
  color: #666;
  border-radius: 24px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.filter-btn:hover {
  border-color: #0066cc;
  color: #0066cc;
  background-color: #f0f7ff;
}

.filter-btn.active {
  background-color: #0066cc;
  color: #fff;
  border-color: #0066cc;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

/* お知らせ一覧 */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* お知らせアイテム */
.news-item {
  background-color: #fff;
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #ccc;
  transition: all 0.3s ease;
  position: relative;
}

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

/* お知らせタイプ別の枠線カラー */
.news-item.important {
  border-left-color: #dc3545;
}

.news-item.maintenance {
  border-left-color: #ffc107;
}

.news-item.general {
  border-left-color: #28a745;
}

/* バッジ */
.news-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.badge-important {
  background-color: #dc3545;
  color: #fff;
}

.badge-maintenance {
  background-color: #ffc107;
  color: #000;
}

.badge-general {
  background-color: #28a745;
  color: #fff;
}

/* お知らせの日付 */
.news-date {
  font-size: 0.875rem;
  color: #888;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.news-date::before {
  content: "📅";
  margin-right: 0.5rem;
}

/* お知らせのタイトル */
.news-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.4;
}

/* お知らせの概要 */
.news-excerpt {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* お知らせの本文 */
.news-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease;
  margin-top: 0;
}

.news-item.expanded .news-content {
  max-height: 2000px;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
}

.news-content p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.news-content strong {
  color: #1a1a1a;
  font-weight: 700;
}

.news-content ul {
  margin: 0.75rem 0 1.25rem 1.5rem;
  padding-left: 0;
}

.news-content li {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 0.5rem;
  list-style-type: disc;
}

/* 詳細表示トグルボタン */
.news-toggle {
  padding: 0.625rem 1.75rem;
  background-color: #0066cc;
  color: #fff;
  border: none;
  border-radius: 24px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.news-toggle:hover {
  background-color: #0052a3;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.news-toggle:active {
  transform: scale(0.98);
}

.news-item.expanded .news-toggle::before {
  content: "▲ ";
}

.news-item:not(.expanded) .news-toggle::before {
  content: "▼ ";
}

/* 銀行情報テーブル */
.bank-info {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1rem 0;
}

.bank-table {
  width: 100%;
  border-collapse: collapse;
}

.bank-table tr {
  border-bottom: 1px solid #e0e0e0;
}

.bank-table tr:last-child {
  border-bottom: none;
}

.bank-table th,
.bank-table td {
  padding: 0.875rem;
  text-align: left;
  font-size: 0.95rem;
}

.bank-table th {
  width: 30%;
  font-weight: 700;
  color: #1a1a1a;
  background-color: #e9ecef;
}

.bank-table td {
  color: #444;
  font-weight: 500;
}

/* アラートボックス */
.alert-box {
  background-color: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 1rem 1.25rem;
  border-radius: 6px;
  margin: 1rem 0;
  font-size: 0.95rem;
  color: #856404;
  font-weight: 600;
}

.alert-box::before {
  content: "⚠️ ";
  margin-right: 0.5rem;
}

/* ページネーション */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 0;
}

.page-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  border: 2px solid #e0e0e0;
  background-color: #fff;
  color: #666;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.page-btn:hover {
  border-color: #0066cc;
  color: #0066cc;
  background-color: #f0f7ff;
}

.page-btn.active {
  background-color: #0066cc;
  color: #fff;
  border-color: #0066cc;
  box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
}

.page-dots {
  color: #999;
  font-weight: 700;
  padding: 0 0.5rem;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {

  .page-header {
    padding: 1.75rem 1rem;
    margin-bottom: 2rem;
  }

  .page-title {
    font-size: 1.5rem;
  }

  .page-description {
    font-size: 0.9rem;
  }

  .news-filter {
    gap: 0.5rem;
    padding: 0.75rem;
  }

  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .news-item {
    padding: 1.25rem;
    border-left-width: 4px;
  }

  .news-title {
    font-size: 1.125rem;
  }

  .news-excerpt,
  .news-content p,
  .news-content li {
    font-size: 0.9rem;
  }

  .bank-table th,
  .bank-table td {
    padding: 0.625rem;
    font-size: 0.85rem;
  }

  .bank-table th {
    width: 35%;
  }

  .pagination {
    gap: 0.375rem;
  }

  .page-btn {
    min-width: 36px;
    height: 36px;
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .news-filter {
    flex-direction: column;
  }

  .filter-btn {
    width: 100%;
    text-align: center;
  }

  .bank-table {
    font-size: 0.8rem;
  }

  .bank-table th,
  .bank-table td {
    display: block;
    width: 100%;
    padding: 0.5rem;
  }

  .bank-table th {
    background-color: #e9ecef;
    border-bottom: none;
    font-weight: 700;
  }

  .bank-table td {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .bank-table tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
  }
}

/* アクセシビリティ */
.filter-btn:focus,
.news-toggle:focus,
.page-btn:focus {
  outline: 3px solid #0066cc;
  outline-offset: 2px;
}

/* プリント用スタイル */
@media print {
  .news-filter,
  .pagination,
  .news-toggle {
    display: none;
  }

  .news-content {
    max-height: none !important;
    display: block !important;
  }

  .news-item {
    page-break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
  }
}


/* ページネーション */

.page-numbers {
  text-align: center;
  padding: 0.5rem 0.75rem;
  border: 2px solid #e0e0e0;
  background-color: #fff;
  color: #666;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.page-numbers:hover{
  border-color: #0066cc;
  color: #0066cc;
  background-color: #f0f7ff;  
}

.page-numbers.current {
  background-color: #0066cc;
  color: #fff;
  border-color: #0066cc;
  box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
}
