@charset "UTF-8";

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

html,
body,
h1,
h2,
h3,
p,
figure,
ul,
li,
address {
  margin: 0;
  padding: 0;
}

ul,
li {
  list-style: none;
}

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

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

address {
  font-style: normal;
}

/* ============================================================
   Design tokens
   ============================================================ */
:root {
  --color-accent: #2aabc5;
  --color-olive: #bfbc25;
  --color-text: #18181c;
  --color-text-muted: #9795b5;
  --color-bg: #f9f9f9;
  --color-white: #f9f9f9;
  --color-line: #06c755;
  --color-dark: #3d3d3d;

  --font-base: "Noto Sans JP", sans-serif;

  /* PC（Figma 1440 基準）の左右基準余白 */
  --pad: 40px;
  /* SP（Figma 375 基準）の左右基準余白 */
  --pad-sp: 16px;

  /* セクション見出しの装飾テキストシャドウ */
  --head-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

html {
  scroll-behavior: smooth;
}

/* ============================================================
   Base
   ============================================================ */
body {
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.l-page {
  position: relative;
  max-width: 1440px;
  margin-inline: auto;
  overflow: hidden;
}

@media not all and (min-width: 768px){
  .l-page {
    max-width: none;
  }

  /* ドロワー展開中は背面スクロールを止める */
  body.is-drawer-open {
    overflow: hidden;
  }
}

.page-section {
  margin-inline: auto;
  max-width: 1046px;
}

body.home main {
  overflow: visible;
}

body.home main > section:not(.fv) {
  max-width: 1440px;
  margin-inline: auto;
}

/* 中央寄せテキストの改行制御（共通ルール） */
.newline {
  display: block;
}

.__newline {
  display: inline-block;
}

/* ============================================================
   共通：セクション見出し（EN ラベル + 大見出し + 縦線）
   ============================================================ */
.section-head {
  position: relative;
  padding-left: 11px;
}

.section-head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 2px;
  height: 80px;
  background: #2AABC5;
}

@media not all and (min-width: 768px){
  .section-head::before {
    height: 51px;
  }
}

.section-head__en {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-shadow: var(--head-shadow);
}

.section-head__ja {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 6px;
  text-shadow: var(--head-shadow);
}

@media not all and (min-width: 768px){
  .section-head__ja {
    font-size: 30px;
    letter-spacing: 3px;
  }
}

.section-head--light {
  color: var(--color-white);
}

.section-head--light::before {
  background: var(--color-white);
}

/* ============================================================
   共通：VIEW MORE / 募集要項を見る（オリーブのパララインボタン）
   ============================================================ */
.more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 271px;
  height: 70px;
  padding-right: 20px;
  background: var(--color-olive);
  color: var(--color-white);
  font-weight: 900;
  font-size: 23px;
  letter-spacing: 0.23px;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
  transition: opacity 0.3s;
}

@media not all and (min-width: 768px){
  .more-button {
    width: 195px;
    height: 50px;
    font-size: 20px;
  }
}

@media (any-hover: hover) {
  .more-button:hover {
    opacity: 0.8;
  }
}

.more-button:focus-visible {
  opacity: 0.8;
  outline: 2px solid var(--color-olive);
  outline-offset: 3px;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  height: 80px;
  background: var(--color-bg);
}

@media not all and (min-width: 768px){
  .site-header {
    height: 60px;
  }
}

.site-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 40px;
}

@media not all and (min-width: 1200px){
  .site-header__inner {
    padding: 0 20px;
  }
}

@media not all and (min-width: 1000px){
  .site-header__inner {
    padding: 0;
  }
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

@media not all and (min-width: 768px){
  .site-header__logo {
    margin-right: auto;
  }
}

.site-header__logo-mark {
  width: 60px;
  height: 56px;
  object-fit: contain;
}

@media not all and (min-width: 768px){
  .site-header__logo-mark {
    width: 32px;
    height: 30px;
  }
}

.site-header__logo-text {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.56px;
}

@media not all and (min-width: 768px){
  .site-header__logo-text {
    font-size: 15px;
    letter-spacing: -0.3px;
  }
}

.global-nav {
  margin-inline: auto;
}

@media not all and (min-width: 1000px){
  .global-nav {
    display: none;
  }
}

.global-nav__list {
  display: flex;
  align-items: center;
  gap: 24px;
}

@media not all and (min-width: 1200px){
  .global-nav__list {
    gap: 16px;
  }
}

.global-nav__link {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.32px;
  transition: color 0.3s;
}

.global-nav__link.is-current {
  color: var(--color-accent);
}

@media (any-hover: hover) {
  .global-nav__link:hover {
    color: var(--color-accent);
  }
}

.global-nav__link:focus-visible {
  color: var(--color-accent);
  outline: none;
}

/* LINE ボタン */
.line-button {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  height: 37px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--color-line);
  color: var(--color-white);
}

.line-button__icon {
  display: block;
  width: 24px;
  height: 24px;
}

.line-button__body {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.line-button__title {
  font-size: 10px;
  font-weight: 700;
}

.line-button__arrow {
  margin-left: -2px;
  letter-spacing: -2px;
}

.line-button__note {
  font-size: 10px;
  font-weight: 700;
}

@media (any-hover: hover) {
  .line-button:hover {
    opacity: 0.85;
  }
}

.line-button:focus-visible {
  opacity: 0.85;
  outline: 2px solid var(--color-line);
  outline-offset: 2px;
}

@media not all and (min-width: 1000px){
  .line-button {
    margin-right: 10px;
    padding: 0 10px;
  }
}

/* ============================================================
   ハンバーガー（SP）
   ============================================================ */
.hamburger {
  display: none;
}

@media not all and (min-width: 1000px){
  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    padding: 0;
    border: none;
    background: var(--color-olive);
    cursor: pointer;
  }

  .hamburger__lines {
    position: relative;
    display: block;
    width: 26px;
    height: 2px;
    background: var(--color-white);
  }

  .hamburger__lines::before {
    content: "";
    position: absolute;
    left: 0;
    top: -8px;
    width: 26px;
    height: 2px;
    background: var(--color-white);
  }
}

/* ============================================================
   ドロワー（SP）
   ============================================================ */
.drawer {
  display: none;
}

.drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.drawer__panel {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  padding: 96px 24px 40px;
  background: var(--color-bg);
}

.drawer__close {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 60px;
  height: 180px;
  padding: 0;
  border: none;
  background: var(--color-olive);
  color: var(--color-white);
  font-family: var(--font-base);
  font-weight: 700;
  cursor: pointer;
  writing-mode: vertical-rl;
}

.drawer__close-mark {
  font-size: 20px;
}

.drawer__close-text {
  font-size: 25px;
}

.drawer-nav__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-left: 40px;
}

.drawer-nav__link {
  display: flex;
  flex-direction: column;
  color: #3d3d3d;
}

.drawer-nav__en {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
}

.drawer-nav__ja {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
}

@media (any-hover: hover) {
  .drawer-nav__link:hover {
    opacity: 0.7;
  }
}

@media not all and (min-width: 768px){
  .drawer.is-open {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 100;
  }
}

/* ============================================================
   FV
   ============================================================ */
.fv {
  position: relative;
  width: 100vw;
  min-height: 700px;
  margin-inline: calc(50% - 50vw);
  overflow: hidden;
  background-image: url("../images/home/fv-bg.png");
  background-image: image-set(
    url("../images/home/fv-bg.webp") type("image/webp"),
    url("../images/home/fv-bg.png") type("image/png")
  );
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media not all and (min-width: 768px){
  .fv {
    min-height: 430px;
    background-position: center top;
  }
}

.fv__body {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - (var(--pad) * 2)));
  margin-inline: auto;
  padding-top: 222px;
  color: var(--color-white);
  text-shadow: 6px 5px 4px #130d3a;
}

@media not all and (min-width: 768px){
  .fv__body {
    width: auto;
    margin-inline: 0;
    padding-top: 132px;
    padding-left: 28px;
    text-shadow: 6px 5px 4px #18181c;
  }
}

.fv__catch {
  margin-bottom: 30px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.6;
}

@media not all and (min-width: 768px){
  .fv__catch {
    margin-bottom: 16px;
    font-size: 22px;
  }
}

.fv__char {
  font-size: 50px;
}

@media not all and (min-width: 768px){
  /* SP は強調文字も本文と同サイズ（色のみ変える） */
  .fv__char {
    font-size: inherit;
  }
}

.fv__char--olive {
  color: var(--color-olive);
}

.fv__char--teal {
  color: var(--color-accent);
}

.fv__lead {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 2px;
}

@media not all and (min-width: 768px){
  .fv__lead {
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: 1px;
  }
}

/* ============================================================
   SERVICES / 事業内容
   ============================================================ */
.services {
  display: grid;
  grid-template-columns: minmax(0, 490px) minmax(0, 605px);
  grid-template-areas:
    "intro photoTop"
    "photoBottom text";
  column-gap: 85px;
  row-gap: 99px;
  align-items: start;
  width: min(1180px, calc(100% - (var(--pad) * 2)));
  margin-inline: auto;
  padding-top: 102px;
  padding-bottom: 58px;
  background: var(--color-bg);
}

@media not all and (min-width: 768px){
  .services {
    display: block;
    width: auto;
    padding: 24px 8px 34px;
  }
}

.services__intro {
  grid-area: intro;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.services .section-head {
  margin-bottom: 30px;
}

@media not all and (min-width: 768px){
  .services .section-head {
    margin-bottom: 30px;
  }
}

.services__lead {
  margin-bottom: 40px;
  font-size: 14px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 1px;
}

@media not all and (min-width: 768px){
  .services__lead {
    margin-bottom: 40px;
  }
}

@media not all and (min-width: 768px){
  .services__intro > .more-button {
    margin-bottom: 46px;
  }
}

.services__photo {
  width: 100%;
  background-size: cover;
  background-position: center;
}

@media not all and (min-width: 768px){
  /* SP は通常フローで全幅に */
  .services__photo {
    position: static;
    width: calc(100% + 16px);
    margin-left: -8px;
    height: auto;
    aspect-ratio: 371 / 365;
  }
}

.services__photo--top {
  grid-area: photoTop;
  height: auto;
  aspect-ratio: 605 / 599;
  background-image: url("../images/home/home-services-photo01.jpg");
}

@media not all and (min-width: 768px){
  .services__photo--top {
    margin-bottom: 24px;
  }
}

.services__photo--bottom {
  grid-area: photoBottom;
  height: auto;
  aspect-ratio: 490 / 481;
  background-image: url("../images/home/home-services-photo02.jpg");
}

.services__textblock {
  grid-area: text;
  display: grid;
  grid-template-columns: minmax(0, 522px) auto;
  column-gap: 24px;
  align-items: start;
}

@media not all and (min-width: 768px){
  .services__textblock {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 34px;
  }
}

.services__desc {
  width: auto;
}

@media not all and (min-width: 768px){
  .services__desc {
    position: static;
    flex: 1;
    width: auto;
  }
}

.services__desc-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.68;
}

@media not all and (min-width: 768px){
  .services__desc-text {
    font-size: 10px;
    line-height: 1.72;
  }
}

.services__desc-text:not(:last-child) {
  margin-bottom: 1.68em;
}

.services__strong {
  color: var(--color-accent);
  font-size: 20px;
}

@media not all and (min-width: 768px){
  .services__strong {
    font-size: 13px;
  }
}

.services__large {
  font-size: 20px;
}

@media not all and (min-width: 768px){
  .services__large {
    font-size: 13px;
  }
}

.services__vertical {
  order: 2;
  writing-mode: vertical-rl;
  white-space: nowrap;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.26px;
  line-height: 1.3;
}

@media not all and (min-width: 768px){
  .services__vertical {
    position: static;
    flex-shrink: 0;
    font-size: 10px;
    line-height: 1.2;
  }
}

/* ============================================================
   EXAMPLE / 施工事例
   ============================================================ */
.example {
  width: min(1180px, calc(100% - (var(--pad) * 2)));
  margin-inline: auto;
  padding-top: 55px;
  padding-bottom: 70px;
  background: var(--color-bg);
}

@media not all and (min-width: 768px){
  .example {
    min-height: 0;
    width: auto;
    padding: 24px 8px 36px;
  }
}

.example .section-head {
  margin-bottom: 14px;
}

.example__sub {
  margin-bottom: 35px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.68;
}

@media not all and (min-width: 768px){
  .example__sub {
    margin-bottom: 20px;
    font-size: 12px;
  }
}

.example__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 31px;
  row-gap: 42px;
  width: min(1288px, calc(100vw - (var(--pad) * 2)));
}

@media not all and (min-width: 768px){
  .example__grid {
    width: auto;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 16px;
    row-gap: 16px;
  }
}

.card-example {
  display: grid;
}

.card-example__img {
  grid-area: 1 / 1;
  width: 100%;
  height: auto;
  aspect-ratio: 630 / 500;
  object-fit: cover;
  border-radius: 70px;
}

@media not all and (min-width: 768px){
  .card-example__img {
    aspect-ratio: 163 / 145;
    border-radius: 30px;
  }
}

.card-example__label {
  grid-area: 1 / 1;
  align-self: center;
  justify-self: center;
  color: var(--color-white);
  font-weight: 900;
  font-size: 50px;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
  text-shadow: 6px 3px 3px rgba(0, 0, 0, 0.6);
}

@media not all and (min-width: 768px){
  .card-example__label {
    font-size: 20px;
  }
}

.card-example__lead {
  color: var(--color-accent);
  font-size: 60px;
}

@media not all and (min-width: 768px){
  .card-example__lead {
    font-size: 24px;
  }
}

@media (any-hover: hover) {
  .card-example:hover .card-example__img {
    opacity: 0.9;
  }
}

.card-example:focus-visible .card-example__img {
  opacity: 0.9;
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* ============================================================
   VOICE / お客様の声
   ============================================================ */
.voice {
  position: relative;
  padding-top: 50px;
  padding-right: var(--pad);
  padding-bottom: 54px;
  padding-left: var(--pad);
  background: var(--color-bg);
  overflow: hidden;
}

@media not all and (min-width: 768px){
  .voice {
    padding: 28px 8px 42px;
  }
}

.voice .section-head {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto 19px;
}

@media not all and (min-width: 768px){
  .voice .section-head {
    margin-left: 0;
  }
}

.voice__sub {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin-inline: auto;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.68;
}

@media not all and (min-width: 768px){
  .voice__sub {
    font-size: 10px;
    line-height: 1.72;
  }
}

.voice__stage {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  height: clamp(650px, 54vw, 770px);
  margin: 32px auto 0;
}

@media not all and (min-width: 768px){
  .voice__stage {
    position: relative;
    display: block;
    width: 100%;
    max-width: 430px;
    height: clamp(535px, 158vw, 645px);
    margin: 24px auto 0;
  }
}

.card-voice {
  position: absolute;
  display: block;
  width: clamp(320px, 30vw, 424px);
  height: auto;
  aspect-ratio: 424 / 254;
  margin: 0;
}

@media not all and (min-width: 768px){
  .card-voice {
    position: absolute;
    display: grid;
    width: clamp(190px, 58vw, 230px);
    height: auto;
    aspect-ratio: 424 / 254;
  }
}

.card-voice__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

@media not all and (min-width: 768px){
  .card-voice__img {
    position: static;
    grid-area: 1 / 1;
  }
}

.card-voice__body {
  position: absolute;
  left: 11%;
  top: 21%;
  width: 78%;
  color: var(--color-white);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.35);
}

@media not all and (min-width: 768px){
  .card-voice__body {
    position: static;
    grid-area: 1 / 1;
    align-self: center;
    justify-self: center;
    width: 80%;
    text-align: center;
  }
}

.card-voice__body--center {
  text-align: center;
}

.card-voice__title {
  margin-bottom: 0.48em;
  font-size: clamp(14px, 1.36vw, 19px);
  font-weight: 700;
  line-height: 1.52;
}

@media not all and (min-width: 768px){
  .card-voice__title {
    margin-bottom: 3px;
    font-size: clamp(9px, 2.7vw, 11px);
    line-height: 1.35;
  }
}

.card-voice__name {
  font-size: clamp(20px, 2.05vw, 29px);
}

@media not all and (min-width: 768px){
  .card-voice__name {
    font-size: clamp(12px, 3.9vw, 16px);
  }
}

.card-voice__text {
  font-size: clamp(12px, 1.14vw, 16px);
  font-weight: 400;
  line-height: 1.48;
}

@media not all and (min-width: 768px){
  .card-voice__text {
    font-size: clamp(8px, 2.55vw, 10px);
    line-height: 1.38;
  }
}

.card-voice--kitchen {
  left: 0;
  top: 38px;
}

.card-voice--bath {
  left: 39%;
  top: 240px;
}

.card-voice--toilet {
  right: 0;
  top: 0;
}

.card-voice--all {
  right: 0;
  top: 440px;
}

.card-voice--washroom {
  left: 16%;
  top: 505px;
}

@media not all and (min-width: 768px){
  .card-voice--kitchen,
  .card-voice--bath,
  .card-voice--toilet,
  .card-voice--all,
  .card-voice--washroom {
    right: auto;
    justify-self: auto;
  }

  .card-voice--kitchen {
    left: 0;
    top: 0;
  }

  .card-voice--toilet {
    left: calc(100% - clamp(190px, 58vw, 230px));
    top: clamp(98px, 30vw, 122px);
  }

  .card-voice--bath {
    left: 0;
    top: clamp(196px, 60vw, 244px);
  }

  .card-voice--washroom {
    left: calc(100% - clamp(190px, 58vw, 230px));
    top: clamp(294px, 90vw, 366px);
  }

  .card-voice--all {
    left: 0;
    top: clamp(392px, 120vw, 488px);
  }
}

/* ============================================================
   RECRUIT / 採用情報
   ============================================================ */
.recruit {
  min-height: 560px;
  padding-top: 0;
  padding-bottom: 50px;
  background: var(--color-bg);
}

@media not all and (min-width: 768px){
  .recruit {
    min-height: 0;
    padding: 32px var(--pad-sp) 40px;
  }
}

.recruit > .section-head {
  margin-bottom: 28px;
  margin-left: var(--pad);
}

@media not all and (min-width: 768px){
  .recruit > .section-head {
    margin-bottom: 24px;
    margin-left: 0;
  }
}

.recruit__lead {
  margin-bottom: 36px;
  text-align: center;
}

@media not all and (min-width: 768px){
  .recruit__lead {
    margin-bottom: 28px;
  }
}

.recruit__lead-strong {
  margin-bottom: 1.55em;
  font-size: 24px;
  font-weight: 500;
  line-height: 2;
}

@media not all and (min-width: 768px){
  .recruit__lead-strong {
    margin-bottom: 1.5em;
    font-size: 12px;
    line-height: 1.8;
  }
}

.recruit__lead-text:not(:last-child) {
  margin-bottom: 1.55em;
}

.recruit__lead-text {
  font-size: 20px;
  font-weight: 400;
  line-height: 2;
}

@media not all and (min-width: 768px){
  .recruit__lead-text {
    font-size: 12px;
    line-height: 1.8;
  }
  /* SP では「未経験の方でも〜」を大きく見せる */
  .recruit__lead-text:first-of-type {
    font-size: 16px;
  }
}

.recruit__action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding-inline: var(--pad);
}

@media not all and (min-width: 768px){
  .recruit__action {
    flex-direction: row;
    gap: 12px;
    padding-inline: 0;
    text-align: left;
  }

  .recruit__action .more-button {
    flex-shrink: 0;
    width: 136px;
    height: 40px;
    font-size: 12px;
    white-space: nowrap;
  }
}

.recruit__note {
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.23px;
  line-height: 1.75;
}

@media not all and (min-width: 768px){
  .recruit__note {
    max-width: 190px;
    font-size: 11px;
    line-height: 1.7;
  }
}

/* ============================================================
   Footer － CONTACT
   ============================================================ */
.contact {
  position: relative;
  min-height: 446px;
  background-image: url("../images/footer-contact-bg.png");
  background-image: image-set(
    url("../images/footer-contact-bg.webp") type("image/webp"),
    url("../images/footer-contact-bg.png") type("image/png")
  );
  background-size: cover;
  background-position: center;
}

@media not all and (min-width: 768px){
  .contact {
    min-height: 253px;
  }
}

.contact__inner {
  position: relative;
  padding-block: 54px 60px;
  color: var(--color-white);
}

@media not all and (min-width: 768px){
  .contact__inner {
    padding: 34px 8px 28px;
  }
}

.contact .section-head {
  margin-bottom: 18px;
}

@media not all and (min-width: 768px){
  .contact .section-head {
    margin-bottom: 14px;
  }
}

.contact__text {
  margin-bottom: 36px;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.25px;
}

@media not all and (min-width: 768px){
  .contact__text {
    margin-bottom: 20px;
    font-size: 10px;
    letter-spacing: 0.1px;
  }
}

.contact__actions {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-left: 122px;
}

@media not all and (min-width: 768px){
  .contact__actions {
    gap: 14px;
    margin-left: 30px;
  }
}

.contact__sns {
  display: block;
  width: 76px;
  height: 76px;
}

@media not all and (min-width: 768px){
  .contact__sns {
    width: 30px;
    height: 30px;
  }
}

.contact__sns img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact__form {
  display: inline-flex;
  align-items: center;
  gap: 84px;
  margin-left: 20px;
}

@media not all and (min-width: 768px){
  .contact__form {
    gap: 36px;
    margin-left: 14px;
  }
}

.contact__form-text {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.25px;
}

@media not all and (min-width: 768px){
  .contact__form-text {
    font-size: 12px;
  }
}

/* 黄色い丸 + 白い連結線 + ノード */
.contact__form-arrow {
  position: relative;
  display: block;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--color-olive);
}

@media not all and (min-width: 768px){
  .contact__form-arrow {
    width: 30px;
    height: 30px;
  }
}

.contact__form-arrow::before {
  /* 左へ伸びる連結線 */
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  width: 110px;
  height: 2px;
  background: var(--color-white);
  transform: translateY(-50%);
}

@media not all and (min-width: 768px){
  .contact__form-arrow::before {
    width: 44px;
  }
}

.contact__form-arrow::after {
  /* 中心の白ノード */
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-white);
  transform: translate(-50%, -50%);
}

@media not all and (min-width: 768px){
  .contact__form-arrow::after {
    width: 6px;
    height: 6px;
  }
}

@media (any-hover: hover) {
  .contact__sns:hover,
  .contact__form:hover {
    opacity: 0.85;
  }
}

.contact__sns:focus-visible,
.contact__form:focus-visible {
  opacity: 0.85;
  outline: 2px solid var(--color-white);
  outline-offset: 3px;
}

/* ============================================================
   Footer － 会社情報
   ============================================================ */
.footer-info {
  position: relative;
  padding-block: 85px 50px;
  background: var(--color-bg);
}

@media not all and (min-width: 768px){
  .footer-info {
    padding-block: 36px 40px;
  }
}

.footer-nav {
  position: relative;
  margin-bottom: 38px;
}

@media not all and (min-width: 768px){
  .footer-nav {
    margin-bottom: 24px;
  }
}

.footer-nav__list {
  display: flex;
  justify-content: center;
  gap: 24px;
}

@media not all and (min-width: 768px){
  /* SP は 3 列 × 2 行に */
  .footer-nav__list {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    gap: 18px 20px;
  }
}

.footer-nav__link {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.32px;
  transition: color 0.3s;
}

@media not all and (min-width: 768px){
  .footer-nav__link {
    font-size: 12px;
    letter-spacing: -0.24px;
  }
}

@media (any-hover: hover) {
  .footer-nav__link:hover {
    color: var(--color-accent);
  }
}

.footer-nav__link:focus-visible {
  color: var(--color-accent);
  outline: none;
}

.footer-sns {
  position: absolute;
  top: -8px;
  right: 149px;
  display: flex;
  gap: 22px;
}

@media not all and (min-width: 768px){
  /* SP はナビ下に中央配置 */
  .footer-sns {
    position: static;
    justify-content: center;
    margin-top: 24px;
  }
}

.footer-sns__item a {
  display: block;
  width: 35px;
  height: 35px;
}

@media not all and (min-width: 768px){
  .footer-sns__item a {
    width: 30px;
    height: 30px;
  }
}

.footer-sns__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-company {
  margin-bottom: 32px;
  text-align: center;
}

.footer-company__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
}

.footer-company__mark {
  width: 60px;
  height: 56px;
  object-fit: contain;
}

@media not all and (min-width: 768px){
  .footer-company__mark {
    width: 36px;
    height: 34px;
  }
}

.footer-company__name {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.56px;
}

@media not all and (min-width: 768px){
  .footer-company__name {
    font-size: 15px;
    letter-spacing: -0.3px;
  }
}

.footer-company__address {
  font-size: 16px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 0.48px;
}

@media not all and (min-width: 768px){
  .footer-company__address {
    font-size: 12px;
    line-height: 20px;
  }
}

/* ページトップへ戻る（SP のみ） */
.footer-pagetop {
  display: none;
}

@media not all and (min-width: 768px){
  .footer-pagetop {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 13px;
    bottom: 78px;
    width: 60px;
    height: 60px;
    background: var(--color-olive);
  }

  .footer-pagetop__arrow {
    width: 16px;
    height: 16px;
    margin-top: 4px;
    border-top: 2px solid var(--color-white);
    border-right: 2px solid var(--color-white);
    transform: rotate(-45deg);
  }
}

@media (any-hover: hover) {
  .footer-pagetop:hover {
    opacity: 0.85;
  }
}

.footer-pagetop:focus-visible {
  opacity: 0.85;
  outline: 2px solid var(--color-olive);
  outline-offset: 3px;
}

.footer-copyright {
  width: 100%;
  max-width: 1220px;
  margin-inline: auto;
  padding-top: 32px;
  border-top: 1px solid rgba(151, 149, 181, 0.4);
  color: var(--color-text-muted);
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  text-align: center;
}

@media not all and (min-width: 768px){
  .footer-copyright {
    width: 100%;
    max-width: 319px;
    font-size: 12px;
  }
}

/* ============================================================
   施工事例 詳細ページ（共通）
   ============================================================ */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 40px var(--pad) 0;
  font-size: 14px;
  font-weight: 700;
}

@media not all and (min-width: 768px){
  .breadcrumb {
    padding: 24px var(--pad-sp) 0;
    font-size: 12px;
  }
}

.breadcrumb__link {
  transition: color 0.3s;
}

@media (any-hover: hover) {
  .breadcrumb__link:hover {
    color: var(--color-accent);
  }
}

.breadcrumb__link:focus-visible {
  color: var(--color-accent);
  outline: none;
}

.breadcrumb__sep {
  color: var(--color-text-muted);
}

.page-title {
  padding: 28px var(--pad) 0;
  margin-bottom: 64px;
}

.case-page > .breadcrumb,
.case-page > .page-title {
  width: min(1068px, calc(100% - (var(--pad) * 2)));
  margin-inline: auto;
  padding-right: 0;
  padding-left: 0;
}

@media not all and (min-width: 768px){
  .page-title {
    padding: 20px var(--pad-sp) 0;
    margin-bottom: 40px;
  }

  .case-page > .breadcrumb,
  .case-page > .page-title {
    width: auto;
    margin-inline: 0;
    padding-right: var(--pad-sp);
    padding-left: var(--pad-sp);
  }
}

.case-list {
  display: flex;
  flex-direction: column;
  gap: 96px;
  width: min(1068px, calc(100% - (var(--pad) * 2)));
  margin-inline: auto;
  padding: 0 0 120px;
}

@media not all and (min-width: 768px){
  .case-list {
    width: auto;
    gap: 48px;
    padding: 0 var(--pad-sp) 56px;
  }
}

.case-block {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 520px);
  justify-content: space-between;
  align-items: flex-start;
  gap: 56px;
}

@media not all and (min-width: 768px){
  /* SP は写真を上、本文を下へ */
  .case-block {
    display: flex;
    flex-direction: column-reverse;
    gap: 24px;
  }
}

.case-block__body {
  flex: 1 1 0;
  min-width: 0;
}

.case-block__title {
  margin-bottom: 28px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.55;
}

@media not all and (min-width: 768px){
  .case-block__title {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .case-block__title .newline {
    display: inline-block;
  }
}

.case-block__lead {
  color: var(--color-olive);
  font-size: 38px;
}

@media not all and (min-width: 768px){
  .case-block__lead {
    font-size: 28px;
  }
}

.case-block__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
}

@media not all and (min-width: 768px){
  .case-block__text {
    line-height: 1.9;
  }
}

.case-block__text:not(:last-child) {
  margin-bottom: 1.8em;
}

.case-block__emphasis {
  font-size: 20px;
}

@media not all and (min-width: 768px){
  .case-block__emphasis {
    font-size: 16px;
  }
}

.case-block__photos {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media not all and (min-width: 768px){
  /* SP は写真を横並び（スパは2枚を2列、その他は1枚で全幅）*/
  .case-block__photos {
    flex: initial;
    width: 100%;
    max-width: none;
    flex-direction: row;
    gap: 12px;
  }
}

.case-block__photo {
  margin: 0;
}

@media not all and (min-width: 768px){
  .case-block__photo {
    flex: 1 1 0;
    min-width: 0;
  }
}

.case-block__photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}

/* ============================================================
   会社概要ページ
   ============================================================ */
.overview {
  padding-bottom: 80px;
  background: var(--color-dark);
  color: var(--color-white);
}

@media not all and (min-width: 768px){
  .overview {
    padding-bottom: 48px;
  }
}

.overview .breadcrumb,
.overview .page-title,
.company-table {
  width: min(920px, calc(100% - (var(--pad) * 2)));
  margin-inline: auto;
  padding-inline: 0;
}

@media not all and (min-width: 768px){
  .overview .breadcrumb,
  .overview .page-title,
  .company-table {
    width: auto;
    margin-inline: 0;
    padding-inline: var(--pad-sp);
  }
}

.company-table__row {
  display: flex;
  gap: 48px;
  padding-block: 26px;
  border-bottom: 1px solid rgba(249, 249, 249, 0.25);
}

@media not all and (min-width: 768px){
  .company-table__row {
    gap: 16px;
    padding-block: 20px;
  }
}

.company-table__label {
  flex: 0 0 200px;
  font-size: 16px;
  font-weight: 700;
}

@media not all and (min-width: 768px){
  .company-table__label {
    flex: 0 0 90px;
    font-size: 14px;
  }
}

.company-table__value {
  flex: 1;
  min-width: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

@media not all and (min-width: 768px){
  .company-table__value {
    font-size: 14px;
  }
}

/* 代表挨拶 */
.greeting {
  padding: 90px 0 110px;
}

@media not all and (min-width: 768px){
  .greeting {
    padding: 56px var(--pad-sp) 64px;
  }
}

.greeting .section-head {
  width: min(920px, calc(100% - (var(--pad) * 2)));
  margin-inline: auto;
  margin-bottom: 48px;
}

@media not all and (min-width: 768px){
  .greeting .section-head {
    margin-bottom: 28px;
  }
}

.greeting__box {
  max-width: 920px;
  margin-inline: auto;
  padding: 48px 56px;
  border: 1px solid rgba(24, 24, 28, 0.2);
}

@media not all and (min-width: 768px){
  .greeting__box {
    padding: 24px 20px;
  }
}

.greeting__text {
  font-size: 20px;
  font-weight: 400;
  line-height: 2;
}

@media not all and (min-width: 768px){
  .greeting__text {
    font-size: 12px;
  }
}

.greeting__text:not(:last-child) {
  margin-bottom: 1.8em;
}

/* ============================================================
   お問い合わせページ（Contact Form 7 想定）
   ============================================================ */
.contact-page .page-title {
  margin-bottom: 32px;
}

.contact-intro {
  margin-bottom: 48px;
  padding: 0 var(--pad);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.9;
}

@media not all and (min-width: 768px){
  .contact-intro {
    margin-bottom: 32px;
    padding: 0 var(--pad-sp);
    font-size: 16px;
  }
}

/* 電話番号ブロック */
.contact-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 480px;
  margin: 0 auto 64px;
  padding: 18px 24px;
  border-radius: 8px;
  background: #18181c;
  color: var(--color-white);
}

@media not all and (min-width: 768px){
  .contact-tel {
    margin: 0 var(--pad-sp) 40px;
    padding: 14px 16px;
  }
}

.contact-tel__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

@media not all and (min-width: 768px){
  .contact-tel__icon {
    width: 32px;
    height: 32px;
  }
}

.contact-tel__number {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 2px;
}

@media not all and (min-width: 768px){
  .contact-tel__number {
    font-size: 28px;
    letter-spacing: 1px;
  }
}

/* 入力フィールド */
.contact-form__fields {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  margin: 0 auto 80px;
  padding: 40px;
}

@media (min-width: 768px){
  .contact-form__fields {
    margin-inline: auto;
  }
}

@media not all and (min-width: 768px){
  .contact-form__fields {
    gap: 20px;
    margin-bottom: 48px;
    padding: 20px;
  }
}

.form-row {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  align-items: flex-start;
  column-gap: 36px;
}

@media not all and (min-width: 768px){
  .form-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.form-row__label {
  flex: 0 0 170px;
  padding-top: 12px;
  font-size: 16px;
  font-weight: 700;
}

@media not all and (min-width: 768px){
  .form-row__label {
    flex: initial;
    padding-top: 0;
    font-size: 14px;
  }
}

.form-row__field {
  flex: 1;
  min-width: 0;
}

.form-row__field .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

@media not all and (min-width: 768px){
  .form-row__field {
    width: 100%;
  }
}

.form-row--textarea {
  display: block;
}

.form-row--textarea .form-row__label {
  display: block;
  padding-top: 0;
  margin-bottom: 10px;
}

.form-row--textarea .form-row__field {
  width: 100%;
}

.form-row__field :is(input, textarea) {
  display: block;
  width: 100%;
  padding: 13px 18px;
  border: 1px solid #8f8f8f;
  border-radius: 0;
  background: #fff;
  font-family: inherit;
  font-size: 16px;
  color: var(--color-text);
}

.form-row__field :is(input, textarea)::placeholder {
  color: #b3b3b3;
}

.form-row__field :is(input, textarea):focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
}

.form-row__field textarea {
  min-height: 250px;
  line-height: 1.7;
  resize: vertical;
}

/* プライバシーポリシー */
.privacy {
  padding: 64px var(--pad);
  background: #697077;
  color: var(--color-white);
}

.privacy .page-section {
  max-width: 720px;
}

@media not all and (min-width: 768px){
  .privacy {
    padding: 48px var(--pad-sp);
  }
}

.privacy .section-head {
  margin-bottom: 40px;
}

.privacy .section-head__ja {
  font-size: 40px;
  letter-spacing: 2px;
}

@media not all and (min-width: 768px){
  .privacy .section-head__ja {
    font-size: 28px;
    letter-spacing: 1px;
  }
}

.privacy__lead {
  margin-bottom: 32px;
  font-size: 14px;
  line-height: 1.9;
}

.privacy__item:not(:last-child) {
  margin-bottom: 28px;
}

.privacy__heading {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.privacy__text {
  font-size: 14px;
  line-height: 1.9;
}

.privacy__list {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.9;
}

.privacy__list li {
  padding-left: 1.2em;
  text-indent: -1.2em;
}

.privacy__list li::before {
  content: "・";
}

.privacy__company {
  margin-top: 28px;
  font-size: 14px;
  line-height: 1.9;
}

/* 同意 + 送信 */
.contact-form__consent {
  padding: 56px var(--pad);
  text-align: center;
  background: var(--color-bg);
}

@media not all and (min-width: 768px){
  .contact-form__consent {
    padding: 40px var(--pad-sp);
  }
}

.contact-form__agree-text {
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 700;
}

@media not all and (min-width: 768px){
  .contact-form__agree-text {
    font-size: 15px;
  }
}

.contact-form__checkbox {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.contact-form__checkbox .wpcf7-form-control-wrap,
.contact-form__checkbox .wpcf7-form-control,
.contact-form__checkbox .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.contact-form__checkbox input {
  width: 22px;
  height: 22px;
  accent-color: var(--color-olive);
}

.contact-form__submit {
  display: flex;
  justify-content: center;
}

.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 235px;
  padding: 16px 48px;
  border: none;
  border-radius: 2px;
  background: var(--color-olive);
  color: var(--color-white);
  font-family: inherit;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  transition: opacity 0.3s;
}

@media not all and (min-width: 768px){
  .submit-button {
    min-width: 0;
    padding: 12px 56px;
  }
}

@media (any-hover: hover) {
  .submit-button:hover {
    opacity: 0.85;
  }
}

.submit-button:focus-visible {
  opacity: 0.85;
  outline: 2px solid var(--color-olive);
  outline-offset: 3px;
}

/* ============================================================
   採用情報ページ
   ============================================================ */
.careers-page .breadcrumb {
  padding-inline: 0;
}

@media not all and (min-width: 768px){
  .careers-page .breadcrumb {
    padding-inline: var(--pad-sp);
  }
}

.careers-page .page-title {
  margin-bottom: 36px;
  padding-inline: 0;
}

@media not all and (min-width: 768px){
  .careers-page .page-title {
    margin-bottom: 42px;
    padding-inline: var(--pad-sp);
  }
}

.careers-intro {
  margin-bottom: 80px;
  padding-inline: var(--pad);
  text-align: center;
}

@media not all and (min-width: 768px){
  .careers-intro {
    margin-bottom: 28px;
    padding-inline: var(--pad-sp);
  }
}

.careers-intro__lead {
  margin-bottom: 54px;
  font-size: 25px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.25px;
}

@media not all and (min-width: 768px){
  .careers-intro__lead {
    margin-bottom: 43px;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.16px;
  }
}

.careers-intro__text {
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.18px;
}

@media not all and (min-width: 768px){
  .careers-intro__text {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.14px;
  }
}

.careers-intro__text:not(:last-child) {
  margin-bottom: 52px;
}

@media not all and (min-width: 768px){
  .careers-intro__text:not(:last-child) {
    margin-bottom: 43px;
  }
}

.job-overview {
  padding-block: 84px 86px;
  background: #697077;
  color: var(--color-white);
}

@media not all and (min-width: 768px){
  .job-overview {
    padding-block: 40px 44px;
  }
}

.job-overview .section-head {
  margin-bottom: 60px;
}

@media not all and (min-width: 768px){
  .job-overview .section-head {
    margin-bottom: 40px;
    margin-inline: var(--pad-sp);
  }
}

.job-overview .section-head__ja {
  font-size: 50px;
  letter-spacing: 5px;
}

@media not all and (min-width: 768px){
  .job-overview .section-head__ja {
    font-size: 30px;
    letter-spacing: 3px;
  }
}

.job-table {
  max-width: 844px;
  margin-bottom: 60px;
}

@media not all and (min-width: 768px){
  .job-table {
    margin-bottom: 36px;
    padding-inline: var(--pad-sp);
  }
}

.job-table__row {
  display: flex;
  gap: 94px;
  padding-block: 34px;
  border-bottom: 1px solid rgba(249, 249, 249, 0.25);
}

@media not all and (min-width: 768px){
  .job-table__row {
    gap: 24px;
    padding-block: 25px;
  }
}

.job-table__row:first-child {
  padding-top: 0;
}

.job-table__label {
  flex: 0 0 230px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}

@media not all and (min-width: 768px){
  .job-table__label {
    flex-basis: 92px;
    font-size: 14px;
    line-height: 1.7;
  }
}

.job-table__value {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}

@media not all and (min-width: 768px){
  .job-table__value {
    font-size: 14px;
    line-height: 1.6;
  }
}

.job-table__note {
  display: block;
  font-size: 14px;
  line-height: 1.7;
}

@media not all and (min-width: 768px){
  .job-table__note {
    font-size: 10px;
  }
}

.job-overview__message {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.8;
}

@media not all and (min-width: 768px){
  .job-overview__message {
    padding-inline: var(--pad-sp);
    font-size: 12px;
  }
}

/* ============================================================
   よくある質問ページ
   ============================================================ */
.faq-page .breadcrumb {
  padding-inline: 0;
}

@media not all and (min-width: 768px){
  .faq-page .breadcrumb {
    padding-inline: var(--pad-sp);
  }
}

.faq-page .page-title {
  margin-bottom: 36px;
  padding-inline: 0;
}

@media not all and (min-width: 768px){
  .faq-page .page-title {
    margin-bottom: 29px;
    padding-inline: var(--pad-sp);
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-inline: auto;
  margin-bottom: 65px;
}

@media not all and (min-width: 768px){
  .faq-list {
    gap: 35px;
    margin-bottom: 31px;
    padding-inline: var(--pad-sp);
  }
}

.faq-card {
  padding: 48px 49px;
  border-radius: 3px;
  background: #3d3d3d;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.16);
}

@media not all and (min-width: 768px){
  .faq-card {
    padding: 22px 19px 21px;
    border-radius: 0;
  }
}

.faq-card__question {
  display: flex;
  gap: 7px;
  margin-bottom: 26px;
  color: #f9f9f9;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}

@media not all and (min-width: 768px){
  .faq-card__question {
    margin-bottom: 12px;
    line-height: 1.5;
  }
}

.faq-card__number {
  flex-shrink: 0;
  color: #bfbc25;
  font-size: 25px;
  line-height: 1.28;
}

.faq-card__answer {
  color: #f9f9f9;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

/* ============================================================
   事業内容ページ
   ============================================================ */
.services-page .breadcrumb {
  padding-inline: 0;
}

@media not all and (min-width: 768px){
  .services-page .breadcrumb {
    padding-inline: var(--pad-sp);
  }
}

.services-page .page-title {
  margin-bottom: 28px;
  padding-inline: 0;
}

@media not all and (min-width: 768px){
  .services-page .page-title {
    margin-bottom: 27px;
    padding-inline: var(--pad-sp);
  }
}

.service-intro {
  margin-bottom: 64px;
}

@media not all and (min-width: 768px){
  .service-intro {
    margin-bottom: 47px;
    padding-inline: var(--pad-sp);
  }
}

.service-intro__text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.42px;
}

@media not all and (min-width: 768px){
  .service-intro__text {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.14px;
  }
}

.service-intro__text:not(:last-child) {
  margin-bottom: 34px;
}

@media not all and (min-width: 768px){
  .service-intro__text:not(:last-child) {
    margin-bottom: 27px;
  }
}

.service-intro__strong {
  color: var(--color-accent);
  font-size: 20px;
}

.service-menu {
  display: flex;
  flex-direction: column;
  gap: 76px;
  margin-bottom: 72px;
}

@media not all and (min-width: 768px){
  .service-menu {
    gap: 42px;
    margin-bottom: 47px;
    padding-inline: var(--pad-sp);
  }
}

.service-menu__item {
  display: grid;
  grid-template-columns: minmax(0, 490px) minmax(0, 1fr);
  align-items: center;
  gap: 104px;
  max-width: 920px;
  margin-inline: auto;
}

@media not all and (min-width: 768px){
  .service-menu__item {
    display: flex;
    flex-direction: column;
    gap: 19px;
    max-width: 245px;
  }
}

.service-menu__item--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 490px);
}

.service-menu__item--reverse .service-menu__photo {
  order: 2;
}

@media not all and (min-width: 768px){
  .service-menu__item--reverse .service-menu__photo {
    order: 0;
  }
}

.service-menu__photo {
  margin: 0;
}

.service-menu__photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.service-menu__body {
  text-align: center;
}

.service-menu__title {
  margin-bottom: 18px;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.45;
}

@media not all and (min-width: 768px){
  .service-menu__title {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.55;
  }
}

.service-menu__title span {
  color: var(--color-olive);
  font-size: 31px;
}

@media not all and (min-width: 768px){
  .service-menu__title span {
    font-size: 20px;
  }
}

.service-menu__text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

@media not all and (min-width: 768px){
  .service-menu__text {
    font-size: 14px;
    line-height: 1.65;
  }
}

.service-flow {
  margin-bottom: 104px;
}

@media not all and (min-width: 768px){
  .service-flow {
    margin-bottom: 44px;
    padding-inline: var(--pad-sp);
  }
}

.service-flow .section-head {
  margin-bottom: 70px;
}

@media not all and (min-width: 768px){
  .service-flow .section-head {
    margin-bottom: 39px;
  }
}

.flow-steps {
  position: relative;
}

.flow-steps__line {
  position: absolute;
  pointer-events: none;
}

.flow-steps__line polyline {
  fill: none;
  stroke: var(--color-text);
  stroke-width: 2px;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.flow-steps__line--pc {
  top: 71px;
  left: clamp(55px, 7.4%, 77px);
  right: clamp(55px, 7.4%, 77px);
  width: 88%;
  height: 2px;
}

@media not all and (min-width: 768px){
  .flow-steps__line--pc {
    display: none;
  }
}

.flow-steps__line--sp {
  display: none;
}

@media not all and (min-width: 768px){
  .flow-steps__line--sp {
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 560px;
  }
}

.flow-steps__list {
  position: relative;
  margin-left: 0;
  padding-left: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
}

@media not all and (min-width: 768px){
  .flow-steps__list {
    display: block;
    min-height: 610px;
  }
}

.flow-steps__item {
  text-align: center;
}

@media not all and (min-width: 768px){
  .flow-steps__item {
    position: absolute;
    width: 132px;
  }

  .flow-steps__item:nth-child(1) {
    left: 0;
    top: 0;
  }

  .flow-steps__item:nth-child(2) {
    left: calc(50% - 56px);
    top: 80px;
  }

  .flow-steps__item:nth-child(3) {
    right: 0;
    top: 160px;
  }

  .flow-steps__item:nth-child(4) {
    left: 0;
    top: 300px;
  }

  .flow-steps__item:nth-child(5) {
    left: calc(50% - 56px);
    top: 380px;
  }

  .flow-steps__item:nth-child(6) {
    right: 0;
    top: 460px;
  }
}

@media not all and (min-width: 768px){
  .flow-steps__item {
    width: 122px;
  }
}


.flow-steps__step {
  margin-bottom: 3px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

@media not all and (min-width: 768px){
  .flow-steps__step {
    font-size: 14px;
  }
}

.flow-steps__step span {
  color: var(--color-olive);
  font-size: 28px;
}

@media not all and (min-width: 768px){
  .flow-steps__step span {
    font-size: 20px;
  }
}

.flow-steps__icon {
  width: 80px;
  height: 80px;
  margin-inline: auto;
  margin-bottom: 24px;
}

@media not all and (min-width: 768px){
  .flow-steps__icon {
    width: 52px;
    height: 52px;
    margin-bottom: 8px;
  }
}

.flow-steps__title {
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

@media not all and (min-width: 768px){
  .flow-steps__title {
    margin-bottom: 7px;
    font-size: 14px;
    line-height: 1.45;
  }
}

.flow-steps__title span {
  color: var(--color-accent);
  font-size: 22px;
}

@media not all and (min-width: 768px){
  .flow-steps__title span {
    font-size: 18px;
  }
}

.flow-steps__text {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
}

@media not all and (min-width: 768px){
  .flow-steps__text {
    font-size: 10px;
    line-height: 1.6;
  }
}

/* ============================================================
   施工事例一覧ページ
   ============================================================ */
.examples-page {
  padding-bottom: 80px;
}

@media not all and (min-width: 768px){
  .examples-page {
    padding-bottom: 30px;
  }
}

.examples-page .breadcrumb {
  padding-inline: 0;
}

@media not all and (min-width: 768px){
  .examples-page .breadcrumb {
    padding-inline: var(--pad-sp);
  }
}

.examples-page .page-title {
  margin-bottom: 14px;
  padding-inline: 0;
}

@media not all and (min-width: 768px){
  .examples-page .page-title {
    margin-bottom: 26px;
    padding-inline: var(--pad-sp);
  }
}

.examples-page__sub {
  margin-bottom: 74px;
  padding-inline: var(--pad);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.68;
}

@media not all and (min-width: 768px){
  .examples-page__sub {
    margin-bottom: 27px;
    padding-inline: var(--pad-sp);
    font-size: 14px;
  }
}

.examples-page__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px 31px;
  width: min(1288px, calc(100vw - 128px));
  margin-left: 50%;
  padding-inline: 0;
  transform: translateX(-50%);
}

@media not all and (min-width: 768px){
  .examples-page__grid {
    width: auto;
    gap: 24px 24px;
    margin-left: 0;
    padding-inline: var(--pad-sp);
    transform: none;
  }
}

.examples-page__grid .card-example__img {
  width: 100%;
}
