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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-weight: 400;
  color: #333333;
  line-height: 1.8;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-drawer-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.7;
}

ul, ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .section {
    padding: 60px 0;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title__en {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #c41e24;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.section-title__ja {
  display: block;
  font-size: 28px;
  font-weight: 700;
  margin-top: 8px;
}
@media (max-width: 767px) {
  .section-title__ja {
    font-size: 22px;
  }
}

.btn {
  display: inline-block;
  padding: 14px 40px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.btn--primary {
  background-color: #c41e24;
  color: #ffffff;
}
.btn--primary:hover {
  background-color: #a01a1f;
  opacity: 1;
}
.btn--outline {
  border: 2px solid #c41e24;
  color: #c41e24;
}
.btn--outline:hover {
  background-color: #c41e24;
  color: #ffffff;
  opacity: 1;
}
.btn--black {
  background-color: #1a1a1a;
  color: #ffffff;
}
.btn--black:hover {
  opacity: 0.85;
}

.js-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #ffffff;
  z-index: 900;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .header {
    height: 60px;
  }
}
.header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  flex-shrink: 0;
}
.header__logo img {
  height: 40px;
  width: auto;
}
@media (max-width: 767px) {
  .header__logo img {
    height: 30px;
  }
}
.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
  margin: 0 20px;
}
@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  display: flex;
  gap: 18px;
}
.header__nav-list li a {
  font-size: 13px;
  white-space: nowrap;
  font-weight: 500;
  position: relative;
}
.header__nav-list li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #c41e24;
  transition: width 0.3s ease;
}
.header__nav-list li a:hover {
  opacity: 1;
  color: #c41e24;
}
.header__nav-list li a:hover::after {
  width: 100%;
}
.header__tel {
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .header__tel {
    display: none;
  }
}
.header__tel a {
  font-size: 18px;
  font-weight: 700;
  color: #c41e24;
}

body {
  padding-top: 80px;
}
@media (max-width: 767px) {
  body {
    padding-top: 60px;
  }
}

.hamburger {
  display: none;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1001;
}
@media (max-width: 767px) {
  .hamburger {
    display: block;
  }
}
.hamburger__line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #1a1a1a;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}
.hamburger__line:nth-child(1) {
  top: 0;
}
.hamburger__line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger__line:nth-child(3) {
  bottom: 0;
}
.hamburger.is-active .hamburger__line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active .hamburger__line:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background-color: #1a1a1a;
  z-index: 1000;
  transition: right 0.3s ease;
  padding: 100px 30px 40px;
  overflow-y: auto;
}
.drawer.is-open {
  right: 0;
}
.drawer__nav-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.drawer__nav-list li a {
  display: block;
  padding: 16px 0;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
}
.drawer__tel {
  margin-top: 30px;
  text-align: center;
}
.drawer__tel a {
  font-size: 20px;
  font-weight: 700;
  color: #c41e24;
}

.footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 60px 0 30px;
}
@media (max-width: 767px) {
  .footer {
    padding: 40px 0 20px;
  }
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.footer__logo {
  margin-bottom: 30px;
}
.footer__logo img {
  height: 50px;
  width: auto;
}
@media (max-width: 767px) {
  .footer__logo img {
    height: 36px;
  }
}
.footer__nav {
  margin-bottom: 30px;
}
.footer__nav-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 767px) {
  .footer__nav-list {
    gap: 12px;
    font-size: 13px;
  }
}
.footer__nav-list a {
  color: #ffffff;
  font-size: 14px;
}
.footer__nav-list a:hover {
  color: #c41e24;
  opacity: 1;
}
.footer__info {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .footer__info {
    font-size: 13px;
  }
}
.footer__tel a {
  color: #ffffff;
}
.footer__tel a:hover {
  color: #c41e24;
  opacity: 1;
}
.footer__links {
  margin-bottom: 20px;
}
.footer__links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.footer__links a:hover {
  color: #ffffff;
  opacity: 1;
}
.footer__copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 800;
}
@media (max-width: 767px) {
  .floating {
    bottom: 0;
    right: 0;
    left: 0;
    flex-direction: row;
    gap: 0;
  }
}
.floating__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .floating__btn {
    border-radius: 0;
    flex: 1;
    padding: 12px;
  }
}
.floating__btn--tel {
  background-color: #c41e24;
}
.floating__btn--contact {
  background-color: #1a1a1a;
}
.floating__btn:hover {
  opacity: 0.9;
}

.breadcrumb {
  background-color: #f5f5f5;
  padding: 12px 0;
}
.breadcrumb__list {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: #666666;
}
.breadcrumb__item:not(:last-child)::after {
  content: ">";
  margin-left: 8px;
}
.breadcrumb__item a {
  color: #666666;
}
.breadcrumb__item a:hover {
  color: #c41e24;
  opacity: 1;
}
.breadcrumb__item:last-child span {
  color: #333333;
}

.page-header {
  background-color: #1a1a1a;
  padding: 50px 0;
  text-align: center;
}
@media (max-width: 767px) {
  .page-header {
    padding: 35px 0;
  }
}
.page-header__title {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .page-header__title {
    font-size: 22px;
  }
}

.top-fv {
  position: relative;
  overflow: hidden;
}
.top-fv .swiper {
  width: 100%;
  height: 600px;
}
@media (max-width: 767px) {
  .top-fv .swiper {
    height: 500px;
  }
}
.top-fv .swiper-slide {
  position: relative;
  overflow: hidden;
}
.top-fv__slide-inner {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 100%;
  position: relative;
}
.top-fv__text-area {
  position: relative;
  z-index: 2;
  width: 50%;
  background-color: #c41e24;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 60px;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}
@media (max-width: 767px) {
  .top-fv__text-area {
    width: 100%;
    clip-path: none;
    padding: 30px 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: auto;
    background-color: rgba(196, 30, 36, 0.9);
  }
}
.top-fv__title {
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .top-fv__title {
    font-size: 24px;
  }
}
.top-fv__subtitle {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .top-fv__subtitle {
    font-size: 13px;
  }
}
.top-fv__image-area {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 1;
}
@media (max-width: 767px) {
  .top-fv__image-area {
    width: 100%;
  }
}
.top-fv__image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-fv__badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .top-fv__badges {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 12px;
  }
}
.top-fv__badge {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .top-fv__badge {
    width: 80px;
    height: 80px;
    font-size: 10px;
  }
}
.top-fv__character {
  position: absolute;
  right: 40px;
  bottom: 20px;
  z-index: 5;
  width: 120px;
}
@media (max-width: 767px) {
  .top-fv__character {
    width: 80px;
    right: 10px;
    bottom: 80px;
  }
}
.top-fv__character img {
  width: 100%;
  height: auto;
}
.top-fv__cta-bar {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 5;
  background-color: #c41e24;
  padding: 16px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .top-fv__cta-bar {
    position: relative;
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    gap: 12px;
  }
}
.top-fv__cta-link {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .top-fv__cta-link {
    font-size: 14px;
  }
}
.top-fv__cta-link:hover {
  opacity: 1;
  text-decoration: underline;
}
.top-fv__cta-tel {
  color: #ffffff;
  font-size: 14px;
}
@media (max-width: 767px) {
  .top-fv__cta-tel {
    font-size: 12px;
  }
}
.top-fv__cta-tel a {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .top-fv__cta-tel a {
    font-size: 16px;
  }
}
.top-fv .swiper-pagination-bullet {
  background-color: #ffffff;
  opacity: 0.5;
  width: 10px;
  height: 10px;
}
.top-fv .swiper-pagination-bullet-active {
  background-color: #c41e24;
  opacity: 1;
}
.top-fv__assessment-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 799;
  writing-mode: vertical-rl;
  background-color: #c41e24;
  color: #ffffff;
  padding: 20px 14px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px 0 0 8px;
  box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.2);
}
.top-fv__assessment-btn:hover {
  background-color: #a01a1f;
  opacity: 1;
  color: #ffffff;
}
@media (max-width: 767px) {
  .top-fv__assessment-btn {
    display: none;
  }
}

.top-service {
  padding: 80px 0;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .top-service {
    padding: 60px 0;
  }
}
.top-service__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.top-service__desc {
  text-align: center;
  margin-bottom: 40px;
  font-size: 15px;
  color: #666666;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .top-service__desc {
    font-size: 14px;
    margin-bottom: 30px;
  }
}
.top-service__desc a {
  color: #c41e24;
  font-weight: 500;
}
.top-service__desc a:hover {
  opacity: 1;
  text-decoration: underline;
}
.top-service__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 767px) {
  .top-service__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.top-service__card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
@media (max-width: 767px) {
  .top-service__card {
    aspect-ratio: 16/9;
  }
}
.top-service__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.top-service__card:hover img {
  transform: scale(1.05);
}
.top-service__card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #ffffff;
}
.top-service__card-en {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 4px;
}
@media (max-width: 767px) {
  .top-service__card-en {
    font-size: 22px;
  }
}
.top-service__card-ja {
  font-size: 13px;
}

.top-strength {
  padding: 80px 0;
  background-color: #f5f5f5;
}
@media (max-width: 767px) {
  .top-strength {
    padding: 60px 0;
  }
}
.top-strength__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.top-strength__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 767px) {
  .top-strength__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.top-strength__item {
  text-align: center;
}
.top-strength__number {
  font-size: 48px;
  font-weight: 700;
  color: #c41e24;
  line-height: 1;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .top-strength__number {
    font-size: 40px;
  }
}
.top-strength__heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .top-strength__heading {
    font-size: 16px;
  }
}
.top-strength__text {
  font-size: 14px;
  color: #666666;
  line-height: 1.8;
}
.top-strength__image {
  margin-bottom: 16px;
}
.top-strength__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .top-strength__image img {
    height: 180px;
  }
}

.top-scrap {
  padding: 80px 0;
  background-color: #1a1a1a;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .top-scrap {
    padding: 60px 0;
  }
}
.top-scrap::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 400px;
  height: 400px;
  background: url("../images/x-pattern.svg") no-repeat center/contain;
  opacity: 0.1;
}
.top-scrap__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .top-scrap__inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
}
.top-scrap__character {
  flex-shrink: 0;
  width: 200px;
}
@media (max-width: 767px) {
  .top-scrap__character {
    width: 150px;
  }
}
.top-scrap__character img {
  width: 100%;
  height: auto;
}
.top-scrap__content {
  flex: 1;
  color: #ffffff;
}
.top-scrap__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
}
@media (max-width: 767px) {
  .top-scrap__title {
    font-size: 22px;
  }
}
.top-scrap__text {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767px) {
  .top-scrap__text {
    font-size: 14px;
  }
}
.top-scrap__btn {
  display: inline-block;
  background-color: #c41e24;
  color: #ffffff;
  padding: 14px 40px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.top-scrap__btn:hover {
  background-color: #a01a1f;
  opacity: 1;
  color: #ffffff;
}

.top-parts {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .top-parts {
    padding: 60px 0;
  }
}
.top-parts__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.top-parts__content {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .top-parts__content {
    flex-direction: column;
    gap: 24px;
  }
}
.top-parts__image {
  flex: 1;
}
.top-parts__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.top-parts__text-area {
  flex: 1;
}
.top-parts__text {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #666666;
}
@media (max-width: 767px) {
  .top-parts__text {
    font-size: 14px;
  }
}
.top-parts__links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.top-parts__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #c41e24;
}
.top-parts__link:hover {
  opacity: 1;
  text-decoration: underline;
}
.top-parts__link img {
  height: 24px;
  width: auto;
}

.top-cases {
  padding: 80px 0;
  background-color: #f5f5f5;
  overflow: hidden;
}
@media (max-width: 767px) {
  .top-cases {
    padding: 60px 0;
  }
}
.top-cases__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.top-cases__slider-wrap {
  position: relative;
  padding: 0 50px;
}
@media (max-width: 767px) {
  .top-cases__slider-wrap {
    padding: 0;
  }
}
.top-cases .swiper-slide {
  width: 280px;
}
@media (max-width: 767px) {
  .top-cases .swiper-slide {
    width: 240px;
  }
}
.top-cases__card {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.top-cases__card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.top-cases__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-cases__card-body {
  padding: 16px;
}
.top-cases__card-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}
.top-cases__card-meta {
  font-size: 12px;
  color: #666666;
}
.top-cases .swiper-button-prev,
.top-cases .swiper-button-next {
  color: #c41e24;
  width: 44px;
  height: 44px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.top-cases .swiper-button-prev::after,
.top-cases .swiper-button-next::after {
  font-size: 18px;
}
@media (max-width: 767px) {
  .top-cases .swiper-button-prev,
  .top-cases .swiper-button-next {
    display: none;
  }
}

.top-blog {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .top-blog {
    padding: 60px 0;
  }
}
.top-blog__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.top-blog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 767px) {
  .top-blog__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
.top-blog__card {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}
.top-blog__card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.top-blog__card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: #f5f5f5;
}
.top-blog__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-blog__card-body {
  padding: 14px;
}
.top-blog__card-date {
  font-size: 12px;
  color: #666666;
  margin-bottom: 6px;
}
.top-blog__card-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.top-blog__more {
  text-align: center;
  margin-top: 40px;
}

.top-contact {
  padding: 80px 0;
  background-color: #c41e24;
  text-align: center;
}
@media (max-width: 767px) {
  .top-contact {
    padding: 60px 0;
  }
}
.top-contact__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.top-contact__title {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.top-contact__heading {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .top-contact__heading {
    font-size: 22px;
  }
}
.top-contact__text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .top-contact__text {
    font-size: 14px;
  }
}
.top-contact__actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .top-contact__actions {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}
.top-contact__tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
}
.top-contact__tel .tel-label {
  font-size: 13px;
  margin-bottom: 4px;
}
.top-contact__tel a {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
}
@media (max-width: 767px) {
  .top-contact__tel a {
    font-size: 26px;
  }
}
.top-contact__tel a:hover {
  opacity: 1;
  text-decoration: underline;
}
.top-contact__form-btn {
  display: inline-block;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 16px 50px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  transition: opacity 0.3s ease;
}
.top-contact__form-btn:hover {
  opacity: 0.85;
  color: #ffffff;
}

.top-map__iframe {
  width: 100%;
  height: 400px;
  display: block;
}
@media (max-width: 767px) {
  .top-map__iframe {
    height: 300px;
  }
}

.scrap-section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .scrap-section-title {
    font-size: 22px;
    margin-bottom: 24px;
  }
}

.scrap-accent {
  color: #c41e24;
}

.scrap-hero {
  background-color: #fdf4d0;
  padding: 60px 0 0;
  text-align: center;
  overflow: hidden;
}
@media (max-width: 767px) {
  .scrap-hero {
    padding: 40px 0 0;
  }
}
.scrap-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.scrap-hero__lead {
  font-size: 18px;
  font-weight: 700;
  color: #c41e24;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .scrap-hero__lead {
    font-size: 14px;
  }
}
.scrap-hero__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .scrap-hero__title {
    font-size: 24px;
  }
}
.scrap-hero__accent {
  color: #c41e24;
  font-size: 42px;
}
@media (max-width: 767px) {
  .scrap-hero__accent {
    font-size: 28px;
  }
}
.scrap-hero__catch {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .scrap-hero__catch {
    font-size: 20px;
  }
}
.scrap-hero__logo-inline {
  height: 36px;
  width: auto;
  vertical-align: middle;
  margin: 0 4px;
}
@media (max-width: 767px) {
  .scrap-hero__logo-inline {
    height: 24px;
  }
}
.scrap-hero__image {
  margin: 0 auto;
  max-width: 500px;
}
.scrap-hero__image img {
  width: 100%;
  height: auto;
}
.scrap-hero__badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}
@media (max-width: 767px) {
  .scrap-hero__badges {
    gap: 8px;
  }
}
.scrap-hero__badge {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #c41e24;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .scrap-hero__badge {
    width: 70px;
    height: 70px;
    font-size: 11px;
  }
}
.scrap-hero__merits {
  display: flex;
  background-color: #c41e24;
}
@media (max-width: 767px) {
  .scrap-hero__merits {
    flex-direction: column;
  }
}
.scrap-hero__merit {
  flex: 1;
  text-align: center;
  padding: 16px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.scrap-hero__merit:last-child {
  border-right: none;
}
@media (max-width: 767px) {
  .scrap-hero__merit {
    font-size: 16px;
    padding: 12px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .scrap-hero__merit:last-child {
    border-bottom: none;
  }
}

.scrap-products {
  background-color: #fdf4d0;
}
.scrap-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .scrap-products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
.scrap-products__item {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 24px 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}
.scrap-products__note {
  text-align: center;
  color: #c41e24;
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .scrap-products__note {
    font-size: 15px;
  }
}

.scrap-speed {
  background-color: #fdf4d0;
}
.scrap-speed__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
@media (max-width: 767px) {
  .scrap-speed__content {
    flex-direction: column;
    padding: 24px;
    gap: 16px;
  }
}
.scrap-speed__character {
  flex-shrink: 0;
}
.scrap-speed__character img {
  width: 120px;
  height: auto;
}
.scrap-speed__highlight {
  font-size: 28px;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .scrap-speed__highlight {
    font-size: 22px;
  }
}
.scrap-speed__highlight strong {
  font-weight: 700;
  font-size: 36px;
}
@media (max-width: 767px) {
  .scrap-speed__highlight strong {
    font-size: 28px;
  }
}
.scrap-speed__text p {
  font-size: 14px;
  line-height: 1.8;
  color: #666666;
}

.scrap-cases {
  background-color: #fdf4d0;
}
.scrap-cases__sub {
  text-align: center;
  color: #c41e24;
  font-weight: 700;
  margin-bottom: 30px;
}
.scrap-cases__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .scrap-cases__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
.scrap-cases__card {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}
.scrap-cases__card-image {
  aspect-ratio: 4/3;
  background-color: #f5f5f5;
}
.scrap-cases__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.scrap-cases__card-body {
  padding: 12px;
}
.scrap-cases__card-price {
  font-size: 20px;
  margin-bottom: 4px;
}
@media (max-width: 767px) {
  .scrap-cases__card-price {
    font-size: 16px;
  }
}
.scrap-cases__price-label {
  display: inline-block;
  background-color: #c41e24;
  color: #ffffff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 2px;
  vertical-align: middle;
  margin-right: 4px;
}
.scrap-cases__card-name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.scrap-cases__card-meta {
  font-size: 12px;
  color: #666666;
  line-height: 1.6;
}

.scrap-worry {
  background-color: #fdf4d0;
  text-align: center;
}
.scrap-worry__list {
  max-width: 500px;
  margin: 0 auto;
}
.scrap-worry__list li {
  font-size: 16px;
  padding: 8px 0;
  color: #c41e24;
  font-weight: 500;
}
@media (max-width: 767px) {
  .scrap-worry__list li {
    font-size: 14px;
  }
}

.scrap-cta {
  background-color: #c41e24;
  background-image: linear-gradient(135deg, #c41e24 0%, #a01a1f 100%);
  padding: 60px 0;
  text-align: center;
  color: #ffffff;
}
@media (max-width: 767px) {
  .scrap-cta {
    padding: 40px 0;
  }
}
.scrap-cta__lead {
  font-size: 18px;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .scrap-cta__lead {
    font-size: 15px;
  }
}
.scrap-cta__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .scrap-cta__title {
    font-size: 24px;
  }
}
.scrap-cta__heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .scrap-cta__heading {
    font-size: 24px;
  }
}
.scrap-cta__text {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 8px;
  opacity: 0.9;
}
@media (max-width: 767px) {
  .scrap-cta__text {
    font-size: 14px;
  }
}
.scrap-cta__highlight {
  font-size: 18px;
  font-weight: 700;
  color: #fdf4d0;
  margin-bottom: 8px;
}
.scrap-cta__sub-text {
  font-size: 15px;
  margin-bottom: 20px;
}
.scrap-cta__btn {
  display: inline-block;
  background-color: #ffffff;
  color: #333333;
  padding: 16px 60px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.scrap-cta__btn:hover {
  opacity: 1;
  background-color: #333333;
  color: #ffffff;
}
@media (max-width: 767px) {
  .scrap-cta__btn {
    font-size: 16px;
    padding: 14px 40px;
  }
}
.scrap-cta--secondary {
  background-image: none;
  background-color: #c41e24;
}

.scrap-reasons__sub {
  text-align: center;
  margin-bottom: 40px;
  font-size: 15px;
  color: #666666;
}
.scrap-reasons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 767px) {
  .scrap-reasons__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.scrap-reasons__item {
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
}
.scrap-reasons__number {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  background-color: #c41e24;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 16px;
  line-height: 1.3;
}
.scrap-reasons__number span {
  font-size: 24px;
}
.scrap-reasons__heading {
  font-size: 16px;
  font-weight: 700;
  color: #c41e24;
  margin-bottom: 12px;
}
.scrap-reasons__text {
  font-size: 13px;
  line-height: 1.8;
  color: #666666;
  text-align: left;
}

.scrap-flow {
  background-color: #f5f5f5;
}
.scrap-flow__sub {
  text-align: center;
  font-size: 18px;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .scrap-flow__sub {
    font-size: 16px;
  }
}
.scrap-flow__desc {
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  color: #666666;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .scrap-flow__desc {
    font-size: 13px;
    text-align: left;
  }
}
.scrap-flow__steps {
  max-width: 800px;
  margin: 0 auto;
}
.scrap-flow__step {
  display: flex;
  gap: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}
@media (max-width: 767px) {
  .scrap-flow__step {
    padding: 16px;
    gap: 12px;
  }
}
.scrap-flow__step-number {
  flex-shrink: 0;
  width: 50px;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  background-color: #c41e24;
  border-radius: 8px;
  padding: 8px;
  text-align: center;
  line-height: 1.2;
  height: fit-content;
}
.scrap-flow__step-number span {
  font-size: 24px;
  display: block;
}
.scrap-flow__step-content {
  flex: 1;
}
.scrap-flow__step-title {
  font-size: 16px;
  font-weight: 700;
  color: #c41e24;
  margin-bottom: 8px;
}
.scrap-flow__step-text {
  font-size: 14px;
  line-height: 1.8;
  color: #666666;
}
@media (max-width: 767px) {
  .scrap-flow__step-text {
    font-size: 13px;
  }
}

.scrap-faq__item {
  border-bottom: 1px solid #dddddd;
}
.scrap-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}
@media (max-width: 767px) {
  .scrap-faq__question {
    font-size: 14px;
    padding: 16px 0;
  }
}
.scrap-faq__q-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background-color: #c41e24;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.scrap-faq__toggle {
  flex-shrink: 0;
  margin-left: auto;
  width: 16px;
  height: 16px;
  position: relative;
}
.scrap-faq__toggle::before, .scrap-faq__toggle::after {
  content: "";
  position: absolute;
  background-color: #333333;
  transition: transform 0.3s ease;
}
.scrap-faq__toggle::before {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.scrap-faq__toggle::after {
  width: 2px;
  height: 16px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.scrap-faq__item.is-open .scrap-faq__toggle::after {
  transform: translateX(-50%) rotate(90deg);
}
.scrap-faq__answer {
  display: none;
  padding: 0 0 20px 42px;
  font-size: 14px;
  line-height: 1.8;
  color: #666666;
}
@media (max-width: 767px) {
  .scrap-faq__answer {
    font-size: 13px;
  }
}
.scrap-faq__a-icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #333333;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  font-size: 14px;
  font-weight: 700;
  margin-right: 8px;
  float: left;
  margin-top: -2px;
}

.scrap-contact {
  text-align: center;
}
.scrap-contact__text {
  font-size: 15px;
  color: #666666;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .scrap-contact__text {
    font-size: 14px;
  }
}
.scrap-contact__channels {
  display: flex;
  justify-content: center;
  gap: 60px;
}
@media (max-width: 767px) {
  .scrap-contact__channels {
    gap: 30px;
  }
}
.scrap-contact__channel {
  text-align: center;
}
.scrap-contact__channel img {
  width: 150px;
  height: 150px;
  border-radius: 8px;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .scrap-contact__channel img {
    width: 120px;
    height: 120px;
  }
}
.scrap-contact__channel p {
  font-size: 14px;
  font-weight: 700;
}

.scrap-form {
  background-color: #f5f5f5;
}
.scrap-form__desc {
  text-align: center;
  font-size: 14px;
  color: #666666;
  margin-bottom: 30px;
  line-height: 1.8;
}
.scrap-form__body {
  max-width: 700px;
  margin: 0 auto;
}
.scrap-form__body p {
  margin: 0 0 16px;
}
.scrap-form__body br {
  display: none;
}
.scrap-form__body .wpcf7-form-control-wrap {
  display: block;
  margin-top: 2px;
}
.scrap-form__body label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
}
.scrap-form__body label .required {
  color: #c41e24;
  font-size: 12px;
}
.scrap-form__body input[type=text],
.scrap-form__body input[type=email],
.scrap-form__body input[type=tel],
.scrap-form__body textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #dddddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  background-color: #ffffff;
}
.scrap-form__body input[type=text]:focus,
.scrap-form__body input[type=email]:focus,
.scrap-form__body input[type=tel]:focus,
.scrap-form__body textarea:focus {
  outline: none;
  border-color: #c41e24;
}
.scrap-form__body .wpcf7-submit {
  margin-top: 12px;
}
.scrap-form__body .wpcf7-not-valid-tip {
  color: #c41e24;
  font-size: 12px;
  margin-top: 4px;
}

.sub-section-title {
  margin-bottom: 40px;
  text-align: center;
}
.sub-section-title__en {
  display: block;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .sub-section-title__en {
    font-size: 22px;
  }
}
.sub-section-title__ja {
  display: block;
  font-size: 13px;
  color: #c41e24;
  margin-top: 4px;
}

.company-message {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .company-message {
    padding: 60px 0;
  }
}
.company-message__heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .company-message__heading {
    font-size: 24px;
  }
}
.company-message__label {
  font-size: 14px;
  color: #666666;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.company-message__text {
  max-width: 700px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 2;
  color: #666666;
}
@media (max-width: 767px) {
  .company-message__text {
    font-size: 14px;
  }
}
.company-message__text p {
  margin-bottom: 1.5em;
}
.company-message__text p:last-child {
  margin-bottom: 0;
}

.company-info {
  padding: 80px 0;
  background-color: #f5f5f5;
}
@media (max-width: 767px) {
  .company-info {
    padding: 60px 0;
  }
}
.company-info__table {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  border-collapse: collapse;
}
.company-info__table th, .company-info__table td {
  padding: 16px 20px;
  border-bottom: 1px solid #dddddd;
  font-size: 14px;
  text-align: left;
  vertical-align: top;
}
@media (max-width: 767px) {
  .company-info__table th, .company-info__table td {
    display: block;
    padding: 10px 0;
  }
}
.company-info__table th {
  width: 180px;
  font-weight: 500;
  color: #333333;
}
@media (max-width: 767px) {
  .company-info__table th {
    width: 100%;
    border-bottom: none;
    padding-bottom: 0;
    font-weight: 700;
  }
}
.company-info__table td {
  color: #666666;
}
@media (max-width: 767px) {
  .company-info__table td {
    padding-top: 4px;
  }
}

.company-map {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .company-map {
    padding: 60px 0;
  }
}
.company-map__iframe {
  width: 100%;
  height: 400px;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .company-map__iframe {
    height: 300px;
  }
}

.corp-intro {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .corp-intro {
    padding: 60px 0;
  }
}
.corp-intro__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 767px) {
  .corp-intro__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.corp-intro__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .corp-intro__item {
    gap: 12px;
  }
}
.corp-intro__icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: #f5f5f5;
  border-radius: 8px;
}
.corp-intro__text h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.corp-intro__text p {
  font-size: 14px;
  color: #666666;
  line-height: 1.8;
}

.corp-fleet {
  padding: 80px 0;
  background-color: #f5f5f5;
}
@media (max-width: 767px) {
  .corp-fleet {
    padding: 60px 0;
  }
}
.corp-fleet__desc {
  text-align: center;
  font-size: 15px;
  color: #666666;
  margin-bottom: 40px;
  line-height: 1.8;
}
.corp-fleet__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .corp-fleet__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.corp-fleet__card {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}
.corp-fleet__card-image {
  aspect-ratio: 16/10;
  background-color: #f5f5f5;
}
.corp-fleet__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.corp-fleet__card-body {
  padding: 16px;
}
.corp-fleet__card-body h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.corp-fleet__card-body p {
  font-size: 13px;
  color: #666666;
  line-height: 1.6;
}

.corp-vehicles {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .corp-vehicles {
    padding: 60px 0;
  }
}
.corp-vehicles__lead {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .corp-vehicles__lead {
    font-size: 18px;
  }
}
.corp-vehicles__sub {
  text-align: center;
  font-size: 15px;
  color: #666666;
  margin-bottom: 40px;
}
.corp-vehicles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .corp-vehicles__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
.corp-vehicles__item {
  text-align: center;
}
.corp-vehicles__item img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
}
.corp-vehicles__item p {
  font-size: 14px;
  font-weight: 500;
}

.parts-overview {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .parts-overview {
    padding: 60px 0;
  }
}
.parts-overview__desc {
  text-align: center;
  font-size: 15px;
  color: #666666;
  margin-bottom: 40px;
  line-height: 1.8;
}
.parts-overview__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 767px) {
  .parts-overview__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.parts-overview__item {
  display: flex;
  gap: 16px;
}
@media (max-width: 767px) {
  .parts-overview__item {
    gap: 12px;
  }
}
.parts-overview__item-image {
  flex-shrink: 0;
  width: 150px;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f5f5f5;
}
.parts-overview__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .parts-overview__item-image {
    width: 120px;
  }
}
.parts-overview__item-text h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.parts-overview__item-text p {
  font-size: 13px;
  color: #666666;
  line-height: 1.8;
}
.parts-overview__policy {
  margin-top: 40px;
  padding: 24px;
  background-color: #f5f5f5;
  border-radius: 8px;
}
.parts-overview__policy h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}
.parts-overview__policy p {
  font-size: 14px;
  color: #666666;
  line-height: 1.8;
}

.parts-yahoo {
  padding: 60px 0;
  background-color: #c41e24;
  text-align: center;
  color: #ffffff;
}
@media (max-width: 767px) {
  .parts-yahoo {
    padding: 40px 0;
  }
}
.parts-yahoo__heading {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .parts-yahoo__heading {
    font-size: 20px;
  }
}
.parts-yahoo__text {
  font-size: 15px;
  margin-bottom: 24px;
  opacity: 0.9;
}
.parts-yahoo__btn {
  display: inline-block;
  background-color: #ffffff;
  color: #c41e24;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.parts-yahoo__btn:hover {
  opacity: 1;
  background-color: #333333;
  color: #ffffff;
}

.recycling-intro {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .recycling-intro {
    padding: 60px 0;
  }
}
.recycling-intro__content {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .recycling-intro__content {
    flex-direction: column;
    gap: 20px;
  }
}
.recycling-intro__image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f5f5f5;
  aspect-ratio: 16/10;
}
.recycling-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recycling-intro__text {
  flex: 1;
}
.recycling-intro__text h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.recycling-intro__text p {
  font-size: 14px;
  color: #666666;
  line-height: 1.8;
}

.recycling-process {
  padding: 80px 0;
  background-color: #f5f5f5;
}
@media (max-width: 767px) {
  .recycling-process {
    padding: 60px 0;
  }
}
.recycling-process__desc {
  text-align: center;
  font-size: 15px;
  color: #666666;
  margin-bottom: 40px;
}
.recycling-process__steps {
  max-width: 700px;
  margin: 0 auto;
}
.recycling-process__step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .recycling-process__step {
    gap: 12px;
  }
}
.recycling-process__step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #c41e24;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.recycling-process__step-text h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.recycling-process__step-text p {
  font-size: 14px;
  color: #666666;
  line-height: 1.8;
}

.recycling-sdg {
  padding: 80px 0;
  text-align: center;
}
@media (max-width: 767px) {
  .recycling-sdg {
    padding: 60px 0;
  }
}
.recycling-sdg__text {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 15px;
  color: #666666;
  line-height: 1.8;
}
.recycling-sdg__image {
  max-width: 600px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
}
.recycling-sdg__image img {
  width: 100%;
  height: auto;
}

.sub-cta {
  padding: 60px 0;
  background-color: #c41e24;
  text-align: center;
}
@media (max-width: 767px) {
  .sub-cta {
    padding: 40px 0;
  }
}
.sub-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .sub-cta__buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
.sub-cta__btn {
  display: inline-block;
  padding: 14px 30px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.sub-cta__btn:hover {
  background-color: #ffffff;
  color: #c41e24;
  opacity: 1;
}

.contact-form__desc {
  text-align: center;
  font-size: 15px;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .contact-form__desc {
    font-size: 14px;
    margin-bottom: 30px;
  }
}
.contact-form__body {
  max-width: 700px;
  margin: 0 auto;
}
.contact-form__body p {
  margin: 0 0 16px;
}
.contact-form__body br {
  display: none;
}
.contact-form__body .wpcf7-form-control-wrap {
  display: block;
  margin-top: 2px;
}
.contact-form__body label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
}
.contact-form__body .required {
  display: inline-block;
  background-color: #c41e24;
  color: #ffffff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 2px;
  margin-right: 8px;
}
.contact-form__body .optional {
  display: inline-block;
  background-color: #666666;
  color: #ffffff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 2px;
  margin-right: 8px;
}
.contact-form__body input[type=text],
.contact-form__body input[type=email],
.contact-form__body input[type=tel],
.contact-form__body textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #dddddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  background-color: #ffffff;
}
.contact-form__body input[type=text]:focus,
.contact-form__body input[type=email]:focus,
.contact-form__body input[type=tel]:focus,
.contact-form__body textarea:focus {
  outline: none;
  border-color: #c41e24;
}
.contact-form__body input[type=text]::placeholder,
.contact-form__body input[type=email]::placeholder,
.contact-form__body input[type=tel]::placeholder,
.contact-form__body textarea::placeholder {
  color: #bbb;
}
.contact-form__body .wpcf7-submit {
  margin-top: 12px;
}
.contact-form__body .wpcf7-not-valid-tip {
  color: #c41e24;
  font-size: 12px;
  margin-top: 4px;
}
.contact-form__consent {
  text-align: center;
  margin: 30px 0;
  font-size: 14px;
}
.contact-form__consent input[type=checkbox] {
  margin-right: 8px;
}
.contact-form__consent a {
  color: #c41e24;
  font-size: 13px;
}
.contact-form__consent a:hover {
  opacity: 1;
  text-decoration: underline;
}
.contact-form__submit {
  text-align: center;
}

.btn--wide {
  min-width: 300px;
  padding: 16px 60px;
  font-size: 16px;
  letter-spacing: 0.3em;
}
@media (max-width: 767px) {
  .btn--wide {
    min-width: auto;
    width: 100%;
  }
}

.archive-content {
  padding: 60px 0 80px;
}
@media (max-width: 767px) {
  .archive-content {
    padding: 40px 0 60px;
  }
}
.archive-content__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.archive-filter {
  margin-bottom: 40px;
}
.archive-filter__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.archive-filter__list a {
  display: inline-block;
  padding: 8px 20px;
  font-size: 13px;
  border: 1px solid #dddddd;
  border-radius: 50px;
  color: #666666;
  transition: all 0.3s ease;
}
.archive-filter__list a:hover, .archive-filter__list a.is-active {
  background-color: #c41e24;
  border-color: #c41e24;
  color: #ffffff;
  opacity: 1;
}

.news-list__item {
  border-bottom: 1px solid #dddddd;
}
.news-list__link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
}
@media (max-width: 767px) {
  .news-list__link {
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 0;
  }
}
.news-list__link:hover {
  opacity: 1;
}
.news-list__link:hover .news-list__title {
  color: #c41e24;
}
.news-list__date {
  flex-shrink: 0;
  font-size: 14px;
  color: #666666;
  min-width: 100px;
}
@media (max-width: 767px) {
  .news-list__date {
    font-size: 13px;
  }
}
.news-list__category {
  flex-shrink: 0;
  display: inline-block;
  padding: 2px 12px;
  font-size: 11px;
  background-color: #c41e24;
  color: #ffffff;
  border-radius: 2px;
}
.news-list__title {
  font-size: 15px;
  transition: color 0.3s ease;
}
@media (max-width: 767px) {
  .news-list__title {
    font-size: 14px;
    width: 100%;
  }
}

.pagination {
  margin-top: 40px;
  text-align: center;
}
.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 14px;
  border: 1px solid #dddddd;
  border-radius: 4px;
  color: #333333;
  transition: all 0.3s ease;
}
.pagination .page-numbers:hover {
  background-color: #c41e24;
  border-color: #c41e24;
  color: #ffffff;
  opacity: 1;
}
.pagination .page-numbers.current {
  background-color: #c41e24;
  border-color: #c41e24;
  color: #ffffff;
}

.no-posts {
  text-align: center;
  color: #666666;
  padding: 60px 0;
}

.single-content {
  padding: 60px 0 80px;
}
@media (max-width: 767px) {
  .single-content {
    padding: 40px 0 60px;
  }
}
.single-content__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.article__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.article__date {
  font-size: 14px;
  color: #666666;
}
.article__category {
  display: inline-block;
  padding: 2px 12px;
  font-size: 11px;
  background-color: #c41e24;
  color: #ffffff;
  border-radius: 2px;
}
.article__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #dddddd;
}
@media (max-width: 767px) {
  .article__title {
    font-size: 20px;
  }
}
.article__thumbnail {
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}
.article__thumbnail img {
  width: 100%;
  height: auto;
}
.article__body {
  font-size: 15px;
  line-height: 2;
  color: #333333;
}
@media (max-width: 767px) {
  .article__body {
    font-size: 14px;
  }
}
.article__body h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 40px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #c41e24;
}
@media (max-width: 767px) {
  .article__body h2 {
    font-size: 19px;
  }
}
.article__body h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 30px 0 12px;
}
@media (max-width: 767px) {
  .article__body h3 {
    font-size: 16px;
  }
}
.article__body p {
  margin-bottom: 20px;
}
.article__body ul, .article__body ol {
  margin: 16px 0;
  padding-left: 24px;
}
.article__body ul li, .article__body ol li {
  margin-bottom: 8px;
  list-style: disc;
}
.article__body ol li {
  list-style: decimal;
}
.article__body img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 16px 0;
}
.article__body blockquote {
  background-color: #f5f5f5;
  border-left: 4px solid #c41e24;
  padding: 20px 24px;
  margin: 20px 0;
  font-style: italic;
}
.article__body a {
  color: #c41e24;
}
.article__body a:hover {
  text-decoration: underline;
  opacity: 1;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loading.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loading__logo {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.loading__logo.is-visible {
  opacity: 1;
  transform: scale(1);
}
.loading__logo img {
  width: 200px;
  height: auto;
}
@media (max-width: 767px) {
  .loading__logo img {
    width: 150px;
  }
}

.privacy__body {
  max-width: 800px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 2;
  color: #333333;
}
@media (max-width: 767px) {
  .privacy__body {
    font-size: 14px;
  }
}
.privacy__body h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 40px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #dddddd;
}
@media (max-width: 767px) {
  .privacy__body h2 {
    font-size: 16px;
  }
}
.privacy__body p {
  margin-bottom: 16px;
}
.privacy__body ul {
  margin: 12px 0 20px;
  padding-left: 24px;
}
.privacy__body ul li {
  list-style: disc;
  margin-bottom: 6px;
}
.privacy__company {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #dddddd;
  font-size: 14px;
  line-height: 1.8;
}
