@charset "UTF-8";

/* ==========================================================================
   トップページ専用スタイル
   ========================================================================== */

:root {
  /* Fresh Mint Green カラーシステム（toms.or.jp参考） */
  --tp-navy:        #2a6644;   /* Moderate dark green (CTAs, buttons) */
  --tp-navy-light:  #52a96e;   /* Fresh vibrant green (accents, numbers) */
  --tp-navy-dark:   #1a4830;   /* Deep green (dark overlays) */
  --tp-white:       #FFFFFF;
  --tp-gray-light:  #eaefea;   /* Very subtle mint bg (nearly white) */
  --tp-gray:        #c8dece;   /* Soft green-gray border */
  --tp-text:        #2e3d2e;   /* Body text */
  --tp-text-light:  #5a6e5c;   /* Muted green-gray text */
  --tp-orange:      #52a96e;   /* Use green as main accent */
  --tp-orange-dark: #2a6644;   /* Darker accent green */
  --tp-green-line:  #52a96e;   /* Highlight green */
  --tp-red:         #B84A3E;   /* Emergency red (keep) */
  --tp-bg-light:    #eaefea;   /* Subtle mint bg */
  --tp-section-padding: clamp(80px, 12vw, 160px) 0;
  --tp-inner-width: 1100px;
}

/* SWELLの親コンテナ余白リセット・overflow解放 */
.tp-main {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding: 0 !important;
  overflow-x: hidden;
}

#top-page {
  padding: 0 !important;
}

/* 水平スクロールバーはhtmlレベルで制御 */
html {
  overflow-x: hidden;
}

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
.tp-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 !important;
  box-sizing: border-box;
}

.tp-hero__bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center center / cover no-repeat;
  background-color: #2a6644;
  z-index: 1;
}

.tp-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.tp-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

/* ヒーロー下部: ゴールドライン（デザイン定義書 7.2） */
.tp-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--tp-orange);
  z-index: 4;
}

.tp-hero__content {
  position: relative;
  z-index: 3;
  padding: 0 80px 0 0;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.tp-hero__logo {
  margin-bottom: 30px;
}

.tp-hero__logo-img {
  width: 20vw;
  max-width: 280px;
  min-width: 120px;
  height: auto;
  display: block;
}

/* ロゴ画像未設定時は枠だけ表示 */
.tp-hero__logo-img[src=""] {
  min-width: 200px;
  min-height: 60px;
  border: 2px dashed rgba(255,255,255,0.4);
  border-radius: 4px;
  background: rgba(255,255,255,0.05);
}

.tp-hero__title {
  color: var(--tp-white);
  margin-bottom: 40px;
}

.tp-hero__title-line {
  display: block;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", "Noto Serif JP", serif;
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.tp-hero__sub {
  color: #ffffff;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.9;
  opacity: 0.9;
  margin-bottom: 48px;
}

.tp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.tp-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--tp-navy);
  color: var(--tp-white);
  padding: 16px 36px;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.tp-hero__cta:hover {
  background: var(--tp-navy-dark);
  transform: translateY(-1px);
  color: var(--tp-white);
}

.tp-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 60px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tp-hero__scroll-text {
  color: var(--tp-white);
  font-size: 12px;
  letter-spacing: 3px;
}

.tp-hero__scroll-line {
  width: 40px;
  height: 1px;
  background: var(--tp-white);
  display: block;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; width: 40px; }
  50% { opacity: 0.5; width: 20px; }
}

/* --------------------------------------------------------------------------
   NEWS
   -------------------------------------------------------------------------- */
.tp-news {
  background: var(--tp-white);
  border-bottom: 1px solid var(--tp-gray);
}

.tp-news__inner {
  max-width: var(--tp-inner-width);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}

.tp-news__label {
  background: var(--tp-navy);
  color: var(--tp-white);
  padding: 20px 30px;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.tp-news__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px 30px;
  gap: 8px;
  overflow: hidden;
}

.tp-news__item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}

.tp-news__date {
  color: var(--tp-navy);
  font-weight: 700;
  white-space: nowrap;
}

.tp-news__link {
  color: var(--tp-text);
  text-decoration: none;
  transition: color 0.3s;
}

.tp-news__link:hover {
  color: var(--tp-navy);
}

/* --------------------------------------------------------------------------
   SECTION HEADER (shared)
   英文ラベル（ゴールド）→ 明朝タイトル → 60px センターライン
   -------------------------------------------------------------------------- */
.tp-section-header {
  text-align: center;
  margin-bottom: 50px;
}

/* 英文ラベル: Georgia italic, ゴールド, letter-spacing 0.3em */
.tp-section-header__sub {
  display: block;
  font-family: "Georgia", "Times New Roman", serif;
  font-style: italic;
  font-size: 12px;
  color: var(--tp-orange);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* 和文タイトル: 明朝体 */
.tp-section-header__title {
  display: block;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", "Noto Serif JP", serif;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--tp-text);
  line-height: 1.4;
  margin-bottom: 16px;
}

/* センターライン: 60px × 2px ゴールド */
.tp-section-header::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--tp-orange);
  margin: 0 auto;
}

.tp-section-header__initial {
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 300;
}

/* ライト（ダーク背景）バリエーション */
.tp-section-header--light .tp-section-header__title {
  color: var(--tp-white);
}

.tp-section-header__deco {
  display: none;
}

/* --------------------------------------------------------------------------
   CONCEPT
   -------------------------------------------------------------------------- */
.tp-concept {
  padding: 30px 0;
  background: var(--tp-white);
}

.tp-concept__inner {
  max-width: var(--tp-inner-width);
  margin: 0 auto;
  padding: 0 20px;
}

.tp-concept__body {
  text-align: center;
}

.tp-concept__logo {
  margin-bottom: 30px;
}

.tp-concept__logo-img {
  height: 70px;
  width: auto;
}

.tp-concept__logo-sub {
  font-size: 12px;
  color: var(--tp-text-light);
  margin-top: 8px;
  letter-spacing: 2px;
}

.tp-concept__catch {
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", "Noto Serif JP", serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--tp-navy);
  margin-bottom: 20px;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.tp-concept__catch-logo {
  font-style: italic;
}

.tp-concept__lead {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: var(--tp-text);
  margin-bottom: 40px;
  line-height: 1.5;
}

.tp-concept__em {
  color: var(--tp-navy);
  font-style: italic;
}

.tp-concept__text {
  max-width: 750px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 2.2;
  color: var(--tp-text);
}

.tp-concept__text p {
  margin-bottom: 8px;
}

/* --------------------------------------------------------------------------
   SERVICE
   -------------------------------------------------------------------------- */
.tp-service {
  padding-bottom: 0;
}

.tp-service__header-area {
  padding: 100px 20px 60px;
  background: var(--tp-white);
  text-align: center;
  position: relative;
}

.tp-service__circle {
  width: 280px;
  height: 280px;
  border: 3px solid var(--tp-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: var(--tp-white);
  position: relative;
  z-index: 2;
}

.tp-service__circle-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--tp-text);
}

.tp-service__circle-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--tp-navy);
  display: block;
  margin-top: 4px;
}

.tp-service__cards {
  background: var(--tp-gray-light);
  padding: 80px 20px 100px;
  margin-top: -100px;
  position: relative;
}

.tp-service__grid {
  max-width: var(--tp-inner-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-top: 60px;
}

.tp-service__card {
  background: var(--tp-white);
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(42, 102, 68, 0.10);
}

.tp-service__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(42, 102, 68, 0.18);
}

.tp-service__card-title {
  background: var(--tp-navy-dark);
  color: var(--tp-white);
  text-align: center;
  padding: 16px;
  font-size: 18px;
  font-weight: 700;
}

.tp-service__card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--tp-gray);
}

.tp-service__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.tp-service__card:hover .tp-service__card-img img {
  transform: scale(1.05);
}

.tp-service__card-text {
  padding: 20px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--tp-text);
}

.tp-service__card-link {
  display: block;
  text-align: center;
  padding: 16px 20px;
  color: var(--tp-navy);
  font-weight: 700;
  text-decoration: none;
  border-top: 1px solid var(--tp-gray);
  transition: background 0.3s, color 0.3s;
}

.tp-service__card-link:hover {
  background: var(--tp-navy);
  color: var(--tp-white);
}

/* --------------------------------------------------------------------------
   FEATURE
   -------------------------------------------------------------------------- */
.tp-feature {
  background: var(--tp-white);
  color: var(--tp-text);
}

.tp-feature__inner {
  display: flex;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.tp-feature__content {
  flex: 1;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tp-feature__sub {
  font-size: 14px;
  color: var(--tp-navy);
  margin-bottom: 16px;
  letter-spacing: 2px;
  font-weight: 600;
}

.tp-feature__title {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--tp-text);
  margin-bottom: 24px;
  line-height: 1.4;
}

.tp-feature__text {
  font-size: 15px;
  line-height: 2;
  color: var(--tp-text-light);
  margin-bottom: 30px;
}

.tp-feature__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--tp-navy);
  border: 2px solid var(--tp-navy);
  padding: 16px 36px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s, color 0.3s;
}

.tp-feature__btn:hover {
  background: var(--tp-navy);
  color: var(--tp-white);
}

.tp-feature__img {
  flex: 0 0 45%;
  max-width: 45%;
  background: var(--tp-gray);
}

.tp-feature__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   MEDIA
   -------------------------------------------------------------------------- */
.tp-media {
  padding: var(--tp-section-padding);
  background: var(--tp-white);
}

.tp-media__inner {
  max-width: var(--tp-inner-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.tp-media__img {
  flex: 0 0 40%;
  max-width: 40%;
}

.tp-media__img img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.tp-media__content {
  flex: 1;
}

.tp-media__sub {
  font-size: 14px;
  color: var(--tp-text-light);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.tp-media__title {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--tp-text);
  margin-bottom: 24px;
  line-height: 1.4;
}

.tp-media__text {
  font-size: 15px;
  line-height: 2;
  color: var(--tp-text);
  margin-bottom: 30px;
}

.tp-media__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--tp-text);
  border: 2px solid var(--tp-text);
  padding: 16px 36px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s, color 0.3s;
}

.tp-media__btn:hover {
  background: var(--tp-navy);
  border-color: var(--tp-navy);
  color: var(--tp-white);
}

/* --------------------------------------------------------------------------
   QUALIFICATIONS
   -------------------------------------------------------------------------- */
.tp-qualifications {
  padding: var(--tp-section-padding);
  background: var(--tp-gray-light);
}

.tp-qualifications__inner {
  max-width: var(--tp-inner-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.tp-qualifications__content {
  flex: 1;
}

.tp-qualifications__sub {
  font-size: 14px;
  color: var(--tp-text-light);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.tp-qualifications__title {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--tp-text);
  margin-bottom: 24px;
  line-height: 1.4;
}

.tp-qualifications__text {
  font-size: 15px;
  line-height: 2;
  color: var(--tp-text);
}

.tp-qualifications__badges {
  flex: 0 0 45%;
  max-width: 45%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.tp-qualifications__badge {
  background: var(--tp-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.tp-qualifications__badge img {
  width: 100%;
  height: auto;
  display: block;
}

/* --------------------------------------------------------------------------
   DIFFERENCE
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   FAQ簡易版（トップページ）
   -------------------------------------------------------------------------- */
.tp-faq {
  padding: var(--tp-section-padding);
  background: var(--tp-white);
}

.tp-faq__inner {
  max-width: var(--tp-inner-width);
  margin: 0 auto;
  padding: 0 20px;
}

.tp-faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 50px;
}

.tp-faq__item {
  border: 1px solid #dde5dd;
  background: var(--tp-gray-light);
  border-radius: 2px;
  overflow: hidden;
}

.tp-faq__item[open] {
  border-color: var(--tp-navy);
}

.tp-faq__q {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 20px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--tp-text);
  cursor: pointer;
  list-style: none;
  line-height: 1.6;
  transition: background 0.2s;
}

.tp-faq__q::-webkit-details-marker {
  display: none;
}

.tp-faq__q::after {
  content: '+';
  margin-left: auto;
  font-size: 1.4rem;
  color: var(--tp-navy);
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.25s;
}

.tp-faq__item[open] .tp-faq__q::after {
  transform: rotate(45deg);
}

.tp-faq__q:hover {
  background: #e6ede6;
}

.tp-faq__q-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--tp-navy);
  color: var(--tp-white);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0;
}

.tp-faq__a {
  padding: 4px 20px 20px 62px;
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--tp-text-sub);
  border-top: 1px solid #dde5dd;
  background: var(--tp-white);
}

.tp-faq__btn-wrap {
  text-align: center;
}

.tp-faq__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--tp-navy);
  color: var(--tp-white);
  padding: 18px 48px;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
  transition: background 0.3s, transform 0.3s;
}

.tp-faq__btn:hover {
  background: var(--tp-navy-light);
  transform: translateY(-2px);
  color: var(--tp-white);
}

/* --------------------------------------------------------------------------
   CTA
   -------------------------------------------------------------------------- */
.tp-cta {
  padding: var(--tp-section-padding);
  background: var(--tp-navy);
  color: var(--tp-white);
}

.tp-cta__inner {
  max-width: var(--tp-inner-width);
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.tp-cta__title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 50px;
}

.tp-cta__title-em {
  color: var(--tp-orange);
  font-size: 1.1em;
}

.tp-cta__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.tp-cta__card {
  background: var(--tp-white);
  border-radius: 8px;
  overflow: hidden;
  color: var(--tp-text);
}

.tp-cta__card-text {
  padding: 30px 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  border-bottom: 1px solid var(--tp-gray);
}

.tp-cta__card-em {
  color: var(--tp-orange-dark);
  font-size: 1.2em;
}

.tp-cta__card-desc {
  padding: 20px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--tp-text-light);
  text-align: left;
}

.tp-cta__info {
  margin-top: 20px;
}

.tp-cta__info-line {
  font-size: 16px;
  line-height: 2;
  font-weight: 700;
  letter-spacing: 2px;
}

/* --------------------------------------------------------------------------
   CONTACT
   -------------------------------------------------------------------------- */
.tp-contact {
  padding: var(--tp-section-padding);
  background: var(--tp-white);
}

.tp-contact__inner {
  max-width: var(--tp-inner-width);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.tp-contact__heading {
  font-size: 22px;
  font-weight: 700;
  color: var(--tp-text);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--tp-navy);
}

.tp-contact__phone {
  text-align: center;
}

.tp-contact__phone-desc {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: var(--tp-text);
}

.tp-contact__phone-logo {
  margin-bottom: 30px;
}

.tp-contact__phone-logo img {
  height: 50px;
  width: auto;
  margin-bottom: 12px;
}

.tp-contact__phone-logo p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--tp-text-light);
}

.tp-contact__phone-number {
  margin-bottom: 12px;
}

.tp-contact__phone-number a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--tp-navy);
}

.tp-contact__phone-tel {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 2px;
}

.tp-contact__phone-note {
  font-size: 14px;
  color: var(--tp-text-light);
  margin-bottom: 8px;
}

.tp-contact__phone-fax {
  font-size: 14px;
  color: var(--tp-text-light);
  margin-bottom: 24px;
}

.tp-contact__phone-address {
  font-size: 14px;
  line-height: 1.8;
  color: var(--tp-text);
}

.tp-contact__form-desc {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: var(--tp-text);
}

.tp-contact__form-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tp-contact__form-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.tp-contact__form-label {
  flex: 0 0 140px;
  font-size: 14px;
  font-weight: 700;
  color: var(--tp-text);
  padding-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.tp-contact__form-required {
  background: var(--tp-red);
  color: var(--tp-white);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 3px;
  font-weight: 700;
}

.tp-contact__form-optional {
  background: var(--tp-navy-light);
  color: var(--tp-white);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 3px;
  font-weight: 700;
}

.tp-contact__form-row input[type="text"],
.tp-contact__form-row input[type="email"],
.tp-contact__form-row input[type="tel"],
.tp-contact__form-row textarea {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--tp-gray);
  border-radius: 4px;
  font-size: 14px;
  background: var(--tp-gray-light);
  transition: border-color 0.3s;
}

.tp-contact__form-row input:focus,
.tp-contact__form-row textarea:focus {
  border-color: var(--tp-navy);
  outline: none;
}

.tp-contact__form-radios {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.tp-contact__form-radios label {
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.tp-contact__form-submit {
  text-align: center;
  margin-top: 16px;
}

.tp-contact__form-btn {
  background: var(--tp-navy);
  color: var(--tp-white);
  border: none;
  padding: 16px 60px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.tp-contact__form-btn:hover {
  background: var(--tp-navy-dark);
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   FLOATING BAR
   -------------------------------------------------------------------------- */
.tp-floating {
  display: block; /* common.css の非表示をトップページでのみ上書き */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.tp-floating.is-visible {
  transform: translateY(0);
}

.tp-floating__inner {
  display: flex;
  align-items: stretch;
}

.tp-floating__info {
  flex: 1;
  background: var(--tp-navy);
  color: var(--tp-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 12px 20px;
}

.tp-floating__label {
  font-size: 12px;
  letter-spacing: 1px;
}

.tp-floating__tel {
  font-size: 24px;
  font-weight: 700;
  color: var(--tp-white);
  text-decoration: none;
  letter-spacing: 1px;
}

.tp-floating__tel:hover {
  color: var(--tp-orange);
  text-decoration: none;
}

.tp-floating__link {
  color: var(--tp-white);
  text-decoration: none;
  font-size: 13px;
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  transition: background 0.3s;
}

.tp-floating__link:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--tp-white);
}

.tp-floating__line {
  background: var(--tp-green-line);
  color: var(--tp-white);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s;
  white-space: nowrap;
}

.tp-floating__line:hover {
  background: #05b34c;
  color: var(--tp-white);
}

.tp-floating__line-icon {
  background: var(--tp-white);
  color: var(--tp-green-line);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.tp-floating__line-text {
  font-size: 15px;
}

/* --------------------------------------------------------------------------
   SCROLL TO TOP BUTTON
   -------------------------------------------------------------------------- */
.tp-scroll-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: var(--tp-navy-dark);
  border: none;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, background 0.25s ease;
  font-size: 18px;
  color: var(--tp-white);
  text-decoration: none;
}

.tp-scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.tp-scroll-top:hover {
  background: var(--tp-navy);
  color: var(--tp-white);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media screen and (max-width: 1024px) {
  .tp-service__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tp-faq__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .tp-qualifications__inner {
    flex-direction: column;
  }

  .tp-qualifications__badges {
    max-width: 100%;
    flex: auto;
  }

  .tp-feature__inner {
    flex-direction: column;
  }

  .tp-feature__img {
    max-width: 100%;
    flex: auto;
    aspect-ratio: 16 / 9;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --tp-section-padding: 60px 0;
  }

  .tp-hero__content {
    padding: 0 24px;
  }

  .tp-hero__scroll {
    left: 20px;
    bottom: 30px;
  }

  .tp-news__inner {
    flex-direction: column;
  }

  .tp-news__label {
    padding: 12px 20px;
  }

  .tp-news__item {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }

  .tp-service__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tp-service__circle {
    width: 220px;
    height: 220px;
  }

  .tp-feature__content {
    padding: 40px 20px;
  }

  .tp-media__inner {
    flex-direction: column;
    gap: 30px;
  }

  .tp-media__img {
    max-width: 100%;
    flex: auto;
  }

  .tp-faq__q {
    padding: 18px 16px;
    font-size: 0.9rem;
  }

  .tp-faq__a {
    padding: 0 16px 18px 54px;
    font-size: 0.85rem;
  }

  .tp-cta__cards {
    grid-template-columns: 1fr;
  }

  .tp-contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tp-contact__form-row {
    flex-direction: column;
    gap: 8px;
  }

  .tp-contact__form-label {
    flex: auto;
  }

  .tp-floating__info {
    flex-wrap: wrap;
    gap: 8px 16px;
    padding: 8px 12px;
  }

  .tp-floating__tel {
    font-size: 18px;
  }

  .tp-floating__label {
    font-size: 10px;
  }

  .tp-floating__link {
    font-size: 11px;
    padding: 4px 10px;
  }
}

@media screen and (max-width: 480px) {
  .tp-hero {
    min-height: 500px;
  }

  .tp-hero__title-line {
    font-size: 20px;
  }

  .tp-hero__cta {
    padding: 14px 30px;
    font-size: 14px;
  }

  .tp-floating__info {
    display: none;
  }

  .tp-floating__line {
    flex: 1;
    justify-content: center;
  }

  .tp-contact__phone-tel {
    font-size: 28px;
  }
}

/* ==========================================================================
   CONCEPT セクション（Sweepersスタイル: 左右サイド画像）
   ========================================================================== */

.tp-concept {
  position: relative;
  background: #eaefea;
  overflow: hidden;
  padding: 30px 0;
}

.tp-concept__side-imgs {
  position: absolute;
  inset: 0;
  display: flex;
  pointer-events: none;
  z-index: 0;
}

.tp-concept__side-img {
  width: 200px;
  flex-shrink: 0;
}

.tp-concept__side-img--left {
  margin-right: auto;
}

.tp-concept__side-img--right {
  margin-left: auto;
}

.tp-concept__side-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  opacity: 0.55;
  background-color: #b8d8c4;
}

.tp-concept__side-img img[src=""] {
  background: linear-gradient(160deg, #2a6644 0%, #52a96e 100%);
}

.tp-concept__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

.tp-concept__logo-wrap {
  margin-bottom: 28px;
}

.tp-concept__logo-img {
  max-height: 60px;
  width: auto;
}

.tp-concept__logo-fallback {
  font-size: 22px;
  font-weight: 800;
  color: #2a6644;
}

.tp-concept__logo-sub {
  font-size: 0.8rem;
  color: #666;
  margin-top: 6px;
}

.tp-concept__catch {
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", "Noto Serif JP", serif;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 600;
  color: var(--tp-navy-dark);
  line-height: 1.6;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.tp-concept__em {
  color: #2a6644;
}

.tp-concept__text {
  font-size: 0.9rem;
  line-height: 2;
  color: #444;
  margin-bottom: 40px;
}

/* 価値観カードグリッド */
.tp-concept__values {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 8px;
}

.tp-concept__value {
  background: #fff;
  border: 1px solid #c8d4c8;
  border-top: 3px solid var(--tp-navy);
  border-radius: 8px;
  padding: 24px 14px 20px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tp-concept__value:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(42, 102, 68, 0.12);
}

.tp-concept__value-num {
  display: block;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--tp-navy);
  font-weight: 700;
  opacity: 0.5;
  margin-bottom: 10px;
}

.tp-concept__value-label {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--tp-navy);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.tp-concept__value-text {
  font-size: 0.75rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* ==========================================================================
   FEATURES セクション（SERVICEと同じ2段構造）
   ========================================================================== */

.tp-features {
  overflow: hidden;
}

/* 上部：白背景（見出し＋円） */
.tp-features__header-area {
  background: var(--tp-white);
  padding: 100px 20px 60px;
  text-align: center;
  position: relative;
}

.tp-features__circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 3px solid var(--tp-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 48px auto 0;
  background: var(--tp-white);
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 2;
}

.tp-features__circle-text {
  color: var(--tp-navy);
  font-size: 1rem;
  line-height: 1.8;
}

.tp-features__circle-em {
  font-size: 1.1rem;
  font-weight: 900;
  display: block;
  margin-top: 8px;
}

/* 下部：グレー背景（カードグリッド） */
.tp-features__cards-wrap {
  background: var(--tp-gray-light);
  padding: 80px 20px 100px;
  margin-top: -120px;
  position: relative;
}

.tp-features__cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 80px;
}

.tp-features__card {
  background: #ffffff;
  border-radius: 6px;
  padding: 0 0 24px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(42, 102, 68, 0.10);
}

.tp-features__card-title {
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", "Noto Serif JP", serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--tp-navy-dark);
  text-align: center;
  padding: 20px 16px 14px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  border-bottom: 2px solid var(--tp-gray);
}

.tp-features__card-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.tp-features__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #b8d8c4;
  display: block;
}

.tp-features__card-img img[src=""] {
  background: linear-gradient(135deg, #b8d8c4 0%, #8ac8a4 100%);
}

.tp-features__card-text {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #444;
  padding: 16px 18px 0;
}

@media (max-width: 900px) {
  .tp-features__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .tp-features__circle {
    width: 260px;
    height: 260px;
  }

  .tp-concept__side-imgs {
    display: none;
  }

  .tp-concept__inner {
    padding: 60px 20px;
  }

  .tp-concept__values {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .tp-concept__values {
    grid-template-columns: repeat(2, 1fr);
  }

  .tp-concept__value:last-child {
    grid-column: 1 / -1;
  }

  .tp-features__cards {
    grid-template-columns: 1fr;
  }

  .tp-features__circle {
    width: 260px;
    height: 260px;
  }
}

/* ==========================================================================
   STATS セクション（ヒーロー直下の実績数字）
   ========================================================================== */

.tp-stats {
  background: var(--tp-gray-light);
  border-top: 4px solid var(--tp-orange);
  border-bottom: 1px solid var(--tp-gray);
  padding: 0;
}

.tp-stats__inner {
  max-width: var(--tp-inner-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
}

.tp-stats__item {
  padding: 36px 24px;
  text-align: center;
  color: var(--tp-text);
}

.tp-stats__num {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--tp-orange);
  line-height: 1;
  font-family: "Georgia", "Times New Roman", serif;
  letter-spacing: -0.02em;
}

.tp-stats__unit {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--tp-text);
  margin-left: 2px;
}

.tp-stats__label {
  font-size: 12px;
  color: var(--tp-text-light);
  margin: 8px 0 0;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.tp-stats__divider {
  width: 1px;
  height: 48px;
  background: var(--tp-gray);
  justify-self: center;
}

@media (max-width: 768px) {
  .tp-stats__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .tp-stats__divider {
    display: none;
  }

  .tp-stats__item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 24px 16px;
  }

  .tp-stats__item:nth-child(even) {
    border-left: 1px solid rgba(255,255,255,0.1);
  }
}

/* ==========================================================================
   スライドインアニメーション
   ========================================================================== */

.tp-slide-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.tp-slide-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.tp-slide-left.is-visible,
.tp-slide-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   スタガーフェードイン
   ========================================================================== */

.tp-fade-stagger {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.tp-fade-stagger.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   VOICE PREVIEW セクション
   ========================================================================== */

.tp-voice-prev {
  background: var(--tp-gray-light);
  padding: var(--tp-section-padding);
}

.tp-voice-prev__inner {
  max-width: var(--tp-inner-width);
  margin: 0 auto;
  padding: 0 24px;
}

.tp-voice-prev__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.tp-vp-card {
  background: var(--tp-white);
  border-radius: 0;
  border-left: 4px solid var(--tp-navy);
  padding: 28px 24px 28px 36px;
  box-shadow: 0 4px 20px rgba(31, 58, 36, 0.07);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.25s ease;
}

.tp-vp-card:hover {
  background: var(--tp-gray-light);
}

.tp-vp-card__label {
  font-size: 11px;
  color: var(--tp-navy-light);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 0;
}

.tp-vp-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--tp-navy);
  line-height: 1.5;
  margin: 0;
}

.tp-vp-card__body {
  font-size: 13px;
  line-height: 1.85;
  color: #555;
  margin: 0;
  flex: 1;
}

.tp-vp-card__stars {
  font-size: 14px;
  color: var(--tp-orange);
  letter-spacing: 2px;
}

.tp-voice-prev__btn-wrap {
  text-align: center;
  margin-top: 40px;
}

.tp-voice-prev__btn {
  display: inline-block;
  border: 2px solid var(--tp-navy);
  color: var(--tp-navy);
  padding: 14px 40px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s ease, color 0.25s ease;
}

.tp-voice-prev__btn:hover {
  background: var(--tp-navy);
  color: var(--tp-white);
}

/* ==========================================================================
   CTA セクション（改善版）
   ========================================================================== */

.tp-cta {
  background: var(--tp-white);
  border-top: 1px solid var(--tp-gray);
  border-bottom: 1px solid var(--tp-gray);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.tp-cta::before {
  display: none;
}

.tp-cta__inner {
  max-width: var(--tp-inner-width);
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.tp-cta__title {
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", "Noto Serif JP", serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--tp-text);
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin: 0 0 16px;
}

.tp-cta__title-em {
  color: var(--tp-navy);
}

.tp-cta__lead {
  font-size: 15px;
  line-height: 1.85;
  color: var(--tp-text);
  margin: 0 0 40px;
}

.tp-cta__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.tp-cta__card {
  background: var(--tp-gray-light);
  border: 1px solid var(--tp-gray);
  border-radius: 8px;
  padding: 24px 20px;
  text-align: left;
  transition: background 0.2s, box-shadow 0.2s;
}

.tp-cta__card:hover {
  background: var(--tp-white);
  box-shadow: 0 4px 16px rgba(42, 102, 68, 0.12);
}

.tp-cta__card-icon {
  margin: 0 0 14px;
  border-radius: 6px;
  overflow: hidden;
  line-height: 0;
  aspect-ratio: 16 / 9;
}

.tp-cta__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

.tp-cta__card-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--tp-text);
  line-height: 1.5;
  margin: 0 0 10px;
}

.tp-cta__card-em {
  color: var(--tp-navy);
  font-weight: 700;
}

.tp-cta__card-desc {
  font-size: 12px;
  line-height: 1.75;
  color: var(--tp-text-light);
  margin: 0;
}

.tp-cta__guarantee {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 13px;
  color: var(--tp-text);
  margin-bottom: 32px;
}

.tp-cta__guarantee-icon {
  color: #4cd964;
  font-weight: 700;
  margin-right: 4px;
}

.tp-cta__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.tp-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  min-height: 54px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 2px;
  letter-spacing: 0.05em;
  transition: background 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
  gap: 8px;
}

.tp-cta__btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.tp-cta__btn--primary {
  background: var(--tp-orange);
  color: var(--tp-white);
  box-shadow: 0 4px 16px rgba(42, 102, 68, 0.35);
}

.tp-cta__btn--tel {
  background: var(--tp-white);
  color: var(--tp-navy-dark);
}

.tp-cta__note {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin: 20px 0 0;
}

@media (max-width: 768px) {
  .tp-voice-prev__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tp-cta__cards {
    grid-template-columns: 1fr;
  }

  .tp-cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .tp-cta__btn {
    width: 100%;
    max-width: 340px;
  }
}
