@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: #5c4233;
  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(../img/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;
  }
}
/* =========================================================
   株式会社二代目 コーポレートサイト SCSS
   ========================================================= */
/* -------- reset -------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  border: 0;
  vertical-align: bottom;
  max-width: 100%;
}

ul, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  color: #2e5b45;
  transition: color 0.2s, opacity 0.2s;
}
a:hover {
  color: #e8730c;
}

/* -------- base -------- */
html {
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.9;
  color: #22302a;
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 820px) {
  body {
    font-size: 15px;
  }
}

.inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media screen and (max-width: 600px) {
  .inner {
    padding: 0 18px;
  }
}
.inner-narrow {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}
@media screen and (max-width: 600px) {
  .inner-narrow {
    padding: 0 18px;
  }
}

/* -------- 共通パーツ -------- */
.sec {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}
.sec > .inner,
.sec > .inner-narrow {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1080px) {
  .sec {
    padding: 70px 0;
  }
}
@media screen and (max-width: 600px) {
  .sec {
    padding: 56px 0;
  }
}
.sec-gray {
  background: #f2f4f2;
}
.sec-gray::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(to right, rgba(46, 91, 69, 0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(46, 91, 69, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
}
.sec-gray::after {
  content: "";
  position: absolute;
  top: 26px;
  right: -40px;
  width: 260px;
  height: 260px;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(46, 91, 69, 0.16) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.8;
}
.sec-head {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 46px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .sec-head {
    margin-bottom: 32px;
  }
}
.sec-head .en {
  position: relative;
  display: inline-block;
  padding: 0 54px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: #8a9b90;
  margin-bottom: 6px;
}
.sec-head .en::before, .sec-head .en::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, rgba(46, 91, 69, 0), #8a9b90);
}
.sec-head .en::before {
  left: 0;
}
.sec-head .en::after {
  right: 0;
  transform: scaleX(-1);
}
.sec-head .ja {
  position: relative;
  display: inline-block;
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.sec-head .ja::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 46px;
  height: 3px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #2e5b45 0 60%, #e8730c 60% 100%);
}
.sec-head .lead {
  margin-top: 16px;
  font-size: 15px;
  color: #4c5a53;
}
@media screen and (max-width: 600px) {
  .sec-head-left .en {
    font-size: 22px;
    padding-left: 14px;
  }
}

.btn {
  display: inline-block;
  padding: 16px 44px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 2px;
  transition: opacity 0.2s;
}
.btn:hover {
  opacity: 0.8;
}
@media screen and (max-width: 600px) {
  .btn {
    padding: 14px 28px;
    font-size: 15px;
  }
}
.btn-accent {
  background: #e8730c;
  color: #fff;
}
.btn-accent:hover {
  color: #fff;
}
.btn-line {
  border: 1px solid #2e5b45;
  color: #2e5b45;
  background: #fff;
}
.btn-line-app {
  background: #06c755;
  color: #fff;
}
.btn-line-app:hover {
  color: #fff;
}
.btn-wrap {
  margin-top: 40px;
  text-align: center;
}

.more {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #2e5b45;
}
.more::after {
  content: " →";
}

/* 画像プレースホルダ（実素材差し替え用） */
.ph {
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(45deg, #e7ebe8 0 8px, #eff2f0 8px 16px);
  color: #7d8c84;
  font-family: "Barlow Condensed", monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-align: center;
}
.ph img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* =========================================================
   header
   ========================================================= */
.header {
  position: relative;
  z-index: 10;
  background: #fff;
  border-bottom: 1px solid #e2e7e3;
}
.header .inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 88px;
}
@media screen and (max-width: 1080px) {
  .header .inner {
    flex-wrap: wrap;
    height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
    row-gap: 10px;
  }
}
@media screen and (max-width: 820px) {
  .header .inner {
    flex-wrap: nowrap;
    height: 72px;
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 1080px) {
  .header-logo {
    flex: 0 0 auto;
  }
}
.header-logo a {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #22302a;
}
.header-logo a:hover {
  opacity: 0.75;
  color: #22302a;
}
.header-logo-img {
  width: 130px;
  height: auto;
}
@media screen and (max-width: 600px) {
  .header-logo-img {
    width: 96px;
  }
}
.header-logo .name {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 600px) {
  .header-logo .name {
    font-size: 17px;
  }
}
.header-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 24px;
}
@media screen and (max-width: 1080px) {
  .header-contact {
    order: 2;
    margin-left: auto;
  }
}
@media screen and (max-width: 820px) {
  .header-contact {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .header-contact {
    gap: 12px;
  }
  .header-contact .btn {
    padding: 11px 16px;
    font-size: 13px;
  }
}
.header-tel {
  line-height: 1.3;
}
.header-tel .num {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #2e5b45;
}
@media screen and (max-width: 600px) {
  .header-tel .num {
    font-size: 21px;
  }
}
.header-tel .time {
  display: block;
  font-size: 11px;
  color: #8a9b90;
}

.gnav {
  margin-left: auto;
}
@media screen and (max-width: 1080px) {
  .gnav {
    order: 3;
    flex: 0 0 100%;
    margin-left: 0;
  }
}
@media screen and (max-width: 820px) {
  .gnav {
    display: none;
  }
}
.gnav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}
@media screen and (max-width: 1080px) {
  .gnav ul {
    justify-content: flex-start;
    gap: 10px 24px;
  }
}
@media screen and (max-width: 600px) {
  .gnav ul {
    gap: 8px 18px;
  }
}
.gnav a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #22302a;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
.gnav a:hover {
  color: #2e5b45;
  border-bottom-color: #e8730c;
}
@media screen and (max-width: 600px) {
  .gnav a {
    font-size: 14px;
  }
}

/* =========================================================
   ハンバーガーメニュー（ドロワー）
   ========================================================= */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid #dfe5e1;
  background: #fff;
  cursor: pointer;
}
@media screen and (max-width: 820px) {
  .hamburger {
    display: flex;
    margin-left: auto;
  }
}
.hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: #22302a;
  transition: transform 0.25s, opacity 0.2s;
}

.is-drawer-open {
  overflow: hidden;
}
.is-drawer-open .hamburger-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.is-drawer-open .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.is-drawer-open .hamburger-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.is-drawer-open .drawer {
  transform: translateX(0);
  visibility: visible;
}
.is-drawer-open .drawer-overlay {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 60;
  width: min(360px, 86vw);
  height: 100%;
  padding: 78px 28px 40px;
  overflow-y: auto;
  background: #1c1c1c;
  color: #fff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  visibility: hidden;
}
.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(10, 14, 12, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}
.drawer-close {
  position: absolute;
  top: 20px;
  right: 22px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.drawer-close:hover {
  border-color: #e8730c;
  color: #e8730c;
}
.drawer-nav ul {
  display: grid;
}
.drawer-nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.drawer-nav a {
  display: block;
  padding: 18px 4px;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.drawer-nav a:hover {
  color: #e8730c;
}
.drawer-contact {
  display: grid;
  gap: 10px;
  margin-top: 32px;
}
.drawer-btn {
  display: block;
  padding: 14px 0 16px;
  text-align: center;
  color: #fff;
  transition: opacity 0.2s;
}
.drawer-btn:hover {
  opacity: 0.85;
  color: #fff;
}
.drawer-btn .en {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 0.24em;
}
.drawer-btn .ja {
  display: block;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.drawer-btn-tel {
  background: #fff;
  color: #22302a;
}
.drawer-btn-tel:hover {
  color: #22302a;
}
.drawer-btn-tel .en {
  color: #6d7c74;
}
.drawer-btn-tel .ja {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
}
.drawer-btn-line {
  background: #06c755;
}
.drawer-btn-form {
  background: #e8730c;
}

/* =========================================================
   下層ページ 共通
   ========================================================= */
.page-head {
  position: relative;
  height: 300px;
  overflow: hidden;
}
@media screen and (max-width: 820px) {
  .page-head {
    height: 220px;
  }
}
@media screen and (max-width: 600px) {
  .page-head {
    height: 180px;
  }
}
.page-head-img {
  position: absolute;
  inset: 0;
  align-items: flex-start;
  justify-content: flex-end;
  font-size: 12px;
}
.page-head-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28, 46, 37, 0.86) 0%, rgba(28, 46, 37, 0.6) 60%, rgba(28, 46, 37, 0.3) 100%);
}
.page-head-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
}
.page-head-body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.page-head-en {
  position: relative;
  padding-left: 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: #7fd6a3;
}
.page-head-en::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: #e8730c;
}
.page-head-ja {
  margin-top: 8px;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #fff;
}

.breadcrumb {
  padding: 16px 0;
  border-bottom: 1px solid #e2e7e3;
}
.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: #6d7c74;
}
.breadcrumb li + li::before {
  content: "／";
  margin-right: 8px;
  color: #b3beb7;
}

.outline-table {
  width: 100%;
  font-size: 15px;
}
@media screen and (max-width: 600px) {
  .outline-table {
    font-size: 14px;
  }
}
.outline-table th, .outline-table td {
  padding: 20px 8px;
  border-bottom: 1px solid #e2e7e3;
  text-align: left;
  vertical-align: top;
  line-height: 1.9;
}
@media screen and (max-width: 600px) {
  .outline-table th, .outline-table td {
    display: block;
    padding: 0;
    border-bottom: 0;
  }
}
.outline-table th {
  width: 170px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #2e5b45;
}
@media screen and (max-width: 600px) {
  .outline-table th {
    width: auto;
    padding-top: 16px;
  }
}
@media screen and (max-width: 600px) {
  .outline-table td {
    padding: 4px 0 16px;
    border-bottom: 1px solid #e2e7e3;
  }
}

.vision-name {
  margin-top: 30px;
  font-size: 15px;
  color: #4c5a53;
}
.vision-name .name {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #22302a;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.area-item {
  position: relative;
  padding: 34px 32px;
  background: #fff;
  border-top: 2px solid #2e5b45;
}
@media screen and (max-width: 600px) {
  .area-item {
    padding: 26px 22px;
  }
}
.area-item::before {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 14px;
  height: 14px;
  pointer-events: none;
  border-right: 1px solid rgba(232, 115, 12, 0.55);
  border-bottom: 1px solid rgba(232, 115, 12, 0.55);
}
.area-item::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -1px;
  width: 26px;
  height: 26px;
  pointer-events: none;
  border-top: 3px solid #e8730c;
  border-left: 3px solid #e8730c;
}
.area-item .area-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #e8730c;
}
.area-item .area-name {
  margin: 6px 0 14px;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.area-item .area-text {
  font-size: 14.5px;
  line-height: 1.95;
  color: #4c5a53;
}

/* =========================================================
   main visual
   ========================================================= */
.mv {
  position: relative;
  height: 700px;
  max-height: 78vh;
  min-height: 420px;
  overflow: hidden;
}
@media screen and (max-width: 820px) {
  .mv {
    height: auto;
    min-height: 0;
    max-height: none;
    padding: 90px 0;
  }
}
@media screen and (max-width: 600px) {
  .mv {
    padding: 64px 0;
  }
}
.mv-img {
  position: absolute;
  inset: 0;
}
.mv-img.ph {
  font-size: 13px;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 12px 16px;
}
.mv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28, 46, 37, 0.82) 0%, rgba(28, 46, 37, 0.55) 55%, rgba(28, 46, 37, 0.15) 100%);
  z-index: 5;
}
@media screen and (max-width: 600px) {
  .mv-overlay {
    background: linear-gradient(180deg, rgba(28, 46, 37, 0.85) 0%, rgba(28, 46, 37, 0.7) 100%);
  }
}
.mv-body {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 5;
}
@media screen and (max-width: 820px) {
  .mv-body {
    height: auto;
  }
}
.mv-en {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: #e8730c;
  margin-bottom: 18px;
}
.mv-catch {
  font-size: clamp(26px, 4.2vw, 56px);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}
.mv-text {
  margin-top: 24px;
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 2;
  color: #fff;
}
.mv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
@media screen and (max-width: 600px) {
  .mv-tags {
    margin-top: 24px;
  }
}
.mv-tags li {
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 600px) {
  .mv-tags li {
    padding: 6px 12px;
    font-size: 12px;
  }
}
.mv-btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
  margin-top: 38px;
}
.mv-tel {
  color: #fff;
  line-height: 1.3;
}
.mv-tel:hover {
  color: #e8730c;
}
.mv-tel .label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #6d7c74;
}
.mv-tel .num {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 600px) {
  .mv-tel .num {
    font-size: 28px;
  }
}

/* =========================================================
   lead
   ========================================================= */
.lead-sec {
  position: relative;
  overflow: hidden;
  padding: 80px 0 70px;
}
@media screen and (max-width: 600px) {
  .lead-sec {
    padding: 56px 0 48px;
  }
}
.lead-sec .inner-narrow {
  position: relative;
  z-index: 1;
  text-align: center;
}
.lead-sec::after {
  content: "";
  position: absolute;
  left: -30px;
  bottom: 10px;
  width: 200px;
  height: 200px;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(46, 91, 69, 0.14) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
}
.lead-sec .lead-title {
  font-size: clamp(20px, 2.3vw, 27px);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
.lead-sec .lead-title .accent {
  color: #2e5b45;
}
.lead-sec .lead-text {
  margin-top: 26px;
  font-size: 16px;
  line-height: 2.1;
  color: #4c5a53;
}

/* =========================================================
   対応する工事
   ========================================================= */
.field-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.field-item {
  position: relative;
  background: #fff;
  border: 1px solid #dfe5e1;
}
.field-item::before {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 14px;
  height: 14px;
  pointer-events: none;
  border-right: 1px solid rgba(232, 115, 12, 0.55);
  border-bottom: 1px solid rgba(232, 115, 12, 0.55);
}
.field-item::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 26px;
  height: 26px;
  pointer-events: none;
  border-top: 2px solid #2e5b45;
  border-left: 2px solid #2e5b45;
}
.field-item .ph {
  position: relative;
  height: 190px;
}
@media screen and (max-width: 600px) {
  .field-item .ph {
    height: 160px;
  }
}
.field-item .ph::after {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff), linear-gradient(#fff, #fff), linear-gradient(#fff, #fff), linear-gradient(#fff, #fff), linear-gradient(#fff, #fff), linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
  background-size: 22px 1px, 1px 22px, 22px 1px, 1px 22px, 22px 1px, 1px 22px, 22px 1px, 1px 22px;
  background-position: left top, left top, right top, right top, left bottom, left bottom, right bottom, right bottom;
  background-repeat: no-repeat;
  opacity: 0.55;
}
.field-item .field-body {
  padding: 26px 28px 30px;
}
@media screen and (max-width: 600px) {
  .field-item .field-body {
    padding: 22px 20px 24px;
  }
}
.field-item .field-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #e8730c;
}
.field-item .field-title {
  margin: 6px 0 12px;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding-bottom: 12px;
  border-bottom: 1px solid #e2e7e3;
}
.field-item .field-text {
  font-size: 14.5px;
  line-height: 1.95;
  color: #4c5a53;
}

/* =========================================================
   事業内容
   ========================================================= */
.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.service-item {
  position: relative;
  display: block;
  padding: 0 0 34px;
  background: #fff;
  border-top: 3px solid #2e5b45;
  box-shadow: 0 2px 14px rgba(34, 48, 42, 0.06);
  color: #22302a;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
@media screen and (max-width: 600px) {
  .service-item {
    padding: 28px 22px;
  }
}
.service-item::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 16px;
  height: 16px;
  pointer-events: none;
  background: linear-gradient(#8a9b90, #8a9b90) center/100% 1px no-repeat, linear-gradient(#8a9b90, #8a9b90) center/1px 100% no-repeat;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
}
.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(34, 48, 42, 0.12);
  color: #22302a;
}
.service-item:hover::after {
  opacity: 1;
  transform: rotate(90deg);
}
.service-item .service-img {
  position: relative;
  display: flex;
  height: 200px;
  margin-bottom: 28px;
  font-size: 12px;
}
@media screen and (max-width: 600px) {
  .service-item .service-img {
    height: 170px;
    margin-bottom: 22px;
  }
}
.service-item .service-img::after {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff), linear-gradient(#fff, #fff), linear-gradient(#fff, #fff), linear-gradient(#fff, #fff), linear-gradient(#fff, #fff), linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
  background-size: 22px 1px, 1px 22px, 22px 1px, 1px 22px, 22px 1px, 1px 22px, 22px 1px, 1px 22px;
  background-position: left top, left top, right top, right top, left bottom, left bottom, right bottom, right bottom;
  background-repeat: no-repeat;
  opacity: 0.55;
}
.service-item > *:not(.service-img) {
  padding-left: 32px;
  padding-right: 32px;
}
@media screen and (max-width: 600px) {
  .service-item > *:not(.service-img) {
    padding-left: 22px;
    padding-right: 22px;
  }
}
.service-item .service-en {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #8a9b90;
}
.service-item .service-title {
  margin: 8px 0 14px;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.service-item .service-text {
  font-size: 14.5px;
  line-height: 1.95;
  color: #4c5a53;
  min-height: 112px;
}
@media screen and (max-width: 820px) {
  .service-item .service-text {
    min-height: 0;
  }
}

/* =========================================================
   新着情報
   ========================================================= */
.news-list {
  max-width: 1000px;
  margin: 0 auto;
  border-top: 1px solid #e2e7e3;
}

.news-item {
  border-bottom: 1px solid #e2e7e3;
}
.news-item a {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
  padding: 22px 8px;
  color: #22302a;
}
@media screen and (max-width: 600px) {
  .news-item a {
    padding: 18px 4px;
    gap: 6px 14px;
  }
}
.news-item a {
  /*&::before {
    content: "";
    position: absolute;
    left: -14px;
    top: 50%;
    width: 4px;
    height: 4px;
    margin-top: -2px;
    background: #b3beb7;
    transition: background .2s, transform .2s;
  }*/
}
.news-item a:hover {
  color: #2e5b45;
  background: #f7f8f6;
}
.news-item a:hover::before {
  background: #e8730c;
  transform: scale(1.6);
}
.news-item .news-date {
  flex: 0 0 auto;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #6d7c74;
}
.news-item .news-cat {
  flex: 0 0 auto;
  min-width: 88px;
  padding: 3px 10px;
  border: 1px solid #2e5b45;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  color: #2e5b45;
}
.news-item .news-title {
  flex: 1 1 320px;
  font-size: 15.5px;
  line-height: 1.8;
}
@media screen and (max-width: 600px) {
  .news-item .news-title {
    flex: 1 1 100%;
    font-size: 15px;
  }
}

/* =========================================================
   新着情報 詳細
   ========================================================= */
.entry-head {
  padding-bottom: 24px;
  border-bottom: 1px solid #e2e7e3;
}

.entry-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.entry-title {
  margin-top: 14px;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.06em;
}

.entry-body {
  margin-top: 34px;
  font-size: 15.5px;
  line-height: 2.1;
  color: #33473d;
}
.entry-body p {
  margin-bottom: 24px;
}
.entry-body h3 {
  margin: 40px 0 16px;
  padding-left: 14px;
  border-left: 3px solid #2e5b45;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #22302a;
}

.entry-img {
  min-height: 320px;
  margin: 32px 0;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 12px 16px;
  font-size: 12px;
}

.entry-foot {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid #e2e7e3;
}

/* =========================================================
   お問い合わせページ
   ========================================================= */
.contact-lead {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 2.1;
  color: #33473d;
}

.contact-direct {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.contact-direct-item {
  padding: 32px 28px;
  background: #fff;
  border: 1px solid #dfe5e1;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .contact-direct-item {
    padding: 26px 20px;
  }
}
.contact-direct-item .num {
  display: block;
  margin: 8px 0 4px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 38px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1.2;
  color: #2e5b45;
}
@media screen and (max-width: 600px) {
  .contact-direct-item .num {
    font-size: 30px;
  }
}
.contact-direct-item .note {
  font-size: 13.5px;
  color: #6d7c74;
}
.contact-direct-item .btn {
  margin-top: 14px;
}

.form {
  margin-top: 8px;
}
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 32px;
  padding: 26px 0;
  border-bottom: 1px solid #e2e7e3;
}
@media screen and (max-width: 600px) {
  .form-row {
    gap: 6px;
    padding: 20px 0;
  }
}
.form-label {
  flex: 0 0 240px;
  padding-top: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 600px) {
  .form-label {
    flex: 1 1 100%;
    padding-top: 0;
  }
}
.form-req, .form-any {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  vertical-align: 2px;
}
.form-req {
  background: #e8730c;
  color: #fff;
}
.form-any {
  background: #e6ebe7;
  color: #566a5f;
}
.form-field {
  flex: 1 1 380px;
}
@media screen and (max-width: 600px) {
  .form-field {
    flex: 1 1 100%;
  }
}
.form-input, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #cfd8d2;
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.7;
  color: #22302a;
}
.form-input:focus, .form-textarea:focus {
  outline: 2px solid #2e5b45;
  outline-offset: -2px;
}
.form-textarea {
  resize: vertical;
}
.form-file {
  font-family: inherit;
  font-size: 14px;
}
.form-file + .form-note {
  margin: 10px 0 0;
}
.form-note {
  margin-bottom: 10px;
  font-size: 13px;
  color: #6d7c74;
}
.form-checks {
  display: grid;
  gap: 10px;
}
.form-checks label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.7;
  cursor: pointer;
}
.form-checks input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: #2e5b45;
}
.form-submit {
  margin-top: 40px;
  text-align: center;
}
.form-submit .btn {
  min-width: 260px;
  border: 0;
  font-family: inherit;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .form-submit .btn {
    min-width: 0;
    width: 100%;
  }
}
.form-error {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #c0392b;
}

/* =========================================================
   事業内容ページ
   ========================================================= */
.service-lead {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 2.1;
  color: #33473d;
}

.service-index {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 44px;
}
.service-index a {
  display: block;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid #dfe5e1;
  color: #22302a;
  transition: border-color 0.2s, transform 0.2s;
}
@media screen and (max-width: 600px) {
  .service-index a {
    padding: 18px 20px;
  }
}
.service-index a:hover {
  border-color: #2e5b45;
  transform: translateY(-3px);
  color: #22302a;
}
.service-index .en {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #8a9b90;
}
.service-index .ja {
  display: block;
  margin-top: 4px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.service-index .ja::after {
  content: " ↓";
  color: #e8730c;
}

.detail-head {
  margin-bottom: 40px;
}
.detail-en {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: #e8730c;
}
.detail-title {
  margin-top: 6px;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: 0.08em;
}
.detail-body {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 56px;
  align-items: flex-start;
}
.detail-body-rev {
  flex-direction: row-reverse;
}
.detail-img {
  flex: 1 1 400px;
  min-height: 320px;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 12px 16px;
  font-size: 12px;
}
@media screen and (max-width: 820px) {
  .detail-img {
    min-height: 240px;
  }
}
@media screen and (max-width: 600px) {
  .detail-img {
    min-height: 200px;
  }
}
.detail-text {
  flex: 1 1 420px;
  font-size: 15px;
  line-height: 2.05;
  color: #4c5a53;
}
.detail-sub {
  margin: 30px 0 12px;
  padding-left: 14px;
  border-left: 3px solid #2e5b45;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #22302a;
}
.detail-list {
  display: grid;
  gap: 8px;
}
.detail-list li {
  position: relative;
  padding-left: 18px;
}
.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1em;
  width: 9px;
  height: 1px;
  background: #e8730c;
}

.cad-lead {
  max-width: 780px;
  margin-bottom: 40px;
}
.cad-lead-catch {
  font-size: clamp(21px, 2.4vw, 30px);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.cad-lead-text {
  margin-top: 16px;
  font-size: 15px;
  line-height: 2.05;
  color: #4c5a53;
}
.cad-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media screen and (max-width: 600px) {
  .cad-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
.cad-item {
  padding: 30px 28px;
  background: #fff;
  border-top: 3px solid #2e5b45;
}
@media screen and (max-width: 600px) {
  .cad-item {
    padding: 24px 20px;
  }
}
.cad-item-title {
  margin: 10px 0 10px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.cad-item-text {
  font-size: 14.5px;
  line-height: 1.95;
  color: #4c5a53;
}
.cad-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1;
  color: #e8730c;
}
.cad-flow {
  position: relative;
  margin-top: 48px;
  padding: 40px 40px 44px;
  background: #fff;
  border: 1px solid #dfe5e1;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .cad-flow {
    padding: 28px 20px 32px;
  }
}
.cad-flow::before {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 14px;
  height: 14px;
  pointer-events: none;
  border-right: 1px solid rgba(232, 115, 12, 0.55);
  border-bottom: 1px solid rgba(232, 115, 12, 0.55);
}
.cad-flow-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.cad-flow-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
  counter-reset: flow;
}
.cad-flow-list li {
  position: relative;
  flex: 0 1 220px;
  padding: 18px 16px;
  background: #f2f4f2;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.6;
}
.cad-flow-list li::before {
  counter-increment: flow;
  content: "STEP " counter(flow);
  display: block;
  margin-bottom: 6px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 0.18em;
  color: #e8730c;
}
.cad-flow-note {
  margin-top: 26px;
  font-size: 15px;
  line-height: 1.95;
  color: #4c5a53;
}

/* =========================================================
   使用システム（Geo Scan Supreme）
   ========================================================= */
.system-sec {
  background: #22302a;
  color: #fff;
}
.system-box {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 48px;
  align-items: center;
  margin-top: 70px;
  padding: 48px 48px 52px;
  background: #22302a;
  color: #fff;
}
@media screen and (max-width: 820px) {
  .system-box {
    padding: 34px 28px 38px;
  }
}
@media screen and (max-width: 600px) {
  .system-box {
    padding: 26px 20px 30px;
  }
}
.system-img {
  flex: 1 1 340px;
}
.system-img.ph {
  min-height: 260px;
  background: repeating-linear-gradient(45deg, #33443b 0 8px, #2b3a33 8px 16px);
  color: #90a397;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 12px 16px;
  font-size: 12px;
}
@media screen and (max-width: 820px) {
  .system-img.ph {
    min-height: 220px;
  }
}
.system-note {
  margin-top: 18px;
  font-size: 14.5px;
  color: #d7e0da;
}
.system-body {
  flex: 1 1 420px;
}
.system-en {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.26em;
  color: #e8b47a;
}
.system-title {
  margin: 10px 0 18px;
  font-size: clamp(20px, 2.1vw, 26px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.system-text {
  font-size: 15px;
  line-height: 2.05;
  color: #d7e0da;
}
.system-marks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.system-marks li {
  padding: 10px 10px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
@media screen and (max-width: 600px) {
  .system-marks li {
    flex: 1 1 100%;
  }
}
.system-marks strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #e8b47a;
}

/* =========================================================
   ビジョン＆メッセージ
   ========================================================= */
.vision-sec {
  background: #fff;
}
.vision-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
@media screen and (max-width: 820px) {
  .vision-inner {
    grid-template-columns: 1fr;
  }
}
.vision-copy {
  padding: 96px 72px 100px max(24px, (100% - 1200px) / 2 + 24px);
}
@media screen and (max-width: 820px) {
  .vision-copy {
    padding: 70px 24px 60px;
  }
}
@media screen and (max-width: 600px) {
  .vision-copy {
    padding: 56px 18px 48px;
  }
}
.vision-en {
  padding-right: 22px;
  border-right: 3px solid #1f8b4c;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.3;
  color: #1f8b4c;
  text-align: right;
}
.vision-catch {
  margin-top: 56px;
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 600px) {
  .vision-catch {
    margin-top: 36px;
  }
}
.vision-sub {
  margin-top: 20px;
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 500;
  color: #1f8b4c;
  letter-spacing: 0.06em;
}
.vision-text {
  margin-top: 22px;
  font-size: 15px;
  line-height: 2.1;
  color: #4c5a53;
}
.vision-btn {
  margin-top: 38px;
}
.vision-img {
  min-height: 620px;
  font-size: 13px;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 14px 18px;
}
.vision-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 820px) {
  .vision-img {
    min-height: 320px;
  }
}

/* =========================================================
   ご利用の流れ
   ========================================================= */
.flow-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px 34px;
}
.flow-item {
  position: relative;
  overflow: hidden;
  padding: 32px 26px 60px;
  background: #fff;
  border: 1px solid #dfe5e1;
}
@media screen and (max-width: 600px) {
  .flow-item {
    padding: 26px 20px;
  }
}
.flow-step {
  position: relative;
  padding-left: 16px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #e8730c;
}
.flow-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  background: #e8730c;
}
.flow-title {
  margin: 8px 0 12px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.flow-text {
  font-size: 14.5px;
  line-height: 1.95;
  color: #4c5a53;
}
.flow-icon {
  position: absolute;
  right: -22px;
  bottom: -22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #2e5b45;
  color: #fff;
}
.flow-icon svg {
  width: 38px;
  height: 38px;
}

/* =========================================================
   選ばれる理由
   ========================================================= */
.reason-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .reason-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.reason-item {
  position: relative;
  padding: 34px 30px 32px;
  background: #fff;
  border-left: 3px solid #2e5b45;
}
@media screen and (max-width: 600px) {
  .reason-item {
    padding: 26px 22px;
  }
}
.reason-item::before {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 14px;
  height: 14px;
  pointer-events: none;
  border-right: 1px solid rgba(232, 115, 12, 0.55);
  border-bottom: 1px solid rgba(232, 115, 12, 0.55);
}
.reason-item::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -2px;
  width: 26px;
  height: 26px;
  pointer-events: none;
  border-top: 2px solid #e8730c;
  border-left: 2px solid #e8730c;
}
.reason-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1;
  color: #e8730c;
}
.reason-title {
  margin: 12px 0 12px;
  font-size: 18.5px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
.reason-text {
  font-size: 14.5px;
  line-height: 1.95;
  color: #4c5a53;
}

/* =========================================================
   CAD化バナー
   ========================================================= */
.cad-sec {
  padding: 0;
}
.cad-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #2e5b45;
  color: #fff;
}
.cad-img {
  flex: 1 1 380px;
}
.cad-img.ph {
  height: 260px;
  background: repeating-linear-gradient(45deg, #35634c 0 8px, #2e5b45 8px 16px);
  color: #a9c2b4;
}
@media screen and (max-width: 820px) {
  .cad-img.ph {
    height: 220px;
  }
}
.cad-body {
  flex: 1 1 520px;
  padding: 46px 56px;
}
@media screen and (max-width: 1080px) {
  .cad-body {
    padding: 38px 32px;
  }
}
@media screen and (max-width: 600px) {
  .cad-body {
    padding: 30px 20px;
  }
}
.cad-body .btn {
  margin-top: 24px;
}
.cad-en {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.26em;
  color: #e8b47a;
}
.cad-title {
  margin: 8px 0 14px;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.cad-text {
  font-size: 15px;
  line-height: 2;
  color: #dbe5df;
}
.cad-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 20px;
  margin-top: 20px;
}
@media screen and (max-width: 600px) {
  .cad-points {
    grid-template-columns: 1fr;
  }
}
.cad-points li {
  position: relative;
  padding-left: 18px;
  font-size: 14.5px;
  color: #dbe5df;
}
.cad-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 8px;
  height: 1px;
  background: #e8b47a;
}

/* =========================================================
   代表挨拶
   ========================================================= */
.message-box {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 56px;
  align-items: center;
}
.message-img {
  flex: 1 1 340px;
}
.message-img.ph {
  height: 300px;
}
@media screen and (max-width: 820px) {
  .message-img.ph {
    height: 220px;
  }
}
.message-body {
  flex: 1 1 420px;
}
.message-en {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.26em;
  color: #8a9b90;
}
.message-title {
  margin: 10px 0 20px;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.message-text {
  font-size: 15px;
  line-height: 2.1;
  color: #4c5a53;
}
.message-name {
  margin-top: 22px;
  font-size: 15px;
}
.message-name strong {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* =========================================================
   contact CTA
   ========================================================= */
.cta-sec {
  padding: 76px 0;
  background: #f2f4f2;
  border-top: 1px solid #e2e7e3;
}
@media screen and (max-width: 600px) {
  .cta-sec {
    padding: 56px 0;
  }
}
.cta-head {
  text-align: center;
  margin-bottom: 40px;
}
.cta-head .ja {
  font-size: clamp(23px, 2.4vw, 30px);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.cta-head .lead {
  margin-top: 14px;
  font-size: 15px;
  color: #4c5a53;
}
.cta-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.cta-item {
  padding: 32px 28px;
  background: #fff;
  border: 1px solid #dfe5e1;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .cta-item {
    padding: 26px 20px;
  }
}
.cta-item .num {
  display: block;
  margin: 8px 0 4px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 1.2;
  color: #2e5b45;
}
@media screen and (max-width: 600px) {
  .cta-item .num {
    font-size: 29px;
  }
}
.cta-item .mail {
  display: block;
  margin: 10px 0 4px;
  font-size: 19px;
  font-weight: 700;
  color: #2e5b45;
  word-break: break-all;
}
@media screen and (max-width: 600px) {
  .cta-item .mail {
    font-size: 16px;
  }
}
.cta-item .note {
  font-size: 13px;
  color: #6d7c74;
}
.cta-item .btn {
  margin-top: 14px;
}
.cta-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: #8a9b90;
}

/* =========================================================
   現場写真（縦に流れるフォト）
   ========================================================= */
.photo-sec {
  position: relative;
  background: #141a16;
  background-image: linear-gradient(100deg, #141a16 0%, #1b2b21 42%, #23402c 70%, #141a16 100%);
  overflow: hidden;
}
.photo-inner {
  display: flex;
  align-items: stretch;
  gap: 40px;
}
@media screen and (max-width: 820px) {
  .photo-inner {
    flex-direction: column;
    gap: 0;
  }
}
.photo-copy {
  flex: 1 1 46%;
  padding: 110px 40px 110px max(24px, (100% - 1200px) / 2 + 24px);
  color: #fff;
}
@media screen and (max-width: 820px) {
  .photo-copy {
    flex: 1 1 auto;
    padding: 70px 24px 60px;
  }
}
@media screen and (max-width: 600px) {
  .photo-copy {
    padding: 56px 18px 48px;
  }
}
.photo-catch {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.12em;
}
.photo-en {
  margin-top: 18px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.26em;
  color: #3fae6b;
}
.photo-text {
  margin-top: 34px;
  font-size: 15px;
  line-height: 2.1;
  color: #dfe7e1;
}
.photo-points {
  margin-top: 40px;
  display: grid;
  gap: 16px;
}
.photo-points li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.photo-points .num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: normal;
  color: #3fae6b;
}
.photo-points .label {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
}
.photo-points .desc {
  font-size: 14px;
  color: #c3d0c7;
}
.photo-btn {
  margin-top: 40px;
  text-align: left;
}
.photo-grid {
  flex: 1 1 48%;
  display: flex;
  gap: 16px;
  height: 100vh;
}
@media screen and (max-width: 820px) {
  .photo-grid {
    flex: 1 1 auto;
    width: 100%;
    height: 420px;
  }
}
@media screen and (max-width: 600px) {
  .photo-grid {
    height: 320px;
    gap: 10px;
  }
}
.photo-col {
  flex: 1;
  overflow: hidden;
}
.photo-track {
  display: grid;
  gap: 16px;
  animation: photo-up 44s linear infinite;
}
@media screen and (max-width: 600px) {
  .photo-track {
    gap: 10px;
  }
}
.photo-track-rev {
  animation-name: photo-down;
  animation-duration: 56s;
}
.photo-track li {
  height: 300px;
  font-size: 12px;
}
@media screen and (max-width: 820px) {
  .photo-track li {
    height: 200px;
  }
}
@media screen and (max-width: 600px) {
  .photo-track li {
    height: 150px;
    font-size: 11px;
  }
}

@keyframes photo-up {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}
@keyframes photo-down {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}
/* =========================================================
   各ページへのリンク
   ========================================================= */
.pagelink-sec {
  padding: 90px 0 0;
  background: #f7f8f6;
}
.pagelink-head {
  margin-bottom: 46px;
}
.pagelink-head .en {
  display: inline-block;
  padding-left: 22px;
  border-left: 3px solid #2e7a4c;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.3;
  color: #2e7a4c;
}
.pagelink-wrap {
  position: relative;
  padding-bottom: 90px;
}
.pagelink-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 190px;
  background: #2e5b45;
}
@media screen and (max-width: 600px) {
  .pagelink-wrap::before {
    height: 140px;
  }
}
.pagelink-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr));
  gap: 36px;
}
@media screen and (max-width: 600px) {
  .pagelink-list {
    grid-template-columns: 1fr;
  }
}
.pagelink-item a {
  position: relative;
  display: block;
  min-height: 380px;
  background: #33413a;
  color: #fff;
}
@media screen and (max-width: 820px) {
  .pagelink-item a {
    height: auto;
    min-height: 260px;
  }
}
.pagelink-item a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 28, 24, 0.72) 0%, rgba(20, 28, 24, 0.45) 100%);
}
.pagelink-item a:hover .pagelink-img {
  opacity: 0.45;
}
.pagelink-item a:hover .pagelink-arrow {
  background: #e8730c;
  color: #fff;
}
.pagelink-item-dark a {
  background: #14314c;
}
.pagelink-item-dark a::after {
  background: linear-gradient(180deg, rgba(8, 24, 40, 0.72) 0%, rgba(8, 24, 40, 0.45) 100%);
}
.pagelink-img {
  position: absolute;
  inset: 0;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 12px 16px;
  opacity: 0.3;
  font-size: 12px;
  transition: opacity 0.4s;
}
.pagelink-body {
  position: relative;
  z-index: 1;
  display: block;
  padding: 54px 56px 100px;
}
@media screen and (max-width: 1080px) {
  .pagelink-body {
    padding: 38px 34px;
  }
}
@media screen and (max-width: 600px) {
  .pagelink-body {
    padding: 30px 22px 84px;
  }
}
.pagelink-body .ja {
  display: block;
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 600px) {
  .pagelink-body .ja {
    font-size: 25px;
  }
}
.pagelink-body .en {
  display: block;
  margin-top: 6px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #7fd6a3;
}
.pagelink-body .text {
  display: block;
  margin-top: 24px;
  font-size: 14.5px;
  line-height: 1.95;
}
.pagelink-arrow {
  position: absolute;
  z-index: 2;
  right: 44px;
  bottom: -34px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #fff;
  color: #2e7a4c;
  font-size: 22px;
  transition: background 0.2s, color 0.2s;
}
@media screen and (max-width: 1080px) {
  .pagelink-arrow {
    right: 28px;
    bottom: 28px;
    width: 56px;
    height: 56px;
  }
}
@media screen and (max-width: 600px) {
  .pagelink-arrow {
    right: 20px;
    bottom: -26px;
    width: 62px;
    height: 62px;
    font-size: 18px;
  }
}

/* =========================================================
   footer
   ========================================================= */
.footer {
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
  background: #1c1c1c;
  color: #b9c1bc;
  font-size: 14px;
}
@media screen and (max-width: 600px) {
  .footer {
    padding: 50px 0 0;
  }
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
}
.footer > .inner {
  position: relative;
  z-index: 1;
}
.footer a {
  color: #cdd7d1;
}
.footer a:hover {
  color: #e8730c;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 44px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-logo-img {
  width: 120px;
  height: auto;
  filter: brightness(1.6);
}
.footer-logo .name {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #fff;
}
.footer-info {
  margin-top: 18px;
  line-height: 2;
}
.footer-tagline {
  text-align: right;
}
@media screen and (max-width: 820px) {
  .footer-tagline {
    text-align: left;
  }
}
.footer-tagline .en {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
  color: #fff;
}
.footer-tagline .ja {
  margin-top: 14px;
  font-size: clamp(16px, 1.7vw, 23px);
  letter-spacing: 0.18em;
  color: #e6ebe8;
}
.footer-line {
  display: block;
  margin-top: 10px;
  padding: 12px 0 14px;
  background: #06c755;
  color: #fff;
  text-align: center;
  transition: opacity 0.2s;
}
.footer-line:hover {
  opacity: 0.82;
  color: #fff;
}
.footer-line .en {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 0.24em;
}
.footer-line .ja {
  display: block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding: 42px 0 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 64px;
}
@media screen and (max-width: 600px) {
  .footer-nav {
    gap: 24px 36px;
  }
}
@media screen and (max-width: 600px) {
  .footer-nav-col {
    flex: 1 1 44%;
  }
}
.footer-nav-title {
  margin-bottom: 14px;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #8a9b90;
}
.footer-nav ul {
  line-height: 2.2;
}
.footer-nav li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
}
.footer-nav li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1em;
  width: 10px;
  height: 1px;
  background: #6f8078;
}
.footer-contact {
  flex: 1 1 280px;
  max-width: 320px;
}
@media screen and (max-width: 600px) {
  .footer-contact {
    max-width: none;
  }
}
.footer-tel {
  padding: 12px 0 14px;
  background: #fff;
  text-align: center;
}
.footer-tel .label {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 0.18em;
  color: #6d7c74;
}
.footer-tel .num {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: #22302a;
}
.footer-tel .num:hover {
  color: #e8730c;
}
.footer-btn {
  display: block;
  margin-top: 12px;
  padding: 14px 0 16px;
  background: #1f8b4c;
  color: #fff;
  text-align: center;
  transition: background 0.2s;
}
.footer-btn:hover {
  background: #e8730c;
  color: #fff;
}
.footer-btn .en {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 0.24em;
}
.footer-btn .ja {
  display: block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.copyright {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 0.12em;
  text-align: center;
  color: #8a9b90;
}

/* pagetop */
.pagetop {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 20;
}
@media screen and (max-width: 600px) {
  .pagetop {
    right: 14px;
    bottom: 14px;
  }
}
.pagetop a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #2e5b45;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  transition: background 0.2s;
}
.pagetop a:hover {
  background: #e8730c;
  color: #fff;
}
@media screen and (max-width: 600px) {
  .pagetop a {
    width: 58px;
    height: 58px;
    font-size: 13px;
  }
}

/* モーション低減設定 */
@media (prefers-reduced-motion: reduce) {
  .photo-track {
    animation: none;
  }
}
/*新メールフォーム*/
.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: #5c4233;
  font-size: 16px;
  font-weight: bold;
  border: 2px solid #5c4233;
}
#mailform button:before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f0e0";
  margin-right: 6px;
}
#mailform button:hover {
  background: #fff;
  color: #5c4233;
}
#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: #5c4233;
  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 #5c4233;
  border-bottom: 3px solid #5c4233;
  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: #5c4233;
  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;
}

/* =========================================================
   修正対応：連絡先（TEL＋MAIL）／視認性／hover文字色／改行
   ========================================================= */
/* 日本語の改行位置を自然にする */
p, li, dd, td, th,
.mv-text, .vision-text, .vision-sub, .lead,
.reason-text, .service-text, .photo-text, .flow-text,
.detail-text p, .cad-item-text, .cad-lead-text, .note,
.area-text, .service-lead {
  text-wrap: pretty;
  word-break: auto-phrase;
  line-break: strict;
}

.mv-catch, .vision-catch, .photo-catch, .page-head-ja,
.sec-head .ja, .detail-title, .system-title {
  word-break: keep-all;
  text-wrap: balance;
}

/* MV：お電話ラベルの視認性（背景写真に同化していたため明度を上げる） */
.mv-tel .label,
.mv-mail .label {
  color: #e3ebe6;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
}

.mv-tel .num,
.mv-mail .num {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.mv-mail {
  color: #fff;
  line-height: 1.3;
}

.mv-mail:hover {
  color: #e8730c;
}

.mv-mail .num {
  display: block;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

@media screen and (max-width: 600px) {
  .mv-mail .num {
    font-size: 17px;
  }
}
/* ヘッダー：TELの下にメールアドレス */
.header-contactinfo {
  line-height: 1.2;
}

.header-mail {
  margin-top: 2px;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-align: right;
}

.header-mail a {
  color: #6d7c74;
}

.header-mail a:hover {
  color: #e8730c;
}

/* ドロワー：MAILボタン */
.drawer-btn-mail {
  background: #2f3a34;
  color: #fff;
}

.drawer-btn-mail .ja {
  font-size: 14px;
  letter-spacing: 0.02em;
  word-break: break-all;
}

/* CTA：メールアドレス */
.cta-mail {
  display: block;
  margin-top: 6px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #22302a;
  word-break: break-all;
}

.cta-mail:hover {
  color: #e8730c;
}

/* フッター：MAILボタン */
.footer-mail {
  display: block;
  margin-top: 10px;
  padding: 10px 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  text-align: center;
  transition: background 0.2s;
}

.footer-mail .en {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 0.24em;
}

.footer-mail .ja {
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  word-break: break-all;
}

/* フッターのボタン：hover時に文字が消える不具合の修正
   （.footer a:hover の色指定がボタン内テキストにも当たっていた） */
.footer a.footer-mail,
.footer a.footer-mail .en,
.footer a.footer-mail .ja {
  color: #e6ebe8;
}

.footer a.footer-mail:hover,
.footer a.footer-mail:hover .en,
.footer a.footer-mail:hover .ja {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.footer a.footer-btn,
.footer a.footer-btn .en,
.footer a.footer-btn .ja,
.footer a.footer-btn:hover,
.footer a.footer-btn:hover .en,
.footer a.footer-btn:hover .ja,
.footer a.footer-line,
.footer a.footer-line .en,
.footer a.footer-line .ja,
.footer a.footer-line:hover,
.footer a.footer-line:hover .en,
.footer a.footer-line:hover .ja {
  color: #fff;
}

/* =========================================================
   新着情報一覧（news.php）
   ※CMS出力側はクラスが付かないため、素のul/liに装飾を当てる
   ========================================================= */
.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 56px;
  align-items: start;
}

@media screen and (max-width: 820px) {
  .news-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.news-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e2e7e3;
}

.news-filter-label {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #22302a;
}

.news-filter-clear {
  font-size: 13px;
  color: #6d7c74;
}

.news-filter-clear:hover {
  color: #e8730c;
}

/* CMS出力（クラス無しのul/li）への装飾 */
.news-cms ul {
  border-top: 1px solid #e2e7e3;
}

.news-cms li {
  position: relative;
  padding: 0;
  border-bottom: 1px solid #e2e7e3;
  list-style: none;
  line-height: 1.7;
}

.news-cms li::before {
  content: none;
}

.news-cms li a {
  display: block;
  padding: 20px 40px 20px 18px;
  color: #22302a;
  transition: background 0.2s, color 0.2s;
}

.news-cms li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-top: 1px solid #9aa8a1;
  border-right: 1px solid #9aa8a1;
  transform: rotate(45deg);
  transition: border-color 0.2s, transform 0.2s;
}

.news-cms li a:hover {
  background: #f7f8f6;
  color: #2e5b45;
}

.news-cms li a:hover::after {
  border-color: #e8730c;
  transform: rotate(45deg) translate(2px, -2px);
}

.news-cms li span,
.news-cms li .date,
.news-cms li time {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: #6d7c74;
}

.news-cms p {
  padding: 24px 18px;
  color: #6d7c74;
}

/* ページャー */
.news-cms .page_link,
.news-cms .pagelink,
.news-cms .pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

.news-cms .page_link a,
.news-cms .pagelink a,
.news-cms .pager a {
  display: inline-block;
  min-width: 38px;
  padding: 8px 12px;
  border: 1px solid #d8ded9;
  text-align: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  color: #22302a;
}

.news-cms .page_link a:hover,
.news-cms .pagelink a:hover,
.news-cms .pager a:hover {
  border-color: #e8730c;
  background: #e8730c;
  color: #fff;
}

/* 月別アーカイブ */
.news-side-title {
  padding-bottom: 12px;
  border-bottom: 2px solid #2e5b45;
}

.news-side-title .en {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  letter-spacing: 0.24em;
  color: #6d7c74;
}

.news-side-title .ja {
  display: block;
  margin-top: 2px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #22302a;
}

.news-archive {
  margin-top: 6px;
}

.news-archive li {
  border-bottom: 1px solid #e8ebe8;
  list-style: none;
}

.news-archive li a {
  display: block;
  padding: 11px 4px 11px 16px;
  position: relative;
  font-size: 14.5px;
  letter-spacing: 0.04em;
  color: #46544d;
  transition: color 0.2s, background 0.2s;
}

.news-archive li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 1px;
  background: #b3bdb7;
  transition: background 0.2s, width 0.2s;
}

.news-archive li a:hover {
  background: #f7f8f6;
  color: #2e5b45;
}

.news-archive li a:hover::before {
  width: 12px;
  background: #e8730c;
}

.news-archive li.is-current a {
  font-weight: 700;
  color: #2e5b45;
}

.news-archive li.is-current a::before {
  width: 12px;
  background: #e8730c;
}

@media screen and (max-width: 820px) {
  .news-archive {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0 20px;
  }
}
/* 使用システム：計測データのビジュアル */
.system-visual {
  flex: 1 1 340px;
}

.system-visual .system-img {
  flex: none;
}

.system-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.system-thumbs li {
  list-style: none;
}

.system-thumbs li.ph {
  min-height: 96px;
  background: repeating-linear-gradient(45deg, #33443b 0 8px, #2b3a33 8px 16px);
  overflow: hidden;
}

.system-thumbs li.ph img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.system-caption {
  margin-top: 12px;
  font-size: 12.5px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #9fb0a6;
}/*# sourceMappingURL=basis.css.map */