@charset "UTF-8";
/*
Theme Name: fujino-setsubi
Description: 株式会社藤野設備工業 コーポレートサイト（fujino-mockup ベース）
*/
/* ===== ブレークポイント / mixin（テンプレ準拠・出力なし） ===== */
@media screen and (max-width: 768px) {
  .br_pc {
    display: none;
  }
}

@media screen and (min-width: 1441px) {
  .br_sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .br_sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .br_sp {
    display: none;
  }
}

/* ===== パーシャル（fujino-mockup を移植） ===== */
/* ===== design tokens ===== */
:root {
  --navy:#0C2340;
  --navy-2:#102C50;
  --navy-3:#163A66;
  --blue:#2C6FB5;
  --blue-bright:#3F8AD6;
  --cyan:#6FB1E6;
  --ink:#13171C;
  --paper:#ffffff;
  --mist:#EEF2F7;
  --mist-2:#E3EAF2;
  --line:#D3DCE7;
  --muted:#56636F;
  --muted-2:#8A97A6;
  --grid:rgba(255,255,255,.06);
  --max:1140px;
}

/* ===== reset / base ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.en {
  font-family: "Saira", sans-serif;
}

.cond {
  font-family: "Saira Condensed", sans-serif;
}

/* ===== shared blocks ===== */
.wide {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.sec-label {
  font-family: "Saira", sans-serif;
  letter-spacing: 0.28em;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sec-label::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--blue);
}

.sec-title {
  font-weight: 900;
  font-size: clamp(24px, 4vw, 40px);
  line-height: 1.3;
  margin: 14px 0 0;
  letter-spacing: 0.01em;
}
.sec-title span {
  color: #2c6fb5;
}

.yl {
  color: var(--cyan);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Saira", sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 13px;
  text-transform: uppercase;
  background: var(--navy);
  color: #fff;
  padding: 15px 26px;
  transition: 0.25s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn i {
  transition: 0.25s;
}

.btn:hover {
  background: var(--blue);
}

.btn:hover i {
  transform: translateX(4px);
}

.btn.line {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}

.btn.line:hover {
  background: var(--navy);
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ===== lower page header ===== */
.lower {
  position: relative;
  height: 300px;
  background: var(--navy) linear-gradient(120deg, var(--navy), var(--navy-3));
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.lower::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 50px 50px;
  -webkit-mask-image: radial-gradient(circle at 75% 50%, #000, transparent 80%);
          mask-image: radial-gradient(circle at 75% 50%, #000, transparent 80%);
}

.lower::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(8, 18, 32, 0.82), rgba(8, 18, 32, 0.4));
}

.lower .wide {
  position: relative;
  z-index: 2;
  color: #fff;
}

.lower .cond {
  font-size: clamp(46px, 9vw, 90px);
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
  letter-spacing: 0.04em;
}

.lower h1 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

.lower-crumb {
  position: absolute;
  bottom: 24px;
  left: 0;
  width: 100%;
  z-index: 2;
}

.lower-crumb .wide {
  font-family: "Saira", sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #9db4cd;
}

.sec-pad {
  padding: clamp(64px, 9vw, 110px) 0;
}

/* ===== to top ===== */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 800;
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  border: 1px solid var(--blue);
}

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

.to-top:hover {
  background: var(--blue);
}

/* ===== header ===== */
header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

#header_pc {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  height: 74px;
}

.header_logo {
  display: flex;
  align-items: center;
  padding-left: 26px;
  gap: 12px;
}

.header_logo .brandmark_link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header_logo .brandmark {
  width: 50px;
  height: 50px;
  flex: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.header_logo .nm {
  line-height: 1.15;
}

.header_logo .nm b {
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.04em;
  display: block;
}

.header_logo .nm span {
  font-family: "Saira", sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--blue);
  font-weight: 500;
}

.header_menu {
  display: flex;
  align-items: stretch;
}

.header_main {
  display: flex;
  align-items: center;
}

.header_main > li > a {
  padding: 0 16px;
  font-size: 14px;
  font-weight: 500;
  height: 74px;
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  transition: 0.2s;
  cursor: pointer;
}

.header_main > li > a:hover {
  color: var(--blue);
  text-decoration: none;
}

.header_main > li > a:hover::after, .header_main > li > a.active::after {
  transform: scaleX(1);
}

.header_tel a {
  background: var(--navy);
  color: #fff;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  font-family: "Saira", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  height: 74px;
}

.header_tel a::after {
  display: none;
}

.header_tel a i {
  color: var(--cyan);
  font-size: 13px;
}

.header_contact a {
  background: var(--blue);
  color: #fff;
  width: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 74px;
  font-size: 18px;
}

.header_contact a:hover {
  background: var(--blue-bright);
}

/* SP header */
#header_sp {
  display: none;
}

@media (max-width: 900px) {
  header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  #header_pc {
    display: none;
  }
  #header_sp {
    display: block;
  }
  .header_tel a {
    pointer-events: all;
  }
  .sp-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 18px;
  }
  .sp-bar .header_logo {
    padding-left: 0;
  }
  .sp-bar .header_logo .brandmark {
    width: 44px;
    height: 44px;
  }
  .sp-bar .header_logo .nm b {
    font-size: 15px;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
  }
  .hamburger span {
    width: 26px;
    height: 2px;
    background: var(--navy);
    transition: 0.3s;
  }
  .hamburger.on span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.on span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.on span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .sp-nav {
    position: fixed;
    inset: 0;
    top: 0;
    background: rgba(8, 18, 32, 0.97);
    z-index: 950;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    opacity: 0;
    pointer-events: none;
    transition: 0.35s;
  }
  .sp-nav.on {
    opacity: 1;
    pointer-events: auto;
  }
  .sp-nav a {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 14px;
    cursor: pointer;
  }
  .sp-nav .scond {
    font-family: "Saira", sans-serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--cyan);
    display: block;
    text-align: center;
    margin-bottom: -4px;
  }
  .sp-nav .close {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
  }
  .sp-nav .sp-tel {
    margin-top: 20px;
    font-family: "Saira", sans-serif;
    color: var(--cyan);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.04em;
  }
}
/* ===== HERO ===== */
#hero {
  position: relative;
  height: 88vh;
  min-height: 540px;
  background: var(--navy);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease;
  background-size: cover;
  background-position: center;
  background-image: linear-gradient(135deg, var(--navy), var(--navy-3));
}

.hero-slide.on {
  opacity: 1;
}

#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(circle at 70% 50%, #000, transparent 78%);
          mask-image: radial-gradient(circle at 70% 50%, #000, transparent 78%);
}

#hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(8, 18, 32, 0.86) 0%, rgba(8, 18, 32, 0.45) 55%, rgba(8, 18, 32, 0.15) 100%);
}

.hero-inner {
  position: relative;
  z-index: 5;
  color: #fff;
  width: 100%;
}

.hero-inner .wide {
  padding-top: 10px;
}

.hero-kicker {
  font-family: "Saira", sans-serif;
  letter-spacing: 0.3em;
  font-size: 13px;
  color: var(--cyan);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.hero-kicker::before {
  content: "";
  width: 48px;
  height: 1px;
  background: var(--cyan);
}

#hero h1 {
  font-weight: 900;
  font-size: clamp(34px, 6.2vw, 72px);
  line-height: 1.22;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

#hero h1 small {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-top: 22px;
  color: #dbe6f2;
  line-height: 1.9;
  text-shadow: none;
}

.hero-meta {
  position: absolute;
  right: 32px;
  bottom: 36px;
  z-index: 5;
  color: #9db4cd;
  font-family: "Saira", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-align: right;
  line-height: 2;
}

.hero-meta b {
  color: var(--cyan);
  font-weight: 600;
}

.hero-scroll {
  position: absolute;
  left: 24px;
  bottom: 0;
  z-index: 5;
  writing-mode: vertical-rl;
  color: #9db4cd;
  font-family: "Saira", sans-serif;
  letter-spacing: 0.3em;
  font-size: 11px;
  padding-bottom: 60px;
}

.hero-scroll::after {
  content: "";
  position: absolute;
  left: 5px;
  bottom: 0;
  width: 1px;
  height: 48px;
  background: var(--cyan);
  animation: scl 1.8s infinite;
}

@keyframes scl {
  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;
  }
}
/* ===== intro / about ===== */
#intro {
  padding: clamp(70px, 10vw, 130px) 0;
  position: relative;
}

#intro .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

#intro p.lead {
  font-size: 16px;
  color: var(--muted);
  margin-top: 26px;
}

.intro-visual {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

/* ===== strengths ===== */
#strength {
  background: var(--mist);
  padding: clamp(70px, 10vw, 120px) 0;
  position: relative;
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 54px;
}

.scard {
  background: #fff;
  border: 1px solid var(--line);
  padding: 38px 30px;
  position: relative;
  transition: 0.3s;
  overflow: hidden;
}

.scard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.35s;
}

.scard:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -28px rgba(12, 35, 64, 0.4);
}

.scard:hover::before {
  transform: scaleX(1);
}

.scard .no {
  font-family: "Saira Condensed", sans-serif;
  font-weight: 700;
  font-size: 52px;
  line-height: 1;
  color: var(--mist-2);
  position: absolute;
  top: 18px;
  right: 22px;
}

.scard .ic {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--navy);
  display: grid;
  place-items: center;
  color: var(--cyan);
  font-size: 22px;
  margin-bottom: 20px;
}

.scard h3 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 12px;
}

.scard p {
  font-size: 14px;
  color: var(--muted);
}

/* ===== contents banners ===== */
#contents {
  padding: clamp(70px, 10vw, 120px) 0;
}

.contents-head {
  text-align: center;
  margin-bottom: 54px;
}

.contents-head .cond {
  font-size: clamp(40px, 8vw, 86px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: 0.02em;
}

.cgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.cbnr {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  background-size: cover;
  background-position: center;
}

.cbnr::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(111, 177, 230, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(111, 177, 230, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  transition: 0.5s;
}

.cbnr::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 18, 32, 0.8), transparent 70%);
}

.cbnr:hover::before {
  transform: scale(1.08);
}

.cbnr .ctxt {
  position: relative;
  z-index: 3;
  padding: 30px 32px;
  color: #fff;
  width: 100%;
}

.cbnr .cond {
  font-size: 38px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
  letter-spacing: 0.03em;
}

.cbnr .cja {
  font-size: 15px;
  font-weight: 700;
  margin-top: 6px;
}

.cbnr .cgo {
  margin-top: 18px;
  font-family: "Saira", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 9px 16px;
  transition: 0.25s;
}

.cbnr:hover .cgo {
  background: var(--blue);
  border-color: var(--blue);
}

@media (max-width: 900px) {
  #intro .grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .strength-grid {
    grid-template-columns: 1fr;
  }
  .cgrid {
    grid-template-columns: 1fr;
  }
  .hero-meta {
    display: none;
  }
  #hero h1 small {
    font-size: 1.1rem;
    margin-top: 16px;
    line-height: 1.7;
  }
}
/* ===== service list ===== */
.svc-intro {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 64px;
  text-align: center;
}
@media (max-width: 767px) {
  .svc-intro {
    text-align: left;
  }
}

.svc-item {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 46px;
  align-items: center;
  margin-bottom: 70px;
}

.svc-item:nth-child(even) {
  direction: rtl;
}

.svc-item:nth-child(even) > * {
  direction: ltr;
}

.svc-num {
  font-family: "Saira Condensed", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--blue);
  letter-spacing: 0.1em;
}

.svc-item h3 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  margin: 10px 0 20px;
  line-height: 1.4;
}

.svc-item h3 .bar {
  display: inline-block;
  width: 42px;
  height: 3px;
  background: var(--blue);
  vertical-align: middle;
  margin-right: 14px;
}

.svc-item p {
  color: var(--muted);
  font-size: 15px;
}

.svc-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  background-size: cover;
  background-position: center;
}

@media (max-width: 900px) {
  .svc-item {
    grid-template-columns: 1fr;
    gap: 24px;
    direction: ltr;
  }
  .svc-item:nth-child(even) {
    direction: ltr;
  }
}
/* ===== application ===== */
#page-app .lead-box {
  margin-bottom: 60px;
  text-align: center;
}
@media (max-width: 767px) {
  #page-app .lead-box {
    text-align: left;
  }
}

#page-app .lead-box p {
  font-size: 16px;
  color: var(--ink);
}

#page-app .lead-box b {
  color: var(--blue);
}

.app-explain {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: start;
  margin-bottom: 70px;
}

.app-explain h3 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 18px;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .app-explain h3 {
    font-size: 20px;
  }
}

.app-explain h3 .bar {
  display: inline-block;
  width: 42px;
  height: 3px;
  background: var(--blue);
  vertical-align: middle;
  margin-right: 14px;
}
@media (max-width: 767px) {
  .app-explain h3 .bar {
    display: none;
  }
}

.app-explain p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 16px;
}

.flowbox {
  background: var(--navy);
  color: #fff;
  padding: 32px 34px;
}

.flowbox .ft {
  font-family: "Saira", sans-serif;
  letter-spacing: 0.16em;
  color: var(--cyan);
  font-size: 12px;
  margin-bottom: 18px;
}

.flowstep {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.16);
}

.flowstep:last-child {
  border-bottom: none;
}

.flowstep .n {
  font-family: "Saira Condensed", sans-serif;
  font-weight: 700;
  color: var(--cyan);
  font-size: 26px;
  line-height: 1;
  flex: none;
  width: 34px;
}

.flowstep p {
  font-size: 14px;
  color: #cdd9e6;
}

.muni-head {
  text-align: center;
  margin: 0 auto 40px;
  max-width: 680px;
}

.muni-head .sec-label {
  justify-content: center;
}

.muni-head .sec-label::before {
  display: none;
}

.muni-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.muni {
  background: #fff;
  border: 1px solid var(--line);
  padding: 16px 10px;
  text-align: center;
  position: relative;
  transition: 0.25s;
}

.muni:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -20px rgba(12, 35, 64, 0.4);
}

.muni .nm {
  font-size: 16px;
  font-weight: 700;
}

.muni .tag {
  font-family: "Saira", sans-serif;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-top: 4px;
  display: block;
}

.muni .chk {
  position: absolute;
  top: 8px;
  right: 8px;
  color: var(--blue);
  font-size: 11px;
}

.app-cta {
  margin-top: 60px;
  background: linear-gradient(120deg, var(--navy), var(--navy-3));
  color: #fff;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--cyan);
}

.app-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000, transparent 75%);
          mask-image: radial-gradient(circle at 50% 50%, #000, transparent 75%);
}

.app-cta::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -130px;
  top: -170px;
  background: radial-gradient(circle, rgba(111, 177, 230, 0.28), transparent 70%);
  pointer-events: none;
}

.app-cta > * {
  position: relative;
  z-index: 2;
}

.app-cta-label {
  font-family: "Saira", sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--cyan);
  margin-bottom: 14px;
}

.app-cta-label::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--cyan);
  margin: 12px auto 0;
}

.app-cta h3 {
  font-size: clamp(24px, 3.6vw, 34px);
  font-weight: 900;
  margin-bottom: 14px;
  line-height: 1.4;
}

.app-cta p {
  color: #cdd9e6;
  margin-bottom: 32px;
}

.app-cta .btn {
  background: var(--blue);
  padding: 18px 38px;
  font-size: 14px;
  box-shadow: 0 18px 40px -18px rgba(63, 138, 214, 0.8);
}

.app-cta .btn:hover {
  background: var(--blue-bright);
}

@media (max-width: 900px) {
  .app-explain {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .muni-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .app-cta {
    padding: 48px 24px;
  }
}
/* ===== company ===== */
.phil {
  background: linear-gradient(120deg, var(--navy), var(--navy-3));
  color: #fff;
  padding: 60px 50px;
  margin-bottom: 64px;
  position: relative;
  overflow: hidden;
}

.phil::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(circle at 80% 30%, #000, transparent 75%);
          mask-image: radial-gradient(circle at 80% 30%, #000, transparent 75%);
}

.phil > * {
  position: relative;
  z-index: 2;
}

.phil .sec-label {
  color: var(--cyan);
}

.phil .sec-label::before {
  background: var(--cyan);
}

.phil h2 {
  font-size: clamp(20px, 3.6vw, 36px);
  font-weight: 900;
  margin: 18px 0;
  line-height: 1.5;
}

.phil p {
  color: #cdd9e6;
}

.lower_headline {
  font-size: 22px;
  font-weight: 900;
  padding-left: 16px;
  border-left: 5px solid var(--blue);
  margin-bottom: 28px;
}

.ctable {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 64px;
}

.ctable th, .ctable td {
  text-align: left;
  padding: 18px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  vertical-align: top;
}

.ctable th {
  width: 170px;
  font-weight: 700;
  color: var(--navy);
  background: var(--mist);
  font-size: 14px;
}

.ctable td .en {
  font-family: "Saira", sans-serif;
}

.htable {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 50px;
}

.htable th, .htable td {
  text-align: left;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.htable th {
  width: 170px;
  font-family: "Saira", sans-serif;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.04em;
}

.cmap {
  aspect-ratio: 16/7;
  width: 100%;
  border: 0;
}

iframe {
  width: 100%;
}

@media (max-width: 900px) {
  .phil {
    padding: 40px 20px;
  }
  .ctable th {
    width: 120px;
  }
  .htable th {
    width: 96px;
  }
}
/* ===== recruit ===== */
.rec-intro {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 50px;
}

.rec-title {
  font-size: clamp(20px, 4vw, 40px);
}

.rec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 54px;
}

.rcard {
  border: 1px solid var(--line);
  padding: 34px 28px;
  position: relative;
  transition: 0.3s;
  background: #fff;
}

.rcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px -28px rgba(12, 35, 64, 0.4);
  border-color: var(--blue);
}

.rcard .cond {
  font-size: 40px;
  font-weight: 700;
  color: var(--mist-2);
  line-height: 1;
}

.rcard h3 {
  font-size: 21px;
  font-weight: 900;
  margin: 10px 0 14px;
}

.rcard p {
  font-size: 14px;
  color: var(--muted);
}

.rcard .badge {
  display: inline-block;
  font-family: "Saira", sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  background: var(--blue);
  color: #fff;
  padding: 4px 11px;
  margin-top: 18px;
}

.rec-note {
  background: var(--mist);
  padding: 30px 34px;
  border-left: 4px solid var(--blue);
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 44px;
}

@media (max-width: 900px) {
  .rec-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: start;
}

.cform {
  display: grid;
  gap: 20px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.field label .req {
  color: var(--blue);
  font-size: 11px;
  font-family: "Saira", sans-serif;
  margin-left: 8px;
  letter-spacing: 0.1em;
}

.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  padding: 13px 15px;
  font-family: inherit;
  font-size: 15px;
  border-radius: 0;
  transition: 0.2s;
}

.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(44, 111, 181, 0.12);
}

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

.priv {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--muted);
}

.contact-side {
  background: var(--navy);
  color: #fff;
  padding: 40px 36px;
}

.contact-side h3 {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 22px;
}

.cinfo {
  padding: 16px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
}

.cinfo .lb {
  font-family: "Saira", sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--cyan);
}

.cinfo .vl {
  font-size: 17px;
  font-weight: 700;
  margin-top: 4px;
}

.cinfo .vl.en {
  font-family: "Saira", sans-serif;
}

.cinfo small {
  color: #9db4cd;
  font-size: 12px;
}

/* ----- Contact Form 7 をモックの体裁に寄せる ----- */
.cform .wpcf7-form p {
  font-size: 15px;
  margin-bottom: 18px;
}

.cform input[type=text], .cform input[type=email], .cform input[type=tel],
.cform textarea, .cform select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  padding: 13px 15px;
  font-family: inherit;
  font-size: 15px;
  border-radius: 0;
  transition: 0.2s;
  margin-top: 6px;
}

.cform input:focus, .cform textarea:focus, .cform select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(44, 111, 181, 0.12);
}

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

.cform input[type=checkbox], .cform input[type=radio] {
  width: auto;
  margin-right: 6px;
}

.cform .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Saira", sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 13px;
  text-transform: uppercase;
  background: var(--navy);
  color: #fff;
  padding: 15px 26px;
  border: none;
  cursor: pointer;
  width: auto;
  transition: 0.25s;
}

.cform .wpcf7-submit:hover {
  background: var(--blue);
}

/* 必須 / 任意 ラベル */
.cform label .red, .cform label .blue {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  vertical-align: middle;
}

.cform label .red {
  background: #d93a3a;
}

.cform label .blue {
  background: var(--blue);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact-side {
    order: -1;
  }
}
/* ===== policy ===== */
#policy-body {
  max-width: 900px;
}

#policy-body h2 {
  font-size: 18px;
  font-weight: 900;
  margin: 34px 0 12px;
  padding-left: 14px;
  border-left: 4px solid var(--blue);
}

#policy-body h2:first-child {
  margin-top: 0;
}

#policy-body p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 6px;
}

/* ===== footer ===== */
#footer_contact {
  position: relative;
  background: linear-gradient(120deg, #08182a, var(--navy));
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 70px 0;
  overflow: hidden;
}

#footer_contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 50px 50px;
  -webkit-mask-image: radial-gradient(circle at 30% 50%, #000, transparent 78%);
          mask-image: radial-gradient(circle at 30% 50%, #000, transparent 78%);
}

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

.footer_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer_logo .brandmark {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: transparent center/contain no-repeat;
}

.footer_logo b {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.footer_info p {
  color: #9db4cd;
  font-size: 14px;
}

.footer_btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.footer_btns a.fb-tel_a {
  pointer-events: none;
}

.footer_btns button {
  font-family: "Saira", sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 15px;
  padding: 16px 34px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.25s;
}

.fb-tel {
  background: #fff;
  color: var(--navy);
}

.fb-tel:hover {
  background: var(--mist-2);
}

.fb-form {
  background: var(--blue);
  color: #fff;
}

.fb-form:hover {
  background: var(--blue-bright);
}

footer {
  background: #070d14;
  color: #fff;
  padding: 46px 0 30px;
}

.footer_menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.footer_menu ul {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer_menu a {
  font-size: 13px;
  color: #aeb8c4;
  transition: 0.2s;
  cursor: pointer;
}

.footer_menu a:hover {
  color: var(--cyan);
}

.copyright {
  text-align: center;
  margin-top: 30px;
  font-family: "Saira", sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #5d6976;
}

@media (max-width: 900px) {
  .footer_logo b {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.04em;
  }
  .footer_logo .brandmark {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: transparent center/contain no-repeat;
  }
  .footer_btns a.fb-tel_a {
    pointer-events: all;
  }
}/*# sourceMappingURL=style.css.map */