@charset "UTF-8";
/* ************************************** _
タイトル：common.css
概要：中日本モビリティ 共通css
作成：2026.03.31
更新：2026.03.31
_ ************************************** */
/* ************************************** _
タイトル：_base.scss
概要：全ページ共通となるベースCSSファイル
_ ************************************** */
/* ========================================
   Variables
======================================== */
:root {
  --primary-color: #CB0101;
  /* Updated Honda Red */
  --primary-dark: #9E0000;
  --secondary-color: #000000;
  --text-main: #1A1A1A;
  --text-muted: #1A1A1A;
  --bg-light: #F4F7F9;
  --bg-white: #FFFFFF;
  --accent-blue: #004F9F;
  --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
  --max-width: 1400px;
}

/* ========================================
   animation
======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ========================================
   スクロール読み込み 対象
======================================== */
.reveal,
section > .container,
.grid-2,
.stat-card,
.merit-card {
  opacity: 0;
}

/* 表示状態 */
.is-revealed {
  animation: fadeInUp 1s forwards;
}

/* ========================================
   other
======================================== */
/* Staggered Delay for Merit Cards */
.merit-card.reveal:nth-child(1) {
  animation-delay: 0.1s;
}

.merit-card.reveal:nth-child(2) {
  animation-delay: 0.3s;
}

.merit-card.reveal:nth-child(3) {
  animation-delay: 0.5s;
}

/* ========================================
   Base
======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text-main);
  background-color: var(--bg-white);
  line-height: 2;
  -webkit-text-size-adjust: none;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* ************************************** _
タイトル：_layout.scss
概要：全ページ共通となるレイアウト等CSSファイル
_ ************************************** */
/* ========================================
   Layout
======================================== */
.page-section {
  padding: 100px 0;
}

@media screen and (max-width: 768px) {
  .page-section {
    padding: 70px 0;
  }
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.page-content-narrow {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/*  ブロック */
.section-block {
  margin: 0 0 80px 0;
}

@media screen and (max-width: 768px) {
  .section-block {
    margin: 0 0 40px 0;
  }
}
/* ========================================
   Typography
======================================== */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
}

.section-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 20px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .section-title {
    font-size: 2rem;
  }
}

.section-header.center {
  text-align: center;
}

.section-label {
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
}

/* ========================================
   reason-label
======================================== */
.reason-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}

.reason-label::before {
  content: "";
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
}

/* ========================================
   heading
======================================== */
.under-title {
  font-size: 1.6em;
  font-weight: bold;
  margin: 0 0 30px 0;
  position: relative;
}
.under-title:after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: #b3080c;
  margin: 6px 0 0 0;
}

@media screen and (max-width: 900px) {
  .under-title {
    font-size: 1.2em;
  }
}
/* ************************************** _
タイトル：_buttons.scss
概要：全ページ共通となるボタンCSSファイル
_ ************************************** */
/* ========================================
   Buttons
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background-color: #ffffff;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

.btn-arrow {
  display: inline-block;
  width: 24px;
  height: 1px;
  background-color: currentColor;
  position: relative;
  margin-left: 12px;
  vertical-align: middle;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.btn:hover .btn-arrow {
  transform: translateX(8px);
}

.btn-group {
  display: flex;
  gap: 15px;
}

@media (max-width: 600px) {
  .btn-group {
    flex-direction: column;
    gap: 12px;
  }
  .btn-group .btn {
    width: 100%;
    min-width: unset;
  }
}
/* ========================================
   Footer Buttons
======================================== */
.contact-link-btn {
  background: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  display: flex;
  justify-content: center;
  /* Center text more like a button */
  align-items: center;
  padding: 12px 25px;
  border-radius: 50px;
  /* Round/Capsule type */
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

.contact-link-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: var(--primary-color);
  color: white;
}

.contact-link-btn:hover .btn-arrow {
  transform: translateX(8px);
}

.contact-link-btn span {
  margin-right: 10px;
}

.btn-footer-area {
  padding: 10px 20px;
  font-size: 0.9rem;
  border: 2px solid white;
  color: white;
  background-color: transparent;
}

.btn-footer-area:hover {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: white !important;
}

/* ************************************** _
タイトル：_header.scss
概要：全ページ共通となるヘッダーCSSファイル
_ ************************************** */
/* ========================================
   Header
======================================== */
header {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

header .logo h2 {
  font-size: 1.5rem;
  line-height: 1.2 !important;
  letter-spacing: -0.02em;
  color: #474b44;
}

header .logo h2 a:hover {
  opacity: 0.7;
}

/* Hamburger Menu Toggle Button */
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  padding: 12px;
  z-index: 1100;
}

.toggle-line {
  display: block;
  height: 4px;
  background-color: var(--primary-color);
  /* Honda Red */
  border-radius: 2px;
  transition: var(--transition);
}

.line-1 {
  width: 40px;
}

.line-2 {
  width: 30px;
}

.line-3 {
  width: 22px;
}

@media (max-width: 600px) {
  header {
    height: 72px;
    padding: 0 20px;
  }
  header .logo h2 {
    font-size: 1.1rem;
    margin-bottom: 2px !important;
  }
  .logo img {
    height: 20px !important;
    margin-top: 2px !important;
  }
}
/* ************************************** _
タイトル：_menu.scss
概要：全ページ共通となるメニューCSSファイル
_ ************************************** */
/* ========================================
   Menu Overlay
======================================== */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.menu-header {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 60px;
}

.menu-close {
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
}

.menu-close::before,
.menu-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.menu-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-content {
  flex: 1;
  padding: 0 60px 60px;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.overlay-nav ul {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.overlay-nav li {
  border-bottom: 1px solid #eee;
}

.overlay-nav li a,
.overlay-nav li .menu-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  transition: var(--transition);
  position: relative;
}

.overlay-nav li > a::after {
  content: "";
  width: 24px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 12' fill='none' stroke='%23CB0101' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='0' y1='6' x2='24' y2='6'/%3E%3Cpolyline points='19 2 24 6 19 10'/%3E%3C/svg%3E");
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.overlay-nav li a:hover {
  padding-left: 10px;
  color: var(--primary-color);
}

.overlay-nav li a:hover::after {
  transform: translateX(5px);
}

.submenu {
  list-style: none;
  padding: 0 0 10px 15px;
}

.submenu li {
  border-bottom: none !important;
}

.submenu li a {
  padding: 12px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
}

.submenu li a::after {
  width: 24px !important;
  height: 12px !important;
}

.menu-footer-btns {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.menu-area-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 18px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  font-weight: 700;
  color: #333;
  transition: var(--transition);
}

.menu-area-btn img {
  height: 18px;
}

.menu-area-btn:hover {
  border-color: var(--primary-color);
  background: #fff5f5;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 600px) {
  .menu-header {
    height: 72px;
    padding: 0 20px;
  }
  .menu-content {
    padding: 0 20px 40px;
  }
  .overlay-nav li a {
    padding: 18px 0;
    font-size: 1rem;
  }
}
/* ************************************** _
タイトル：_footer.scss
概要：全ページ共通となるフッターCSSファイル
_ ************************************** */
/* ========================================
   Footer
======================================== */
footer {
  background-color: #333333;
  color: rgba(255, 255, 255, 0.7);
  padding: 0;
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-contact-block {
  background-color: var(--bg-light);
  padding: 100px 0;
  text-align: center;
}

.footer-contact-block .contact-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  text-align: center;
}

.footer-contact-block .section-title {
  color: var(--text-main);
  margin-bottom: 20px;
  font-size: 2.2rem;
}

.footer-contact-block .section-title::after {
  display: none;
}

.contact-desc {
  color: var(--text-main);
  margin-bottom: 60px;
  font-size: 1.1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-group {
  text-align: center;
  padding: 0 60px;
}

.contact-group:first-child {
  border-right: 1px solid rgba(26, 26, 26, 0.1);
}

.contact-group-title {
  color: var(--text-main);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 15px;
  position: relative;
  display: inline-block;
}

.contact-group-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-top-content {
  background-color: #333333;
  padding: 80px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo img {
  height: 30px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  /* Even smaller for copyright */
}

.footer-links h3 {
  font-size: 1rem;
  color: white;
  margin-bottom: 20px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a:hover {
  color: white;
}

.footer-btns {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Responsive adjustments for new footer components */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 60px;
  }
  .contact-group {
    padding: 0;
    border-right: none !important;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .footer-contact-block .section-title {
    font-size: 1.8rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
}
/* ************************************** _
タイトル：_pagehero.scss
概要：下層ページの下層ヒーロー部分とパンくず
_ ************************************** */
/* ========================================
   下層ヒーロー
======================================== */
.page-hero {
  width: 100%;
  height: 250px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28, 28, 28, 0.3);
  z-index: 1;
}

.page-hero__inner {
  max-width: 1200px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.page-hero__text {
  text-align: left;
  overflow: hidden;
}

.page-hero__title {
  margin: 0 0 5px 0;
  font-size: 2.2rem;
  color: #ffffff;
  font-weight: bold;
  position: relative;
}

.page-hero__subtitle {
  color: #ffffff;
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  position: relative;
}

@media screen and (max-width: 900px) {
  .page-hero {
    height: 200px;
  }
  .page-hero__inner {
    justify-content: center;
  }
  .page-hero__text {
    text-align: center;
  }
  .page-hero__title {
    font-size: 1.6rem;
  }
}
/* ========================================
   パンくず
======================================== */
.breadcrumb-wrap {
  background-color: #fff;
  border-bottom: 1px solid #eeeeee;
}

.breadcrumb-wrap .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
}

.breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.8rem;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  color: #333;
}

.breadcrumb li:not(:last-child)::after {
  content: ">";
  margin: 0 10px;
  color: #ccc;
  font-size: 0.7rem;
}

.breadcrumb a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--primary-color);
}

/* ************************************** _
タイトル：_table.scss
概要：全ページ共通 table
_ ************************************** */
/* ========================================
   罫線ありテーブル
======================================== */
.ruledLine-wrap {
  margin-top: 20px;
  overflow-x: auto;
}

.ruledLine {
  border-collapse: collapse;
  background: #fff;
  margin: 0 auto 0 auto;
  width: 100%;
}

.ruledLine th,
.ruledLine td {
  padding: 15px 15px;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}

.ruledLine th {
  background: #f7f7f7;
  width: 270px;
  text-align: left;
  vertical-align: middle;
}

.ruledLine td {
  text-align: left;
  background: #ffffff;
}

@media screen and (max-width: 900px) {
  .ruledLine th {
    width: auto;
    padding: 10px;
  }
  .ruledLine td {
    padding: 10px;
  }
}
/* ************************************** _
タイトル：_list.scss
概要：全ページ共通 table
_ ************************************** */
/* ========================================
   罫線ありテーブル
======================================== */
.kajyo-list {
  padding-left: 1.5em;
}
.kajyo-list > li {
  margin-bottom: 12px;
  line-height: 1.9;
}
.kajyo-list .kajyo-list {
  margin-top: 12px;
}

/* ************************************** _
タイトル：_modules.scss
概要：全ページ共通となる部品CSSファイル
_ ************************************** */
/* ========================================
   部品
======================================== */
.u-mobile-break {
  display: none;
}

@media (max-width: 768px) {
  .u-mobile-break {
    display: block;
    /* スマホで改行を有効化 */
  }
}
.signature {
  margin-top: 50px;
  text-align: right;
}

.alert-txt {
  color: #c40000;
}

.with-link {
  color: #3688BA;
}
.with-link:link, .with-link:visited {
  text-decoration: underline !important;
}
.with-link:hover, .with-link:active {
  text-decoration: none !important;
}

/* ************************************** _
タイトル：_modal-announcement.scss
概要：全ページ共通 モーダル表示CSSファイル
_ ************************************** */
/* =====================================
  会社統合案内モーダル
  ※ class汚染を避けるため site-merge-modal 系で統一
===================================== */
.site-merge-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.site-merge-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.site-merge-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.site-merge-modal__dialog {
  position: relative;
  width: min(1080px, 100% - 48px);
  background: #ffffff;
  border-radius: 12px;
  padding: clamp(90px, 10vh, 140px) 64px clamp(70px, 10vh, 140px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  z-index: 1;
}

.site-merge-modal__close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #333333;
  background: transparent;
  cursor: pointer;
  color: transparent;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
}

.site-merge-modal__close::before,
.site-merge-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 2px;
  background-color: #333333;
  border-radius: 1px;
  transform-origin: center;
}

.site-merge-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.site-merge-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.site-merge-modal__close:hover {
  opacity: 0.85;
}

.site-merge-modal__close:focus-visible {
  outline: 2px solid #1a73e8;
  outline-offset: 2px;
}

.site-merge-modal__head {
  text-align: center;
  margin-bottom: clamp(30px, 4vw, 60px);
}

.site-merge-modal__eyebrow {
  margin: 0 0 14px;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: #CB0101;
}

.site-merge-modal__eyebrow span {
  position: relative;
  display: inline-block;
  padding: 0 14px;
  font-weight: 600;
}

.site-merge-modal__eyebrow span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  width: 30px;
  height: 2px;
  background-color: #CB0101;
  border-radius: 0;
  transform: translateY(-50%);
}

.site-merge-modal__title {
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #333333;
  line-height: 1.4;
}

.site-merge-modal__body {
  max-width: 840px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 2.1;
  color: #333333;
  text-align: center;
}

.site-merge-modal__body p {
  margin: 0 0 14px;
}

.site-merge-modal__body p:last-child {
  margin-bottom: 0;
}

.site-merge-modal__body p span {
  font-weight: bold;
}

@media (max-width: 768px) {
  .site-merge-modal__dialog {
    width: calc(100% - 24px);
    padding: 32px 16px 28px;
    max-height: calc(100svh - 32px);
    overflow: hidden;
  }
  .site-merge-modal__close {
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
  }
  .site-merge-modal__close::before,
  .site-merge-modal__close::after {
    width: 22px;
  }
  .site-merge-modal__head {
    margin-bottom: 24px;
  }
  .site-merge-modal__eyebrow {
    font-size: 11px;
    margin-bottom: 10px;
  }
  .site-merge-modal__eyebrow span {
    padding: 0 10px;
  }
  .site-merge-modal__title {
    font-size: 18px;
    line-height: 1.4;
  }
  .site-merge-modal__body {
    max-width: none;
    font-size: 14px;
    line-height: 1.9;
    max-height: calc(100svh - 220px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    text-align: left;
  }
  .site-merge-modal__body p {
    margin-bottom: 12px;
  }
  .site-merge-modal__body p br {
    display: none;
  }
}
/*# sourceMappingURL=_maps/common.css.map */
