@charset "UTF-8";
/* ==========================================================================
   Variables & Reset (基本設定)
   ========================================================================== */
.pc {
  display: block;
}
@media (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media (max-width: 767px) {
  .sp {
    display: block;
  }
}

:root {
  --color-primary: #0070B8;
  --color-secondary: #C6DFEF;
  --color-text: #333333;
  --color-bg-light: #f4f8fa;
  --font-base: "Outfit", "Zen Kaku Gothic New", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --content-width: calc(1096 / 1440 * 100vw);
}
@media (min-width: 1441px) {
  :root {
    --content-width: 1096px;
  }
}
@media (max-width: 767px) {
  :root {
    --content-width: calc(350 / 390 * 100vw);
  }
}

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

body {
  font-family: var(--font-base);
  color: var(--color-text);
  line-height: 1.6;
  background-color: #fff;
  font-size: calc(16 * 100vw / 1440);
  letter-spacing: 0.01em;
}

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

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

ul {
  list-style: none;
}

/* 共通ヘルパー */
.u-section-padding {
  padding: calc(100 * 100vw / 1440) 0;
}

/* ==========================================================================
   Components (汎用パーツ)
   ========================================================================== */
.c-section-header {
  margin-bottom: calc(60 * 100vw / 1440);
}

.c-section-header__sub {
  color: var(--color-primary);
  font-weight: bold;
  letter-spacing: 0.07em;
  font-size: calc(20 * 100vw / 1440);
  display: block;
  position: relative;
  padding-left: calc(25 * 100vw / 1440);
  margin-bottom: calc(10 * 100vw / 1440);
}
.c-section-header__sub:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(20 * 100vw / 1440);
  height: calc(20 * 100vw / 1440);
  background: url(../images/icon_wheel.svg) no-repeat center/cover;
}

.c-section-header__title {
  color: var(--color-secondary);
  font-weight: bold;
  letter-spacing: 0.07em;
  font-size: calc(80 * 100vw / 1440);
  line-height: 1;
  min-width: calc(360 * 100vw / 1440);
  display: block;
  margin-bottom: 5px;
}
.c-section-header__title.--white .c-section-header__sub {
  color: #fff;
}
.c-section-header__title.--white .c-section-header__sub:before {
  background: url(../images/icon_wheel_white.svg) no-repeat center/cover;
}

.c-section-header__desc {
  margin: 0 auto;
  padding: calc(40 * 100vw / 1440) calc(50 * 100vw / 1440) 0 0;
  line-height: 1.6875;
  font-size: calc(16 * 100vw / 1440);
  font-weight: bold;
}

/* --- Contact Button Animation --- */
.c-btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: calc(160 * 100vw / 1440);
  padding: calc(14 * 100vw / 1440) calc(12 * 100vw / 1440) calc(14 * 100vw / 1440) calc(16 * 100vw / 1440);
  background-color: #FFB200;
  border-radius: calc(30 * 100vw / 1440);
  text-decoration: none;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  transition: background-color 0.4s ease;
}

.c-btn-contact__text {
  font-size: calc(14 * 100vw / 1440);
  font-weight: bold;
  color: #284c77;
  line-height: 1;
}

.c-btn-contact__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(16 * 100vw / 1440);
  height: calc(16 * 100vw / 1440);
}

.c-btn-contact__icon svg {
  width: 100%;
  height: auto;
}

.c-btn-contact:hover {
  background-color: #ffc95d;
}
.c-btn-contact:hover .c-btn-contact__icon svg {
  animation: arrowSlide 0.4s forwards;
}

@keyframes arrowSlide {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  49% {
    transform: translateX(30%);
    opacity: 0;
  }
  50% {
    transform: translateX(-30%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.c-btn-more {
  background-color: var(--color-primary);
  width: calc(223 * 100vw / 1440);
}
.c-btn-more:hover {
  background-color: #0382d1;
}
.c-btn-more .c-btn-contact__text {
  color: #fff;
}
.c-btn-more .c-btn-contact__icon svg path {
  fill: #fff;
}
.c-btn-more.sp {
  display: none;
}

.c-badge-before,
.c-badge-after,
.c-badge-one {
  position: absolute;
  top: 0;
  left: 0;
  font-size: calc(20 * 100vw / 1440);
  font-weight: bold;
  letter-spacing: 0.07em;
  color: var(--color-primary);
  z-index: 1;
  background-color: #F1F7FB;
  width: calc(96 * 100vw / 1440);
  height: calc(33 * 100vw / 1440);
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-badge-before,
.c-badge-one {
  border-radius: 0 0 calc(8 * 100vw / 1440) 0;
}

.c-badge-after {
  border-radius: 0 0 0 calc(8 * 100vw / 1440);
  left: inherit;
  right: 0;
}

.c-badge-one {
  font-size: calc(18 * 100vw / 1440);
  width: calc(120 * 100vw / 1440);
  font-weight: 900;
}

/* ==========================================================================
   Layout (レイアウト・ヘッダー・フッター)
   ========================================================================== */
.l-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 calc(2 * 100vw / 1440) calc(10 * 100vw / 1440) rgba(0, 0, 0, 0.05);
}

.under .l-header {
  position: fixed;
  width: 100%;
  background: transparent;
  box-shadow: none;
  transition: background-color 0.3s;
  color: #fff;
}
.under .l-header:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(to bottom, rgb(0, 66, 108) 0%, rgba(0, 33, 54, 0) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.under .l-header a {
  color: #fff;
}
.under .l-header .l-header__menu > li.has-child > a::after {
  border-color: #fff;
}

.under .l-header.is-scrolled:after {
  opacity: 1;
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: calc(28 * 100vw / 1440) calc(40 * 100vw / 1440);
}

.l-header__right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(35 * 100vw / 1440);
}

.l-header__logo a {
  display: flex;
}
.l-header__logo a img {
  width: calc(300 * 100vw / 1440);
}

/* --- Header Navigation Dropdown --- */
.l-header__menu {
  display: flex;
  gap: calc(35 * 100vw / 1440);
  align-items: center;
}
.l-header__menu > li > a {
  display: block;
  padding: calc(15 * 100vw / 1440) 0;
  font-weight: bold;
  position: relative;
  transition: color 0.3s;
}
.l-header__menu > li.has-child {
  position: relative;
}
.l-header__menu > li.has-child > a::after {
  content: "";
  display: inline-block;
  width: calc(6 * 100vw / 1440);
  height: calc(6 * 100vw / 1440);
  margin-left: calc(6 * 100vw / 1440);
  vertical-align: middle;
  border-right: calc(2 * 100vw / 1440) solid #004d80;
  border-bottom: calc(2 * 100vw / 1440) solid #004d80;
  transform: translateY(calc(-4 * 100vw / 1440)) rotate(45deg);
  transition: transform 0.3s;
}
.l-header__menu > li.has-child:hover > a::after {
  transform: translateY(calc(1 * 100vw / 1440)) rotate(-135deg);
}
.l-header__menu > li.has-child:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.l-header__menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(calc(10 * 100vw / 1440));
  width: calc(240 * 100vw / 1440);
  background-color: #ffffff;
  box-shadow: 0 calc(4 * 100vw / 1440) calc(20 * 100vw / 1440) rgba(0, 0, 0, 0.1);
  border-radius: calc(6 * 100vw / 1440);
  padding: calc(10 * 100vw / 1440) 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}
.l-header__menu .sub-menu::before {
  content: "";
  position: absolute;
  top: calc(-6 * 100vw / 1440);
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: calc(12 * 100vw / 1440);
  height: calc(12 * 100vw / 1440);
  background-color: #ffffff;
}
.l-header__menu .sub-menu a {
  display: block;
  padding: calc(12 * 100vw / 1440) calc(20 * 100vw / 1440);
  font-size: calc(14 * 100vw / 1440);
  color: #333333;
  font-weight: bold;
  text-align: left;
  transition: background-color 0.3s, color 0.3s;
  position: relative;
  z-index: 2;
}
.l-header__menu .sub-menu a:hover {
  background-color: #f4f8fa;
  color: #0073bb;
}

.l-header__contact {
  display: flex;
  align-items: center;
  gap: calc(30 * 100vw / 1440);
}
.l-header__contact .c-btn-tel {
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: calc(32 * 100vw / 1440);
}
.l-header__contact .c-btn-tel span {
  font-size: calc(15 * 100vw / 1440);
}

/* フッター全体 */
.l-footer {
  background: url(../images/bg_footer.png) repeat-x center/calc(106 * 100vw / 1440) 100%;
  color: #fff;
  padding: calc(80 * 100vw / 1440) 0 calc(40 * 100vw / 1440);
}

.l-footer__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 0 calc(100 * 100vw / 1440);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.l-footer__info {
  display: flex;
  gap: calc(48 * 100vw / 1440);
  align-items: flex-start;
}

.l-footer__logo img {
  width: calc(160 * 100vw / 1440);
  height: auto;
}

.l-footer__address {
  font-size: calc(14 * 100vw / 1440);
  font-weight: 700;
}

.l-footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(calc(140 * 100vw / 1440), auto));
  gap: calc(25 * 100vw / 1440) calc(60 * 100vw / 1440);
}

.l-footer__links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.3s;
}

.l-footer__links a:hover {
  opacity: 0.7;
}

.l-footer__bottom-inner {
  max-width: calc(1220 * 100vw / 1440);
  margin: 0 auto;
  transform: translateX(calc(62 * 100vw / 1440));
  padding: calc(16 * 100vw / 1440) 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: calc(2 * 100vw / 1440) solid #fff;
}

.l-footer__privacy a {
  font-size: calc(12 * 100vw / 1440);
  font-weight: bold;
  text-decoration: underline;
}

.l-footer__copyright {
  font-size: calc(12 * 100vw / 1440);
  font-weight: 500;
}

.under .p-eye-catch {
  border-radius: 0 0 calc(30 * 100vw / 1440) calc(30 * 100vw / 1440);
  overflow: hidden;
}
.under .p-eye-catch .p-eye-catch__inner {
  position: relative;
}
.under .p-eye-catch .p-eye-catch__inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 66, 108, 0.3);
  z-index: 1;
}
.under .p-eye-catch .p-eye-catch__inner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 66, 108, 0.8) 0%, rgba(0, 33, 54, 0) 100%);
  z-index: 2;
}
.under .p-eye-catch .p-eye-catch__inner .p-eye-catch__visual img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: calc(680 * 100vw / 1440);
}
.under .p-eye-catch .p-eye-catch__inner .p-eye-catch__content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(40 * 100vw / 1440);
  z-index: 100;
}
.under .p-eye-catch .p-eye-catch__inner .p-eye-catch__content .p-eye-catch__title {
  color: #fff;
  font-weight: 900;
  font-size: calc(20 * 100vw / 1440);
  line-height: 1;
  letter-spacing: 0.01em;
}
.under .p-eye-catch .p-eye-catch__inner .p-eye-catch__content .p-eye-catch__title div {
  letter-spacing: 0.07em;
  margin-bottom: calc(16 * 100vw / 1440);
  font-size: calc(82 * 100vw / 1440);
  font-weight: 700;
  line-height: 1.2;
}

/* ==========================================================================
   Project Sections (メインビジュアル・各セクション)
   ========================================================================== */
/* メインビジュアル */
.p-hero {
  background-image: url("../images/hero-bg.png");
  background-size: 94.4444444444vw auto;
  background-repeat: no-repeat;
  background-position: left center;
  height: calc(664 * 100vw / 1440);
  display: flex;
  align-items: center;
  position: relative;
  max-height: 760px;
  width: 94.4444444444vw;
  border-radius: 0 100vw 100vw 0;
}

.p-hero__inner {
  margin: 0 auto;
  width: 100%;
  padding: 0 0 0 calc(80 * 100vw / 1440);
  transform: calc(50 * 100vw / 1440);
}

/* --- Text Slide-in Animation --- */
.p-hero__title {
  font-size: calc(82 * 100vw / 1440);
  color: #fff;
  line-height: 1.2682926829;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: 0.07em;
  display: block;
}
.p-hero__title .c-split-mask {
  display: inline-block;
  vertical-align: bottom;
  overflow: hidden;
  position: relative;
}
.p-hero__title .c-split-char {
  display: inline-block;
  vertical-align: bottom;
  transform: translateY(100%);
  animation: charRevealUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--i) * 0.035s);
}

@keyframes charRevealUp {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
.p-hero__lead {
  font-size: calc(20 * 100vw / 1440);
  color: #fff;
  font-weight: bold;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

/* スクロールアニメーションエリア */
.p-scroll-animation-area {
  position: relative;
  width: 100%;
  height: 46.25vw;
  overflow-x: clip;
}

.p-scroll-animation-area__bg-road {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.p-scroll-animation-area__car {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  will-change: transform;
  opacity: 0;
  visibility: hidden;
}

#animated-car img {
  width: calc(170 * 100vw / 1440);
  height: auto;
}

/* --- Services Section Style --- */
.p-services {
  position: relative;
  z-index: 100;
  margin-top: calc(-400 * 100vw / 1440);
  margin-bottom: calc(110 * 100vw / 1440);
}

.c-section-header {
  max-width: var(--content-width);
  margin: 0 auto calc(70 * 100vw / 1440);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: calc(110 * 100vw / 1440);
}

/* --- Common Reveal Text Animation --- */
.js-reveal-text .c-split-mask {
  display: inline-block;
  vertical-align: bottom;
  overflow: hidden;
  position: relative;
}
.js-reveal-text .c-split-char {
  display: inline-block;
  vertical-align: bottom;
  transform: translateY(100%);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
  transition-delay: calc(var(--i) * 0.03s);
}
.js-reveal-text.is-animated .c-split-char {
  transform: translateY(0);
}

.p-services__grid {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: calc(38 * 100vw / 1440);
}

.p-services__card {
  border-radius: calc(20 * 100vw / 1440);
  overflow: hidden;
  cursor: pointer;
  width: calc((100% - 38 * 100vw / 1440 * 3) / 4);
  position: relative;
}
.p-services__card:hover .p-services__card-img img {
  transform: scale(1.1);
}
.p-services__card:hover .p-services__card-img::after {
  background-color: #04588d;
}
.p-services__card .p-services__card-link {
  color: inherit;
  text-decoration: none;
}
.p-services__card .p-services__card-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.p-services__card-img {
  width: 100%;
  height: 0;
  background-color: #000;
  padding-top: 100%;
}
.p-services__card-img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-services__card-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  opacity: 0.7;
  pointer-events: none;
  transition: 0.3s;
  z-index: 1;
}

.p-services__card-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(20 * 100vw / 1440) 0;
  z-index: 2;
}

.p-services__card-title {
  font-size: calc(30 * 100vw / 1440);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: calc(8 * 100vw / 1440);
  letter-spacing: 0.01em;
}
.p-services__card-title.--dot {
  line-height: 1;
}

.p-services__card-sub {
  font-size: calc(14 * 100vw / 1440);
  font-weight: 500;
  color: #D6D6D6;
  letter-spacing: 0.05em;
}

/* --- Card Content Reveal Mask Animation --- */
.c-reveal-word-mask {
  display: inline-block;
  vertical-align: bottom;
  overflow: hidden;
  width: 100%;
}

.c-reveal-word-target {
  display: inline-block;
  vertical-align: bottom;
  transform: translateY(105%);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.c-reveal-word-target.--title {
  transition-delay: var(--card-delay);
}
.c-reveal-word-target.--sub {
  transition-delay: calc(var(--card-delay) + 0.25s);
}

.js-reveal-content.is-animated .c-reveal-word-target {
  transform: translateY(0);
}

/* --- Background Image Infinite Loop Marquee --- */
.p-marquee-bg {
  width: 100%;
  height: calc(91 * 100vw / 1440);
  margin-bottom: calc(140 * 100vw / 1440);
  background-image: url("../images/img_loop.png");
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: 0 center;
  animation: marqueeBgLoop 40s linear infinite;
}

.under .p-marquee-bg {
  background-image: url("../images/img_loop_under.png");
  margin-top: calc(-59 * 100vw / 1440);
}

.is-page-insurance .p-marquee-bg {
  margin-bottom: 0;
}

@keyframes marqueeBgLoop {
  0% {
    background-position: 0 center;
  }
  100% {
    background-position: -195.6944444444vw center;
  }
}
@media (min-width: 1441px) {
  @keyframes marqueeBgLoop {
    0% {
      background-position: 0 center;
    }
    100% {
      background-position: -2818px center;
    }
  }
}
/* 施工事例スライダー */
.p-works {
  margin-bottom: calc(140 * 100vw / 1440);
}

.p-works__slider-container {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.p-works__slider {
  display: flex;
  gap: calc(20 * 100vw / 1440);
  overflow-x: clip;
  overflow-y: visible;
}

.p-works__card {
  width: 100%;
  box-sizing: border-box;
}

/* --- Works Slider Custom Style (Splideの上書き) --- */
.p-works__card-images {
  display: flex;
  gap: 0;
  border-radius: calc(20 * 100vw / 1440);
  overflow: hidden;
}
.p-works__card-images > div {
  flex: 1;
  position: relative;
  height: calc(276 * 100vw / 1440);
}
.p-works__card-images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-works__card-before,
.p-works__card-after {
  position: relative;
  flex: 1;
}

.p-works__nav {
  display: flex;
  justify-content: center;
  gap: calc(20 * 100vw / 1440);
  margin-top: calc(30 * 100vw / 1440);
}
.p-works__nav .splide__arrow {
  position: static;
  transform: none;
  background: #247ebb;
  width: calc(45 * 100vw / 1440);
  height: calc(45 * 100vw / 1440);
  border-radius: 50%;
  opacity: 1;
  transition: background-color 0.3s;
}
.p-works__nav .splide__arrow:hover {
  background-color: #409ed0;
}
.p-works__nav .splide__arrow svg {
  fill: #ffffff;
  width: calc(16 * 100vw / 1440);
  height: calc(16 * 100vw / 1440);
}

.splide__pagination {
  position: relative;
  display: flex;
  justify-content: center;
  gap: calc(10 * 100vw / 1440);
  margin-top: calc(25 * 100vw / 1440);
}
.splide__pagination li {
  display: inline-flex;
}

.splide__pagination__page {
  width: calc(10 * 100vw / 1440);
  height: calc(10 * 100vw / 1440);
  background-color: #dbe7f0;
  border: none;
  border-radius: 50%;
  padding: 0;
  margin: 0;
  opacity: 1;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}
.splide__pagination__page.is-active {
  background-color: #247ebb;
  transform: scale(1.2);
}

.splide__arrows {
  width: calc(70 * 100vw / 1440);
  position: relative;
  margin-left: auto;
  margin-right: calc(100 * 100vw / 1440);
}

.splide__arrow {
  background: url(../images/icon_arrow.svg) no-repeat center/calc(40 * 100vw / 1440) calc(40 * 100vw / 1440) !important;
  opacity: 1 !important;
  top: calc(50 * 100vw / 1440);
  transform: none;
  width: calc(40 * 100vw / 1440);
  height: calc(40 * 100vw / 1440);
}
.splide__arrow svg {
  display: none;
}

.splide__arrow--prev {
  left: -18%;
}

.splide__arrow--next {
  right: -18%;
  transform: rotate(180deg);
}

/* 会社概要 */
.p-company {
  position: relative;
  overflow: hidden;
}

.p-company__bg-car {
  position: absolute;
  top: 0;
  right: calc(-40 * 100vw / 1440);
  width: calc(336 * 100vw / 1440);
  z-index: 1;
  pointer-events: none;
}

.p-company__bg-car img {
  width: 100%;
  height: auto;
}

.p-company__inner {
  max-width: var(--content-width);
  margin: 0 auto calc(80 * 100vw / 1440);
  display: flex;
}

.p-company__content {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.p-company__visual img {
  border-radius: 50%;
  width: calc(354 * 100vw / 1440);
  height: calc(354 * 100vw / 1440);
  -o-object-fit: cover;
     object-fit: cover;
}

.p-company__right {
  max-width: calc(638 * 100vw / 1440);
}

.p-company__headline {
  font-size: calc(30 * 100vw / 1440);
  letter-spacing: 0.01em;
  color: var(--color-primary);
  font-weight: 900;
  line-height: 1.6;
  margin: 0 0 calc(15 * 100vw / 1440);
}

.p-company__text {
  margin-bottom: calc(30 * 100vw / 1440);
  letter-spacing: 0.01em;
  line-height: 1.6875;
  font-weight: 700;
  font-size: calc(16 * 100vw / 1440);
}

/* お知らせ */
.p-news {
  background: url(../images/bg_news.png) no-repeat top center/100vw 100%;
  color: #ffffff;
  padding: calc(310 * 100vw / 1440) 0 calc(100 * 100vw / 1440);
  overflow: hidden;
}

.p-news__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.p-news__inner .c-section-header__title {
  margin-bottom: calc(120 * 100vw / 1440);
}

.c-btn-more.--white {
  background: #fff;
}
.c-btn-more.--white .c-btn-contact__text {
  color: var(--color-primary);
}
.c-btn-more.--white .c-btn-contact__icon svg path {
  fill: var(--color-primary);
}
.c-btn-more.--white:hover {
  background: var(--color-secondary);
}

.p-news__list {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.p-news__item {
  border-bottom: 1px solid #D6D6D6;
}

.p-news__item-link {
  display: block;
  padding: calc(22 * 100vw / 1440) calc(10 * 100vw / 1440);
  text-decoration: none;
  color: #ffffff;
  transition: background-color 0.3s, padding-left 0.3s;
}

.p-news__item-link:hover {
  background-color: rgba(255, 255, 255, 0.05);
  padding-left: calc(20 * 100vw / 1440);
}

.p-news__item-meta {
  display: flex;
  align-items: center;
  gap: calc(20 * 100vw / 1440);
  margin-bottom: calc(12 * 100vw / 1440);
}

.c-badge-category {
  display: inline-block;
  background-color: #ffffff;
  color: var(--color-primary);
  text-align: center;
  font-size: vpw-pc(13);
  font-weight: bold;
  min-width: calc(143 * 100vw / 1440);
  padding: calc(4 * 100vw / 1440) calc(24 * 100vw / 1440);
  border-radius: calc(30 * 100vw / 1440);
  line-height: 1;
}

.p-news__date {
  font-size: calc(14 * 100vw / 1440);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.p-news__title {
  font-size: calc(15 * 100vw / 1440);
  font-weight: 500;
  line-height: 1.7333333333;
}

/* 採用バナー */
.p-recruitment {
  background-image: url("../images/bg_recruit.jpg");
  background-size: cover;
  background-position: top center;
  padding: calc(180 * 100vw / 1440) 0;
  text-align: center;
  color: #fff;
  position: relative;
}

.p-recruitment__content {
  position: relative;
  z-index: 1;
}

.p-recruitment__title {
  font-size: calc(30 * 100vw / 1440);
  font-weight: 900;
  margin-bottom: calc(40 * 100vw / 1440);
}

/* お問い合わせ全体 */
.p-contact {
  padding: calc(100 * 100vw / 1440) 0 calc(140 * 100vw / 1440);
}

.p-contact__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  background: linear-gradient(to bottom, var(--color-primary) 0%, #1990DD 100%);
  color: #fff;
  text-align: center;
  padding: calc(100 * 100vw / 1440) calc(300 * 100vw / 1440);
  position: relative;
  overflow: hidden;
  border-radius: calc(40 * 100vw / 1440);
}
.p-contact__inner h2 span:before {
  left: calc(50% - 4em);
}

.p-contact__text {
  font-size: calc(20 * 100vw / 1440);
  line-height: 1.6;
  margin: calc(40 * 100vw / 1440) auto calc(32 * 100vw / 1440);
  font-weight: 900;
}

/* 電話エリア（上下に白線、中身を横並び） */
.p-contact__tel-wrap {
  border-top: calc(2 * 100vw / 1440) solid #fff;
  border-bottom: calc(2 * 100vw / 1440) solid #fff;
  padding: calc(16 * 100vw / 1440) 0;
  margin-bottom: calc(40 * 100vw / 1440);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(20 * 100vw / 1440);
  letter-spacing: 0.05em;
}

.p-contact__tel-label {
  font-size: calc(15 * 100vw / 1440);
  line-height: 1.4;
  font-weight: bold;
}

.p-contact__tel-prefix {
  font-size: calc(18 * 100vw / 1440);
  font-weight: 600;
  margin-right: calc(0 * 100vw / 1440);
}

.p-contact__tel-number {
  font-size: calc(32 * 100vw / 1440);
  font-weight: 600;
  text-decoration: none;
  line-height: 1;
}

.p-marquee-bg-contact {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: calc(53 * 100vw / 1440);
  background-image: url("../images/icon_car_s.svg");
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: auto calc(53 * 100vw / 1440);
  animation: marqueeCars 3s linear infinite;
  pointer-events: none;
}

/* 左に流れるアニメーション（右に流したい場合は数値を逆にしてください） */
@keyframes marqueeCars {
  0% {
    transform: translateX(0);
  }
  100% {
    /* 1枚分の背景が左にスライドしきったタイミングで0に戻すことでシームレスになります */
    transform: translateX(calc(-132 * 100vw / 1440));
  }
}
/* --------------------------------------------------------------------------
   Instagram バナー（採用ページ）
   -------------------------------------------------------------------------- */
.p-insta {
  --insta-blue: #0073CE;
  --insta-blue-light: #85D1FE;
  padding: calc(100 * 100vw / 1440) 0 0;
}

.p-insta__inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

.p-insta__box {
  display: flex;
  align-items: center;
  border: calc(2 * 100vw / 1440) solid var(--insta-blue-light);
  border-radius: calc(20 * 100vw / 1440);
  padding: calc(26 * 100vw / 1440) calc(28 * 100vw / 1440) calc(26 * 100vw / 1440) calc(18 * 100vw / 1440);
}

/* 左：キャッチ＋ロゴ */
.p-insta__brand {
  width: calc(326 * 100vw / 1440);
  flex-shrink: 0;
}

.p-insta__catch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(12 * 100vw / 1440);
  color: var(--insta-blue);
  font-size: calc(17 * 100vw / 1440);
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.p-insta__catch::before, .p-insta__catch::after {
  content: "";
  display: block;
  width: calc(2 * 100vw / 1440);
  height: calc(21 * 100vw / 1440);
  background-color: currentColor;
  border-radius: calc(2 * 100vw / 1440);
  flex-shrink: 0;
}
.p-insta__catch::before {
  transform: rotate(-24deg);
}
.p-insta__catch::after {
  transform: rotate(24deg);
}

.p-insta__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(20 * 100vw / 1440);
  margin-top: calc(16 * 100vw / 1440);
}

.p-insta__logo-mark {
  display: block;
  width: calc(80 * 100vw / 1440);
  height: calc(80 * 100vw / 1440);
  flex-shrink: 0;
}
.p-insta__logo-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.p-insta__logo-text {
  color: var(--insta-blue);
  font-size: calc(46 * 100vw / 1440);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
}

/* 中央：本文＋アカウント＋QR */
.p-insta__info {
  flex: 1 1 auto;
  min-width: 0;
  border-left: calc(2 * 100vw / 1440) solid #DCEEFB;
  padding-left: calc(32 * 100vw / 1440);
}

.p-insta__text {
  font-size: calc(14 * 100vw / 1440);
  line-height: 1.8;
  font-weight: 500;
}

.p-insta__account {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: calc(14 * 100vw / 1440);
  margin-top: calc(16 * 100vw / 1440);
  padding: calc(11 * 100vw / 1440) calc(18 * 100vw / 1440);
  border: calc(2 * 100vw / 1440) solid var(--insta-blue-light);
  border-radius: 9999px;
  color: var(--insta-blue);
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.p-insta__account:hover {
  background-color: var(--insta-blue);
  border-color: var(--insta-blue);
  color: #fff;
}

.p-insta__account-name {
  font-size: calc(17 * 100vw / 1440);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.p-insta__account-icon {
  display: block;
  width: calc(18 * 100vw / 1440);
  height: calc(18 * 100vw / 1440);
  flex-shrink: 0;
}
.p-insta__account-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.p-insta__qr {
  display: flex;
  align-items: center;
  gap: calc(16 * 100vw / 1440);
  margin-top: calc(16 * 100vw / 1440);
}

.p-insta__qr-img {
  display: block;
  width: calc(160 * 100vw / 1440);
  flex-shrink: 0;
  border: calc(1 * 100vw / 1440) solid #E4EEF6;
  border-radius: calc(8 * 100vw / 1440);
  padding: calc(4 * 100vw / 1440);
  background-color: #fff;
}
.p-insta__qr-img img {
  display: block;
  width: 100%;
  height: auto;
}

.p-insta__qr-note {
  font-size: calc(12 * 100vw / 1440);
  line-height: 1.7;
  font-weight: 500;
}

.p-insta__url {
  display: inline-block;
  margin-top: calc(10 * 100vw / 1440);
  color: var(--insta-blue);
  font-size: calc(12 * 100vw / 1440);
  line-height: 1.6;
  overflow-wrap: break-word;
  text-decoration: underline;
}
.p-insta__url:hover {
  text-decoration: none;
}

/* 右：写真＋Follow us! */
.p-insta__visual {
  position: relative;
  width: calc(370 * 100vw / 1440);
  height: calc(215 * 100vw / 1440);
  flex-shrink: 0;
}

.p-insta__deco {
  position: absolute;
  top: calc(2 * 100vw / 1440);
  left: calc(292 * 100vw / 1440);
  width: calc(68 * 100vw / 1440);
}
.p-insta__deco img {
  display: block;
  width: 100%;
  height: auto;
}

.p-insta__photo {
  position: absolute;
  background-color: #fff;
  padding: calc(6 * 100vw / 1440);
  box-shadow: 0 calc(3 * 100vw / 1440) calc(9 * 100vw / 1440) rgba(0, 0, 0, 0.16);
}
.p-insta__photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-insta__photo--01 {
  z-index: 2;
  top: calc(22 * 100vw / 1440);
  left: calc(26 * 100vw / 1440);
  width: calc(153 * 100vw / 1440);
  transform: rotate(-10deg);
}
.p-insta__photo--01 img {
  aspect-ratio: 153/155;
}

.p-insta__photo--02 {
  z-index: 1;
  top: calc(27 * 100vw / 1440);
  left: calc(143 * 100vw / 1440);
  width: calc(200 * 100vw / 1440);
  transform: rotate(13deg);
}
.p-insta__photo--02 img {
  aspect-ratio: 205/139;
}

.p-insta__follow {
  position: absolute;
  right: calc(7 * 100vw / 1440);
  bottom: calc(-18 * 100vw / 1440);
  width: calc(203 * 100vw / 1440);
  z-index: 3;
}
.p-insta__follow img {
  display: block;
  width: 100%;
  height: auto;
}

/* --------------------------------------------------------------------------
   パンくずリスト
   -------------------------------------------------------------------------- */
.c-breadcrumb {
  padding: calc(18 * 100vw / 1440) 0 0;
}

.c-breadcrumb__inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

.c-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  font-size: calc(13 * 100vw / 1440);
  line-height: 1.6;
  color: #7A838A;
}

.c-breadcrumb__item {
  display: flex;
  align-items: center;
}
.c-breadcrumb__item:not(:last-child)::after {
  content: "";
  display: block;
  width: calc(6 * 100vw / 1440);
  height: calc(6 * 100vw / 1440);
  margin: 0 calc(10 * 100vw / 1440);
  border-top: calc(1 * 100vw / 1440) solid #B6BEC4;
  border-right: calc(1 * 100vw / 1440) solid #B6BEC4;
  transform: rotate(45deg);
}
.c-breadcrumb__item a {
  color: #7A838A;
  text-decoration: none;
  transition: color 0.3s ease;
}
.c-breadcrumb__item a:hover {
  color: var(--color-primary);
}
.c-breadcrumb__item span {
  color: #4B5459;
}

/* ==========================================================================
   下層ページ
   ========================================================================== */
.sub-intro {
  padding: calc(200 * 100vw / 1440) 0 0;
  position: relative;
  z-index: 10;
}

.sub-intro__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: calc(120 * 100vw / 1440);
}

.sub-intro__content {
  flex: 1;
  max-width: calc(496 * 100vw / 1440);
  padding-top: calc(20 * 100vw / 1440);
}

.sub-intro__heading {
  font-size: calc(30 * 100vw / 1440);
  font-weight: 900;
  margin-bottom: calc(24 * 100vw / 1440);
}

.sub-intro__heading--blue {
  color: var(--color-primary);
}

.sub-intro__text {
  font-weight: 500;
}
.sub-intro__text + .sub-intro__text {
  margin-top: calc(20 * 100vw / 1440);
}

.sub-intro__image-wrap {
  flex: 1;
  max-width: calc(480 * 100vw / 1440);
}

.sub-intro__image {
  width: 100%;
  height: auto;
  border-radius: calc(20 * 100vw / 1440);
  -o-object-fit: cover;
     object-fit: cover;
}

.sub-message {
  padding: calc(120 * 100vw / 1440) 0;
}

.sub-message__signature {
  text-align: right;
  margin-top: calc(40 * 100vw / 1440);
}

.sub-message__position {
  display: block;
  font-weight: 500;
  margin-bottom: calc(5 * 100vw / 1440);
}

.sub-message__name {
  display: block;
  font-size: calc(24 * 100vw / 1440);
  font-weight: 400;
  line-height: 1;
}

.sub-points {
  background: linear-gradient(to bottom, var(--color-primary), #6FB1DB);
  padding: calc(120 * 100vw / 1440) 0;
  color: #fff;
}

.is-page-insurance .sub-points {
  margin-bottom: calc(120 * 100vw / 1440);
}

.sub-section__inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

.sub-section__header {
  margin-bottom: calc(30 * 100vw / 1440);
}

.sub-section__subtitle {
  display: block;
  font-weight: 700;
}

.sub-section__title {
  font-size: calc(72 * 100vw / 1440);
  letter-spacing: 0.07em;
  line-height: 1.2;
}

.sub-points__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: calc(20 * 100vw / 1440);
  list-style: none;
  padding: 0;
  margin: 0;
}

.sub-points__item {
  background-color: #fff;
  border-radius: calc(20 * 100vw / 1440);
  padding: calc(65 * 100vw / 1440) 0 0;
  color: var(--color-primary);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: calc(285 * 100vw / 1440);
}

.sub-points__icon {
  height: calc(60 * 100vw / 1440);
  width: auto;
  display: flex;
  align-items: center;
  margin-bottom: calc(20 * 100vw / 1440);
}

.sub-points__icon img {
  max-height: 100%;
  width: auto;
}

.sub-points__item-title {
  font-size: calc(32 * 100vw / 1440);
  font-weight: 700;
  line-height: 1.2;
}
.sub-points__item-title strong {
  font-weight: 700;
}

.sub-points__item-text {
  font-size: calc(20 * 100vw / 1440);
  font-weight: 700;
  line-height: 1.5;
  margin-top: calc(20 * 100vw / 1440);
}

.sub-points__item-note {
  display: block;
  font-size: calc(18 * 100vw / 1440);
  font-weight: 700;
  margin-top: calc(5 * 100vw / 1440);
}

.sub-flow {
  background-color: #F1F7FB;
  padding: calc(120 * 100vw / 1440) 0;
}

.sub-section__header.--flex {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: calc(90 * 100vw / 1440);
}
.sub-section__header.--flex .--left {
  color: var(--color-primary);
}
.sub-section__header.--flex .--lead {
  font-weight: bold;
  padding-bottom: calc(25 * 100vw / 1440);
}

.sub-section__header.--blue {
  color: var(--color-primary);
}

.sub-section__subtitle {
  display: block;
}

.sub-flow__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: calc(56 * 100vw / 1440);
  max-width: calc(964 * 100vw / 1440);
  margin: 0 auto;
}

.sub-flow__item {
  position: relative;
  background-color: #fff;
  border-radius: calc(10 * 100vw / 1440);
  padding: calc(24 * 100vw / 1440) calc(40 * 100vw / 1440);
  display: flex;
  align-items: center;
  box-shadow: 0 calc(3 * 100vw / 1440) calc(10 * 100vw / 1440) rgba(104, 154, 186, 0.2);
}

.sub-flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: calc(-36 * 100vw / 1440);
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/icon_arrow_down.svg) no-repeat center/cover;
  width: calc(30 * 100vw / 1440);
  height: calc(16 * 100vw / 1440);
}

.sub-flow__item-left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: calc(423 * 100vw / 1440);
  position: relative;
}

.sub-flow__item-left::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: calc(1 * 100vw / 1440);
  height: calc(32 * 100vw / 1440);
  background-color: #D6D6D6;
}

.sub-flow__step {
  display: flex;
  align-items: center;
}

.sub-flow__step-num {
  font-size: calc(20 * 100vw / 1440);
  font-weight: 700;
  color: var(--color-primary);
  width: calc(62 * 100vw / 1440);
  margin-right: calc(30 * 100vw / 1440);
}

.sub-flow__step-title {
  font-size: calc(24 * 100vw / 1440);
  font-weight: 900;
  color: #006cb7;
  width: calc(203 * 100vw / 1440);
}

.sub-flow__icon {
  width: calc(88 * 100vw / 1440);
  height: calc(88 * 100vw / 1440);
}

.sub-flow__icon img {
  width: 100%;
  height: auto;
}

.sub-flow__item-right {
  flex: 1;
  padding-left: calc(40 * 100vw / 1440);
}

.sub-flow__text {
  font-weight: 500;
  margin: 0;
}

.sub-store {
  padding: calc(120 * 100vw / 1440) 0;
}

.is-page-body_paint .sub-store {
  padding: 0 0 calc(120 * 100vw / 1440);
}

.sub-store__cards {
  display: flex;
  gap: calc(30 * 100vw / 1440);
  justify-content: center;
}

.sub-store__card {
  flex: 1;
  background-color: #F1F7FB;
  border-radius: calc(30 * 100vw / 1440);
  padding: calc(48 * 100vw / 1440) calc(50 * 100vw / 1440) calc(40 * 100vw / 1440);
  display: flex;
  flex-direction: column;
  max-width: calc(533 * 100vw / 1440);
}

.sub-store__card-title {
  font-size: calc(24 * 100vw / 1440);
  font-weight: 900;
  text-align: center;
  margin-bottom: calc(30 * 100vw / 1440);
}

.sub-store__card-img {
  width: 100%;
  margin-bottom: calc(14 * 100vw / 1440);
}

.sub-store__card-img img {
  width: 100%;
  height: auto;
  border-radius: calc(15 * 100vw / 1440);
  -o-object-fit: cover;
     object-fit: cover;
}

.sub-store__info {
  margin: 0 0 calc(40 * 100vw / 1440) 0;
}

.sub-store__info-row {
  display: flex;
  align-items: flex-start;
  padding: calc(16 * 100vw / 1440) 0;
  border-bottom: calc(1 * 100vw / 1440) solid #D6D6D6;
}

.sub-store__info-row dt {
  width: calc(105 * 100vw / 1440);
  font-weight: 700;
  flex-shrink: 0;
}

.sub-store__info-row dd {
  margin: 0;
  font-weight: 500;
  flex: 1;
}

.sub-store__info-row dd a {
  color: inherit;
  text-decoration: none;
}

.sub-store__btn-wrap {
  margin-top: auto;
  text-align: center;
}

.is-page-body_paint .sub-store__btn-wrap {
  display: none;
}

.sub-store__btn {
  display: inline-block;
  width: 100%;
  max-width: calc(272 * 100vw / 1440);
  background-color: var(--color-primary);
  color: #fff;
  font-size: calc(14 * 100vw / 1440);
  font-weight: 700;
  line-height: 1.2;
  padding: calc(14 * 100vw / 1440) 0;
  border-radius: calc(100 * 100vw / 1440);
  text-decoration: none;
  position: relative;
  transition: background-color 0.3s ease;
}

.is-page-rental .sub-store__btn {
  max-width: calc(400 * 100vw / 1440);
}

.sub-store__btn:hover {
  background-color: #005fa0;
}

.sub-store__btn span {
  font-size: calc(12 * 100vw / 1440);
}

.sub-store__btn::after {
  content: "";
  position: absolute;
  right: calc(12 * 100vw / 1440);
  top: 50%;
  transform: translateY(-50%);
  width: calc(14 * 100vw / 1440);
  height: calc(14 * 100vw / 1440);
  background: url("../images/icon_external.svg") no-repeat center center/contain;
}

.sub-store__footer-text {
  text-align: center;
  max-width: calc(750 * 100vw / 1440);
  margin: 0 auto;
}

.sub-store__footer-text p {
  font-size: calc(24 * 100vw / 1440);
  font-weight: 700;
  text-align: left;
  line-height: 1.5;
}

.sub-common-area {
  display: flex;
  justify-content: center;
  gap: calc(30 * 100vw / 1440);
  margin-bottom: calc(140 * 100vw / 1440);
}
.sub-common-area .p-recruitment {
  width: 41%;
  border-radius: calc(30 * 100vw / 1440);
  display: flex;
  justify-content: center;
  align-items: center;
}
.sub-common-area .p-contact {
  width: 56%;
  margin: 0;
  padding: 0;
}
.sub-common-area .p-contact .p-contact__inner {
  padding: calc(100 * 100vw / 1440) 0;
}
.sub-common-area .p-contact .p-contact__inner .p-contact__container {
  max-width: calc(480 * 100vw / 1440);
  margin: 0 auto;
}

.sub-services {
  padding: calc(120 * 100vw / 1440) 0;
}

.sub-services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(20 * 100vw / 1440);
}

.sub-services__item {
  position: relative;
  border-radius: calc(20 * 100vw / 1440);
  overflow: hidden;
}

.sub-services__img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sub-services__text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 28, 46, 0.8);
  padding: calc(16 * 100vw / 1440) calc(24 * 100vw / 1440);
  text-align: right;
}

.sub-services__item-title {
  color: #fff;
  font-size: calc(24 * 100vw / 1440);
  font-weight: 900;
  margin: 0;
}

.sub-services__note {
  font-weight: 500;
  margin-top: calc(20 * 100vw / 1440);
}

.sub-promise {
  position: relative;
  background: linear-gradient(rgba(0, 28, 46, 0.5), rgba(0, 28, 46, 0.5)), url("../images/bg_maintenance_promise.jpg") no-repeat center center/cover;
  padding: calc(120 * 100vw / 1440) 0;
  color: #fff;
}
.sub-promise.--body_paint {
  background: linear-gradient(rgba(0, 28, 46, 0.5), rgba(0, 28, 46, 0.5)), url("../images/bg_body_paint_promise.jpg") no-repeat center center/cover;
}
.sub-promise.--sales {
  background: linear-gradient(rgba(0, 28, 46, 0.5), rgba(0, 28, 46, 0.5)), url("../images/bg_sales_promise.jpg") no-repeat center center/cover;
}

.sub-promise__box {
  position: relative;
  background-color: var(--color-primary);
  border-radius: calc(10 * 100vw / 1440);
  max-width: calc(572 * 100vw / 1440);
  min-height: calc(465 * 100vw / 1440);
  margin: calc(80 * 100vw / 1440) auto 0;
  padding: calc(80 * 100vw / 1440) calc(40 * 100vw / 1440);
  overflow: hidden;
}

.sub-promise__box::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: calc(-40 * 100vw / 1440);
  width: calc(256 * 100vw / 1440);
  height: calc(125 * 100vw / 1440);
  background: url("../images/icon_car_lightblue.svg") no-repeat center center/contain;
  pointer-events: none;
}

.sub-promise__box-title {
  font-size: calc(24 * 100vw / 1440);
  font-weight: 900;
  margin-bottom: calc(50 * 100vw / 1440);
}

.sub-promise__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: calc(7 * 100vw / 1440);
}

.sub-promise__item {
  display: flex;
  align-items: flex-start;
  font-weight: 700;
}

.sub-promise__item-num {
  margin-right: calc(10 * 100vw / 1440);
  flex-shrink: 0;
}

.sub-promise__item-text {
  flex: 1;
}

.sub-procedure {
  padding: calc(120 * 100vw / 1440) 0;
}

.sub-procedure__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: calc(104 * 100vw / 1440);
}

.sub-procedure__image-wrap {
  flex: 1;
  max-width: calc(354 * 100vw / 1440);
}

.sub-procedure__image {
  width: 100%;
  height: auto;
  border-radius: calc(15 * 100vw / 1440);
  -o-object-fit: cover;
     object-fit: cover;
}

.sub-procedure__content {
  flex: 1;
  max-width: calc(570 * 100vw / 1440);
}

.sub-procedure__heading {
  font-size: calc(30 * 100vw / 1440);
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: calc(24 * 100vw / 1440);
}

.sub-procedure__text-wrap {
  display: flex;
  flex-direction: column;
  gap: calc(24 * 100vw / 1440);
}

.sub-procedure__text {
  margin: 0;
  font-weight: 500;
}

.sub-works.p-works {
  padding: calc(120 * 100vw / 1440) 0 calc(180 * 100vw / 1440);
  margin-bottom: 0;
}
.sub-works.p-works .sub-section__header {
  margin-bottom: calc(40 * 100vw / 1440);
}

.sub-flat-about {
  padding: calc(120 * 100vw / 1440) 0 0;
}

.sub-flat-about__inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

.sub-flat-about__box {
  background-color: #F1F7FB;
  border-radius: calc(40 * 100vw / 1440);
  padding: calc(80 * 100vw / 1440) 0;
  text-align: center;
}

.sub-flat-about__subtitle {
  display: block;
  font-weight: 700;
  color: var(--color-primary);
}

.sub-flat-about__title {
  font-size: calc(72 * 100vw / 1440);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: calc(20 * 100vw / 1440);
  letter-spacing: 0.07em;
}

.sub-flat-about__text {
  font-size: calc(20 * 100vw / 1440);
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: calc(40 * 100vw / 1440);
}

.sub-flat-about__logo {
  width: 100%;
  max-width: calc(197 * 100vw / 1440);
  margin: 0 auto;
}

.is-page-inspection .sub-flat-about__logo,
.is-page-rental .sub-flat-about__logo {
  max-width: calc(320 * 100vw / 1440);
}

.sub-flat-about__logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.sub-profile__table {
  border-top: calc(1 * 100vw / 1440) solid #D6D6D6;
  max-width: var(--content-width);
  margin: calc(50 * 100vw / 1440) auto 0;
}

.sub-profile__row {
  display: flex;
  align-items: flex-start;
  border-bottom: calc(1 * 100vw / 1440) solid #D6D6D6;
}
.sub-profile__row:last-child dt:after {
  content: "";
  position: absolute;
  display: inline-block;
  bottom: calc(-1 * 100vw / 1440);
  left: 0;
  border-bottom: calc(1 * 100vw / 1440) solid var(--color-primary);
  width: calc(136 * 100vw / 1440);
  height: 0;
}

.sub-profile__label {
  font-weight: 700;
  flex-shrink: 0;
  padding: calc(28 * 100vw / 1440) 0;
  position: relative;
  width: calc(150 * 100vw / 1440);
}
.sub-profile__label:before {
  content: "";
  position: absolute;
  display: inline-block;
  top: calc(-1 * 100vw / 1440);
  left: 0;
  border-top: calc(1 * 100vw / 1440) solid var(--color-primary);
  width: calc(136 * 100vw / 1440);
  height: 0;
}

.sub-profile__data {
  flex: 1;
  font-weight: 500;
  margin: 0;
  padding: calc(28 * 100vw / 1440) 0;
  padding-left: calc(17 * 100vw / 1440);
}

.sub-profile__map-link {
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: calc(4 * 100vw / 1440);
  margin: calc(6 * 100vw / 1440) 0;
}
.sub-profile__map-link:hover {
  text-decoration: none;
}
.sub-profile__map-link .sub-profile__map-icon img {
  vertical-align: calc(-6 * 100vw / 1440);
}

.sub-history {
  padding: calc(120 * 100vw / 1440) 0;
}

.sub-history__timeline {
  max-width: var(--content-width);
  margin: 0 auto;
}

.sub-history__row {
  display: flex;
  align-items: flex-end;
}

.sub-history__year {
  width: calc(173 * 100vw / 1440);
  font-size: calc(24 * 100vw / 1440);
  font-weight: 700;
  color: #2E8BC6;
  line-height: 1;
  position: relative;
  height: calc(92 * 100vw / 1440);
  display: flex;
  align-items: center;
  padding-left: calc(40 * 100vw / 1440);
  flex-shrink: 0;
  border-bottom: calc(1 * 100vw / 1440) solid transparent;
}
.sub-history__year.noline:after {
  display: none;
}
.sub-history__year.nodot::before {
  display: none;
}
.sub-history__year::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: calc(20 * 100vw / 1440);
  height: calc(20 * 100vw / 1440);
  background-color: #2E8BC6;
  border-radius: 50%;
  z-index: 2;
}
.sub-history__year::after {
  content: "";
  position: absolute;
  top: calc(40 * 100vw / 1440);
  bottom: calc(40 * 100vw / 1440);
  left: calc(7 * 100vw / 1440);
  height: calc(92 * 100vw / 1440);
  width: calc(6 * 100vw / 1440);
  background-color: #EBEBEB;
}

.sub-history__content {
  flex: 1;
  font-weight: 500;
  margin: 0;
  line-height: 1;
  height: calc(92 * 100vw / 1440);
  width: calc(923 * 100vw / 1440);
  display: flex;
  align-items: center;
  border-bottom: calc(1 * 100vw / 1440) solid #D6D6D6;
}

.sub-recruit {
  padding: calc(120 * 100vw / 1440) 0 0;
}

.sub-recruit__title {
  font-size: calc(48 * 100vw / 1440);
  text-align: center;
}

.sub-recruit__box {
  background-color: #F1F7FB;
  border-radius: calc(40 * 100vw / 1440);
  padding: calc(80 * 100vw / 1440) calc(50 * 100vw / 1440);
  max-width: var(--content-width);
  margin: 0 auto;
}

.sub-recruit__table {
  width: 100%;
  margin: 0;
}

.sub-recruit__row {
  display: flex;
  align-items: flex-start;
  border-bottom: calc(1 * 100vw / 1440) solid #D6D6D6;
  padding: calc(20 * 100vw / 1440) 0;
}
.sub-recruit__row:first-child {
  padding-top: 0;
}

.sub-recruit__label {
  width: calc(136 * 100vw / 1440);
  font-weight: 700;
  flex-shrink: 0;
}

.sub-recruit__data {
  flex: 1;
  font-weight: 500;
  margin: 0;
  padding-left: calc(17 * 100vw / 1440);
}

.sub-recruit__btn-wrap {
  text-align: center;
  margin-top: calc(48 * 100vw / 1440);
}

.is-page-contact .p-eye-catch__inner:before, .is-page-contact .p-eye-catch__inner:after,
.is-page-policy .p-eye-catch__inner:before,
.is-page-policy .p-eye-catch__inner:after,
.is-page-news .p-eye-catch__inner:before,
.is-page-news .p-eye-catch__inner:after,
.is-page-news_detail .p-eye-catch__inner:before,
.is-page-news_detail .p-eye-catch__inner:after {
  display: none;
}

.sub-contact {
  padding: calc(120 * 100vw / 1440) 0;
}

.sub-contact__lead-wrap {
  max-width: var(--content-width);
  margin: 0 auto calc(50 * 100vw / 1440);
}

.sub-contact__form {
  max-width: var(--content-width);
  margin: 0 auto;
}

.sub-contact__table {
  width: 100%;
}

.sub-contact__row {
  display: flex;
  align-items: center;
  padding: calc(20 * 100vw / 1440) 0;
}
.sub-contact__row.--align-top {
  align-items: flex-start;
}
.sub-contact__row.--align-top .sub-contact__label {
  padding-top: calc(12 * 100vw / 1440);
}

.sub-contact__label {
  width: calc(320 * 100vw / 1440);
  font-size: calc(18 * 100vw / 1440);
  font-weight: 700;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: calc(8 * 100vw / 1440);
}

.sub-contact__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: calc(14 * 100vw / 1440);
  font-weight: 700;
  color: #fff;
  padding: calc(2 * 100vw / 1440) calc(8 * 100vw / 1440);
  border-radius: calc(15 * 100vw / 1440);
}
.sub-contact__badge.--required {
  background-color: #42ABE2;
}

.sub-contact__data {
  flex: 1;
  margin: 0;
}

.sub-contact__form input[type=text],
.sub-contact__form input[type=tel],
.sub-contact__form input[type=email],
.sub-contact__form select,
.sub-contact__form textarea {
  width: 100%;
  background-color: #fff;
  border: calc(1 * 100vw / 1440) solid #D6D6D6;
  border-radius: calc(5 * 100vw / 1440);
  padding: calc(16 * 100vw / 1440);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.sub-contact__form input[type=text]:focus,
.sub-contact__form input[type=tel]:focus,
.sub-contact__form input[type=email]:focus,
.sub-contact__form select:focus,
.sub-contact__form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 108, 183, 0.1);
}
.sub-contact__form input[type=text],
.sub-contact__form input[type=tel],
.sub-contact__form input[type=email],
.sub-contact__form select {
  height: calc(56 * 100vw / 1440);
}
.sub-contact__form textarea {
  height: calc(240 * 100vw / 1440);
  padding: calc(16 * 100vw / 1440);
  resize: vertical;
}
.sub-contact__form ::-moz-placeholder {
  color: #D6D6D6;
  opacity: 1;
}
.sub-contact__form ::placeholder {
  color: #D6D6D6;
  opacity: 1;
}

.sub-contact__select-wrap {
  position: relative;
  width: calc(340 * 100vw / 1440);
}
.sub-contact__select-wrap select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  padding-right: calc(40 * 100vw / 1440);
}
.sub-contact__select-wrap::after {
  content: "";
  position: absolute;
  right: calc(20 * 100vw / 1440);
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: calc(5 * 100vw / 1440);
  height: calc(5 * 100vw / 1440);
  border-right: calc(2 * 100vw / 1440) solid #333;
  border-bottom: calc(2 * 100vw / 1440) solid #333;
  pointer-events: none;
}

.sub-contact__agreement {
  margin-top: 0;
  padding-top: calc(22 * 100vw / 1440);
}

.sub-contact__privacy-row {
  display: flex;
  align-items: flex-start;
}

.sub-contact__label.--privacy {
  align-items: flex-start;
  padding-top: calc(2 * 100vw / 1440);
}

.sub-contact__checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: calc(8 * 100vw / 1440);
  cursor: pointer;
  line-height: 1;
  font-weight: 700;
}
.sub-contact__checkbox-label input[type=checkbox] {
  width: calc(20 * 100vw / 1440);
  height: calc(20 * 100vw / 1440);
  cursor: pointer;
}

.sub-contact__privacy-text {
  margin-top: calc(24 * 100vw / 1440);
}
.sub-contact__privacy-text a {
  text-decoration: underline;
}
.sub-contact__privacy-text a:hover {
  text-decoration: none;
}

.sub-contact__privacy-note {
  margin-top: calc(24 * 100vw / 1440);
}

.sub-contact__btn-wrap {
  text-align: center;
  margin-top: calc(56 * 100vw / 1440);
}

.sub-contact__btn {
  border: none;
  outline: none;
  cursor: pointer;
}

.sub-privacy {
  padding: calc(120 * 100vw / 1440) 0;
}

.sub-privacy__body {
  max-width: var(--content-width);
  margin: 0 auto;
}

.sub-privacy__lead {
  margin-bottom: calc(80 * 100vw / 1440);
}

.sub-privacy__block {
  margin-bottom: calc(40 * 100vw / 1440);
}
.sub-privacy__block:last-of-type {
  margin-bottom: 0;
}

.sub-privacy__heading {
  font-size: calc(18 * 100vw / 1440);
  font-weight: 700;
  padding-left: calc(8 * 100vw / 1440);
  border-left: calc(3 * 100vw / 1440) solid var(--color-primary);
  margin-bottom: calc(12 * 100vw / 1440);
}

.sub-privacy__text {
  margin: 0;
}

.sub-privacy__list {
  margin: calc(16 * 100vw / 1440) 0 0;
  padding-left: calc(24 * 100vw / 1440);
  display: flex;
  flex-direction: column;
  gap: calc(12 * 100vw / 1440);
}
.sub-privacy__list.--bullet {
  list-style-type: none;
  padding-left: 0;
}
.sub-privacy__list.--bullet a {
  text-decoration: none;
}
.sub-privacy__list.--number {
  list-style-type: none;
  padding-left: 0;
  counter-reset: privacy-counter;
}
.sub-privacy__list.--number li {
  position: relative;
  padding-left: calc(36 * 100vw / 1440);
}
.sub-privacy__list.--number li::before {
  counter-increment: privacy-counter;
  content: "（" counter(privacy-counter) "）";
  position: absolute;
  font-family: "Zen Kaku Gothic New", sans-serif;
  left: 0;
  top: 0;
}
.sub-privacy__list.--dash {
  list-style-type: none;
  padding-left: 0;
}
.sub-privacy__list.--dash li {
  position: relative;
  padding-left: calc(16 * 100vw / 1440);
}
.sub-privacy__list.--dash li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: #333;
}

.sub-privacy__address {
  font-style: normal;
  border-radius: calc(8 * 100vw / 1440);
  margin-top: calc(24 * 100vw / 1440);
  margin-bottom: calc(80 * 100vw / 1440);
}
.sub-privacy__address p {
  margin: 0;
}
.sub-privacy__address a {
  color: inherit;
  font-weight: 700;
}

.sub-privacy__address-title {
  font-weight: 700;
  margin-bottom: calc(12 * 100vw / 1440) !important;
}

.sub-privacy__address-group {
  margin-top: calc(20 * 100vw / 1440);
}

.sub-privacy__address-label {
  font-weight: 700;
  margin-bottom: calc(4 * 100vw / 1440) !important;
}

.sub-privacy__border {
  border: none;
  margin: calc(64 * 100vw / 1440) 0;
}

.sub-privacy__sub-lead {
  font-weight: 700;
  margin-bottom: calc(28 * 100vw / 1440);
}

.sub-privacy__sub-heading {
  margin: calc(36 * 100vw / 1440) 0 calc(12 * 100vw / 1440);
}

.sub-privacy__note {
  margin-top: calc(32 * 100vw / 1440);
}

.is-page-news .p-news {
  background: none;
  color: #333;
  padding: calc(120 * 100vw / 1440) 0;
}
.is-page-news .c-badge-category {
  background-color: var(--color-primary);
  color: #fff;
}
.is-page-news .p-news__item-link {
  color: #333;
}
.is-page-news .p-news__list {
  order: 0;
}
.is-page-news .p-news__pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(12 * 100vw / 1440);
  margin-top: calc(60 * 100vw / 1440);
}
.is-page-news .p-news__pager-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: calc(45 * 100vw / 1440);
  height: calc(45 * 100vw / 1440);
  border: calc(1 * 100vw / 1440) solid var(--color-primary);
  border-radius: 50%;
  color: var(--color-primary);
  font-size: calc(14 * 100vw / 1440);
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}
.is-page-news .p-news__pager-btn:hover {
  background-color: var(--color-primary);
  color: #fff;
}
.is-page-news .p-news__pager-btn.--current {
  background-color: var(--color-primary);
  color: #fff;
  cursor: default;
  pointer-events: none;
}
.is-page-news .p-news__pager-btn.--disabled {
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.3);
  cursor: default;
  pointer-events: none;
  display: none;
}

.p-news-detail {
  padding: calc(120 * 100vw / 1440) 0;
}

.p-news-detail__inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

.p-news-detail__header {
  border-bottom: calc(1 * 100vw / 1440) solid #D6D6D6;
  padding-bottom: calc(30 * 100vw / 1440);
  margin-bottom: calc(40 * 100vw / 1440);
}

.p-news-detail__meta {
  display: flex;
  align-items: center;
  gap: calc(20 * 100vw / 1440);
  margin-bottom: calc(20 * 100vw / 1440);
}
.p-news-detail__meta .c-badge-category {
  background-color: var(--color-primary);
  color: #fff;
}

.p-news-detail__title {
  font-size: calc(36 * 100vw / 1440);
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
}

.p-news-detail__body p {
  margin-bottom: calc(24 * 100vw / 1440);
}

.p-news-detail__body img {
  max-width: 100%;
  height: auto;
  margin: calc(30 * 100vw / 1440) 0;
}

.p-news-detail__footer {
  margin-top: calc(60 * 100vw / 1440);
  border-top: calc(1 * 100vw / 1440) solid rgba(0, 0, 0, 0.2);
  padding-top: calc(30 * 100vw / 1440);
}

.sub-contact__error-msg {
  display: none;
  color: #ff3333;
  font-size: calc(13 * 100vw / 1440);
  font-weight: bold;
  margin-top: calc(8 * 100vw / 1440);
}

.sub-contact__data input.--error,
.sub-contact__data textarea.--error,
.sub-contact__data select.--error {
  border: calc(2 * 100vw / 1440) solid #ff3333;
  background-color: #fff0f0;
}

/* ==========================================================================
   Media Query for 1440px or higher (vw-pc values converted to px)
   ========================================================================== */
@media screen and (min-width: 1441px) {
  body {
    font-size: 16px;
  }
  .u-section-padding {
    padding: 100px 0;
  }
  .c-section-header {
    margin-bottom: 60px;
    margin: 0 auto 70px;
    gap: 110px;
  }
  .c-section-header__sub {
    font-size: 20px;
    padding-left: 25px;
    margin-bottom: 10px;
  }
  .c-section-header__sub:before {
    width: 20px;
    height: 20px;
  }
  .c-section-header__title {
    font-size: 80px;
    min-width: 360px;
  }
  .c-section-header__desc {
    padding: 40px 50px 0 0;
    font-size: 16px;
  }
  .c-btn-contact {
    min-width: 160px;
    padding: 14px 12px 14px 16px;
    border-radius: 30px;
  }
  .c-btn-contact__text {
    font-size: 14px;
  }
  .c-btn-contact__icon {
    width: 16px;
    height: 16px;
  }
  .c-btn-more {
    width: 223px;
  }
  .c-badge-before,
  .c-badge-after,
  .c-badge-one {
    font-size: 20px;
    width: 96px;
    height: 33px;
  }
  .c-badge-before,
  .c-badge-one {
    border-radius: 0 0 8px 0;
  }
  .c-badge-after {
    border-radius: 0 0 0 8px;
  }
  .c-badge-one {
    font-size: 18px;
    width: 120px;
  }
  .l-header {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  .l-header__inner {
    padding: 28px 40px;
  }
  .l-header__right {
    gap: 35px;
  }
  .l-header__logo a img {
    width: 300px;
  }
  .l-header__menu {
    gap: 35px;
  }
  .l-header__menu > li > a {
    padding: 15px 0;
  }
  .l-header__menu > li.has-child > a::after {
    width: 6px;
    height: 6px;
    margin-left: 6px;
    border-right: 2px solid #004d80;
    border-bottom: 2px solid #004d80;
    transform: translateY(-4px) rotate(45deg);
  }
  .l-header__menu > li.has-child:hover > a::after {
    transform: translateY(1px) rotate(-135deg);
  }
  .l-header__menu .sub-menu {
    transform: translateX(-50%) translateY(10px);
    width: 240px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 10px 0;
  }
  .l-header__menu .sub-menu::before {
    top: -6px;
    width: 12px;
    height: 12px;
  }
  .l-header__menu .sub-menu a {
    padding: 12px 20px;
    font-size: 14px;
  }
  .l-header__contact {
    gap: 30px;
  }
  .l-header__contact .c-btn-tel {
    font-size: 32px;
  }
  .l-header__contact .c-btn-tel span {
    font-size: 15px;
  }
  .l-footer {
    background: url(../images/bg_footer.png) repeat-x center/106px 100%;
    padding: 80px 0 40px;
  }
  .l-footer__inner {
    padding: 0 0 100px;
  }
  .l-footer__info {
    gap: 48px;
  }
  .l-footer__logo img {
    width: 160px;
  }
  .l-footer__address {
    font-size: 14px;
  }
  .l-footer__links {
    grid-template-columns: repeat(2, minmax(140px, auto));
    gap: 25px 60px;
  }
  .l-footer__bottom-inner {
    padding: 16px 0 0;
    border-top: 2px solid #fff;
    max-width: 1220px;
    transform: translateX(62px);
  }
  .l-footer__privacy a {
    font-size: 12px;
  }
  .l-footer__copyright {
    font-size: 12px;
  }
  .p-hero {
    height: 664px;
  }
  .p-hero__inner {
    padding: 0 0 0 80px;
    transform: translateY(50px);
  }
  .p-hero__title {
    font-size: 82px;
  }
  .p-hero__lead {
    font-size: 20px;
  }
  #animated-car img {
    width: 170px;
  }
  .p-services {
    margin-bottom: 110px;
  }
  .p-services__grid {
    gap: 38px;
  }
  .p-services__card {
    border-radius: 20px;
    width: 246px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: calc((100% - 114px) / 4);
  }
  .p-services__card-content {
    padding: 20px 0;
  }
  .p-services__card-title {
    font-size: 30px;
    margin-bottom: 8px;
  }
  .p-services__card-sub {
    font-size: 14px;
  }
  .p-marquee-bg {
    height: 91px;
    margin-bottom: 140px;
  }
  .under .p-marquee-bg {
    margin-top: -59px;
  }
  .p-works {
    margin-bottom: 140px;
  }
  .p-works__slider {
    gap: 20px;
  }
  .p-works__card-images {
    border-radius: 20px;
  }
  .p-works__card-images > div {
    height: 276px;
  }
  .p-works__nav {
    gap: 20px;
    margin-top: 30px;
  }
  .p-works__nav .splide__arrow {
    width: 45px;
    height: 45px;
  }
  .p-works__nav .splide__arrow svg {
    width: 16px;
    height: 16px;
  }
  .splide__pagination {
    gap: 10px;
    margin-top: 25px;
  }
  .splide__pagination__page {
    width: 10px;
    height: 10px;
  }
  .splide__arrows {
    width: 70px;
    margin-right: 100px;
  }
  .splide__arrow {
    background: url(../images/icon_arrow.svg) no-repeat center/40px 40px !important;
    top: 50px;
    width: 40px;
    height: 40px;
  }
  .p-company__bg-car {
    right: -40px;
    width: 336px;
  }
  .p-company__inner {
    margin: 0 auto 80px;
  }
  .p-company__visual img {
    width: 354px;
    height: 354px;
  }
  .p-company__right {
    max-width: 638px;
  }
  .p-company__headline {
    font-size: 30px;
    margin: 0 0 15px;
  }
  .p-company__text {
    margin-bottom: 30px;
    font-size: 16px;
  }
  .p-news {
    padding: 310px 0 100px;
  }
  .p-news__inner .c-section-header__title {
    margin-bottom: 120px;
  }
  .p-news__item-link {
    padding: 22px 10px;
  }
  .p-news__item-link:hover {
    padding-left: 20px;
  }
  .p-news__item-meta {
    gap: 20px;
    margin-bottom: 12px;
  }
  .c-badge-category {
    min-width: 143px;
    padding: 4px 24px;
    border-radius: 30px;
  }
  .p-news__date {
    font-size: 14px;
  }
  .p-news__title {
    font-size: 15px;
  }
  .p-recruitment {
    padding: 180px 0;
  }
  .p-recruitment__title {
    font-size: 30px;
    margin-bottom: 40px;
  }
  .p-contact {
    padding: 100px 0 140px;
  }
  .p-contact__inner {
    padding: 100px 300px;
    border-radius: 40px;
  }
  .p-contact__text {
    font-size: 20px;
    margin: 40px auto 32px;
  }
  .p-contact__tel-wrap {
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    padding: 16px 0;
    margin-bottom: 40px;
    gap: 20px;
  }
  .p-contact__tel-label {
    font-size: 15px;
  }
  .p-contact__tel-prefix {
    font-size: 18px;
    margin-right: 0px;
  }
  .p-contact__tel-number {
    font-size: 32px;
  }
  .p-marquee-bg-contact {
    height: 53px;
    background-size: auto 53px;
  }
  @keyframes marqueeCars {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-132px);
    }
  }
  .under .p-eye-catch {
    border-radius: 0 0 30px 30px;
  }
  .under .p-eye-catch .p-eye-catch__inner .p-eye-catch__visual img {
    height: 680px;
  }
  .under .p-eye-catch .p-eye-catch__inner .p-eye-catch__content {
    left: 40px;
  }
  .under .p-eye-catch .p-eye-catch__inner .p-eye-catch__content .p-eye-catch__title {
    font-size: 20px;
  }
  .under .p-eye-catch .p-eye-catch__inner .p-eye-catch__content .p-eye-catch__title div {
    margin-bottom: 16px;
    font-size: 82px;
  }
  .sub-intro {
    padding: 200px 0 0;
  }
  .sub-intro__inner {
    gap: 120px;
  }
  .sub-intro__content {
    max-width: 496px;
    padding-top: 20px;
  }
  .sub-intro__heading {
    font-size: 30px;
    margin-bottom: 24px;
  }
  .sub-intro__text + .sub-intro__text {
    margin-top: 20px;
  }
  .sub-intro__image-wrap {
    max-width: 480px;
  }
  .sub-message {
    padding: 120px 0;
  }
  .sub-message__signature {
    margin-top: 40px;
  }
  .sub-message__position {
    margin-bottom: 5px;
  }
  .sub-message__name {
    font-size: 24px;
  }
  .sub-intro__image {
    border-radius: 20px;
  }
  .sub-points {
    padding: 120px 0;
  }
  .is-page-insurance .sub-points {
    margin-bottom: 120px;
  }
  .sub-section__header {
    margin-bottom: 30px;
  }
  .sub-section__title {
    font-size: 72px;
  }
  .sub-points__list {
    gap: 20px;
  }
  .sub-points__item {
    border-radius: 20px;
    padding: 65px 0 0;
    min-height: 285px;
  }
  .sub-points__icon {
    height: 60px;
    margin-bottom: 20px;
  }
  .sub-points__item-title {
    font-size: 32px;
  }
  .sub-points__item-text {
    font-size: 20px;
    margin-top: 20px;
  }
  .sub-points__item-note {
    font-size: 18px;
    margin-top: 5px;
  }
  .sub-flow {
    padding: 120px 0;
  }
  .sub-section__header.--flex {
    gap: 90px;
  }
  .sub-section__header.--flex .--lead {
    padding-bottom: 25px;
  }
  .sub-flow__list {
    gap: 56px;
    max-width: 964px;
  }
  .sub-flow__item {
    border-radius: 10px;
    padding: 24px 40px;
    box-shadow: 0 3px 10px rgba(104, 154, 186, 0.2);
  }
  .sub-flow__item:not(:last-child)::after {
    bottom: -36px;
    width: 30px;
    height: 16px;
  }
  .sub-flow__item-left {
    width: 423px;
  }
  .sub-flow__item-left::after {
    width: 1px;
    height: 32px;
  }
  .sub-flow__step-num {
    font-size: 20px;
    width: 62px;
    margin-right: 30px;
  }
  .sub-flow__step-title {
    font-size: 24px;
    width: 203px;
  }
  .sub-flow__icon {
    width: 88px;
    height: 88px;
  }
  .sub-flow__item-right {
    padding-left: 40px;
  }
  .sub-store {
    padding: 120px 0;
  }
  .is-page-body_paint .sub-store {
    padding: 0 0 120px;
  }
  .sub-store__cards {
    gap: 30px;
  }
  .sub-store__card {
    border-radius: 30px;
    padding: 48px 50px 40px;
    max-width: 533px;
  }
  .sub-store__card-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .sub-store__card-img {
    margin-bottom: 14px;
  }
  .sub-store__card-img img {
    border-radius: 15px;
  }
  .sub-store__info {
    margin: 0 0 40px 0;
  }
  .sub-store__info-row {
    padding: 16px 0;
    border-bottom: 1px solid #D6D6D6;
  }
  .sub-store__info-row dt {
    width: 105px;
  }
  .sub-store__btn {
    max-width: 272px;
    font-size: 14px;
    padding: 14px 0;
    border-radius: 100px;
  }
  .is-page-rental .sub-store__btn {
    max-width: 400px;
  }
  .sub-store__btn span {
    font-size: 12px;
  }
  .sub-store__btn::after {
    right: 12px;
    width: 14px;
    height: 14px;
  }
  .sub-store__footer-text {
    max-width: 750px;
  }
  .sub-store__footer-text p {
    font-size: 24px;
  }
  .sub-common-area {
    gap: 30px;
    margin-bottom: 140px;
  }
  .sub-common-area .p-recruitment {
    border-radius: 30px;
  }
  .sub-common-area .p-contact .p-contact__inner {
    padding: 100px 0;
  }
  .sub-common-area .p-contact .p-contact__inner .p-contact__container {
    max-width: 480px;
  }
  .sub-services {
    padding: 120px 0;
  }
  .sub-services__grid {
    gap: 20px;
  }
  .sub-services__item {
    border-radius: 20px;
  }
  .sub-services__text {
    padding: 16px 24px;
  }
  .sub-services__item-title {
    font-size: 24px;
  }
  .sub-services__note {
    margin-top: 20px;
  }
  .sub-promise {
    padding: 120px 0;
  }
  .sub-promise__box {
    border-radius: 10px;
    max-width: 572px;
    min-height: 465px;
    margin: 80px auto 0;
    padding: 80px 40px;
  }
  .sub-promise__box::after {
    right: -40px;
    width: 256px;
    height: 125px;
  }
  .sub-promise__box-title {
    font-size: 24px;
    margin-bottom: 50px;
  }
  .sub-promise__list {
    gap: 7px;
  }
  .sub-promise__item-num {
    margin-right: 10px;
  }
  .sub-procedure {
    padding: 120px 0;
  }
  .sub-procedure__inner {
    gap: 104px;
  }
  .sub-procedure__image-wrap {
    max-width: 354px;
  }
  .sub-procedure__image {
    border-radius: 15px;
  }
  .sub-procedure__content {
    max-width: 570px;
  }
  .sub-procedure__heading {
    font-size: 30px;
    margin-bottom: 24px;
  }
  .sub-procedure__text-wrap {
    gap: 24px;
  }
  .sub-works.p-works {
    padding: 120px 0 180px;
  }
  .sub-works.p-works .sub-section__header {
    margin-bottom: 40px;
  }
  .sub-flat-about {
    padding: 120px 0 0;
  }
  .sub-flat-about__box {
    border-radius: 40px;
    padding: 80px 0;
  }
  .sub-flat-about__title {
    font-size: 72px;
    margin-bottom: 20px;
  }
  .sub-flat-about__text {
    font-size: 20px;
    margin-bottom: 40px;
  }
  .sub-flat-about__logo {
    max-width: 197px;
  }
  .is-page-inspection .sub-flat-about__logo,
  .is-page-rental .sub-flat-about__logo {
    max-width: 320px;
  }
  .sub-profile__table {
    border-top: 1px solid #D6D6D6;
    margin: 50px auto 0;
  }
  .sub-profile__row {
    border-bottom: 1px solid #D6D6D6;
  }
  .sub-profile__row:last-child dt:after {
    border-bottom: 1px solid var(--color-primary);
    width: 136px;
    bottom: -1px;
  }
  .sub-profile__label {
    padding: 28px 0;
    width: 150px;
  }
  .sub-profile__label:before {
    top: -1px;
    border-top: 1px solid var(--color-primary);
    width: 136px;
  }
  .sub-profile__data {
    padding: 28px 0;
    padding-left: 17px;
  }
  .sub-profile__map-link {
    gap: 4px;
    margin: 6px 0;
  }
  .sub-profile__map-link .sub-profile__map-icon img {
    vertical-align: -6px;
  }
  .sub-history {
    padding: 120px 0;
  }
  .sub-history__year {
    width: 173px;
    font-size: 24px;
    height: 92px;
    padding-left: 40px;
    border-bottom: 1px solid transparent;
  }
  .sub-history__year::before {
    width: 20px;
    height: 20px;
  }
  .sub-history__year::after {
    top: 40px;
    bottom: 40px;
    left: 7px;
    height: 92px;
    width: 6px;
  }
  .sub-history__content {
    height: 92px;
    width: 923px;
    border-bottom: 1px solid #D6D6D6;
  }
  .sub-recruit {
    padding: 120px 0 0;
  }
  .sub-recruit__title {
    font-size: 48px;
  }
  .sub-recruit__box {
    border-radius: 40px;
    padding: 80px 50px;
  }
  .sub-recruit__row {
    border-bottom: 1px solid #D6D6D6;
    padding: 20px 0;
  }
  .sub-recruit__label {
    width: 136px;
  }
  .sub-recruit__data {
    padding-left: 17px;
  }
  .sub-recruit__btn-wrap {
    margin-top: 48px;
  }
  .p-insta {
    padding: 100px 0 0;
  }
  .p-insta__box {
    border-width: 2px;
    border-radius: 20px;
    padding: 26px 28px 26px 18px;
  }
  .p-insta__brand {
    width: 326px;
  }
  .p-insta__catch {
    gap: 12px;
    font-size: 17px;
  }
  .p-insta__catch::before, .p-insta__catch::after {
    width: 2px;
    height: 21px;
    border-radius: 2px;
  }
  .p-insta__logo {
    gap: 20px;
    margin-top: 16px;
  }
  .p-insta__logo-mark {
    width: 80px;
    height: 80px;
  }
  .p-insta__logo-text {
    font-size: 46px;
  }
  .p-insta__info {
    border-left-width: 2px;
    padding-left: 32px;
  }
  .p-insta__text {
    font-size: 14px;
  }
  .p-insta__account {
    gap: 14px;
    margin-top: 16px;
    padding: 11px 18px;
    border-width: 2px;
  }
  .p-insta__account-name {
    font-size: 17px;
  }
  .p-insta__account-icon {
    width: 18px;
    height: 18px;
  }
  .p-insta__qr {
    gap: 16px;
    margin-top: 16px;
  }
  .p-insta__qr-img {
    width: 160px;
    border-width: 1px;
    border-radius: 8px;
    padding: 4px;
  }
  .p-insta__qr-note {
    font-size: 12px;
  }
  .p-insta__url {
    margin-top: 10px;
    font-size: 12px;
  }
  .p-insta__visual {
    width: 370px;
    height: 215px;
  }
  .p-insta__deco {
    top: 2px;
    left: 292px;
    width: 68px;
  }
  .p-insta__photo {
    padding: 6px;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.16);
  }
  .p-insta__photo--01 {
    top: 22px;
    left: 26px;
    width: 153px;
  }
  .p-insta__photo--02 {
    top: 27px;
    left: 143px;
    width: 200px;
  }
  .p-insta__follow {
    right: 7px;
    bottom: -18px;
    width: 203px;
  }
  .c-breadcrumb {
    padding: 18px 0 0;
  }
  .c-breadcrumb__list {
    font-size: 13px;
  }
  .c-breadcrumb__item:not(:last-child)::after {
    width: 6px;
    height: 6px;
    margin: 0 10px;
    border-top-width: 1px;
    border-right-width: 1px;
  }
  .sub-contact {
    padding: 120px 0;
  }
  .sub-contact__lead-wrap {
    margin: 0 auto 50px;
  }
  .sub-contact__row {
    padding: 20px 0;
  }
  .sub-contact__row.--align-top .sub-contact__label {
    padding-top: 12px;
  }
  .sub-contact__label {
    width: 320px;
    font-size: 18px;
    gap: 8px;
  }
  .sub-contact__badge {
    font-size: 14px;
    padding: 2px 8px;
    border-radius: 15px;
  }
  .sub-contact__form input[type=text],
  .sub-contact__form input[type=tel],
  .sub-contact__form input[type=email],
  .sub-contact__form select,
  .sub-contact__form textarea {
    border: 1px solid #D6D6D6;
    border-radius: 5px;
    padding: 16px;
  }
  .sub-contact__form input[type=text],
  .sub-contact__form input[type=tel],
  .sub-contact__form input[type=email],
  .sub-contact__form select {
    height: 56px;
  }
  .sub-contact__form textarea {
    height: 240px;
    padding: 16px;
  }
  .sub-contact__select-wrap {
    width: 340px;
  }
  .sub-contact__select-wrap select {
    padding-right: 40px;
  }
  .sub-contact__select-wrap::after {
    right: 20px;
    width: 5px;
    border-width: 2px;
    height: 5px;
  }
  .sub-contact__agreement {
    margin-top: 0;
    padding-top: 22px;
  }
  .sub-contact__label.--privacy {
    padding-top: 2px;
  }
  .sub-contact__checkbox-label {
    gap: 8px;
  }
  .sub-contact__checkbox-label input[type=checkbox] {
    width: 20px;
    height: 20px;
  }
  .sub-contact__privacy-text {
    margin-top: 24px;
  }
  .sub-contact__privacy-note {
    margin-top: 24px;
  }
  .sub-contact__btn-wrap {
    margin-top: 56px;
  }
  .sub-privacy {
    padding: 120px 0;
  }
  .sub-privacy__lead {
    margin-bottom: 80px;
  }
  .sub-privacy__block {
    margin-bottom: 40px;
  }
  .sub-privacy__heading {
    font-size: 18px;
    padding-left: 8px;
    border-left: 3px solid var(--color-primary);
    margin-bottom: 12px;
  }
  .sub-privacy__list {
    margin: 16px 0 0;
    padding-left: 24px;
    gap: 12px;
  }
  .sub-privacy__list.--number li {
    padding-left: 36px;
  }
  .sub-privacy__list.--dash li {
    padding-left: 16px;
  }
  .sub-privacy__address {
    border-radius: 8px;
    margin-top: 24px;
    margin-bottom: 80px;
  }
  .sub-privacy__address-title {
    margin-bottom: 12px !important;
  }
  .sub-privacy__address-group {
    margin-top: 20px;
  }
  .sub-privacy__address-label {
    margin-bottom: 4px !important;
  }
  .sub-privacy__border {
    margin: 64px 0;
  }
  .sub-privacy__sub-lead {
    margin-bottom: 28px;
  }
  .sub-privacy__sub-heading {
    margin: 36px 0 12px;
  }
  .sub-privacy__note {
    margin-top: 32px;
  }
  .is-page-news .p-news {
    padding: 120px 0;
  }
  .is-page-news .p-news__pager {
    gap: 12px;
    margin-top: 60px;
  }
  .is-page-news .p-news__pager-btn {
    width: 45px;
    height: 45px;
    border: 1px solid var(--color-primary);
    font-size: 14px;
  }
  .p-news-detail {
    padding: 120px 0;
  }
  .p-news-detail__header {
    border-bottom: 1px solid #D6D6D6;
    padding-bottom: 30px;
    margin-bottom: 40px;
  }
  .p-news-detail__meta {
    gap: 20px;
    margin-bottom: 20px;
  }
  .p-news-detail__title {
    font-size: 36px;
  }
  .p-news-detail__body p {
    margin-bottom: 24px;
  }
  .p-news-detail__body img {
    margin: 30px 0;
  }
  .p-news-detail__footer {
    margin-top: 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    padding-top: 30px;
  }
  .sub-contact__error-msg {
    font-size: 13px;
    margin-top: 8px;
  }
  .sub-contact__data input.--error,
  .sub-contact__data textarea.--error,
  .sub-contact__data select.--error {
    border: 2px solid #ff3333;
  }
}
/* ==========================================================================
   共通・PC用スタイル（ベース）
   ========================================================================== */
.u-sp-only {
  display: none !important;
}

.u-pc-only {
  display: block !important;
}

.l-header__hamburger {
  display: none;
}

.l-header__contact-note {
  display: none;
}

/* ==========================================================================
   スマホ用スタイル（767px以下）
   ========================================================================== */
@media (max-width: 767px) {
  .u-sp-only {
    display: block !important;
  }
  .u-pc-only {
    display: none !important;
  }
  body {
    font-size: calc(15 * 100vw / 390);
    font-weight: 500;
  }
  body.under {
    line-height: 1.6666666667;
  }
  /* ==========================================================================
     Header Base & Layout
     ========================================================================== */
  .l-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(60 * 100vw / 390);
    background-color: #fff;
    z-index: 1000;
  }
  .l-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 calc(6 * 100vw / 390) 0 calc(12 * 100vw / 390);
    height: 100%;
    position: relative;
    background-color: #fff;
  }
  .l-header__logo {
    max-width: calc(180 * 100vw / 390);
  }
  .l-header__logo a img {
    width: 100%;
    height: auto;
  }
  /* ハンバーガーボタン */
  .l-header__hamburger {
    display: block;
    position: relative;
    width: calc(48 * 100vw / 390);
    height: calc(48 * 100vw / 390);
    border: calc(1 * 100vw / 390) solid var(--color-primary);
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
  }
  .l-header__hamburger span {
    display: block;
    position: absolute;
    left: calc(13 * 100vw / 390);
    width: calc(19 * 100vw / 390);
    height: calc(1 * 100vw / 390);
    background-color: var(--color-primary);
    transition: all 0.3s;
  }
  .l-header__hamburger span:nth-child(1) {
    top: calc(16 * 100vw / 390);
  }
  .l-header__hamburger span:nth-child(2) {
    top: calc(22 * 100vw / 390);
  }
  .l-header__hamburger span:nth-child(3) {
    top: calc(28 * 100vw / 390);
  }
  .l-header__hamburger.is-active span:nth-child(1) {
    transform: translateY(calc(6 * 100vw / 390)) rotate(-45deg);
  }
  .l-header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .l-header__hamburger.is-active span:nth-child(3) {
    transform: translateY(calc(-6 * 100vw / 390)) rotate(45deg);
  }
  /* 右から左へスライドインするドロワー本体 */
  .l-header__right {
    position: fixed;
    top: calc(60 * 100vw / 390);
    right: -100%;
    width: 100%;
    height: calc(100vh - 60 * 100vw / 390);
    background: linear-gradient(180deg, var(--color-primary) 0%, #6FB1DB 100%);
    padding: calc(60 * 100vw / 390) calc(20 * 100vw / 390) calc(150 * 100vw / 390);
    box-sizing: border-box;
    overflow-y: auto;
    z-index: -1;
    transition: right 0.4s ease;
    border-radius: 0 0 calc(110 * 100vw / 390) 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  .l-header__right.is-open {
    right: 0;
  }
  .l-header__nav {
    width: 100%;
    margin-bottom: calc(30 * 100vw / 390);
  }
  /* ==========================================================================
     Header Navigation (PC版の上書き)
     ========================================================================== */
  .l-header__menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0;
    /* -----------------------------------------
       子メニュー (sub-menu) SP用シンプルアコーディオン
       ----------------------------------------- */
  }
  .l-header__menu > li {
    width: 100%;
    position: static;
    padding: calc(20 * 100vw / 390) 0;
    /* アコーディオンの親要素 (サービスなど) */
  }
  .l-header__menu > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0;
    color: #ffffff;
    font-size: calc(18 * 100vw / 390);
    font-weight: bold;
    text-decoration: none;
  }
  .l-header__menu > li > a:hover {
    color: #ffffff;
  }
  .l-header__menu > li.has-child {
    position: static;
    /* PC版の矢印構造をスマホ用に上書き（右端に配置） */
  }
  .l-header__menu > li.has-child > a::after {
    content: "";
    display: block;
    width: calc(8 * 100vw / 390);
    height: calc(8 * 100vw / 390);
    margin-left: 0;
    border-right: calc(2 * 100vw / 390) solid #ffffff;
    border-bottom: calc(2 * 100vw / 390) solid #ffffff;
    transform: rotate(45deg);
    vertical-align: middle;
    transition: transform 0.3s ease;
  }
  .l-header__menu > li.has-child:hover > a::after {
    transform: rotate(45deg);
  }
  .l-header__menu > li.has-child:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .l-header__menu > li.has-child > a.is-active::after {
    transform: rotate(-135deg) translateY(calc(-2 * 100vw / 390));
  }
  .l-header__menu .sub-menu {
    position: static;
    transform: none;
    width: 100%;
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
    z-index: auto;
    opacity: 1;
    visibility: visible;
    transition: none;
    display: none;
    padding: calc(15 * 100vw / 390) 0 0 calc(15 * 100vw / 390);
  }
  .l-header__menu .sub-menu::before {
    display: none;
  }
  .l-header__menu .sub-menu li {
    margin-bottom: calc(12 * 100vw / 390);
  }
  .l-header__menu .sub-menu li:last-child {
    margin-bottom: 0;
  }
  .l-header__menu .sub-menu a {
    display: block;
    padding: calc(12 * 100vw / 390) 0;
    font-size: calc(18 * 100vw / 390);
    color: rgba(255, 255, 255, 0.85);
    font-weight: bold;
    text-align: left;
    background-color: transparent;
    transition: color 0.3s;
  }
  .l-header__menu .sub-menu a:hover {
    background-color: transparent;
    color: #ffffff;
  }
  /* ==========================================================================
     Contact Area (SP用配置調整)
     ========================================================================== */
  .l-header__contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: auto;
    z-index: 2;
  }
  .l-header__contact .c-btn-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: calc(350 * 100vw / 390);
    height: calc(50 * 100vw / 390);
    border-radius: calc(100 * 100vw / 390);
    padding: 0 calc(15 * 100vw / 390) 0 0;
    order: 1;
    margin-bottom: calc(56 * 100vw / 390);
    gap: 0;
  }
  .l-header__contact .c-btn-contact .c-btn-contact__text {
    font-size: calc(14 * 100vw / 390);
    text-align: center;
    width: 100%;
  }
  .l-header__contact .c-btn-contact .c-btn-contact__icon {
    width: calc(16 * 100vw / 390);
    height: calc(16 * 100vw / 390);
  }
  .l-header__contact .l-header__contact-note {
    display: block;
    color: #fff;
    font-size: calc(15 * 100vw / 390);
    font-weight: bold;
    text-align: center;
    line-height: 1.4;
    order: 2;
  }
  .l-header__contact .c-btn-tel {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: calc(40 * 100vw / 390);
    font-weight: 600;
    text-decoration: none;
    line-height: 1;
    order: 3;
    gap: calc(8 * 100vw / 390);
  }
  .l-header__contact .c-btn-tel span {
    display: none;
  }
  .l-header__contact .c-btn-tel::before {
    content: "";
    width: calc(30 * 100vw / 390);
    height: calc(30 * 100vw / 390);
    background: url(../images/icon_tel.svg) no-repeat center/contain;
  }
  .p-hero {
    background-image: url("../images/hero-bg_sp.jpg");
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    display: block;
    height: auto;
    max-height: none;
    margin-top: calc(60 * 100vw / 390);
    margin-bottom: calc(30 * 100vw / 390);
    width: 100%;
    border-radius: 0;
  }
  .p-hero__inner {
    margin: 0;
    width: 100%;
    padding: 0 calc(16 * 100vw / 390);
    transform: none;
  }
  .p-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    height: calc(400 * 100vw / 390);
  }
  .p-hero__title {
    margin-bottom: calc(15 * 100vw / 390);
    font-size: calc(40 * 100vw / 390);
    line-height: 1.3;
  }
  .p-hero__lead {
    max-width: calc(300 * 100vw / 390);
    margin-top: 0;
    font-size: calc(16 * 100vw / 390);
    line-height: 1.6875;
    font-weight: 900;
  }
  .p-scroll-animation-area {
    height: calc(280 * 100vw / 390);
  }
  #animated-car img {
    width: calc(72 * 100vw / 390);
    height: auto;
  }
  .c-section-header__sub {
    font-size: calc(13 * 100vw / 390);
    padding-left: calc(15 * 100vw / 390);
    margin-bottom: 0;
  }
  .c-section-header__sub:before {
    width: calc(12 * 100vw / 390);
    height: calc(12 * 100vw / 390);
    top: 50%;
    transform: translateY(-65%);
    margin-bottom: calc(2 * 100vw / 390);
  }
  .c-section-header__title {
    font-size: calc(32 * 100vw / 390);
    line-height: 1.1;
    min-width: inherit;
    margin-bottom: 0;
    width: 100%;
  }
  .c-section-header__title.--white .c-section-header__sub:before {
    top: 50%;
    transform: translateY(-50%);
  }
  .c-section-header__desc {
    width: 100%;
    padding: 0;
    font-size: calc(15 * 100vw / 390);
    line-height: 1.6666666667;
    font-weight: 500;
  }
  .p-services {
    margin-top: calc(-180 * 100vw / 390);
    margin-bottom: calc(56 * 100vw / 390);
    padding: 0;
  }
  .c-section-header {
    flex-direction: column;
    gap: calc(20 * 100vw / 390);
    margin-bottom: calc(28 * 100vw / 390);
  }
  .p-services__grid {
    grid-template-columns: 1fr;
    gap: calc(12 * 100vw / 390);
    display: grid;
  }
  .p-services__card {
    border-radius: calc(10 * 100vw / 390);
    width: 100%;
  }
  .p-services__card-img {
    padding-top: 31.4%;
  }
  .p-services__card-content {
    padding: calc(20 * 100vw / 390) 0;
  }
  .p-services__card-title {
    font-size: calc(20 * 100vw / 390);
    margin-bottom: calc(4 * 100vw / 390);
    line-height: 1.1;
  }
  .p-services__card-title.--dot {
    line-height: 1.1;
  }
  .p-services__card-title br {
    display: none;
  }
  .p-services__card-sub {
    font-size: calc(12 * 100vw / 390);
  }
  .p-marquee-bg {
    height: calc(48.6 * 100vw / 390);
    margin-bottom: calc(56 * 100vw / 390);
    animation: marqueeBgLoop 28s linear infinite;
  }
  .under .p-marquee-bg {
    margin-top: calc(40 * 100vw / 390);
    margin-bottom: calc(32.4 * 100vw / 390);
  }
  @keyframes marqueeBgLoop {
    0% {
      background-position: 0 center;
    }
    100% {
      background-position: calc(-1505 * 100vw / 390) center;
    }
  }
  .p-works {
    margin-bottom: calc(134 * 100vw / 390);
  }
  .p-works__slider {
    gap: calc(20 * 100vw / 390);
  }
  .p-works__card-images {
    border-radius: calc(10 * 100vw / 390);
  }
  .p-works__card-images > div {
    height: calc(175 * 100vw / 390);
  }
  .splide__pagination {
    gap: calc(8 * 100vw / 390);
    margin-top: calc(24 * 100vw / 390);
  }
  .splide__pagination__page {
    width: calc(8 * 100vw / 390);
    height: calc(8 * 100vw / 390);
  }
  .splide__arrows {
    width: calc(100 * 100vw / 390);
    margin-right: calc(20 * 100vw / 390);
  }
  .splide__arrow {
    background: url(../images/icon_arrow.svg) no-repeat center/calc(40 * 100vw / 390) calc(40 * 100vw / 390) !important;
    top: calc(40 * 100vw / 390);
    width: calc(40 * 100vw / 390);
    height: calc(40 * 100vw / 390);
  }
  .splide__arrow--prev {
    left: 0;
  }
  .splide__arrow--next {
    right: 0;
  }
  .c-badge-before,
  .c-badge-after,
  .c-badge-one {
    font-size: calc(14 * 100vw / 390);
    width: calc(64 * 100vw / 390);
    height: calc(21 * 100vw / 390);
  }
  .c-badge-before,
  .c-badge-one {
    border-radius: 0 0 calc(4 * 100vw / 390) 0;
  }
  .c-badge-after {
    border-radius: 0 0 0 calc(4 * 100vw / 390);
  }
  .c-badge-one {
    font-size: calc(13 * 100vw / 390);
    width: calc(90 * 100vw / 390);
  }
  .p-company {
    padding: 0 calc(20 * 100vw / 390);
    position: relative;
    overflow-x: clip;
    overflow-y: visible;
  }
  .p-company__bg-car {
    top: calc(-30 * 100vw / 390);
    right: calc(-40 * 100vw / 390);
    width: calc(172 * 100vw / 390);
    height: calc(84 * 100vw / 390);
  }
  .p-company__inner {
    margin: 0 0 calc(22 * 100vw / 390);
    display: block;
  }
  .p-company__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .p-company__visual {
    order: 2;
    margin: calc(36 * 100vw / 390) calc(-30 * 100vw / 390) 0 auto;
    z-index: 5;
  }
  .p-company__visual img {
    width: calc(210 * 100vw / 390);
    height: calc(210 * 100vw / 390);
  }
  .p-company__right {
    order: 1;
    max-width: 100%;
    width: 100%;
  }
  .p-company__headline {
    font-size: calc(24 * 100vw / 390);
    line-height: 1.5833333333;
    margin: 0 0 calc(12 * 100vw / 390);
  }
  .p-company__text {
    font-size: calc(15 * 100vw / 390);
    line-height: 1.6666666667;
    margin-bottom: calc(32 * 100vw / 390);
  }
  .c-btn-more {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: calc(350 * 100vw / 390);
    height: calc(50 * 100vw / 390);
    border-radius: calc(100 * 100vw / 390);
    padding: 0 calc(20 * 100vw / 390);
    position: relative;
  }
  .c-btn-more .c-btn-contact__text {
    font-size: calc(14 * 100vw / 390);
  }
  .c-btn-more .c-btn-contact__icon {
    position: absolute;
    right: calc(15 * 100vw / 390);
    top: 50%;
    transform: translateY(-50%);
    width: calc(16 * 100vw / 390);
    height: calc(16 * 100vw / 390);
  }
  .p-news {
    background-image: url(../images/bg_news_sp.png);
    background-size: 100% 101%;
    background-position: top center;
    padding: calc(110 * 100vw / 390) calc(20 * 100vw / 390) calc(60 * 100vw / 390);
    margin-top: calc(-110 * 100vw / 390);
  }
  .p-news__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .p-news__header {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .p-news__header .c-section-header__title {
    margin-bottom: calc(12 * 100vw / 390);
  }
  .c-btn-more.--white {
    order: 3;
    display: flex !important;
    text-align: center;
  }
  .c-btn-more.--white.pc {
    display: none !important;
  }
  .p-news__list {
    order: 2;
    width: 100%;
    flex: none;
    margin-bottom: calc(32 * 100vw / 390);
  }
  .p-news__item {
    border-bottom: 1px solid #D6D6D6;
  }
  .p-news__item-link {
    padding: calc(16 * 100vw / 390) calc(12 * 100vw / 390);
  }
  .p-news__item-link:hover {
    padding-left: 0;
    background-color: transparent;
  }
  .p-news__item-meta {
    gap: calc(12 * 100vw / 390);
    margin-bottom: calc(10 * 100vw / 390);
  }
  .c-badge-category {
    font-size: calc(13 * 100vw / 390);
    min-width: calc(100 * 100vw / 390);
    padding: 0;
    height: calc(26 * 100vw / 390);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: calc(100 * 100vw / 390);
  }
  .p-news__date {
    font-size: calc(14 * 100vw / 390);
    font-weight: 500;
  }
  .p-news__title {
    font-size: calc(15 * 100vw / 390);
    line-height: 1.7333333333;
    font-weight: 500;
  }
  .p-recruitment {
    padding: 0;
    background: url(../images/bg_recruit_sp.jpg) no-repeat center/cover;
    height: calc(350 * 100vw / 390);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .p-recruitment .c-btn-more {
    width: calc(350 * 100vw / 390);
  }
  .p-recruitment__title {
    font-size: calc(20 * 100vw / 390);
    line-height: 1.6;
    margin-bottom: calc(30 * 100vw / 390);
  }
  .p-contact {
    padding: calc(40 * 100vw / 390) calc(4 * 100vw / 390) calc(64 * 100vw / 390);
  }
  .p-contact__inner {
    padding: calc(40 * 100vw / 390) calc(16 * 100vw / 390) calc(92 * 100vw / 390);
    border-radius: calc(10 * 100vw / 390);
    max-width: 100%;
    width: 100%;
  }
  .p-contact__text {
    font-size: calc(16 * 100vw / 390);
    line-height: 1.8125;
    margin: calc(20 * 100vw / 390) auto calc(20 * 100vw / 390);
  }
  .p-contact__tel-wrap {
    flex-direction: column;
    gap: calc(10 * 100vw / 390);
    padding: calc(18 * 100vw / 390) 0;
    margin-bottom: calc(40 * 100vw / 390);
    border-top: calc(2 * 100vw / 390) solid #fff;
    border-bottom: calc(2 * 100vw / 390) solid #fff;
  }
  .p-contact__tel-label {
    font-size: calc(15 * 100vw / 390);
    line-height: 1.4666666667;
    text-align: center;
  }
  .p-contact__tel-number-box {
    display: flex;
    justify-content: center;
    align-items: baseline;
  }
  .p-contact__tel-prefix {
    font-size: calc(18 * 100vw / 390);
    margin-right: calc(3 * 100vw / 390);
  }
  .p-contact__tel-number {
    font-size: calc(32 * 100vw / 390);
  }
  .p-contact__action {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .p-marquee-bg-contact {
    height: calc(35 * 100vw / 390);
    background-size: auto calc(35 * 100vw / 390);
    animation: marqueeCarsSp 4s linear infinite;
    margin-bottom: calc(22 * 100vw / 390);
  }
  @keyframes marqueeCarsSp {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-87.15 * 100vw / 390));
    }
  }
  .l-footer {
    background-size: calc(50 * 100vw / 390) 100%;
    padding: calc(40 * 100vw / 390) calc(45 * 100vw / 390) calc(30 * 100vw / 390);
  }
  .l-footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 0;
    width: 100%;
  }
  .l-footer__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    order: 1;
  }
  .l-footer__logo {
    margin-bottom: calc(40 * 100vw / 390);
  }
  .l-footer__logo img {
    width: calc(124 * 100vw / 390);
    height: auto;
  }
  .l-footer__address {
    order: 3;
    font-size: calc(14 * 100vw / 390);
    line-height: 1.6428571429;
    text-align: left;
    display: inline-block;
    margin-top: calc(50 * 100vw / 390);
  }
  .l-footer__nav {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .l-footer__links {
    grid-template-columns: repeat(2, minmax(calc(155 * 100vw / 390), auto));
    gap: calc(32 * 100vw / 390) 0;
    text-align: center;
  }
  .l-footer__links li {
    text-align: center;
  }
  .l-footer__links a {
    font-size: calc(16 * 100vw / 390);
  }
  .l-footer__bottom-inner {
    max-width: 100%;
    width: 100%;
    transform: none;
    margin-top: calc(24 * 100vw / 390);
    padding: calc(14 * 100vw / 390) 0 0;
    border-top: calc(2 * 100vw / 390) solid #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .l-footer__privacy a {
    font-size: calc(12 * 100vw / 390);
  }
  .l-footer__copyright {
    font-size: calc(12 * 100vw / 390);
  }
  .under .l-main {
    padding-top: calc(60 * 100vw / 390);
  }
  .under .p-eye-catch {
    border-radius: 0 0 calc(30 * 100vw / 390) calc(30 * 100vw / 390);
  }
  .under .p-eye-catch .p-eye-catch__inner .p-eye-catch__visual img {
    height: calc(400 * 100vw / 390);
  }
  .under .p-eye-catch .p-eye-catch__inner .p-eye-catch__content {
    left: calc(20 * 100vw / 390);
  }
  .under .p-eye-catch .p-eye-catch__inner .p-eye-catch__content .p-eye-catch__title {
    font-size: calc(14 * 100vw / 390);
  }
  .under .p-eye-catch .p-eye-catch__inner .p-eye-catch__content .p-eye-catch__title div {
    font-size: calc(40 * 100vw / 390);
    margin-bottom: calc(10 * 100vw / 390);
  }
  .sub-intro {
    padding: calc(48 * 100vw / 390) 0 0;
  }
  .sub-intro__inner {
    display: block;
  }
  .sub-intro__content {
    max-width: 100%;
    padding-top: 0;
    margin-bottom: calc(28 * 100vw / 390);
  }
  .sub-intro__heading {
    font-size: calc(24 * 100vw / 390);
    margin-bottom: calc(12 * 100vw / 390);
    line-height: 1.5833333333;
  }
  .sub-intro__text + .sub-intro__text {
    margin-top: calc(16 * 100vw / 390);
  }
  .sub-intro__image-wrap {
    max-width: 100%;
  }
  .sub-intro__image {
    border-radius: calc(10 * 100vw / 390);
    height: calc(160 * 100vw / 390);
  }
  .sub-points {
    padding: calc(48 * 100vw / 390) 0;
  }
  .sub-section__header {
    margin-bottom: calc(24 * 100vw / 390);
  }
  .sub-section__subtitle {
    font-size: calc(13 * 100vw / 390);
    margin-bottom: 0;
  }
  .sub-section__title {
    font-size: calc(32 * 100vw / 390);
  }
  .sub-points__list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: calc(12 * 100vw / 390);
  }
  .sub-points__item {
    border-radius: calc(10 * 100vw / 390);
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    min-height: auto;
    text-align: left;
    min-height: calc(88 * 100vw / 390);
  }
  .sub-points__icon {
    width: calc(110 * 100vw / 390);
    height: calc(40 * 100vw / 390);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 0;
  }
  .sub-points__icon img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
  }
  .sub-points__item-title,
  .sub-points__item-text,
  .sub-points__item-note {
    font-size: calc(18 * 100vw / 390);
    margin-top: 0;
  }
  .sub-points__item-title span,
  .sub-points__item-title small,
  .sub-points__item-text span,
  .sub-points__item-text small,
  .sub-points__item-note span,
  .sub-points__item-note small {
    font-size: calc(14 * 100vw / 390);
    margin-top: calc(4 * 100vw / 390);
  }
  .sub-points__item-title {
    font-size: calc(20 * 100vw / 390);
  }
  .sub-flow {
    padding: calc(48 * 100vw / 390) 0;
  }
  .sub-section__header.--flex {
    display: block;
  }
  .sub-section__header.--flex .--left {
    margin-bottom: calc(16 * 100vw / 390);
  }
  .sub-section__header.--flex .--lead {
    padding-bottom: 0;
    margin-bottom: calc(20 * 100vw / 390);
  }
  .sub-flow__list {
    display: flex;
    flex-direction: column;
    gap: calc(28 * 100vw / 390);
    max-width: 100%;
  }
  .sub-flow__item {
    border-radius: calc(10 * 100vw / 390);
    padding: calc(20 * 100vw / 390);
    display: block;
    box-shadow: 0 calc(3 * 100vw / 390) calc(10 * 100vw / 390) rgba(104, 154, 186, 0.2);
  }
  .sub-flow__item:not(:last-child)::after {
    bottom: calc(-23 * 100vw / 390);
    width: calc(30 * 100vw / 390);
    height: calc(16 * 100vw / 390);
  }
  .sub-flow__item-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: calc(12 * 100vw / 390);
    padding-bottom: calc(12 * 100vw / 390);
  }
  .sub-flow__item-left::after {
    right: 0;
    top: auto;
    bottom: 0;
    transform: none;
    width: 100%;
    height: calc(1 * 100vw / 390);
  }
  .sub-flow__step {
    display: block;
  }
  .sub-flow__icon {
    width: calc(64 * 100vw / 390);
    height: calc(64 * 100vw / 390);
    order: -1;
    margin-right: calc(20 * 100vw / 390);
    flex-shrink: 0;
  }
  .sub-flow__step-num,
  .sub-flow__step-title {
    display: block;
    width: auto;
    margin: 0;
  }
  .sub-flow__step-num {
    font-size: calc(15 * 100vw / 390);
    margin-bottom: calc(-3 * 100vw / 390);
  }
  .sub-flow__step-title {
    font-size: calc(20 * 100vw / 390);
  }
  .sub-flow__item-right {
    padding-left: 0;
  }
  .sub-store {
    padding: calc(48 * 100vw / 390) 0;
  }
  .sub-store .sub-section__inner {
    max-width: calc(382 * 100vw / 390);
  }
  .sub-store .sub-section__inner .sub-section__header {
    padding: 0 calc(21 * 100vw / 390);
  }
  .is-page-body_paint .sub-store {
    padding: 0 0 calc(48 * 100vw / 390);
  }
  .sub-store__cards {
    flex-direction: column;
    gap: calc(12 * 100vw / 390);
    align-items: center;
  }
  .sub-store__card {
    width: 100%;
    max-width: 100%;
    border-radius: calc(10 * 100vw / 390);
    padding: calc(32 * 100vw / 390) calc(20 * 100vw / 390);
  }
  .sub-store__card-title {
    font-size: calc(20 * 100vw / 390);
    margin-bottom: calc(20 * 100vw / 390);
  }
  .sub-store__card-img {
    margin-bottom: 0;
  }
  .sub-store__card-img img {
    border-radius: calc(6 * 100vw / 390);
  }
  .sub-store__info {
    margin: 0 0 calc(32 * 100vw / 390);
  }
  .sub-store__info-row {
    padding: calc(16 * 100vw / 390) 0;
    border-bottom: calc(1 * 100vw / 390) solid #D6D6D6;
  }
  .sub-store__info-row dt {
    width: calc(89 * 100vw / 390);
    font-size: calc(15 * 100vw / 390);
  }
  .sub-store__btn-wrap {
    width: 100%;
  }
  .sub-store__btn {
    max-width: 100%;
    font-size: calc(14 * 100vw / 390);
    padding: calc(12 * 100vw / 390) 0;
    border-radius: calc(100 * 100vw / 390);
  }
  .sub-store__btn span {
    font-size: calc(12 * 100vw / 390);
  }
  .sub-store__btn::after {
    right: calc(16 * 100vw / 390);
    width: calc(14 * 100vw / 390);
    height: calc(14 * 100vw / 390);
  }
  .is-page-rental .sub-store__btn {
    max-width: 100%;
  }
  .sub-store__footer-text {
    max-width: 100%;
    padding: 0 calc(21 * 100vw / 390);
  }
  .sub-store__footer-text p {
    font-size: calc(18 * 100vw / 390);
  }
  .sub-common-area {
    display: block;
    max-width: calc(382 * 100vw / 390);
    margin: 0 auto calc(64 * 100vw / 390);
  }
  .sub-common-area .p-recruitment {
    width: 100%;
    border-radius: calc(10 * 100vw / 390);
    margin-bottom: calc(12 * 100vw / 390);
    height: calc(250 * 100vw / 390);
  }
  .sub-common-area .p-contact {
    width: 100%;
  }
  .sub-common-area .p-contact .p-contact__inner {
    padding: calc(40 * 100vw / 390) 0 calc(92 * 100vw / 390);
  }
  .sub-common-area .p-contact .p-contact__inner .p-contact__container {
    max-width: calc(350 * 100vw / 390);
  }
  .sub-services {
    padding: calc(48 * 100vw / 390) 0;
  }
  .sub-services .sub-section__header {
    margin-bottom: calc(12 * 100vw / 390);
  }
  .sub-services__grid {
    display: flex;
    flex-direction: column;
    gap: calc(12 * 100vw / 390);
  }
  .sub-services__item {
    border-radius: calc(10 * 100vw / 390);
  }
  .sub-services__text {
    padding: calc(8 * 100vw / 390) calc(16 * 100vw / 390);
  }
  .sub-services__item-title {
    font-size: calc(18 * 100vw / 390);
  }
  .sub-services__note {
    margin-top: calc(20 * 100vw / 390);
  }
  .sub-promise {
    background: linear-gradient(rgba(0, 28, 46, 0.4), rgba(0, 28, 46, 0.4)), url("../images/bg_maintenance_promise.jpg") no-repeat top center/100% calc(260 * 100vw / 390);
    padding: calc(48 * 100vw / 390) 0 0;
  }
  .sub-promise.--body_paint {
    background: linear-gradient(rgba(0, 28, 46, 0.4), rgba(0, 28, 46, 0.4)), url("../images/bg_body_paint_promise.jpg") no-repeat top center/100% calc(260 * 100vw / 390);
  }
  .sub-promise.--sales {
    background: linear-gradient(rgba(0, 28, 46, 0.4), rgba(0, 28, 46, 0.4)), url("../images/bg_sales_promise.jpg") no-repeat top center/100% calc(260 * 100vw / 390);
  }
  .sub-promise .sub-section__inner {
    max-width: 100%;
  }
  .sub-promise .sub-section__header {
    height: calc(162 * 100vw / 390);
    padding-left: calc(20 * 100vw / 390);
  }
  .sub-promise__box {
    border-radius: 0;
    max-width: 100%;
    min-height: calc(400 * 100vw / 390);
    margin: 0;
    padding: calc(48 * 100vw / 390) 0 0 calc(20 * 100vw / 390);
  }
  .sub-promise__box::after {
    right: calc(-4 * 100vw / 390);
    bottom: calc(20 * 100vw / 390);
    width: calc(160 * 100vw / 390);
    height: calc(78 * 100vw / 390);
  }
  .sub-promise__box-title {
    font-size: calc(20 * 100vw / 390);
    margin-bottom: calc(20 * 100vw / 390);
  }
  .sub-promise__list {
    gap: calc(8 * 100vw / 390);
  }
  .sub-promise__item {
    font-size: calc(16 * 100vw / 390);
  }
  .sub-promise__item-num {
    margin-right: calc(8 * 100vw / 390);
    font-size: calc(18 * 100vw / 390);
  }
  .sub-procedure {
    padding: calc(48 * 100vw / 390) 0;
  }
  .sub-procedure__inner {
    display: flex;
    flex-direction: column-reverse;
    gap: calc(24 * 100vw / 390);
  }
  .sub-procedure__image-wrap {
    width: 100%;
    max-width: 100%;
  }
  .sub-procedure__image {
    width: 100%;
    height: calc(160 * 100vw / 390);
    border-radius: calc(10 * 100vw / 390);
  }
  .is-page-sales .sub-procedure__image {
    -o-object-position: left calc(-130 * 100vw / 390);
       object-position: left calc(-130 * 100vw / 390);
  }
  .is-page-maintenance .sub-procedure__image {
    -o-object-position: left calc(-10 * 100vw / 390);
       object-position: left calc(-10 * 100vw / 390);
  }
  .sub-procedure__content {
    width: 100%;
    max-width: 100%;
  }
  .sub-procedure__heading {
    font-size: calc(24 * 100vw / 390);
    margin-bottom: calc(16 * 100vw / 390);
  }
  .sub-procedure__text-wrap {
    gap: calc(20 * 100vw / 390);
  }
  .sub-works.p-works {
    padding: calc(48 * 100vw / 390) 0 calc(96 * 100vw / 390);
  }
  .is-page-sales .sub-intro__image {
    -o-object-position: center calc(-40 * 100vw / 390);
       object-position: center calc(-40 * 100vw / 390);
  }
  .sub-flat-about {
    padding: calc(48 * 100vw / 390) 0 0;
  }
  .sub-flat-about__inner {
    max-width: calc(382 * 100vw / 390);
  }
  .sub-flat-about__box {
    border-radius: calc(10 * 100vw / 390);
    padding: calc(48 * 100vw / 390) 0;
  }
  .sub-flat-about__subtitle {
    font-size: calc(13 * 100vw / 390);
    margin-bottom: calc(-10 * 100vw / 390);
  }
  .sub-flat-about__title {
    font-size: calc(32 * 100vw / 390);
    margin-bottom: calc(18 * 100vw / 390);
  }
  .sub-flat-about__text {
    font-size: calc(18 * 100vw / 390);
    margin-bottom: calc(24 * 100vw / 390);
  }
  .sub-flat-about__logo {
    max-width: calc(197 * 100vw / 390);
  }
  .is-page-inspection .sub-flat-about__logo,
  .is-page-rental .sub-flat-about__logo {
    max-width: calc(320 * 100vw / 390);
  }
  .is-page-insurance .sub-intro__image {
    -o-object-position: center calc(-40 * 100vw / 390);
       object-position: center calc(-40 * 100vw / 390);
  }
  .is-page-insurance .sub-points {
    margin-bottom: calc(48 * 100vw / 390);
  }
  .is-page-rental .sub-intro__image {
    -o-object-position: center calc(-40 * 100vw / 390);
       object-position: center calc(-40 * 100vw / 390);
  }
  .sub-message {
    padding: calc(48 * 100vw / 390) 0 calc(96 * 100vw / 390);
  }
  .sub-message__name {
    font-size: calc(20 * 100vw / 390);
  }
  .sub-profile__table {
    border-top: calc(1 * 100vw / 390) solid #D6D6D6;
    margin: calc(20 * 100vw / 390) auto 0;
  }
  .sub-profile__row {
    display: block;
    border-bottom: calc(1 * 100vw / 390) solid #D6D6D6;
  }
  .sub-profile__row:last-child dt {
    border-bottom: none;
  }
  .sub-profile__row:last-child dt:after {
    display: none;
  }
  .sub-profile__row:last-child dd {
    position: relative;
  }
  .sub-profile__row:last-child dd:after {
    content: "";
    position: absolute;
    display: inline-block;
    width: calc(80 * 100vw / 390);
    height: 0;
    border-bottom: calc(1 * 100vw / 390) solid var(--color-primary);
    left: 0;
    bottom: calc(-1 * 100vw / 390);
  }
  .sub-profile__label {
    padding: calc(22 * 100vw / 390) 0 calc(10 * 100vw / 390);
    width: calc(150 * 100vw / 390);
  }
  .sub-profile__label:before {
    top: calc(-1 * 100vw / 390);
    border-top: calc(1 * 100vw / 390) solid var(--color-primary);
    width: calc(80 * 100vw / 390);
  }
  .sub-profile__data {
    padding: 0 0 calc(22 * 100vw / 390);
    padding-left: 0;
  }
  .sub-profile__map-link {
    gap: calc(4 * 100vw / 390);
    margin: calc(10 * 100vw / 390) 0;
  }
  .sub-profile__map-link .sub-profile__map-icon img {
    vertical-align: calc(-6 * 100vw / 390);
    width: calc(18 * 100vw / 390);
    height: calc(24 * 100vw / 390);
  }
  .sub-history {
    padding: calc(96 * 100vw / 390) 0 calc(48 * 100vw / 390);
  }
  .sub-history__timeline {
    max-width: 100%;
    position: relative;
    padding-left: calc(4 * 100vw / 390);
  }
  .sub-history__row {
    display: flex;
    align-items: flex-start;
    position: relative;
    margin-left: calc(28 * 100vw / 390);
    border-bottom: calc(1 * 100vw / 390) solid #D6D6D6;
  }
  .sub-history__row.noline {
    border-bottom: none;
  }
  .sub-history__row.noline dd {
    padding-bottom: 0;
  }
  .sub-history__year {
    width: calc(70 * 100vw / 390);
    font-size: calc(20 * 100vw / 390);
    height: auto;
    min-height: calc(56 * 100vw / 390);
    padding-left: 0;
  }
  .sub-history__year::before {
    content: "";
    position: absolute;
    top: calc(27 * 100vw / 390);
    left: calc(-28 * 100vw / 390);
    width: calc(16 * 100vw / 390);
    height: calc(16 * 100vw / 390);
  }
  .sub-history__year::after {
    top: calc(20 * 100vw / 390);
    bottom: 0;
    left: calc(-23.5 * 100vw / 390);
    width: calc(4 * 100vw / 390);
    height: 120%;
  }
  .sub-history__content {
    width: auto;
    height: auto;
    min-height: calc(56 * 100vw / 390);
    font-size: calc(14 * 100vw / 390);
    line-height: 1.66666;
    padding: calc(12 * 100vw / 390) 0 calc(12 * 100vw / 390) calc(8 * 100vw / 390);
    border-bottom: none;
  }
  .sub-recruit {
    padding: calc(48 * 100vw / 390) 0 0;
  }
  .sub-recruit .sub-section__inner {
    max-width: calc(382 * 100vw / 390);
  }
  .sub-recruit__title {
    font-size: calc(24 * 100vw / 390);
    text-align: left;
    margin-bottom: calc(20 * 100vw / 390);
    padding-left: calc(16 * 100vw / 390);
  }
  .sub-recruit__box {
    border-radius: calc(10 * 100vw / 390);
    padding: calc(48 * 100vw / 390) calc(16 * 100vw / 390);
    max-width: 100%;
    margin: 0;
  }
  .sub-recruit__table {
    width: 100%;
  }
  .sub-recruit__row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: calc(22 * 100vw / 390) 0;
  }
  .sub-recruit__row:first-child {
    padding-top: 0;
  }
  .sub-recruit__label {
    width: 100%;
    margin-bottom: calc(10 * 100vw / 390);
  }
  .sub-recruit__data {
    width: 100%;
    padding-left: 0;
  }
  .sub-recruit__btn-wrap {
    margin-top: calc(32 * 100vw / 390);
  }
  .p-insta {
    padding: calc(48 * 100vw / 390) 0 0;
  }
  .p-insta__box {
    display: block;
    border-width: calc(2 * 100vw / 390);
    border-radius: calc(16 * 100vw / 390);
    padding: calc(20 * 100vw / 390) calc(14 * 100vw / 390) 0;
  }
  .p-insta__brand {
    width: auto;
  }
  .p-insta__catch {
    gap: calc(10 * 100vw / 390);
    font-size: calc(15 * 100vw / 390);
  }
  .p-insta__catch::before, .p-insta__catch::after {
    width: calc(2 * 100vw / 390);
    height: calc(18 * 100vw / 390);
    border-radius: calc(2 * 100vw / 390);
  }
  .p-insta__logo {
    gap: calc(12 * 100vw / 390);
    margin-top: calc(12 * 100vw / 390);
  }
  .p-insta__logo-mark {
    width: calc(56 * 100vw / 390);
    height: calc(56 * 100vw / 390);
  }
  .p-insta__logo-text {
    font-size: calc(37 * 100vw / 390);
  }
  .p-insta__info {
    border-left: none;
    padding-left: 0;
    margin-top: calc(24 * 100vw / 390);
    text-align: center;
  }
  .p-insta__text {
    font-size: calc(14 * 100vw / 390);
    line-height: 1.7;
  }
  .p-insta__account {
    gap: calc(14 * 100vw / 390);
    margin-top: calc(14 * 100vw / 390);
    padding: calc(11 * 100vw / 390) calc(14 * 100vw / 390);
    border-width: calc(2 * 100vw / 390);
  }
  .p-insta__account-name {
    font-size: calc(18 * 100vw / 390);
  }
  .p-insta__account-icon {
    width: calc(19 * 100vw / 390);
    height: calc(19 * 100vw / 390);
  }
  .p-insta__qr {
    flex-direction: column;
    align-items: center;
    gap: calc(10 * 100vw / 390);
    margin-top: calc(16 * 100vw / 390);
  }
  .p-insta__qr-img {
    width: calc(170 * 100vw / 390);
    border-width: calc(1 * 100vw / 390);
    border-radius: calc(8 * 100vw / 390);
    padding: calc(4 * 100vw / 390);
  }
  .p-insta__qr-note {
    font-size: calc(12 * 100vw / 390);
  }
  .p-insta__url {
    margin-top: calc(2 * 100vw / 390);
    font-size: calc(12 * 100vw / 390);
  }
  .p-insta__visual {
    width: auto;
    height: calc(256 * 100vw / 390);
    margin: calc(12 * 100vw / 390) 0 0;
  }
  .p-insta__deco {
    top: calc(4 * 100vw / 390);
    left: auto;
    right: calc(10 * 100vw / 390);
    width: calc(44 * 100vw / 390);
  }
  .p-insta__photo {
    padding: calc(6 * 100vw / 390);
    box-shadow: 0 calc(3 * 100vw / 390) calc(9 * 100vw / 390) rgba(0, 0, 0, 0.16);
  }
  .p-insta__photo--01 {
    top: calc(10 * 100vw / 390);
    left: calc(5 * 100vw / 390);
    width: calc(160 * 100vw / 390);
  }
  .p-insta__photo--02 {
    top: calc(25 * 100vw / 390);
    left: auto;
    right: calc(8 * 100vw / 390);
    width: calc(165 * 100vw / 390);
    transform: rotate(11deg);
  }
  .p-insta__photo--02 img {
    aspect-ratio: 424/381;
  }
  .p-insta__follow {
    right: auto;
    left: calc(88 * 100vw / 390);
    bottom: calc(-2 * 100vw / 390);
    width: calc(215 * 100vw / 390);
  }
  .c-breadcrumb {
    padding: calc(12 * 100vw / 390) 0 0;
  }
  .c-breadcrumb__list {
    font-size: calc(11 * 100vw / 390);
  }
  .c-breadcrumb__item:not(:last-child)::after {
    width: calc(5 * 100vw / 390);
    height: calc(5 * 100vw / 390);
    margin: 0 calc(7 * 100vw / 390);
    border-top-width: calc(1 * 100vw / 390);
    border-right-width: calc(1 * 100vw / 390);
  }
  .is-page-contact .p-eye-catch__inner:before, .is-page-contact .p-eye-catch__inner:after,
  .is-page-policy .p-eye-catch__inner:before,
  .is-page-policy .p-eye-catch__inner:after,
  .is-page-news .p-eye-catch__inner:before,
  .is-page-news .p-eye-catch__inner:after,
  .is-page-news_detail .p-eye-catch__inner:before,
  .is-page-news_detail .p-eye-catch__inner:after {
    display: none;
  }
  .is-page-contact .p-eye-catch .p-eye-catch__inner .p-eye-catch__visual img,
  .is-page-policy .p-eye-catch .p-eye-catch__inner .p-eye-catch__visual img,
  .is-page-news .p-eye-catch .p-eye-catch__inner .p-eye-catch__visual img,
  .is-page-news_detail .p-eye-catch .p-eye-catch__inner .p-eye-catch__visual img {
    height: calc(240 * 100vw / 390);
  }
  .sub-contact {
    padding: calc(65 * 100vw / 390) 0 calc(44 * 100vw / 390);
  }
  .sub-contact__lead-wrap {
    margin-bottom: calc(20 * 100vw / 390);
  }
  .sub-contact__table {
    width: 100%;
  }
  .sub-contact__row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0 calc(20 * 100vw / 390);
  }
  .sub-contact__row.--align-top .sub-contact__label {
    padding-top: 0;
  }
  .sub-contact__label {
    width: 100%;
    font-size: calc(18 * 100vw / 390);
    gap: calc(10 * 100vw / 390);
    margin-bottom: calc(10 * 100vw / 390);
  }
  .sub-contact__label.--privacy {
    padding-top: 0;
    margin-bottom: calc(12 * 100vw / 390);
  }
  .sub-contact__badge {
    font-size: calc(13 * 100vw / 390);
    padding: calc(1 * 100vw / 390) calc(8 * 100vw / 390);
    border-radius: calc(20 * 100vw / 390);
  }
  .sub-contact__data {
    width: 100%;
    margin: 0;
  }
  .sub-contact__data.--privacy {
    width: 100%;
  }
  .sub-contact__form input[type=text],
  .sub-contact__form input[type=tel],
  .sub-contact__form input[type=email],
  .sub-contact__form select,
  .sub-contact__form textarea {
    font-size: calc(16 * 100vw / 390);
    border: calc(1 * 100vw / 390) solid #D6D6D6;
    border-radius: calc(5 * 100vw / 390);
    padding: calc(16 * 100vw / 390);
  }
  .sub-contact__form input[type=text]:focus,
  .sub-contact__form input[type=tel]:focus,
  .sub-contact__form input[type=email]:focus,
  .sub-contact__form select:focus,
  .sub-contact__form textarea:focus {
    box-shadow: 0 0 0 calc(3 * 100vw / 390) rgba(0, 108, 183, 0.08);
  }
  .sub-contact__form input[type=text],
  .sub-contact__form input[type=tel],
  .sub-contact__form input[type=email],
  .sub-contact__form select {
    height: calc(56 * 100vw / 390);
  }
  .sub-contact__form textarea {
    height: calc(240 * 100vw / 390);
    padding: calc(16 * 100vw / 390);
    line-height: 1.6666;
  }
  .sub-contact__select-wrap {
    width: 100%;
  }
  .sub-contact__select-wrap select {
    padding-right: calc(40 * 100vw / 390);
  }
  .sub-contact__select-wrap::after {
    right: calc(16 * 100vw / 390);
    width: calc(6 * 100vw / 390);
    height: calc(6 * 100vw / 390);
    border-right: calc(1.5 * 100vw / 390) solid #000;
    border-bottom: calc(1.5 * 100vw / 390) solid #000;
  }
  .sub-contact__agreement {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }
  .sub-contact__privacy-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .sub-contact__checkbox-label {
    gap: calc(8 * 100vw / 390);
    font-size: calc(16 * 100vw / 390);
  }
  .sub-contact__checkbox-label input[type=checkbox] {
    width: calc(18 * 100vw / 390);
    height: calc(18 * 100vw / 390);
  }
  .sub-contact__privacy-text {
    margin-top: calc(7 * 100vw / 390);
    font-size: calc(15 * 100vw / 390);
  }
  .sub-contact__btn-wrap {
    margin-top: calc(28 * 100vw / 390);
    width: 100%;
  }
  .sub-privacy {
    padding: calc(52 * 100vw / 390) 0 calc(64 * 100vw / 390);
  }
  .sub-privacy__lead {
    margin-bottom: calc(80 * 100vw / 390);
  }
  .sub-privacy__block {
    margin-bottom: calc(40 * 100vw / 390);
  }
  .sub-privacy__block:last-of-type {
    margin-bottom: 0;
  }
  .sub-privacy__heading {
    font-size: calc(16 * 100vw / 390);
    padding-left: calc(8 * 100vw / 390);
    border-left: calc(3 * 100vw / 390) solid var(--color-primary);
    margin-bottom: calc(12 * 100vw / 390);
  }
  .sub-privacy__list {
    margin: calc(12 * 100vw / 390) 0 0;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: calc(10 * 100vw / 390);
    font-size: calc(14 * 100vw / 390);
    line-height: 1.6;
  }
  .sub-privacy__list li {
    color: #333333;
  }
  .sub-privacy__list li a {
    color: inherit;
    text-decoration: underline;
    word-break: break-all;
  }
  .sub-privacy__list.--bullet li {
    margin-bottom: calc(4 * 100vw / 390);
  }
  .sub-privacy__list.--bullet li:last-child {
    margin-bottom: 0;
  }
  .sub-privacy__list.--number li {
    position: relative;
    padding-left: calc(32 * 100vw / 390);
  }
  .sub-privacy__list.--number li::before {
    top: 0;
    left: 0;
    font-size: calc(14 * 100vw / 390);
    line-height: 1.6;
  }
  .sub-privacy__list.--dash li {
    position: relative;
    padding-left: calc(16 * 100vw / 390);
  }
  .sub-privacy__list.--dash li::before {
    font-size: calc(14 * 100vw / 390);
    left: 0;
    top: 0;
    line-height: 1.6;
  }
  .sub-privacy__address {
    margin-top: calc(16 * 100vw / 390);
    margin-bottom: calc(48 * 100vw / 390);
  }
  .sub-privacy__address-title {
    margin-bottom: calc(8 * 100vw / 390) !important;
  }
  .sub-privacy__address-group {
    margin-top: calc(16 * 100vw / 390);
  }
  .sub-privacy__address-label {
    margin-bottom: calc(4 * 100vw / 390) !important;
  }
  .sub-privacy__sub-lead {
    font-size: calc(16 * 100vw / 390);
    margin-bottom: calc(20 * 100vw / 390);
  }
  .sub-privacy__sub-heading {
    margin: calc(24 * 100vw / 390) 0 calc(8 * 100vw / 390);
  }
  .sub-privacy__note {
    margin-top: calc(24 * 100vw / 390);
  }
  .is-page-news .p-news {
    padding: calc(48 * 100vw / 390) 0;
    margin-top: 0;
  }
  .is-page-news .p-news__pager {
    gap: calc(12 * 100vw / 390);
    margin-top: 0;
  }
  .is-page-news .p-news__pager-btn {
    width: calc(45 * 100vw / 390);
    height: calc(45 * 100vw / 390);
    border: calc(1 * 100vw / 390) solid var(--color-primary);
    font-size: calc(14 * 100vw / 390);
  }
  .p-news-detail {
    padding: calc(48 * 100vw / 390) 0;
  }
  .p-news-detail__header {
    border-bottom: calc(1 * 100vw / 390) solid #D6D6D6;
    padding-bottom: calc(20 * 100vw / 390);
    margin-bottom: calc(20 * 100vw / 390);
  }
  .p-news-detail__meta {
    gap: calc(20 * 100vw / 390);
    margin-bottom: calc(20 * 100vw / 390);
  }
  .p-news-detail__title {
    font-size: calc(24 * 100vw / 390);
  }
  .p-news-detail__body p {
    margin-bottom: calc(20 * 100vw / 390);
  }
  .p-news-detail__body img {
    margin: calc(20 * 100vw / 390) 0;
  }
  .p-news-detail__footer {
    margin-top: calc(24 * 100vw / 390);
    border-top: calc(1 * 100vw / 390) solid rgba(0, 0, 0, 0.2);
    padding-top: calc(30 * 100vw / 390);
  }
  .sub-contact__error-msg {
    font-size: calc(13 * 100vw / 390);
    margin-top: calc(8 * 100vw / 390);
  }
  .sub-contact__data input.--error,
  .sub-contact__data textarea.--error,
  .sub-contact__data select.--error {
    border: calc(2 * 100vw / 390) solid #ff3333;
  }
}
.sp-fixed-footer {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp-fixed-footer {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(48 * 100vw / 390);
    z-index: 9999;
    box-shadow: 0 calc(-2 * 100vw / 390) calc(10 * 100vw / 390) rgba(0, 0, 0, 0.1);
    padding-bottom: env(safe-area-inset-bottom);
    box-sizing: content-box;
  }
  .sp-fixed-footer a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: calc(14 * 100vw / 390);
    font-weight: bold;
    color: #ffffff;
    transition: opacity 0.3s ease;
  }
  .sp-fixed-footer a:active {
    opacity: 0.8;
  }
  .btn-phone {
    background-color: var(--color-primary);
  }
  a.btn-contact {
    background-color: #FFB200;
    color: #284C77;
  }
  .icon-phone {
    margin-right: calc(8 * 100vw / 390);
    margin-bottom: calc(2 * 100vw / 390);
  }
  .icon-phone img {
    width: calc(16 * 100vw / 390);
    height: calc(16 * 100vw / 390);
  }
  .icon-arrow {
    margin-left: calc(8 * 100vw / 390);
    margin-bottom: calc(-3 * 100vw / 390);
  }
  body {
    padding-bottom: calc(48 * 100vw / 390 + env(safe-area-inset-bottom));
  }
  .sp-fixed-footer {
    transform: translateY(100%);
    transition: transform 0.4s ease;
  }
  .sp-fixed-footer.is-show {
    transform: translateY(0);
  }
}
/*# sourceMappingURL=style.css.map */