﻿/* =========================================================
         ROOT
      ========================================================= */

:root {
  --navy: #073477;
  --navy-dark: #062b65;
  --blue: #0b438b;
  --light-blue: #f2f6fc;
  --border: #95a4b8;

  --side-pad: 3.8vw;

  --header-height: clamp(64px, 5.6vw, 78px);
}

/* =========================================================
         RESET
      ========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-width: 320px;

  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;

  color: #111;
  background: #fff;

  font-size: clamp(12px, 1.17vw, 16px);
  line-height: 1.75;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* =========================================================
         COMMON
      ========================================================= */

.page-inner {
  width: 100%;
  padding-inline: var(--side-pad);
}

.section-title {
  margin-bottom: clamp(12px, 1.4vw, 20px);

  font-size: clamp(25px, 2.95vw, 40px);
  line-height: 1.25;
  font-weight: 700;

  color: var(--navy);
}

/* =========================================================
         HEADER
      ========================================================= */

.header {
  width: 100%;
  min-height: var(--header-height);

  position: relative;
  z-index: 100;

  display: flex;
  align-items: center;

  background: #fff;

  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.025);
}

.header-inner {
  width: 100%;
  min-height: var(--header-height);

  padding-inline: clamp(16px, 2.2vw, 32px);

  display: flex;
  align-items: stretch;
  justify-content: space-between;

  /* gap: clamp(18px, 2.2vw, 32px); */
}

/* =========================================================
         HEADER LEFT
      ========================================================= */

.header-left {
  min-width: 0;

  display: flex;
  align-items: center;

  gap: clamp(24px, 3vw, 44px);
}

/* =========================================================
         HEADER LOGO
      ========================================================= */

.logo {
  min-width: 0;

  display: flex;
  align-items: center;

  gap: clamp(8px, 0.9vw, 13px);

  flex: 0 0 auto;

  white-space: nowrap;
}

.logo-en {
  width: clamp(125px, 13.5vw, 185px);

  display: flex;
  align-items: center;

  flex: 0 0 auto;
}

.logo-en img {
  display: block;

  width: 100%;
  height: auto;

  object-fit: contain;
}

.logo-jp {
  display: inline-block;

  font-size: clamp(12px, 1.15vw, 16px);
  line-height: 1;

  font-weight: 700;

  color: #111;

  white-space: nowrap;
}

/* =========================================================
         HEADER NAV
      ========================================================= */

.header-nav {
  height: var(--header-height);

  display: flex;
  align-items: center;

  gap: clamp(20px, 2.2vw, 32px);
}

.header-nav a {
  height: 100%;

  position: relative;

  display: flex;
  align-items: center;

  padding-inline: 2px;

  font-size: clamp(11px, 1vw, 14px);
  font-weight: 600;

  white-space: nowrap;

  transition: color 0.2s ease;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--navy);
}

.header-nav a.active::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;

  bottom: clamp(10px, 1vw, 14px);

  height: 2px;

  background: var(--navy);
}

/* =========================================================
         HEADER RIGHT
      ========================================================= */

.header-right {
  min-width: 0;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: clamp(7px, 0.8vw, 12px);

  flex: 0 0 auto;
}

.phone {
  display: flex;
  align-items: center;
  gap: 5px;
}

.phone-icon {
  width: clamp(19px, 1.8vw, 26px);
  height: clamp(19px, 1.8vw, 26px);

  position: relative;

  flex: 0 0 auto;
}

.phone-icon .icon {
  fill: var(--navy);
}

.phone-number {
  font-size: clamp(14px, 1.9vw, 27px);
  line-height: 1;

  font-weight: 700;

  color: var(--navy);

  white-space: nowrap;
}

.header-time {
  margin-left: clamp(4px, 0.5vw, 8px);

  font-size: clamp(10px, 0.72vw, 14px);
  line-height: 1.55;

  color: #333;

  white-space: nowrap;
}

/* ===================== Breadcrumb ===================== */
.breadcrumb {
  padding: 14px 20px 0;
  font-size: 12px;
  color: #556;
  max-width: 1230px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  display: none;
}

.breadcrumb .wrap {
  padding: 0;
  max-width: 1200px;
}

.breadcrumb a {
  color: #556;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb .sep {
  margin: 0 6px;
  color: #99a;
}

/* =========================================================
         HERO
      ========================================================= */

.hero {
  width: 100%;

  min-height: clamp(370px, 46.9vw, 640px);

  background: linear-gradient(
    110deg,
    #ffffff 0%,
    #ffffff 37%,
    #fdfafa 63%,
    #f8f3f3 100%
  );
}

.hero-inner {
  width: 100%;
  min-height: inherit;

  position: relative;

  display: grid;

  grid-template-columns: 45% 55%;

  padding-left: var(--side-pad);
  padding-right: 1.8vw;
}

/* =========================================================
         HERO LEFT
      ========================================================= */

.hero-left {
  position: relative;
  z-index: 2;

  padding-top: clamp(28px, 4.2vw, 58px);
  padding-bottom: clamp(42px, 5.6vw, 76px);

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.maker-logo {
  width: clamp(160px, 20.5vw, 280px);

  margin-bottom: clamp(2px, 0.4vw, 6px);
}

.maker-logo img {
  width: 100%;
  height: auto;
}

.hero-title {
  margin: 0;

  font-size: clamp(60px, 7.2vw, 98px);
  line-height: 0.92;

  font-weight: 800;

  letter-spacing: clamp(2px, 0.44vw, 6px);

  color: var(--navy);
}

.hero-subtitle {
  margin-top: clamp(5px, 0.8vw, 11px);

  font-size: clamp(18px, 2.12vw, 29px);
  line-height: 1.2;

  font-weight: 800;

  color: var(--navy);
}

.hero-copy-title {
  margin-top: clamp(24px, 3.2vw, 44px);

  font-size: clamp(19px, 2.2vw, 30px);
  line-height: 1.45;

  font-weight: 800;

  color: var(--navy);
}

.hero-description {
  max-width: 600px;

  margin-top: clamp(9px, 1.25vw, 17px);

  padding-right: 3%;

  font-size: clamp(12px, 1.24vw, 17px);
  line-height: 1.9;

  font-weight: 500;

  color: #202020;
}

/* =========================================================
         CATALOG BUTTON
      ========================================================= */

.catalog-btn {
  width: clamp(180px, 22vw, 300px);
  min-height: clamp(42px, 5vw, 68px);

  margin-top: clamp(18px, 2.35vw, 32px);

  /*display: flex;*/
  display: none;
  align-items: center;
  justify-content: center;

  gap: clamp(7px, 1vw, 14px);

  padding-inline: 12px;

  border: 1.5px solid var(--navy);
  border-radius: clamp(4px, 0.5vw, 7px);

  background: #fff;

  color: var(--navy);

  font-size: clamp(11px, 1.25vw, 17px);
  font-weight: 700;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.catalog-btn:hover {
  color: #fff;
  background: var(--navy);

  transform: translateY(-1px);
}

.catalog-icon {
  width: clamp(12px, 1.4vw, 19px);
  height: auto;
  flex: 0 0 auto;
}

/* =========================================================
         HERO RIGHT
      ========================================================= */

.hero-right {
  width: 100%;
  min-height: inherit;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

.hero-product {
  width: 84%;

  max-width: 760px;

  transform: translateX(1%);
}

.hero-product img {
  width: 100%;

  max-height: clamp(330px, 42vw, 575px);

  object-fit: contain;
}

.hero-note {
  position: absolute;

  right: var(--side-pad);

  bottom: clamp(-26px, -1.25vw, -14px);

  font-size: clamp(10px, 0.95vw, 16px);
  line-height: 1.5;

  color: #777;

  white-space: nowrap;
}

/* =========================================================
         FEATURES
      ========================================================= */

.features {
  width: 100%;

  padding-top: clamp(48px, 5.1vw, 70px);
  padding-bottom: clamp(34px, 3.8vw, 52px);
}

.features-grid {
  width: 100%;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: clamp(20px, 2.35vw, 32px);

  align-items: start;
}

.features-left {
  width: 100%;
}

.feature-items {
  display: flex;
  flex-direction: column;

  gap: clamp(22px, 2.35vw, 32px);
}

.feature {
  width: 100%;

  display: grid;

  grid-template-columns:
    clamp(58px, 7vw, 96px)
    1fr;

  align-items: center;

  gap: clamp(15px, 1.75vw, 24px);
}

.feature-icon {
  width: clamp(58px, 7vw, 96px);

  aspect-ratio: 1;

  border-radius: 50%;

  flex-shrink: 0;
}

.feature-icon img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}

.feature-content {
  min-height: clamp(58px, 7vw, 96px);

  display: flex;
  flex-direction: column;
  justify-content: center;

  gap: clamp(2px, 0.35vw, 5px);
}

.feature-title {
  font-size: clamp(14px, 1.55vw, 21px);
  line-height: 1.45;

  font-weight: 800;

  color: var(--navy);
}

.feature-description {
  font-size: clamp(11px, 1.18vw, 16px);
  line-height: 1.65;

  font-weight: 500;
}

.feature-note {
  margin-top: 1px;

  font-size: clamp(10px, 0.88vw, 12px);
  line-height: 1.55;

  color: #666;
}

/* =========================================================
         SCENE BOX
      ========================================================= */

.scene-box {
  width: 100%;

  padding: clamp(18px, 2.05vw, 28px);

  background: var(--light-blue);

  border-radius: clamp(9px, 1vw, 14px);
}

.scene-heading {
  margin-bottom: clamp(12px, 1.45vw, 20px);

  font-size: clamp(14px, 1.47vw, 20px);
  line-height: 1.4;

  font-weight: 700;

  color: #173666;
}

.scene-items {
  display: flex;
  flex-direction: column;

  gap: clamp(12px, 1.4vw, 18px);
}

.scene-item {
  width: 100%;

  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 40%);
  align-items: center;
  column-gap: clamp(10px, 1.2vw, 16px);
}

.scene-title {
  display: flex;
  align-items: center;

  gap: clamp(6px, 0.7vw, 10px);

  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1.4;

  font-weight: 700;

  color: var(--navy);

  white-space: nowrap;
}

.scene-check {
  width: clamp(12px, 1.3vw, 18px);

  aspect-ratio: 1;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 auto;
}

.scene-check img {
  width: 100%;
}

.scene-image {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 0;
}

.scene-image img {
  width: 100%;
  max-width: 260px;
  max-height: clamp(100px, 12vw, 148px);
  height: auto;

  object-fit: contain;
  object-position: right center;
  display: block;
}

.scene-text {
  min-width: 0;
}

.scene-text p {
  margin-left: clamp(18px, 2.1vw, 29px);
  margin-top: clamp(2px, 0.25vw, 4px);

  font-size: clamp(12px, 1.1vw, 14px);
  line-height: 1.55;

  font-weight: 500;
}

/* =========================================================
         WORK
      ========================================================= */

.work {
  width: 100%;

  padding-top: clamp(18px, 2.35vw, 32px);
  padding-bottom: clamp(34px, 4vw, 55px);
}

.work-grid {
  width: 100%;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: clamp(18px, 2.35vw, 32px);
}

.work-card {
  width: 100%;

  aspect-ratio: 1.17 / 1;

  overflow: hidden;

  border-radius: clamp(10px, 1.25vw, 17px);

  background: var(--navy);

  position: relative;
}

.work-image {
  position: absolute;

  inset: 0 0 clamp(36px, 4.55vw, 62px) 0;

  overflow: hidden;
}

.work-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.work-caption {
  width: 100%;
  height: clamp(36px, 4.55vw, 62px);

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--navy);

  color: #fff;

  font-size: clamp(17px, 2.05vw, 28px);
  line-height: 1;

  font-weight: 500;
}

/* =========================================================
         VIDEO
      ========================================================= */

.video-section {
  width: 100%;

  padding-top: clamp(34px, 3.65vw, 50px);
  padding-bottom: clamp(30px, 3.65vw, 50px);
}

.video-title {
  margin-left: 4px;
  margin-bottom: clamp(12px, 1.45vw, 20px);

  font-size: clamp(18px, 1.9vw, 26px);
  line-height: 1.4;

  font-weight: 800;

  color: var(--navy);
}

.video-placeholder {
  width: 100%;

  aspect-ratio: 16 / 9;

  overflow: hidden;

  border-radius: clamp(8px, 0.95vw, 13px);

  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.18)), #4e4e4e;
}

.video-placeholder iframe,
.video-placeholder video {
  display: block;

  width: 100%;
  height: 100%;

  border: 0;

  object-fit: cover;
}

.video-note {
  margin-top: clamp(5px, 0.58vw, 8px);

  text-align: right;

  font-size: clamp(10px, 0.95vw, 16px);
  line-height: 1.5;

  color: #666;
}

/* =========================================================
         SPEC
      ========================================================= */

.spec {
  width: 100%;

  padding-top: clamp(24px, 2.55vw, 35px);
  padding-bottom: clamp(54px, 5.85vw, 80px);
}

.spec-table-wrap {
  width: 100%;

  overflow-x: auto;

  -webkit-overflow-scrolling: touch;
}

.spec-table {
  width: 100%;

  border-collapse: collapse;

  table-layout: fixed;

  text-align: center;

  font-size: clamp(10px, 1.03vw, 14px);
}

.spec-table th,
.spec-table td {
  height: clamp(22px, 2.65vw, 36px);

  padding: clamp(3px, 0.36vw, 5px) clamp(5px, 0.58vw, 8px);

  border: 1px solid #9ba4b1;
}

.spec-table th {
  background: #abc0df;

  color: #27374f;

  font-weight: 700;
}

.spec-table th:first-child {
  background: var(--navy);

  color: #fff;
}

.spec-table .unit td {
  height: clamp(18px, 2.05vw, 28px);

  background: #f7f7f7;

  color: #444;

  font-size: clamp(10px, 0.88vw, 12px);
}

.spec-table .unit td:first-child {
  background: #fff;
}

.spec-table .value td:first-child {
  background: #176188;

  color: #fff;
}

/* =========================================================
         WARNING
      ========================================================= */

.spec-warning {
  width: 100%;

  min-height: clamp(52px, 5.5vw, 75px);

  margin-top: clamp(20px, 2.35vw, 32px);

  padding: clamp(8px, 0.88vw, 12px) clamp(14px, 1.45vw, 20px);

  display: flex;
  align-items: center;

  gap: clamp(12px, 1.45vw, 20px);

  border: 1.5px solid var(--navy);
  border-radius: clamp(8px, 0.95vw, 13px);

  font-size: clamp(11px, 1.25vw, 17px);
  line-height: 1.6;

  color: #4e4e4e;
}

.warning-circle {
  width: clamp(34px, 3.8vw, 52px);

  aspect-ratio: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--navy);

  flex: 0 0 auto;
}

.warning-circle img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}

/* =========================================================
         FOOTER MAIN
      ========================================================= */

.footer-main {
  width: 100%;

  padding: clamp(20px, 2vw, 30px) 0;

  background: var(--navy);

  color: #fff;
}

.footer-inner {
  width: 100%;

  padding-inline: clamp(18px, 2.7vw, 40px);
}

.footer-grid {
  width: 100%;

  display: grid;

  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(0, 0.9fr)
    minmax(0, 0.95fr)
    minmax(0, 1.2fr);

  align-items: stretch;
}

.footer-item {
  min-width: 0;

  padding: 0 clamp(15px, 1.5vw, 24px);

  border-right: 1px solid rgba(255, 255, 255, 0.32);
}

.footer-item:first-child {
  padding-left: 0;
}

.footer-item:last-child {
  padding-right: 0;

  border-right: none;
}

.footer-heading {
  display: flex;
  align-items: center;

  gap: clamp(7px, 0.65vw, 10px);

  margin-bottom: clamp(8px, 0.9vw, 13px);

  font-size: clamp(12px, 1.15vw, 16px);
  line-height: 1.35;

  font-weight: 800;

  white-space: nowrap;
}

.footer-icon-space {
  width: clamp(19px, 1.8vw, 26px);
  height: clamp(19px, 1.8vw, 26px);

  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 auto;
}

.footer-icon-space img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}

.footer-text {
  margin-left: clamp(26px, 2.45vw, 36px);

  font-size: clamp(10px, 0.88vw, 12px);
  line-height: 1.7;
}

.footer-text strong {
  font-size: clamp(10px, 0.98vw, 13px);
}

.footer-hours {
  margin-left: clamp(26px, 2.45vw, 36px);

  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.4;

  font-weight: 700;
}

.footer-catalog-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 12px;
}

.footer-btn {
  min-width: max-content;

  padding: clamp(5px, 0.45vw, 7px) clamp(9px, 0.8vw, 13px);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #fff;
  border-radius: 3px;

  font-size: clamp(10px, 0.82vw, 11px);
  line-height: 1.4;

  font-weight: 700;

  white-space: nowrap;

  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.footer-btn:hover {
  color: var(--navy);
  background: #fff;
}

/* =========================================================
         FOOTER BOTTOM
      ========================================================= */

.footer-bottom {
  width: 100%;

  background: #fff;
}

.footer-bottom-inner {
  width: 100%;

  min-height: clamp(62px, 5.3vw, 76px);

  padding: clamp(10px, 1vw, 14px) clamp(16px, 1.8vw, 28px);

  display: flex;
  align-items: center;

  gap: clamp(26px, 3vw, 44px);
}

.footer-logo {
  min-width: 0;

  display: flex;
  align-items: center;

  gap: clamp(8px, 0.8vw, 12px);

  flex: 0 0 auto;
  color: inherit;
  text-decoration: none;
}

.footer-logo-en {
  width: clamp(125px, 13vw, 180px);

  display: flex;
  align-items: center;

  flex: 0 0 auto;
}

.footer-logo-en img {
  display: block;

  width: 100%;
  height: auto;

  object-fit: contain;
}

.footer-logo-jp {
  font-size: clamp(11px, 1.05vw, 15px);
  line-height: 1;

  font-weight: 700;

  color: #111;

  white-space: nowrap;
}

.footer-nav {
  display: flex;
  align-items: center;

  gap: clamp(8px, 0.9vw, 13px);

  font-size: clamp(10px, 0.9vw, 13px);

  white-space: nowrap;
}

.footer-nav a {
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--navy);
}

/* =========================================================
         LARGE TABLET
         1100px 以下
      ========================================================= */

@media (max-width: 1100px) {
  .header-left {
    gap: 24px;
  }

  .logo-en {
    width: clamp(120px, 14vw, 155px);
  }

  .logo-jp {
    font-size: 13px;
  }

  .header-nav {
    gap: 20px;
  }

  .phone-number {
    font-size: clamp(14px, 2.1vw, 23px);
  }

  .footer-grid {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(0, 1fr);
  }

  .footer-item {
    padding: 18px 24px;

    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .footer-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.25);
  }

  .footer-item:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .footer-item:first-child {
    padding-left: 24px;
  }

  .footer-item:last-child {
    padding-right: 24px;
  }

  .footer-text,
  .footer-hours {
    margin-left: 0;
  }
}

/* =========================================================
         TABLET
         860px 以下
      ========================================================= */

@media (max-width: 860px) {
  .header-inner {
    padding-inline: 18px;
  }

  .logo-en {
    width: 130px;
  }

  .logo-jp {
    font-size: 12px;
  }

  .header-left {
    gap: 18px;
  }

  .header-nav {
    gap: 15px;
  }

  .header-nav a {
    font-size: 11px;
  }

  .phone-number {
    font-size: 14px;
  }

  .hero-product {
    width: 92%;
  }

  .scene-title {
    white-space: normal;
  }
}

/* =========================================================
         MOBILE HEADER
         680px 以下

         Headerを2段構成に変更。
         上：Logo + 電話
         下：ナビ
      ========================================================= */

@media (max-width: 680px) {
  :root {
    --side-pad: 20px;
  }

  .header {
    min-height: auto;
  }

  .header-inner {
    min-height: auto;

    padding: 0 16px;

    display: grid;

    grid-template-columns:
      minmax(0, 1fr)
      auto;

    grid-template-rows: auto auto;
  }

  .header-left {
    min-width: 0;

    display: contents;
  }

  /* Logo：左上 */
  .logo {
    grid-column: 1;
    grid-row: 1;

    min-width: 0;

    padding: 12px 0 9px;

    gap: 7px;
  }

  .logo-en {
    width: clamp(105px, 30vw, 130px);
  }

  .logo-jp {
    font-size: clamp(10px, 2.9vw, 12px);
  }

  .header-right {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0 9px;

    gap: 5px;
  }

  .phone-icon {
    width: 14px;
    height: 14px;
  }

  .phone-number {
    font-size: 14px;
  }

  .header-time {
    margin-left: 0;
  }  

  .header-nav {
    grid-column: 1 / -1;
    grid-row: 2;

    width: 100%;
    height: 39px;

    display: flex;
    align-items: stretch;

    border-top: 1px solid #edf0f4;
  }

  .header-nav a {
    height: 39px;

    flex: 0 0 auto;

    display: flex;
    align-items: center;

    font-size: 12px;
  }

  .header-nav a.active::after {
    bottom: 0;

    height: 2px;
  }

  /* -------------------------
           HERO
        ------------------------- */

  .hero {
    min-height: 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;

    padding-right: var(--side-pad);
  }

  .hero-left {
    padding-top: 38px;
    padding-bottom: 12px;
  }

  .hero-title {
    font-size: clamp(58px, 18vw, 80px);
  }

  .hero-right {
    min-height: 280px;
  }

  .hero-product {
    width: min(92%, 480px);

    transform: none;
  }

  /* -------------------------
           FEATURES
        ------------------------- */

  .features-grid {
    grid-template-columns: 1fr;

    gap: 28px;
  }

  /* -------------------------
           WORK
        ------------------------- */

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-card {
    aspect-ratio: 1.3 / 1;
  }

  /* -------------------------
           FOOTER MAIN
        ------------------------- */

  .footer-main {
    padding: 10px 0;
  }

  .footer-inner {
    padding-inline: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-item,
  .footer-item:first-child,
  .footer-item:nth-last-child(-n + 2),
  .footer-item:last-child {
    min-height: auto;

    padding: 20px 0;

    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }

  .footer-item:nth-child(odd) {
    border-right: none;
  }

  .footer-item:last-child {
    border-bottom: none;
  }

  .footer-heading {
    margin-bottom: 10px;

    font-size: 14px;
  }

  .footer-icon-space {
    width: 23px;
    height: 23px;
  }

  .footer-text {
    margin-left: 31px;

    font-size: 11px;
    line-height: 1.8;
  }

  .footer-hours {
    margin-left: 31px;

    font-size: 18px;
  }

  .footer-catalog-content {
    align-items: center;
  }

  .footer-btn {
    font-size: 10px;

    padding: 7px 12px;
  }

  /* -------------------------
           FOOTER BOTTOM
        ------------------------- */

  .footer-bottom-inner {
    min-height: auto;

    padding: 15px 16px;

    flex-wrap: wrap;

    gap: 12px 24px;
  }

  .footer-logo {
    gap: 7px;
  }

  .footer-logo-en {
    width: clamp(105px, 30vw, 130px);
  }

  .footer-logo-jp {
    font-size: clamp(10px, 2.9vw, 12px);
  }

  .footer-nav {
    flex-basis: 100%;

    padding-top: 2px;

    font-size: 11px;
  }

  /* -------------------------
           SPEC TABLE
           スマホでは横スクロール
        ------------------------- */

  .spec-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .spec-table {
    width: 680px;
    min-width: 680px;
  }
}

/* =========================================================
         SMALL MOBILE
         440px 以下
      ========================================================= */

@media (max-width: 440px) {
  .header-inner {
    padding-inline: 13px;
  }

  .logo {
    gap: 5px;
  }

  .logo-en {
    width: clamp(92px, 27vw, 112px);
  }

  .logo-jp {
    font-size: 10px;
  }

  .header-right {
    gap: 3px;
  }

  .phone-number {
    font-size: 12px;
  }

  .header-nav {
    height: 37px;
  }

  .header-nav a {
    height: 37px;

    padding-inline: 14px;

    font-size: 11px;
  }

  .maker-logo {
    width: 150px;
  }

  .hero-copy-title {
    font-size: 20px;
  }

  .feature {
    grid-template-columns:
      58px
      1fr;
  }

  .feature-icon {
    width: 58px;
  }

  .scene-title {
    font-size: 13px;
  }

  .footer-catalog-content {
    align-items: flex-start;

    flex-direction: column;
  }

  .footer-text,
  .footer-hours {
    margin-left: 30px;
  }

  .footer-btn {
    margin-left: 30px;
  }

  .footer-bottom-inner {
    padding: 14px 13px;
  }

  .footer-logo {
    gap: 5px;
  }

  .footer-logo-en {
    width: clamp(92px, 27vw, 112px);
  }

  .footer-logo-jp {
    font-size: 10px;
  }

  .footer-nav {
    gap: 9px;

    font-size: 10px;
  }
}

/* =========================================================
         VERY SMALL MOBILE
         360px 以下
      ========================================================= */

@media (max-width: 360px) {
  .logo-en {
    width: 88px;
  }

  .logo-jp {
    font-size: 10px;
  }

  .phone-number {
    font-size: 12px;
  }

  .footer-logo-en {
    width: 88px;
  }

  .footer-logo-jp {
    font-size: 10px;
  }
}
