@charset "UTF-8";
/**
 * Body Shop Okumura
 * * Foundation: Reset, Variables, Mixins
 * Layout: Header, Footer, Main Container
 * Object:
 * - Component: Buttons, Cards, Titles
 * - Project: MV, News, Service Sections
 * - Utility: Spacing, Typography helpers
 */
body {
  font-family: "Helvetica Neue", Helvetica, "Noto Sans JP", Arial, sans-serif;
  font-size: 16px;
  color: #333333;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 576px) {
  body {
    font-size: 14px;
  }
}

small, .text-xs {
  font-size: 13px;
}

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

/* --------------------------------
 * Layout: Header
 * -------------------------------- */
.l-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 80px;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .l-header__inner {
    height: 60px;
    padding: 0 20px;
  }
}
.l-header__logo img {
  height: 50px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .l-header__logo img {
    height: 35px;
  }
}
.l-header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .l-header__right {
    gap: 0;
  }
}

/* --------------------------------
 * Project: Global Navigation
 * -------------------------------- */
@media screen and (max-width: 768px) {
  .p-gnav {
    display: none;
  }
}
.p-gnav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  list-style: none;
}
.p-gnav__item {
  position: relative;
}
.p-gnav__item > a,
.p-gnav__item .p-gnav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.p-gnav__item > a:hover,
.p-gnav__item .p-gnav__link:hover {
  color: #1e2d59;
}
.p-gnav__item .p-gnav__link::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 8px;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: #888 transparent transparent transparent;
  -webkit-transition: border-color 0.3s, -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: border-color 0.3s, -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1), border-color 0.3s;
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1), border-color 0.3s, -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.p-gnav__item .p-gnav__link:hover::after {
  border-top-color: #1e2d59;
}
.p-gnav__item .p-gnav__link.is-active::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.p-gnav {
  /* --- 子メニュー（プルダウン） --- */
}
.p-gnav__child {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 280px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  z-index: 10;
  border-top: 3px solid #1e2d59;
}
.p-gnav__child::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
}
.p-gnav__child-item a {
  display: block;
  padding: 15px 25px;
  color: #333333;
  text-decoration: none;
  font-size: 14px;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.p-gnav__child-item a:hover {
  background-color: #f8f8f8;
  color: #1e2d59;
}

.l-footer {
  padding: 80px 0 40px;
  background-color: #ffffff;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 60px 20px 30px;
  }
}
.l-footer__branding {
  margin-bottom: 40px;
}
.l-footer__label {
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  color: #333333;
}
.l-footer__company-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .l-footer__company-name {
    font-size: 20px;
  }
}
.l-footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
}
.l-footer__logo img {
  width: 140px;
  height: auto;
}
.l-footer__nav {
  margin-bottom: 40px;
}
.l-footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 20px;
  list-style: none;
}
.l-footer__nav-list li {
  position: relative;
}
.l-footer__nav-list li:not(:last-child)::after {
  content: "|";
  margin-left: 20px;
  color: #ccc;
}
@media screen and (max-width: 768px) {
  .l-footer__nav-list li:not(:last-child)::after {
    display: none;
  }
  .l-footer__nav-list li {
    width: 50%;
    margin-bottom: 10px;
  }
}
.l-footer__nav-list a {
  font-size: 15px;
  color: #333333;
  text-decoration: none;
}
.l-footer__nav-list a:hover {
  text-decoration: underline;
}
.l-footer__copyright {
  margin-top: 40px;
}
.l-footer__copyright small {
  font-size: 13px;
  color: #666666;
}

.l-main {
  overflow: hidden;
}

.l-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .l-container {
    padding: 0 20px;
  }
}

.p-drawer {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background-color: #ffffff;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  overflow-y: auto;
}
.p-drawer.is-open {
  opacity: 1;
  visibility: visible;
}
.p-drawer__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .p-drawer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 40px 20px;
    gap: 40px;
  }
}
.p-drawer__nav {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-drawer__list {
  list-style: none;
}
.p-drawer__item {
  margin-bottom: 14px;
}
.p-drawer__item a {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.p-drawer__item a:hover {
  color: #1e2d59;
}
.p-drawer {
  /* --- 変更部分 --- */
  /* 見出しラベル（旧アコーディオンボタン） */
}
.p-drawer__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 15px;
}
.p-drawer__label::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 15px;
  border-style: solid;
  border-width: 7px 6px 0 6px;
  border-color: #888 transparent transparent transparent;
}
.p-drawer {
  /* 子メニュー（最初から展開しておく） */
}
.p-drawer__child {
  list-style: none;
  padding-left: 10px;
}
.p-drawer__child li {
  margin-bottom: 12px;
}
.p-drawer__child li a {
  font-size: 15px;
}
.p-drawer {
  /* 右カラム：店舗情報 */
}
.p-drawer__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 340px;
          flex: 0 0 340px;
}
@media screen and (max-width: 768px) {
  .p-drawer__info {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}
.p-drawer__address {
  margin-bottom: 30px;
}
.p-drawer__address p {
  font-size: 16px;
  line-height: 1.6;
}
.p-drawer__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.c-banner-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-banner-btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}

.c-banner-btn {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  padding: 24px 30px;
  border-radius: 8px;
  text-decoration: none;
  -webkit-transition: -webkit-transform 0.3s, -webkit-filter 0.3s;
  transition: -webkit-transform 0.3s, -webkit-filter 0.3s;
  transition: transform 0.3s, filter 0.3s;
  transition: transform 0.3s, filter 0.3s, -webkit-transform 0.3s, -webkit-filter 0.3s;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-banner-btn {
    padding: 18px 20px;
  }
}
.c-banner-btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}
.c-banner-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 0 16px 14px;
  border-color: transparent transparent transparent #ffffff;
}
@media screen and (max-width: 768px) {
  .c-banner-btn::after {
    border-width: 8px 0 8px 10px;
    right: 15px;
  }
}
.c-banner-btn__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  color: #ffffff;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .c-banner-btn__inner {
    gap: 15px;
  }
}
.c-banner-btn__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 60px;
}
.c-banner-btn__icon img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .c-banner-btn__icon {
    width: 45px;
  }
}
.c-banner-btn__sub {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-banner-btn__sub {
    font-size: 12px;
  }
}
.c-banner-btn__main {
  font-size: 26px;
  line-height: 1.3;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .c-banner-btn__main {
    font-size: 16px;
  }
}
.c-banner-btn--reserve {
  background-color: #e4004f;
}
.c-banner-btn--estimate {
  background-color: #1e2d59;
}
.c-banner-btn--simulation {
  background-color: #48658a;
}
.c-banner-btn--line {
  background-color: #44b644;
}

.c-btn-drawer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 100%;
  height: 60px;
  background-color: #1a2232;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.c-btn-drawer:hover {
  background-color: rgb(43.4473684211, 56.8157894737, 83.5526315789);
}
.c-btn-drawer__icon {
  width: 24px;
  height: auto;
  margin-right: 10px;
}
.c-btn-drawer {
  /* 右端の矢印（シンプルでシャープなデザインをCSSで再現） */
}
.c-btn-drawer::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.c-hamburger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 32px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}
.c-hamburger__line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-hamburger.is-active .c-hamburger__line:nth-child(1) {
  -webkit-transform: translateY(9.5px) rotate(45deg);
          transform: translateY(9.5px) rotate(45deg);
}
.c-hamburger.is-active .c-hamburger__line:nth-child(2) {
  opacity: 0;
}
.c-hamburger.is-active .c-hamburger__line:nth-child(3) {
  -webkit-transform: translateY(-9.5px) rotate(-45deg);
          transform: translateY(-9.5px) rotate(-45deg);
}

.c-btn-basic {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 200px;
  height: 50px;
  background-color: #1a2232;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: background-color 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, transform 0.3s;
  transition: background-color 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
.c-btn-basic:hover {
  background-color: rgb(43.4473684211, 56.8157894737, 83.5526315789);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.c-btn-white {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  max-width: 240px;
  height: 50px;
  padding: 0 20px;
  background-color: #ffffff;
  color: #1e2841;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.c-btn-white:hover {
  opacity: 0.9;
}
.c-btn-white:hover::before {
  -webkit-transform: translateY(-50%) translateX(3px);
          transform: translateY(-50%) translateX(3px);
}
.c-btn-white:hover::after {
  -webkit-transform: translateY(-50%) translateX(3px) rotate(45deg);
          transform: translateY(-50%) translateX(3px) rotate(45deg);
}
.c-btn-white__icon {
  width: 20px;
  height: auto;
  margin-right: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-btn-white {
  /* 右端の矢印（横線＋ハーフアロー） */
}
.c-btn-white::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 16px;
  height: 2px;
  background-color: currentColor;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.c-btn-white::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 8px;
  height: 2px;
  background-color: currentColor;
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
@media screen and (max-width: 768px) {
  .c-btn-white {
    max-width: 100%;
  }
}

.c-page-mv {
  width: 100%;
  height: 450px;
  background-color: #eee;
}
@media screen and (max-width: 768px) {
  .c-page-mv {
    height: 250px;
  }
}
.c-page-mv img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.c-breadcrumb {
  background-color: #f7f7f7;
  padding: 15px 0;
  font-size: 13px;
  font-weight: 500;
  color: #333;
}
@media screen and (max-width: 768px) {
  .c-breadcrumb {
    font-size: 11px;
    padding: 12px 0;
  }
}
.c-breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-breadcrumb a {
  color: #333;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.c-breadcrumb a:hover {
  opacity: 0.6;
}
.c-breadcrumb__separator {
  color: #999;
  font-size: 10px;
  margin: 0 4px;
}
.c-breadcrumb .is-current {
  color: #df9e76;
}

.c-page-title {
  text-align: center;
  color: #2c3140;
}
.c-page-title__en {
  display: block;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.25em;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .c-page-title__en {
    font-size: 20px;
    letter-spacing: 0.15em;
  }
}
.c-page-title__ja {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 25px;
}
.c-page-title__ja::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 140px;
  height: 1px;
  background-color: #a0a0a0;
}
@media screen and (max-width: 768px) {
  .c-page-title__ja {
    font-size: 18px;
    padding-bottom: 20px;
  }
  .c-page-title__ja::after {
    width: 100px;
  }
}

.c-section-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #2b3155;
  position: relative;
  padding-bottom: 25px;
}
.c-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background-color: #a0a0a0;
}
@media screen and (max-width: 768px) {
  .c-section-title {
    font-size: 18px;
    padding-bottom: 20px;
  }
}

.c-table {
  width: 100%;
  border-collapse: collapse;
}
.c-table th, .c-table td {
  border: 1px solid #707070;
  padding: 20px 30px;
  font-size: 15px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .c-table th, .c-table td {
    padding: 15px;
  }
}
.c-table th {
  width: 25%;
  background-color: #f0f1f3;
  font-weight: 700;
  text-align: left;
  vertical-align: top;
}
.c-table td {
  width: 75%;
  background-color: #ffffff;
}
@media screen and (max-width: 768px) {
  .c-table th, .c-table td {
    display: block;
    width: 100%;
  }
  .c-table th {
    border-bottom: none;
  }
}

.c-price-table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.c-price-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  text-align: center;
  table-layout: fixed;
}
.c-price-table th, .c-price-table td {
  border: 1px solid #e0e0e0;
  padding: 20px 15px;
  font-size: 16px;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .c-price-table th, .c-price-table td {
    padding: 15px 10px;
    font-size: 14px;
  }
}
.c-price-table thead th {
  background-color: #2b3155;
  color: #ffffff;
  font-weight: 700;
  border-color: #2b3155;
}
.c-price-table tbody th {
  background-color: #f4f5f7;
  color: #333;
  font-weight: 700;
}
.c-price-table tbody td {
  background-color: #ffffff;
  color: #333;
  letter-spacing: 0.05em;
}
.c-price-table__th-corner {
  background-color: #1a2232 !important;
}
.c-price-table .is-total th, .c-price-table .is-total td {
  background-color: #fffbe6;
  font-weight: 700;
}

/* --------------------------------
 * ミニマルテーブル（会社概要など）
 * -------------------------------- */
.c-table--minimal {
  width: 100%;
  border-collapse: collapse;
}
.c-table--minimal th, .c-table--minimal td {
  padding: 25px 10px;
  border-bottom: 1px solid #dcdcdc;
  text-align: left;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .c-table--minimal th, .c-table--minimal td {
    padding: 18px 5px;
    font-size: 14px;
  }
}
.c-table--minimal th {
  width: 25%;
  font-weight: 500;
  color: #333;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .c-table--minimal th {
    width: 30%;
  }
}
.c-table--minimal td {
  width: 75%;
  color: #000;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .c-table--minimal td {
    width: 70%;
  }
}
.c-table--minimal tr:last-child th, .c-table--minimal tr:last-child td {
  border-bottom: none;
}

.c-note {
  font-size: 14px;
  color: #666;
  padding-left: 1.2em;
  text-indent: -1.2em;
  line-height: 1.6;
}
.c-note:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .c-note {
    font-size: 12px;
  }
}

.c-link-pdf {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  color: #c0392b;
  font-weight: 700;
  font-size: 14px;
  text-decoration: underline;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.c-link-pdf::before {
  content: "";
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 18px;
  height: 18px;
  background-color: currentColor;
  mask: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2zm-9.5 8.5c0 .83-.67 1.5-1.5 1.5H7v2H5.5V8H8c.83 0 1.5.67 1.5 1.5v2zm5 2c0 .83-.67 1.5-1.5 1.5h-2.5V8H13c.83 0 1.5.67 1.5 1.5v4zm4-5H17v1h1.5V11H17v3h-1.5V8h3v1.5z'/%3E%3C/svg%3E") no-repeat center/contain;
  -webkit-mask: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2zm-9.5 8.5c0 .83-.67 1.5-1.5 1.5H7v2H5.5V8H8c.83 0 1.5.67 1.5 1.5v2zm5 2c0 .83-.67 1.5-1.5 1.5h-2.5V8H13c.83 0 1.5.67 1.5 1.5v4zm4-5H17v1h1.5V11H17v3h-1.5V8h3v1.5z'/%3E%3C/svg%3E") no-repeat center/contain;
}
.c-link-pdf:hover {
  opacity: 0.7;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .c-link-pdf {
    font-size: 13px;
  }
}

.c-link-external {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #2b3155;
  font-weight: 700;
  font-size: 14px;
  text-decoration: underline;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.c-link-external::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 6px;
  background-color: currentColor;
  mask: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14,3V5H17.59L7.76,14.83L9.17,16.24L19,6.41V10H21V3M19,19H5V5H12V3H5C3.89,3 3,3.9 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V12H19V19Z'/%3E%3C/svg%3E") no-repeat center/contain;
  -webkit-mask: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14,3V5H17.59L7.76,14.83L9.17,16.24L19,6.41V10H21V3M19,19H5V5H12V3H5C3.89,3 3,3.9 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V12H19V19Z'/%3E%3C/svg%3E") no-repeat center/contain;
}
.c-link-external:hover {
  opacity: 0.7;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .c-link-external {
    font-size: 12px;
  }
}

/* --------------------------------
 * テキスト配置（Utility）
 * -------------------------------- */
.u-text-right {
  text-align: right !important;
}

.u-text-left {
  text-align: left !important;
}

.u-text-center {
  text-align: center !important;
}

.c-sp-footer {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-sp-footer {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #1e2d59;
    padding-bottom: env(safe-area-inset-bottom);
  }
}
.c-sp-footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-sp-footer__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.c-sp-footer__item:last-child {
  border-right: none;
}
.c-sp-footer__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  padding: 6px 0 0 0;
  height: 75px;
  color: #ffffff;
}
.c-sp-footer__link--line .c-sp-footer__icon {
  width: 50px;
  height: 50px;
  margin-bottom: 0;
}
.c-sp-footer__icon {
  width: 30px;
  height: 30px;
  margin-bottom: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-sp-footer__icon img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-sp-footer__text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.p-mv {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  min-height: 500px;
  overflow: hidden;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  .p-mv {
    height: calc(100vh - 60px);
  }
}
.p-mv .splide__track,
.p-mv .splide__list {
  height: 100%;
}
.p-mv__slide {
  width: 100%;
  height: 100%;
  background-color: #000;
}
.p-mv__bg {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.p-mv__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.p-mv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1 !important;
  visibility: visible !important;
}
.p-mv {
  /* 画像の上に重ねるテキストコンテンツ */
}
.p-mv__content {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
  width: 100%;
  max-width: 1100px;
  padding: 0 40px;
  color: #ffffff;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-mv__content {
    padding: 0 20px;
  }
}
.p-mv__content {
  /* --- 配置バリエーション --- */
}
.p-mv__content--center {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}
.p-mv__content--bottom-left {
  bottom: 15%;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p-mv__content--bottom-left {
    bottom: 20%;
  }
}
.p-mv__content--right {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: right;
}
.p-mv__copy {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}
.p-mv__copy-line {
  display: block;
}
@media screen and (max-width: 768px) {
  .p-mv__copy {
    font-size: 28px;
  }
}
.p-mv__sub-copy {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 768px) {
  .p-mv__sub-copy {
    font-size: 13px;
  }
}
.p-mv {
  /* スクロールダウンインジケーター */
}
.p-mv__scroll {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  right: 40px;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .p-mv__scroll {
    right: 20px;
  }
}
.p-mv__scroll:hover {
  opacity: 0.7;
}
.p-mv__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 80px;
  background-color: #ffffff;
  margin-top: 15px;
  -webkit-animation: scrollLine 2.5s cubic-bezier(0.19, 1, 0.22, 1) infinite;
          animation: scrollLine 2.5s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}

/* スクロール線のアニメーション定義 */
@-webkit-keyframes scrollLine {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  45% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  55% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}
@keyframes scrollLine {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  45% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  55% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}
.p-top-news__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
@media screen and (max-width: 768px) {
  .p-top-news__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 20px 0;
  }
}
.p-top-news__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 140px;
  height: 60px;
  background-color: #f0f0f0;
  font-weight: 700;
  margin-right: 40px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-top-news__head {
    width: auto;
    height: auto;
    background: none;
    margin: 0 0 15px 0;
  }
}
.p-top-news__article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-decoration: none;
  color: #333333;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.p-top-news__article:hover {
  color: #1e2d59;
}
@media screen and (max-width: 768px) {
  .p-top-news__article {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
}
.p-top-news__date {
  font-weight: 700;
}
.p-top-news__divider {
  margin: 0 20px;
  color: #ccc;
}
@media screen and (max-width: 768px) {
  .p-top-news__divider {
    display: none;
  }
}
.p-top-news__title {
  font-size: 15px;
  font-weight: 500;
}
.p-top-news__more {
  margin-left: 40px;
  margin-right: 10px;
}
.p-top-news__more a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  color: #333333;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-top-news__more a:hover {
  opacity: 0.7;
}
.p-top-news__more a .c-arrow-right {
  display: inline-block;
  width: 15px;
  height: 1px;
  background-color: currentColor;
  margin-left: 10px;
  position: relative;
}
.p-top-news__more a .c-arrow-right::after {
  content: "";
  position: absolute;
  right: 0;
  width: 6px;
  height: 1px;
  background-color: currentColor;
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .p-top-news__more {
    margin: 20px 0 0 0;
  }
}

.p-strength__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
}
@media screen and (max-width: 768px) {
  .p-strength__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.p-strength__row--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .p-strength__row--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-strength__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-strength__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-strength__title {
    font-size: 20px;
    text-align: center;
  }
}
.p-strength__text {
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-strength__text {
    text-align: center;
  }
}
.p-strength__btn {
  text-align: center;
}
.p-strength__image {
  -webkit-box-flex: 1.2;
      -ms-flex: 1.2;
          flex: 1.2;
}
.p-strength__image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.p-top-service__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .p-top-service__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .p-top-service__grid {
    grid-template-columns: 1fr;
  }
}

.p-service-card {
  display: block;
  background: #ffffff;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eee;
}
.p-service-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.p-service-card:hover .p-service-card__title {
  color: #1e2d59;
}
.p-service-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.p-service-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.p-service-card:hover .p-service-card__image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.p-service-card__title {
  padding: 20px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: #333333;
}
.p-service-card--tesla {
  border: 2px solid #e60012;
}

.p-service-links {
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
}
.p-service-links__title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.2em;
  color: #2b2b40;
  margin-bottom: 50px;
}
.p-service-links__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
  row-gap: 0;
}
@media screen and (max-width: 768px) {
  .p-service-links__grid {
    grid-template-columns: 1fr;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}
.p-service-links__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 25px 20px;
  text-decoration: none;
  color: #333333;
  border-bottom: 1px solid #dcdcdc;
}
.p-service-links__item:nth-child(1), .p-service-links__item:nth-child(2) {
  border-top: 1px solid #dcdcdc;
}
@media screen and (max-width: 768px) {
  .p-service-links__item:nth-child(2) {
    border-top: none;
  }
  .p-service-links__item:nth-child(1) {
    border-top: 1px solid #dcdcdc;
  }
  .p-service-links__item {
    padding: 20px 10px;
  }
}
.p-service-links__item {
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.p-service-links__item:hover {
  background-color: #f8f8f8;
}
.p-service-links__item:hover::before {
  -webkit-transform: translateY(-50%) translateX(5px);
          transform: translateY(-50%) translateX(5px);
}
.p-service-links__item:hover::after {
  -webkit-transform: translateY(-50%) translateX(5px) rotate(45deg);
          transform: translateY(-50%) translateX(5px) rotate(45deg);
}
.p-service-links__item::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 20px;
  height: 1px;
  background-color: #333333;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
@media screen and (max-width: 768px) {
  .p-service-links__item::before {
    right: 10px;
  }
}
.p-service-links__item::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 6px;
  height: 1px;
  background-color: #333333;
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
@media screen and (max-width: 768px) {
  .p-service-links__item::after {
    right: 10px;
  }
}
.p-service-links__icon {
  width: 90px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .p-service-links__icon {
    width: 50px;
    margin-right: 20px;
  }
}
.p-service-links__icon img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-service-links__text {
  font-size: 16px;
  font-weight: 500;
}

.p-company-info {
  background-color: #1e2841;
  color: #ffffff;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .p-company-info {
    padding: 60px 0;
  }
}
.p-company-info__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .p-company-info__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.p-company-info__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-company-info__image img {
  width: 100%;
  height: auto;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.p-company-info__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-company-info__name {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-company-info__name {
    font-size: 18px;
  }
}
.p-company-info__list {
  margin-bottom: 20px;
}
.p-company-info__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.6;
}
.p-company-info__row dt {
  width: 80px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 500;
  opacity: 0.9;
}
.p-company-info__row dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 500;
}
.p-company-info__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  list-style: none;
  margin-bottom: 20px;
  padding: 0;
}
.p-company-info__sns a {
  display: block;
  width: 40px;
  height: 40px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-company-info__sns a:hover {
  opacity: 0.7;
}
.p-company-info__sns a img {
  width: 100%;
  height: 100%;
}
.p-company-info__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .p-company-info__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}

.p-information__title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.15em;
  color: #1a2232;
}

/* --------------------------------
 * Information List
 * -------------------------------- */
.p-info-list {
  border-top: 1px solid #333;
}
.p-info-list__item {
  border-bottom: 1px solid #333;
}
.p-info-list__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 20px;
  text-decoration: none;
  color: #333333;
  position: relative;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.p-info-list__item a:hover {
  background-color: #f8f8f8;
}
.p-info-list__item a:hover::before {
  -webkit-transform: translateY(-50%) translateX(5px);
          transform: translateY(-50%) translateX(5px);
}
.p-info-list__item a:hover::after {
  -webkit-transform: translateY(-50%) translateX(5px) rotate(45deg);
          transform: translateY(-50%) translateX(5px) rotate(45deg);
}
.p-info-list__item a::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 16px;
  height: 1px;
  background-color: currentColor;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.p-info-list__item a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 8px;
  height: 1px;
  background-color: currentColor;
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
@media screen and (max-width: 768px) {
  .p-info-list__item a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 20px 10px;
  }
}
.p-info-list__date {
  font-weight: 700;
  width: 180px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-info-list__date {
    margin-bottom: 10px;
  }
}
.p-info-list__title {
  font-size: 15px;
  font-weight: 500;
  padding-right: 40px;
}

/* --------------------------------
 * YouTube Movie Wrapper
 * -------------------------------- */
.p-top-movie__text {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
}
.p-top-movie__iframe {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #000;
  overflow: hidden;
}
.p-top-movie__iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* --------------------------------
 * 下層ページ共通ヘッダー
 * -------------------------------- */
.c-page-header {
  background-color: #1a2232;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-page-header {
    padding: 60px 20px;
  }
}
.c-page-header__title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .c-page-header__title {
    font-size: 22px;
  }
}
.c-page-header__sub {
  font-size: 16px;
  letter-spacing: 0.15em;
  opacity: 0.8;
}

/* --------------------------------
 * サービス詳細 - 導入部
 * -------------------------------- */
.p-service-intro {
  text-align: left;
}
.p-service-intro__catch {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-service-intro__catch {
    font-size: 18px;
  }
}
.p-service-intro__catch--blue {
  color: #2b3155 !important;
}
.p-service-intro__text {
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-service-intro__text {
    font-size: 14px;
  }
}

/* --------------------------------
 * サービス詳細 - 特徴 (画像とテキストの交互配置)
 * -------------------------------- */
.p-service-feature__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .p-service-feature__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.p-service-feature__item--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .p-service-feature__item--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-service-feature__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-service-feature__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-service-feature__title {
    font-size: 18px;
  }
}
.p-service-feature__text {
  font-size: 15px;
  line-height: 1.8;
}
.p-service-feature__image {
  -webkit-box-flex: 1.1;
      -ms-flex: 1.1;
          flex: 1.1;
}
.p-service-feature__image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* --------------------------------
 * サービス詳細 - サポート体制 (2カラムグリッド)
 * -------------------------------- */
.p-support__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .p-support__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.p-support__item {
  background-color: #f8f9fa;
  padding: 40px;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .p-support__item {
    padding: 30px 20px;
  }
}
.p-support__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #ddd;
  display: block;
}
.p-support__text {
  font-size: 14px;
  line-height: 1.8;
}

.p-service-support__inner {
  background-color: #f4f5f7;
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .p-service-support__inner {
    padding: 40px 0;
  }
}
.p-service-support__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  gap: 60px;
}
.p-service-support__item + .p-service-support__item {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .p-service-support__item {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    gap: 30px;
    padding: 0 20px;
  }
  .p-service-support__item + .p-service-support__item {
    margin-top: 60px;
  }
}
.p-service-support__item--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.p-service-support__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-service-support__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .p-service-support__title {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.p-service-support__text {
  font-size: 15px;
  line-height: 1.8;
}
.p-service-support__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-service-support__image img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.p-coating-merit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 768px) {
  .p-coating-merit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-coating-merit__image {
  width: 45%;
}
.p-coating-merit__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 768px) {
  .p-coating-merit__image {
    width: 100%;
  }
}
.p-coating-merit__content {
  width: 55%;
  background-color: #f4f5f7;
  padding: 60px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-coating-merit__content {
    width: 100%;
    padding: 40px 20px;
  }
}
.p-coating-merit__title {
  color: #2b3155;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .p-coating-merit__title {
    font-size: 18px;
  }
}
.p-coating-merit__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-coating-merit__list li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 15px;
}
.p-coating-merit__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.p-coating-table__title {
  background-color: #2b3155;
  color: #ffffff;
  padding: 15px 30px;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-coating-table__title {
    font-size: 16px;
    padding: 12px 20px;
  }
}

.p-coating-price__notes {
  margin-top: 30px;
}

.p-about-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .p-about-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-about-info__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-about-info__image img {
  width: 100%;
  height: auto;
}
.p-about-info__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-about-info__name {
  font-size: 20px;
  font-weight: 700;
  color: #2b3155;
  margin-bottom: 20px;
}
.p-about-info__list {
  display: grid;
  grid-template-columns: 6em 1fr;
  gap: 10px 0;
  font-size: 15px;
}
.p-about-info__list dt {
  font-weight: 700;
}
.p-about-info__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.p-about-info__btns a {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 12px;
  text-align: center;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
}
.p-about-info__btns a.c-btn-map {
  background: #2b3155;
  color: #fff;
}
.p-about-info__btns a.c-btn-estimate {
  background: #1a2232;
  color: #fff;
}
.p-about-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .p-about-message {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-about-message__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 350px;
          flex: 0 0 350px;
}
@media screen and (max-width: 768px) {
  .p-about-message__image {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
}
.p-about-message__title {
  font-size: 24px;
  font-weight: 700;
  color: #2b3155;
  margin-bottom: 30px;
  position: relative;
}
.p-about-message__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #2b3155;
  margin-top: 10px;
}
.p-about-message__text {
  line-height: 2;
  font-size: 15px;
}
.p-about-message__text p + p {
  margin-top: 1.5em;
}

/* --------------------------------
 * ロゴグリッド・リンク
 * -------------------------------- */
.p-about-logos__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .p-about-logos__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.p-about-logos__item {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.p-about-logos__item img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-about-logos__link {
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
.p-about-logos__link:hover {
  opacity: 0.8;
  border-color: #2b3155;
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.p-about-logos__single {
  text-align: center;
}
.p-about-logos__single .p-about-logos__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  max-width: 240px;
}
.p-about-logos__single .p-about-logos__link:hover {
  border-color: #2b3155;
}

.p-about-map {
  width: 100%;
  line-height: 0;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}
.p-about-map iframe {
  width: 100%;
  height: 450px;
}
@media screen and (max-width: 768px) {
  .p-about-map iframe {
    height: 300px;
  }
}

.p-tesla-announce__title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
}
.p-tesla-announce__text {
  line-height: 1.8;
  font-size: 15px;
}
.p-tesla-shop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .p-tesla-shop {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.p-tesla-shop__map {
  -webkit-box-flex: 1.2;
      -ms-flex: 1.2;
          flex: 1.2;
  width: 100%;
}
.p-tesla-shop__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-tesla-shop__logo img {
  max-width: 280px;
}
.p-tesla-greeting {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .p-tesla-greeting {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-tesla-greeting__content {
  -webkit-box-flex: 1.2;
      -ms-flex: 1.2;
          flex: 1.2;
}
.p-tesla-greeting__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-tesla-greeting__image img {
  width: 100%;
  height: auto;
}
.p-tesla-greeting__title {
  font-size: 24px;
  font-weight: 700;
}
.p-tesla-greeting__title span {
  font-size: 18px;
  display: block;
  margin-top: 5px;
}
.p-tesla-greeting__text {
  line-height: 1.8;
  font-size: 15px;
}
.p-tesla-greeting__text p + p {
  margin-top: 1.2em;
}
.p-tesla-desc {
  background-color: #eee;
  padding: 60px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-tesla-desc {
    padding: 40px 20px;
  }
}
.p-tesla-desc__title {
  font-size: 20px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.p-tesla-desc__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #333;
  margin-top: 15px;
}
.p-tesla-desc__text {
  font-size: 15px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}
.p-tesla-contact-title {
  font-size: 22px;
  font-weight: 700;
}

.p-recruit-lead {
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-recruit-lead {
    font-size: 14px;
    text-align: left;
  }
}
.p-recruit-features__inner {
  background-color: #f0f1f3;
  padding: 80px 60px;
}
@media screen and (max-width: 768px) {
  .p-recruit-features__inner {
    padding: 40px 20px;
  }
}
.p-recruit-features__title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #2b3155;
}
@media screen and (max-width: 768px) {
  .p-recruit-features__title {
    font-size: 20px;
  }
}
.p-recruit-features__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .p-recruit-features__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-recruit-features__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-recruit-features__item-title {
  font-size: 18px;
  font-weight: 700;
  color: #2b3155;
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: center;
  min-height: 3em;
}
@media screen and (max-width: 768px) {
  .p-recruit-features__item-title {
    min-height: auto;
    font-size: 16px;
  }
}
.p-recruit-features__item-text {
  font-size: 14px;
  line-height: 1.8;
}
.p-recruit-video {
  max-width: 900px;
  margin: 0 auto;
}
.p-recruit-video__wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.p-recruit-video__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-recruit-entry__title {
  font-size: 20px;
  font-weight: 700;
  color: #2b3155;
  text-align: center;
  position: relative;
  padding-bottom: 25px;
}
.p-recruit-entry__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 150px;
  height: 1px;
  background-color: #ccc;
}
@media screen and (max-width: 768px) {
  .p-recruit-entry__title {
    font-size: 16px;
  }
}

.c-btn-entry {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #1a2232;
  color: #ffffff;
  padding: 15px 60px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border-radius: 4px;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
  position: relative;
}
.c-btn-entry::after {
  content: "→";
  margin-left: 15px;
  font-weight: 400;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.c-btn-entry:hover {
  opacity: 0.9;
}
.c-btn-entry:hover::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
@media screen and (max-width: 768px) {
  .c-btn-entry {
    width: 100%;
    padding: 15px 20px;
  }
}

.p-faq-section__title {
  font-size: 24px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-faq-section__title {
    font-size: 20px;
  }
}
.p-faq-item {
  border: 1px solid #2b3155;
  margin-bottom: 20px;
  background-color: #ffffff;
}
.p-faq-item__question {
  width: 100%;
  padding: 25px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-faq-item__question {
    padding: 20px;
  }
}
.p-faq-item__icon-q {
  font-size: 24px;
  font-weight: 700;
  color: #2b3155;
  margin-right: 25px;
}
@media screen and (max-width: 768px) {
  .p-faq-item__icon-q {
    margin-right: 15px;
  }
}
.p-faq-item__text {
  font-size: 16px;
  font-weight: 500;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 40px;
}
@media screen and (max-width: 768px) {
  .p-faq-item__text {
    font-size: 14px;
  }
}
.p-faq-item__toggle {
  position: absolute;
  right: 30px;
  width: 20px;
  height: 20px;
}
.p-faq-item__toggle::before, .p-faq-item__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  background-color: #2b3155;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.p-faq-item__toggle::before {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-faq-item__toggle::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.p-faq-item.is-active .p-faq-item__toggle::after {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}
.p-faq-item__answer {
  display: none;
  border-top: 1px dashed #eee;
}
.p-faq-item__answer-inner {
  padding: 25px 30px 25px 79px;
  line-height: 1.8;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .p-faq-item__answer-inner {
    padding: 20px;
  }
}

.p-faq-item__answer-inner {
  padding: 25px 30px 25px 79px;
  line-height: 1.8;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .p-faq-item__answer-inner {
    padding: 20px;
  }
}
.p-faq-item__answer-inner a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 240px;
  margin-top: 15px;
  padding: 12px 25px;
  background-color: #2b3155;
  color: #ffffff !important;
  font-weight: 700;
  text-decoration: none !important;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
.p-faq-item__answer-inner a::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 12px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.p-faq-item__answer-inner a:hover {
  background-color: #1a2232;
  opacity: 1;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.p-faq-item__answer-inner a:hover::after {
  -webkit-transform: translateX(4px) rotate(45deg);
          transform: translateX(4px) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .p-faq-item__answer-inner a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: none;
    width: 100%;
  }
}

.p-case-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
  list-style: none;
}
@media screen and (max-width: 1024px) {
  .p-case-archive__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .p-case-archive__grid {
    grid-template-columns: 1fr;
  }
}
.p-case-archive__link {
  display: block;
  text-decoration: none;
  color: #333333;
}
.p-case-archive__link:hover .p-case-archive__thumb img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.p-case-archive__thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #f8f8f8;
}
.p-case-archive__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.p-case-archive__type-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 10px;
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  border-radius: 2px;
}
.p-case-archive__type-badge--gallery {
  background: #1e2d59;
}
.p-case-archive__type-badge--before_after {
  background: #e60012;
}
.p-case-archive__body {
  padding: 14px 4px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
}
.p-case-archive__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.p-case-archive__count {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 13px;
  color: #666666;
}
.p-case-archive__pager {
  text-align: center;
}
.p-case-archive__pager .page-numbers {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 6px;
}
.p-case-archive__pager .page-numbers a, .p-case-archive__pager .page-numbers span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #ddd;
  font-size: 13px;
  text-decoration: none;
  color: #333333;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}
.p-case-archive__pager .page-numbers .current {
  background: #1e2d59;
  border-color: #1e2d59;
  color: #ffffff;
}
.p-case-archive__pager .page-numbers a:hover {
  background: #f8f8f8;
}

.p-case-single__content {
  font-size: 15px;
  line-height: 1.9;
  color: #333333;
}
.p-case-single__content p {
  margin-bottom: 1.4em;
}
.p-case-single__content p:last-child {
  margin-bottom: 0;
}
.p-case-single__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
}
@media screen and (max-width: 768px) {
  .p-case-single__items {
    gap: 48px;
  }
}
.p-case-single__gallery-item figure {
  margin: 0;
}
.p-case-single__gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}
.p-case-single__ba-title {
  font-size: 18px;
  font-weight: 700;
  color: #1e2d59;
  margin-bottom: 20px;
  padding-left: 14px;
  border-left: 4px solid #1e2d59;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-case-single__ba-title {
    font-size: 16px;
  }
}
.p-case-single__ba-row {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .p-case-single__ba-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.p-case-single__ba-figure {
  margin: 0;
}
.p-case-single__ba-figure img {
  width: 100%;
  height: auto;
  display: block;
}
.p-case-single__ba-label {
  display: block;
  margin-top: 12px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
@media screen and (max-width: 768px) {
  .p-case-single__ba-label {
    font-size: 18px;
  }
}
.p-case-single__ba-figure--before .p-case-single__ba-label {
  color: #666666;
}
.p-case-single__ba-figure--after .p-case-single__ba-label {
  color: #e60012;
  position: relative;
}
.p-case-single__ba-figure--after .p-case-single__ba-label::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #e60012;
  margin: 6px auto 0;
}
.p-case-single__ba-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-case-single__ba-arrow::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-top: 2px solid #1e2d59;
  border-right: 2px solid #1e2d59;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .p-case-single__ba-arrow::after {
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
}
.p-case-single__caption {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .p-case-single__caption {
    font-size: 13px;
  }
}

.p-privacy__body {
  line-height: 2;
  font-size: 15px;
  color: #333;
}
@media screen and (max-width: 768px) {
  .p-privacy__body {
    font-size: 14px;
  }
}
.p-privacy__body p {
  margin-bottom: 1.5em;
}
.p-privacy__body a {
  color: #2b3155;
  text-decoration: underline;
  font-weight: 700;
}
.p-privacy__body a:hover {
  text-decoration: none;
}
.p-privacy__h2 {
  font-size: 20px;
  font-weight: 700;
  color: #2b3155;
  border-bottom: 2px solid #2b3155;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-privacy__h2 {
    font-size: 18px;
  }
}
.p-privacy__h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 40px 0 20px;
  padding-left: 15px;
  border-left: 4px solid #2b3155;
}
@media screen and (max-width: 768px) {
  .p-privacy__h3 {
    font-size: 16px;
  }
}
.p-privacy__h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 30px 0 15px;
  color: #333;
}
.p-privacy__list {
  margin-bottom: 25px;
  padding-left: 20px;
  list-style: disc;
}
.p-privacy__list li {
  margin-bottom: 10px;
}

.l-container--narrow {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   Margin Utilities ( u-mt-* / u-mb-* )
   ※ !important を付与して優先度を高くし、コンポーネントの余白を上書きします
   ========================================================================== */
.u-mt-120 {
  margin-top: 120px !important;
}
@media screen and (max-width: 768px) {
  .u-mt-120 {
    margin-top: 80px !important;
  }
}

.u-mb-120 {
  margin-bottom: 120px !important;
}
@media screen and (max-width: 768px) {
  .u-mb-120 {
    margin-bottom: 80px !important;
  }
}

.u-mt-100 {
  margin-top: 100px !important;
}
@media screen and (max-width: 768px) {
  .u-mt-100 {
    margin-top: 60px !important;
  }
}

.u-mb-100 {
  margin-bottom: 100px !important;
}
@media screen and (max-width: 768px) {
  .u-mb-100 {
    margin-bottom: 60px !important;
  }
}

.u-mt-80 {
  margin-top: 80px !important;
}
@media screen and (max-width: 768px) {
  .u-mt-80 {
    margin-top: 50px !important;
  }
}

.u-mb-80 {
  margin-bottom: 80px !important;
}
@media screen and (max-width: 768px) {
  .u-mb-80 {
    margin-bottom: 50px !important;
  }
}

.u-mt-60 {
  margin-top: 60px !important;
}
@media screen and (max-width: 768px) {
  .u-mt-60 {
    margin-top: 40px !important;
  }
}

.u-mb-60 {
  margin-bottom: 60px !important;
}
@media screen and (max-width: 768px) {
  .u-mb-60 {
    margin-bottom: 40px !important;
  }
}

.u-mt-40 {
  margin-top: 40px !important;
}
@media screen and (max-width: 768px) {
  .u-mt-40 {
    margin-top: 20px !important;
  }
}

.u-mb-40 {
  margin-bottom: 40px !important;
}
@media screen and (max-width: 768px) {
  .u-mb-40 {
    margin-bottom: 20px !important;
  }
}/*# sourceMappingURL=style.css.map */