@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin: 0;
  padding: 0;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  margin: 0;
}

.u-font-serif {
  font-family: "Zen Old Mincho", serif !important;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.u-font-sans {
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
a:hover {
  opacity: 0.7;
  color: #afa386;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border: none;
}

.l-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}
@media (max-width: 768px) {
  .l-inner {
    padding: 0 20px;
  }
}

.l-section {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .l-section {
    padding: 80px 0;
  }
}

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

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

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

.u-mb-20 {
  margin-bottom: 20px !important;
}

.u-mb-40 {
  margin-bottom: 40px !important;
}

.u-mb-60 {
  margin-bottom: 60px !important;
}

.u-mt-60 {
  margin-top: 60px !important;
}

.u-color-gold {
  color: #afa386 !important;
}

@media (min-width: 769px) {
  .u-hidden-pc {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .u-hidden-sp {
    display: none !important;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background-color 0.3s ease;
}
.l-header.is-scrolled {
  background-color: rgba(0, 0, 0, 0.9);
}
.l-header.is-scrolled::before {
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 768px) {
  .l-header.is-scrolled {
    background-color: transparent !important;
  }
  .l-header.is-scrolled .l-header__logo {
    opacity: 0;
    visibility: hidden;
  }
}
.l-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(250px, 45vw, 600px);
  height: clamp(150px, 25vw, 350px);
  background: rgba(0, 0, 0, 0.7);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: -1;
  transition: opacity 0.3s ease;
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 50px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .l-header__inner {
    padding: 15px 20px;
  }
}
.l-header__logo {
  transition: opacity 0.3s ease;
}
.l-header__logo img {
  width: clamp(180px, 20vw, 300px);
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .l-header__logo img {
    width: 180px;
  }
}
.l-header__hamburger {
  display: none;
}
@media (max-width: 768px) {
  .l-header__hamburger {
    display: block !important;
    width: 40px;
    height: 30px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }
  .l-header__hamburger.is-open {
    display: none !important;
  }
  .l-header__hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #afa386;
  }
  .l-header__hamburger span:nth-child(1) {
    top: 0;
  }
  .l-header__hamburger span:nth-child(2) {
    top: 14px;
  }
  .l-header__hamburger span:nth-child(3) {
    bottom: 0;
  }
}
@media (max-width: 768px) {
  .l-header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.98);
    z-index: 10000;
    padding: 50px 40px 40px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
  }
  .l-header__nav.is-open {
    transform: translateX(0);
  }
}
.l-header__nav-close {
  display: none;
}
@media (max-width: 768px) {
  .l-header__nav-close {
    display: block !important;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100001 !important;
  }
  .l-header__nav-close button {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
  }
  .l-header__nav-close button span {
    position: absolute;
    top: 20px;
    left: 5px;
    width: 30px;
    height: 2px;
    background-color: #afa386;
  }
  .l-header__nav-close button span:nth-child(1) {
    transform: rotate(45deg);
  }
  .l-header__nav-close button span:nth-child(2) {
    transform: rotate(-45deg);
  }
}
.l-header__nav-list {
  display: flex;
  gap: clamp(30px, 4vw, 50px);
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .l-header__nav-list {
    flex-direction: column;
    gap: 0;
  }
}
.l-header__nav-list > li {
  position: relative;
}
@media (max-width: 768px) {
  .l-header__nav-list > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.l-header__nav-list > li.menu-item-has-children > a {
  position: relative;
  padding-right: 20px;
}
.l-header__nav-list > li.menu-item-has-children > a::after {
  content: "";
  position: absolute;
  top: 40%;
  right: 0;
  width: 8px;
  height: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  transform: rotate(45deg);
}
@media (max-width: 768px) {
  .l-header__nav-list > li.menu-item-has-children > a::after {
    top: 28px;
    right: 5px;
  }
}
.l-header__nav-list > li > a {
  display: block;
  text-decoration: none;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  padding-bottom: 1em;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .l-header__nav-list > li > a {
    text-align: left;
    display: flex;
    flex-direction: column;
    text-shadow: none;
    color: #afa386;
    font-size: 11px;
    margin-top: 10px;
  }
}
.l-header__nav-list > li > a span {
  display: block;
  font-family: "Zen Old Mincho", serif;
  font-size: 21px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 4px;
  letter-spacing: 0.1em;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}
@media (max-width: 768px) {
  .l-header__nav-list > li > a span {
    color: #fff;
    font-size: 16px;
    margin-top: 5px;
    margin-bottom: 10px;
    text-shadow: none;
    border-left: 2px solid #afa386;
    padding-left: 15px;
  }
}
.l-header__nav-list > li:hover > a {
  color: #afa386;
}
.l-header__nav-list > li:hover > a span {
  color: #afa386;
}
.l-header__nav-list > li ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0 !important;
  transform: none !important;
  min-width: 240px;
  background-color: rgba(10, 10, 10, 0.95);
  padding: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  z-index: 100;
  margin-top: 0;
}
.l-header__nav-list > li ul.sub-menu::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  background: transparent;
}
@media (max-width: 768px) {
  .l-header__nav-list > li ul.sub-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: none !important;
    padding-left: 20px !important;
    display: none;
    margin-top: 0 !important;
  }
  .l-header__nav-list > li ul.sub-menu::before {
    display: none;
  }
}
.l-header__nav-list > li ul.sub-menu li {
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.l-header__nav-list > li ul.sub-menu li:last-child {
  border-bottom: none;
}
.l-header__nav-list > li ul.sub-menu li.menu-item-has-children > a::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  top: 50% !important;
  right: 15px !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 10px !important;
  max-height: 2px !important;
  background-color: #ffffff !important;
  transform: translateY(-50%) !important;
  z-index: 10 !important;
}
@media (max-width: 768px) {
  .l-header__nav-list > li ul.sub-menu li.menu-item-has-children > a::after {
    width: 8px !important;
    height: 8px !important;
    background: none !important;
    border-right: 1px solid #fff !important;
    border-bottom: 1px solid #fff !important;
    transform: rotate(45deg) !important;
    top: 15px !important;
  }
}
.l-header__nav-list > li ul.sub-menu li a {
  display: block;
  position: relative;
  padding: 10px 20px;
  font-size: 14px;
  font-family: "Zen Old Mincho", serif;
  color: #fff;
  white-space: nowrap;
  transition: background 0.3s, color 0.3s;
}
.l-header__nav-list > li ul.sub-menu li a:hover {
  background-color: #afa386;
  color: #000;
  padding-left: 20px !important;
}
@media (max-width: 768px) {
  .l-header__nav-list > li ul.sub-menu li a:hover {
    background: none !important;
    color: #afa386 !important;
    padding-left: 15px !important;
  }
}
.l-header__nav-list > li ul.sub-menu li ul.sub-menu {
  top: 0 !important;
  left: 100% !important;
  transform: none !important;
}
.l-header__nav-list > li ul.sub-menu li ul.sub-menu::before {
  top: 0;
  left: -30px;
  width: 30px;
  height: 100%;
}
@media (max-width: 768px) {
  .l-header__nav-list > li ul.sub-menu li ul.sub-menu {
    position: static !important;
    display: none;
  }
}
.l-header__nav-list > li ul.sub-menu li:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
}
.l-header__nav-list > li:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: none !important;
}
@media (max-width: 768px) {
  .l-header__nav-list > li:hover > ul.sub-menu {
    display: block;
  }
}
@media (max-width: 768px) {
  .l-header__nav-list > li.is-active > ul.sub-menu {
    display: block;
    transform: none !important;
  }
}

.l-side-nav {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
@media (max-width: 768px) {
  .l-side-nav {
    display: none !important;
  }
}
.l-side-nav__item {
  background: #afa386;
  color: #000;
  writing-mode: vertical-rl;
  padding: 25px 12px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  transition: all 0.3s;
  box-shadow: -4px 4px 15px rgba(0, 0, 0, 0.3);
}
.l-side-nav__item span {
  font-family: "Zen Old Mincho", serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  position: relative;
  display: block;
  margin-bottom: 40px;
}
.l-side-nav__item span::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -25px;
  left: 45%;
  transform: translateX(-50%);
  width: 2px;
  height: 18px;
  background-color: #000;
  z-index: 10;
}
.l-side-nav__item:hover {
  background: #fff;
  color: #000;
}

.l-bottom-nav {
  display: none;
}
@media (max-width: 768px) {
  .l-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #afa386;
    z-index: 9999;
    opacity: 0.8;
  }
  .l-bottom-nav a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 17px;
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    text-decoration: none;
    letter-spacing: 0.1em;
  }
  .l-bottom-nav a:not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, 0.2);
  }
}

.c-pagetop {
  position: fixed;
  right: 40px;
  bottom: 40px;
  width: 60px;
  height: 60px;
  background-color: rgba(175, 163, 134, 0.6);
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
@media (max-width: 768px) {
  .c-pagetop {
    right: 20px;
    bottom: 80px;
    width: 50px;
    height: 50px;
  }
}
.c-pagetop span {
  display: block;
  width: 15px;
  height: 15px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(45deg) translateY(3px) translateX(3px);
}
.c-pagetop.is-visible {
  opacity: 1 !important;
  visibility: visible !important;
}
.c-pagetop:hover {
  background-color: rgba(175, 163, 134, 0.9);
}

.l-footer {
  background-color: #000;
  padding: 0 0 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.l-footer__logo {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 28px;
  color: #afa386;
  margin-bottom: 20px;
  letter-spacing: 0.2em;
}
.l-footer__logo span {
  display: block;
  font-size: 12px;
  color: #fff;
  margin-top: 10px;
}
.l-footer__info {
  font-size: 13px;
  line-height: 2;
  color: #999;
  margin-bottom: 40px;
}
.l-footer__copy {
  font-size: 11px;
  color: #666;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
}

/* 1. メーカー一覧 */
.p-maker-list {
  background-color: #2a2a2a;
  padding: 80px 0 0;
  text-align: center;
  color: #fff;
  border-bottom: 1px solid #444;
}
.p-maker-list__header {
  margin-bottom: 30px;
}
.p-maker-list__logo {
  margin-bottom: 20px;
}
.p-maker-list__logo img {
  width: 350px;
  height: auto;
}
@media (max-width: 768px) {
  .p-maker-list__logo img {
    width: 250px;
  }
}
.p-maker-list__auth {
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #ccc;
}
@media (max-width: 768px) {
  .p-maker-list__auth {
    font-size: 12px;
  }
}
.p-maker-list__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  font-weight: normal;
}
.p-maker-list__grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  width: 100%;
  background-color: #000;
}
@media (max-width: 768px) {
  .p-maker-list__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.p-maker-item {
  display: flex;
  flex-direction: column;
  background-color: #2a2a2a;
}
.p-maker-item__img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}
.p-maker-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.6) contrast(1.1);
}
.p-maker-item__img:hover img {
  filter: brightness(1);
  transform: scale(1.05);
}
.p-maker-item__name {
  width: 100%;
  background-color: #2a2a2a;
  color: #fff;
  font-size: 11px;
  font-family: "Noto Sans JP", sans-serif;
  padding: 15px 0;
  margin: 0;
  text-align: center;
  border-right: 1px solid #333;
  border-top: 1px solid #333;
}
.p-maker-item:last-child .p-maker-item__name {
  border-right: none;
}

/* 2. 会社情報・アクセスセクション */
.p-footer-access {
  background-color: #222;
  padding: 80px 0 0;
  color: #fff;
}
.p-footer-access__flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .p-footer-access__flex {
    flex-direction: column;
    gap: 60px;
    text-align: center;
  }
}
.p-footer-access__col {
  flex: 1;
  width: 100%;
}
.p-footer-access__icon {
  text-align: center;
  margin-bottom: 20px;
  height: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.p-footer-access__icon img {
  height: 30px;
  width: auto;
  opacity: 0.6;
}
.p-footer-access__title, .p-footer-access__company {
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: normal;
  color: #fff;
}
.p-footer-access__info {
  text-align: center;
  line-height: 2;
}
.p-footer-access__address {
  font-size: 15px;
  margin-bottom: 20px;
}
.p-footer-access__time {
  font-size: 14px;
  margin-bottom: 20px;
}
.p-footer-access__tel {
  font-size: 14px;
  letter-spacing: 0.05em;
}
.p-footer-access__text {
  font-size: 13px;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 40px;
  text-align: justify;
}
.p-footer-access__btn {
  display: flex !important;
  margin: 0 auto;
  width: fit-content;
}
.p-footer-access__calendar {
  background-color: transparent;
  padding: 0;
}
.p-footer-access__map {
  width: 100%;
  height: 400px;
}
.p-footer-access__map iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(0.5);
}
@media (max-width: 768px) {
  .p-footer-access__map {
    height: 300px;
  }
}

/* 3. カレンダー詳細 */
.c-calendar__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.c-calendar__current {
  font-family: "Zen Old Mincho", serif;
  font-size: 22px;
  color: #afa386;
  letter-spacing: 0.05em;
}
.c-calendar__prev, .c-calendar__next {
  position: relative;
  width: 30px;
  height: 30px;
  display: block;
}
.c-calendar__prev::after, .c-calendar__next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #afa386;
  border-left: 2px solid #afa386;
}
.c-calendar__prev::after {
  transform: translate(-30%, -50%) rotate(-45deg);
}
.c-calendar__next::after {
  transform: translate(-70%, -50%) rotate(135deg);
}
.c-calendar__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
  font-family: "Noto Sans JP", sans-serif;
}
.c-calendar__table th, .c-calendar__table td {
  text-align: center;
  font-size: 16px;
  color: #fff;
  width: 14.2857142857%;
  position: relative;
  padding: 8px 0;
}
.c-calendar__table th {
  font-weight: normal;
  color: #ccc;
}
.c-calendar__table th.is-red {
  color: #ff0000;
}
.c-calendar__table td span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  margin: 0 auto;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
.c-calendar__table td.is-red {
  color: #ff0000;
}
.c-calendar__table td.is-today span {
  background-color: #444;
}
.c-calendar__table td.is-underlined::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 2px;
  background-color: #ff6699;
}

/* ★4. カレンダー凡例 (Legend) 追加 */
.c-calendar-legend {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}
.c-calendar-legend__item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.c-calendar-legend__color {
  width: 35px;
  height: 20px;
  display: block;
}
.c-calendar-legend__color.is-red {
  background-color: #ff0000;
}
.c-calendar-legend__color.is-pink {
  background-color: #ff6699;
}
.c-calendar-legend__label {
  font-size: 14px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

.c-section-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
  text-align: center;
  margin-bottom: 80px;
  letter-spacing: 0.2em;
  color: #afa386;
}
.c-section-title span {
  font-family: "Zen Old Mincho", serif;
  font-size: 27px;
  border-left: 1px solid #afa386;
  margin-left: 20px;
  padding-left: 20px;
  color: #fff;
}
@media (max-width: 768px) {
  .c-section-title span {
    display: block;
    border: none;
    margin: 0px;
    padding: 0;
    font-size: 22px;
  }
  .c-section-title span::before {
    content: "";
    display: block;
    width: 35px;
    height: 3px;
    background-color: #afa386;
    margin: 10px auto;
  }
}

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #afa386;
  color: #000;
  padding: 18px 45px;
  text-decoration: none;
  font-family: "Zen Old Mincho", serif;
  font-size: 15px;
  letter-spacing: 0.05em;
  transition: 0.3s;
  border: none;
  font-weight: 400;
}
.c-btn span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  margin-left: 18px;
  padding-left: 18px;
  border-left: 1px solid rgba(0, 0, 0, 0.3);
  line-height: 1.2;
  font-weight: 700;
}
.c-btn:hover {
  background-color: #fff;
  color: #000;
  opacity: 1;
}
@media (max-width: 768px) {
  .c-btn {
    padding: 12px 25px;
    font-size: 14px;
  }
  .c-btn span {
    font-size: 12px;
    margin-left: 10px;
    padding-left: 10px;
  }
}

.u-flex {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 768px) {
  .u-flex {
    flex-direction: column;
    gap: 30px;
  }
}

.u-mt-60 {
  margin-top: 60px !important;
}

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

.u-mb-40 {
  margin-bottom: 40px !important;
}

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

.p-top-hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background-color: #000;
  overflow: hidden;
}
.p-top-hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: clamp(200px, 35vw, 600px);
  height: clamp(100px, 30vw, 300px);
  background: rgba(0, 0, 0, 0.7);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: 5;
  pointer-events: none;
}
@media (max-width: 768px) {
  .p-top-hero::before {
    width: 60vw;
    height: 40vw;
  }
}
.p-top-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: right top;
  filter: brightness(1.1);
}
.p-top-hero__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0) 100%);
}
@media (max-width: 768px) {
  .p-top-hero__bg::after {
    background: rgba(0, 0, 0, 0.4);
  }
}
.p-top-hero__content {
  position: relative;
  z-index: 10;
  padding-left: 8%;
}
@media (max-width: 768px) {
  .p-top-hero__content {
    padding-left: 5%;
    padding-right: 5%;
    margin-top: -10vh;
  }
}
.p-top-hero .p-top-news-bar {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  background-color: rgba(255, 255, 255, 0.9);
  color: #000;
  z-index: 20;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .p-top-hero .p-top-news-bar {
    width: 100%;
    bottom: 60px;
    padding: 15px 0;
  }
}
.p-top-hero .p-top-news-bar .l-inner {
  max-width: 100%;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .p-top-hero .p-top-news-bar .l-inner {
    padding: 0 20px;
  }
}
.p-top-hero .p-top-news-bar a {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #000;
  text-decoration: none;
  font-size: 15px;
}
@media (max-width: 768px) {
  .p-top-hero .p-top-news-bar a {
    gap: 20px;
  }
}
.p-top-hero .p-top-news-bar a:hover {
  opacity: 0.7;
}
.p-top-hero .p-top-news-bar__label {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  color: #8e8268;
  letter-spacing: 0.2em;
  font-size: 21px;
  border-right: 1px solid #afa386;
  padding-right: 30px;
}
@media (max-width: 768px) {
  .p-top-hero .p-top-news-bar__label {
    font-size: 16px;
    padding-right: 15px;
  }
}
.p-top-hero .p-top-news-bar__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .p-top-hero .p-top-news-bar__title {
    font-size: 13px;
  }
}
.p-top-hero__title-en {
  display: block;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(32px, 5vw, 68px);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 40px;
  line-height: 1;
}
@media (max-width: 768px) {
  .p-top-hero__title-en {
    font-size: clamp(28px, 10vw, 40px);
    margin-bottom: 25px;
  }
}
.p-top-hero__title-jp {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  color: #fff;
  line-height: 1.7;
}
.p-top-hero__title-jp .line {
  display: inline-block;
  background-color: #000;
  padding: 0.1em 0.5em;
  font-size: clamp(24px, 3.8vw, 48px);
  letter-spacing: 0.1em;
  margin-bottom: 0.15em;
}
@media (max-width: 768px) {
  .p-top-hero__title-jp .line {
    font-size: 22px;
  }
}
.p-top-hero__title-jp .line:last-of-type {
  margin-left: 1.5em;
}
@media (max-width: 768px) {
  .p-top-hero__title-jp .line:last-of-type {
    margin-left: 0.8em;
  }
}
.p-top-hero__title-jp .char {
  opacity: 0;
  display: inline-block;
  transform: translateY(10px);
  filter: blur(5px);
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
}
.p-top-hero__title-jp .char.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.p-top-hero__sub {
  margin-top: 40px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: #fff;
  opacity: 0;
  transition: opacity 1s ease 1s;
}
.p-top-hero__sub.is-visible {
  opacity: 1;
}
@media (max-width: 768px) {
  .p-top-hero__sub {
    font-size: 14px;
    margin-top: 30px;
  }
}

.p-top-about {
  background-color: #000;
}
.p-top-about .c-section-title {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .p-top-about .c-section-title {
    margin-bottom: 40px;
  }
}
.p-top-about__flex {
  display: flex;
  align-items: center;
  gap: 80px;
}
@media (max-width: 768px) {
  .p-top-about__flex {
    flex-direction: column;
    gap: 40px;
  }
}
.p-top-about__content {
  flex: 1.3;
  text-align: center;
}
@media (max-width: 768px) {
  .p-top-about__content {
    order: 2;
  }
}
.p-top-about__lead {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 28px;
  margin-bottom: 40px;
  color: #fff;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .p-top-about__lead {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.p-top-about__text {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 2.4;
  color: #fff;
  margin-bottom: 40px;
}
.p-top-about__text p {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .p-top-about__text {
    font-size: 15px;
  }
}
.p-top-about__img {
  flex: 1;
}
@media (max-width: 768px) {
  .p-top-about__img {
    order: 1;
    width: 100%;
  }
}
.p-top-about__img img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.p-top-visual-strip {
  width: 100%;
  height: 450px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .p-top-visual-strip {
    height: 250px;
    background-attachment: scroll;
  }
}

.p-top-technical {
  background-color: #111;
  overflow: hidden;
}
.p-top-technical .l-inner {
  position: relative;
  padding: 0 100px;
}
@media (max-width: 768px) {
  .p-top-technical .l-inner {
    padding: 0;
  }
}
.p-top-technical .p-tech-slider, .p-top-technical .p-topics-slider {
  overflow: visible;
  position: relative;
  padding-top: 60px;
}
@media (max-width: 768px) {
  .p-top-technical .p-tech-slider, .p-top-technical .p-topics-slider {
    padding-top: 50px;
  }
}
.p-top-technical .swiper-button-prev, .p-top-technical .swiper-button-next {
  position: absolute;
  top: 0;
  width: auto;
  height: auto;
  color: #afa386;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.1em;
  margin: 0;
  z-index: 10;
}
.p-top-technical .swiper-button-prev::after, .p-top-technical .swiper-button-next::after {
  display: none;
}
@media (max-width: 768px) {
  .p-top-technical .swiper-button-prev, .p-top-technical .swiper-button-next {
    display: flex !important;
    font-size: 12px;
    top: -30px;
  }
}
.p-top-technical .swiper-button-prev {
  left: 0;
}
@media (max-width: 768px) {
  .p-top-technical .swiper-button-prev {
    left: 15px;
  }
}
.p-top-technical .swiper-button-next {
  right: 0;
}
@media (max-width: 768px) {
  .p-top-technical .swiper-button-next {
    right: 15px;
  }
}
.p-top-technical .swiper-button-disabled {
  opacity: 0 !important;
  visibility: hidden;
}

.p-post-card {
  background: transparent;
  transition: opacity 0.3s;
}
.p-post-card:hover {
  opacity: 0.8;
}
.p-post-card__img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}
.p-post-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.p-post-card__body {
  text-align: left;
}
@media (max-width: 768px) {
  .p-post-card__body {
    padding: 0 15px;
  }
}
.p-post-card__cat {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  color: #afa386;
  opacity: 0.8;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.p-post-card__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  font-weight: 400;
  height: 3.2em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .p-post-card__title {
    font-size: 16px;
  }
}
.p-post-card__line {
  width: 100%;
  height: 1px;
  background-color: #afa386;
  opacity: 0.6;
}

.c-new-mark {
  position: absolute;
  top: 15px;
  left: -35px;
  width: 120px;
  height: 30px;
  background-color: #d3c4b1;
  color: #000;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-45deg);
  z-index: 10;
}
@media (max-width: 768px) {
  .c-new-mark {
    top: 10px;
    left: -30px;
    width: 100px;
    height: 24px;
    font-size: 11px;
  }
}

.p-service-item {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  overflow: hidden;
}
.p-service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.p-service-item__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .p-service-item__inner {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
  }
}
.p-service-item__img {
  flex: 1;
}
.p-service-item__img img {
  width: 100%;
  max-width: 450px;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
}
.p-service-item__content {
  flex: 1.3;
  color: #fff;
}
.p-service-item__lead {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .p-service-item__lead {
    font-size: 16px;
  }
}
.p-service-item__text {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .p-service-item__text {
    margin-bottom: 30px;
  }
}
.p-service-item__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
}
@media (max-width: 768px) {
  .p-service-item__bottom {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
.p-service-item__title {
  display: inline-block;
  background-color: #afa386;
  padding: 12px 35px;
  margin: 0;
}
.p-service-item__title a {
  color: #000;
  text-decoration: none;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 0.05em;
  line-height: 1;
  display: block;
}
@media (max-width: 768px) {
  .p-service-item__title {
    padding: 10px 25px;
  }
  .p-service-item__title a {
    font-size: 22px;
  }
}
.p-service-item__sub {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 24px;
  color: #afa386;
  display: block;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .p-service-item__sub {
    margin-top: 10px;
  }
}
.p-service-item__btn-circle {
  width: 60px;
  height: 60px;
  border: 3px solid #afa386;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.p-service-item__btn-circle::after {
  content: "";
  width: 13px;
  height: 13px;
  border-top: 3px solid #afa386;
  border-right: 3px solid #afa386;
  transform: rotate(45deg) translateX(-2px);
}
.p-service-item__btn-circle:hover {
  background: #afa386;
}
.p-service-item__btn-circle:hover::after {
  border-color: #000;
}

.p-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}
@media (max-width: 768px) {
  .p-service-grid {
    grid-template-columns: 1fr;
  }
}
.p-service-grid__item {
  position: relative;
  height: 350px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
@media (max-width: 768px) {
  .p-service-grid__item {
    height: 250px;
  }
}
.p-service-grid__item:hover .p-service-grid__bg {
  transform: scale(1.1);
}
.p-service-grid__item:hover .p-service-grid__circle {
  background-color: #afa386;
  border-color: #afa386;
}
.p-service-grid__item:hover .p-service-grid__circle::after {
  border-color: #000;
}
.p-service-grid__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  z-index: 1;
}
.p-service-grid__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.p-service-grid__content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 40px;
}
.p-service-grid__title {
  display: inline-block;
  background-color: #afa386;
  padding: 0px 30px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 26px;
  color: #000;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .p-service-grid__title {
    font-size: 20px;
    padding: 0px 20px;
  }
}
.p-service-grid__sub {
  display: block;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 24px;
  color: #afa386;
  letter-spacing: 0.05em;
  text-align: left;
  max-width: fit-content;
  margin: 0 auto;
  width: 100%;
}
.p-service-grid__circle {
  position: absolute;
  bottom: 50px;
  width: 50px;
  height: 50px;
  border: 3px solid #afa386;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: 0.3s;
}
.p-service-grid__circle::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 3px solid #afa386;
  border-right: 3px solid #afa386;
  transform: rotate(45deg) translateX(-2px);
}
@media (max-width: 768px) {
  .p-service-grid__circle {
    bottom: 30px;
    width: 40px;
    height: 40px;
  }
}

.p-top-contact__box {
  border: 1px solid #afa386;
  padding: 100px 50px;
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, #000 0%, #111 100%);
}
@media (max-width: 768px) {
  .p-top-contact__box {
    padding: 60px 20px;
    margin-bottom: 60px;
  }
}
.p-top-contact__title-en {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 40px;
  letter-spacing: 0.3em;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .p-top-contact__title-en {
    font-size: 28px;
  }
}
.p-top-contact__lead {
  font-size: 18px;
  margin-bottom: 50px;
  color: #fff;
}
.p-top-contact__warning {
  background: rgba(200, 0, 0, 0.1);
  border-left: 4px solid #c00;
  padding: 30px;
  margin-bottom: 50px;
  text-align: left;
  font-size: 14px;
  line-height: 1.8;
  color: #fcc;
}

/* =========================================
   共通・汎用レイアウト
   ========================================= */
.l-section {
  padding: 60px 0 120px;
}
@media (max-width: 768px) {
  .l-section {
    padding: 40px 0 80px;
  }
}

.c-title-box {
  display: inline-block;
  background-color: #fff;
  color: #000;
  font-family: "Zen Old Mincho", serif;
  font-size: 32px;
  padding: 10px 25px;
  letter-spacing: 0.1em;
  margin-bottom: 60px;
  line-height: 1.8em;
}
@media (max-width: 768px) {
  .c-title-box {
    font-size: 18px;
    padding: 8px 20px;
    margin-bottom: 20px;
  }
}

.p-page-hero {
  height: 350px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: auto;
}
.p-page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.p-page-hero .l-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.p-page-hero__title {
  display: inline-block;
  background-color: #000;
  padding: 0px 20px;
  font-family: "Zen Old Mincho", serif;
  font-size: 30px;
  color: #fff;
  letter-spacing: 0.1em;
  opacity: 0.8;
  position: relative;
  z-index: 1500;
  margin-top: 100px;
}
@media (max-width: 768px) {
  .p-page-hero__title {
    font-size: 24px;
    padding: 0 15px;
    margin-top: 80px;
  }
}
@media (max-width: 768px) {
  .p-page-hero {
    height: 250px;
  }
}

.c-breadcrumb {
  padding: 25px 0;
  font-size: 14px;
  color: #aaa;
  font-family: "Noto Sans JP", sans-serif;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.c-breadcrumb .l-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .c-breadcrumb .l-inner {
    padding: 0 20px;
  }
}
.c-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-breadcrumb__list li {
  display: flex;
  align-items: center;
}
.c-breadcrumb__list li::after {
  content: "｜";
  margin: 0 15px;
  color: #555;
}
.c-breadcrumb__list li:last-child::after {
  display: none;
}
.c-breadcrumb__list li:last-child span {
  color: #888;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 300px;
}
@media (max-width: 768px) {
  .c-breadcrumb__list li:last-child span {
    max-width: 150px;
  }
}
.c-breadcrumb__list li a {
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
}
.c-breadcrumb__list li a:hover {
  color: #afa386;
}

/* =========================================
   エンジン関連ページ (LP)
   ========================================= */
/* 装飾パーツ */
.c-circle-item {
  width: 140px;
  height: 140px;
  border: 1px solid #afa386;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
}
@media (max-width: 768px) {
  .c-circle-item {
    width: 110px;
    height: 110px;
    font-size: 14px;
  }
}

/* 導入エリア */
.p-engine-intro__catch {
  margin-bottom: 60px;
}
.p-engine-intro__catch .line {
  display: inline-block;
  background-color: #fff;
  color: #000;
  font-family: "Zen Old Mincho", serif;
  font-size: 30px;
  padding: 5px 15px;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .p-engine-intro__catch .line {
    font-size: 18px;
    padding: 4px 10px;
  }
}
@media (max-width: 768px) {
  .p-engine-intro__catch {
    margin-bottom: 40px;
  }
}
.p-engine-intro__lead {
  font-family: "Zen Old Mincho", serif;
  font-size: 24px;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 50px;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .p-engine-intro__lead {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.p-engine-intro__flex {
  display: flex;
  gap: 80px;
  align-items: center;
}
@media (max-width: 768px) {
  .p-engine-intro__flex {
    flex-direction: column;
    gap: 40px;
  }
}
.p-engine-intro__text {
  flex: 1.1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  line-height: 2;
  color: #ddd;
}
.p-engine-intro__text p {
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .p-engine-intro__text {
    font-size: 14px;
  }
}
.p-engine-intro__img {
  flex: 1;
}
.p-engine-intro__img img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* 症状エリア */
.p-engine-symptoms {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  background-color: #000;
}
@media (max-width: 768px) {
  .p-engine-symptoms {
    padding: 40px 0;
  }
}
.p-engine-symptoms__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background-size: cover;
  background-position: center;
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
  opacity: 0.6;
  filter: grayscale(0.5);
}
@media (max-width: 768px) {
  .p-engine-symptoms__bg {
    width: 100%;
    height: 50%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 0.4;
  }
}
.p-engine-symptoms__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .p-engine-symptoms__inner {
    align-items: center;
  }
}
.p-engine-symptoms__title {
  display: inline-block;
  background-color: #000;
  padding: 10px 20px;
  font-family: "Zen Old Mincho", serif;
  font-size: 28px;
  color: #fff;
  letter-spacing: 0.15em;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .p-engine-symptoms__title {
    font-size: 18px;
    text-align: center;
    margin-top: 180px;
    margin-bottom: 40px;
    padding: 8px 15px;
  }
}
.p-engine-symptoms__circles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px;
  max-width: 460px;
}
@media (max-width: 768px) {
  .p-engine-symptoms__circles {
    max-width: 100%;
  }
}

/* 解決策エリア */
.p-engine-solution__head {
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-size: 24px;
  color: #fff;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .p-engine-solution__head {
    font-size: 16px;
    margin-bottom: 40px;
  }
}
.p-engine-solution__img-only {
  text-align: center;
  width: 400px;
  margin: 0 auto;
}
.p-engine-solution__img-only img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-engine-solution__img-only {
    width: 100%;
    margin-bottom: 30px;
  }
}

.p-engine-solution__title {
  display: inline-block;
  font-family: "Zen Old Mincho", serif;
  font-size: 32px;
  color: #fff;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.p-engine-solution__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -10px;
  right: -10px;
  height: 50%;
  z-index: -1;
}
.p-engine-solution__title.is-orange::after {
  background-color: #d64d14;
}
.p-engine-solution__title.is-blue::after {
  background-color: #006eb0;
}
@media (max-width: 768px) {
  .p-engine-solution__title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

/* 詳細エリア */
.p-engine-detail__block {
  display: flex;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.p-engine-detail__block:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .p-engine-detail__block {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
  }
}
.p-engine-detail__text-area {
  flex: 1.2;
  width: 100%;
}
.p-engine-detail__img-area {
  flex: 1;
  width: 100%;
}
.p-engine-detail__img-area img {
  width: 100%;
  height: auto;
}
.p-engine-detail__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 2.2;
  color: #fff;
  margin-bottom: 40px;
}
.p-engine-detail__desc p {
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  .p-engine-detail__desc {
    font-size: 14px;
    margin-bottom: 30px;
  }
}
.p-engine-detail__box {
  border: 1px solid #afa386;
  padding: 35px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .p-engine-detail__box {
    padding: 25px;
    margin-bottom: 30px;
  }
}
.p-engine-detail__box-title {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  color: #fff;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .p-engine-detail__box-title {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.p-engine-detail__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .p-engine-detail__list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.p-engine-detail__list li {
  position: relative;
  padding-left: 25px;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.05em;
}
.p-engine-detail__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 12px;
  height: 12px;
  border: 1px solid #fff;
}
@media (max-width: 768px) {
  .p-engine-detail__list li {
    font-size: 14px;
  }
}
.p-engine-detail__info {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 0;
  font-size: 14px;
  line-height: 1.8;
  color: #fff;
}
.p-engine-detail__info dt {
  width: 6em;
}
.p-engine-detail__info dd {
  width: calc(100% - 6em);
  margin: 0;
}
@media (max-width: 768px) {
  .p-engine-detail__info {
    font-size: 13px;
  }
}

/* 料金エリア */
.p-engine-price {
  margin-bottom: 40px;
  width: 100%;
}
.p-engine-price__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .p-engine-price__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
.p-engine-price__caption {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #fff;
  margin: 0;
}
.p-engine-price__sub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  color: #aaa;
  margin: 0;
}
.p-engine-price__scroll {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  border: 1px solid #444;
}

.c-scroll-hint {
  display: none;
}
@media (max-width: 768px) {
  .c-scroll-hint {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 10;
    background: rgba(0, 0, 0, 0.7);
    color: #afa386;
    width: 150px;
    height: 50px;
    border-radius: 30px;
    font-size: 12px;
    line-height: 50px;
    text-align: center;
    letter-spacing: 0.1em;
    pointer-events: none;
    animation: fadeOutHint 3s forwards 1s;
  }
  .c-scroll-hint::before {
    content: "☝️";
    font-size: 20px;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
    animation: swipeMove 1.5s infinite;
  }
}

@keyframes swipeMove {
  0% {
    margin-right: 20px;
  }
  50% {
    margin-right: 0px;
  }
  100% {
    margin-right: 20px;
  }
}
@keyframes fadeOutHint {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
.c-price-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
}
.c-price-table th, .c-price-table td {
  border: 1px solid #444;
  padding: 12px 10px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #fff;
}
@media (max-width: 768px) {
  .c-price-table th, .c-price-table td {
    font-size: 12px;
    padding: 8px 5px;
  }
}
.c-price-table th {
  background-color: #222;
  color: #afa386;
  width: 100px;
}
@media (max-width: 768px) {
  .c-price-table th {
    width: 80px;
  }
}
.c-price-table td {
  background-color: #111;
}

/* ビフォーアフター */
.p-engine-ba__top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .p-engine-ba__top {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 30px;
  }
}
.p-engine-ba__item img {
  width: 100%;
  height: auto;
  margin-bottom: 25px;
}
.p-engine-ba__item p {
  font-size: 14px;
  line-height: 2;
  color: #fff;
}
@media (max-width: 768px) {
  .p-engine-ba__item p {
    font-size: 13px;
  }
}
.p-engine-ba__bottom {
  display: flex;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) {
  .p-engine-ba__bottom {
    flex-direction: column;
    gap: 30px;
  }
}
.p-engine-ba__img {
  flex: 1;
}
.p-engine-ba__img img {
  width: 100%;
  height: auto;
}
.p-engine-ba__text {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.p-engine-ba__text p {
  font-size: 14px;
  line-height: 2;
  color: #fff;
}
@media (max-width: 768px) {
  .p-engine-ba__text p {
    font-size: 13px;
  }
}

/* 動画エリア */
.p-engine-movie__inner {
  max-width: 800px;
  margin: 0 auto;
}
.p-engine-movie__wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.p-engine-movie__wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-engine-movie__note {
  text-align: center;
  font-size: 15px;
  color: #ccc;
  margin-top: 20px;
  font-family: "Zen Old Mincho", serif;
}
@media (max-width: 768px) {
  .p-engine-movie__note {
    font-size: 13px;
    margin-top: 15px;
  }
}

/* お客様の声 */
.p-engine-voice__hero {
  height: 400px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media (max-width: 768px) {
  .p-engine-voice__hero {
    height: 250px;
    background-attachment: scroll;
  }
}
.p-engine-voice__lead {
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-size: 26px;
  line-height: 2;
  color: #fff;
  letter-spacing: 0.15em;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .p-engine-voice__lead {
    font-size: 18px;
    margin-bottom: 40px;
  }
}
.p-engine-voice__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .p-engine-voice__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.p-engine-voice__card {
  background-color: #555;
  padding: 40px;
  color: #fff;
}
@media (max-width: 768px) {
  .p-engine-voice__card {
    padding: 25px;
  }
}
.p-engine-voice__text {
  font-size: 14px;
  line-height: 2.2;
  margin-bottom: 30px;
}
.p-engine-voice__text p {
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  .p-engine-voice__text {
    font-size: 13px;
  }
}
.p-engine-voice__meta {
  font-size: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 20px;
  margin: 0;
  letter-spacing: 0.05em;
}

/* メッセージ */
.p-engine-message__row {
  display: flex;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.p-engine-message__row.is-reverse {
  flex-direction: row-reverse;
}
.p-engine-message__row:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .p-engine-message__row {
    flex-direction: column-reverse;
    gap: 30px;
    margin-bottom: 60px;
  }
  .p-engine-message__row.is-reverse {
    flex-direction: column-reverse;
  }
}
.p-engine-message__text {
  flex: 1;
  width: 100%;
}
.p-engine-message__catch {
  font-family: "Zen Old Mincho", serif;
  font-size: 24px;
  color: #fff;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .p-engine-message__catch {
    font-size: 18px;
    margin-bottom: 25px;
  }
}
.p-engine-message__desc {
  font-size: 15px;
  line-height: 2.2;
  color: #fff;
}
.p-engine-message__desc p {
  margin-bottom: 1.5em;
}
@media (max-width: 768px) {
  .p-engine-message__desc {
    font-size: 14px;
  }
}
.p-engine-message__img {
  flex: 1;
  width: 100%;
}
.p-engine-message__img img {
  width: 100%;
  height: auto;
}
.p-engine-message__caption {
  font-size: 13px;
  margin-top: 20px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .p-engine-message__caption {
    font-size: 12px;
  }
}

/* ギャラリー */
.p-engine-gallery {
  overflow: hidden;
}
.p-engine-gallery .l-inner {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .p-engine-gallery .l-inner {
    margin-bottom: 40px;
  }
}
.p-engine-gallery__slider {
  width: 100%;
  min-height: 300px;
}
@media (max-width: 768px) {
  .p-engine-gallery__slider {
    min-height: 200px;
  }
}
.p-engine-gallery .swiper-wrapper {
  transition-timing-function: ease;
}
.p-engine-gallery .swiper-slide {
  width: max-content;
  height: 300px;
}
@media (max-width: 768px) {
  .p-engine-gallery .swiper-slide {
    height: 200px;
  }
}
.p-engine-gallery .swiper-slide img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}

/* よくあるご質問 (FAQ) */
.p-engine-faq__list {
  max-width: 900px;
  margin: 0 auto;
}
.p-engine-faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 0;
}
.p-engine-faq__item:first-child {
  padding-top: 0;
}
@media (max-width: 768px) {
  .p-engine-faq__item {
    padding: 30px 0;
  }
}
.p-engine-faq__q {
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
  color: #afa386;
  margin-bottom: 20px;
  display: flex;
  gap: 15px;
  line-height: 1.5;
}
.p-engine-faq__q::before {
  content: "Q.";
  font-weight: bold;
}
@media (max-width: 768px) {
  .p-engine-faq__q {
    font-size: 16px;
    margin-bottom: 15px;
    gap: 10px;
  }
}
.p-engine-faq__a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #fff;
  line-height: 2;
  margin: 0;
  padding-left: 35px;
  display: flex;
  gap: 15px;
}
.p-engine-faq__a::before {
  content: "A.";
  color: #888;
  font-weight: bold;
}
@media (max-width: 768px) {
  .p-engine-faq__a {
    font-size: 14px;
    padding-left: 0;
    gap: 10px;
  }
}

/* お問い合わせ誘導ボタン */
.p-engine-cta {
  text-align: center;
  margin-top: 100px;
}
.p-engine-cta__text {
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .p-engine-cta__text {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .p-engine-cta {
    margin-top: 60px;
  }
}

/* =========================================
   アクセスページ
========================================= */
@media (max-width: 768px) {
  .p-access .l-inner {
    padding: 0 20px;
  }
}
.p-access-map {
  margin-bottom: 60px;
}
.p-access-map iframe {
  width: 100%;
  height: 450px;
  filter: grayscale(0.5);
}
@media (max-width: 768px) {
  .p-access-map iframe {
    height: 300px;
  }
}
.p-access-info {
  margin-bottom: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.p-access-info__list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px 40px;
  color: #fff;
  font-size: 15px;
  max-width: 800px;
  margin: 0 auto;
}
.p-access-info__list dt {
  color: #afa386;
  font-family: -serif;
  letter-spacing: 0.1em;
  min-width: 5em;
}
.p-access-info__list dd {
  margin: 0;
}
.p-access-info__list dd a {
  color: #fff;
  text-decoration: none;
}
.p-access-info__list dd a:hover {
  color: -gold;
}
@media (max-width: 768px) {
  .p-access-info__list {
    grid-template-columns: 1fr;
    gap: 10px;
    font-size: 14px;
  }
  .p-access-info__list dt {
    margin-top: 15px;
  }
}
.p-access-block {
  margin-bottom: 100px;
  text-align: center;
}
.p-access-block:last-child {
  margin-bottom: 0;
}
.p-access-block__inner {
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
  font-size: 16px;
  line-height: 2;
  text-align: left;
}
@media (max-width: 768px) {
  .p-access-block__inner {
    font-size: 14px;
  }
}
.p-access-block__img {
  margin-top: 30px;
}
.p-access-block__img img {
  width: 100%;
  height: auto;
}
.p-access-route {
  margin-bottom: 60px;
}
.p-access-route:last-child {
  margin-bottom: 0;
}
.p-access-route__title {
  font-family: -serif;
  font-size: 22px;
  color: #fff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid rgba(175, 163, 134, 0.4);
  padding-bottom: 10px;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .p-access-route__title {
    font-size: 18px;
  }
}
.p-access-route__icon {
  background: -gold;
  color: #000;
  font-family: -sans;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 2px;
}
.p-access-route__img {
  margin: 30px auto;
  text-align: center;
}
.p-access-route__timetable {
  margin-top: 50px;
  background-color: #111;
  padding: 40px;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .p-access-route__timetable {
    padding: 30px 20px;
  }
}
.p-access-route__note {
  text-align: center;
  font-size: 14px;
  color: #ccc;
  margin-bottom: 30px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .p-access-route__note {
    font-size: 13px;
    text-align: left;
  }
}
.p-access-timetable-btns {
  display: flex;
  gap: 30px;
  justify-content: center;
}
@media (max-width: 768px) {
  .p-access-timetable-btns {
    flex-direction: column;
    gap: 20px;
  }
}

.c-timetable-btn {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  font-family: -sans;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  width: 48%;
  max-width: 420px;
}
@media (max-width: 768px) {
  .c-timetable-btn {
    width: 100%;
    max-width: 100%;
  }
}
.c-timetable-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
  opacity: 0.9;
}
.c-timetable-btn__time {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  padding: 15px 10px;
  color: #fff;
  flex-shrink: 0;
}
.c-timetable-btn__time .small {
  font-size: 11px;
  margin-bottom: 2px;
  text-align: center;
  line-height: 1.2;
}
.c-timetable-btn__time .num {
  font-size: 38px;
  line-height: 1;
  margin-bottom: -2px;
}
.c-timetable-btn__time .unit {
  font-size: 12px;
}
@media (max-width: 768px) {
  .c-timetable-btn__time {
    width: 80px;
    padding: 10px 5px;
  }
  .c-timetable-btn__time .small {
    font-size: 10px;
  }
  .c-timetable-btn__time .num {
    font-size: 32px;
  }
}
.c-timetable-btn__text {
  flex: 1;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.c-timetable-btn__text::after {
  content: "›";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #999;
}
.c-timetable-btn__text .mainTextText {
  font-size: 17px;
  color: #222;
  margin-bottom: 2px;
  display: block;
}
@media (max-width: 768px) {
  .c-timetable-btn__text .mainTextText {
    font-size: 14px;
  }
}
.c-timetable-btn__text .subTextText {
  font-size: 10px;
  color: #666;
  display: block;
  line-height: 1.2;
}
.c-timetable-btn.is-blue .c-timetable-btn__time {
  background-color: #3b76bb;
}
.c-timetable-btn.is-blue {
  border-left: 6px solid #3b76bb;
}
.c-timetable-btn.is-pink .c-timetable-btn__time {
  background-color: #e5428a;
}
.c-timetable-btn.is-pink {
  border-left: 6px solid #e5428a;
}

/* =========================================
   Q&Aページ
========================================= */
.p-qa__group {
  margin-bottom: 80px;
}
.p-qa__group:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .p-qa__group {
    margin-bottom: 50px;
  }
}
.p-qa__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 0;
}
.p-qa__item:first-child {
  padding-top: 0;
}
.p-qa__item:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .p-qa__item {
    padding: 30px 0;
  }
}
.p-qa__q {
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
  color: #afa386;
  margin-bottom: 20px;
  display: flex;
  gap: 15px;
  line-height: 1.5;
}
.p-qa__q span {
  font-weight: bold;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .p-qa__q {
    font-size: 16px;
    margin-bottom: 15px;
    gap: 10px;
  }
}
.p-qa__a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #fff;
  line-height: 2;
  margin: 0;
  padding-left: 35px;
  position: relative;
  display: block;
}
.p-qa__a::before {
  content: "A.";
  color: #888;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}
.p-qa__a a {
  color: #afa386;
  text-decoration: underline;
  transition: 0.3s;
}
.p-qa__a a:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .p-qa__a {
    font-size: 14px;
    padding-left: 0;
  }
  .p-qa__a::before {
    position: static;
    display: inline-block;
    margin-right: 10px;
  }
}

/* ========================================= お問い合わせページ ========================================= */
.p-contact-warning {
  background-color: #0a0a0a;
  border: 1px solid rgba(175, 163, 134, 0.5);
  padding: 60px 40px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .p-contact-warning {
    padding: 30px 20px;
    margin-bottom: 40px;
  }
}
.p-contact-warning__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 26px;
  color: #afa386;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .p-contact-warning__title {
    font-size: 20px;
  }
}
.p-contact-warning__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 2;
  color: #fff;
}
@media (max-width: 768px) {
  .p-contact-warning__text {
    font-size: 14px;
  }
}
.p-contact-warning__text strong {
  color: #afa386;
  font-weight: 400;
}

.c-form {
  max-width: 800px;
  margin: 0 auto;
}
.c-form dl, .c-form dt, .c-form dd {
  margin: 0;
  padding: 0;
}
.c-form p {
  margin: 0;
}
.c-form__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.c-form__label {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 20px;
  color: #fff;
  margin-bottom: -10px;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .c-form__label {
    font-size: 18px;
  }
}
.c-form__required {
  background-color: #c00;
  color: #fff;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 2px;
  vertical-align: middle;
  margin-left: 10px;
  font-family: "Noto Sans JP", sans-serif;
}
.c-form__required-small {
  color: #c00;
  font-size: 13px;
  margin-left: 5px;
}
.c-form__input {
  margin-bottom: 10px;
}
.c-form__input input[type=text], .c-form__input input[type=email], .c-form__input input[type=tel], .c-form__input input[type=date], .c-form__input textarea {
  width: 100%;
  max-width: 100%;
  background-color: #111;
  border: 1px solid #444;
  color: #fff;
  padding: 18px;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  transition: 0.3s;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
.c-form__input input[type=text]:focus, .c-form__input input[type=email]:focus, .c-form__input input[type=tel]:focus, .c-form__input input[type=date]:focus, .c-form__input textarea:focus {
  border-color: #afa386;
  outline: none;
  background-color: #000;
}
.c-form__input textarea {
  height: 200px;
}
.c-form__input .wpcf7-list-item {
  display: inline-block;
  margin: 0 30px 12px 0;
  color: #ccc;
}
.c-form__input .wpcf7-list-item label {
  cursor: pointer;
  position: relative;
  padding-left: 35px;
  display: inline-block;
  line-height: 1.5;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 768px) {
  .c-form__input .wpcf7-list-item label {
    font-size: 15px;
  }
}
.c-form__input .wpcf7-list-item input {
  display: none;
}
.c-form__input .wpcf7-list-item .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 1px solid #afa386;
  background: #111;
  transition: 0.3s;
}
.c-form__input .wpcf7-list-item .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 45%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 14px;
  border-bottom: 2px solid #afa386;
  border-right: 2px solid #afa386;
  opacity: 0;
  transition: 0.2s;
}
.c-form__input .wpcf7-list-item input:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.c-form__note {
  font-size: 14px;
  color: #afa386;
  margin-bottom: 15px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .c-form__note {
    font-size: 13px;
  }
}
.c-form__flex-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.c-form__sub-field span {
  display: block;
  font-size: 15px;
  color: #888;
  margin-bottom: 8px;
}
.c-form__submit {
  text-align: center;
  margin-top: 60px;
}
.c-form__submit input[type=submit] {
  background-color: #afa386;
  color: #000;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 22px;
  padding: 20px 100px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  letter-spacing: 0.15em;
}
.c-form__submit input[type=submit]:hover {
  background-color: #fff;
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  .c-form__submit input[type=submit] {
    width: 100%;
    padding: 15px;
    font-size: 18px;
  }
}

/* =========================================
   車検ページ
========================================= */
.p-inspection-intro {
  margin-bottom: 80px;
}
.p-inspection-intro__lead {
  font-family: -serif;
  font-size: 24px;
  color: #fff;
  line-height: 1.8;
  margin: 40px 0;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .p-inspection-intro__lead {
    font-size: 18px;
  }
}
.p-inspection-intro__box {
  background-color: #1a1a1a;
  border: 1px solid rgba(175, 163, 134, 0.4);
  padding: 40px;
  color: #fff;
  font-size: 17px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .p-inspection-intro__box {
    padding: 25px;
    font-size: 15px;
  }
}
.p-inspection-text {
  font-family: -sans;
  font-size: 17px;
  line-height: 2.2;
  color: #ddd;
  margin-bottom: 30px;
}
.p-inspection-sub-title {
  font-family: -serif;
  font-size: 22px;
  color: #fff;
  margin: 50px 0 25px;
  border-left: 3px solid -gold;
  padding-left: 15px;
}
.p-inspection-importance {
  margin-bottom: 100px;
}
.p-inspection-importance__grid {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.p-inspection-importance__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 30px;
}
.p-inspection-importance__item:last-child {
  border-bottom: none;
}
.p-inspection-importance__item p {
  font-family: -sans;
  font-size: 17px;
  line-height: 2;
  color: #ddd;
}
.p-inspection-flow {
  margin-bottom: 100px;
}
.p-inspection-flow__img {
  margin-top: 40px;
}
.p-inspection-flow__img img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.p-inspection-price {
  margin-bottom: 100px;
}
.p-inspection-price__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}
@media (max-width: 768px) {
  .p-inspection-price__grid {
    grid-template-columns: 1fr;
  }
}
.p-inspection-price__card {
  background-color: #1a1a1a;
  padding: 30px;
  border-top: 3px solid -gold;
  text-align: center;
}
.p-inspection-price__card span {
  display: block;
  font-family: -serif;
  font-size: 18px;
  color: -gold;
  margin-bottom: 15px;
}
.p-inspection-price__card p {
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
}
.p-inspection-price__note {
  font-size: 14px;
  color: #aaa;
  line-height: 1.8;
}
.p-inspection-price__note p {
  margin-bottom: 10px;
}
.p-inspection-brands {
  display: flex;
  gap: 60px;
  margin-top: 100px;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .p-inspection-brands {
    flex-direction: column;
    gap: 40px;
  }
}
.p-inspection-brands__item {
  flex: 1;
  text-align: center;
}
.p-inspection-brands__item img {
  margin-bottom: 25px;
  opacity: 0.8;
  filter: grayscale(1);
  transition: 0.3s;
}
.p-inspection-brands__item img:hover {
  opacity: 1;
  filter: grayscale(0);
}
.p-inspection-brands__item p {
  text-align: left;
  font-size: 14px;
  line-height: 1.8;
  color: #ccc;
}

.c-dot-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.c-dot-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}
.c-dot-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background-color: -gold;
  border-radius: 50%;
}

.p-archive-hero {
  height: 350px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0;
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .p-archive-hero {
    height: 250px;
  }
}

.p-archive-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.p-archive-hero .l-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.p-archive-hero__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 30px;
  color: #fff;
  letter-spacing: 0.1em;
  background-color: #000;
  display: inline-block;
  padding: 0px 20px;
  opacity: 0.8;
  margin-top: 100px;
  position: relative;
  z-index: 1500;
}
@media (max-width: 768px) {
  .p-archive-hero__title {
    font-size: 24px;
    padding: 0 15px;
    margin-top: 80px;
  }
}

.p-archive-lead {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .p-archive-lead {
    margin-bottom: 50px;
  }
}

.p-archive-lead .line {
  display: inline-block;
  background-color: #fff;
  color: #000;
  font-family: "Zen Old Mincho", serif;
  font-size: 32px;
  padding: 8px 20px;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .p-archive-lead .line {
    font-size: 20px;
    padding: 5px 15px;
  }
}

.p-archive-search {
  margin-bottom: 80px;
}

.p-archive-search__form {
  display: flex;
  gap: 40px;
}
@media (max-width: 768px) {
  .p-archive-search__form {
    flex-direction: column;
    gap: 30px;
  }
}

.p-archive-search__box {
  flex: 1;
}

.p-archive-search__box label {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #fff;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .p-archive-search__box label {
    font-size: 14px;
  }
}

.p-archive-search__select {
  position: relative;
}

.p-archive-search__select select {
  width: 100%;
  appearance: none;
  background: #000;
  border: 1px solid #afa386;
  color: #fff;
  padding: 18px 20px;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  cursor: pointer;
  outline: none;
}

.p-archive-search__select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 12px;
  height: 12px;
  border-bottom: 1px solid #afa386;
  border-right: 1px solid #afa386;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.p-archive-search__input {
  display: flex;
  border: 1px solid #afa386;
  background: #000;
}

.p-archive-search__input input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  padding: 18px 20px;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  outline: none;
}

.p-archive-search__input input::placeholder {
  color: #888;
}

.p-archive-search__input button {
  width: 70px;
  background: transparent;
  border: none;
  border-left: 1px solid #afa386;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
}

.p-archive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .p-archive-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 15px;
    margin-bottom: 60px;
    padding: 0 10px;
  }
}
@media (max-width: 480px) {
  .p-archive-grid {
    grid-template-columns: 1fr;
  }
}

.p-post-card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.p-post-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-post-card__line {
  width: 100%;
  height: 1px;
  background-color: #afa386;
  opacity: 0.6;
  margin-top: 15px;
}

.p-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.p-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  height: 45px;
  border: 1px solid #afa386;
  color: #afa386;
  text-decoration: none;
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
  background-color: transparent;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .p-pagination .page-numbers {
    min-width: 35px;
    height: 35px;
    font-size: 14px;
  }
}

.p-pagination .page-numbers.current {
  background-color: #afa386;
  color: #000;
  pointer-events: none;
}

.p-pagination .page-numbers:hover {
  background-color: rgba(175, 163, 134, 0.2);
}

.p-pagination .page-numbers.next, .p-pagination .page-numbers.prev {
  border: none;
  width: auto;
  min-width: auto;
  padding: 0 15px;
  letter-spacing: 0.1em;
  font-size: 16px;
}
@media (max-width: 768px) {
  .p-pagination .page-numbers.next, .p-pagination .page-numbers.prev {
    padding: 0 5px;
    font-size: 14px;
  }
}

.p-pagination .page-numbers.next:hover, .p-pagination .page-numbers.prev:hover {
  background: transparent;
  opacity: 0.7;
}

.p-pagination .page-numbers.dots {
  border: none;
  min-width: auto;
}

/* =========================================
   共通パンくずリスト（見た目の崩れを修正）
========================================= */
.c-breadcrumb {
  background-color: #000;
  padding: 25px 0;
  font-size: 14px;
  color: #aaa;
  font-family: "Noto Sans JP", sans-serif;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.c-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-breadcrumb__list li {
  display: flex;
  align-items: center;
}
.c-breadcrumb__list li::after {
  content: "｜";
  margin: 0 15px;
  color: #555;
}
.c-breadcrumb__list li:last-child::after {
  display: none;
}
.c-breadcrumb__list li:last-child span {
  color: #888;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 300px;
}
@media (max-width: 768px) {
  .c-breadcrumb__list li:last-child span {
    max-width: 150px;
  }
}
.c-breadcrumb__list li a {
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
}
.c-breadcrumb__list li a:hover {
  color: #afa386;
}

/* =========================================
   2カラムレイアウト
========================================= */
.l-2column {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .l-2column {
    flex-direction: column;
    gap: 40px;
  }
}

.l-main-col {
  width: calc(100% - 360px);
}
@media (max-width: 768px) {
  .l-main-col {
    width: 100%;
  }
}

.l-sidebar {
  width: 300px;
}
@media (max-width: 768px) {
  .l-sidebar {
    width: 100%;
  }
}

/* =========================================
   記事本文エリア
========================================= */
.p-single-post {
  background-color: #1a1a1a;
  padding: 60px 50px;
}
@media (max-width: 768px) {
  .p-single-post {
    padding: 40px 20px;
  }
}
.p-single-post__header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 30px;
  margin-bottom: 40px;
}
.p-single-post__meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
.p-single-post__date {
  font-family: "Noto Sans JP", sans-serif;
  color: #aaa;
  font-size: 14px;
  letter-spacing: 0.1em;
}
.p-single-post__new {
  background-color: #afa386;
  color: #000;
  font-family: "Zen Old Mincho", serif;
  font-size: 11px;
  padding: 2px 10px;
  letter-spacing: 0.1em;
}
.p-single-post__cat {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #afa386;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}
.p-single-post__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 28px;
  color: #fff;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .p-single-post__title {
    font-size: 22px;
  }
}
.p-single-post__content {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  line-height: 2;
  color: #ddd;
}
.p-single-post__content p {
  margin-bottom: 1.5em;
}
.p-single-post__content img {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
  margin-bottom: 2em;
}
.p-single-post__content h2 {
  font-family: "Zen Old Mincho", serif;
  font-size: 24px;
  color: #fff;
  border-left: 3px solid #afa386;
  padding-left: 15px;
  margin: 60px 0 30px;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .p-single-post__content h2 {
    font-size: 20px;
    margin: 40px 0 20px;
  }
}
.p-single-post__content h3 {
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
  color: #afa386;
  margin: 50px 0 20px;
  border-bottom: 1px solid rgba(175, 163, 134, 0.3);
  padding-bottom: 10px;
}
@media (max-width: 768px) {
  .p-single-post__content h3 {
    font-size: 18px;
    margin: 30px 0 15px;
  }
}
.p-single-post__content a {
  color: #afa386;
  text-decoration: underline;
  transition: 0.3s;
}
.p-single-post__content a:hover {
  opacity: 0.7;
}
.p-single-post__content ul, .p-single-post__content ol {
  margin-bottom: 1.5em;
  padding-left: 1.5em;
}
.p-single-post__content ul li, .p-single-post__content ol li {
  margin-bottom: 0.5em;
}

/* ページネーション */
.p-single-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .p-single-nav {
    margin-top: 30px;
    padding-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.p-single-nav__prev, .p-single-nav__next {
  flex: 1;
}
@media (max-width: 768px) {
  .p-single-nav__prev, .p-single-nav__next {
    flex: none;
    width: 45%;
  }
}
.p-single-nav__prev a, .p-single-nav__next a {
  display: inline-block;
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  color: #afa386;
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: 0.3s;
}
.p-single-nav__prev a:hover, .p-single-nav__next a:hover {
  opacity: 0.7;
}
.p-single-nav__prev {
  text-align: left;
}
.p-single-nav__next {
  text-align: right;
}
.p-single-nav__list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 45px;
  border: 1px solid #444;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}
.p-single-nav__list a:hover {
  background-color: #afa386;
  color: #000;
  border-color: #afa386;
}
@media (max-width: 768px) {
  .p-single-nav__list a {
    width: 100%;
    height: 40px;
  }
}
@media (max-width: 768px) {
  .p-single-nav__list {
    order: 3;
    width: 100%;
    text-align: center;
  }
}

/* サイドバー */
.p-sidebar-widget {
  background-color: transparent;
  padding: 0;
  margin-bottom: 60px;
}
.p-sidebar-widget:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .p-sidebar-widget {
    margin-bottom: 40px;
  }
}
.p-sidebar-widget__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
  color: #fff;
  padding: 0 0 15px 0;
  margin-bottom: 30px;
  border-bottom: 1px solid #afa386;
  letter-spacing: 0.1em;
}
.p-sidebar-widget__content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-sidebar-widget__content ul li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}
.p-sidebar-widget__content ul li:last-child {
  border-bottom: none;
}
.p-sidebar-widget__content ul li img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}
.p-sidebar-widget__content ul li a {
  flex: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-sidebar-widget__content ul li a:hover {
  color: #afa386;
}
.p-sidebar-widget__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-sidebar-widget__list li {
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #888;
}
.p-sidebar-widget__list li a {
  color: #ccc;
  text-decoration: none;
  display: block;
  padding-left: 15px;
  position: relative;
  transition: 0.3s;
  flex: 1;
}
.p-sidebar-widget__list li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-top: 1px solid #afa386;
  border-right: 1px solid #afa386;
  transform: rotate(45deg);
}
.p-sidebar-widget__list li a:hover {
  color: #afa386;
}

/* サイドバー検索フォーム */
.p-sidebar-search__select {
  position: relative;
}
.p-sidebar-search__select select {
  width: 100%;
  appearance: none;
  background: #000;
  border: 1px solid #afa386;
  color: #fff;
  padding: 15px;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  cursor: pointer;
  outline: none;
}
.p-sidebar-search__select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #afa386;
  border-right: 1px solid #afa386;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.p-sidebar-search__input {
  display: flex;
  border: 1px solid #afa386;
  background: #000;
}
.p-sidebar-search__input input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  padding: 15px;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  outline: none;
  width: 100%;
}
.p-sidebar-search__input input::placeholder {
  color: #888;
  font-size: 13px;
}
.p-sidebar-search__input button {
  width: 50px;
  background: transparent;
  border: none;
  border-left: 1px solid #afa386;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
}
.p-sidebar-search__input button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  border: 2px solid #afa386;
  border-radius: 50%;
  transform: translate(-65%, -65%);
}
.p-sidebar-search__input button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 10px;
  background: #afa386;
  transform: translate(3px, 3px) rotate(-45deg);
}
.p-sidebar-search__input button:hover {
  background-color: #afa386;
}
.p-sidebar-search__input button:hover::before {
  border-color: #000;
}
.p-sidebar-search__input button:hover::after {
  background-color: #000;
}

.p-syaken-intro__catch {
  margin-bottom: 80px;
}
.p-syaken-intro__catch .line {
  display: inline-block;
  background-color: #fff;
  color: #000;
  font-family: "Zen Old Mincho", serif;
  font-size: 32px;
  padding: 8px 25px;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .p-syaken-intro__catch .line {
    font-size: 18px;
    padding: 5px 15px;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .p-syaken-intro__catch {
    margin-bottom: 50px;
  }
}
.p-syaken-intro__flex {
  display: flex;
  gap: 80px;
  align-items: center;
}
.p-syaken-intro__flex.is-reverse {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .p-syaken-intro__flex {
    flex-direction: column !important;
    gap: 40px;
  }
}
.p-syaken-intro__text {
  flex: 1.2;
  width: 100%;
}
.p-syaken-intro__lead {
  font-family: "Zen Old Mincho", serif;
  font-size: 24px;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .p-syaken-intro__lead {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.p-syaken-intro p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 2.2;
  color: #fff;
}
@media (max-width: 768px) {
  .p-syaken-intro p {
    font-size: 14px;
  }
}
.p-syaken-intro__img {
  flex: 1;
  width: 100%;
}
.p-syaken-intro__img img {
  width: 100%;
  height: auto;
}

.p-syaken-prevent {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 80px 0;
  margin: 60px 0;
}
.p-syaken-prevent__title {
  display: inline-block;
  border: 1px solid #afa386;
  color: #afa386;
  font-family: "Zen Old Mincho", serif;
  font-size: 24px;
  padding: 15px 40px;
  letter-spacing: 0.1em;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .p-syaken-prevent__title {
    font-size: 16px;
    padding: 10px 20px;
    margin-bottom: 40px;
    text-align: center;
  }
}
.p-syaken-prevent__item {
  display: flex;
  gap: 60px;
  margin-bottom: 60px;
}
.p-syaken-prevent__item:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .p-syaken-prevent__item {
    flex-direction: column;
    gap: 30px;
  }
}
.p-syaken-prevent__img {
  width: 400px;
  flex-shrink: 0;
}
.p-syaken-prevent__img img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .p-syaken-prevent__img {
    width: 100%;
  }
}
.p-syaken-prevent__text {
  flex: 1;
}
.p-syaken-prevent__text h3 {
  font-family: "Zen Old Mincho", serif;
  font-size: 22px;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .p-syaken-prevent__text h3 {
    font-size: 18px;
  }
}
.p-syaken-prevent__text .lead {
  font-size: 16px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: normal;
}
@media (max-width: 768px) {
  .p-syaken-prevent__text .lead {
    font-size: 14px;
  }
}
.p-syaken-prevent__text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 2.2;
  color: #ccc;
}

.p-syaken-appeal {
  background-color: #1a1a1a;
  padding: 80px 0;
}
.p-syaken-appeal__header {
  text-align: center;
  border: 1px solid #afa386;
  padding: 40px;
  margin-bottom: 80px;
}
.p-syaken-appeal__header p {
  font-family: "Zen Old Mincho", serif;
  font-size: 24px;
  color: #fff;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin: 0;
}
@media (max-width: 768px) {
  .p-syaken-appeal__header p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .p-syaken-appeal__header {
    padding: 20px;
    margin-bottom: 40px;
  }
}
.p-syaken-appeal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 768px) {
  .p-syaken-appeal__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.p-syaken-appeal__card img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.p-syaken-appeal__card p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 2;
  color: #fff;
}
@media (max-width: 768px) {
  .p-syaken-appeal__card p {
    font-size: 13px;
  }
}

.p-syaken-table-sec {
  padding-top: 100px;
}

/* ▼法定24ヶ月点検内容（ダークテーマ化） */
.p-syaken-table {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid #afa386;
  border-left: 2px solid #afa386;
  background-color: #000;
}
@media (max-width: 768px) {
  .p-syaken-table {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .p-syaken-table {
    grid-template-columns: 1fr;
  }
}
.p-syaken-table__col {
  border-right: 2px solid #afa386;
  border-bottom: 2px solid #afa386;
  display: flex;
  flex-direction: column;
  background-color: #000;
}
.p-syaken-table__head {
  background-color: #1a1a1a;
  color: #afa386;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  text-align: center;
  padding: 15px 10px;
  margin: 0;
  border-bottom: 2px solid #afa386;
  font-weight: normal;
}
@media (max-width: 768px) {
  .p-syaken-table__head {
    font-size: 15px;
    padding: 10px;
  }
}
.p-syaken-table__list {
  list-style: none;
  padding: 20px;
  margin: 0;
  flex: 1;
}
.p-syaken-table__list li {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 10px;
}
.p-syaken-table__list li:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .p-syaken-table__list li {
    font-size: 12px;
  }
}

.p-syaken-flow__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
}
@media (max-width: 768px) {
  .p-syaken-flow__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.p-syaken-flow__card img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.p-syaken-flow__card p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 2;
  color: #fff;
}
@media (max-width: 768px) {
  .p-syaken-flow__card p {
    font-size: 13px;
  }
}
.p-syaken-flow__card p strong {
  color: #afa386;
  font-size: 18px;
  font-family: "Zen Old Mincho", serif;
  margin-right: 5px;
  font-weight: normal;
}

.p-syaken-price__head {
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-size: 24px;
  color: #fff;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .p-syaken-price__head {
    font-size: 18px;
  }
}
.p-syaken-price__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .p-syaken-price__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.p-syaken-price__card {
  background-color: #1a1a1a;
  padding: 30px;
  border-top: 3px solid #afa386;
  text-align: center;
}
.p-syaken-price__card span {
  display: block;
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
  color: #afa386;
  margin-bottom: 15px;
}
.p-syaken-price__card p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
  margin: 0;
}
.p-syaken-price__table-wrap {
  position: relative;
  margin-bottom: 60px;
}
.p-syaken-price__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}
.p-syaken-price__note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #ccc;
  line-height: 1.8;
}
.p-syaken-price__note p {
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .p-syaken-price__note {
    font-size: 13px;
  }
}

/* ▼車検費用・料金表（ダークテーマ化） */
.c-syaken-cost-table {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #000;
}
.c-syaken-cost-table th, .c-syaken-cost-table td {
  border: 1px solid #afa386;
  padding: 15px;
  font-size: 14px;
  color: #fff;
}
@media (max-width: 768px) {
  .c-syaken-cost-table th, .c-syaken-cost-table td {
    font-size: 13px;
    padding: 10px;
  }
}
.c-syaken-cost-table th {
  background-color: #1a1a1a;
  font-weight: normal;
}
.c-syaken-cost-table .head-main {
  color: #afa386;
  width: 100px;
  text-align: center;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .c-syaken-cost-table .head-main {
    width: 80px;
  }
}
.c-syaken-cost-table .head-sub {
  text-align: left;
  width: auto;
  background-color: #111;
}
.c-syaken-cost-table td {
  text-align: center;
  background-color: #000;
  width: 120px;
}
.c-syaken-cost-table td.text-left {
  text-align: left;
  line-height: 1.6;
}
.c-syaken-cost-table .border-none {
  border-top: none;
  border-left: none;
  background: transparent;
}
.c-syaken-cost-table .row-highlight th, .c-syaken-cost-table .row-highlight td {
  background-color: rgba(175, 163, 134, 0.2);
}
.c-syaken-cost-table.is-simple {
  min-width: 100%;
}
.c-syaken-cost-table.is-simple .head-sub {
  width: 70%;
}
.c-syaken-cost-table.is-simple td {
  width: 30%;
  font-size: 16px;
}
@media (max-width: 768px) {
  .c-syaken-cost-table.is-simple td {
    font-size: 14px;
  }
}

/* =========================================
   12ヶ月法定点検 セクション
========================================= */
.p-syaken-12month {
  background-color: #111;
  padding: 80px 0;
  margin-top: 100px;
}
@media (max-width: 768px) {
  .p-syaken-12month {
    padding: 50px 0;
    margin-top: 60px;
  }
}
.p-syaken-12month__intro {
  max-width: 900px;
  margin: 0 auto;
}
.p-syaken-12month__lead {
  font-family: "Zen Old Mincho", serif;
  font-size: 26px;
  color: #afa386;
  line-height: 1.6;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .p-syaken-12month__lead {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.p-syaken-12month__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  color: #fff;
  line-height: 2.2;
  margin-bottom: 1.5em;
}
@media (max-width: 768px) {
  .p-syaken-12month__text {
    font-size: 14px;
  }
}
.p-syaken-12month__info-box {
  background-color: #1a1a1a;
  border: 1px solid rgba(175, 163, 134, 0.5);
  padding: 40px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .p-syaken-12month__info-box {
    padding: 25px;
    margin-top: 30px;
  }
}
.p-syaken-12month__sub-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
  border-left: 3px solid #afa386;
  padding-left: 15px;
  letter-spacing: 0.1em;
}
.p-syaken-12month__price-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px dashed #444;
}
@media (max-width: 768px) {
  .p-syaken-12month__price-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.p-syaken-12month__time {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #fff;
  margin: 0;
  line-height: 1.8;
}
.p-syaken-12month__time strong {
  font-size: 22px;
  color: #afa386;
  margin: 0 5px;
  font-weight: normal;
}
.p-syaken-12month__time .small {
  font-size: 13px;
  color: #aaa;
  display: block;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .p-syaken-12month__time {
    font-size: 14px;
  }
  .p-syaken-12month__time strong {
    font-size: 20px;
  }
  .p-syaken-12month__time .small {
    font-size: 12px;
  }
}
.p-syaken-12month__price {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  color: #fff;
  margin: 0;
  text-align: right;
}
@media (max-width: 768px) {
  .p-syaken-12month__price {
    font-size: 16px;
    text-align: left;
  }
}
.p-syaken-12month__price .price {
  font-size: 32px;
  color: #afa386;
  font-family: "Zen Old Mincho", serif;
  margin: 0 10px;
}
@media (max-width: 768px) {
  .p-syaken-12month__price .price {
    font-size: 26px;
  }
}

/* 12ヶ月点検 表専用のスタイル調整（★スマホで縦並び化） */
.c-syaken-cost-table.is-12month {
  min-width: 100%; /* 横スクロールを解除 */
}
.c-syaken-cost-table.is-12month th.head-sub {
  width: 25%;
  text-align: center;
  background-color: #222;
  color: #afa386;
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
}
@media (max-width: 768px) {
  .c-syaken-cost-table.is-12month th.head-sub {
    display: block;
    width: 100%;
    text-align: left;
    padding: 12px 15px;
    font-size: 15px;
    border-bottom: none;
  }
}
.c-syaken-cost-table.is-12month td.text-left {
  width: 75%;
  background-color: #000;
  color: #ddd;
  line-height: 2;
}
@media (max-width: 768px) {
  .c-syaken-cost-table.is-12month td.text-left {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 13px;
    border-top: none;
  }
}
@media (max-width: 768px) {
  .c-syaken-cost-table.is-12month tr {
    display: block;
    margin-bottom: 20px;
    border: 1px solid #afa386;
  }
  .c-syaken-cost-table.is-12month th, .c-syaken-cost-table.is-12month td {
    border: none;
  }
}

.c-gold-label {
  color: #afa386;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 15px;
}

.p-mente-intro__head {
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .p-mente-intro__head {
    margin-bottom: 50px;
  }
}
.p-mente-intro__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 36px;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .p-mente-intro__title {
    font-size: 24px;
  }
}
.p-mente-intro__lead {
  font-size: 17px;
  color: #ccc;
  line-height: 2;
}
@media (max-width: 768px) {
  .p-mente-intro__lead {
    font-size: 14px;
  }
}

.p-mente-philosophy {
  display: flex;
  gap: 80px;
  align-items: center;
}
@media (max-width: 768px) {
  .p-mente-philosophy {
    flex-direction: column;
    gap: 40px;
  }
}
.p-mente-philosophy__text {
  flex: 1;
  color: #fff;
  font-size: 14px;
  line-height: 2.2;
}
.p-mente-philosophy__text p {
  margin-bottom: 30px;
}
.p-mente-philosophy__img {
  flex: 1;
}

.p-mente-figure {
  margin: 0;
  position: relative;
}
.p-mente-figure img {
  width: 100%;
  height: auto;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
  display: block;
}
.p-mente-figure__caption {
  font-size: 13px;
  color: #ccc;
  line-height: 1.6;
  margin-top: 15px;
  padding-left: 15px;
  border-left: 2px solid #afa386;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 768px) {
  .p-mente-figure__caption {
    font-size: 12px;
  }
}

.p-mente-status {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.p-mente-status__item {
  border: 1px solid rgba(175, 163, 134, 0.4);
  padding: 20px;
}
.p-mente-status__item span {
  display: block;
  font-size: 12px;
  color: #afa386;
  margin-bottom: 5px;
}
.p-mente-status__item strong {
  font-size: 18px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
}
@media (max-width: 768px) {
  .p-mente-status__item strong {
    font-size: 15px;
  }
}

.p-mente-trouble {
  background-color: #0a0a0a;
}
.p-mente-trouble__sub {
  text-align: center;
  color: #aaa;
  margin: -40px 0 60px;
}
@media (max-width: 768px) {
  .p-mente-trouble__sub {
    margin: 10px 0 40px;
    line-height: 1.6;
  }
}
.p-mente-trouble__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .p-mente-trouble__grid {
    grid-template-columns: 1fr;
  }
}
.p-mente-trouble__card {
  background: #111;
  padding: 40px;
  border: 1px solid #222;
}
@media (max-width: 768px) {
  .p-mente-trouble__card {
    padding: 30px;
  }
}
.p-mente-trouble__header {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 24px;
  color: #afa386;
  border-bottom: 1px solid #afa386;
  padding-bottom: 15px;
  margin-bottom: 25px;
}
.p-mente-trouble__header span {
  display: block;
  font-size: 14px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .p-mente-trouble__header {
    font-size: 20px;
  }
}
.p-mente-trouble__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-mente-trouble__list li {
  color: #ccc;
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.p-mente-trouble__list li:last-child {
  border-bottom: none;
}
.p-mente-trouble__list li::before {
  content: "・";
  color: #afa386;
  margin-right: 5px;
}

.p-mente-brand {
  background-color: #000;
  padding: 60px 0 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.p-mente-brand__content {
  max-width: 800px;
  margin-bottom: 60px;
}
.p-mente-brand__content h3 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 32px;
  color: #fff;
  margin-bottom: 25px;
}
.p-mente-brand__content h3 span {
  display: block;
  font-size: 14px;
  color: #afa386;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 5px;
  letter-spacing: 0.1em;
}
.p-mente-brand__content p {
  font-size: 16px;
  color: #ccc;
  line-height: 2;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .p-mente-brand__content h3 {
    font-size: 24px;
  }
  .p-mente-brand__content p {
    font-size: 14px;
  }
}
.p-mente-brand__posts {
  margin-top: 60px;
}

.p-mente-brand-split {
  background-color: #000;
  padding: 20px 0 100px;
}
.p-mente-brand-split__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px 60px;
  margin-bottom: 80px;
}
.p-mente-brand-split__row:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .p-mente-brand-split__row {
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }
}
.p-mente-brand-split__item {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
}
.p-mente-brand-split__item .p-mente-brand__content {
  margin-bottom: 30px;
}
.p-mente-brand-split__item .p-mente-brand__content h3 {
  font-size: 24px;
  font-weight: 400;
}
.p-mente-brand-split__item .p-mente-post-grid {
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .p-mente-brand-split__item {
    padding-top: 30px;
  }
}

.p-mente-post-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 768px) {
  .p-mente-post-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 15px;
  }
  .p-mente-post-grid article:nth-child(n+5) {
    display: none;
  }
}

.p-mente-post-card a {
  text-decoration: none;
  display: block;
}
.p-mente-post-card a:hover {
  opacity: 0.8;
}
.p-mente-post-card a:hover .p-mente-post-card__img img {
  transform: scale(1.05);
}
.p-mente-post-card__img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}
.p-mente-post-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.p-mente-post-card__info .cat {
  display: block;
  font-size: 12px;
  color: #afa386;
  margin-bottom: 15px;
  font-family: "Noto Sans JP", sans-serif;
}
.p-mente-post-card__info .title {
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 15px;
  height: 3.2em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (max-width: 768px) {
  .p-mente-post-card__info .title {
    font-size: 13px;
  }
}
.p-mente-post-card__info .line {
  width: 100%;
  height: 1px;
  background-color: #afa386;
  opacity: 0.6;
}

.c-new-mark {
  position: absolute;
  top: 0;
  left: 0;
  background: #afa386;
  color: #000;
  font-size: 10px;
  font-family: "Noto Sans JP", sans-serif;
  padding: 2px 20px;
  transform: rotate(-45deg) translate(-25px, -8px);
  transform-origin: center;
  z-index: 2;
  font-weight: 400;
  width: 120px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.c-link-arrow {
  color: #afa386;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  position: relative;
  padding-right: 30px;
}
.c-link-arrow::after {
  content: "→";
  position: absolute;
  right: 0;
  transition: 0.3s;
}
.c-link-arrow:hover::after {
  right: -10px;
}

.p-mente-contact__box {
  border: 1px solid rgba(175, 163, 134, 0.5);
  padding: 80px 40px;
  text-align: center;
  background-color: #0a0a0a;
}

.p-mente-contact__lead {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 24px;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 25px;
  letter-spacing: 0.1em;
}

.p-mente-contact__sub {
  font-size: 16px;
  color: #aaa;
  line-height: 2;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .p-mente-contact__box {
    padding: 40px 20px;
  }
}
@media (max-width: 768px) {
  .p-mente-contact__lead {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .p-mente-contact__sub {
    font-size: 13px;
    text-align: left;
  }
}
.p-about-hero {
  background-color: #000;
  padding-top: 50px;
}
.p-about-hero__catch {
  margin-bottom: 60px;
}
.p-about-hero__catch .line {
  display: inline-block;
  background-color: #fff;
  color: #000;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 34px;
  padding: 8px 15px;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .p-about-hero__catch .line {
    font-size: 18px;
    padding: 5px 10px;
    margin-bottom: 6px;
  }
}
@media (max-width: 768px) {
  .p-about-hero__catch {
    margin-bottom: 40px;
  }
}
.p-about-hero__img img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.p-about-human__row {
  display: flex;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}
.p-about-human__row.is-reverse {
  flex-direction: row-reverse;
}
.p-about-human__row:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .p-about-human__row {
    flex-direction: column !important;
    gap: 40px;
    margin-bottom: 80px;
  }
}
.p-about-human__text {
  flex: 1;
  color: #fff;
  font-size: 14px;
  line-height: 2.2;
}
.p-about-human__text p {
  margin-bottom: 25px;
}
.p-about-human__img {
  flex: 1;
}

.p-mente-figure {
  margin: 0;
  position: relative;
}
.p-mente-figure img {
  width: 100%;
  height: auto;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
  display: block;
}
.p-mente-figure__caption {
  font-size: 13px;
  color: #ccc;
  line-height: 1.6;
  margin-top: 15px;
  padding-left: 15px;
  border-left: 2px solid #afa386;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 768px) {
  .p-mente-figure__caption {
    font-size: 12px;
  }
}

.p-about-facility {
  background-color: #0a0a0a;
}
.p-about-facility__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 40px;
}
@media (max-width: 768px) {
  .p-about-facility__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.p-about-facility__card img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.p-about-facility__card p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.8;
}
.p-about-facility__card p strong {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  font-family: "Zen Old Mincho", serif;
}

.p-about-info .c-info-table {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.p-about-info .c-info-table th, .p-about-info .c-info-table td {
  padding: 25px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15px;
  color: #fff;
  vertical-align: top;
}
.p-about-info .c-info-table th {
  width: 200px;
  color: #afa386;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  text-align: left;
}
@media (max-width: 768px) {
  .p-about-info .c-info-table th {
    width: 100px;
    font-size: 13px;
    padding: 20px 10px;
  }
}
.p-about-info .c-info-table td {
  line-height: 1.8;
}
@media (max-width: 768px) {
  .p-about-info .c-info-table td {
    font-size: 13px;
    padding: 20px 10px;
  }
}

.p-about-partners {
  color: #ccc;
  font-size: 15px;
  line-height: 2.2;
  max-width: 900px;
}
@media (max-width: 768px) {
  .p-about-partners {
    font-size: 13px;
  }
}

.p-about-human__row {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  margin-bottom: 120px;
}

.p-about-human__row.is-reverse {
  flex-direction: row-reverse;
}

.p-about-human__text {
  flex: 1;
  color: #fff;
  font-size: 14px;
  line-height: 2.2;
}

.p-about-human__text p {
  margin-bottom: 25px;
}

.p-about-human__img {
  flex: 1;
}

.p-about-human__title-box {
  margin-bottom: 50px;
}

.p-about-human__title-box .line {
  display: inline-block;
  background-color: #fff;
  color: #000;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 32px;
  padding: 8px 15px;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .p-about-human__row {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .p-about-human__row.is-reverse {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .p-about-human__title-box {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .p-about-human__title-box .line {
    font-size: 18px;
    padding: 5px 10px;
    margin-bottom: 6px;
  }
}
.p-trade-intro__box {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.p-trade-intro__lead {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 24px;
  color: #afa386;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
}

.p-trade-intro__text {
  font-size: 16px;
  line-height: 2.2;
  color: #fff;
  text-align: left;
}

.p-trade-reasons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.p-trade-reasons__item {
  background: #111;
  padding: 40px;
  border: 1px solid #222;
}

.p-trade-reasons__num {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 40px;
  color: rgba(175, 163, 134, 0.3);
  margin-bottom: 10px;
}

.p-trade-reasons__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.5;
}

.p-trade-reasons__text {
  font-size: 14px;
  line-height: 1.8;
  color: #ccc;
}

.p-trade-steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.p-trade-steps__card {
  background: #0a0a0a;
  border-top: 2px solid #afa386;
  padding: 30px 20px;
  text-align: center;
}

.p-trade-steps__card span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  color: #afa386;
  margin-bottom: 15px;
}

.p-trade-steps__card h4 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  margin-bottom: 15px;
}

.p-trade-steps__card p {
  font-size: 13px;
  color: #aaa;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .p-trade-intro__lead {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .p-trade-reasons__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .p-trade-steps__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .p-trade-steps__card {
    padding: 20px 15px;
  }
}
.p-trade-form-container {
  max-width: 1100px;
  margin: 0 auto;
}

.p-trade-form-flex {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.p-trade-form-col {
  flex: 1;
  min-width: 0;
}

.p-trade-form-section__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 28px;
  color: #afa386;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(175, 163, 134, 0.4);
  padding-bottom: 15px;
}

.p-trade-form-section__desc {
  font-size: 14px;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 25px;
}

.p-trade-form-privacy {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  margin-top: 60px;
  text-align: center;
}

.p-trade-form-privacy p {
  font-size: 13px;
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}

.p-trade-form-footer {
  width: 100%;
}

@media (max-width: 768px) {
  .p-trade-form-flex {
    flex-direction: column;
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .p-trade-form-container {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .p-trade-form-section__title {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .p-trade-form-privacy {
    text-align: left;
    padding: 20px;
  }
}
.c-form select {
  appearance: none;
  -webkit-appearance: none;
  background-color: #111;
  border: 1px solid #444;
  color: #fff;
  padding: 18px 50px 18px 20px;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  width: 100%;
  cursor: pointer;
  border-radius: 0;
  transition: 0.3s;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="%23afa386" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 14px;
}

.c-form select:focus {
  border-color: #afa386;
  outline: none;
  background-color: #000;
}

.c-form select:hover {
  border-color: #666;
}

.c-form__flex {
  display: flex;
  gap: 20px;
  width: 100%;
  margin-bottom: 30px;
}

.c-form__flex dl {
  flex: 1;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .c-form__flex {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 0;
  }
}
.p-privacy__content {
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
}

.p-privacy__lead {
  font-size: 16px;
  line-height: 2.2;
  margin-bottom: 60px;
  color: #ccc;
}

.p-privacy__group {
  margin-bottom: 50px;
}

.p-privacy__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 22px;
  color: #afa386;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(175, 163, 134, 0.3);
  padding-bottom: 10px;
}

.p-privacy__text {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 0;
}

.p-privacy__list {
  margin-top: 15px;
  list-style: none;
  padding-left: 0;
}

.p-privacy__list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
}

.p-privacy__list li::before {
  content: "・";
  color: #afa386;
  position: absolute;
  left: 0;
}

.p-privacy__contact-info {
  margin-top: 20px;
  padding: 30px;
  background-color: #0a0a0a;
  border: 1px solid #222;
  font-size: 15px;
  line-height: 1.8;
  color: #fff;
}

@media (max-width: 768px) {
  .p-privacy__lead {
    font-size: 14px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .p-privacy__title {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .p-privacy__text {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .p-privacy__list li {
    font-size: 14px;
  }
}
/* --- 車両一覧（アーカイブ） --- */
.p-car-archive {
  text-align: center;
}

.p-car-archive__lead {
  color: #fff;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 60px;
}

.p-car-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 40px;
  width: 100%;
  margin: 40px 0 100px;
}

.p-car-card {
  background: #000;
  border: 1px solid #222;
  transition: 0.4s;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.p-car-card:hover {
  border-color: #afa386;
  transform: translateY(-5px);
}

.p-car-card a {
  text-decoration: none;
  display: block;
  color: #fff;
}

.p-car-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  width: 100%;
  background: #111;
}

.p-car-card__img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  transition: 0.6s;
  display: block;
}

.p-car-card__for-sale {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  font-family: "Georgia", serif;
  font-style: italic;
  font-size: 24px;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.p-car-card__body {
  padding: 40px;
  text-align: center;
}

.p-car-card__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 24px;
  color: #fff;
  margin-bottom: 25px;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.p-car-card__catch {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 18px;
  color: #afa386;
  margin-bottom: 25px;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

.p-car-card__specs {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 14px;
  color: #aaa;
  margin-bottom: 25px;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  padding: 15px 0;
}

.p-car-card__price {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 28px;
  color: #fff;
  margin-bottom: 25px;
}

.p-car-card__price span {
  font-size: 14px;
  color: #aaa;
  margin-left: 8px;
}

.p-car-card__btn {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #888;
  border-bottom: 1px solid #444;
  padding-bottom: 5px;
  transition: 0.3s;
}

/* --- 車両詳細：共通レイアウト（★ヘッダー重なり解消） --- */
.p-car-detail {
  background-color: #000;
  padding: 180px 0 100px;
}

.c-breadcrumb {
  padding: 25px 0;
  font-size: 14px;
  color: #aaa;
  font-family: "Noto Sans JP", sans-serif;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 60px;
  position: relative;
  z-index: 20;
}

.c-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.c-breadcrumb__list li {
  display: flex;
  align-items: center;
}

.c-breadcrumb__list li::after {
  content: "｜";
  margin: 0 15px;
  color: #555;
}

.c-breadcrumb__list li:last-child::after {
  display: none;
}

.c-breadcrumb__list li a {
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
}

.c-breadcrumb__list li a:hover {
  color: #afa386;
}

.p-car-detail__header {
  margin-bottom: 60px;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 10;
}

.p-car-detail__header-inner {
  max-width: 900px;
  margin: 0 auto;
}

.p-car-detail__name {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 38px;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.p-car-detail__catch {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 24px;
  color: #afa386;
  letter-spacing: 0.15em;
  line-height: 1.6;
  margin: 0;
}

.p-car-detail__main-flex {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  margin-bottom: 100px;
}

.p-car-detail__visual {
  flex: 1.6;
  min-width: 0;
  width: 100%;
}

.p-car-detail__summary {
  flex: 1;
  background: #0a0a0a;
  border: 1px solid #222;
  padding: 35px;
}

/* --- 車両詳細：価格・スペック --- */
.p-car-detail__price-group {
  border-bottom: 1px solid #333;
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.p-car-detail__price-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 15px;
}

.p-car-detail__price-item.is-total .num {
  font-size: 42px;
  color: #afa386;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
}

.p-car-detail__price-item.is-base .num {
  font-size: 30px;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
}

.p-car-detail__spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.p-car-detail__spec-table th {
  background: #151515;
  color: #888;
  padding: 12px 8px;
  border: 1px solid #222;
  text-align: left;
  font-size: 13px;
  font-weight: 400;
}

.p-car-detail__spec-table td {
  color: #fff;
  padding: 12px 8px;
  border: 1px solid #222;
  font-size: 13px;
  line-height: 1.5;
  vertical-align: middle;
}

.p-car-detail__appeal-area {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.p-car-detail__appeal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
  padding-bottom: 30px;
}

.p-car-detail__appeal-row span {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 14px;
  color: #ccc;
  letter-spacing: 0.1em;
  position: relative;
}

.p-car-detail__appeal-row span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 10px;
  background: rgba(255, 255, 255, 0.2);
}

/* --- 車両詳細：スライダー --- */
.p-car-gallery-container {
  width: 100% !important;
  max-width: 100%;
  margin-bottom: 50px;
  position: relative;
  display: block;
}

.p-car-main-slider-wrap {
  position: relative;
  padding: 0 40px;
  margin-bottom: 40px;
  width: 100%;
  box-sizing: border-box;
}

.p-car-main-slider {
  width: 100% !important;
  aspect-ratio: 4/3;
  background: #000;
  overflow: hidden;
  display: block;
}

.p-car-main-slider .swiper-slide {
  width: 100% !important;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-car-main-slider .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.p-car-main-slider-wrap .main-prev {
  left: -10px;
  color: #afa386;
  z-index: 10;
}

.p-car-main-slider-wrap .main-next {
  right: -10px;
  color: #afa386;
  z-index: 10;
}

.p-car-slider-counter {
  position: absolute;
  bottom: 15px;
  right: 55px;
  color: #fff;
  font-size: 12px;
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 12px;
  z-index: 10;
}

.p-car-thumb-slider-outer {
  position: relative;
  padding: 0 40px;
  display: flex;
  align-items: center;
  width: 100%;
}

.p-car-thumb-slider {
  width: 100%;
  height: 80px;
  overflow: hidden;
}

.p-car-thumb-slider .swiper-slide {
  aspect-ratio: 1/1;
  cursor: pointer;
  opacity: 0.4;
  transition: 0.3s;
  border: 2px solid transparent;
  width: 80px !important;
}

.p-car-thumb-slider .swiper-slide-thumb-active {
  opacity: 1;
  border-color: #afa386;
}

/* --- 見積依頼フォーム --- */
.p-car-inquiry {
  background-color: #0a0a0a;
  border: 1px solid #222;
  padding: 80px 40px;
  margin-bottom: 80px;
}

.p-car-inquiry__form {
  max-width: 800px;
  margin: 0 auto;
}

/* --- その他 --- */
.p-car-detail__back {
  text-align: center;
}

.c-link-arrow-back {
  color: #afa386;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  padding-left: 30px;
  transition: 0.3s;
}

.c-link-arrow-back::before {
  content: "←";
  position: absolute;
  left: 0;
}

/* --- レスポンシブ --- */
@media (max-width: 768px) {
  .p-car-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .p-car-detail {
    padding-top: 140px;
  }
}
@media (max-width: 768px) {
  .p-car-detail__main-flex {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .p-car-main-slider {
    aspect-ratio: 3/2;
  }
}
@media (max-width: 768px) {
  .p-car-thumb-slider {
    height: 60px;
  }
}/*# sourceMappingURL=style.css.map */