@charset "UTF-8";
/*
Theme Name:orjapan
Theme URI: http://
Author:
Author URI:
Description:
Version: 1.1
*/

:root {
  --color-primary: #31559c;
  --color-primary-dark: #183d7b;
  --color-gold: #caa018;
  --color-text: #1f2430;
  --color-muted: #606878;
  --color-border: #d8dce6;
  --color-white: #fff;
  --color-bg: #f7f9fc;

  --container: 1200px;

  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 20px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 72px;
  --space-3xl: 100px;

  --font-ja: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;

  --header-height: 132px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--color-text);
 /* font-family: var(--font-serif);*/
  font-size: 15px;
  line-height: 1.8;
  background: var(--color-white);
  overflow-x: hidden;
}

body.open {
  overflow: hidden;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(calc(100% - 80px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 18px;
}

.section-heading--center {
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  text-align: center;
}

.section-heading__ja {
  margin: 0;

  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.section-heading__en {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--color-muted);
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.section-heading__en::before {
  content: "";
  width: 20px;
  height: 1px;
  margin-right: 10px;
  background: currentColor;
}

.section-heading--center .section-heading__en::before {
  display: none;
}

.section-heading--white .section-heading__ja {
  color: var(--color-white);
}

/* =========================
  Header
========================= */

.header {
  position: relative;
  z-index: 100;
  background: var(--color-white);
}



.header__logo {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 112px;
  padding-top: 4px;
}

.header__logo-img {
  display: block;
  width: 96px;
  height: auto;
}

.header__logo-text {
font-family: var(--font-serif);
  display: block;
  margin-top: 4px;
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.header__inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.header__top {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.header__info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 300px;
}

.header__tel,
.footer__tel {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: 33px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
}

.footer__tel {
  color: var(--color-white);
}

.tel-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.tel-number {
  font-size: inherit;
}

.header__address {
  margin: 7px 0 0;
  color: var(--color-text);
  font-family: var(--font-serif);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.03em;
  text-align: right;
  white-space: nowrap;
}



.header__nav {
  width: 100%;
  display: block;
}

.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  width: 100%;
}

.header__nav-item {
  position: relative;
  flex: 0 0 auto;
}

.header__nav-link {
  display: block;
  padding: 0 16px;
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.08em;
  line-height: 1.4;
  white-space: nowrap;
}




.header__contact-btn {
  flex: 0 0 auto;
  min-width: 155px;
  padding: 20px 24px;
  color: var(--color-white);
  font-size: 14px;
  line-height: 1;
  text-align: center;
  background: var(--color-gold);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.header__contact-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header__nav-item {
  position: relative;
}

.header__nav-item:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 12px;
  background: var(--color-border);
  transform: translateY(-50%);
}

.header__nav-link {
  display: block;
  padding: 0 16px;
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.08em;
  transition: opacity 0.3s ease;
}

.header__nav-link:hover {
  opacity: 0.65;
}

.header__hamburger {
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
}

/* =========================
  Hero
========================= */

.hero {
  position: relative;
  overflow: hidden;
}

.hero__img {
  width: 100%;
  height: 565px;
  object-fit: cover;
}

.hero__content {
  position: absolute;
  top: 43%;
  left: 50%;
  width: min(100% - 40px, 900px);
  color: var(--color-white);
  text-align: center;
  transform: translate(-50%, -50%);
  animation: fadeUp 1.2s ease both;
}

.hero__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 50px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-shadow: 0 2px 14px rgba(0, 40, 90, 0.2);
}

.hero__lead {
  margin: 8px 0 0;
  font-family: var(--font-serif);
  font-size: 26px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-shadow: 0 2px 14px rgba(0, 40, 90, 0.2);
}

/* =========================
  スライダー画像
========================= */

.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 760;
  overflow: hidden;
  background: #061729;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 2.5s ease-in-out,
    transform 7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}



.hero-slide__picture,
.hero-slide__img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* 1枚目のテキスト */
.hero-slide__content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.hero-slide__title {
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  font-size: clamp(32px, 3.2vw, 52px);
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-slide__lead {
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  margin-top: 18px;
  font-size: clamp(16px, 1.35vw, 22px);
  letter-spacing: 0.06em;
}
/* スマホ */
@media (max-width: 767px) {
  .hero-slider {
    height: auto;
    aspect-ratio: 750 / 720;
  }

  .hero-slide__picture,
  .hero-slide__img {
    width: 100%;
    height: 100%;
  }

  .hero-slide__img {
    object-fit: cover;
    object-position: center center;
  }

  .hero-slide__title {
    font-size: 26px;
    line-height: 1.45;
  }

  .hero-slide__lead {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.7;
  }
}

/* =========================
  固定ページタイトル背景
========================= */


.page-hero {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.page-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background-color: #31559C;
  opacity: 0.7;
}

.page-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Zen Old Mincho', serif;
  text-align: center;
}

.page-hero__content h1 {
  margin: 0 0 10px;
  font-size: 50px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-shadow: 0 2px 14px rgba(0, 40, 90, 0.2);
}

.page-hero__content hr {
  width: 60px;
  border: none;
  border-top: 1px solid #fff;
  margin: 0 0 10px;
}

.page-hero__content p {
  margin: 0;
  font-size: clamp(16px, 2.5vw, 25px);
  font-weight: 400;
}
/* =========================
  Mission
========================= */

.mission {
  padding: 84px 0 90px;
}

.mission__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 510px;
  gap: 70px;
  align-items: start;
}

.mission__text {
  padding-left: 16px;
}

.mission__copy {
  margin: 28px 0 0;
  font-size: 16px;
  line-height: 2;
}

.mission__body {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 2;
}

.mission__dummy {
  margin: 20px 0 0;
  color: #545b67;
  font-size: 18px;
  line-height: 1.85;
}

.mission__img {
  aspect-ratio: 510 / 320;
  object-fit: cover;
margin-top: 150px;
}

/* =========================
  Point
========================= */

.point {
  overflow: hidden;
}

.point__bg {
  position: relative;
  overflow: hidden;
  padding: 54px 0 80px;
  background: none;
}

.point__bg::before {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: 0;
  background:
    linear-gradient(rgba(20, 48, 93, 0.72), rgba(20, 48, 93, 0.72)),
    url("https://orjapan.jp/wp-content/uploads/2026/05/867a711f3fcccaa830445c8218e0957e.jpg") center / cover no-repeat;
}

.point__inner {
  position: relative;
  z-index: 1;
}


/* スマホ時：背景画像の端に出るベタ塗りをさらに外側へ逃がす */
@media (max-width: 767px) {
  .point__bg::before {
    inset: -48px -24px;
    background:
      linear-gradient(rgba(20, 48, 93, 0.72), rgba(20, 48, 93, 0.72)),
      url("https://orjapan.jp/wp-content/uploads/2026/05/867a711f3fcccaa830445c8218e0957e.jpg") center / cover no-repeat;
  }
}

.point__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 78px;
  margin-top: 52px;
  padding-inline: 46px;
}

.point-card {
  min-height: 385px;
  /*padding: 42px 38px 40px;*/
  padding: 30px;
  text-align: center;
  background: var(--color-white);
  box-shadow: 0 14px 28px rgba(0, 25, 70, 0.12);
}

.point-card--02 {
  animation-delay: 0.18s;
}

.point-card--03 {
  animation-delay: 0.36s;
}

.point-card__icon {
  width: 118px;
  height: 118px;
  margin: 0 auto 26px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/* POINT 1 */
.point-card__icon--steering {
  background-image: url("https://orjapan.jp/wp-content/themes/orjapan/img/top_icon_1.svg");
}

/* POINT 2 */
.point-card__icon--car {
  background-image: url("https://orjapan.jp/wp-content/themes/orjapan/img/top_icon_6.svg");
}

/* POINT 3 */
.point-card__icon--seat {
  background-image: url("https://orjapan.jp/wp-content/themes/orjapan/img/top_icon_3.svg");
}

/* 既存の疑似要素アイコンを消す */
.point-card__icon--steering::before,
.point-card__icon--car::before,
.point-card__icon--seat::before,
.point-card__icon--seat::after {
  content: none;
  display: none;
}




.point-card__num {
  margin: 0;
color: #30559C;
  /*color: var(--color-gold);*/
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.point-card__title {
	margin: 0 0 20px;
    color: #31559c;
  /*margin: 7px 0 18px;*/
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}

.point-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  text-align: left;
}

/* =========================
  Service
========================= */

.service {
  padding: 100px 0 150px;
}

.service__inner {
  display: grid;
  grid-template-columns: 510px minmax(0, 1fr);
  gap: 92px;
  /*align-items: center;*/
}

.service__img {
  aspect-ratio: 510 / 320;
  object-fit: cover;
}

.service__body {
  margin: 24px 0 0;
  font-size: 16px;
  line-height: 2;
}



.service__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 250px;
  margin-top: 30px;
  padding: 15px 22px;
  color: var(--color-white);
  font-size: 13px;
  background: var(--color-primary);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* 横線 */
.service__btn::after {
  content: "";
  width: 68px;
  height: 1px;
  background: var(--color-white);
  transform: translateX(0);
  transition: transform 0.35s ease, width 0.35s ease;
}

/* 右端の斜め線　────＼ */
.service__btn::before {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 12px;
  height: 1px;
  background: var(--color-white);
  transform: translateY(-50%) rotate(35deg);
  transform-origin: right center;
  transition: transform 0.35s ease, right 0.35s ease;
}

.service__btn:hover {
  background: var(--color-primary-dark);
  transform: translateX(4px);
}

.service__btn:hover::after {
  width: 78px;
  transform: translateX(6px);
}

.service__btn:hover::before {
  right: 16px;
  transform: translateY(-50%) rotate(35deg);
}
/* =========================
  Performance
========================= */

.performance {
  padding: 0 0 88px;
  overflow: hidden;
}

.performance__heading {
  margin-left: 16px;
}

.performance__lead {
  margin: 14px 0 34px 16px;
  font-size: 15px;
}

.performance-slider {
  width: 100%;
  overflow: hidden;
}

.performance-slider__track {
  display: flex;
  width: max-content;
  animation: performanceSlide 28s linear infinite;
}

.performance-slider__track:hover {
  animation-play-state: paused;
}

.performance-slider__item {
  flex: 0 0 230px;
  margin-right: 14px;
  border: 1px solid #cfd3dc;
  background: var(--color-white);
  box-shadow: 0 8px 20px rgba(0, 25, 70, 0.06);
}

.performance-slider__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
}

.performance__more-wrap {
  margin-top: 34px;
  text-align: right;
}

.performance__more-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 250px;
  padding: 15px 22px;
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--color-primary);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.performance__more-btn::after {
  content: "";
  width: 68px;
  height: 1px;
  background: var(--color-white);
  transform: translateX(0);
  transition: transform 0.35s ease, width 0.35s ease;
}

.performance__more-btn::before {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 12px;
  height: 1px;
  background: var(--color-white);
  transform: translateY(-50%) rotate(35deg);
  transform-origin: right center;
  transition: right 0.35s ease;
}

.performance__more-btn:hover {
  background: var(--color-primary-dark);
  transform: translateX(4px);
}

.performance__more-btn:hover::after {
  width: 76px;
  transform: translateX(5px);
}

.performance__more-btn:hover::before {
  right: 17px;
}
@media (max-width: 767px) {
  .performance__more-wrap {
    margin-top: 28px;
    text-align: center;
  }

  .performance__more-btn {
    width: min(100%, 250px);
  }
}

/* =========================
  Performance Page
========================= */

.performance-page-section {
  padding: 92px 0 110px;
}

.performance-page__inner {
  max-width: 960px;
}

.performance-page__heading {
  margin-bottom: 46px;
}

.performance-message__body {
  padding: 38px 44px;
  background: #f7f9fc;
  border-left: 4px solid var(--color-primary);
  font-family: var(--font-serif);
}

.performance-message__body p {
  margin: 0;
  font-size: 16px;
  line-height: 2.1;
}

.performance-message__body p + p {
  margin-top: 18px;
}

.performance-gallery-section {
  margin-top: 86px;
}

.performance-gallery__lead {
  margin: -24px 0 30px;
  color: var(--color-muted);
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.9;
}

.performance-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.performance-gallery__item {
  margin: 0;
  overflow: hidden;
  background: #f7f9fc;
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 20px rgba(0, 25, 70, 0.05);
}

.performance-gallery__item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.performance-gallery__item:hover img {
  transform: scale(1.04);
}

.performance-gallery__note {
  margin: 28px 0 0;
  padding: 20px 24px;
  background: #f7f9fc;
  border-left: 3px solid var(--color-gold);
}

.performance-gallery__note p {
  margin: 0;
  color: var(--color-muted);
  font-family: var(--font-serif);
  font-size: 13px;
  line-height: 1.8;
}

.performance-gallery__note p + p {
  margin-top: 4px;
}

/* Smartphone */
@media (max-width: 767px) {
  .performance-page-section {
    padding: 60px 0 72px;
  }

  .performance-page__heading {
    margin-bottom: 32px;
  }

  .performance-message__body {
    padding: 28px 22px;
  }

  .performance-message__body p {
    font-size: 15px;
    line-height: 2;
  }

  .performance-gallery-section {
    margin-top: 62px;
  }

  .performance-gallery__lead {
    margin: -14px 0 24px;
    font-size: 14px;
  }

  .performance-gallery {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .performance-gallery__note {
    margin-top: 24px;
    padding: 18px 20px;
  }

  .performance-gallery__note p {
    font-size: 12px;
  }
}
/* =========================
  Works Photo Slider
========================= */

.works-photo {
  padding: 0 0 96px;
  overflow: hidden;
}

.works-photo__heading {
  margin-left: 16px;
}

.works-photo__lead {
  margin: 14px 0 34px 16px;
  font-size: 15px;
  line-height: 1.9;
}

.works-photo-slider {
  width: 100%;
  overflow: hidden;
}

.works-photo-slider__track {
  display: flex;
  width: max-content;
  animation: worksPhotoSlide 34s linear infinite;
}

.works-photo-slider__track:hover {
  animation-play-state: paused;
}

.works-photo-slider__item {
  flex: 0 0 230px;
  margin-right: 14px;
  background: #f7f9fc;
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 20px rgba(0, 25, 70, 0.06);
}

.works-photo-slider__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
}

@keyframes worksPhotoSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 767px) {
  .works-photo {
    padding: 0 0 64px;
  }

  .works-photo__heading,
  .works-photo__lead {
    margin-left: 0;
  }

  .works-photo__lead {
    font-size: 14px;
  }

  .works-photo-slider__item {
    flex-basis: 190px;
    margin-right: 10px;
  }
}
/* =========================
  Banner
========================= */

.banner {
  overflow: hidden;
}

.banner__bg {
  position: relative;
  padding: 150px 0 160px;
  background: linear-gradient(160deg, #3b63ab 0 50%, #28458f 50% 100%);
}

.banner__bg::before,
.banner__bg::after {
  content: none;
  display: none;
}

.banner__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 400px));
  justify-content: center;
  gap: 66px;
  padding-inline: 32px;
}

.banner-card {
  position: relative;
  min-height: 186px;
  overflow: hidden;
  color: var(--color-white);
  background: #123770;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.banner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

.banner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(11, 39, 89, 0.6), rgba(11, 39, 89, 0.08));
}

.banner-card__img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.banner-card__title {
  position: absolute;
  z-index: 2;
  left: 26px;
  top: 42px;
  font-family: var(--font-serif);
  font-size: 27px;
  letter-spacing: 0.06em;
}

.banner-card__en {
  position: absolute;
  z-index: 2;
  left: 28px;
  top: 84px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.banner-card__arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: var(--color-white);
  font-size: 22px;
  background: var(--color-gold);
}

/* =========================
  News
========================= */

.news {
  padding: 96px 0 92px;
}

.news__inner {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 60px;
}

.news__list {
  padding-top: 8px;
}
.news__heading {
  margin-left: 16px;
}
.news__item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 30px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border);
}

.news__item:first-child {
  border-top: 1px solid var(--color-border);
}

.news__date {
  color: #27313f;
  font-size: 12px;
  font-weight: 700;
}

.news__link {
  color: #27313f;
  font-size: 15px;
  line-height: 1.8;
  transition: color 0.3s ease;
}

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

.news__more-wrap {
  margin-top: 28px;
  text-align: right;
}

.news__more {
  color: #27313f;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* =========================
  Contact Top Section
========================= */

.contact {
  overflow: hidden;
}

.contact__bg {
  padding: 86px 0 94px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.58)),
    url("https://orjapan.jp/wp-content/uploads/2026/05/a7ac00370cd1ff566739f71ce72c4ecb.jpg")
    center bottom / cover no-repeat;
}

.contact__lead {
  margin: 22px 0 34px;
  font-size: 15px;
  text-align: center;
}

.contact__buttons {
  display: flex;
  justify-content: center;
  gap: 170px;
  margin-bottom: 58px;
}

.contact-btn {
  display: block;
  width: 260px;
  text-align: center;
}

.contact-btn__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 12px;
}



.contact-btn__body::before {
  content: "";
  display: block;
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 1.1em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* お電話からのお問い合わせ */
.contact-btn--tel .contact-btn__body::before {
  background-image: url("https://orjapan.jp/wp-content/themes/orjapan/img/top_icon_4.svg");
}

/* フォームでのお問い合わせ */
.contact-btn--form .contact-btn__body::before {
  background-image: url("https://orjapan.jp/wp-content/themes/orjapan/img/top_icon_5.svg");
}
.contact-btn--form .contact-btn__body {
  font-family: var(--font-ja);
  font-size: 18px;
}
.contact-btn__body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 26px;
  letter-spacing: 0.06em;
  background: var(--color-primary);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-btn--form .contact-btn__body {
  font-family: var(--font-ja);
  font-size: 15px;
}

.contact-btn:hover .contact-btn__body {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
}

.contact__map {
  width: min(100%, 940px);
  margin-inline: auto;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(0, 32, 80, 0.08);
}

.contact__map-iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.contact__map-img {
  width: 100%;
  aspect-ratio: 940 / 300;
  object-fit: cover;
}

.contact__address {
  width: min(100%, 940px);
  margin: 0 auto;
  padding: 20px;
  background: var(--color-white);
  box-shadow: 0 8px 26px rgba(0, 32, 80, 0.08);
}

.contact__address-label {
  margin: 0 0 6px;
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
}

.contact__address-text {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.8;
}

/* =========================
  Contact CTA
========================= */

.contact-cta {
  position: relative;
  padding: 96px 0;
  color: var(--color-white);
  text-align: center;
  background:
    linear-gradient(rgba(20, 61, 130, 0.68), rgba(20, 61, 130, 0.68)),
    url("https://orjapan.jp/wp-content/uploads/2026/05/22710f9fb62d738a735b3c073d56e2e4.png") center / cover no-repeat;
}

.contact-cta__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 12px rgba(0, 20, 50, 0.28);
}

.contact-cta__text {
  margin: 18px auto 0;
  max-width: 720px;
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 2;
  text-shadow: 0 2px 12px rgba(0, 20, 50, 0.28);
}

@media (max-width: 767px) {
  .contact-cta {
    padding: 68px 0;
    background-position: center;
  }

  .contact-cta__title {
    font-size: 23px;
  }

  .contact-cta__text {
    font-size: 14px;
    text-align: left;
  }
}

/* =========================
  Lower Page Common
========================= */

.lower-page {
  background: var(--color-white);
}

.lower-hero {
  padding: 92px 0 88px;
  color: var(--color-white);
  background:
    linear-gradient(rgba(20, 61, 130, 0.86), rgba(20, 61, 130, 0.86)),
    linear-gradient(135deg, #31559c 0%, #183d7b 100%);
}

.lower-hero__inner {
  text-align: center;
}

.lower-hero__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.4;
}

.lower-hero__en {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-serif);
  font-size: 15px;
  letter-spacing: 0.12em;
}

/* =========================
  Company Page
========================= */

.company {
  padding: 92px 0 110px;
}
.company-message__catch {
  margin: 0 0 26px;
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.company__inner {
  max-width: 960px;
}

.company__heading {
  margin-bottom: 46px;
}

.company-message,
.company-career,
.company-profile {
  margin-top: 86px;
}

.company-message:first-child {
  margin-top: 0;
}

.company-message__body {
  padding: 38px 44px;
  background: #f7f9fc;
  border-left: 4px solid var(--color-primary);
}

.company-message__body p {
  margin: 0;
  font-size: 16px;
  line-height: 2.1;
}

.company-message__body p + p {
  margin-top: 18px;
}

.company-message__name {
  margin-top: 32px !important;
  font-weight: 700;
  text-align: right;
  letter-spacing: 0.08em;
}

.company-table {
  width: 100%;
  border-top: 1px solid var(--color-border);
}

.company-table__row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 36px;
  margin: 0;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
}

.company-table__term {
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.company-table__desc {
  margin: 0;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.9;
}

.company-table--career .company-table__term {
  font-family: var(--font-serif);
  font-size: 17px;
}
/* =========================
  Business Page
========================= */

.business {
  padding: 92px 0 110px;
}

.business__inner {
  max-width: 960px;
}

.business__heading {
  margin-bottom: 46px;
}

.business-list {
  width: 100%;
  border-top: 1px solid var(--color-border);
}

.business-item {
  position: relative;
  padding: 26px 0 26px 34px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.7;
}

.business-item::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  width: 9px;
  height: 9px;
  background: var(--color-gold);
  transform: translateY(-50%) rotate(45deg);
}

/* Smartphone */
@media (max-width: 767px) {
  .business {
    padding: 60px 0 72px;
  }

  .business__heading {
    margin-bottom: 32px;
  }

  .business-item {
    padding: 22px 0 22px 28px;
    font-size: 17px;
  }

  .business-item::before {
    left: 2px;
    width: 8px;
    height: 8px;
  }

.mission__img {
  aspect-ratio: 510 / 320;
  object-fit: cover;
}
}

/* =========================
  Privacy Policy Page
========================= */

.privacy {
  padding: 92px 0 110px;
}

.privacy__inner {
  max-width: 960px;
}

.privacy__heading {
  margin-bottom: 36px;
}

.privacy__lead {
  padding: 38px 44px;
  background: #f7f9fc;
  border-left: 4px solid var(--color-primary);
}

.privacy__lead p {
  margin: 0;
  font-size: 16px;
  line-height: 2.1;
}

.privacy__lead p + p {
  margin-top: 18px;
}

.privacy-block {
  margin-top: 58px;
}

.privacy-block:first-child {
  margin-top: 0;
}

.privacy-title {
  position: relative;
  margin: 0 0 20px;
  padding-bottom: 14px;
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
  border-bottom: 1px solid var(--color-border);
}

.privacy-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 72px;
  height: 1px;
  background: var(--color-gold);
}

.privacy-block p {
  margin: 0;
  font-size: 16px;
  line-height: 2.05;
}

.privacy-block p + p {
  margin-top: 14px;
}

.privacy-list {
  margin-top: 18px;
  padding: 26px 32px;
  background: #f7f9fc;
}

.privacy-list li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  line-height: 2;
}

.privacy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.92em;
  width: 7px;
  height: 7px;
  background: var(--color-gold);
  transform: rotate(45deg);
}

.privacy-contact {
  margin-top: 70px;
}

.privacy-table {
  margin-top: 24px;
}

.privacy__date {
  margin: 56px 0 0;
  color: var(--color-muted);
  font-size: 14px;
  text-align: right;
}

/* Smartphone */
@media (max-width: 767px) {
  .privacy {
    padding: 60px 0 72px;
  }

  .privacy__heading {
    margin-bottom: 28px;
  }

  .privacy__lead {
    padding: 28px 22px;
  }

  .privacy__lead p {
    font-size: 15px;
    line-height: 2;
  }

  .privacy-block {
    margin-top: 46px;
  }

  .privacy-title {
    font-size: 19px;
  }

  .privacy-block p {
    font-size: 15px;
    line-height: 2;
  }

  .privacy-list {
    padding: 22px 20px;
  }

  .privacy-list li {
    font-size: 14px;
    line-height: 1.9;
  }

  .privacy-contact {
    margin-top: 54px;
  }

  .privacy__date {
    margin-top: 42px;
    text-align: left;
  }
}
/* =========================
  Vehicles Page
========================= */

.vehicles {
  padding: 92px 0 110px;
}

.vehicles__inner {
  max-width: 960px;
}

.vehicles__heading {
  margin-bottom: 46px;
}

.vehicles-message__body {
  padding: 38px 44px;
  background: #f7f9fc;
  border-left: 4px solid var(--color-primary);
}

.vehicles-message__body p {
  margin: 0;
  font-size: 16px;
  line-height: 2.1;
}

.vehicles-message__body p + p {
  margin-top: 18px;
}

.vehicles-gallery-section {
  margin-top: 86px;
}

.vehicles-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.vehicles-gallery__item {
  margin: 0;
  overflow: hidden;
  background: #f7f9fc;
  border: 1px solid var(--color-border);
}

.vehicles-gallery__item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.vehicles-gallery__item:hover img {
  transform: scale(1.04);
}

.vehicles-gallery__item:hover img {
  transform: scale(1.05);
}

.vehicles-gallery__note {
  margin: 22px 0 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.8;
}

/* Smartphone */
@media (max-width: 767px) {
  .vehicles {
    padding: 60px 0 72px;
  }

  .vehicles__heading {
    margin-bottom: 32px;
  }

  .vehicles-message__body {
    padding: 28px 22px;
  }

  .vehicles-message__body p {
    font-size: 15px;
    line-height: 2;
  }

  .vehicles-gallery-section {
    margin-top: 62px;
  }

  .vehicles-gallery {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .vehicles-gallery__note {
    font-size: 12px;
  }
}


/* =========================
  Contact Page
========================= */

.lower-contact {
  padding: 92px 0 110px;
}

.lower-contact__inner {
  max-width: 960px;
}

.lower-contact__heading {
  margin-bottom: 28px;
}

.lower-contact__lead {
  margin: 0 0 46px;
  font-size: 16px;
  line-height: 2;
}

.lower-contact__form {
  width: 100%;
}

.cf7-form {
  width: 100%;
  border-top: 1px solid var(--color-border);
}

.cf7-form__row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 36px;
  margin: 0;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
}

.cf7-form__label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.cf7-form__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  padding: 3px 8px;
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  background: var(--color-gold);
}

.cf7-form__field {
  min-width: 0;
}

.cf7-form__input,
.cf7-form__textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--color-border);
  border-radius: 0;
  color: var(--color-text);
  font-family: var(--font-ja);
  font-size: 16px;
  line-height: 1.6;
  background: var(--color-white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.cf7-form__input:focus,
.cf7-form__textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(33, 79, 156, 0.12);
}

.cf7-form__textarea {
  min-height: 220px;
  resize: vertical;
}

.cf7-form__submit-wrap {
  margin-top: 44px;
  text-align: center;
}

.cf7-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 52px;
  padding: 14px 40px;
  border: 0;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--color-primary);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cf7-form__submit:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
}

.wpcf7-not-valid-tip {
  margin-top: 8px;
  font-size: 13px;
}

.wpcf7-response-output {
  margin: 28px 0 0 !important;
  padding: 16px 20px !important;
  font-size: 14px;
  line-height: 1.8;
}

/* =========================
  Footer
========================= */
.footer {
  color: var(--color-white);
  background:
    linear-gradient(rgba(20, 61, 130, 0.88), rgba(20, 61, 130, 0.88)),
    url("https://orjapan.jp/wp-content/uploads/2026/05/a7ac00370cd1ff566739f71ce72c4ecb.jpg")
    center bottom / cover no-repeat;
}

.footer__inner {
  min-height: 150px;
  padding: 28px 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 112px;
}

.footer__logo-img {
  display: block;
  width: 96px;
  height: auto;
}

.footer__logo-text {
  display: block;
  margin-top: 6px;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  white-space: nowrap;
font-family: var(--font-serif);
}


.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 22px;
}

.footer__top {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer__info {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end;
}


.footer__info .footer__address {
  display: block;
  margin: 7px 0 0;
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 10px;
  line-height: 1.45;
  letter-spacing: 0.03em;
  text-align: right;
  white-space: nowrap;
  opacity: 0.9;
}


.footer__contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 155px;
  padding: 20px 24px;
  color: var(--color-white);
  font-size: 14px;
  line-height: 1;
  background: var(--color-gold);
}

.footer__nav-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer__nav-item {
  position: relative;
}

.footer__nav-item:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 10px;
  background: rgba(255, 255, 255, 0.45);
  transform: translateY(-50%);
}

.footer__nav-link {
  display: block;
  padding: 0 13px;
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 0.08em;
}

/* =========================
  Text Font
========================= */
.mission__copy,
.mission__body,
.mission__dummy,
.service__body,
.point-card__text,
.contact__lead,
.news__link,
.company-page,
.privacy-page,
.vehicles-page,
.company-message__body,
.vehicles-message__body,
.privacy__lead,
.privacy-block,
.company-table__desc {
  font-family: var(--font-serif);
}


/* =========================
  Animation
========================= */

.fade-in {
  opacity: 0;
  animation: fadeInSoft 1.4s ease 0.2s forwards;
}

.slide-in-right {
  opacity: 0;
  animation: slideInRight 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 24px));
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes fadeInSoft {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(90px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes performanceSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* =========================
  Tablet
========================= */

@media (max-width: 1199px) {
  :root {
    --header-height: 96px;
  }

  .container {
    width: min(calc(100% - 48px), var(--container));
  }

  .header__logo {
    width: 92px;
  }

  .header__tel {
    font-size: 22px;
  }

  .header__top {
    gap: 14px;
  }

  .header__contact-btn {
    min-width: 130px;
    padding: 9px 18px;
  }

  .header__nav-link {
    padding-inline: 10px;
    font-size: 12px;
  }

  .hero__img {
    height: 470px;
  }

  .hero__title {
    font-size: clamp(34px, 4.4vw, 48px);
  }

  .hero__lead {
    font-size: clamp(18px, 2.5vw, 25px);
  }

  .mission__inner {
    grid-template-columns: 1fr 42%;
    gap: 44px;
  }

  .point__cards {
    gap: 28px;
    padding-inline: 0;
  }

  .point-card {
    padding-inline: 26px;
  }

  .service__inner {
    grid-template-columns: 43% 1fr;
    gap: 54px;
  }

  .banner__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    gap: 28px;
    padding-inline: 0;
  }

  .contact__buttons {
    gap: 80px;
  }

  .footer__inner {
    gap: 30px;
  }
}

/* =========================
  Smartphone
========================= */

@media (max-width: 767px) {
  :root {
    --header-height: auto;
  }
  .header__inner {
    min-height: 92px;
    height: auto;
    padding: 10px 0;
  }

  .header__logo {
    width: 90px;
  }

  .header__logo-img {
    width: 72px;
  }

  .header__logo-text {
    margin-top: 3px;
    font-size: 10px;
    line-height: 1.3;
  }

  body {
    font-size: 14px;
  }

  .container {
    width: calc(100% - 32px);
    max-width: 100%;
    margin-inline: auto;
  }

  .section-heading {
    flex-wrap: wrap;
    gap: 10px;
  }

  .section-heading__ja {
    font-size: 25px;
  }

  .section-heading__en {
    font-size: 11px;
  }

  .mission__dummy,
  .mission__body,
  .mission__copy,
  .service__body,
  .point-card__text,
  .news__link {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .header {
    position: relative;
    z-index: 100;
  }

  .header__inner {
    min-height: 76px;
    height: auto;
    padding: 12px 0;
    align-items: center;
  }

  .header__logo {
    width: 78px;
    align-items: center;
  }

  .header__logo-text {
    margin-top: 4px;
    font-size: 10px;
  }

  .footer__logo {
    width: 92px;
    align-items: flex-start;
  }

  .footer__logo-text {
    margin-top: 5px;
    font-size: 11px;
  }

  .footer__address {
    font-size: 10px;
    white-space: normal;
  }

  .header__hamburger {
    position: relative;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    cursor: pointer;
    pointer-events: auto;
  }

  .header__hamburger-line {
    display: block;
    width: 30px;
    height: 2px;
    margin-left: auto;
    background: var(--color-primary);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  body.open .header__hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  body.open .header__hamburger-line:nth-child(2) {
    opacity: 0;
  }

  body.open .header__hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .header__right {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 110;
    width: min(82vw, 320px);
    height: 100vh;
    padding: 96px 28px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    background: var(--color-white);
    box-shadow: -10px 0 30px rgba(0, 20, 60, 0.15);
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }

  body.open .header__right {
    transform: translateX(0);
  }

  .header__top {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .header__tel {
    font-size: 20px;
  }

  .header__contact-btn {
    width: 100%;
    min-width: auto;
    padding: 12px 18px;
    font-size: 13px;
  }

  .header__nav {
    display: block;
    width: 100%;
  }

  .header__nav-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    border-top: 1px solid var(--color-border);
  }

  .header__nav-item {
    width: 100%;
    border-bottom: 1px solid var(--color-border);
  }

  .header__nav-item:not(:first-child)::before {
    display: none;
  }

  .header__nav-link {
    display: block;
    padding: 16px 0;
    color: var(--color-primary);
    font-size: 15px;
    letter-spacing: 0.08em;
  }

.header__info {
  width: 100%;
  text-align: left;
}

.header__address {
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.6;
  white-space: normal;
}

  .hero__img {
    height: 360px;
  }

  .hero__content {
    top: 48%;
  }

  .hero__title {
    font-size: 29px;
    letter-spacing: 0.08em;
    line-height: 1.55;
  }

  .hero__lead {
    margin-top: 12px;
    font-size: 15px;
    letter-spacing: 0.04em;
  }

  .mission {
    padding: 56px 0 64px;
  }

  .mission__inner {
    display: flex;
    flex-direction: column;
    gap: 34px;
  }

  .mission__text {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
  }

  .mission__copy,
  .mission__body,
  .mission__dummy {
    font-size: 15px;
  }

  .mission__image {
    width: 100%;
    max-width: 100%;
  }

  .point__bg {
    padding: 46px 0 56px;
  }

  .point__cards {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 34px;
  }

  .point-card {
    min-height: auto;
    padding: 34px 28px;
  }

  .point-card__icon {
    width: 118px;
    height: 118px;
    margin: 10px auto 35px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }



  .point-card__text {
    font-size: 14px;
  }

  .service {
    padding: 62px 0 64px;
  }

  .service__inner {
    display: flex;
    flex-direction: column-reverse;
    gap: 34px;
  }

  .service__image,
  .service__text {
    width: 100%;
  }
.service__text {
   padding: 80px 0 0 50px;
}

  .service__body {
    font-size: 15px;
  }

  .service__btn {
    width: 230px;
  }

  .performance {
    padding-bottom: 58px;
  }

  .performance__heading,
  .performance__lead {
    margin-left: 0;
  }

  .performance__lead {
    font-size: 14px;
  }

  .performance-slider__item {
    flex-basis: 190px;
  }
  .performance-slider__track {
    animation-duration: 60s;
  }

  .banner__bg {
    padding: 58px 0;
  }

  .banner__inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .banner-card {
    min-height: 130px;
  }

  .banner-card__title {
    top: 34px;
    font-size: 24px;
  }

  .banner-card__en {
    top: 73px;
  }

  .news {
    padding: 60px 0 64px;
  }

  .news__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .news__item {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px 0;
  }

  .news__link {
    font-size: 14px;
  }

  .contact__bg {
    padding: 60px 0 72px;
  }

  .contact__lead {
    font-size: 14px;
  }

  .contact__buttons {
    flex-direction: column;
    align-items: center;
    gap: 22px;
    margin-bottom: 40px;
  }

  .contact-btn {
    width: min(100%, 270px);
  }

  .contact__map-iframe {
    height: 260px;
  }

  .contact__map-img {
    aspect-ratio: 343 / 220;
  }

  .lower-hero {
    padding: 58px 0 54px;
  }

  .lower-hero__title {
    font-size: 30px;
  }

  .lower-hero__en {
    font-size: 13px;
  }

  .company {
    padding: 60px 0 72px;
  }

  .company__heading {
    margin-bottom: 32px;
  }

  .company-message,
  .company-career,
  .company-profile {
    margin-top: 62px;
  }
.company-message__catch {
  margin-bottom: 22px;
  font-size: 21px;
  line-height: 1.6;
}
  .company-message:first-child {
    margin-top: 0;
  }

  .company-message__body {
    padding: 28px 22px;
  }

  .company-message__body p {
    font-size: 15px;
    line-height: 2;
  }

  .company-message__name {
    text-align: left;
  }

  .company-table__row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }

  .company-table__term {
    font-size: 15px;
  }

  .company-table__desc {
    font-size: 15px;
  }

  .company-table--career .company-table__term {
    font-size: 16px;
  }

  .lower-contact {
    padding: 60px 0 72px;
  }

  .lower-contact__heading {
    margin-bottom: 24px;
  }

  .lower-contact__lead {
    margin-bottom: 34px;
    font-size: 15px;
  }

  .cf7-form__row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px 0;
  }

  .cf7-form__label {
    font-size: 15px;
  }

  .cf7-form__input,
  .cf7-form__textarea {
    font-size: 15px;
  }

  .cf7-form__textarea {
    min-height: 180px;
  }

  .cf7-form__submit {
    width: 100%;
    min-width: auto;
  }

  .footer__inner {
   min-height: auto;
  padding: 46px 0 36px;
  flex-direction: column;
  align-items: flex-start;
  }

.footer__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 260px;
}

.footer__logo-img {
  width: 118px;
}

  .footer__right {
    width: 100%;
    align-items: flex-start;
  }

  .footer__top {
    width: 100%;
    justify-content: space-between;
    gap: 16px;
  }

  .footer__tel {
    font-size: 20px;
  }

  .footer__contact-btn {
    min-width: 116px;
    padding: 9px 14px;
    font-size: 12px;
  }

  .footer__nav-list {
    justify-content: flex-start;
    row-gap: 10px;
  }

  .footer__nav-link {
    padding-inline: 10px;
  }
}

/* =========================
  Single News Page
========================= */

.single-news {
  padding: 92px 0 110px;
}

.single-news__inner {
  max-width: 900px;
}

.single-news__article {
  width: 100%;
}

.single-news__header {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--color-border);
}

.single-news__date {
  display: block;
  margin-bottom: 14px;
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.single-news__title {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.06em;
}

.single-news__thumbnail {
  margin-top: 42px;
}

.single-news__thumbnail img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.single-news__content {
  margin-top: 42px;
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 2.1;
}

.single-news__content p {
  margin: 0;
}

.single-news__content p + p {
  margin-top: 20px;
}

.single-news__content h2,
.single-news__content h3 {
  margin: 48px 0 18px;
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.6;
}

.single-news__content h2 {
  font-size: 24px;
}

.single-news__content h3 {
  font-size: 20px;
}

.single-news__content ul,
.single-news__content ol {
  margin: 24px 0;
  padding-left: 1.5em;
  list-style: revert;
}

.single-news__content li {
  margin: 8px 0;
}

.single-news__content a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.single-news__content img {
  max-width: 100%;
  height: auto;
  margin: 28px 0;
}

.single-news__nav {
  margin-top: 64px;
  text-align: center;
}

.single-news__back {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 250px;
  padding: 15px 22px;
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--color-primary);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.single-news__back::after {
  content: "";
  width: 68px;
  height: 1px;
  background: var(--color-white);
  transform: translateX(0);
  transition: transform 0.35s ease, width 0.35s ease;
}

.single-news__back::before {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 12px;
  height: 1px;
  background: var(--color-white);
  transform: translateY(-50%) rotate(35deg);
  transform-origin: right center;
  transition: right 0.35s ease;
}

.single-news__back:hover {
  background: var(--color-primary-dark);
  transform: translateX(4px);
}

.single-news__back:hover::after {
  width: 76px;
  transform: translateX(5px);
}

.single-news__back:hover::before {
  right: 17px;
}

/* Smartphone */
@media (max-width: 767px) {
  .single-news {
    padding: 60px 0 72px;
  }

  .single-news__header {
    padding-bottom: 24px;
  }

  .single-news__date {
    font-size: 13px;
  }

  .single-news__title {
    font-size: 23px;
    line-height: 1.7;
  }

  .single-news__thumbnail {
    margin-top: 32px;
  }

  .single-news__content {
    margin-top: 32px;
    font-size: 15px;
    line-height: 2;
  }

  .single-news__content h2 {
    font-size: 21px;
  }

  .single-news__content h3 {
    font-size: 18px;
  }

  .single-news__nav {
    margin-top: 48px;
  }

  .single-news__back {
    width: min(100%, 250px);
  }
}

/* =========================
  News Archive Page
========================= */

.news-archive {
  padding: 92px 0 110px;
}

.news-archive__inner {
  max-width: 960px;
}

.news-archive__heading {
  margin-bottom: 46px;
}

.news-archive__list {
  border-top: 1px solid var(--color-border);
}

.news-archive__item {
  border-bottom: 1px solid var(--color-border);
}

.news-archive__link {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 26px 0;
  transition: opacity 0.3s ease;
}

.news-archive__link:hover {
  opacity: 0.7;
}

.news-archive__date {
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.news-archive__title {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.news-archive__empty {
  margin: 0;
  padding: 38px 44px;
  background: #f7f9fc;
  border-left: 4px solid var(--color-primary);
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 2;
}

.news-archive__pagination {
  margin-top: 54px;
  text-align: center;
}

.news-archive__pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.news-archive__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: 14px;
  background: var(--color-white);
}

.news-archive__pagination .page-numbers.current {
  color: var(--color-white);
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.news-archive__pagination .page-numbers:hover {
  color: var(--color-white);
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

/* Smartphone */
@media (max-width: 767px) {
  .news-archive {
    padding: 60px 0 72px;
  }

  .news-archive__heading {
    margin-bottom: 32px;
  }

  .news-archive__link {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 22px 0;
  }

  .news-archive__date {
    font-size: 13px;
  }

  .news-archive__title {
    font-size: 15px;
    line-height: 1.8;
  }

  .news-archive__empty {
    padding: 28px 22px;
    font-size: 15px;
  }

  .news-archive__pagination {
    margin-top: 42px;
  }

  .news-archive__pagination .nav-links {
    flex-wrap: wrap;
  }
}
/* =========================
  Instagram Section
========================= */

.instagram {
  padding: 0 0 96px;
}

.instagram__inner {
  max-width: 960px;
}

.instagram__lead {
  margin: 18px 0 34px;
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.9;
  text-align: center;
}

.instagram__embed {
  width: 100%;
  min-height: 300px;
  padding: 28px;
  background: #f7f9fc;
  border: 1px solid var(--color-border);
}

.instagram__btn-wrap {
  margin-top: 30px;
  text-align: center;
}

.instagram__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 250px;
  padding: 15px 22px;
  color: var(--color-white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--color-primary);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.instagram__btn::after {
  content: "";
  width: 68px;
  height: 1px;
  background: var(--color-white);
  transform: translateX(0);
  transition: transform 0.35s ease, width 0.35s ease;
}

.instagram__btn::before {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 12px;
  height: 1px;
  background: var(--color-white);
  transform: translateY(-50%) rotate(35deg);
  transform-origin: right center;
  transition: right 0.35s ease;
}

.instagram__btn:hover {
  background: var(--color-primary-dark);
  transform: translateX(4px);
}

.instagram__btn:hover::after {
  width: 76px;
  transform: translateX(5px);
}

.instagram__btn:hover::before {
  right: 17px;
}

@media (max-width: 767px) {
  .instagram {
    padding: 0 0 64px;
  }

  .instagram__lead {
    font-size: 14px;
    text-align: left;
  }

  .instagram__embed {
    padding: 18px;
  }

  .instagram__btn {
    width: min(100%, 250px);
  }


}