@charset "UTF-8";
/* CSS Document */
html {
  height: 100%;
}

body {
  font-family: "YakuHanJP", "Lato", "Noto Sans JP", "游ゴシック Medium", 游ゴシック体, "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  width: 100%;
  height: 100%;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin: 0 auto;
  background: #fff;
}

.cut {
  overflow: hidden;
  zoom: 1;
}

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

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

.ggmap {
  width: 100%;
  height: 350px;
}

input, select {
  vertical-align: middle;
  margin-bottom: 3px;
  margin-right: 5px;
}

.phone {
  display: none;
}

.pc {
  display: block;
}

.tcen {
  text-align: center;
}

@media screen and (max-width: 800px) {
  .tcen {
    text-align: left;
  }
  body {
    font-size: 13px;
    line-height: 1.5;
  }
  .phone {
    display: block;
  }
  .pc {
    display: none !important;
  }
}
#page-top {
  position: fixed;
  bottom: 65px;
  right: 5px;
  font-size: 12px;
  font-weight: bold;
  z-index: 9999;
}
#page-top a {
  color: #fff;
  font-size: 25px;
  text-decoration: none;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  display: block;
  border-radius: 45px;
  background: #2b3f8f;
  box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 2px;
}
#page-top a:hover {
  opacity: 0.6;
  text-decoration: none;
}

.mtext1 {
  font-size: 2rem;
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.mtext1.type1 {
  margin-bottom: 25px;
  text-align: center;
}
.mtext1.type1 br {
  display: none;
}

@media all and (max-width: 896px) {
  .mtext1 {
    font-size: 1.8rem;
  }
}
@media all and (max-width: 639px) {
  .mtext1 {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .mtext1.type1 {
    margin-bottom: 20px;
  }
  .mtext1.type1 br {
    display: block;
  }
}
.mtext2 {
  font-size: 2.4rem;
  line-height: 1.6;
}
.mtext2.type1 {
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 30px;
}

@media all and (max-width: 896px) {
  .mtext2 {
    font-size: 2.2rem;
  }
}
@media all and (max-width: 639px) {
  .mtext2 {
    font-size: 2rem;
  }
  .mtext2.type1 {
    margin-bottom: 25px;
  }
}
.mtext3 {
  font-size: 4rem;
  line-height: 1.6;
  text-align: center;
}

@media all and (max-width: 896px) {
  .mtext3 {
    font-size: 3rem;
  }
}
@media all and (max-width: 639px) {
  .mtext3 {
    font-size: 2.4rem;
  }
}
.loader {
  align-items: center;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28588/bg-main.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}
.loader.off {
  display: none;
}
@keyframes loader {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*画面遷移の後現れるコンテンツ設定*/
#page {
  opacity: 0; /*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #page {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ============================================================
   有限会社グローバルメンテナンス工業 / TOP
   color : blue #2b3f8f  silver #b9bec4  ink #23272c  base #f7f5f1
   ============================================================ */
:root {
  --blue: #2b3f8f;
  --blue-d: #1e2c68;
  --blue-l: #8fa0d4;
  --silver: #b9bec4;
  --silver-l: #e5e7ea;
  --ink: #23272c;
  --ink-l: #5b636c;
  --base: #f7f5f1;
  --white: #fff;
  --wrap: 1120px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

a {
  color: var(--blue-d);
  text-decoration: none;
  transition: color 0.3s var(--ease), opacity 0.3s var(--ease);
}
a:hover {
  color: var(--blue);
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

body {
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", -apple-system, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--ink);
  background: var(--base);
  font-size: 16px;
  line-height: 1.9;
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  min-height: 58px;
  padding: 0 34px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  border-radius: 999px;
  transition: all 0.35s var(--ease);
}
.btn--blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 24px -12px rgba(30, 44, 104, 0.55);
}
.btn--blue:hover {
  background: var(--blue-d);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--line {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
}
.btn--line:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}
.btn--wide {
  width: 100%;
  max-width: 340px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}
.link-arrow::after {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--blue);
  transition: width 0.35s var(--ease);
}
.link-arrow:hover {
  color: var(--blue-d);
}
.link-arrow:hover::after {
  width: 56px;
}

/* 画像プレースホルダー（写真差し替え用） */
.ph {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: var(--silver-l);
  background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.75) 0 8px, transparent 8px 16px);
}
.ph__label {
  padding: 0.6em 1em;
  max-width: 88%;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-align: center;
  color: #6d747c;
  background: rgba(255, 255, 255, 0.82);
}
.ph--4x3 {
  aspect-ratio: 4/3;
  height: auto;
}
.ph--3x2 {
  aspect-ratio: 3/2;
  height: auto;
}
.ph--square {
  aspect-ratio: 1/1;
}
.ph--mv {
  aspect-ratio: auto;
  height: 100%;
  align-items: flex-end;
  justify-content: flex-end;
}
.ph--mv .ph__label {
  margin: 0 28px 100px auto;
  max-width: 340px;
  text-align: right;
}
.ph--square {
  aspect-ratio: 1/1;
  height: auto;
}
.ph img {
  vertical-align: middle;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* セクション共通 */
.section {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
}

.sec-head {
  margin-bottom: 56px;
  text-align: center;
}
.sec-head__en {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--blue);
}
.sec-head__ja {
  margin-top: 6px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 34px;
  line-height: 1.45;
  letter-spacing: 0.04em;
}
.sec-head__lead {
  margin: 20px auto 0;
  max-width: 760px;
  color: var(--ink-l);
  font-size: 16px;
}

/* 装飾 */
.deco {
  position: absolute;
  pointer-events: none;
}
.deco--grid {
  inset: 0;
  background-image: linear-gradient(rgba(185, 190, 196, 0.22) 1px, transparent 1px), linear-gradient(90deg, rgba(185, 190, 196, 0.22) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(70% 55% at 50% 0%, #000, transparent);
  -webkit-mask-image: radial-gradient(70% 55% at 50% 0%, #000, transparent);
}
.deco--diag {
  inset: 0;
  /* 白背景でも見えるよう、グレー系の色(185, 190, 196)に変更 */
  background: repeating-linear-gradient(-45deg, rgba(185, 190, 196, 0.14) 0 14px, transparent 14px 28px);
}
.deco--stripe {
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--blue) 0 33.3%, var(--silver) 33.3% 66.6%, var(--blue-l) 66.6% 100%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(185, 190, 196, 0.4);
  transition: padding 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 16px 28px;
  transition: padding 0.35s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 8px 30px -22px rgba(35, 39, 44, 0.6);
}
.site-header.is-scrolled .site-header__inner {
  padding: 9px 28px;
}
.site-header.is-scrolled .site-logo__img {
  height: 28px;
}

.site-logo {
  display: flex;
  align-items: center;
  color: var(--ink);
}
.site-logo__img {
  width: auto;
  max-height: 34px;
  transition: height 0.35s var(--ease);
}

.gnav {
  margin-left: auto;
}
.gnav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.gnav__link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  padding: 8px 14px;
  color: var(--ink);
}
.gnav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--blue);
  transform: translateX(-50%);
  transition: width 0.35s var(--ease);
}
.gnav__link:hover {
  color: var(--blue-d);
}
.gnav__link:hover::after {
  width: calc(100% - 24px);
}
.gnav__en {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
}
.gnav__ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--ink);
  white-space: nowrap;
}
.gnav__foot {
  display: none;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-tel {
  text-align: right;
  line-height: 1.4;
}
.header-tel__label {
  font-size: 9px;
  color: var(--ink-l);
  letter-spacing: 0.02em;
}
.header-tel__num {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.header-tel__num:hover {
  color: var(--blue-d);
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 24px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  transition: background 0.35s var(--ease);
}
.btn-contact:hover {
  background: var(--blue-d);
  color: var(--white);
}

.nav-toggle {
  display: none;
}

.mv {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  color: var(--white);
}
.mv__slider {
  position: absolute;
  inset: 0;
}
.mv__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.6s var(--ease), transform 7s linear;
}
.mv__slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.mv__slide--zoom.is-active .ph {
  animation: kenburns 8s linear forwards;
}
.mv__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(28, 32, 37, 0.86) 0%, rgba(28, 32, 37, 0.62) 46%, rgba(28, 32, 37, 0.28) 100%);
  z-index: 1;
}
.mv__band {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, rgba(35, 39, 44, 0.55), transparent);
  z-index: 1;
}
.mv__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 28px;
  z-index: 5;
}
.mv__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--blue-l);
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.3s forwards;
}
.mv__eyebrow-line {
  width: 56px;
  height: 1px;
  background: var(--blue);
}
.mv__catch {
  margin-top: 22px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 5.2vw, 68px);
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.35);
}
.mv__catch-row {
  display: block;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) forwards;
}
.mv__catch-row:nth-child(1) {
  animation-delay: 0.5s;
}
.mv__catch-row:nth-child(2) {
  animation-delay: 0.72s;
}
.mv__creed {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 26px;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) 0.9s forwards;
}
.mv__creed-item {
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.22em;
  color: var(--blue-l);
}
.mv__creed-item + .mv__creed-item::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  width: 5px;
  height: 5px;
  background: var(--blue-l);
  border-radius: 50%;
  transform: translateY(-50%);
}
.mv__sub {
  margin-top: 22px;
  max-width: 660px;
  font-size: 16px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) 1.08s forwards;
}
.mv__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) 1.28s forwards;
}
.mv__dots {
  position: absolute;
  right: 32px;
  bottom: 44px;
  z-index: 3;
  display: flex;
  gap: 10px;
}
.mv__dot {
  width: 34px;
  height: 3px;
  background: rgba(255, 255, 255, 0.4);
  transition: background 0.3s var(--ease);
}
.mv__dot.is-active {
  background: var(--blue);
}
.mv__scroll {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
}
.mv__scroll-text {
  font-family: "Barlow", sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
}
.mv__scroll-line {
  position: relative;
  display: block;
  width: 1px;
  height: 74px;
  background: rgba(255, 255, 255, 0.35);
  overflow: hidden;
}
.mv__scroll-line::after {
  content: "";
  position: absolute;
  top: -74px;
  left: 0;
  width: 1px;
  height: 74px;
  background: var(--blue);
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    top: -74px;
  }
  60%, 100% {
    top: 74px;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes kenburns {
  from {
    transform: scale(1) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(-1.5%, -1%, 0);
  }
}
@keyframes loaderPulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
@keyframes loaderBar {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.section--strength {
  background: var(--white);
}
.section--strength .container {
  position: relative;
  z-index: 1;
}

.strength-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.strength__media {
  position: relative;
}
.strength__num {
  position: absolute;
  left: -6px;
  bottom: -18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  background: var(--blue);
  border: 4px solid var(--white);
  border-radius: 50%;
}
.strength__body {
  padding-top: 34px;
}
.strength__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.strength__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin: 16px 0;
  background: var(--blue-l);
}
.strength__text {
  font-size: 15px;
  color: var(--ink-l);
}

.creed {
  margin-top: 88px;
  padding: 56px 48px;
  text-align: center;
  background: linear-gradient(180deg, #f8f9fc, #eceff7);
  border: 1px solid rgba(43, 63, 143, 0.22);
}
.creed__label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.24em;
  color: var(--blue-d);
}
.creed__list {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin: 26px 0 24px;
}
.creed__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.creed__jp {
  font-family: "Yuji Boku", serif;
  font-weight: 400;
  font-size: 38px;
  letter-spacing: 0.1em;
  line-height: 1.3;
}
.creed__en {
  font-family: "Barlow", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--silver);
}
.creed__text {
  max-width: 640px;
  margin: 0 auto 26px;
  font-size: 15px;
  color: var(--ink-l);
}

.section--figures {
  padding: 76px 0;
  background: var(--ink);
  color: var(--white);
}

.figure-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.figure {
  text-align: center;
}
.figure + .figure {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.figure__num {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2em;
  color: var(--blue-l);
}
.figure__val {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.figure__unit {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 17px;
}
.figure__label {
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.75);
}

.section--service {
  background: var(--base);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service__link {
  display: block;
  height: 100%;
  background: var(--white);
  color: var(--ink);
  overflow: hidden;
  box-shadow: 0 18px 40px -34px rgba(35, 39, 44, 0.7);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.service__link:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 48px -30px rgba(35, 39, 44, 0.55);
  color: var(--ink);
}
.service__link:hover .service__media .ph {
  transform: scale(1.05);
}
.service__link:hover .service__more::after {
  width: 52px;
}
.service__media {
  overflow: hidden;
}
.service__media .ph {
  transition: transform 0.6s var(--ease);
}
.service__body {
  padding: 32px 34px 36px;
}
.service__en {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
}
.service__title {
  margin-top: 6px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.55;
}
.service__text {
  margin-top: 14px;
  font-size: 15px;
  color: var(--ink-l);
}
.service__more {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  margin-top: 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--blue-d);
}
.service__more::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--blue);
  transition: width 0.35s var(--ease);
}

.section--onestop {
  background: var(--white);
}

.onestop {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.onestop__bubble {
  position: relative;
  display: inline-block;
  padding: 14px 26px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
}
.onestop__bubble::after {
  content: "";
  position: absolute;
  left: 38px;
  bottom: -11px;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 12px solid var(--ink);
}
.onestop__voices {
  margin-top: 26px;
  display: grid;
  gap: 14px;
}
.onestop__voice {
  position: relative;
  padding: 18px 22px 18px 26px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-l);
  background: var(--base);
  border-left: 3px solid var(--blue-l);
}
.onestop__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 32px;
  line-height: 1.45;
  letter-spacing: 0.02em;
}
.onestop__title-sub {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--blue-d);
}
.onestop__text {
  margin-top: 20px;
  font-size: 16px;
  color: var(--ink-l);
}
.onestop__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 30px;
}
.onestop__tag {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid rgba(43, 63, 143, 0.35);
  border-radius: 999px;
  color: var(--blue-d);
}

.section--area {
  background: var(--base);
}

.area {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 64px;
  align-items: center;
}
.area .sec-head__ja,
.area .sec-head__en {
  text-align: left;
}
.area .sec-head__ja::after {
  left: 0;
  transform: none;
}
.area__main {
  margin-top: 24px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.02em;
}
.area__note {
  margin-top: 12px;
  font-size: 14px;
  color: var(--ink-l);
}
.area__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.area__item {
  padding: 10px 22px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  background: var(--blue);
  border-radius: 4px;
}
.area__item:last-child {
  background: var(--silver);
}

.section--contact {
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.contact__en {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--blue-l);
}
.contact__ja {
  position: relative;
  margin-top: 6px;
  padding-bottom: 22px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 34px;
  letter-spacing: 0.04em;
}
.contact__ja::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--blue);
  transform: translateX(-50%);
  transition: width 1s var(--ease) 0.35s;
}
.contact__ja.is-shown::after {
  width: 72px;
}
.contact__lead {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}
.contact__box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.contact__tel, .contact__mail {
  padding: 44px 40px;
}
.contact__mail {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.contact__mail-text {
  margin: 14px 0 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}
.contact__label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--blue-l);
}
.contact__num {
  display: inline-block;
  margin-top: 12px;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--white);
}
.contact__num:hover {
  color: var(--blue-l);
}
.contact__fax {
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.75);
}
.contact__time {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.site-footer {
  position: relative;
  padding: 64px 0 28px;
  background: #1a1d21;
  color: rgba(255, 255, 255, 0.8);
}
.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}
.site-footer__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
}
.site-footer__mark {
  width: auto;
  height: 44px;
}
.site-footer__addr {
  margin-top: 18px;
  font-size: 14px;
}
.site-footer__contact {
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  letter-spacing: 0.04em;
}
.site-footer__copy {
  margin-top: 48px;
  padding-top: 22px;
  font-family: "Barlow", sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fnav {
  display: grid;
  gap: 10px;
}
.fnav__link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
.fnav__link:hover {
  color: var(--blue-l);
}

.to-top {
  position: absolute;
  right: 32px;
  top: -26px;
  width: 52px;
  height: 52px;
  background: var(--blue);
  border-radius: 50%;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.to-top::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 11px;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
  transform: translate(-50%, -30%) rotate(-45deg);
}
.to-top:hover {
  background: var(--blue-d);
  transform: translateY(-3px);
}

/* SP固定バー */
.sp-bar {
  display: none;
}

/* --- 基本の出現 --- */
.reveal {
  opacity: 0;
  transition: opacity 1.05s var(--ease), transform 1.05s var(--ease), clip-path 1.15s var(--ease);
}
.reveal.is-shown {
  opacity: 1;
}
.reveal.is-shown.reveal--up, .reveal.is-shown.reveal--left, .reveal.is-shown.reveal--right, .reveal.is-shown.reveal--zoom, .reveal.is-shown.reveal--mask {
  transform: none;
}
.reveal.is-shown.reveal--mask .ph {
  clip-path: inset(0 0 0 0);
}
.reveal--up {
  transform: translateY(56px);
}
.reveal--left {
  transform: translateX(-60px);
}
.reveal--right {
  transform: translateX(60px);
}
.reveal--zoom {
  transform: scale(0.94);
}
.reveal--mask {
  transform: translateY(28px);
}
.reveal--mask .ph {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.15s var(--ease);
}
.reveal:not([class*=reveal--]) {
  transform: translateY(40px);
}
.reveal:not([class*=reveal--]).is-shown {
  transform: none;
}

/* 連続要素のディレイ */
.strength:nth-child(2), .service:nth-child(2), .figure:nth-child(2) {
  transition-delay: 0.14s;
}
.strength:nth-child(3), .service:nth-child(3), .figure:nth-child(3) {
  transition-delay: 0.28s;
}

.service:nth-child(4), .figure:nth-child(4) {
  transition-delay: 0.42s;
}

.onestop__body {
  transition-delay: 0.16s;
}

.area__media {
  transition-delay: 0.14s;
}

/* --- 見出しの文字送り出現 --- */
.js-split {
  overflow: hidden;
}
.js-split .char {
  display: inline-block;
  white-space: pre;
  opacity: 0;
  transform: translateY(1.1em) rotate(4deg);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.js-split .char:nth-child(1) {
  transition-delay: 0.035s;
}
.js-split .char:nth-child(2) {
  transition-delay: 0.07s;
}
.js-split .char:nth-child(3) {
  transition-delay: 0.105s;
}
.js-split .char:nth-child(4) {
  transition-delay: 0.14s;
}
.js-split .char:nth-child(5) {
  transition-delay: 0.175s;
}
.js-split .char:nth-child(6) {
  transition-delay: 0.21s;
}
.js-split .char:nth-child(7) {
  transition-delay: 0.245s;
}
.js-split .char:nth-child(8) {
  transition-delay: 0.28s;
}
.js-split .char:nth-child(9) {
  transition-delay: 0.315s;
}
.js-split .char:nth-child(10) {
  transition-delay: 0.35s;
}
.js-split .char:nth-child(11) {
  transition-delay: 0.385s;
}
.js-split .char:nth-child(12) {
  transition-delay: 0.42s;
}
.js-split .char:nth-child(13) {
  transition-delay: 0.455s;
}
.js-split .char:nth-child(14) {
  transition-delay: 0.49s;
}
.js-split .char:nth-child(15) {
  transition-delay: 0.525s;
}
.js-split .char:nth-child(16) {
  transition-delay: 0.56s;
}
.js-split .char:nth-child(17) {
  transition-delay: 0.595s;
}
.js-split .char:nth-child(18) {
  transition-delay: 0.63s;
}
.js-split .char:nth-child(19) {
  transition-delay: 0.665s;
}
.js-split .char:nth-child(20) {
  transition-delay: 0.7s;
}
.js-split .char:nth-child(21) {
  transition-delay: 0.735s;
}
.js-split .char:nth-child(22) {
  transition-delay: 0.77s;
}
.js-split .char:nth-child(23) {
  transition-delay: 0.805s;
}
.js-split .char:nth-child(24) {
  transition-delay: 0.84s;
}
.js-split .char:nth-child(25) {
  transition-delay: 0.875s;
}
.js-split .char:nth-child(26) {
  transition-delay: 0.91s;
}
.js-split .char:nth-child(27) {
  transition-delay: 0.945s;
}
.js-split .char:nth-child(28) {
  transition-delay: 0.98s;
}
.js-split .char:nth-child(29) {
  transition-delay: 1.015s;
}
.js-split .char:nth-child(30) {
  transition-delay: 1.05s;
}
.js-split .char:nth-child(31) {
  transition-delay: 1.085s;
}
.js-split .char:nth-child(32) {
  transition-delay: 1.12s;
}
.js-split .char:nth-child(33) {
  transition-delay: 1.155s;
}
.js-split .char:nth-child(34) {
  transition-delay: 1.19s;
}
.js-split .char:nth-child(35) {
  transition-delay: 1.225s;
}
.js-split .char:nth-child(36) {
  transition-delay: 1.26s;
}
.js-split .char:nth-child(37) {
  transition-delay: 1.295s;
}
.js-split .char:nth-child(38) {
  transition-delay: 1.33s;
}
.js-split .char:nth-child(39) {
  transition-delay: 1.365s;
}
.js-split .char:nth-child(40) {
  transition-delay: 1.4s;
}
.js-split.is-shown .char {
  opacity: 1;
  transform: none;
}

/* 見出し下のライン演出 */
.sec-head__ja {
  position: relative;
  padding-bottom: 22px;
}
.sec-head__ja::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-l), var(--blue));
  transform: translateX(-50%);
  transition: width 1s var(--ease) 0.35s;
}
.sec-head__ja.is-shown::after {
  width: 72px;
}

/* --- ローディング --- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #b3e3ee;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.loader__mark {
  width: auto;
  height: 76px;
  animation: loaderPulse 1.6s ease-in-out infinite;
}
.loader__bar {
  display: block;
  width: 180px;
  height: 2px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
}
.loader__bar-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--blue-l);
  transform: translateX(-100%);
  animation: loaderBar 1.4s var(--ease) infinite;
}

/* --- パララックス --- */
.js-parallax {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .js-split .char {
    opacity: 1;
    transform: none;
    clip-path: none;
  }
  .mv__slide--zoom.is-active .ph {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
}
@media screen and (max-width: 1180px) {
  .header-tel,
  .btn-contact {
    display: none;
  }
  .site-header__inner {
    gap: 18px;
    justify-content: space-between;
  }
  .gnav __ja {
    font-size: 13px;
  }
  .gnav __list {
    gap: 0;
  }
  .gnav __link {
    padding: 8px 11px;
  }
}
@media screen and (max-width: 1024px) {
  .section {
    padding: 88px 0;
  }
  .sec-head__ja {
    font-size: 29px;
  }
  .strength-list {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .strength {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 32px;
    align-items: center;
  }
  .strength__body {
    padding-top: 0;
  }
  .onestop {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .area {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .figure-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 24px;
  }
  .figure:nth-child(3) {
    border-left: 0;
  }
}
@media screen and (max-width: 820px) {
  body {
    font-size: 15px;
    padding-bottom: 64px;
  }
  .site-header__inner {
    padding: 12px 18px;
  }
  .site-header.is-scrolled .site-header__inner {
    padding: 8px 18px;
  }
  .site-logo__img {
    height: 26px;
  }
  .btn-contact {
    display: none;
  }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 52px;
    height: 52px;
    background: var(--ink);
  }
  .nav-toggle__bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: transform 0.35s var(--ease), opacity 0.3s var(--ease);
  }
  .nav-toggle__text {
    font-family: "Barlow", sans-serif;
    font-size: 8px;
    letter-spacing: 0.12em;
    color: var(--white);
  }
  .nav-toggle.is-open .nav-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle.is-open .nav-toggle__bar:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.is-open .nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .gnav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: -1;
    width: min(84vw, 340px);
    height: 100vh;
    margin: 0;
    padding: 104px 28px 40px;
    background: var(--white);
    box-shadow: -20px 0 50px -30px rgba(35, 39, 44, 0.6);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.45s var(--ease), opacity 0.35s var(--ease), visibility 0.35s;
    overflow-y: auto;
  }
  .gnav.is-open {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .gnav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .gnav__item {
    border-bottom: 1px solid rgba(185, 190, 196, 0.4);
  }
  .gnav__link {
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
    padding: 18px 4px;
  }
  .gnav__link::after {
    display: none;
  }
  .gnav__ja {
    font-size: 15px;
  }
  .gnav__foot {
    display: block;
    margin-top: 32px;
    text-align: center;
  }
  .gnav__tel {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--ink);
  }
  .gnav__note {
    font-size: 12px;
    color: var(--ink-l);
  }
  .mv {
    height: 88vh;
    min-height: 520px;
  }
  .mv__body {
    padding: 0 20px;
  }
  .mv__sub {
    font-size: 15px;
  }
  .mv__creed {
    gap: 20px;
    margin-top: 20px;
  }
  .mv__creed-item {
    font-size: 15px;
    letter-spacing: 0.16em;
  }
  .mv__creed-item + .mv__creed-item::before {
    left: -12px;
    width: 4px;
    height: 4px;
  }
  .mv__actions {
    gap: 10px;
  }
  .mv__dots {
    right: 20px;
    bottom: 38px;
  }
  .mv__scroll {
    display: none;
  }
  .btn {
    min-height: 52px;
    padding: 0 24px;
    font-size: 14px;
  }
  .strength {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .strength__num {
    left: auto;
    right: -4px;
    bottom: -16px;
    width: 54px;
    height: 54px;
    font-size: 19px;
  }
  .creed {
    margin-top: 64px;
    padding: 40px 24px;
  }
  .creed__list {
    gap: 24px;
  }
  .creed__jp {
    font-size: 30px;
    font-family: "Yuji Boku", serif;
  }
  .figure-list {
    grid-template-columns: 1fr 1fr;
  }
  .figure__val {
    font-size: 42px;
  }
  .service-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .service-list .service__body {
    padding: 26px 24px 30px;
  }
  .onestop__title {
    font-size: 25px;
  }
  .contact__box {
    grid-template-columns: 1fr;
  }
  .contact__tel, .contact__mail {
    padding: 34px 22px;
  }
  .contact__mail {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }
  .contact__num {
    font-size: 36px;
  }
  .contact__ja {
    font-size: 27px;
  }
  .area__main {
    font-size: 20px;
  }
  .to-top {
    right: 18px;
    width: 46px;
    height: 46px;
  }
  .site-footer {
    padding: 52px 0 24px;
  }
  .sp-bar {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 99;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .sp-bar__item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    color: var(--white);
  }
  .sp-bar__item + .sp-bar__item {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }
  .sp-bar__item--tel {
    background: var(--blue);
  }
}
@media screen and (max-width: 480px) {
  .figure-list {
    grid-template-columns: 1fr;
  }
  .figure + .figure {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 28px;
  }
  .mv__catch {
    font-size: 30px;
  }
  .creed__list {
    flex-wrap: wrap;
  }
}
.ph--3x4 {
  aspect-ratio: 3/4;
}
.ph--map {
  aspect-ratio: 16/10;
}
.ph--map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.ph--head {
  height: 100%;
  align-items: flex-end;
  justify-content: flex-end;
}
.ph--head .ph__label {
  margin: 0 20px 16px auto;
  max-width: 320px;
  text-align: right;
}

.gnav__item.is-current .gnav__link {
  color: var(--blue-d);
}
.gnav__item.is-current .gnav__link::after {
  width: calc(100% - 24px);
}

.page-head {
  position: relative;
  height: 340px;
  margin-top: 86px;
  overflow: hidden;
  color: var(--white);
}
.page-head__media {
  position: absolute;
  inset: 0;
}
.page-head__media .ph {
  animation: kenburns 14s linear forwards;
}
.page-head__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(28, 32, 37, 0.85) 0%, rgba(28, 32, 37, 0.6) 60%, rgba(28, 32, 37, 0.35) 100%);
}
.page-head__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}
.page-head__en {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--blue-l);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.25s forwards;
}
.page-head__ja {
  margin-top: 8px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.06em;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.42s forwards;
}
.page-head__ja::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 20px;
  background: var(--blue-l);
}

.breadcrumb {
  padding: 16px 0;
  background: var(--white);
  border-bottom: 1px solid rgba(185, 190, 196, 0.4);
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--ink-l);
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.breadcrumb__item + .breadcrumb__item::before {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--silver);
  border-right: 1px solid var(--silver);
  transform: rotate(45deg);
}
.breadcrumb__link {
  color: var(--ink-l);
}
.breadcrumb__link:hover {
  color: var(--blue-d);
}

.page-nav {
  background: var(--white);
  border-bottom: 1px solid rgba(185, 190, 196, 0.4);
}
.page-nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  padding: 18px 0;
}
.page-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.page-nav__link::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.3s var(--ease);
}
.page-nav__link:hover {
  color: var(--blue-d);
}
.page-nav__link:hover::after {
  transform: rotate(45deg) translateY(2px);
}

/* ご挨拶 */
.section--greeting {
  background: var(--white);
}
.section--greeting .container {
  position: relative;
  z-index: 1;
}

.greeting {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 56px;
  align-items: start;
}
.greeting__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 26px;
  line-height: 1.65;
  letter-spacing: 0.02em;
}
.greeting__title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 22px 0;
  background: var(--blue-l);
}
.greeting__text {
  margin-bottom: 22px;
  font-size: 16.5px;
  line-height: 2.05;
  color: var(--ink);
}
.greeting__sign {
  margin-top: 8px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.08em;
}
.greeting__sign-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--ink-l);
}

/* 会社概要テーブル */
.section--outline {
  background: var(--base);
}

.outline__list {
  border-top: 1px solid rgba(185, 190, 196, 0.55);
}
.outline__row {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 24px;
  padding: 24px 8px;
  border-bottom: 1px solid rgba(185, 190, 196, 0.55);
}
.outline__key {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--blue-d);
}
.outline__val {
  font-size: 16.5px;
  line-height: 1.95;
}
.outline__note {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--ink-l);
}
.outline__tel {
  color: var(--ink);
}
.outline__tel:hover {
  color: var(--blue-d);
}
.outline__link {
  margin-top: 14px;
}

/* 主要取引先 */
.section--clients {
  background: var(--white);
}
.section--clients .container {
  position: relative;
  z-index: 1;
}
.section--clients .deco--diag {
  opacity: 0.5;
}

.clients {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
}
.clients__block {
  padding: 40px;
  background: var(--base);
  border: 1px solid rgba(185, 190, 196, 0.5);
}
.clients__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.06em;
  color: var(--blue-d);
}
.clients__title::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin: 16px 0 22px;
  background: var(--blue);
}
.clients__list {
  display: grid;
  gap: 14px;
}
.clients__item {
  position: relative;
  padding-left: 24px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
}
.clients__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--blue);
  transform: rotate(45deg);
}
.clients__note {
  margin-top: 22px;
  font-size: 13px;
  color: var(--ink-l);
}

/* アクセス */
.section--access {
  background: var(--base);
}

.access {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 48px;
  align-items: center;
}
.access__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.08em;
  color: var(--blue-d);
}
.access__addr {
  margin-top: 14px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.8;
}
.access__list {
  margin: 24px 0 30px;
  border-top: 1px solid rgba(185, 190, 196, 0.55);
}
.access__row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(185, 190, 196, 0.55);
}
.access__key {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--ink-l);
}
.access__val {
  font-family: "Barlow", sans-serif;
  font-size: 17px;
  letter-spacing: 0.03em;
}
.access__tel {
  color: var(--ink);
}
.access__tel:hover {
  color: var(--blue-d);
}

@media screen and (max-width: 1024px) {
  .greeting {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .greeting__media {
    max-width: 360px;
  }
  .clients {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .access {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media screen and (max-width: 820px) {
  .page-head {
    height: 230px;
    margin-top: 76px;
  }
  .page-nav__list {
    gap: 6px 18px;
    padding: 14px 0;
  }
  .page-nav__link {
    font-size: 13px;
  }
  .greeting__title {
    font-size: 21px;
  }
  .greeting__media {
    max-width: 100%;
  }
  .outline__row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 4px;
  }
  .clients__block {
    padding: 26px 22px;
  }
  .access__list {
    margin: 20px 0 26px;
  }
}
/* 導入バンド */
.lead-band {
  position: relative;
  overflow: hidden;
  background: var(--blue-d);
}
.lead-band__strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 300px;
}
.lead-band__cell {
  position: relative;
  overflow: hidden;
}
.lead-band__cell .ph {
  height: 100%;
  aspect-ratio: auto !important;
}
.lead-band__cell .ph img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lead-band__cell .ph__label {
  font-size: 10px;
}
.lead-band__veil {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(180deg, rgba(30, 44, 104, 0.72), rgba(43, 63, 143, 0.82));
}
.lead-band__body {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 300px;
  padding: 0 24px;
}
.lead-band__copy {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: clamp(19px, 2.6vw, 32px);
  line-height: 1.85;
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--white);
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.35);
}
.lead-band__curve {
  position: relative;
  height: 70px;
  margin-top: -1px;
  background: var(--white);
  border-radius: 100% 100% 0 0/70px 70px 0 0;
}

/* 主要事業 */
.section--main-service {
  background: var(--white);
}
.section--main-service .container {
  position: relative;
  z-index: 1;
}

.mservice-list {
  display: grid;
  gap: 64px;
}

.mservice {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}
.mservice:nth-child(even) .mservice__media {
  order: 2;
}
.mservice__num {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2em;
  color: var(--blue);
}
.mservice__title {
  margin-top: 8px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 27px;
  line-height: 1.55;
  letter-spacing: 0.02em;
}
.mservice__title::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin: 22px 0;
  background: var(--blue-l);
}

.dot-list {
  display: grid;
  gap: 12px;
}
.dot-list__item {
  position: relative;
  padding-left: 26px;
  font-size: 16px;
  line-height: 1.9;
}
.dot-list__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  background: var(--blue);
  transform: rotate(45deg);
}

/* 総合メンテナンス */
.section--total {
  background: var(--base);
}

.total-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--white);
  border: 1px solid rgba(185, 190, 196, 0.5);
}

.total {
  padding: 40px 34px;
}
.total + .total {
  border-left: 1px solid rgba(185, 190, 196, 0.5);
}
.total__en {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 26px;
  letter-spacing: 0.02em;
  color: var(--blue-d);
  line-height: 1.2;
}
.total__ja {
  margin-top: 4px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.1em;
  color: var(--blue);
}
.total__items {
  display: grid;
  gap: 11px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 2px solid var(--blue-l);
}
.total__items--2col {
  grid-template-columns: 1fr 1fr;
  gap: 11px 20px;
}
.total__item {
  position: relative;
  padding-left: 16px;
  font-size: 15px;
  line-height: 1.75;
}
.total__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 6px;
  height: 1px;
  background: var(--blue);
}

/* 巡回清掃 */
.section--patrol {
  background: var(--white);
}

.patrol {
  padding: 44px 40px 48px;
  background: #eef3fb;
}
.patrol__head {
  display: inline-block;
  padding: 14px 30px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.06em;
  color: var(--white);
  background: var(--blue-d);
}
.patrol__cols {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 44px;
  align-items: center;
  margin-top: 32px;
}
.patrol__answer {
  position: relative;
  padding: 38px 36px;
  background: var(--white);
  border-radius: 10px;
}
.patrol__badge {
  position: absolute;
  left: -26px;
  top: -26px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: var(--blue-d);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--white);
}
.patrol__title {
  padding-left: 96px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 23px;
  line-height: 1.6;
  color: var(--blue-d);
}
.patrol__foot {
  margin-top: 54px;
  text-align: center;
}
.patrol__foot-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 21px;
  line-height: 1.7;
  color: var(--blue-d);
}
.patrol__foot-title::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  margin: 20px auto;
  background: linear-gradient(90deg, var(--blue-d), var(--blue-l));
}
.patrol__foot-text {
  max-width: 760px;
  margin: 0 auto;
  font-size: 15.5px;
  line-height: 2;
  color: var(--ink-l);
}

.patrol-section {
  max-width: 1140px;
  margin: 0 auto;
  padding: 64px 24px 76px;
  box-sizing: border-box;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}
.patrol-section__title {
  margin: 0;
  text-align: center;
  font-size: 27px;
  font-weight: 700;
  color: #0f2d5c;
  line-height: 1.6;
}
@media screen and (max-width: 900px) {
  .patrol-section__title {
    font-size: 21px;
  }
}
.patrol-section__title-mark {
  background: #f5871f;
  color: #0f2d5c;
  padding: 2px 6px;
}
.patrol-section__divider {
  width: 56px;
  height: 3px;
  background: #1f5fa0;
  margin: 22px auto 30px;
}
.patrol-section__lead {
  margin: 0 auto;
  max-width: 760px;
  text-align: center;
  font-size: 16px;
  line-height: 2.1;
  color: #5b6675;
  text-wrap: pretty;
}
@media screen and (max-width: 900px) {
  .patrol-section__lead {
    font-size: 15px;
    line-height: 1.9;
    text-align: left;
  }
}
.patrol-section__subtitle {
  margin: 54px 0 6px;
  text-align: center;
  font-size: 21px;
  font-weight: 700;
  color: #0f2d5c;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 900px) {
  .patrol-section__subtitle {
    font-size: 18px;
    margin-top: 40px;
  }
}
.patrol-section__note {
  margin: 0 0 34px;
  text-align: center;
  font-size: 14px;
  color: #7a8593;
}

.patrol-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
@media screen and (max-width: 900px) {
  .patrol-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 560px) {
  .patrol-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.patrol-grid__item {
  margin: 0;
}
.patrol-grid__thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #dfe4ea;
}
.patrol-grid__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.patrol-grid__caption {
  padding-top: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #33445c;
}
.patrol-grid__message {
  aspect-ratio: 4/3;
  background: #0f2d5c;
  color: #fff;
  padding: 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
@media screen and (max-width: 900px) {
  .patrol-grid__message {
    aspect-ratio: auto;
    grid-column: 1/-1;
    padding: 22px;
  }
}
.patrol-grid__message-title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
}
.patrol-grid__message-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  color: #c3d2e6;
}

.illust {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 18px;
}
.illust__img {
  width: auto;
  height: 200px;
}
.illust--agent .illust__img {
  height: 230px;
}
.illust__caption {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--blue-d);
}

.check-list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}
.check-list__item {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--blue-d);
  font-weight: 500;
}
.check-list__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 14px;
  background: var(--blue);
  clip-path: polygon(50% 0, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0 50%, 40% 40%);
}

/* ============================================
   変数定義（ブレイクポイント・フォントなど）
   ============================================ */
/* ============================================
   エアコンクリーニング セクション SCSS改訂分
   ============================================ */
/* --- 1. 症状チェック --- */
.aircon-symptom {
  padding: 38px 40px 34px;
  background: #eef3fb;
}
@media screen and (max-width: 1024px) {
  .aircon-symptom {
    padding: 32px 28px 30px;
  }
}
@media screen and (max-width: 680px) {
  .aircon-symptom {
    padding: 26px 18px 24px;
  }
}
.aircon-symptom__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 26px;
}
@media screen and (max-width: 680px) {
  .aircon-symptom__head {
    gap: 12px;
    margin-bottom: 20px;
  }
}
.aircon-symptom__icon {
  width: 62px;
  height: auto;
  display: block;
}
@media screen and (max-width: 680px) {
  .aircon-symptom__icon {
    width: 46px;
  }
}
.aircon-symptom__title {
  margin: 0;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 21px;
  letter-spacing: 0.04em;
  color: var(--blue-d);
}
@media screen and (max-width: 900px) {
  .aircon-symptom__title {
    font-size: 19px;
  }
}
@media screen and (max-width: 680px) {
  .aircon-symptom__title {
    font-size: 17px;
    text-align: left;
  }
}
.aircon-symptom__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
@media screen and (max-width: 680px) {
  .aircon-symptom__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}
.aircon-symptom__item {
  background: var(--white);
  padding: 14px 14px 18px;
}
@media screen and (max-width: 680px) {
  .aircon-symptom__item {
    padding: 10px 10px 14px;
  }
}
.aircon-symptom__thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.aircon-symptom__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.aircon-symptom__label {
  margin: 10px 0 0;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--blue-d);
}
@media screen and (max-width: 680px) {
  .aircon-symptom__label {
    font-size: 14px;
    line-height: 1.6;
  }
}
.aircon-symptom__lead {
  margin: 26px 0 0;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.8;
  color: var(--blue);
}
@media screen and (max-width: 900px) {
  .aircon-symptom__lead {
    font-size: 17px;
  }
}
@media screen and (max-width: 680px) {
  .aircon-symptom__lead {
    font-size: 16px;
    margin-top: 20px;
  }
}

/* --- 2. Before / After --- */
.aircon-ba {
  margin-top: 44px;
  padding: 38px 40px 40px;
  background: var(--white);
}
@media screen and (max-width: 1024px) {
  .aircon-ba {
    padding: 32px 28px 34px;
  }
}
@media screen and (max-width: 680px) {
  .aircon-ba {
    margin-top: 32px;
    padding: 26px 18px 28px;
  }
}
.aircon-ba__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 28px;
}
@media screen and (max-width: 680px) {
  .aircon-ba__head {
    gap: 14px;
    margin-bottom: 22px;
  }
}
.aircon-ba__head-photo {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  overflow: hidden;
  border-radius: 50%;
}
@media screen and (max-width: 680px) {
  .aircon-ba__head-photo {
    width: 56px;
    height: 56px;
  }
}
.aircon-ba__head-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.aircon-ba__title {
  margin: 0;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 21px;
  letter-spacing: 0.04em;
  color: var(--blue-d);
}
@media screen and (max-width: 900px) {
  .aircon-ba__title {
    font-size: 19px;
  }
}
@media screen and (max-width: 680px) {
  .aircon-ba__title {
    font-size: 17px;
    text-align: left;
  }
}
.aircon-ba__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}
@media screen and (max-width: 900px) {
  .aircon-ba__list {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
  }
}
.aircon-ba__pair {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
}
.aircon-ba__shot {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #e5e7ea;
}
.aircon-ba__shot img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.aircon-ba__tag {
  margin: 8px 0 0;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--blue-l);
}
.aircon-ba__tag--after {
  color: var(--blue);
}
.aircon-ba__arrow {
  width: 0;
  height: 0;
  border-left: 11px solid var(--blue);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
.aircon-ba__caption {
  margin: 14px 0 0;
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.9;
  color: var(--blue-d);
}

/* --- 3. 室外機クリーニング（オプション） --- */
.aircon-option {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  background: var(--white);
}
@media screen and (max-width: 900px) {
  .aircon-option {
    grid-template-columns: minmax(0, 1fr);
  }
}
.aircon-option__visual {
  min-height: 250px;
  overflow: hidden;
  background: #eef3fb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .aircon-option__visual {
    min-height: 200px;
  }
}
.aircon-option__visual img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.aircon-option__body {
  padding: 34px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
@media screen and (max-width: 900px) {
  .aircon-option__body {
    padding: 26px 24px 30px;
  }
}
.aircon-option__badge {
  margin: 0;
  align-self: flex-start;
  padding: 5px 14px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--blue);
}
.aircon-option__title {
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 22px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--blue-d);
}
@media screen and (max-width: 680px) {
  .aircon-option__title {
    font-size: 19px;
  }
}
.aircon-option__text {
  margin: 0;
  font-size: 15.5px;
  line-height: 2;
  color: var(--ink);
}

/* --- 4. 季節のタイミング（アイコン追加分） --- */
.timing__head {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 34px;
  border-right: 2px solid var(--blue-l);
}
@media screen and (max-width: 900px) {
  .timing__head {
    padding-right: 0;
    padding-bottom: 18px;
    border-right: 0;
    border-bottom: 2px solid var(--blue-l);
  }
}
.timing__head .timing__title {
  padding-right: 0;
  border-right: 0;
}
.timing__icon {
  width: 58px;
  height: auto;
  display: block;
}

/* 吹き出し */
.bubble {
  position: relative;
  padding: 26px 28px;
  background: var(--white);
  border-radius: 26px;
}
.bubble::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 16px solid var(--white);
  transform: translateX(-50%);
}
.bubble__text {
  font-size: 15px;
  line-height: 1.9;
}
.bubble--left::after, .bubble--right::after {
  left: auto;
  right: -13px;
  bottom: auto;
  top: 40%;
  border: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 16px solid var(--white);
  transform: none;
}
.bubble--right::after {
  right: auto;
  left: -13px;
  border-left: 0;
  border-right: 16px solid var(--white);
}

.ba {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  align-items: center;
  margin-top: 48px;
}
.ba__label {
  margin-bottom: 12px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--blue-d);
}
.ba__arrow {
  position: relative;
  height: 20px;
}
.ba__arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid var(--blue);
  transform: translate(-50%, -50%);
}
.ba__note {
  margin-top: 22px;
  font-size: 14px;
  line-height: 1.95;
  text-align: center;
  color: var(--ink-l);
}

/* エアコン */
.section--aircon {
  background: var(--base);
}
.section--aircon .container {
  position: relative;
  z-index: 1;
}

.aircon__head {
  padding: 18px 24px;
  margin-bottom: 40px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.06em;
  text-align: center;
  color: var(--white);
  background: var(--blue-d);
}

.point-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.point {
  padding: 26px 26px 30px;
  background: var(--white);
  border-radius: 10px;
}
.point__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 22px 0 16px;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--blue-d);
}
.point__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
}
.point__text {
  font-size: 15.5px;
  line-height: 1.95;
  color: var(--blue-d);
  font-weight: 500;
}

.timing {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 34px;
  align-items: center;
  margin-top: 44px;
  padding: 34px 38px;
  background: var(--white);
}
.timing__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 19px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--blue-d);
  padding-right: 34px;
  border-right: 2px solid var(--blue-l);
}
.timing__text {
  font-size: 15.5px;
  line-height: 2;
}

/* 緊急サービス */
.section--urgent {
  background: var(--white);
}

.urgent {
  padding: 44px 40px 48px;
  background: #eef3fb;
}
.urgent__head {
  padding: 18px 30px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 22px;
  line-height: 1.6;
  letter-spacing: 0.06em;
  text-align: center;
  color: var(--white);
  background: var(--blue-d);
}
.urgent__cols {
  display: grid;
  grid-template-columns: 0.85fr 1.3fr 0.85fr;
  gap: 32px;
  align-items: center;
  margin-top: 34px;
}
.urgent__list {
  display: grid;
  gap: 0;
  background: var(--white);
  border-radius: 8px;
  padding: 10px 26px;
}
.urgent__item {
  padding: 16px 0 16px 30px;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--blue-d);
}
.urgent__item + .urgent__item {
  border-top: 1px solid rgba(185, 190, 196, 0.5);
}
.urgent__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.35em;
  width: 10px;
  height: 10px;
  background: var(--blue);
  transform: rotate(45deg);
}
.urgent__side {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.urgent__side .illust {
  margin-top: 22px;
}
.urgent__side .illust__img {
  height: 180px;
}
.urgent__foot {
  margin-top: 48px;
  text-align: center;
}
.urgent__foot-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 21px;
  line-height: 1.75;
  color: var(--blue-d);
}
.urgent__foot-title::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  margin: 20px auto;
  background: linear-gradient(90deg, var(--blue-d), var(--blue-l));
}
.urgent__foot-text {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 15.5px;
  line-height: 2;
  color: var(--ink-l);
}

/* その他サービス */
.section--other {
  background: var(--base);
}

.other-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.other {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 18px 40px -34px rgba(35, 39, 44, 0.7);
}
.other__title {
  padding: 16px 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.06em;
  text-align: center;
  color: var(--white);
  background: var(--blue-d);
}
.other__text {
  padding: 20px 22px 26px;
  font-size: 14.5px;
  line-height: 1.95;
}
.other__key {
  font-weight: 700;
  color: var(--blue-d);
}

@media screen and (max-width: 1024px) {
  .mservice {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .mservice:nth-child(even) .mservice__media {
    order: 0;
  }
  .total-list {
    grid-template-columns: 1fr;
  }
  .total + .total {
    border-left: 0;
    border-top: 1px solid rgba(185, 190, 196, 0.5);
  }
  .total__items--2col {
    grid-template-columns: 1fr 1fr;
  }
  .patrol__cols {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .patrol__badge {
    position: static;
    margin: 0 auto 18px;
  }
  .patrol__title {
    padding-left: 0;
    text-align: center;
  }
  .illust__img,
  .illust--agent .illust__img,
  .urgent__side .illust__img {
    height: 170px;
  }
  .point-list {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .urgent__cols {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .bubble--left::after,
  .bubble--right::after {
    left: 50%;
    right: auto;
    top: auto;
    bottom: -14px;
    border: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 16px solid var(--white);
    transform: translateX(-50%);
  }
  .other-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .timing {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .timing__title {
    padding-right: 0;
    padding-bottom: 18px;
    border-right: 0;
    border-bottom: 2px solid var(--blue-l);
  }
}
@media screen and (max-width: 820px) {
  .lead-band__strip, .lead-band__veil, .lead-band__body {
    height: 220px;
  }
  .lead-band__strip {
    grid-template-columns: repeat(3, 1fr);
  }
  .lead-band__cell:nth-child(n+4) {
    display: none;
  }
  .lead-band__curve {
    height: 40px;
    border-radius: 100% 100% 0 0/40px 40px 0 0;
  }
  .mservice__title {
    font-size: 22px;
  }
  .patrol,
  .urgent {
    padding: 28px 20px 34px;
  }
  .patrol__head,
  .urgent__head {
    font-size: 16px;
    padding: 12px 20px;
  }
  .patrol__foot-title,
  .urgent__foot-title {
    font-size: 18px;
  }
  .patrol__answer {
    padding: 28px 22px;
  }
  .patrol__title {
    font-size: 19px;
  }
  .illust__img,
  .illust--agent .illust__img,
  .urgent__side .illust__img {
    height: 140px;
  }
  .urgent__head {
    font-size: 18px;
    padding: 14px 18px;
  }
  .urgent__item {
    font-size: 15px;
  }
  .aircon__head {
    font-size: 17px;
    padding: 14px 18px;
  }
  .other-list {
    grid-template-columns: 1fr;
  }
  .ba {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ba__arrow {
    height: 28px;
  }
  .ba__arrow::after {
    border-top: 16px solid var(--blue);
    border-bottom: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
  }
}
/* 施工実績セクション */
.section--works {
  background: var(--white);
}
.section--works .container {
  position: relative;
  z-index: 1;
}

.works-list {
  display: grid;
  gap: 0;
}

.works {
  display: grid;
  grid-template-columns: 620px 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid rgba(185, 190, 196, 0.6);
}
.works:first-child {
  padding-top: 8px;
}
.works__body {
  padding: 0;
}
.works__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.works__date {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--ink-l);
}
.works__tag {
  padding: 4px 14px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--blue-d);
  background: var(--white);
  border: 1px solid rgba(43, 63, 143, 0.35);
  border-radius: 999px;
}
.works__title {
  margin-top: 14px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 23px;
  line-height: 1.6;
  color: var(--blue-d);
}
.works__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin: 18px 0;
  background: var(--blue-l);
}
.works__text {
  font-size: 16px;
  line-height: 2;
}

/* ビフォー・アフター比較スライダー（ドラッグ／ホバーで境界を移動） */
.ba2 {
  width: 100%;
  padding: 12px;
  background: var(--white);
  border: 1px solid rgba(185, 190, 196, 0.5);
}
.ba2__frame {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  cursor: ew-resize;
  touch-action: pan-y;
}
.ba2__pane {
  position: absolute;
  inset: 0;
}
.ba2__pane .ph {
  height: 100%;
  aspect-ratio: auto;
  align-items: flex-end;
}
.ba2__pane--before {
  clip-path: inset(0 calc(100% - var(--ba-pos, 50%)) 0 0);
  transition: clip-path 0.12s linear;
}
.ba2__pane--before .ph {
  background-image: url("../images/dummy-portrait.png");
}
.ba2__pane--before .ph__label {
  margin: 0 auto 14px 14px;
}
.ba2__pane--after .ph__label {
  margin: 0 14px 14px auto;
}
.ba2__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-pos, 50%);
  z-index: 3;
  width: 4px;
  margin-left: -2px;
  background: var(--blue);
  transition: left 0.12s linear;
}
.ba2__grip {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 38px;
  height: 38px;
  background: var(--blue);
  border: 3px solid var(--white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 14px -6px rgba(0, 0, 0, 0.5);
}
.ba2__grip::before, .ba2__grip::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
}
.ba2__grip::before {
  left: 9px;
  transform: translateY(-50%) rotate(-135deg);
}
.ba2__grip::after {
  right: 9px;
  transform: translateY(-50%) rotate(45deg);
}
.ba2.is-dragging .ba2__pane--before,
.ba2.is-dragging .ba2__handle {
  transition: none;
}
.ba2__controls {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 2px 0;
}
.ba2__btn {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  color: var(--blue-d);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.ba2__btn:hover {
  border-bottom-color: var(--blue);
}
.ba2__btn.is-active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

/* ページネーション */
.pager {
  margin-top: 56px;
}
.pager__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.pager__current, .pager__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
}
.pager__current {
  color: var(--white);
  background: var(--blue-d);
}
.pager__link {
  color: var(--ink);
  background: var(--base);
  border: 1px solid rgba(185, 190, 196, 0.6);
}
.pager__link:hover {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}
.pager__link--next {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 14px;
}

/* お客様の声セクション */
.section--voice {
  background: var(--base);
}

.voice-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.voice {
  position: relative;
  padding: 38px 32px 34px;
  background: var(--white);
  box-shadow: 0 18px 40px -34px rgba(35, 39, 44, 0.7);
}
.voice__mark {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 0.6;
  color: var(--blue-l);
}
.voice__text {
  margin-top: 18px;
  font-size: 15.5px;
  line-height: 2;
}
.voice__who {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(185, 190, 196, 0.55);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--blue-d);
}
.voice__where {
  display: block;
  margin-top: 4px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-l);
}

@media screen and (max-width: 1024px) {
  .works {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 0;
  }
  .voice-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media screen and (max-width: 820px) {
  .ba2 {
    padding: 8px;
    max-width: 100%;
  }
  .ba2__grip {
    width: 32px;
    height: 32px;
  }
  .ba2__btn {
    font-size: 12.5px;
  }
  .works__title {
    font-size: 19px;
  }
  .works__title::after {
    margin: 14px 0;
  }
  .voice {
    padding: 28px 22px 26px;
  }
}
/* 電話案内リード */
.section--tel-lead {
  padding: 64px 0 0;
  background: var(--white);
}

.tel-lead {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 34px 40px;
  background: var(--base);
  border-left: 4px solid var(--blue);
}
.tel-lead__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.04em;
}
.tel-lead__note {
  margin-top: 8px;
  font-size: 14.5px;
  color: var(--ink-l);
}
.tel-lead__num {
  display: block;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--blue-d);
}
.tel-lead__num:hover {
  color: var(--blue);
}
.tel-lead__sub {
  margin-top: 6px;
  font-size: 13.5px;
  color: var(--ink-l);
  text-align: right;
}

/* お問い合わせフォーム */
.section--form {
  background: var(--white);
}
.section--form .container {
  position: relative;
  z-index: 1;
}

/* ラジオボタン */
.radio-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.radio__input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.radio__input:checked + .radio__label {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}
.radio__input:checked + .radio__label::before {
  border-color: var(--white);
  background: var(--white);
}
.radio__input:focus-visible + .radio__label {
  outline: 2px solid var(--blue-l);
  outline-offset: 2px;
}
.radio__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  cursor: pointer;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  background: var(--base);
  border: 1px solid rgba(185, 190, 196, 0.8);
  border-radius: 999px;
  transition: all 0.3s var(--ease);
}
.radio__label::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid var(--silver);
  border-radius: 50%;
  transition: all 0.3s var(--ease);
}
.radio__label:hover {
  border-color: var(--blue-l);
}

/* チェックボックス */
.check__input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.check__input:checked + .check__label::before {
  background: var(--blue);
  border-color: var(--blue);
}
.check__input:checked + .check__label::after {
  opacity: 1;
}
.check__label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 15.5px;
}
.check__label::before {
  content: "";
  width: 22px;
  height: 22px;
  background: var(--white);
  border: 2px solid var(--silver);
  border-radius: 3px;
  transition: all 0.3s var(--ease);
}
.check__label::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 6px;
  margin-left: 5px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg) translateY(-2px);
  opacity: 0;
  transition: opacity 0.2s var(--ease);
}

/* ご利用の流れ */
.section--flow {
  background: var(--base);
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  list-style: none;
}

.flow {
  position: relative;
  padding: 34px 28px 32px;
  background: var(--white);
}
.flow::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 50%;
  z-index: 2;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 12px solid var(--blue-l);
  transform: translateY(-50%);
}
.flow:last-child::after {
  display: none;
}
.flow__num {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.18em;
  color: var(--blue);
}
.flow__title {
  margin-top: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
}
.flow__title::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  margin: 14px 0;
  background: var(--blue-l);
}
.flow__text {
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--ink-l);
}

@media screen and (max-width: 1024px) {
  .flow-list {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .flow::after {
    display: none;
  }
  .tel-lead {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .tel-lead__sub {
    text-align: left;
  }
}
@media screen and (max-width: 820px) {
  .section--tel-lead {
    padding: 44px 0 0;
  }
  .tel-lead {
    padding: 24px 22px;
  }
  .tel-lead__title {
    font-size: 17px;
  }
  .tel-lead__num {
    font-size: 32px;
  }
  .form__row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 2px;
  }
  .form__label {
    padding-top: 0;
    font-size: 15px;
  }
  .form__privacy {
    padding: 22px 18px;
  }
  .flow-list {
    grid-template-columns: 1fr;
  }
  .flow {
    padding: 26px 22px;
  }
}
/*新メールフォーム*/
.form {
  margin: 10px 0 10px;
}
.form dt span {
  color: #fff;
  background: #FF4F4F;
  padding: 0 5px 0;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 2px;
  position: relative;
  top: -2px;
}
.form dt strong {
  color: #fff;
  background: #999;
  padding: 0 5px 0;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 2px;
  position: relative;
  top: -2px;
}
.form dt .optional::before {
  content: "任意";
  color: #fff;
  background: #999;
}
.form dl {
  margin: 10px 0;
  font-size: 16px;
}
.form dt {
  float: left;
  width: 280px;
  padding-top: 20px;
}
.form dd {
  padding-left: 280px;
  padding-bottom: 20px;
  padding-top: 23px;
  line-height: 1.5;
  border-bottom: 1px solid #eee;
}
.form dd p {
  font-size: 14px;
  padding-top: 5px;
  color: #888;
}
.form dd:last-child {
  border-bottom: 0px;
  margin-bottom: 0px;
}

.dropdown {
  border-radius: 2px;
  border: 1px solid #ddd;
}

.textarea, .textarea2 {
  width: 95%;
  border-radius: 2px;
  border: 1px solid #ddd;
  padding: 5px;
}

.form-button {
  padding: 5px;
  border-radius: 5px;
  text-align: center;
  margin: 10px 0;
}

#mailform button {
  font-family: "Noto Sans JP", sans-serif;
  cursor: pointer;
  display: block;
  margin: 0 auto 5px;
  padding: 10px 0 10px;
  color: #fff;
  text-align: center;
  width: 250px;
  border-radius: 5px;
  background: #2b3f8f;
  font-size: 16px;
  font-weight: bold;
  border: 2px solid #2b3f8f;
}
#mailform button:before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f0e0";
  margin-right: 6px;
}
#mailform button:hover {
  background: #fff;
  color: #2b3f8f;
}
#mailform button * {
  transition: 0.2s;
}

.form-button * {
  transition: 0.2s;
}

/*RadioとText*/
label {
  display: block;
}
label.radio_text {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  padding-left: 20px;
  display: inline-block;
}
label.radio_text:before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-radius: 50%;
  left: 0px;
  top: 2px;
  content: "";
  z-index: 3;
}
label.radio_text:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 2px;
  top: 4px;
  background-color: #2b3f8f;
  z-index: 1;
}
label.radio_text input[type=radio] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 15px;
  height: 15px;
  left: -15px;
  top: 2px;
  margin: 0px;
  box-shadow: 15px -1px #fff;
  border-radius: 50%;
}
label.radio_text input[type=radio]:checked {
  box-shadow: none;
}
label.radio_text input[type=radio]:focus {
  opacity: 0.2;
  box-shadow: 15px -1px #FFF;
}
label.checkbox_text {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin-right: 20px;
  overflow: hidden;
  display: inline-block;
  box-sizing: border-box;
}
label.checkbox_text:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 0;
  border: 1px solid #ccc;
  z-index: 3;
}
label.checkbox_text:after {
  content: "";
  position: absolute;
  top: 40%;
  left: 5px;
  display: block;
  margin-top: -9px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #2b3f8f;
  border-bottom: 3px solid #2b3f8f;
  transform: rotate(45deg);
  z-index: 1;
}
label.checkbox_text input[type=checkbox] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  box-shadow: 41px 0px #FFF;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}
label.checkbox_text input[type=checkbox]:checked {
  box-shadow: none;
}
label.checkbox_text input[type=checkbox]:checked:focus {
  box-shadow: 40px 0px #666;
  opacity: 0.1;
}
label.checkbox_text input[type=checkbox]:focus {
  box-shadow: 41px 0px #EEE;
}

/*CheckBoxとText */
.fm-text {
  padding: 10px;
  font-size: 11px;
  margin: 10px 0;
}

@media all and (max-width: 890px) {
  .form dl {
    margin: 10px 0;
  }
  .form dt {
    float: none;
    width: 100%;
    line-height: 20px;
    padding-top: 10px;
  }
  .form dd {
    width: 100%;
    padding-left: 0;
    padding-bottom: 10px;
    padding-top: 10px;
    line-height: 20px;
    border-bottom: 1px solid #eee;
  }
  .form dd:last-child {
    border-bottom: 0px;
    margin-bottom: 0px;
  }
}
@media (max-width: 1024px) {
  .form-contents :not(.pattern-exclusion) button {
    width: 100% !important;
  }
}
/* /新メールフォーム */
.blog-box {
  margin-bottom: 50px;
}
.blog-box img {
  max-width: 100%;
  height: auto;
}

.page_next {
  float: right;
}

.page_prev {
  float: left;
}

.mtitle_box {
  background: rgba(23, 125, 23, 0.1);
  border-radius: 10px;
  color: #343338;
  font-size: 2rem;
  position: relative;
  padding: 10px 10px;
  margin-bottom: 20px;
  font-weight: 700;
}
.mtitle_box span {
  font-weight: normal;
  font-size: 14px;
  padding-left: 10px;
}

@media all and (max-width: 639px) {
  .mtitle_box {
    font-size: 1.8rem;
  }
}
.newsl2 dt {
  font-size: 120%;
  padding-top: 10px;
  line-height: 1.3;
  color: #2b3f8f;
  font-weight: bold;
}
.newsl2 dd {
  padding-bottom: 5px;
  padding-top: 10px;
  margin-bottom: 15px;
  line-height: 1.6;
  border-bottom: dotted 1px #b6ae83;
}
.newsl2 dd b {
  color: #594C39;
}/*# sourceMappingURL=basis.css.map */