@charset "UTF-8";

/* ============================================
   Icon Font
   ============================================ */
@font-face {
  font-family: 'icons';
  src: url('/fonts/icons.woff') format('woff'),
       url('/fonts/icons.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary:    #eb5e00;
  --dark:       #333333;
  --gray:       #909090;
  --white:      #ffffff;
  --bg-light:   #f6f6f6;
  --bg-light2:  #f5f5f5;
  --bg-light3:  #f8f8f8;
  --border:     #dedede;
  --header-h:   97px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: opacity 0.2s ease;
  font-size: 16px;
  white-space: nowrap;
  border: none;
  font-family: 'Noto Serif JP', serif;
}

.btn:hover { opacity: 0.8; }

.btn-orange {
  background: var(--primary);
  color: var(--white);
  border-radius: 60px;
  padding: 10px 30px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
}

.btn-orange-outline {
  background: var(--white);
  color: var(--primary);
  border: 1.5px solid var(--primary);
  border-radius: 60px;
  padding: 10px 30px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  padding: 10px 46px;
}

.btn-viewmore {
  height: 50px;
  min-width: 186px;
}

.btn-contact {
  height: 43px;
  padding: 10px 30px;
  font-size: 16px;
  min-width: 242px;
  border-radius: 0;
}

.btn .material-icons {
  font-size: 18px;
}

/* ============================================
   Section Heading (ja over en bg-text)
   ============================================ */
.section-heading {
  margin-bottom: 30px;
}

.section-heading-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-heading-ja {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--primary);
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

.section-heading-en {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(56px, 7.5vw, 94px);
  line-height: 1;
  margin-top: -48px;
  position: relative;
  z-index: 1;
  color: var(--bg-light);       /* default: light gray on white bg */
}

/* On gray/colored backgrounds, use white */
.section-heading-en--white  { color: var(--white); }

/* On white bg for NEWS - almost invisible watermark */
.section-heading-en--faint  { color: #f0f0f0; }

.section-divider {
  width: 2px;
  height: 60px;
  background: var(--primary);
  margin: 16px auto 0;
}

/* About セクション：縦線を ::after で描画 */
.about .section-heading-wrap::after {
  content: '';
  display: block;
  width: 2px;
  height: 60px;
  background: var(--primary);
  margin: 0 auto 0;
}

/* Service セクションの縦線を About の縦線位置（about-content 中央）に揃える */
.service .section-divider {
  margin: 16px 0 0 259px;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

/* ============================================
   Scroll-in Animation
   ============================================ */
.anim-target {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.anim-target.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* staggered delay per position in group (0–3) */
.anim-target:nth-child(4n+1) { transition-delay: 0s; }
.anim-target:nth-child(4n+2) { transition-delay: 0.08s; }
.anim-target:nth-child(4n+3) { transition-delay: 0.16s; }
.anim-target:nth-child(4n+4) { transition-delay: 0.24s; }

/* ============================================
   Header
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0,0,0,0.07);
  height: var(--header-h);
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo img {
  height: 57px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

.main-nav > ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 38px;
}

.main-nav > ul li a {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: var(--dark);
  transition: color 0.2s;
}

.main-nav > ul li a:hover { color: var(--primary); }

.header-buttons {
  display: flex;
  gap: 20px;
}

.header-buttons .btn-orange,
.header-buttons .btn-orange-outline {
  height: 40px;
  font-size: 14px;
  padding: 0 30px;
}

/* hamburger - hidden on desktop */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}

.hamburger .material-icons {
  font-size: 28px;
  color: var(--dark);
}

/* ============================================
   Mobile Navigation
   ============================================ */
.mobile-nav {
  display: flex;               /* 常に描画 → transform が効く */
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background: var(--white);
  z-index: 300;
  flex-direction: column;
  padding: 80px 30px 40px;
  gap: 20px;
  overflow-y: auto;
  transform: translateX(-100%);        /* 初期位置：画面外（左） */
  transition: transform 0.3s ease, visibility 0.3s ease;
  box-shadow: 4px 0 16px rgba(0,0,0,0.12);
  visibility: hidden;                  /* スクリーンリーダー対策 */
  pointer-events: none;
}

.mobile-nav.is-open {
  transform: translateX(0);           /* スライドイン */
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav > ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.mobile-nav > ul li a {
  display: block;
  font-size: 16px;
  color: var(--dark);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-nav-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.mobile-nav-buttons .btn-orange {
  justify-content: center;
  height: 44px;
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

.mobile-nav-close .material-icons {
  font-size: 28px;
  color: var(--dark);
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 200;
}

.mobile-nav-overlay.is-open {
  display: block;
}

/* ============================================
   Hero / MV
   ============================================ */
.mv {
  position: relative;
  margin-top: var(--header-h);
  height: 663px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.mv-bg {
  position: absolute;
  inset: 0;
}

.mv-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mv-overlay {
  position: absolute;
  inset: 0;
  background: rgba(121, 59, 18, 0.20);
}

.mv-sidebar {
  position: absolute;
  left: 0;
  top: 0;
  width: 462px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* L字 縦バー（左） */
.mv-sidebar::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 70px;
  height: 100%;
  background: var(--primary);
}

/* L字 横バー（下） */
.mv-sidebar::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 70px;
  background: var(--primary);
}

.mv-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 73px 170px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mv-heading {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 64px);
  color: var(--white);
  line-height: 1.5;
}

.mv-body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  line-height: 2;
}

.mv-body span{
  background: linear-gradient(transparent 60%, #eb5e00 60%);
}

.mv-logo img {
  height: 180px;
  width: auto;
}


/* ============================================
   Quick Navigation
   ============================================ */
.quick-nav {
  background: var(--bg-light3);
  padding: 60px 30px;
}

.quick-nav-inner {
  list-style: none;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.quick-nav-inner li {
  display: contents; /* li 自体をレイアウトから除外し、a が直接フレックスアイテムになる */
}

.quick-nav-item {
  background: var(--white);
  box-shadow: 2px 2px 2px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 204px;
  height: 177px;
  padding: 20px;
  text-decoration: none;
  color: var(--dark);
  transition: box-shadow 0.25s, transform 0.25s;
}

.quick-nav-item:hover {
  box-shadow: 4px 4px 12px rgba(0,0,0,0.13);
  transform: translateY(-2px);
}

.quick-nav-item .material-icons {
  font-size: 64px;
  color: var(--primary);
}

.quick-nav-item > span:last-child {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  line-height: 1.5;
}

/* ============================================
   About Us
   ============================================ */
.about {
  padding: 90px 0;
  overflow: hidden;
}

.about-inner {
  display: flex;
  align-items: flex-start;
  /* 他セクションの 1100px コンテンツ幅と左端を揃える */
  padding-left: max(20px, calc((100% - 1100px) / 2));
  gap: 80px;
}

.about-content {
  flex: 0 0 520px;
  max-width: 520px;
}

.about-text {
  font-size: 16px;
  line-height: 2;
  color: var(--dark);
}

.about-image {
  flex: 1;
  min-width: 0;
  /* 右端まで伸ばす */
  align-self: stretch;
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 452px;
  object-fit: cover;
  display: block;
}

/* ============================================
   Service
   ============================================ */
.service {
  position: relative;
  padding: 80px 20px;
}

/* 左端から入るグレー背景の四角形 */
.service::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 80%;
  height: 100%;
  background: var(--bg-light);
  z-index: 0;
}

.service-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-lead {
  font-size: 16px;
  line-height: 2;
  color: var(--dark);
}

.service-cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px 0;
}

.service-card {
  position: relative;
  flex: 1 1 300px;
  max-width: 340px;
  min-width: 260px;
  height: 207px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 10px;
  color: var(--white);
}

.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.35s ease;
}

.service-card-bg--1 { background-image: url('/images/service-1.jpg'); }
.service-card-bg--2 { background-image: url('/images/service-2.jpg'); }
.service-card-bg--3 { background-image: url('/images/service-3.jpg'); }


.service-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.30);
}

.service-card-label {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 2;
}

.service-card-label .material-icons {
  color: var(--primary);
  font-size: 28px;
  flex-shrink: 0;
}

/* ============================================
   News
   ============================================ */
.news {
  padding: 80px 20px;
}

.news-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 39px;
}

.news-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #d8d8d8;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px 0;
  border-bottom: 1px solid #d8d8d8;
  transition: background 0.15s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.news-item:hover { background: #fafafa; }

.news-date {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--gray);
  white-space: nowrap;
  flex-shrink: 0;
}

.news-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  min-width: 142px;
  padding: 2px 20px;
  border: 1px solid var(--dark);
  border-radius: 60px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: var(--dark);
  white-space: nowrap;
  flex-shrink: 0;
}

.news-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--dark);
  line-height: 1.5;
}

/* ============================================
   Contact
   ============================================ */
.contact {
  background: var(--bg-light2);
  padding: 80px 20px;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.contact-group {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ─── Support Banner (shared) ───────────────── */
.support-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--dark);
  color: #fff;
  text-decoration: none;
  padding: 36px 48px;
  transition: opacity 0.2s;
}
.support-banner:hover {
  opacity: 0.85;
}
.support-banner-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.support-banner-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  font-size: 22px;
  color: #fff;
  margin: 0;
  line-height: 1.4;
}
.support-banner-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.6;
}
.support-banner-icon {
  font-size: 36px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ─── Sub Section Heading (shared) ─────────── */
.sub-heading {
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  font-size: 28px;
  color: var(--dark);
  line-height: 1.5;
  display: block;
  margin: 0;
}

.sub-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--primary);
  margin-top: 20px;
}

.contact-cards {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1;
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 3px 3px 1.5px rgba(0,0,0,0.01);
  display: flex;
  flex-direction: column;
  height: 216px;
}

.contact-card--full {
  flex: 1 0 100%;
  min-width: unset;
}

.contact-card-header {
  background: var(--bg-light3);
  border-bottom: 1px solid var(--border);
  padding: 15px 16px;
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--dark);
  flex-shrink: 0;
}

.contact-card-body {
  flex: 1;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.contact-card-body > p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--dark);
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  /* PC ではポインターを通常のままにする */
  pointer-events: none;
}

@media (max-width: 768px) {
  /* スマホのみタップ発信を有効化 */
  .contact-phone {
    pointer-events: auto;
    cursor: pointer;
  }
}

.contact-phone .material-icons {
  font-size: 32px;
}

.phone-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--primary);
}

.reception-hours {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--dark);
  text-align: center;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--white);
  box-shadow: inset 0 2px 0 0 var(--dark);
  line-height: calc(30 / 16);
}

/* --- gSitemap --- */
.gSitemap_inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 45px 20px 0;
}
.gSitemap_row {
  display: flex;
  justify-content: space-between;
}
.gSitemap_col {
  min-width: 15%;
}
.gSitemap_col > :first-child { margin-top: 0; }
.gSitemap_list {
  margin: 1em 0 0;
  list-style: none;
}
.gSitemap_list > :first-child { margin-top: 0; }
.gSitemap_cate {
  margin: 10px 0 0;
  padding-left: 1.29em;
  text-indent: -1.29em;
  font-weight: 700;
  font-size: 14px;
}
.gSitemap_cate::before {
  content: '\EA4D';
  font-family: 'icons';
  font-weight: normal;
  color: var(--primary);
  font-size: 0.86em;
  margin-right: 0.5em;
  vertical-align: -0.05em;
}
.gSitemap_cate > a {
  display: inline-block;
  vertical-align: top;
  text-indent: 0;
  text-decoration: none;
  color: inherit;
}
.gSitemap_item {
  margin: 10px 0 0 1.29em;
  font-size: 14px;
}
.gSitemap_item > a {
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  color: inherit;
}

/* --- footerLinks --- */
.footerLinks {
  margin: 70px 0 0;
  border-top: 4px solid var(--dark);
}
.gSitemap + .footerLinks {
  margin: 45px 0 0;
  border-top: none;
}
.footerLinks_inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 45px 50px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
}
.gSitemap + .footerLinks .footerLinks_inner {
  padding-top: 20px;
}
.footerLinks_list {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.footerLinks_list > li:first-child::before { content: none; }
.footerLinks_item {
  font-size: 12px;
}
.footerLinks_item > a {
  text-decoration: none;
  color: inherit;
}
.footerLinks_item::before {
  content: '　/　';
}
.footerLinks_snsList {
  margin: 0;
  display: flex;
  align-items: center;
  list-style: none;
}

/* --- footerCorp --- */
.footerCorp_inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 35px 1em;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.footerCorp_logo {
  margin: 0;
  flex-shrink: 0;
}
.footerCorp_logo img {
  height: 60px;
  width: auto;
}
.footerCorp_name {
  margin: 0 0 0 30px;
  font-size: 12px;
  line-height: 1.67;
}
.footerCorp_address {
  margin: 0 0 0 30px;
  font-size: 12px;
  line-height: 1.67;
}

/* --- footerGroup --- */
.footerGroup_inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 1.2em;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  gap: 34px;
}
.footerGroup_txt {
  margin: 0;
  font-size: 12px;
  line-height: 1.67;
  align-self: center;
}
.footerGroup_logo {
  flex-shrink: 0;
  margin: 0;
  padding-left: 20px;
  border-left: 1px solid #e3e3e3;
}
.footerGroup_logo img {
  height: 40px;
  width: auto;
}

/* --- copyright --- */
.copyright {
  background: var(--dark);
  color: var(--white);
}
.copyright_inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 7px 0;
  text-align: center;
}
.copyright_txt {
  margin: 0;
  font-size: 12px;
  line-height: 2.33;
}

/* ============================================
   Responsive — 1200px
   ============================================ */
@media (max-width: 1200px) {
  .main-nav > ul { gap: 24px; }
  .main-nav { gap: 20px; }
  .header-buttons .btn-orange,
  .header-buttons .btn-orange-outline { font-size: 13px; padding: 0 12px; }

  .mv-content { padding: 60px 80px; }
  .mv-sidebar  { width: 360px; }

  .about-inner { gap: 50px; }
  .about-content { flex: 0 0 420px; max-width: 420px; }
}

/* ============================================
   Responsive — 1024px  (hide desktop nav)
   ============================================ */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .hamburger { display: block; }

  .mv-content { padding: 60px 50px; }
  .mv-sidebar  { width: 260px; }

  .about-inner { flex-wrap: wrap; gap: 40px; }
  .about-content { flex: 1 0 100%; max-width: 100%; }
  .about-image img { height: 360px; }

  .service-cards { gap: 20px; }
  .contact-cards { gap: 30px; }
}

/* ============================================
   Responsive — 768px
   ============================================ */
@media (max-width: 768px) {
  :root { --header-h: 72px; }

  .logo img { height: 44px; }

  /* MV */
  .mv { height: auto; min-height: 520px; }
  .mv-sidebar { width: 140px; }
  .mv-sidebar::before { width: 50px; }   
  .mv-sidebar::after  { width: 160%; height: 50px; }  

  .mv-content { padding: 60px 16px 60px 66px; }
  .mv-heading { font-size: clamp(28px, 7vw, 42px); }
  .mv-body    { font-size: 14px; }
  .mv-logo img { height: 60px; }

  /* Quick Nav */
  .quick-nav { padding: 40px 16px; }
  .quick-nav-inner { gap: 10px; flex-wrap: wrap; }
  .quick-nav-item {
    flex: 0 0 calc(50% - 5px);
    width: auto;
    height: 130px;
    gap: 12px;
  }
  .quick-nav-item .material-icons { font-size: 40px; }
  .quick-nav-item > span:last-child { font-size: 13px; }

  /* About */
  .about { padding: 60px 0; }
  .about-inner { padding: 0 24px; flex-direction: column; gap: 30px; }
  .about-image img { height: 280px; }

  /* Section headings */
  .section-heading-ja { font-size: 26px; }
  .section-heading-en { font-size: clamp(44px, 11vw, 70px); margin-top: -24px; }

  /* Service */
  .service { padding: 60px 16px; }
  .service-card { flex: 1 1 100%; max-width: 100%; }

  /* News */
  .news { padding: 60px 16px; }
  .news-item { flex-wrap: wrap; gap: 10px; }
  .news-tag  { min-width: 110px; padding: 2px 10px; }

  /* Contact */
  .contact { padding: 40px 24px 60px; }
  .contact-cards { flex-direction: column; gap: 16px; }
  .contact-card { height: auto; min-height: 200px; min-width: 0; width: 100%; }
  .sub-heading { font-size: 20px; }
  .phone-number { font-size: 24px; }
  .btn-contact { min-width: unset; width: 100%; max-width: 280px; font-size: 14px; }
  .support-banner { padding: 24px 20px; }
  .support-banner-title { font-size: 18px; }
  .support-banner-text { font-size: 13px; }
  .support-banner-icon { font-size: 28px; }

  /* Footer */
  .site-footer { overflow: hidden; }
  .gSitemap { display: none; }
  .footerLinks { margin: 20px 0 0; padding: 0 10px; border-top: none; }
  .gSitemap + .footerLinks { margin: 20px 0 0; }
  .footerLinks_inner { display: block; padding: 20px 0; }
  .footerLinks_list { flex-wrap: wrap; justify-content: center; }
  .footerLinks_list > li:first-child::before { content: '/'; padding: 0 0.5em; }
  .footerLinks_item { font-size: 13px; }
  .footerLinks_item::before { content: '/'; padding: 0 0.5em; }
  .footerLinks_snsList { margin: 15px 0 0; justify-content: center; }
  .footerCorp { padding: 0 10px; }
  .footerCorp_inner { padding: 20px 0; display: block; text-align: center; }
  .footerCorp_logo { margin: 0 auto; width: fit-content; }
  .footerCorp_name { margin: 10px 0 0; font-size: 11px; }
  .footerCorp_address { margin: 10px 0 0; font-size: 11px; }
  .footerGroup { padding: 0 10px; }
  .footerGroup_inner { padding: 20px 0; justify-content: center; gap: 14px; }
  .footerGroup_txt { font-size: 11px; }
  .footerGroup_logo { padding-left: 10px; }
  .copyright_inner { padding: 7px 10px; }
}

/* ============================================
   Responsive — 480px
   ============================================ */
@media (max-width: 480px) {
  .quick-nav-inner { gap: 8px; }
  .quick-nav-item {
    flex: 0 0 calc(50% - 4px);
    height: 110px;
  }
  .quick-nav-item .material-icons { font-size: 34px; }
  .quick-nav-item > span:last-child { font-size: 12px; }

  .news-title { font-size: 14px; }
  .news-date  { font-size: 14px; }

  .section-heading-en { font-size: 50px; }
  .service .section-divider{margin: 0 auto 0;}

  .phone-number { font-size: 22px; }
  .contact-phone .material-icons { font-size: 24px; }

}
