@charset "UTF-8";
/* ========================================
   SWELLプレビュー用ベースCSS
   SWELLのクラス構造・レイアウトを再現
   ======================================== */

/* --- リセット・ベース --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #222;
  line-height: 1.8;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* --- CSS変数（SWELL互換） --- */
:root {
  --container_size: 1200px;
  --swl-pad_container: 4vw;
  --color_main: #FDD23D;
  --color_text: #222222;
  --color_link: #3A8FB7;
  --color_bg: #fff;
  --color_secondary: #3A8FB7;
  --color_accent: #E8633A;
  --color_warm_bg: #FFFCEF;
  --color_light_gray: #F5F5F5;
  --header_height: 80px;
  --border_radius: 8px;
}

/* --- コンテナ --- */
.l-container {
  max-width: var(--container_size);
  margin: 0 auto;
  padding: 0 var(--swl-pad_container);
}

/* --- SP専用改行 --- */
.sp-only { display: none; }

/* ========================================
   ヘッダー（100%幅・ロゴ左寄せ/右寄せ）
   ======================================== */
#header.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: background 0.3s, box-shadow 0.3s;
}
.l-header__inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header_height);
}
.l-header__logo {
  flex-shrink: 0;
  margin-right: auto;
}
.c-headLogo img { height: 50px; width: auto; }

/* ヘッダー右側グループ */
.l-header__right {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}

/* ヘッダーナビ */
.l-header__gnav { display: flex; align-items: center; }
.c-gnav { display: flex; gap: 0; }
.c-gnav__item > a {
  display: block;
  padding: 0 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #222;
  line-height: var(--header_height);
  position: relative;
  transition: color 0.3s;
  white-space: nowrap;
}
.c-gnav__item > a:hover { color: var(--color_main); }
.c-gnav__item > a::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 3px;
  background: var(--color_main);
  border-radius: 2px;
  transition: transform 0.3s;
}
.c-gnav__item > a:hover::after { transform: translateX(-50%) scaleX(1); }

/* ヘッダー電話番号・CTAボタン */
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: 16px;
  padding-left: 16px;
  border-left: 1px solid #e0e0e0;
}
.header-phone {
  text-align: right;
  line-height: 1.3;
}
.header-phone__number {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color_secondary);
  letter-spacing: 0.02em;
}
.header-phone__note {
  font-size: 0.7rem;
  color: #888;
}
.header-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--color_accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50px;
  transition: background 0.3s, transform 0.2s;
  white-space: nowrap;
}
.header-cta__btn:hover {
  background: #d45530;
  transform: translateY(-1px);
}

/* ハンバーガーメニュー */
.p-hamburger {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1100;
}
.p-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #222;
  margin: 0 auto;
  transition: all 0.3s;
}
.p-hamburger span:nth-child(1) { transform: translateY(-7px); }
.p-hamburger span:nth-child(3) { transform: translateY(7px); }
.p-hamburger.is-open span:nth-child(1) { transform: rotate(45deg); }
.p-hamburger.is-open span:nth-child(2) { opacity: 0; }
.p-hamburger.is-open span:nth-child(3) { transform: rotate(-45deg); }

/* SPメニュー */
.p-spMenu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  background: #fff;
  z-index: 1050;
  padding: 100px 30px 40px;
  transition: right 0.4s ease;
  overflow-y: auto;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
}
.p-spMenu.is-open { right: 0; }
.p-spMenu__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 1040;
  opacity: 0;
  transition: opacity 0.4s;
}
.p-spMenu__overlay.is-open { opacity: 1; }
.p-spMenu__nav a {
  display: block;
  padding: 14px 0;
  font-size: 0.95rem;
  font-weight: 600;
  border-bottom: 1px solid #eee;
}
.p-spMenu__phone {
  margin-top: 24px;
  text-align: center;
}
.p-spMenu__phone a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color_secondary);
}
.p-spMenu__contact {
  margin-top: 16px;
  text-align: center;
}
.p-spMenu__contact a {
  display: inline-block;
  padding: 14px 40px;
  background: var(--color_accent);
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  font-size: 0.95rem;
}

/* ========================================
   メインビジュアル
   ======================================== */
.p-mainVisual {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 500px;
  max-height: 800px;
  margin-top: var(--header_height);
  overflow: hidden;
}
.p-mainVisual__slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.p-mainVisual__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  will-change: opacity;
  backface-visibility: hidden;
}
.p-mainVisual__slide.is-active { opacity: 1; }
.p-mainVisual__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ケンバーンズ（ゆっくりズーム） */
.p-mainVisual__slide img {
  transform: scale(1.08);
  transition: none;
  will-change: transform;
}
.p-mainVisual__slide.is-active img {
  animation: kenburns 6s ease-out forwards;
}
@keyframes kenburns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

/* オーバーレイ */
.p-mainVisual__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.15) 50%,
    rgba(0,0,0,0.3) 100%
  );
  z-index: 2;
}

/* テキストレイヤー */
.p-mainVisual__textLayer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 3;
}
.p-mainVisual__textInner {
  max-width: var(--container_size);
  margin: 0 auto;
  padding: 0 var(--swl-pad_container);
  width: 100%;
}
.mv-copy {
  color: #fff;
  max-width: 640px;
}
.mv-copy__tagline {
  display: inline-block;
  padding: 4px 16px;
  background: var(--color_main);
  color: #222;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 3px;
  margin-bottom: 16px;
}
.mv-copy__catch {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.5;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  margin-bottom: 16px;
}
.mv-copy__catch .highlight {
  color: var(--color_main);
}
.mv-copy__sub {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.9;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  margin-bottom: 28px;
}
.mv-copy__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--color_accent);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(232,99,58,0.35);
}
.mv-copy__btn:hover {
  background: #d45530;
  transform: translateY(-2px);
}
.mv-copy__btn .arrow {
  display: inline-block;
  transition: transform 0.3s;
}
.mv-copy__btn:hover .arrow {
  transform: translateX(4px);
}

/* MVロゴマーク（右下） */
.mv-logo-mark {
  position: absolute;
  bottom: 40px;
  right: 5%;
  z-index: 4;
  opacity: 0.85;
}
.mv-logo-mark img {
  height: 140px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

/* スライダードット */
.p-mainVisual__dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.p-mainVisual__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.p-mainVisual__dot.is-active {
  background: var(--color_main);
  transform: scale(1.2);
}

/* ========================================
   MV 資格バッジ
   ======================================== */
.mv-badges {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.mv-badge {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 0.03em;
}

/* ========================================
   保有資格セクション（コンセプト内）
   ======================================== */
.qualification {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid #e8e8e8;
}
.qualification__title {
  font-size: 1.1rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 24px;
  color: #222;
}
.qualification__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.qualification__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: var(--color_warm_bg);
  border-radius: var(--border_radius);
  border: 1px solid #f0e8d8;
  position: relative;
}
.qualification__item--accent {
  background: linear-gradient(135deg, #fef8dc 0%, #fffcef 100%);
  border: 2px solid var(--color_main);
}
.qualification__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  background: #fff;
  border-radius: 50%;
}
.qualification__info { flex: 1; min-width: 0; }
.qualification__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 2px;
}
.qualification__detail {
  font-size: 0.75rem;
  color: #888;
  line-height: 1.5;
}
.qualification__link {
  position: absolute;
  bottom: 8px;
  right: 14px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color_secondary);
  transition: color 0.3s;
}
.qualification__link:hover { color: var(--color_accent); }

/* ========================================
   アスベスト特集バナー
   ======================================== */
.asbestos-banner {
  padding: 80px 0;
  background: #222222;
  color: #fff;
  overflow: hidden;
}
.asbestos-banner__inner {
  display: flex;
  gap: 48px;
  align-items: center;
}
.asbestos-banner__content { flex: 1; }
.asbestos-banner__label {
  display: inline-block;
  padding: 4px 14px;
  background: var(--color_accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 3px;
  margin-bottom: 16px;
}
.asbestos-banner__title {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 16px;
}
.asbestos-banner__em {
  color: var(--color_accent);
  border-bottom: 3px solid var(--color_accent);
  padding-bottom: 2px;
}
.asbestos-banner__text {
  font-size: 0.9rem;
  line-height: 1.9;
  color: #ccc;
  margin-bottom: 24px;
}
.asbestos-banner__points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.asbestos-banner__point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
}
.asbestos-banner__point-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--color_accent);
  border-radius: 50%;
  font-size: 0.7rem;
  flex-shrink: 0;
}
.asbestos-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--color_accent);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 50px;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(232,99,58,0.3);
}
.asbestos-banner__btn:hover {
  background: #d45530;
  transform: translateY(-2px);
}
.asbestos-banner__btn .arrow {
  display: inline-block;
  transition: transform 0.3s;
}
.asbestos-banner__btn:hover .arrow {
  transform: translateX(4px);
}
.asbestos-banner__visual {
  flex: 0 0 340px;
}
.asbestos-banner__visual-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: #2a2a2a;
  border-radius: var(--border_radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 0.85rem;
  border: 1px dashed #444;
}

/* ========================================
   想いの引用バンド
   ======================================== */
.quote-band {
  background: var(--color_main);
  padding: 28px 0;
  text-align: center;
}
.quote-band__text {
  font-size: 1.15rem;
  font-weight: 600;
  color: #222;
  line-height: 1.7;
}
.quote-band__strong {
  font-size: 1.35rem;
  font-weight: 900;
}
.quote-band__name {
  display: inline-block;
  margin-left: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.7;
}
.quote-band--secondary {
  background: #222222;
}
.quote-band--secondary .quote-band__text {
  color: #fff;
  font-size: 1.1rem;
}
.quote-band--secondary .quote-band__strong {
  color: var(--color_main);
  font-size: 1.25rem;
}

/* ========================================
   セクション共通
   ======================================== */
.section {
  padding: 80px 0;
}
.section--warm {
  background: var(--color_warm_bg);
}
.section--gray {
  background: var(--color_light_gray);
}
.section--omoi {
  background: var(--color_warm_bg);
}
.section__heading {
  text-align: center;
  margin-bottom: 48px;
}
.section__heading-en {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color_main);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.section__heading-ja {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #222;
  line-height: 1.4;
}
.section__heading-bar {
  display: block;
  width: 40px;
  height: 4px;
  background: var(--color_main);
  border-radius: 2px;
  margin: 12px auto 0;
}
.section__lead {
  text-align: center;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.9;
  margin-top: -24px;
  margin-bottom: 40px;
}

/* ========================================
   しん屋の4つの想いと指針セクション
   ======================================== */
.section--philosophy {
  background: #222222;
  color: #fff;
  padding: 96px 0;
}
.section--philosophy .section__heading-en {
  color: var(--color_main);
}
.section--philosophy .section__heading-ja {
  color: #fff;
}
.section--philosophy .section__heading-bar {
  background: var(--color_main);
}
.section--philosophy .section__lead {
  color: rgba(255,255,255,0.7);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.philosophy-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--border_radius);
  padding: 36px 28px;
  transition: transform 0.3s, background 0.3s;
  position: relative;
}
.philosophy-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.08);
}
.philosophy-card__num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--color_main);
  line-height: 1;
  margin-bottom: 12px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  opacity: 0.5;
}
.philosophy-card__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.philosophy-card__bar {
  width: 32px;
  height: 3px;
  background: var(--color_main);
  border-radius: 2px;
  margin: 0 0 20px;
}
.philosophy-card__text {
  font-size: 0.85rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.75);
  text-align: left;
  margin-bottom: 16px;
}
.philosophy-card__quote {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.7;
  color: var(--color_main);
  text-align: left;
  padding: 12px 14px;
  background: rgba(253,210,61,0.08);
  border-left: 3px solid var(--color_main);
  border-radius: 0 4px 4px 0;
}

/* ========================================
   TOPICSセクション（未使用・予備）
   ======================================== */
.topics-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.topics-tab {
  padding: 8px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  background: #eee;
  color: #666;
  cursor: pointer;
  transition: all 0.3s;
}
.topics-tab.is-active,
.topics-tab:hover {
  background: var(--color_main);
  color: #fff;
}
.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.topics-card {
  background: #fff;
  border-radius: var(--border_radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.topics-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.topics-card__thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.topics-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.topics-card:hover .topics-card__thumb img {
  transform: scale(1.05);
}
.topics-card__cat {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 12px;
  background: var(--color_main);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 3px;
}
.topics-card__body {
  padding: 16px 18px;
}
.topics-card__date {
  font-size: 0.75rem;
  color: #999;
  margin-bottom: 6px;
}
.topics-card__title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.topics-more {
  text-align: center;
  margin-top: 36px;
}
.topics-more a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 36px;
  border: 2px solid #222;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s;
}
.topics-more a:hover {
  background: #222;
  color: #fff;
}

/* ========================================
   コンセプトセクション
   ======================================== */
.concept-wrap {
  display: flex;
  gap: 48px;
  align-items: center;
}
.concept-img {
  flex: 0 0 45%;
  border-radius: var(--border_radius);
  overflow: hidden;
}
.concept-img img {
  width: 100%;
  border-radius: var(--border_radius);
}
.concept-text { flex: 1; }
.concept-text__lead {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #222;
}
.concept-text__lead .highlight {
  color: var(--color_secondary);
}
.concept-text__body {
  font-size: 0.95rem;
  line-height: 2;
  color: #555;
  margin-bottom: 24px;
}
.concept-character {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color_warm_bg);
  padding: 16px 20px;
  border-radius: var(--border_radius);
  border-left: 4px solid var(--color_main);
}
.concept-character img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.concept-character__text {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.6;
}

/* ========================================
   代表の想いセクション
   ======================================== */
.omoi-wrap {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.omoi-photo {
  flex: 0 0 280px;
  text-align: center;
}
.omoi-photo__placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #f5f0e8 0%, #e8e0d4 100%);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(253,210,61,0.3);
}
.omoi-photo__deco-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--color_main), var(--color_secondary));
}
.omoi-photo__deco-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(0deg, rgba(253,210,61,0.15), transparent);
}
.omoi-photo__silhouette {
  width: 120px;
  opacity: 0.25;
}
.omoi-photo__silhouette svg {
  width: 100%;
  height: auto;
}
.omoi-photo__label {
  font-size: 0.75rem;
  color: #aaa;
  position: relative;
  z-index: 1;
}
.omoi-photo__name {
  font-size: 1rem;
  font-weight: 700;
  color: #222;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}
.omoi-photo__name-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #888;
}
.omoi-photo__name-main {
  font-size: 1.3rem;
  font-weight: 900;
}
.omoi-content { flex: 1; }
.omoi-block {
  margin-bottom: 36px;
}
.omoi-block__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 14px;
  padding-left: 16px;
  border-left: 4px solid var(--color_main);
  line-height: 1.5;
}
.omoi-block__text {
  font-size: 0.95rem;
  line-height: 2;
  color: #555;
  margin-bottom: 16px;
}
.omoi-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border: 2px solid var(--color_secondary);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color_secondary);
  transition: all 0.3s;
}
.omoi-more:hover {
  background: var(--color_secondary);
  color: #fff;
}
.omoi-more .arrow {
  transition: transform 0.3s;
}
.omoi-more:hover .arrow {
  transform: translateX(4px);
}

/* ========================================
   サービスセクション
   ======================================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.service-grid--4col {
  grid-template-columns: repeat(4, 1fr);
  max-width: none;
}
.service-card {
  background: #fff;
  border-radius: var(--border_radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color_main);
}
.service-card:hover {
  transform: translateY(-4px);
}
.service-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: var(--color_warm_bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.service-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #222;
}
.service-card__desc {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.8;
}
.service-card__link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color_secondary);
  transition: color 0.3s;
}
.service-card__link:hover {
  color: var(--color_accent);
}

/* ========================================
   選ばれる理由
   ======================================== */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}
.reason-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(0,0,0,0.04);
}
.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.reason-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.reason-card__number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--color_main);
  line-height: 1;
  font-family: "Helvetica Neue", Arial, sans-serif;
  opacity: 0.35;
}
.reason-card__icon {
  width: 48px;
  height: 48px;
  background: var(--color_warm_bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color_secondary);
}
.reason-card__title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.5;
  color: #222;
}
.reason-card__desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.9;
}

/* ========================================
   対応エリア
   ======================================== */
.area-wrap {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.area-map {
  flex: 0 0 45%;
  border-radius: var(--border_radius);
}
.area-map__visual {
  background: linear-gradient(135deg, #f0f7fa 0%, #e8f4e8 100%);
  border-radius: var(--border_radius);
  padding: 24px;
  border: 1px solid #e0e8e0;
}
.area-map__svg {
  width: 100%;
  height: auto;
}
.area-map__osaka {
  fill: #d4e6f1;
  stroke: #a8c4d8;
  stroke-width: 2;
}
.area-map__nara {
  fill: #fef3c7;
  stroke: var(--color_main);
  stroke-width: 2.5;
}
.area-map__label-main {
  font-size: 18px;
  font-weight: 800;
  fill: #222;
  text-anchor: middle;
}
.area-map__label-sub {
  font-size: 14px;
  font-weight: 600;
  fill: #666;
  text-anchor: middle;
}
.area-map__label-note {
  font-size: 11px;
  fill: #888;
  text-anchor: middle;
}
.area-map__marker {
  fill: var(--color_accent);
}
.area-map__marker-ring {
  fill: none;
  stroke: var(--color_accent);
  stroke-width: 2;
  opacity: 0.4;
  animation: markerPulse 2s ease-in-out infinite;
}
@keyframes markerPulse {
  0%, 100% { r: 16; opacity: 0.4; }
  50% { r: 22; opacity: 0.1; }
}
.area-map__marker-label {
  font-size: 11px;
  fill: var(--color_accent);
  font-weight: 700;
}
.area-map__marker-city {
  font-size: 13px;
  fill: #222;
  font-weight: 800;
}
.area-map__range {
  fill: none;
  stroke: var(--color_accent);
  stroke-width: 1.5;
  stroke-dasharray: 6 4;
  opacity: 0.4;
}
.area-text { flex: 1; }
.area-text__lead {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.7;
}
.area-text__list {
  margin-bottom: 20px;
}
.area-text__list dt {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color_secondary);
  margin-bottom: 4px;
}
.area-text__list dd {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 16px;
  line-height: 1.8;
}
.area-note {
  font-size: 0.8rem;
  color: #888;
  padding: 12px 16px;
  background: #fff;
  border-radius: var(--border_radius);
}

/* ========================================
   CTAバンド
   ======================================== */
.cta-band {
  background: linear-gradient(135deg, var(--color_secondary) 0%, #2a6f8e 100%);
  padding: 60px 0;
  text-align: center;
  color: #fff;
}
.cta-band__quote {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.6;
  color: var(--color_main);
}
.cta-band__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.cta-band__sub {
  font-size: 0.95rem;
  margin-bottom: 32px;
  opacity: 0.9;
}
.cta-band__btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-band__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  transition: all 0.3s;
}
.cta-band__btn--phone {
  background: #fff;
  color: var(--color_secondary);
}
.cta-band__btn--phone:hover {
  background: var(--color_warm_bg);
  transform: translateY(-2px);
}
.cta-band__btn--contact {
  background: var(--color_accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(232,99,58,0.35);
}
.cta-band__btn--contact:hover {
  background: #d45530;
  transform: translateY(-2px);
}
.cta-band__note {
  margin-top: 16px;
  font-size: 0.8rem;
  opacity: 0.75;
}

/* ========================================
   フッター
   ======================================== */
#footer.l-footer {
  background: #222222;
  color: #ccc;
  padding: 48px 0 0;
}
.l-footer__inner {
  max-width: var(--container_size);
  margin: 0 auto;
  padding: 0 var(--swl-pad_container);
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-brand {
  flex: 0 0 320px;
}
.footer-brand__logo img {
  height: 56px;
  width: auto;
  margin-bottom: 12px;
}
.footer-brand__catch {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color_main);
  margin-bottom: 16px;
  opacity: 0.85;
}
.footer-brand__info {
  font-size: 0.8rem;
  line-height: 1.8;
  color: #aaa;
}
.footer-brand__hours {
  margin-top: 8px;
  font-size: 0.75rem;
  color: #888;
  padding: 4px 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  display: inline-block;
}
.footer-phone {
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: var(--color_main) !important;
  letter-spacing: 0.02em;
}
.footer-contact-link {
  display: inline-block !important;
  margin-top: 8px;
  padding: 8px 20px !important;
  background: var(--color_accent);
  color: #fff !important;
  border-radius: 50px;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  transition: background 0.3s;
}
.footer-contact-link:hover {
  background: #d45530;
  color: #fff !important;
}
.footer-nav {
  flex: 1;
  display: flex;
  gap: 40px;
}
.footer-nav__col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.footer-nav__col a {
  display: block;
  font-size: 0.8rem;
  color: #aaa;
  padding: 4px 0;
  transition: color 0.3s;
}
.footer-nav__col a:hover { color: var(--color_main); }
.l-footer__foot {
  border-top: 1px solid #444;
  margin-top: 40px;
  padding: 20px 0;
  text-align: center;
  font-size: 0.75rem;
  color: #888;
}

/* ========================================
   トップへ戻るボタン
   ======================================== */
.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--color_main);
  color: #222;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.3s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.scroll-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top-btn:hover {
  background: #e8c232;
  transform: translateY(-2px);
}
.scroll-top-btn svg {
  width: 20px;
  height: 20px;
}

/* ========================================
   スクロールアニメーション
   ======================================== */
.js-fadeIn {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.js-fadeIn.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   レスポンシブ（タブレット: 959px）
   ======================================== */
@media (max-width: 959px) {
  :root {
    --header_height: 64px;
  }
  .l-header__right { display: none; }
  .p-hamburger { display: flex; flex-direction: column; justify-content: center; gap: 6px; }
  .p-spMenu { display: block; }
  .p-spMenu__overlay { display: block; }

  .p-mainVisual { height: 70vh; min-height: 400px; }
  .mv-copy__catch { font-size: 2rem; }
  .mv-copy__sub { font-size: 1rem; }
  .mv-logo-mark img { height: 100px; }

  .quote-band__text { font-size: 1rem; }
  .quote-band__strong { font-size: 1.15rem; }

  .philosophy-grid { grid-template-columns: repeat(2, 1fr); }
  .topics-grid { grid-template-columns: repeat(2, 1fr); }
  .concept-wrap { flex-direction: column; }
  .concept-img { flex: none; width: 100%; }
  .qualification__list { grid-template-columns: 1fr; }
  .service-grid, .service-grid--4col { grid-template-columns: repeat(2, 1fr); max-width: none; }
  .reason-grid { grid-template-columns: repeat(2, 1fr); }

  .omoi-wrap { flex-direction: column; }
  .omoi-photo { flex: none; width: 100%; max-width: 320px; margin: 0 auto; }
  .omoi-photo__placeholder { aspect-ratio: 1/1; }

  .asbestos-banner__inner { flex-direction: column; }
  .asbestos-banner__visual { flex: none; width: 100%; max-width: 400px; }
  .asbestos-banner__title { font-size: 1.5rem; }

  .area-wrap { flex-direction: column; }
  .area-map { flex: none; width: 100%; }

  .l-footer__inner { flex-direction: column; gap: 32px; }
  .footer-brand { flex: none; }
}

/* ========================================
   レスポンシブ（スマホ: 599px）
   ======================================== */
@media (max-width: 599px) {
  :root {
    --header_height: 56px;
  }
  .l-header__inner { padding: 0 12px; }
  .c-headLogo img { height: 36px; }
  .section { padding: 56px 0; }
  .section__heading-ja { font-size: 1.4rem; }
  .section__lead { font-size: 0.85rem; }

  .sp-only { display: inline; }

  .p-mainVisual { height: 75vh; min-height: 380px; }
  .mv-copy__tagline { font-size: 0.75rem; padding: 3px 12px; }
  .mv-copy__catch { font-size: 1.5rem; }
  .mv-copy__sub { font-size: 0.85rem; }
  .mv-copy__btn { padding: 14px 28px; font-size: 0.9rem; }
  .mv-logo-mark { bottom: 70px; right: 4%; }
  .mv-logo-mark img { height: 80px; }
  .p-mainVisual__dots { bottom: 16px; }

  .quote-band { padding: 20px 0; }
  .quote-band__text { font-size: 0.9rem; }
  .quote-band__strong { font-size: 1.05rem; }
  .quote-band--secondary .quote-band__text { font-size: 0.9rem; }
  .quote-band--secondary .quote-band__strong { font-size: 1rem; }

  .philosophy-grid { grid-template-columns: 1fr; }
  .philosophy-card__num { font-size: 2.5rem; }
  .section--philosophy { padding: 64px 0; }
  .topics-grid { grid-template-columns: 1fr; }
  .topics-tab { padding: 6px 16px; font-size: 0.8rem; }

  .mv-badges { gap: 6px; }
  .mv-badge { font-size: 0.65rem; padding: 3px 10px; }

  .concept-text__lead { font-size: 1.2rem; }
  .qualification { margin-top: 40px; padding-top: 36px; }
  .service-grid, .service-grid--4col { grid-template-columns: 1fr; }
  .service-grid, .service-grid--4col { grid-template-columns: repeat(2, 1fr); max-width: none; }
  .reason-grid { grid-template-columns: 1fr; }
  .omoi-block__title { font-size: 1.1rem; }

  .asbestos-banner { padding: 56px 0; }
  .asbestos-banner__title { font-size: 1.3rem; }
  .asbestos-banner__point { font-size: 0.8rem; }

  .cta-band__quote { font-size: 1.1rem; }
  .cta-band__title { font-size: 1.2rem; }
  .cta-band__btn { padding: 14px 32px; font-size: 0.95rem; }

  .footer-nav { flex-direction: column; gap: 24px; }
}
