/* ===========================================
  通常ページ用：可読性リセット
=========================================== */
html {
  font-size: 10px !important;
}

body {
  font-size: 1.6rem;
  line-height: 1.7;
}


/* ========================================
   固定ページ共通スタイル（page.css）
   対象：通常固定ページ / 問い合わせ etc
======================================== */

.page {
  font-family: "Noto Sans JP", "Roboto", sans-serif;
  line-height: 1.8;
  color: var(--color-text);
  background: var(--color-bg);
}

.page .container {
  max-width: 960px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  box-sizing: border-box;
}

/* ----------------------------------------
   タイポグラフィ
---------------------------------------- */
.page h1,
.page h2,
.page h3 {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.2rem;
}

.page p {
  margin-bottom: 1.6rem;
  font-size: 1.6rem;
}


/* ----------------------------------------
   お問い合わせフォーム系 共通
---------------------------------------- */

.page .contact-form-area {
  max-width: 640px;
  margin: 3rem auto 0;
}

.page .contact-form label {
  display: block;
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.page .contact-form input,
.page .contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--color-gray-4);
  border-radius: 4px;
  font-size: 1.4rem;
  box-sizing: border-box;
  background: #fafafa;
}

.page .contact-form input:focus,
.page .contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: #fff;
}

.page .contact-form button {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  padding: 1rem 2.4rem;
  border: none;
  border-radius: 4px;
  font-size: 1.4rem;
  cursor: pointer;
  transition: 0.2s;
}

.page .contact-form button:hover {
  background: var(--color-primary-hover);
}


/* ----------------------------------------
   共通ヘッダー・フッター余白
---------------------------------------- */
.page .l-header--lp {
  margin-bottom: 2rem;
}

.page .lp-footer {
  margin-top: 4rem;
}


/* ========================================
   問い合わせフォーム詳細設計
======================================== */

.page-contact .contact-form {
  max-width: 720px;
  margin: 0 auto;
}

.page-contact .form-row {
  margin-bottom: 2rem;
}

.page-contact label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.page-contact input[type="text"],
.page-contact input[type="email"],
.page-contact input[type="tel"],
.page-contact select,
.page-contact textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--color-gray-4);
  border-radius: 4px;
  font-size: 1.5rem;
  box-sizing: border-box;
}

.page-contact textarea {
  resize: vertical;
}

.page-contact .radio-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-contact .radio-list li {
  margin-bottom: 0.4rem;
}

.page-contact .check-row label {
  font-size: 1.4rem;
  line-height: 1.6;
}

.page-contact .submit-row {
  text-align: center;
  margin-top: 3rem;
}

/* submit ボタンは c-button 方針に合わせる */
.page-contact .c-button {
  background: var(--color-primary);
  color: #fff;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.6rem;
  transition: background 0.2s;
}

.page-contact .c-button:hover {
  background: var(--color-primary-hover);
}


/* ========================================
   サンクスページ
======================================== */

.page-thanks {
  padding: 6rem 0;
}

.page-thanks .container {
  max-width: 720px;
  text-align: center;
}

.page-thanks .page-header {
  margin-bottom: 3rem;
}

.page-thanks .page-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-text);
}

.page-thanks .thanks-content {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.page-thanks .thanks-message {
  font-size: 1.6rem;
  line-height: 1.9;
  margin-bottom: 2rem;
}

.page-thanks .thanks-notice {
  background: var(--color-gray-1, #f5f5f5);
  padding: 1.5rem;
  border-radius: 6px;
  margin-bottom: 2.5rem;
}

.page-thanks .thanks-notice p {
  font-size: 1.4rem;
  color: var(--color-gray-6, #666);
  margin: 0;
  line-height: 1.7;
}

.page-thanks .thanks-action {
  margin-top: 2rem;
}

.page-thanks .c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 200px;
  padding: 1rem 2rem;
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.page-thanks .c-button--outline {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.page-thanks .c-button--outline:hover {
  background: var(--color-primary);
  color: #fff;
}
