@charset "UTF-8";
/*
Theme Name: 合同会社山家工業
Theme URI: https://yamakakougyou.com
Author: YAMAKA KOGYO
Description: 合同会社山家工業 コーポレートサイト（建設業／プラント工事・重量物運搬・据付・機械移設・修理）
Version: 1.0
*/
/* ===================================================================
   変数 / ブレイクポイント
=================================================================== */
/* ===================================================================
   CSSカスタムプロパティ
=================================================================== */
:root {
  --orange:#F25A0C;
  --orange-deep:#D94400;
  --orange-light:#FF7A36;
  --black:#161616;
  --black-soft:#222;
  --cream:#F7F3EE;
  --gray-line:#e6e2dd;
  --white:#fff;
}

/* ===================================================================
   リセット / ベース
=================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.8;
}

.en {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.04em;
}

img {
  max-width: 100%;
  display: block;
}

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

/* 六角形パターン */
.hex-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='52' viewBox='0 0 60 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l26 15v22L30 52 4 37V15z' fill='none' stroke='%23161616' stroke-width='0.5' opacity='0.12'/%3E%3C/svg%3E");
  background-size: 60px 52px;
}

.hex-pattern.light {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='52' viewBox='0 0 60 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l26 15v22L30 52 4 37V15z' fill='none' stroke='%23F25A0C' stroke-width='0.5' opacity='0.14'/%3E%3C/svg%3E");
}

/* スクロール進捗バー */
#progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--black);
  z-index: 1100;
  transition: width 0.1s;
}

/* ===== Loading ===== */
#loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
}

#loading .hex-pattern.light {
  opacity: 0.5;
}

#loading.done {
  transform: translateY(-100%);
}

#loading .lwrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

#loading .llogo {
  width: 96px;
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  animation: lLogoIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

@keyframes lLogoIn {
  to {
    opacity: 1;
    transform: none;
  }
}
#loading .ltxt {
  font-family: "Oswald";
  letter-spacing: 0.45em;
  color: #fff;
  font-size: 13px;
  opacity: 0;
  animation: lFade 0.8s 0.5s forwards;
  padding-left: 0.45em;
}

#loading .ltxt b {
  color: var(--orange);
  font-weight: 700;
}

@keyframes lFade {
  to {
    opacity: 1;
  }
}
.lprog {
  position: relative;
  width: 220px;
}

.lprog-bar {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.lprog-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--orange);
  transition: width 0.2s ease-out;
}

.lprog-num {
  position: absolute;
  right: 0;
  top: -26px;
  font-family: "Oswald";
  font-size: 14px;
  color: var(--orange);
  letter-spacing: 0.1em;
}

.lprog-num::after {
  content: "%";
  font-size: 10px;
  margin-left: 2px;
  opacity: 0.8;
}

#loading::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--orange);
  transform: translateY(100%);
  z-index: 1;
  transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}

#loading.wipe::before {
  transform: translateY(0);
}

/* ===================================================================
   セクション共通
=================================================================== */
.section {
  padding: 120px 44px;
  position: relative;
}

.sec-head {
  margin-bottom: 58px;
}

.sec-head .en-title {
  font-family: "Oswald";
  font-weight: 700;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1;
  letter-spacing: 0.02em;
  position: relative;
  display: inline-block;
  padding-left: 24px;
}

.sec-head .en-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  height: 70%;
  width: 6px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
  transform-origin: bottom;
}

.sec-head.in .en-title::before {
  transform: translateY(-50%) scaleY(1);
}

.sec-head .jp-title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-top: 14px;
  padding-left: 24px;
}

/* マスク出現 */
.mask-up {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.mask-up > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.mask-up.in > span {
  transform: translateY(0);
}

/* リビール */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@keyframes lineUp {
  to {
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===================================================================
   下層共通：ヒーロー / パンくず
=================================================================== */
.lower {
  position: relative;
  height: 52vh;
  min-height: 360px;
  background: var(--black) center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lower::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.55), rgba(22, 22, 22, 0.7)), var(--bgimg) center/cover no-repeat;
  z-index: 0;
}

.lower .hex-pattern.light {
  opacity: 1;
  z-index: 1;
}

.lower-bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 100%;
  background: var(--orange);
  z-index: 3;
}

.lower-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.lower-inner .en {
  display: block;
  font-family: "Oswald";
  font-weight: 700;
  font-size: clamp(50px, 8vw, 110px);
  color: #fff;
  line-height: 1;
  letter-spacing: 0.04em;
  overflow: hidden;
}

.lower-inner .en span {
  display: inline-block;
  transform: translateY(110%);
  animation: lineUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.lower-inner .jp {
  display: inline-block;
  margin-top: 14px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--orange);
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.lower-inner .jp::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--orange);
  vertical-align: middle;
  margin-right: 14px;
}

.lower-inner .jp::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--orange);
  vertical-align: middle;
  margin-left: 14px;
}

.breadcrumb {
  max-width: 1280px;
  margin: 0 auto;
  padding: 22px 44px;
  font-size: 12.5px;
  color: #999;
  font-family: "Oswald";
  letter-spacing: 0.04em;
}

.breadcrumb a {
  color: #999;
  transition: 0.3s;
}

.breadcrumb a:hover {
  color: var(--orange);
}

.breadcrumb .sep {
  margin: 0 8px;
  color: var(--orange);
}

#sub-content {
  background: #fff;
}

/* トップへ戻る */
.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  background: var(--black);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.to-top.show {
  opacity: 1;
  pointer-events: auto;
}

/* レスポンシブ（共通） */
@media screen and (max-width: 768px) {
  .section {
    padding: 80px 20px;
  }
  .lower {
    height: 40vh;
    min-height: 280px;
  }
  .lower-bar {
    width: 5px;
  }
  .breadcrumb {
    padding: 16px 20px;
  }
}
/* ===================================================================
   ページ別パーシャル（ページごとに縦長で記述）
=================================================================== */
/* ===================================================================
   Header（生成り地で固定・横種ロゴ）
=================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 44px;
  background: rgba(247, 243, 238, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
  transition: 0.4s;
}

header.scrolled {
  background: rgba(247, 243, 238, 0.98);
  padding: 10px 44px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 13px;
}

.logo-mark {
  width: 50px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.logo-text .jp {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--black);
}

.logo-text .sub {
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--orange);
  font-family: "Oswald";
  opacity: 0.9;
}

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

.gnav a.navlink {
  position: relative;
  font-family: "Oswald";
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.06em;
  transition: 0.3s;
}

.gnav a.navlink::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: 0.3s;
}

.gnav a.navlink:hover {
  color: var(--orange);
}

.gnav a.navlink:hover::after,
.gnav a.navlink.current::after {
  width: 100%;
}

.gnav .insta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--black);
  color: var(--black);
  border-radius: 50%;
  font-size: 16px;
  transition: 0.3s;
}

.gnav .insta::after {
  display: none;
}

.gnav .insta:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.gnav .contact-btn {
  background: var(--orange);
  color: var(--black);
  padding: 11px 26px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  font-weight: 700;
  font-family: "Oswald";
  letter-spacing: 0.06em;
  transition: 0.3s;
}

.gnav .contact-btn::after {
  display: none;
}

.gnav .contact-btn:hover {
  background: var(--black);
  color: var(--orange);
}

/* ハンバーガー */
.hamburger {
  display: none;
  position: fixed;
  top: 18px;
  right: 18px;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1101;
  width: 30px;
  height: 22px;
  justify-content: center;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--black);
  transition: 0.35s cubic-bezier(0.7, 0, 0.2, 1);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hamburger.open span {
  background: #fff;
}

/* ドロワー */
#drawer {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 40px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s cubic-bezier(0.7, 0, 0.2, 1);
  overflow: hidden;
}

#drawer.open {
  opacity: 1;
  visibility: visible;
}

#drawer .hex-pattern.light {
  opacity: 0.5;
}

.drawer-inner {
  position: relative;
  z-index: 2;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.drawer-nav a {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  opacity: 0;
  transform: translateX(-20px);
  transition: 0.5s;
}

#drawer.open .drawer-nav a {
  opacity: 1;
  transform: none;
}

#drawer.open .drawer-nav a:nth-child(1) {
  transition-delay: 0.12s;
}

#drawer.open .drawer-nav a:nth-child(2) {
  transition-delay: 0.18s;
}

#drawer.open .drawer-nav a:nth-child(3) {
  transition-delay: 0.24s;
}

#drawer.open .drawer-nav a:nth-child(4) {
  transition-delay: 0.3s;
}

#drawer.open .drawer-nav a:nth-child(5) {
  transition-delay: 0.36s;
}

#drawer.open .drawer-nav a:nth-child(6) {
  transition-delay: 0.42s;
}

.drawer-nav a .en {
  font-family: "Oswald";
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--orange);
  font-weight: 600;
}

.drawer-nav a::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--orange);
  opacity: 0;
  transition: 0.3s;
}

.drawer-nav a:active::after,
.drawer-nav a:hover::after {
  opacity: 1;
  right: 0;
}

.drawer-foot {
  margin-top: 40px;
  opacity: 0;
  transition: 0.5s 0.44s;
}

#drawer.open .drawer-foot {
  opacity: 1;
}

.drawer-tel {
  display: block;
  font-family: "Oswald";
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}

.drawer-tel i {
  color: var(--orange);
  margin-right: 10px;
  font-size: 24px;
}

.drawer-note {
  font-size: 12px;
  color: var(--orange);
  font-weight: 700;
  margin: 4px 0 22px;
}

.drawer-insta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 22px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-family: "Oswald";
  font-weight: 600;
  letter-spacing: 0.05em;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.drawer-insta i {
  font-size: 18px;
}

.drawer-bigtype {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  font-family: "Oswald";
  font-weight: 700;
  font-size: 24vw;
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.04);
  text-align: center;
  z-index: 1;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  header {
    padding: 12px 18px;
  }
  .gnav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
/* ===================================================================
   TOP : FV（全画面スライダー）
=================================================================== */
.fv {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background: var(--black);
}

.fv-slider, .fv-slider .slick-list, .fv-slider .slick-track {
  height: 100%;
}

.fv-slide {
  height: 100vh;
  min-height: 620px;
  position: relative;
}

.fv-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(22, 22, 22, 0.7) 0%, rgba(22, 22, 22, 0.25) 55%, rgba(242, 90, 12, 0.25) 100%);
}

.fv-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
}

.fv-slider .slick-current .fv-slide img {
  animation: kenburns 7s ease-out forwards;
}

@keyframes kenburns {
  0% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1);
  }
}
.fv-bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 100%;
  background: var(--orange);
  z-index: 6;
}

.fv-text {
  position: absolute;
  left: 80px;
  bottom: 110px;
  z-index: 7;
  max-width: 920px;
}

.fv-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Oswald";
  font-size: 14px;
  letter-spacing: 0.28em;
  color: var(--orange);
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(20px);
}

.fv-tag::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--orange);
}

.fv-text h1 {
  color: var(--white);
  font-weight: 900;
  font-size: clamp(30px, 4.4vw, 62px);
  line-height: 1.2;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.fv-text h1 .l2 {
  white-space: nowrap;
}

.fv-text h1 .acc {
  color: var(--orange);
  font-weight: 900;
}

.fv-text h1 .line {
  display: block;
  overflow: hidden;
}

.fv-text h1 .line .l2 {
  display: block;
  transform: translateY(110%);
}

.fv-sub {
  color: #fff;
  font-size: clamp(15px, 1.4vw, 19px);
  margin-top: 24px;
  font-weight: 500;
  max-width: 560px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(20px);
}

.fv.go .fv-tag {
  animation: fadeUp 0.8s 0.3s forwards;
}

.fv.go .fv-text h1 .line .l2 {
  animation: lineUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fv.go .fv-text h1 .line:nth-child(1) .l2 {
  animation-delay: 0.45s;
}

.fv.go .fv-text h1 .line:nth-child(2) .l2 {
  animation-delay: 0.6s;
}

.fv.go .fv-sub {
  animation: fadeUp 0.8s 1s forwards;
}

.fv-scroll {
  position: absolute;
  bottom: 34px;
  right: 44px;
  z-index: 7;
  font-family: "Oswald";
  font-size: 11px;
  letter-spacing: 0.3em;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.fv-scroll span {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--orange), transparent);
  animation: scrolldown 1.8s infinite;
}

@keyframes scrolldown {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
/* ===================================================================
   TOP : Message / 強み
=================================================================== */
.greeting {
  background: var(--orange);
  overflow: hidden;
}

.greeting .hex-pattern {
  opacity: 1;
}

.greeting .sec-head .en-title {
  color: var(--black);
}

.greeting .sec-head .en-title::before {
  background: var(--black);
}

.greeting .sec-head .jp-title {
  color: var(--white);
}

.greeting-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.greeting h2 {
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 26px;
  color: var(--white);
}

.greeting h2 .acc {
  color: var(--black);
}

.greeting p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  line-height: 2.1;
}

.greeting-visual {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  border: 3px solid var(--black);
}

.greeting-visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.2);
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.greeting-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--black);
  z-index: 2;
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 1s cubic-bezier(0.77, 0, 0.18, 1);
}

.greeting-visual.in::before {
  transform: scaleX(0);
}

.greeting-visual.in img {
  transform: scale(1);
}

.strengths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 80px;
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.strength {
  background: var(--black);
  padding: 42px 32px;
  transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
  opacity: 0;
  transform: translateY(50px);
}

.strength.in {
  opacity: 1;
  transform: translateY(0);
}

.strength:hover {
  transform: translateY(-8px);
}

.strength .count {
  font-family: "Oswald";
  font-size: 54px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 18px;
  display: inline-block;
  text-shadow: 0 0 0 rgba(242, 90, 12, 0);
  transition: none;
}

.strength .count.counting {
  animation: countpop var(--cdur, 2600ms) cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes countpop {
  0% {
    transform: scale(0.6);
    color: #fff;
    text-shadow: 0 0 30px rgb(255, 170, 90), 0 0 60px rgba(242, 90, 12, 0.9);
  }
  15% {
    transform: scale(1.2);
    color: #fff;
    text-shadow: 0 0 26px rgb(255, 170, 90), 0 0 50px rgba(242, 90, 12, 0.9);
  }
  60% {
    text-shadow: 0 0 18px rgba(242, 90, 12, 0.8), 0 0 36px rgba(242, 90, 12, 0.5);
  }
  100% {
    transform: scale(1);
    color: var(--orange);
    text-shadow: 0 0 0 rgba(242, 90, 12, 0);
  }
}
.strength .count .unit {
  font-size: 22px;
}

.strength .num {
  font-family: "Oswald";
  font-size: 13px;
  color: #888;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 6px;
}

.strength h3 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--white);
}

.strength p {
  font-size: 13.5px;
  color: #bdbdbd;
  line-height: 1.9;
}

/* ===================================================================
   TOP : Business（黒面）
=================================================================== */
.business {
  background: var(--black);
}

.business .sec-head .en-title {
  color: var(--white);
}

.business .sec-head .en-title::before {
  background: var(--orange);
}

.business .sec-head .jp-title {
  color: var(--orange);
}

.biz-list {
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--orange);
  max-width: 1280px;
  margin: 0 auto;
}

.biz-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 34px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: 0.35s, opacity 0.7s, transform 0.7s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-40px);
}

.biz-row.in {
  opacity: 1;
  transform: translateX(0);
}

.biz-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--orange);
  transition: 0.4s;
  z-index: 0;
}

.biz-row:hover::before {
  width: 100%;
}

.biz-row > * {
  position: relative;
  z-index: 1;
  transition: 0.35s;
}

.biz-no {
  font-family: "Oswald";
  font-size: 34px;
  font-weight: 700;
  color: var(--orange);
}

.biz-row:hover .biz-no {
  color: var(--black);
}

.biz-name {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
}

.biz-name .en {
  display: block;
  font-size: 12px;
  color: #888;
  letter-spacing: 0.2em;
  font-weight: 500;
  margin-top: 2px;
}

.biz-row:hover .biz-name,
.biz-row:hover .biz-name .en {
  color: var(--black);
}

.biz-desc {
  font-size: 14px;
  color: #aaa;
  max-width: 520px;
}

.biz-row:hover .biz-desc {
  color: var(--black);
}

.biz-arrow {
  font-size: 22px;
  color: var(--orange);
  transition: 0.35s;
}

.biz-row:hover .biz-arrow {
  color: var(--black);
  transform: translateX(8px);
}

/* ===================================================================
   TOP : 3カード（オレンジ面・マスクめくり）
=================================================================== */
.cards {
  background: var(--orange);
  position: relative;
  overflow: hidden;
}

.cards .hex-pattern {
  opacity: 1;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
}

.card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 26px), calc(100% - 26px) 100%, 0 100%);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
  border: 3px solid var(--black);
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s, transform 0.7s;
}

.card.in {
  opacity: 1;
  transform: translateY(0);
}

.card .card-mask {
  position: absolute;
  inset: 0;
  background: var(--black);
  z-index: 5;
  transform: scaleY(1);
  transform-origin: top;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.18, 1);
}

.card.in .card-mask {
  transform: scaleY(0);
}

.card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.6s;
  filter: grayscale(0.2);
}

.card:hover img {
  transform: scale(1.08);
  filter: grayscale(0);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(22, 22, 22, 0.92));
  transition: 0.4s;
}

.card-body {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 32px;
  z-index: 2;
  width: 100%;
}

.card-body .en {
  font-family: "Oswald";
  font-size: 34px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.card-body .jp {
  font-size: 15px;
  color: var(--orange);
  font-weight: 700;
  margin-top: 6px;
  letter-spacing: 0.1em;
}

.card-link {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  width: 46px;
  height: 46px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  transition: 0.3s;
}

.card:hover .card-link {
  background: var(--white);
}

/* ===================================================================
   TOP : レスポンシブ
=================================================================== */
@media screen and (max-width: 1024px) {
  .greeting-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .fv-text {
    left: 36px;
    bottom: 120px;
    right: 20px;
  }
  .fv-bar {
    width: 5px;
  }
  .fv-scroll {
    right: 18px;
    left: auto;
    bottom: 24px;
  }
  .fv-text h1 {
    font-size: clamp(28px, 7.6vw, 40px);
  }
  .fv-text h1 .line > span {
    white-space: normal;
  }
  .strengths {
    grid-template-columns: 1fr;
  }
  .biz-row {
    grid-template-columns: 50px 1fr;
    gap: 14px;
    padding: 24px 8px;
  }
  .biz-arrow {
    display: none;
  }
  .biz-desc {
    grid-column: 1/-1;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
}
/* ===================================================================
   会社概要
=================================================================== */
.philosophy {
  background: var(--orange);
  position: relative;
  overflow: hidden;
  padding: 90px 44px;
  text-align: center;
}

.philosophy .hex-pattern {
  opacity: 1;
}

.philosophy .inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.philosophy .label {
  font-family: "Oswald";
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--black);
}

.philosophy h2 {
  font-size: clamp(24px, 3.4vw, 42px);
  font-weight: 900;
  color: #fff;
  line-height: 1.5;
  margin: 18px 0 20px;
}

.philosophy p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
}

.company-info {
  max-width: 1000px;
  margin: 0 auto;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 3px solid var(--orange);
}

.info-table tr {
  border-bottom: 1px solid var(--gray-line);
  transition: 0.3s;
}

.info-table tr:hover {
  background: var(--cream);
}

.info-table th {
  text-align: left;
  width: 200px;
  padding: 22px 20px;
  font-weight: 700;
  font-size: 14px;
  color: var(--orange);
  vertical-align: top;
  font-family: "Oswald", "Noto Sans JP";
  letter-spacing: 0.05em;
}

.info-table td {
  padding: 22px 20px;
  font-size: 15px;
  color: #333;
}

/* 沿革 */
.history {
  max-width: 900px;
  margin: 70px auto 0;
}

.history-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 30px;
  padding: 24px 0;
  border-bottom: 1px dashed var(--gray-line);
  position: relative;
}

.history-item .year {
  font-family: "Oswald";
  font-size: 20px;
  font-weight: 700;
  color: var(--orange);
}

.history-item .desc {
  font-size: 14.5px;
  color: #444;
}

@media screen and (max-width: 768px) {
  .info-table th {
    width: 110px;
    padding: 16px 10px;
    font-size: 12.5px;
  }
  .info-table td {
    padding: 16px 10px;
    font-size: 14px;
  }
  .history-item {
    grid-template-columns: 80px 1fr;
    gap: 16px;
  }
}
/* ===================================================================
   事業内容
=================================================================== */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto 0;
  align-items: stretch;
}

.service-block:nth-child(even) .sv-img {
  order: 2;
}

.sv-img {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.sv-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  inset: 0;
  transition: 1.2s;
}

.service-block:hover .sv-img img {
  transform: scale(1.06);
}

.sv-img .no {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  font-family: "Oswald";
  font-size: 60px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.sv-text {
  background: var(--black);
  color: #fff;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-block:nth-child(even) .sv-text {
  background: var(--orange);
}

.sv-text .en {
  font-family: "Oswald";
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 10px;
}

.service-block:nth-child(even) .sv-text .en {
  color: var(--black);
}

.sv-text h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.4;
}

.sv-text p {
  font-size: 14.5px;
  color: #cfcfcf;
  line-height: 2;
}

.service-block:nth-child(even) .sv-text p {
  color: rgba(255, 255, 255, 0.95);
}

.sv-text ul {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sv-text li {
  font-size: 12.5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 5px 14px;
  font-weight: 700;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.service-block:nth-child(even) .sv-text li {
  border-color: var(--black);
}

@media screen and (max-width: 1024px) {
  .service-block {
    grid-template-columns: 1fr;
  }
  .service-block:nth-child(even) .sv-img {
    order: 0;
  }
}
@media screen and (max-width: 768px) {
  .sv-text {
    padding: 40px 24px;
  }
}
/* ===================================================================
   施工事例
=================================================================== */
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1280px;
  margin: 0 auto;
}

.work-card {
  background: #fff;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: 0.4s;
  border-bottom: 3px solid var(--orange);
}

.work-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(242, 90, 12, 0.16);
}

.work-thumb {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.work-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.6s;
}

.work-card:hover .work-thumb img {
  transform: scale(1.08);
}

.work-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  letter-spacing: 0.05em;
  z-index: 2;
}

.work-body {
  padding: 22px;
}

.work-date {
  font-family: "Oswald";
  font-size: 12px;
  color: #999;
  letter-spacing: 0.05em;
}

.work-title {
  font-size: 16px;
  font-weight: 900;
  margin-top: 6px;
  line-height: 1.5;
}

/* ビフォーアフター */
.ba-wrap {
  max-width: 1100px;
  margin: 80px auto 0;
}

.ba-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  background: var(--black);
  padding: 30px;
  margin-bottom: 24px;
}

.ba-col {
  text-align: center;
}

.ba-col img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.ba-col .tag {
  display: inline-block;
  margin-top: 12px;
  font-family: "Oswald";
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #fff;
  padding: 4px 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.ba-col.after .tag {
  background: var(--orange);
  border-color: var(--orange);
}

.ba-arrow {
  font-size: 28px;
  color: var(--orange);
}

/* ページネーション */
.works-nav {
  text-align: center;
  margin-top: 50px;
}

.works-nav .wp-pagenavi {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.works-nav .wp-pagenavi a,
.works-nav .wp-pagenavi span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  font-family: "Oswald";
  border: 1px solid var(--gray-line);
  color: #444;
  transition: 0.3s;
}

.works-nav .wp-pagenavi a:hover,
.works-nav .wp-pagenavi span.current {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* single-works */
.work-single {
  max-width: 900px;
  margin: 0 auto;
}

.work-single .work-eyecatch {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 34px;
}

.work-single .work-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.work-single .work-meta .cat {
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
}

.work-single .work-meta .date {
  font-family: "Oswald";
  font-size: 13px;
  color: #999;
}

.work-single h1.work-ttl {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 30px;
  border-left: 6px solid var(--orange);
  padding-left: 18px;
}

.work-single .work-content {
  font-size: 15px;
  line-height: 2;
  color: #333;
}

.work-single .work-content p {
  margin-bottom: 1.4em;
}

.work-single .work-content img {
  margin: 24px auto;
}

.work-back {
  text-align: center;
  margin-top: 54px;
}

@media screen and (max-width: 1024px) {
  .works-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .works-grid {
    grid-template-columns: 1fr;
  }
  .ba-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .ba-arrow {
    transform: rotate(90deg);
  }
}
/* ===================================================================
   採用情報
=================================================================== */
.recruit-lead {
  background: var(--black);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 90px 44px;
  text-align: center;
}

.recruit-lead .hex-pattern.light {
  opacity: 1;
}

.recruit-lead .inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.recruit-lead .en {
  font-family: "Oswald";
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--orange);
}

.recruit-lead h2 {
  font-size: clamp(24px, 3.4vw, 40px);
  font-weight: 900;
  line-height: 1.5;
  margin: 16px 0 22px;
}

.recruit-lead h2 .acc {
  color: var(--orange);
}

.recruit-lead p {
  color: #cfcfcf;
  font-size: 15px;
}

.recruit-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 3px solid var(--orange);
  max-width: 1000px;
  margin: 0 auto;
}

.recruit-table tr {
  border-bottom: 1px solid var(--gray-line);
}

.recruit-table th {
  text-align: left;
  width: 200px;
  padding: 24px 20px;
  font-weight: 700;
  font-size: 14px;
  color: var(--orange);
  vertical-align: top;
  letter-spacing: 0.05em;
}

.recruit-table td {
  padding: 24px 20px;
  font-size: 15px;
  color: #333;
}

.recruit-cta {
  text-align: center;
  margin-top: 54px;
}

/* 共通ボタン（採用・お問い合わせで使用） */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 56px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: 0.3s;
  font-family: inherit;
}

.btn-primary:hover {
  background: var(--black);
  transform: translateY(-3px);
}

@media screen and (max-width: 768px) {
  .recruit-table th {
    width: 110px;
    padding: 16px 10px;
    font-size: 12.5px;
  }
  .recruit-table td {
    padding: 16px 10px;
    font-size: 14px;
  }
}
/* ===================================================================
   お問い合わせ
=================================================================== */
.contact-lead {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.contact-lead p {
  font-size: 15px;
  color: #444;
}

.form-wrap {
  max-width: 820px;
  margin: 0 auto;
  background: var(--cream);
  padding: 50px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
}

.form-row {
  margin-bottom: 26px;
}

.form-row label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
}

/* 必須／任意バッジ（静的フォーム・CF7 両対応） */
.form-wrap .req,
.form-wrap .any {
  display: inline-block;
  color: #fff;
  font-size: 10px;
  line-height: 1.4;
  padding: 2px 8px;
  margin-left: 8px;
  border-radius: 2px;
  font-weight: 700;
  vertical-align: middle;
}
.form-wrap .req {
  background: var(--orange);
}
.form-wrap .any {
  background: #9b9b9b;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-line);
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  transition: 0.3s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242, 90, 12, 0.12);
}

.form-row textarea {
  resize: vertical;
  min-height: 140px;
}

.form-submit {
  text-align: center;
  margin-top: 36px;
}

/* Contact Form 7 を流し込んだ場合の最低限の整え */
.form-wrap .wpcf7-form p {
  margin-bottom: 26px;
}

.form-wrap .wpcf7-form label {
  display: block;
  font-weight: 700;
  font-size: 14px;
}

.form-wrap .wpcf7-form input[type=text],
.form-wrap .wpcf7-form input[type=email],
.form-wrap .wpcf7-form input[type=tel],
.form-wrap .wpcf7-form select,
.form-wrap .wpcf7-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-top: 8px;
  border: 1px solid var(--gray-line);
  background: #fff;
  font-family: inherit;
  font-size: 15px;
}

.form-wrap .wpcf7-form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-wrap .wpcf7-form .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 56px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: 0.3s;
}

.form-wrap .wpcf7-form .wpcf7-submit:hover {
  background: var(--black);
}

/* 電話CTA */
.tel-cta {
  max-width: 820px;
  margin: 40px auto 0;
  text-align: center;
  padding: 40px;
  border: 2px dashed var(--orange);
}

.tel-cta .lbl {
  font-size: 14px;
  font-weight: 700;
  color: #444;
}

.tel-cta .num {
  font-family: "Oswald";
  font-size: 42px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1.2;
  display: block;
}

.tel-cta .num i {
  font-size: 30px;
  margin-right: 10px;
}

.tel-cta .note {
  font-size: 13px;
  color: #666;
}

@media screen and (max-width: 768px) {
  .form-wrap {
    padding: 30px 20px;
  }
  .tel-cta .num {
    font-size: 32px;
  }
}
/* ===================================================================
   Footer
=================================================================== */
footer {
  position: relative;
  background: var(--black);
  color: #fff;
  padding: 0 44px 24px;
  overflow: hidden;
}

footer .hex-pattern.light {
  opacity: 1;
  z-index: 0;
}

footer > * {
  position: relative;
  z-index: 1;
}

/* 上部CTA帯 */
.foot-cta {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 54px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}

.foot-cta-txt .en {
  font-family: "Oswald";
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px);
  color: var(--orange);
  line-height: 1;
  letter-spacing: 0.02em;
}

.foot-cta-txt p {
  margin-top: 10px;
  font-size: 15px;
  color: #ccc;
  line-height: 1.7;
}

.foot-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 20px 40px;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: 0.3s;
  white-space: nowrap;
}

.foot-cta-btn i {
  transition: 0.3s;
}

.foot-cta-btn:hover {
  background: #fff;
  color: var(--orange-deep);
}

.foot-cta-btn:hover i {
  transform: translateX(6px);
}

/* メイン情報 */
.foot-main {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  padding: 56px 0 40px;
}

.foot-company .flogo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.foot-company .flogo .logo-mark {
  width: 54px;
  height: auto;
}

.foot-company .flogo .jp {
  display: block;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #fff;
}

.foot-company .flogo .sub {
  display: block;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--orange);
  font-family: "Oswald";
  margin-top: 2px;
}

.foot-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.foot-meta > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  align-items: start;
}

.foot-meta dt {
  font-family: "Oswald";
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--orange);
  padding-top: 3px;
}

.foot-meta dd {
  font-size: 13.5px;
  color: #cfcfcf;
  line-height: 1.7;
}

/* 右側（連絡先＋ナビ） */
.foot-right {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.foot-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.foot-contact .lbl {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #888;
}

.foot-tel {
  font-family: "Oswald";
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  transition: 0.3s;
}

.foot-tel:hover {
  color: var(--orange);
}

.foot-note {
  font-size: 12px;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 14px;
}

.foot-insta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 42px;
  padding: 0 22px 0 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-family: "Oswald";
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 14px;
  transition: 0.3s;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.foot-insta i {
  font-size: 19px;
}

.foot-insta:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.foot-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.foot-nav a {
  font-family: "Oswald";
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #cfcfcf;
  transition: 0.3s;
  position: relative;
  padding-left: 16px;
}

.foot-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--orange);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  opacity: 0;
  transition: 0.3s;
}

.foot-nav a:hover {
  color: #fff;
  padding-left: 20px;
}

.foot-nav a:hover::before {
  opacity: 1;
}

/* プライバシーポリシー ボタン */
.foot-policy {
  text-align: center;
  margin-top: 24px;
}
.foot-policy a {
  display: inline-block;
  font-family: "Oswald";
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #cfcfcf;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 9px 24px;
  transition: 0.3s;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.foot-policy a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* 巨大ロゴタイプ */
.foot-bigtype {
  font-family: "Oswald";
  font-weight: 700;
  font-size: clamp(60px, 15vw, 220px);
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.04);
  letter-spacing: 0.02em;
  text-align: center;
  margin: 10px 0 -10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

.copyright {
  text-align: center;
  font-family: "Oswald";
  font-size: 12px;
  letter-spacing: 0.15em;
  color: #777;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sp-br {
  display: none;
}

@media screen and (max-width: 1024px) {
  .foot-main {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}
@media screen and (max-width: 768px) {
  footer {
    padding: 0 22px 22px;
  }
  .foot-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 44px 0;
  }
  .foot-cta-btn {
    width: 100%;
    justify-content: center;
  }
  .sp-br {
    display: block;
  }
  .foot-main {
    padding: 44px 0 32px;
    gap: 38px;
  }
  .foot-meta > div {
    grid-template-columns: 78px 1fr;
    gap: 12px;
  }
  .foot-tel {
    font-size: 30px;
  }
  .foot-nav {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .foot-meta > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .foot-meta dt {
    padding-top: 0;
  }
}

/* ===================================================================
   プライバシーポリシー
=================================================================== */
.policy {
  max-width: 900px;
  margin: 0 auto;
}
.policy h2 {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 900;
  color: var(--black);
  margin: 42px 0 14px;
  padding-left: 16px;
  border-left: 5px solid var(--orange);
  line-height: 1.5;
}
.policy h2:first-child {
  margin-top: 0;
}
.policy p {
  font-size: 14.5px;
  line-height: 2;
  color: #444;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .policy h2 {
    font-size: 16px;
    margin: 32px 0 10px;
  }
  .policy p {
    font-size: 14px;
  }
}
/*# sourceMappingURL=style.css.map */