/* ==========================================================================
   Utility - 表示切り替え
   ========================================================================== */

.sp-only { display: none; }
.pc-only { display: inline; }

@media (max-width: 768px) {
  .sp-only { display: inline; }
  .pc-only { display: none; }
}

/* ==========================================================================
   Page Common - ページヘッダー（赤バナー）& パンくずリスト & 共通ボタン & フォーム
   ========================================================================== */

/* ページタイトルエリア（ウォーターマーク付き） */
.page-title-area {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #E3E3E3;
}

.page-title-area__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 120px 40px;
  position: relative;
}

.page-title-area__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 33px;
  font-weight: 700;
  color: #313131;
  margin: 0;
  position: relative;
  z-index: 1;
}

.page-title-area__watermark {
  position: absolute;
  top: 0;
  left: 120px;
  font-family: 'Bangla MN', 'Inter', sans-serif;
  font-size: 240px;
  font-weight: 400;
  color: #F7F6F6;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}

/* ページタイトルエリア レスポンシブ */
@media (max-width: 1024px) {
  .page-title-area__inner {
    padding: 48px 40px 32px;
  }
  .page-title-area__watermark {
    font-size: 160px;
    left: 40px;
  }
  .page-title-area__title {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .page-title-area__inner {
    padding: 40px 20px 24px;
  }
  .page-title-area__watermark {
    font-size: 100px;
    left: 20px;
  }
  .page-title-area__title {
    font-size: 24px;
  }
  .breadcrumb {
    padding: 16px 20px;
    width: 100%;
    box-sizing: border-box;
  }
}

/* パンくずリスト */
.breadcrumb {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 120px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  color: #313131;
  line-height: 1.5;
}

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

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

.breadcrumb__separator {
  margin: 0 8px;
  color: #999999;
}

@media (max-width: 768px) {
  .breadcrumb {
    padding: 16px 20px;
    width: 100%;
    box-sizing: border-box;
  }
}

/* ページ本体（共通ラッパー） */
.page-body {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 120px;
}

/* 共通ボタン */
.btn-outline-black {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 4px;
  padding: 16px 24px 16px 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-outline-black:hover { opacity: 0.7; }
.btn-outline-black img { width: 20px; height: 20px; }

.btn-filled-red {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #E51F1F;
  color: #FFFFFF;
  border: 1px solid #E51F1F;
  border-radius: 4px;
  padding: 16px 24px 16px 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-filled-red:hover { opacity: 0.85; }
.btn-filled-red img { width: 20px; height: 20px; }

.btn-filled-black {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #000000;
  color: #FFFFFF;
  border: 1px solid #000000;
  border-radius: 4px;
  padding: 16px 24px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  width: 100%;
  transition: opacity 0.2s;
}
.btn-filled-black:hover { opacity: 0.85; }

/* 共通フォームスタイル */
.form-section {
  background: #F8F8F8;
  padding: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #313131;
  margin-bottom: 8px;
}

.form-label .required {
  color: #E51F1F;
  margin-left: 2px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  height: 51px;
  padding: 0 16px;
  border: 1px solid #E3E3E3;
  border-radius: 4px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: #313131;
  background: #FFFFFF;
  box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: #E51F1F;
}

.form-textarea {
  height: 102px;
  padding: 12px 16px;
  resize: vertical;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-row .form-group {
  flex: 1;
}

.form-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: #313131;
  cursor: pointer;
}

.form-checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 1px solid #E3E3E3;
  border-radius: 2px;
  cursor: pointer;
}

.form-privacy-notice {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  color: #313131;
  line-height: 1.8;
  margin: 24px 0;
}

.form-privacy-notice a {
  color: #313131;
  text-decoration: underline;
}

.form-submit {
  margin-top: 24px;
}
