@charset "UTF-8";

/* ========================================
   1. 変数定義
   ======================================== */
:root {
  --main-color: #00a3ff;
  --text-color: #1a1a1a;
  --text-sub: #4d4d4d;
  --text-muted: #888;
  --text-dark: #333;
  --bg-color: #f9f9f9;
  --bg-white: #fff;
  --bg-gray-light: #f5f5f5;
  --border-color: #ccc;
  --border-color-light: #ddd;
  --border-color-lighter: #eee;
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 40px;
  --spacing-xl: 64px;
  --font-size-xs: 1.2rem;
  --font-size-sm: 1.4rem;
  --font-size-base: 1.6rem;
  --font-size-lg: 1.8rem;
  --font-size-xl: 2rem;
  --font-size-2xl: 2.2rem;
  --font-size-3xl: 2.4rem;
  --font-size-4xl: 4rem;
}

/* ========================================
   2. 基本設定
   ======================================== */
html {
  font-size: 62.5%;
}

body {
  background-color: var(--bg-white);
  color: var(--text-color);
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic", sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.8;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* ========================================
   3. ユーティリティ
   ======================================== */
.text-underline {
  text-decoration: underline;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.separator-line {
  position: relative;
}

.separator-line::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--border-color);
  width: 32px;
  height: 1px;
}

.separator-line:last-child::after {
  display: none;
}

/* ========================================
   4. 共通ヘッダー
   ======================================== */
.common-header {
  width: 100%;
  background-color: var(--bg-white);
  border-bottom: 3px solid var(--main-color);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.common-header__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.common-header__logo img {
  height: 50px;
  width: auto;
  display: block;
}

.common-header__nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.common-header__nav a {
  text-decoration: none;
  color: var(--text-sub);
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  font-size: var(--font-size-3xl);
  letter-spacing: 0.05em;
  transition: color 0.3s;
  font-style: italic;
}

.common-header__nav a:hover,
.common-header__nav a.current {
  color: var(--main-color);
}

/* ハンバーガーメニュー（PCでは非表示） */
.hamburger-menu {
  display: none;
}

/* ========================================
   5. メインコンテンツ共通レイアウト
   ======================================== */
.contents {
  padding: 36px 42px;
  max-width: 784px;
  margin-inline: auto;
}

/* パンくずリスト */
.breadcrumb {
  margin-bottom: 20px;
  font-size: var(--font-size-sm);
  color: var(--text-sub);
}

.breadcrumb ul {
  display: flex;
  gap: 10px;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.breadcrumb li a {
  color: var(--text-sub);
  text-decoration: none;
}

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

.breadcrumb li::after {
  content: ">";
  margin-left: 10px;
}

.breadcrumb li:last-child::after {
  content: none;
}

/* メインタイトル */
.main-title__container {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.main-title__container:not(:first-child) {
  margin-top: var(--spacing-xl);
}

.main-title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: normal;
  font-style: italic;
  font-size: var(--font-size-4xl);
  letter-spacing: 0.08em;
}

.main-title__sub {
  display: block;
  font-size: var(--font-size-base);
  margin-top: 0.6em;
  letter-spacing: 0.2em;
}

/* ========================================
   6. TOPページ・メインビジュアル
   ======================================== */
.main-visual {
  margin-inline: auto;
  margin-top: 20px;
  padding: 0 0 32px;
  max-width: 1200px;
  width: 100%;
  position: relative;
}

.main-visual .main-visual__image {
  display: flex;
  justify-content: center;
  margin: 0;
  width: 100%;
}

.main-visual__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.main-visual__img--sp {
  display: none;
}

.main-visual__caption {
  position: absolute;
  bottom: 60px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 10px 20px;
  font-size: var(--font-size-sm);
  color: var(--text-dark);
  letter-spacing: 0.05em;
  line-height: 1.6;
  border-left: 3px solid var(--main-color);
}

/* ========================================
   7. ABOUT US
   ======================================== */
.about-us {
  border-top: var(--spacing-sm) solid var(--main-color);
}

/* 会社概要リスト */
.contents__list__container {
  position: relative;
}

.contents__list__container::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 160px;
  width: 1px;
  background-color: var(--main-color);
}

.contents__list__container > p {
  font-size: var(--font-size-base);
  line-height: 2;
  color: var(--text-color);
  margin-bottom: 1.6rem;
}

.contents__list {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  font-size: var(--font-size-base);
  text-align: justify;
}

.contents__list__title {
  flex: 0 0 140px;
  min-width: 140px;
  padding: var(--spacing-sm) 0;
  line-height: 2;
  text-align: center;
  white-space: nowrap;
}

.contents__list__detail {
  flex: 1;
  padding: var(--spacing-sm) var(--spacing-xs) var(--spacing-sm) var(--spacing-md);
  line-height: 2;
}

.contents__list__detail a {
  color: var(--text-color);
  transition: all 0.3s;
}

.contents__list__detail a:hover {
  opacity: 0.7;
}

/* 外部リンクアイコン */
.contents__list__detail a[target="_blank"]::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 5px;
  vertical-align: middle;
  position: relative;
  top: -2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'%3E%3C/path%3E%3Cpolyline points='15 3 21 3 21 9'%3E%3C/polyline%3E%3Cline x1='10' y1='14' x2='21' y2='3'%3E%3C/line%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.contents__list__detail a[target="_blank"]:hover::after {
  opacity: 0.7;
}

.contents__list__detail__list .contents__list__detail__item {
  line-height: 2;
  display: flex;
  align-items: center;
}

.contents__list__detail__list .contents__list__detail__item .flex-width {
  flex: 0.33;
}

/* コメントエリア */
.contents__list__comment {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.comment-item__text {
  line-height: 2;
}

.comment-item__title {
  margin-top: var(--spacing-xs);
  line-height: 2;
  text-align: right;
}

/* バナーエリア */
.banner-area {
  margin-top: 60px;
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
}

.banner-area a {
  max-width: 240px;
  transition: all 0.3s;
}

.banner-area a:hover {
  opacity: 0.7;
}

/* 注釈 */
.contents__note {
  color: var(--text-sub);
  font-size: var(--font-size-sm);
  line-height: 1.6;
  text-indent: -1em;
  padding-left: 1em;
}

/* ========================================
   8. NEWS一覧
   ======================================== */
.news {
  margin-top: 32px;
  padding: 0;
}

.news__article {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color-light);
}

.news__article:last-child {
  border-bottom: none;
}

.news__article__date {
  color: var(--text-sub);
  font-size: var(--font-size-sm);
  margin-bottom: 1rem;
}

.news__article__title {
  font-size: var(--font-size-2xl);
  font-weight: bold;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 2rem;
}

.news__article__body,
.news__article__info {
  font-size: var(--font-size-base);
  line-height: 2;
  color: var(--text-color);
  margin-bottom: 1.6rem;
}

.news-link {
  color: var(--text-dark);
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: color 0.3s;
}

.news-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--main-color);
  transition: width 0.3s ease;
}

.news-link:hover {
  color: var(--main-color);
}

.news-link:hover::after {
  width: 100%;
}

/* ページネーション */
.pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.page-number,
.page-next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color-light);
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s;
  font-family: "Roboto Condensed", sans-serif;
}

.page-number:hover,
.page-next:hover,
.page-number.current {
  background-color: var(--main-color);
  border-color: var(--main-color);
  color: var(--bg-white);
}

/* NEWSコメント */
.news__article__comments {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.news__article__comment__text {
  line-height: 2;
  font-size: var(--font-size-base);
}

.news-detail__body .news__article__comment__author {
  margin-top: var(--spacing-xs);
  line-height: 2;
  text-align: right;
  font-size: var(--font-size-base);
  display: block;
}

/* ========================================
   9. NEWS詳細
   ======================================== */
.news-detail__date {
  color: var(--text-sub);
  font-size: var(--font-size-sm);
  margin-bottom: 10px;
  font-weight: bold;
}

.news-detail__title {
  font-size: var(--font-size-3xl);
  font-weight: bold;
  line-height: 1.4;
  color: var(--text-color);
}

.news-detail__body p {
  font-size: var(--font-size-base);
  line-height: 2;
  margin-bottom: var(--spacing-md);
  color: var(--text-color);
  text-align: justify;
}

.news-detail__footer {
  margin-top: 60px;
  text-align: center;
}

.btn-back {
  display: inline-block;
  padding: 10px var(--spacing-lg);
  border: 1px solid var(--main-color);
  color: var(--main-color);
  text-decoration: none;
  transition: all 0.3s;
  font-size: var(--font-size-sm);
}

.btn-back:hover {
  background-color: var(--main-color);
  color: var(--bg-white);
}

/* ========================================
   10. RECRUITページ
   ======================================== */
.recruit-coming-soon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
}

.recruit-coming-soon__inner {
  padding: 60px 20px;
}

.recruit-coming-soon__title {
  font-size: clamp(24px, 4vw, 48px);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  font-family: inherit;
  font-weight: normal;
}

.recruit-coming-soon__text {
  font-size: 15px;
  line-height: 2;
  opacity: 0.7;
}

.recruit-job-title {
  font-size: var(--font-size-2xl);
  font-weight: bold;
  color: var(--text-color);
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--main-color);
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

/* ========================================
   11. お問い合わせフォーム
   ======================================== */
.contact-form-area {
  margin-top: 60px;
  max-width: 800px;
  margin-inline: auto;
}

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

.contact-intro p {
  font-size: var(--font-size-base);
  line-height: 2;
  color: var(--text-color);
  margin-bottom: 2.4rem;
  letter-spacing: 0.02em;
}

.contact-intro__list {
  margin: 2rem 0 2.4rem 0;
  padding-left: 2em;
}

.contact-intro__list li {
  list-style-type: disc;
  margin-bottom: 0.8rem;
  line-height: 2;
}

.contact-intro__list li:last-child {
  margin-bottom: 0;
}

.privacy-note {
  margin-top: 2.4rem;
  font-size: var(--font-size-sm);
  color: var(--text-sub);
}

.privacy-note a {
  color: var(--main-color);
  text-decoration: underline;
}

.contact-item {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--border-color-light);
  padding: 24px 0;
}

.contact-item:last-of-type {
  border-bottom: 1px solid var(--border-color-light);
}

.contact-item dt {
  width: 230px;
  font-weight: bold;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.required {
  background-color: #ff4444;
  color: #fff;
  font-size: 1.1rem;
  padding: 2px 6px;
  border-radius: 2px;
  margin-left: 10px;
  font-weight: normal;
}

.contact-item dd {
  flex: 1;
  margin: 0;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background-color: #fff;
  font-size: 1.6rem;
  font-family: inherit;
  appearance: none;
  box-sizing: border-box;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
  cursor: pointer;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--main-color);
  box-shadow: 0 0 0 2px rgba(0, 163, 255, 0.2);
}

.field-note {
  font-size: var(--font-size-sm);
  color: var(--text-sub);
  margin-top: 8px;
  line-height: 1.6;
}

.contact-submit {
  margin-top: 60px;
  text-align: center;
}

.submit-btn {
  display: inline-block;
  background-color: var(--main-color);
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 15px 80px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.submit-btn:hover {
  opacity: 0.8;
}

/* お問い合わせ関連 */
.contact-area {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color-light);
}

.contact-title {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: var(--font-size-base);
  color: var(--text-color);
}

.contact-btn {
  display: inline-block;
  color: var(--main-color);
  text-decoration: underline;
  font-weight: bold;
  font-size: var(--font-size-base);
  transition: all 0.3s;
}

.contact-btn:hover {
  text-decoration: none;
}

.contact-notice {
  margin: 30px 0;
  padding: 20px;
  background-color: #f5f5f5;
  border-left: 3px solid var(--main-color);
}

.contact-notice h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.contact-notice ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.contact-notice li {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 5px;
}

.contact-notice .notice-text {
  color: #ff0000;
  font-size: 1.4rem;
  margin: 0;
}

/* Contact Form 7 */
.wpcf7-not-valid-tip {
  color: #ff0000;
  font-size: 1.3rem;
  margin-top: 5px;
}

.wpcf7-response-output {
  margin: 20px 0;
  padding: 15px;
  border: 2px solid #46b450;
  background-color: #f7f7f7;
}

/* ========================================
   12. プライバシーポリシー
   ======================================== */
.privacy-policy {
  max-width: 800px;
  margin: 60px auto 0;
  text-align: left;
}

.privacy-intro {
  font-size: var(--font-size-base);
  line-height: 2;
  color: var(--text-color);
  margin-bottom: 50px;
}

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

.privacy-heading {
  font-size: var(--font-size-lg);
  font-weight: bold;
  color: var(--text-color);
  background-color: var(--bg-gray-light);
  padding: 15px 20px;
  border-left: 5px solid var(--main-color);
  margin-bottom: 20px;
}

.privacy-text {
  font-size: var(--font-size-base);
  line-height: 2;
  color: var(--text-color);
  padding: 0 10px;
}

.privacy-list {
  margin-top: 15px;
  padding-left: 30px;
}

.privacy-list li {
  font-size: var(--font-size-base);
  line-height: 2;
  color: var(--text-color);
  list-style-type: disc;
  margin-bottom: 5px;
}

.privacy-link {
  color: var(--main-color);
  text-decoration: underline;
  font-weight: bold;
  transition: all 0.3s;
}

.privacy-link:hover {
  text-decoration: none;
  opacity: 0.8;
}

/* ========================================
   13. 共通フッター
   ======================================== */
.common-footer {
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-color-lighter);
  padding: 60px 0 var(--spacing-lg);
  text-align: center;
  margin-top: 80px;
}

.common-footer__logo {
  margin: 0 auto var(--spacing-lg) auto;
  text-align: center;
  width: 100%;
}

.common-footer__logo img {
  width: 140px;
  height: auto;
  display: inline-block;
}

.common-footer__nav {
  margin-bottom: var(--spacing-lg);
  width: 100%;
}

.common-footer__nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0;
  margin: 0 auto;
}

.common-footer__nav li {
  list-style: none;
}

.common-footer__nav a {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  font-size: var(--font-size-xl);
  color: var(--text-sub);
  text-decoration: none;
  transition: color 0.3s;
}

.common-footer__nav a:hover {
  color: var(--main-color);
}

.copyright {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  display: block;
  text-align: center;
}

/* ========================================
   14. レスポンシブ対応（768px以下）
   ======================================== */
@media screen and (max-width: 768px) {

  /* ユーティリティ */
  .pc { display: none; }
  .sp { display: block; }

  .separator-line::after {
    bottom: -24px;
  }

  /* ハンバーガーメニュー */
  .hamburger-menu {
    display: block;
    position: fixed;
    top: 22px;
    right: 20px;
    width: 30px;
    height: 30px;
    z-index: 9999;
    background: transparent;
    border: none;
    cursor: pointer;
    opacity: 1;
    pointer-events: auto;
  }

  .hamburger-menu span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--main-color);
    transition: all 0.4s;
  }

  .hamburger-menu span:nth-child(1) { top: 4px; }
  .hamburger-menu span:nth-child(2) { top: 14px; }
  .hamburger-menu span:nth-child(3) { bottom: 4px; }

  .hamburger-menu.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .hamburger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger-menu.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }

  /* 共通ヘッダー */
  .common-header__inner {
    flex-direction: column;
    align-items: center;
    padding: 15px 0 10px;
  }

  .common-header__logo {
    margin-bottom: 0;
  }

  .common-header__logo img {
    height: 36px;
  }

  /* ナビゲーション（オーバーレイ） */
  .common-header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 9990;
    text-align: center;
    padding-top: 80px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
  }

  .common-header__nav.active {
    opacity: 1;
    visibility: visible;
  }

  .common-header__nav ul {
    flex-direction: column;
    gap: 30px;
  }

  .common-header__nav a {
    font-size: 2rem;
    display: block;
    padding: 10px;
  }

  /* メインビジュアル */
  .main-visual {
    margin-top: 0;
    padding: var(--spacing-sm) 0;
  }

  .main-visual__img--pc { display: none; }
  .main-visual__img--sp {
    display: block;
    width: 100%;
  }

  .main-visual__caption {
    position: static;
    margin-top: 15px;
    font-size: 1.2rem;
    padding: 8px 15px;
    text-align: left;
  }

  /* ABOUT US */
  .about-us {
    border-top: none;
    padding: 0;
  }

  .contents__list__container::before {
    display: none;
  }

  .contents__list__container {
    padding: 0 0 var(--spacing-md);
  }

  .contents__list__container > p {
    font-size: var(--font-size-base);
    line-height: 1.875;
    margin-bottom: 1.4rem;
  }

  .contents__list__container > p:first-child {
    font-size: var(--font-size-sm);
    margin-bottom: 1rem;
    margin-top: 1.6rem;
  }

  .contents__list__container > h2 {
    font-size: var(--font-size-xl);
    line-height: 1.5;
    margin-bottom: 2rem;
  }

  .contents__list {
    flex-direction: column;
    gap: 4px;
    border-bottom: 1px solid var(--border-color);
  }

  .contents__list__title {
    flex: auto;
    padding: var(--spacing-sm) 0 0;
    font-weight: bold;
    text-align: left;
    width: 100%;
  }

  .contents__list__detail {
    flex: auto;
    padding: 0 0 var(--spacing-sm);
    line-height: 1.875;
  }

  .contents__list__detail__list .contents__list__detail__item {
    gap: var(--spacing-sm);
  }

  .contents__list__detail__list .contents__list__detail__item .flex-width {
    flex: auto;
  }

  /* コメント・バナー */
  .contents__list__comment {
    gap: 42px;
  }

  .comment-item__text {
    line-height: 1.875;
  }

  .banner-area {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .banner-area a {
    width: 240px;
    max-width: 100%;
  }

  /* コンテンツ共通 */
  .contents {
    padding: var(--spacing-md) 4.27% 48px;
  }

  .main-title__container {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
  }

  .main-title__container:not(:first-child) {
    margin-top: 48px;
  }

  /* NEWS */
  .news {
    margin-top: 32px;
  }

  .news__article {
    padding: 16px 0;
  }

  .news__article__date {
    margin-bottom: 0.8rem;
    margin-top: 0;
  }

  .news__article__title {
    font-size: var(--font-size-lg);
    line-height: 1.5;
    margin-bottom: 1.6rem;
  }

  .news__article__body,
  .news__article__info {
    line-height: 1.875;
    margin-bottom: 1.4rem;
  }

  .news__article__comments {
    gap: 42px;
  }

  .news__article__comment__text {
    line-height: 1.875;
  }
	
 .news-link::after {
  display: none;
 }

 .news-link:hover {
  color: var(--main-color);
 }	

  /* RECRUIT */
  .recruit-job-title {
    font-size: var(--font-size-lg);
    width: 100%;
    display: block;
    border-bottom: 1px solid var(--main-color);
    padding-bottom: 10px;
    left: 0;
    transform: none;
  }

  /* お問い合わせフォーム */
  .contact-form-area {
    margin-top: 40px;
  }

  .contact-intro {
    margin-bottom: 30px;
    font-size: var(--font-size-sm);
  }

  .contact-intro p {
    margin-bottom: 1.6rem;
  }

  .contact-item {
    flex-direction: column;
    padding: 20px 0;
  }

  .contact-item dt {
    width: 100%;
    padding-top: 0;
    margin-bottom: 8px;
  }

  .contact-item dd {
    width: 100%;
  }

  .contact-submit {
    margin-top: 40px;
  }

  .submit-btn {
    width: 100%;
    padding: 15px 20px;
  }

  /* プライバシーポリシー */
  .privacy-heading {
    font-size: var(--font-size-base);
    padding: 12px 15px;
  }

  .privacy-text,
  .privacy-intro,
  .privacy-list li {
    font-size: var(--font-size-sm);
  }

  /* フッター */
  .common-footer {
    padding: var(--spacing-lg) 0 30px;
    margin-top: 60px;
  }

  .common-footer__nav ul {
    gap: 20px 15px;
    flex-direction: column;
  }
}