@charset "utf-8";
/* リセット */
html,
body,
header,
footer,
main,
section,
h1,
h2,
h3,
h4,
ul,
li,
p,
dl,
dt,
dd {
    margin: 0;
    padding: 0;
    line-height: 1;
    color: #212529;
    font-family:"Noto Sans JP", "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-feature-settings: "palt";
}

html {
    scroll-behavior: smooth;
    }

html, body {
  overflow-x: hidden;
}

a {
    /*下線を消す*/
    text-decoration: none;
    /*色を消す*/
    color: inherit;
    transition: 0.3s;
}


ul,
li {
    /*左の「・」を消す*/
    list-style: none;
}

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

body {
    background-color: #ffffff;
}

.sp-br {
  display: none;
}

.tab-br {
  display: none;
}




/* トップページ *
/* ヘッダー */
/* 土台：固定ヘッダー（高さ93px・左右40px） */
.site-header{
  position: fixed; top: 0; left: 0; right: 0;
  height: clamp(4.688rem, 4.487rem + 0.43vw, 5rem); /* 80-75 */
  padding: 0 clamp(1.5rem, 0.858rem + 1.37vw, 2.5rem);
  display: flex; align-items: center;
  background: transparent;                /* 初期は透明 */
  transition: background-color .25s ease;
  z-index: 1000;
}
.site-header.scrolled{
  background: #fff;  /* スクロール後は白 */
}

/* インナー（左右配置） */
.header-inner{
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}

/* ロゴ */
.logo img{ 
    display:block; 
    height: clamp(1.25rem, 0.729rem + 1.11vw, 2.063rem);  /* 50px */
    width:auto; 
}

/* ナビ */

.hamburger-btn,
.sp-nav {
    display: none;
}

.global-nav .nav-list{
  margin:0; padding:0; list-style:none;
  display:flex; align-items:center; gap: 32px;
}

.nav-item a,
.dd-link{
  letter-spacing:.07em;
  color:#fff;
  font-size: clamp(0.75rem, 0.63rem + 0.26vw, 0.938rem);
}
.dd-link img {
    width: 10px;
    height: 7px;
    transform: rotate(-180deg);
}
.site-header.scrolled .nav-item a,
.site-header.scrolled .dd-link{ 
    color:#212529; 
} /* 白背景時は濃い文字 */

.dd-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
}
.dd-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
}
.dd-toggle img {
  width: 10px;
  height: 7px;
  transform: rotate(180deg);           /* 初期は下向き */
  transition: transform .3s ease; /* 回転アニメーション */
}
.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
}
/* 擬似要素で線を作成 */
.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;               /* テキスト下に配置（調整可） */
  right: 0;                   /* 初期は幅ゼロ */
  height: 2px;                /* 線の太さ */
  background: #fff;   /* テキストと同じ色 */
  transform: scale(0,1);
  transform-origin: right top; /* 変形の原点 */
  transition: transform 0.3s; /* 変形の時間 */
}

/* ホバー時に幅を100%に */
.nav-item:hover::after {
  transform: scale(1,1); /* ホバー後、x軸方向に1(相対値）伸長 */
  transform-origin: left top; /* 左から右に向かう */
}
/* スクロール後の黒背景用 */
.site-header.scrolled .nav-item::after {
  background: #212529; /* 黒文字と合わせる */
}


.nav-item a, .dd-link {
    opacity: 1;
}
.caret{ 
    width:14px; 
    height:14px; 
    transition: transform .2s ease; 
}

/* ドロップダウンメニュー */
.has-dd {
  position:relative; 
  gap: 10px;
}
.dd-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 14px);
  min-width: 260px;
  background: #fff;
  color: #212529;
  box-shadow: 0 0 18px rgba(0,0,0,.1);
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
}
.dd-menu li {
    border-bottom: #ccc solid 1px;
    padding: 24px 20px;
}
.dd-menu li:last-child {
    border-bottom: none;
}
.dd-menu li a{
  display:flex; 
  align-items:center; 
  justify-content:space-between;
  gap:16px;
  color:#212529;
  letter-spacing:.07em;
}
.dd-menu li a:hover{ 
    background: #fff;
}
.dd-menu .arr{ 
    width:16px; 
    height:16px; 
}

/* 開閉中のスタイル */
.has-dd.open .dd-menu{ 
    opacity:1; 
    visibility:visible; 
    transform: translateY(0); 
}
.has-dd.open .caret{ 
    transform: rotate(180deg); }
.has-dd.open .dd-link img {
    transform: rotate(0);
}  
.has-dd.open .dd-toggle img {
  transform: rotate(0);      /* 開いたときに上向き */
}



/* メインビジュアル */
.mv {
  position: relative;
  overflow: visible;
  isolation: isolate;
  max-width: 100%;
}

.mv-txt {
  position: absolute;
  margin-left: 3.9%;
  width: 27%;
}

.mv-img{
  position: relative;
  width: 100%;
  min-height: clamp(34.375rem, 11.023rem + 49.75vw, 90.625rem);
  overflow: hidden;         /* ← ココで子要素を切る */
  /* Chromeでも安定するお守りセット */
  contain: paint;           /* この箱の中だけ再描画 */
  clip-path: inset(0);      /* 強制クリップ（transform中も安定） */
  transform: translateZ(0); /* レイヤー化で描画ズレ防止 */
}

.mv-bg {
  width: clamp(26.125rem, 12.234rem + 29.59vw, 61.25rem);
  position: absolute;
  right: 0;
}



#lower-pagetitle .mv-bg {
width: clamp(26.125rem, 13.638rem + 26.6vw, 45.563rem);
}
.mv-1 {
  position: absolute;
  width: 24%;
  top: clamp(4.688rem, 4.487rem + 0.43vw, 5rem); /* 80-75 */;
}

.mv-2 {
  position: absolute;
  left: 27.5%;
  top: clamp(9.875rem, 9.674rem + 0.43vw, 10.188rem);
  width: 45%;
}

.mv-3 {
  position: absolute;
  right: 4%;
  top: clamp(22.75rem, 12.735rem + 21.34vw, 46.875rem);
  width: 20%;
}

/* 初期状態 */
.mv-1, .mv-2, .mv-3 {
  display: block;
  opacity: 0;
  transform: scale(0.9) translateZ(0); /* ← GPUレイヤー化 */
  transform-origin: center center;
  will-change: transform, opacity;
  animation: fadeZoomIn 4s cubic-bezier(.22, .61, .36, 1) forwards;
}

/* 順番ディレイ */
.mv-1 { animation-delay: 0s; }
.mv-2 { animation-delay: 0.8s; }
.mv-3 { animation-delay: 1.8s; }

/* フェード＋ズームイン */
@keyframes fadeZoomIn {
  0%   { opacity: 0;   transform: scale(0.9) translateZ(0); }
  100% { opacity: 1;   transform: scale(1.0) translateZ(0); }
}

/* トップページ/features */
.top-features {
  max-width: 1322px;
  width: 83%;
  padding-left: 8%;
  padding-top: clamp(6.25rem, 4.323rem + 4.11vw, 9.25rem);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-features-left {
  width: 40%;
}
.top-features-right {
  width: 55%;
}

/* 初期は非表示 */
.fade-in-up,
.fade-in-up-2nd,
.fade-in-up-3rd,
.fade-in-up-4th
 { 
  opacity: 0; 
  transform: translateY(30px); 
}

/* 画面に入ったらキーフレームを適用 */
.fade-in-up.show {
  animation: fadeInUpKF 1s ease forwards;
}
/* 左：0.3秒遅らせて開始 */
.fade-in-up-2nd.show {
  animation: fadeInUpKF 1s ease forwards;
  animation-delay: 0.3s; /* ← 遅延を追加 */
}
/* 下：0.6秒遅らせて開始 */
.fade-in-up-3rd {
  animation: fadeInUpKF 1s ease forwards;
  animation-delay: 0.6s; /* ← 遅延を追加 */
}

/* 下：0.9秒遅らせて開始 */
.fade-in-up-4th {
  animation: fadeInUpKF 1s ease forwards;
  animation-delay: 0.9s; /* ← 遅延を追加 */
}

@keyframes fadeInUpKF {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.top-features-main {
  font-size: clamp(1.2rem, 0.567rem + 1.35vw, 2.188rem);
  line-height: 2;
  color: #ffffff;
  letter-spacing: 0.2em;
}
.top-features-main span {
  background-color: #009f95;
  padding: 3px clamp(0.813rem, 0.572rem + 0.51vw, 1.188rem) clamp(0.25rem, 0.09rem + 0.34vw, 0.5rem);
  white-space: nowrap;
  font-weight: 500;
}
.top-features-sub {
  color: #009f95;
  font-family: "Montserrat";
  margin-top: clamp(1.5rem, 0.858rem + 1.37vw, 2.5rem);
  font-size: clamp(0.875rem, 0.634rem + 0.51vw, 1.25rem);
  letter-spacing: 0.1em;
  font-weight: 500;
}

.top-features-txt {
  margin-top: clamp(1.25rem, -0.758rem + 4.28vw, 4.375rem);
}
.top-features-txt p {
  line-height: 2;
  letter-spacing: 0.15em;
  font-size: clamp(0.813rem, 0.732rem + 0.17vw, 0.938rem);
}
.btn-pill {
  width: clamp(15.313rem, 13.104rem + 4.7vw, 18.75rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
  border-radius: 9999px;
  background: #ffffff;
  color: #009f95;
  border: #009f95 1px solid;
  letter-spacing: 0.08em;
  margin-top: 32px;
}
.btn-pill .btn-label{
  width: 215px;
  text-align: center;
  white-space: nowrap;
  font-size: clamp(0.813rem, 0.732rem + 0.17vw, 0.938rem);
}

/* 矢印アイコンの枠 */
.btn-ico{
  position: relative;
  display: grid;
  place-items: center;
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  overflow: hidden; /* ← 枠外は隠す */
}

/* 矢印画像が枠いっぱいに収まる */
.btn-ico img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

/* 矢印を2枚重ねる（緑と白） */
.btn-ico .arrow-main,
.btn-ico .arrow-sub{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform .65s cubic-bezier(.22,.61,.36,1),
              opacity   .65s linear;
}

/* 初期：緑矢印は中央、白矢印は左外で透明 */
.btn-ico .arrow-main{
  transform: translateX(0);
  opacity: 1;
}
.btn-ico .arrow-sub{
  transform: translateX(-150%);
  opacity: 0;
}

/* hover時：ボタン背景色反転 */
.btn-pill:hover{
  background: #009f95;
  color: #fff;
}

/* hover時：緑は右に抜け、白が左から中央へ */
.btn-pill:hover .btn-ico .arrow-main{
  transform: translateX(150%);
  opacity: 0;
}
.btn-pill:hover .btn-ico .arrow-sub{
  transform: translateX(0);
  opacity: 1;
}

/* prefers-reduced-motion 対応 */
@media (prefers-reduced-motion: reduce){
  .btn-ico .arrow-main,
  .btn-ico .arrow-sub{
    transition: none !important;
    transform: translateX(0) !important;
    opacity: 1 !important;
  }
}

/* ボタン色反転（テキスト白） */
.btn-pill:hover{
  background: #009f95;
  color: #fff;
}


/* トップページ-事業紹介 */
/* セクション全体 */
.top-business-block{
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* 上の横長写真 */
.biz-hero{
  max-width: 100%;
  margin: 0 auto;
  padding-top: clamp(6.25rem, 2.235rem + 8.55vw, 12.5rem); /* 200-100 */
  position: relative;
  overflow: hidden; /* マスクがはみ出さないように */
}
.biz-hero img{
  display:block;
  width:87.5%;
  height: auto;      /* デザインに合わせて */
  object-fit: cover;
  margin-left: auto;
}

.exterior-features-bg,
.philosophy-section-inner-bg,
.repair-features-bg {
  position: relative;
  overflow: hidden; /* マスクがはみ出さないように */
}



/* 白いマスク */
.biz-hero::after,
.exterior-features-bg::after,
.philosophy-section-inner-bg::after,
.repair-features-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: translateX(0); /* 最初は全面を覆う */
  transition: transform 1.2s ease;
}
/* 表示されたときに付与するクラス */
.biz-hero.show::after,
.exterior-features-bg.show::after,
.philosophy-section-inner-bg.show::after,
.repair-features-bg.show::after {
  transform: translateX(100%); /* マスクが右へ抜ける */
}
/* マスクを左→右へ開く */
@keyframes maskReveal {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

/* 中央の白い説明ブロック（ヒーロー下に少し重ねる） */
.biz-intro{
  position: relative;
  z-index: 1;
  margin-top: -10%;  /* 画像と重ねる量 */
}
.biz-intro-inner{
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  background: #fff;
  padding: 6.3%;
  display: flex;
  justify-content: space-between;
  
}
.section-title .sectiontitle-en{
  display: block;
  margin: 0 0 clamp(0.563rem, -0.04rem + 1.28vw, 1.5rem);
  color: #009f95;
  font-weight: 600;
  font-family: "Montserrat", system-ui, sans-serif;
  letter-spacing: .1em;
  font-size: clamp(2rem, 0.795rem + 2.57vw, 3.875rem);
  line-height: 1;
}
.section-title .sectiontitle-ja{
  display: block;
  margin:0;
  font-size: clamp(0.875rem, 0.393rem + 1.03vw, 1.625rem);
  color:#1d1d1f;
  letter-spacing:0.15em;
}
.sectiontitle-ja .dash{
  display:inline-block;
  width:20px;
  height:3px;
  background: linear-gradient(to right,
              #009f95 0%,
              #009f95 50%,
              #e26931 50%,
              #e26931 100%);
  vertical-align: middle;
  margin-right:12px;
}
.biz-text {
    width: 61%;
}
.biz-text p{
  margin:0;
  color:#212529;
  letter-spacing: 0.15em;
  line-height:2;
  font-size: clamp(0.813rem, 0.732rem + 0.17vw, 0.938rem);
}

/* カード全体 */
.biz-cards{
  position: relative;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 0 6.3% 5%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 3%;
  z-index: 1; /* 帯より前面 */
}

/* ベージュ帯 */
.biz-cards::before{
  content:"";
  position:absolute;
  bottom:0;
  left: calc(-50vw + 50%); /* ← 画面左端に寄せるトリック */
  right: 0;
  background:#f2ebdb;
  height: clamp(4.725rem, -4.084rem + 18.77vw, 18.438rem);
  z-index:0;
}

/* カード */
.biz-card{
  position: relative;
  display:block;
  aspect-ratio: 1 / 1;      /* ← 正方形に */
  overflow:hidden;
  color:#fff;
  text-decoration:none;
  z-index:1;               /* ベージュ帯より前面 */
  /* ====== 初期（フェードアップ用） ====== */
  opacity: 0;
  transform: translateY(50px);
  will-change: transform, opacity;
}
/* 表示トリガーが付いたら再生（遅延はCSS変数で） */
.biz-card.is-in{
  animation: bizFadeUp 1.4s cubic-bezier(.22,.61,.36,1) forwards;
  animation-delay: var(--stagger, 0ms);
}
@keyframes bizFadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.biz-card-img{
  position:absolute; 
  inset:0;
  width:100%; 
  height:100%; 
  object-fit:cover;
  transform: scale(1.0);
  transition: transform 0.8s ease;
}
.biz-card:hover .biz-card-img{
  transform: scale(1.1);
}

.biz-card-body{
  position:absolute; left:16px; right:16px; bottom:14px;
  display:flex; align-items:center; justify-content:space-between;
}
.biz-title{
  margin:0;
  letter-spacing:.07em;
  color: #fff;
  font-size: clamp(0.875rem, 0.473rem + 0.86vw, 1.5rem);
}
.biz-cta{
  position: relative;
  width:clamp(2rem, 1.518rem + 1.03vw, 2.75rem);
  height:clamp(2rem, 1.518rem + 1.03vw, 2.75rem);
  border-radius:50%;
  border:1px solid #fff;
  display:grid;
  place-items:center;
  background: transparent;
  overflow:hidden; /* 丸枠外は隠す */
}
/* 矢印だけを見せる小さな表示枠（←これが“窓”） */
.biz-cta .arrow-wrap {
  position: relative;
  width:  clamp(0.813rem, 0.732rem + 0.17vw, 0.938rem); /* 矢印幅 */
  height: clamp(0.813rem, 0.732rem + 0.17vw, 0.938rem); /* 矢印高さ */
  overflow: hidden;   /* ここで矢印幅だけ見せる */
}

.recommend-inner .biz-cta .arrow-wrap {
  width: 12px;
}

/* 矢印画像（白1枚） */
.biz-cta .arrow-wrap img {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: auto;
  transform: translateY(-50%) translateX(0);
  opacity: 1;
  will-change: transform, opacity;
}
.recommend-inner .biz-cta .arrow-wrap img {
  width: 12px;
}
/* hover：一周して中央で止まる */
.biz-card:hover .biz-cta .arrow-wrap img{
  animation: bizArrowLoop .65s cubic-bezier(.22,.61,.36,1) forwards;
  /* GPUに乗せてカクつき防止 */
  will-change: transform, opacity;
}
/* X だけ走らせる（Y は固定） */
@keyframes bizArrowLoop{
  0%   { transform: translateY(-50%) translate3d(0,0,0);      opacity: 1; }
  35%  { transform: translateY(-50%) translate3d(120%,0,0);   opacity: 0; } /* 右に抜ける */
  36%  { transform: translateY(-50%) translate3d(-120%,0,0);  opacity: 0; } /* 左へ瞬間移動 */
  100% { transform: translateY(-50%) translate3d(0,0,0);      opacity: 1; } /* 中央で残る */
}

/* 低速化モード配慮 */
@media (prefers-reduced-motion: reduce){
  .biz-card:hover .biz-cta .arrow-wrap img{
    animation: none !important;
    transform: translateY(-50%) translate3d(0,0,0) !important;
    opacity: 1 !important;
  }
}

/* トップページ-会社概要 */
/* ===== レイアウト ===== */
.top-company-block{
  padding-top: clamp(5rem, 2.39rem + 5.56vw, 9.063rem);
  margin-bottom: 80px;
}

.company-inner{
  max-width: 1440px;
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 27.7% 1fr; /* 左：右 */
  gap: 5%;
  align-items: start;
}

/* ===== 左カラム ===== */


.company-text{
    margin-top: 64px;
    line-height: 2;
    letter-spacing: .15em;
    font-size: clamp(0.813rem, 0.732rem + 0.17vw, 0.938rem);
}

/* ===== 右カラム（2行のリンク） ===== */
.company-right{
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* 1行の構成： [thumb] [line] [title] [cta] */
.company-row{
  display: flex;
  align-items: center;
  gap: 24px;
  text-decoration: none;
}

.company-thumb{
  width: 36.7%;          /* サムネ横幅（調整OK） */
  object-fit: cover;
  display: block;
}

/* 画像とタイトルの間の細いライン（可変幅） */
.company-line{
    width: 11%;
    height: 1px;
    background: #ccc;   /* 薄いグレー */
    margin-left: -11%;
}

/* 見出し（英字＋和文） */
.company-title{
  display: inline-flex;
  flex-direction: column;
  min-width: 160px;      /* 折り返し防止、必要なら調整 */
}

.company-title .en{
  font-size: clamp(0.975rem, -0.005rem + 2.09vw, 2.5rem);
  letter-spacing: .1em;
  color: #212529;
  font-family: "Montserrat";
}

.company-title .ja{
  font-size: clamp(0.563rem, 0.041rem + 1.11vw, 1.375rem);
  color: #212529;
  letter-spacing: .15em;
  margin-top: clamp(0.625rem, 0.384rem + 0.51vw, 1rem);
}

/* ボタン本体 */
.company-btn{
  margin-left: auto;
  width: clamp(2rem, 0.675rem + 2.82vw, 4.063rem);
  height: clamp(2rem, 0.675rem + 2.82vw, 4.063rem);
  border-radius: 50%;
  border: 1px solid #009f95;
  display: grid;
  place-items: center;
  background: #fff;
  position: relative;
  transition: background .3s ease, border-color .3s ease;
  overflow: hidden; /* 丸枠外は隠す */
}

/* 矢印の表示枠（矢印サイズだけ見せる） */
.company-btn .arrow-wrap{
  position: relative;
  width: clamp(0.938rem, 0.9rem + 0.19vw, 1.125rem);
  height: clamp(0.938rem, 0.9rem + 0.19vw, 1.125rem);
  overflow: hidden;
}

/* 矢印画像が枠いっぱいに収まるようにする */
.company-btn .arrow-wrap img{
  width: 100%;
  height: 100%;
  display: block;        /* 余計な隙間防止 */
  object-fit: contain;   /* 歪ませたくない場合（SVGならそのままでもOK） */
}

/* 矢印共通：GPUに載せる */
.company-btn .arrow-main,
.company-btn .arrow-sub{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* 初期：緑矢印は中央、白矢印は左外で透明 */
.company-btn .arrow-main{
  transform: translateX(0);
  opacity: 1;
  transition: transform .65s cubic-bezier(.22,.61,.36,1),
              opacity   .65s linear;
}
.company-btn .arrow-sub{
  transform: translateX(-150%);
  opacity: 0;
  transition: transform .65s cubic-bezier(.22,.61,.36,1),
              opacity   .65s linear;
}

/* hover時：背景を緑に */
.company-row:hover .company-btn{
  background: #009f95;
  border-color: #009f95;
}

/* hover時：緑は右に抜け、白が左から入ってきてそのまま中央で止まる */
.company-row:hover .company-btn .arrow-main{
  transform: translateX(150%);
  opacity: 0;
}
.company-row:hover .company-btn .arrow-sub{
  transform: translateX(0);
  opacity: 1;
}

/* 低速化モード配慮（動きを無効化） */
@media (prefers-reduced-motion: reduce){
  .company-btn .arrow-main,
  .company-btn .arrow-sub{
    transition: none !important;
    transform: translateX(0) !important;
    opacity: 1 !important;
  }
}





/* フッター */
#fooetr {
    padding-top: 115px;
}

/* ===== 共通 ===== */
.site-footer{  color:#212529; }
.site-footer a{ color: inherit; text-decoration: none; }
.site-footer img{ display:block; }

/* ===== 上部ティール帯 ===== */
/* 帯本体（そのままでOK） */
.footer-topbar{
  background: #009f95;  /* ティール */
  padding:clamp(1.25rem, 0.969rem + 0.6vw, 1.688rem) 0;
  display:flex;
  justify-content:center;
  align-items:center;
  text-decoration:none;
}

/* ここが“窓”＝矢印だけ見せる枠 */
.footer-topbar .arrow-outer{
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  overflow: hidden;
  line-height: 0;
  vertical-align: middle;
}

/* 親は回転させない（←重要） */
.footer-topbar .arrow-inner{
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  /* transform: rotate(-90deg); は削除 */
}

/* 回転は img にだけ与える。
   変形順序は translateY(...) → rotate(-90deg) */
.footer-topbar .arrow-inner img{
  display: block;
  width: 100%;
  height: auto;
  transform: translateY(0) rotate(-90deg);
}

/* ホバー時のアニメ（上→下→中央で止まる） */
.footer-topbar:hover .arrow-inner img{
  animation: arrowUpDown 0.65s linear forwards;
}

/* 常に rotate(-90deg) を含める（順序：translateY → rotate） */
@keyframes arrowUpDown{
  0%   { transform: translateY(0)      rotate(-90deg); opacity: 1; }
  40%  { transform: translateY(-150%)  rotate(-90deg); opacity: 0; }
  60%  { transform: translateY(150%)   rotate(-90deg); opacity: 0; }
  100% { transform: translateY(0)      rotate(-90deg); opacity: 1; }
}







/* ===== 本体（ベージュ） ===== */
.footer-main{
  background:#f2ebdb;       /* ベージュ */
  padding: 80px 0;
  border-top: 1px solid rgba(0,0,0,.06);
}
.footer-inner{
  max-width: 1440px;
  width: 90%;
  margin: 0 auto;
  display:grid;
  grid-template-columns: 56% 1fr; /* 左：右 */
  gap: 48px;
  align-items:start;
}

/* 左：ロゴ/住所 */
.footer-brand .brand-logos{
  display:flex; 
  align-items:center; 
  gap:16px; 
  flex-wrap:wrap;
  margin-bottom: 16px;
  height: 40px;
}
.logo-woodjoy{ height:36px; width:auto; }
.logo-woodone{ height:20px; width:auto; }
.brand-caption{ font-size:12px; color:#3f3f3f; }

.footer-logo {
  width: 518px;
}
.address {
    margin-top:44px ; 
}

.address p{ 
    font-style: normal; 
    font-size:14px;
    line-height:2.143;
    letter-spacing:.15em; 
}

.map-link{ 
    display:inline-flex; 
    align-items:center; 
    gap:7px;
    letter-spacing:.15em;
    margin-top: 24px;
}
.ext-ico{ 
    transform: translateY(1px); 
}

/* 右：ナビ */
.footer-nav{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 7%;
}
.footer-nav .col{
    margin:0; 
    padding:24px 0; 
    border-top: 1px solid #212529 ;
    border-bottom: 1px solid #212529 ;
    border-top-color: rgba(0,0,0,0.2);
    border-bottom-color: rgba(0,0,0,0.2);
}
.col-left  .col:first-child,
.col-middle.col .col:first-child, 
.col-middle .col:first-child {
  border-bottom: none;
}


.footer-nav .col-title{
  position:relative;  /* 上下に余白 */
  font-size: clamp(0.813rem, 0.732rem + 0.17vw, 0.938rem);
  letter-spacing: 0.07em;
}

.footer-nav li + li{ 
    margin-top: 22px;
    font-size: 13px;
 }
.footer-nav a:not(.col-title a){
  position:relative;
  padding-left: 16px;
}
.footer-nav a:not(.col-title a)::before {
  content:""; 
  position:absolute; 
  left:0; 
  top:0.7em;
  width:8px; 
  height:2px; 
  background:#009f95;
}
/* hover時 */
.footer-nav a:hover {
  color: #009f95;
}

/* ===== コピーライト（濃いめベージュ帯） ===== */
.footer-bottom{
  background:#e6d9bc;
  padding: 20px 0;
  text-align:center;
}
.footer-bottom p{
  margin:0; 
  font-size:14px; 
  letter-spacing:.15em; 
  color:#212529;
}


/* 下層ページ */
/* buisines-事業紹介 */

#lower-pagetitle .mv-bg{
  z-index: -1;
}
.lowerpage-title {
  padding-top: 132px;
  width: 100%;
}

.lowerpage-title-inner {
  max-width: 1440px;
  width: 90%;
  margin: 0 auto;
}
.lowerpage-title-h2 {
  display: flex;
  align-items: flex-start; /* 上揃え */
  gap: clamp(0.625rem, -0.017rem + 1.37vw, 1.625rem); /* 線とテキストの余白 */
  align-items: stretch;
}
.lowerpage-title-line {
  width: 5px; /* 線の太さ */
  height: auto;
  background: linear-gradient(#009f95 50%, #e26931 50%);
  /* テキストに高さを合わせる */
  margin-top: 0.75%; /* ちょっと下げて調整 */
}
.lowerpage-title-texts .lowerpage-title-en {
  display: block;
  font-family: "Montserrat";
  font-size: clamp(2.188rem, 0.983rem + 2.57vw, 4.063rem);
  letter-spacing: .1em;
  color: #009f95;
  font-weight: 600;
}
.lowerpage-title-texts .lowerpage-title-ja {
  display: block;
  font-size: clamp(1.125rem, 0.723rem + 0.86vw, 1.75rem);
  letter-spacing: .2em;
  margin-top: clamp(0.375rem, 0.094rem + 0.6vw, 0.813rem);
  color: #212529;
}
.page-title-img {
  width: 100%;
  margin-top: clamp(1.125rem, 0.001rem + 2.4vw, 2.875rem);
}

.page-title-img-main {
  width: 100%;
  margin: 0 auto;
}
.pagetop-txt {
  max-width: 1200px;
  width: 75%;
  margin: 0 auto;
  padding-top: clamp(7.5rem, 2.601rem + 10.44vw, 15.125rem);
}


.pagetop-txt-title {
  font-size: clamp(1rem, 0.358rem + 1.37vw, 2rem);
  line-height: 1.563;
  letter-spacing: .2em;
  font-weight: 500;
}

.pagetop-maintxt {
  font-size: clamp(0.813rem, 0.732rem + 0.17vw, 0.938rem);
  line-height: 2;
  letter-spacing: .15em;
  margin-top: clamp(1rem, 0.036rem + 2.05vw, 2.5rem);
}

.biz-list {
  max-width: 1200px;
  width: 75%;
  margin: 0 auto;
  padding-top: clamp(3.875rem, -0.06rem + 8.38vw, 10rem);
}

/* buisines-事業紹介 */
/* 事業一覧 */
.biz-list-content {
  margin-top: clamp(3.75rem, 1.742rem + 4.28vw, 6.875rem);
}

.biz-list-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: clamp(6.25rem, 4.042rem + 4.7vw, 9.688rem);
}

.biz-list-inner:nth-child(even) {
  flex-direction: row-reverse;
}


.biz-list-inner:first-child {
  margin-top: 0;
}
.biz-list-inner:last-child {
  padding-bottom: clamp(1.587rem, -0.003rem + 3.39vw, 4.063rem);
}
.biz-list-wrap {
  position: relative;
  width: 38.4%;
  margin-left: clamp(12px, 2vw, 30px);
}

.biz-list-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  position: relative;
  z-index: 1; /* 画像を前面に */
}

/* ベージュ背景を span で配置 */
.biz-list-img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(5.875rem, -0.027rem + 12.57vw, 15.063rem);            
  background: #f2ebdb;
  z-index: 0;
  transform: translate(
  clamp(-30px, -2vw, -12px),
  clamp(-38px, -3vw, -18px)
);
}

/* 偶数行は反転 */
.biz-list-inner:nth-child(even) .biz-list-img-bg {
  transform: translate(
    clamp(12px, 2vw, 30px),   /* X方向 */
    clamp(-38px, -3vw, -18px) /* Y方向 */
  );
}

.biz-list-inner:nth-child(even) .biz-list-wrap {
  margin-left: 0;
  margin-right: clamp(12px, 2vw, 30px);
}



/* ===== 右：テキストブロック ===== */
.biz-list-txt-wrap {
  width: 53.3%;
  margin-top: clamp(-38px, -3vw, -12px);
}

.biz-list-txt-wrap:nth-child(odd) {
  margin-top: 0;
}
.biz-list-name {
  font-size: clamp(1.125rem, 0.442rem + 1.45vw, 2.188rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #212529;
  border-bottom: 4px solid #009f95; /* タイトル下にライン */
  display: inline-block;
  padding-bottom: clamp(0.625rem, 0.223rem + 0.86vw, 1.25rem);
  width: 100%;
}

.biz-list-txt {
  margin-top: clamp(0.975rem, -0.005rem + 2.09vw, 2.5rem);
  font-size: clamp(0.813rem, 0.732rem + 0.17vw, 0.938rem);
  line-height: 2;
  letter-spacing: .15em;
}

#lower-business-biz-list .btn-pill {
  margin-top: clamp(1rem, -0.044rem + 2.22vw, 2.625rem);
}

.pankuzu {
  max-width: 1200px;
  width: 90%;
  margin: 80px auto 58px;
}


.pankuzu.repair-pankuzu,
.pankuzu.features-pankuzu {
  margin-top: 140px;
}

.pankuzu.privacy-pankuzu {
  margin: 135px auto 54px;
}

.pankuzu-inner {
  display: flex;
  gap: 10px;
  align-items: center;
}

.pankusu-border {
  width: clamp(0.731rem, -0.004rem + 1.57vw, 1.875rem);
  height: 1px;
  background-color: #bbbbbb;
}

.pankusu-1p {
  color: #bbbbbb;
  font-size: clamp(0.813rem, 0.692rem + 0.26vw, 1rem);
  letter-spacing: .1em;
  line-height: 1.5;
}
.pankusu-2p {
  color: #009f95;
  font-size: clamp(0.813rem, 0.692rem + 0.26vw, 1rem);
  letter-spacing: .01em;
  line-height: 1.5;
}

/* 事業紹介-不動産事業ページ */

.pagetop-inner.plus-img {
  background-color: white;
  padding: clamp(1.375rem, -0.03rem + 2.99vw, 3.563rem) clamp(2.487rem, -0.01rem + 5.32vw, 6.375rem) clamp(1.587rem, -0.003rem + 3.39vw, 4.063rem) clamp(1.587rem, -0.003rem + 3.39vw, 4.063rem);
  max-width: 727px;
  width: 46.7%;
  margin-left: -95px;
  margin-top: clamp(6.688rem, 3.556rem + 6.67vw, 11.563rem);
  z-index: 1;
}
.pagetop-wrap {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.pagetop-img-left {
  width: 47.5%;
  margin-top: clamp(-93px, calc(-36px + (-57 * ((100vw - 751px) / 1169))), -36px);
}
.pagetop-img-right {
  width: 15.4%;
  margin-left: auto;
}
.pagetop-img-left-sp {
  display: none;
}



/* 内装補修事業のセクション */
.request-section {
  max-width: 1920px;
  width: 100%;
  padding-top: clamp(2.563rem, -0.007rem + 5.47vw, 6.563rem);
  position: relative;
  margin: 0 auto;
}

.request-container {
  max-width: 1200px;
  width: 75%;
  margin: 0 auto;
}
.request-txt {
  font-size: clamp(0.813rem, 0.732rem + 0.17vw, 0.938rem);
  letter-spacing: .15em;
  line-height: 2;
  margin: clamp(0.975rem, -0.005rem + 2.09vw, 2.5rem) 0;
}

.btn-request {
  /* width: clamp(12.5rem, 6.076rem + 13.69vw, 22.5rem); */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: clamp(0.731rem, -0.004rem + 1.57vw, 1.875rem);
  padding-right: clamp(0.731rem, -0.004rem + 1.57vw, 1.875rem);
  padding-bottom: clamp(0.731rem, -0.004rem + 1.57vw, 1.875rem);
  padding-left: clamp(2.094rem, -0.014rem + 4.49vw, 5.375rem);
  border-radius: 9999px;
  background: #e26931;
  border: #e26931 1px solid;
  letter-spacing: 0.08em;
  margin-top: 32px;
  margin: clamp(1.413rem, -0.009rem + 3.03vw, 3.625rem) 0;
  gap: 44px;
}
.btn-request .btn-label{
  width: clamp(12.5rem, 6.076rem + 13.69vw, 22.5rem);
  text-align: center;
  white-space: nowrap;
  font-size: clamp(0.75rem, 0.429rem + 0.68vw, 1.25rem);
  color: #fff;
}

.request-bottom .btn-ico {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #fff; /* ←ここで色変更 */
  -webkit-mask: url("/assets/img/icon-link.svg") no-repeat center;
  -webkit-mask-size: contain;
  mask: url("/assets/img/icon-link.svg") no-repeat center;
  mask-size: contain;
}
.request-bottom .btn-ico img {
  display: none; /* <img> を消す */
}

.request-bottom-img {
  z-index: 1;
}

.request-bottom {
  text-align: center;
}

/* =========================
   ホバー時：反転
========================= */
.btn-request:hover {
  background: #fff;
  border-color: #e26931;
}
.btn-request:hover .btn-label {
  color: #e26931;
}
.btn-request:hover .btn-ico {
  background-color: #e26931;
}

.sp-border {
   display: none;
}
/* ベージュ背景 */

.request-bg {
  position: absolute;
  bottom: 0;
  right: calc(-50vw + 50%);
  width: 90vw;
  height: clamp(7.563rem, -0.026rem + 16.17vw, 19.375rem);
  background: #f2ebdb;
  z-index: -1;
}

.figure-section {
  max-width: 1440px;
  width: 75%;
  margin: 0 auto;
  padding-top: 55px;
  position: relative;
  text-align: center;
}

.figure-bg {
  position: absolute;
  bottom: 0;
  right: calc(-50vw + 50%);
  width: 90vw;
  height: clamp(15.5rem, 13.011rem + 5.3vw, 19.375rem);
  background: #f2ebdb;
  z-index: -1;
}

.figure-section-top-txt {
  font-size: clamp(1rem, 0.438rem + 1.2vw, 1.875rem);
  line-height: 1.666;
  letter-spacing: .2em;
  font-weight: 500;
  margin-bottom: 48px;
}
/* 並び部分 */
.figure-container {
  max-width: 1000px;
  width: 70%;
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
  gap: 5%; 
}
/* 1つのボックス */
.figure-box {
  width: 42%;
  text-align: center;
}
/* 円 */
.figure-box-inner {
  background-color: #009f95;
  width: clamp(10.25rem, -0.029rem + 21.9vw, 26.25rem);
  height: clamp(10.25rem, -0.029rem + 21.9vw, 26.25rem);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.figure-section-inner {
  max-width: 1200px;
  width: 75%;
  margin: 0 auto;
}
.figure-box-inner p {
  font-size: clamp(0.856rem, 0.121rem + 1.57vw, 2rem);
  letter-spacing: .2em;
  line-height: 1.666;
  text-align: center;
  font-weight: 500;
  color: #ffffff;
}

.figure-box-txt-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.588rem, 0.001rem + 1.25vw, 1.5rem);
}
.figure-box-txt-container {
  max-width: 1000px;
  width: 70%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.figure-box-txt {
  width: 42%;
  font-size: clamp(0.813rem, 0.732rem + 0.17vw, 0.938rem);
  letter-spacing: .15em;
  line-height: 2;
  text-align: left;
  margin-top: clamp(0.856rem, 0.001rem + 1.82vw, 2.188rem);
  padding-bottom: clamp(1.688rem, -0.039rem + 3.68vw, 4.375rem);
}
.figure-box-inner img {
  width: clamp(3.063rem, 0.011rem + 6.5vw, 7.813rem);
  height: auto;
}
.figure-cross {
  flex: 0 0 auto;
  width: 6%;    
  position: relative;
}

.figure-cross::before,
.figure-cross::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;          /* 線の太さ */
  background-color: #999; /* 色は調整可能 */
  transform-origin: center;

}

.figure-cross::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.figure-cross::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}



/* 不動産事業-事業内容 */
.description-section {
  width: 100%;
  padding-top: clamp(4.875rem, -0.024rem + 10.44vw, 12.5rem);
  /* position: relative; */
}
.description-inner {
  max-width: 1440px;
  width: 75%;
  margin: 0 auto;
  position: relative;
}
.section-top-txt {
  font-size: clamp(1.25rem, 0.768rem + 1.03vw, 2rem);
  line-height: 1.562;
  letter-spacing: .2em;
  font-weight: 500;
  margin-top: 50px;
  margin-bottom: clamp(1rem, 0.036rem + 2.05vw, 2.5rem);
}
.section-main-txt {
  font-size: clamp(0.813rem, 0.732rem + 0.17vw, 0.938rem);
  line-height: 2;
  letter-spacing: .15em;
}
#description .section-title {
  margin: 0 clamp(2.925rem, -0.014rem + 6.26vw, 7.5rem);
}
.section-top-txt-container {
  margin: 0 clamp(2.925rem, -0.014rem + 6.26vw, 7.5rem);
}



/* 事業内容-3つの円 */
.business-triangle {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: clamp(1.938rem, -0.03rem + 4.19vw, 5rem);
  margin: 0 clamp(2.925rem, -0.014rem + 6.26vw, 7.5rem);
}

/* 背景画像（家族写真） */
.triangle-bg {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
}
.triangle-bg img {
  width: 56%;
  height: auto;
  margin: 97px auto 0;
}

/* 各円 */
.circle {
  position: relative;
  background: #009f95;
  border-radius: 50%;
  width: clamp(10.625rem, 0.587rem + 21.39vw, 26.25rem);
  height: clamp(10.625rem, 0.587rem + 21.39vw, 26.25rem);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
   /* ====== 初期（フェードアップ用） ====== */
  opacity: 0;
  transform: translateY(50px);
  will-change: transform, opacity;
}

/* 表示トリガーが付いたら再生（遅延はCSS変数で） */
.circle.is-in{
  animation: bizFadeUp 1.4s cubic-bezier(.22,.61,.36,1) forwards;
  animation-delay: var(--stagger, 0ms);
}
@keyframes bizFadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.circle-img {
  margin-bottom: clamp(0.975rem, -0.005rem + 2.09vw, 2.5rem);
  display: flex;
  align-items: center;   /* 垂直中央 */
  justify-content: center; /* 水平中央 */
  height: clamp(2.813rem, 0.042rem + 5.9vw, 7.125rem); /* レスポンシブに可変 */
}
.circle-img img {
  max-height: 100%;  /* divの高さに収まるように */
  height: auto;      /* 縦横比を維持 */
}
.circle-title{
  font-size: clamp(0.781rem, -0.002rem + 1.67vw, 2rem);
  margin-bottom: 3px;
  line-height: 1.562;
  letter-spacing: .15em;
  color: #ffffff;
  font-weight: 500;
}
.circle-txt {
  font-size: clamp(0.469rem, 0.047rem + 0.9vw, 1.125rem);
  line-height: 1.666;
  letter-spacing: .15em;
  color: #ffffff;
}

.circles-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  padding: 0 clamp(1.169rem, -0.008rem + 2.51vw, 3rem);
}
.circle.top {
  margin-bottom: 17px;
}

/* モデルハウスの役割 */
.modelhouse-role {
  padding-top: clamp(2.925rem, -0.014rem + 6.26vw, 7.5rem);
  margin: 0 clamp(2.925rem, -0.014rem + 6.26vw, 7.5rem);
}

.modelhouse-role-title {
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.modelhouse-role-title p {
  font-size: clamp(1.25rem, 0.768rem + 1.03vw, 2rem);
  line-height: 1.562;
  letter-spacing: .2em;
  font-weight: 500;
  color: #009f95;
  display: inline-block;
  white-space: nowrap;
}
.modelhouse-role-title-border {
  height: 1px; /* 線の太さ */
  width: 30%; /* 線の長さ */
  background-color: #ccc; /* 線の色 */
  border-bottom: 1px solid #ccc; /* 線の太さや種類、色を指定 */
}

.modelhouse-role-title::before {
  left: 0; /* 左端に配置 */
  transform: translateY(-50%); /* 垂直方向に中央揃え */
}
.modelhouse-role-title::after {
  right: 0; /* 右端に配置 */
  transform: translateY(-50%); /* 垂直方向に中央揃え */
}
.modelhouse-role-cards {
  display: flex;
  justify-content: space-between;
  margin-top: clamp(1.025rem, -0.003rem + 2.19vw, 2.625rem);
  padding-bottom: clamp(1.85rem, -0.013rem + 3.97vw, 4.75rem);
  justify-items: center;
}
.modelhouse-role-card {
  width: 31.25%;
}

/* 通常は即表示（アニメなし） */
.swiper-slide { 
  opacity: 1; 
  transform: none; 
}


.role-card-img,
.swiper .will-fade {
  /* ====== 初期（フェードアップ用） ====== */
  opacity: 0;
  transform: translateY(50px);
  will-change: transform, opacity;
}
/* 表示トリガーが付いたら再生（遅延はCSS変数で） */
.role-card-img.is-in,
.swiper.anim-start .swiper-slide.will-fade {
  animation: bizFadeUp 1.4s cubic-bezier(.22,.61,.36,1) forwards;
  animation-delay: var(--stagger, 0ms);
}
@keyframes bizFadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.role-card-img img{
  width: 100%;
  height: auto;       /* ← 高さを自動にして縦伸び防止 */
}
.role-card-title {
  font-size: clamp(1rem, 0.839rem + 0.34vw, 1.25rem);
  letter-spacing: .15em;
  font-weight: 500;
  margin-top: clamp(0.75rem, 0.027rem + 1.54vw, 1.875rem);
}
.role-txt {
  font-size: clamp(0.813rem, 0.732rem + 0.17vw, 0.938rem);
  line-height: 2;
  letter-spacing: .15em;
  margin-top: clamp(0.75rem, 0.027rem + 1.54vw, 1.875rem);
}

/* ベージュ背景 */
.description-bg {
  position: absolute;
  bottom: 0;
  left: calc(-50vw + 50%);
  width: 90vw;  
  height: 402px;
  background: #f2ebdb;
  z-index: -1;
}

/* 物件紹介 */

.introduction-section {
  width: 100%;
  padding-top: clamp(4.875rem, -0.024rem + 10.44vw, 12.5rem);
  position: relative;
}

.introduction-section.exterior-intro {
  padding-top: clamp(2.688rem, -0.003rem + 5.73vw, 6.875rem);
}

.introduction-inner {
  max-width: 1200px;
  width: 62%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

/* スライド全体 */
.swiper {
  width: 81.25%;
  margin-left: auto!important;
  margin-right: 0 !important;
  padding: clamp(1.219rem, -0.006rem + 2.61vw, 3.125rem) 0 !important;
  position: relative !important;
}



/* スライド */
.swiper-slide {
  background: #fff;
  box-sizing: border-box;
  text-align: left;
  border: none;   /* ← ボーダー削除 */
  width: 37.1% !important; /* 固定幅 */
}

/* ボタン全体の配置 */
.swiper-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0.588rem, 0.001rem + 1.25vw, 1.5rem); /* 矢印と区切りの間隔 */
  margin-bottom: clamp(0.625rem, -0.017rem + 1.37vw, 1.625rem);
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev::after,
.swiper-button-next::after {
  bottom: 0;
  content: "" !important; /* デフォルトの矢印を消す */
  height: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 0;
}

/* 前への矢印カスタマイズ */
.swiper-button-prev { 
  position: static !important; /* Swiperデフォルト位置を解除 */
  width: clamp(2.5rem, 1.898rem + 1.28vw, 3.438rem) !important;
  height: clamp(2.5rem, 1.898rem + 1.28vw, 3.438rem) !important;
  border: 1px solid #009f95; /* 緑の枠線 */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}

.swiper-button-prev img,
.swiper-button-next img {
  width: 15px;
  height: 15px;
}

/* 次への矢印カスタマイズ */
.swiper-button-next {
  position: static !important; /* Swiperデフォルト位置を解除 */
  width: clamp(2.5rem, 1.898rem + 1.28vw, 3.438rem) !important;
  height: clamp(2.5rem, 1.898rem + 1.28vw, 3.438rem) !important;
  border: 1px solid #009f95; /* 緑の枠線 */
  border-radius: 50%;
  color: #009f95;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}

:root {
  --swiper-navigation-size: none !important; /* 矢印サイズ */
}

.swiper-button-prev img {
  rotate: 180deg; /* 左向きに回転 */
}

/* 真ん中の縦線 */
.divider {
  width: 1px;
  height: clamp(1.875rem, 0.871rem + 2.14vw, 3.438rem);
  background-color: #009f95;
  display: inline-block;
}

/* ページネーション（分数表示） */
.swiper-pagination {
  position: static !important;
  text-align: center;
  font-size: clamp(1rem, 0.839rem + 0.34vw, 1.25rem);
  margin-top: 4px;
}


.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}




.card-title {
  font-size: clamp(1rem, 0.839rem + 0.34vw, 1.25rem);
  font-weight: 500;
  margin: clamp(0.688rem, 0.005rem + 1.45vw, 1.75rem) 0;
  letter-spacing: .15em;
}
.card-txt {
  font-size: clamp(0.813rem, 0.732rem + 0.17vw, 0.938rem);
  line-height: 2;
  letter-spacing: .15em;
}


/* 関連コンテンツ */
/* 背景 */
.recommend-section {
  position: relative;
  padding: 80px 0;
  color: #fff;
  text-align: center;
  margin-bottom: 2px;
}
.inttoduction-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.inttoduction-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recommend-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

/* タイトル */
.recommend-title {
  margin-bottom: 40px;
}
.recommend-maintitle {
  font-size: clamp(1.219rem, -0.006rem + 2.61vw, 3.125rem);
  font-weight: 600;
  letter-spacing: .1em;
  color: #fff;
  font-family: "Montserrat";
}
.recommend-subtitle {
  margin-top: clamp(0.5rem, 0.018rem + 1.03vw, 1.25rem);
  margin-bottom: clamp(0.856rem, 0.001rem + 1.82vw, 2.188rem);
  font-size: clamp(0.938rem, 0.737rem + 0.43vw, 1.25rem);
  letter-spacing: .15em;
  color: #fff;
}

/* カード一覧 */
.recommend-cards {
  display: grid;
  justify-content: center;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.recommend-card {
  position: relative;
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}
.recommend-card-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s ease;
}
.recommend-card:hover .recommend-card-img {
  transform: scale(1.05);
}

/* テキスト＋ボタン */
.recommend-card-body {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.recommend-inner-title {
  font-size: clamp(1rem, 0.759rem + 0.51vw, 1.375rem);
  font-weight: 500;
  letter-spacing: .07em;
  margin: 0;
  color: #fff;
}

.biz-cta{
  position: relative;
  width:clamp(2rem, 1.518rem + 1.03vw, 2.75rem);
  height:clamp(2rem, 1.518rem + 1.03vw, 2.75rem);
  border-radius:50%;
  border:1px solid #fff;
  display:grid;
  place-items:center;
  background: transparent;
  overflow:hidden; /* 丸枠外は隠す */
}
/* 矢印だけを見せる小さな表示枠（←これが“窓”） */
.biz-cta .arrow-wrap {
  position: relative;
  width:  clamp(0.813rem, 0.732rem + 0.17vw, 0.938rem); /* 矢印幅 */
  height: clamp(0.813rem, 0.732rem + 0.17vw, 0.938rem); /* 矢印高さ */
  overflow: hidden;   /* ここで矢印幅だけ見せる */
}


/* hover：一周して中央で止まる */
.recommend-card:hover .biz-cta .arrow-wrap img{
  animation: bizArrowLoop .65s cubic-bezier(.22,.61,.36,1) forwards;
  /* GPUに乗せてカクつき防止 */
  will-change: transform, opacity;
}
/* X だけ走らせる（Y は固定） */
@keyframes bizArrowLoop{
  0%   { transform: translateY(-50%) translate3d(0,0,0);      opacity: 1; }
  35%  { transform: translateY(-50%) translate3d(120%,0,0);   opacity: 0; } /* 右に抜ける */
  36%  { transform: translateY(-50%) translate3d(-120%,0,0);  opacity: 0; } /* 左へ瞬間移動 */
  100% { transform: translateY(-50%) translate3d(0,0,0);      opacity: 1; } /* 中央で残る */
}

/* 低速化モード配慮 */
@media (prefers-reduced-motion: reduce){
  .biz-card:hover .biz-cta .arrow-wrap img{
    animation: none !important;
    transform: translateY(-50%) translate3d(0,0,0) !important;
    opacity: 1 !important;
  }
}

.pagetop-img-bottom {
  margin-top: clamp(0.975rem, -0.005rem + 2.09vw, 2.5rem);
}

/* トップテキスト画像3枚 */
/* 内装補修事業・エクステリア事業 */

.pagetop-txt.img3pcs {
  padding-top: clamp(8.75rem, 3.731rem + 10.69vw, 16.563rem);
}

#img3-pagetop .pagetop-inner,
#img3-pagetop .pagetop-inner {
  margin-left: 0;
  padding: 0 0 0 clamp(1.938rem, -0.03rem + 4.19vw, 5rem);
  margin-top: clamp(1.9rem, -0.011rem + 4.07vw, 4.875rem);
}

/* トップページ画像2枚 */
.pagetop-txt.img2pcs {
  padding-top: clamp(7.75rem, 2.771rem + 10.61vw, 15.5rem);
}

/* featuresセクション */

.exterior-features-section,
.repair-features-section {
  width: 100%;
  padding-top: clamp(4.388rem, -0.021rem + 9.39vw, 11.25rem);
  margin: 0 auto;
}

.exterior-features-section .section-title,
.repair-features-section .section-title {
  max-width: 1200px;
  width: 62%;
  margin: 0 auto clamp(1.319rem, -0.002rem + 2.81vw, 3.375rem);
}


.exterior-features-bg,
.repair-features-bg {
  width: 87.5%;
  z-index: -1;
}

.exterior-features-bg img,
.repair-features-bg img {
  width: 100%;
}


.exterior-features-txt,
.repair-features-txt {
  max-width: 1880px;
  width: 82%;
  margin: clamp(-140px, calc(-0.05128 * 100vw - 41.54px), -80px) 0 0 auto;
  background-color: #ffffff;
}

.exterior-features-txt p,
.repair-features-txt p {
  font-size: clamp(0.813rem, 0.732rem + 0.17vw, 0.938rem);
  line-height: 2;
  letter-spacing: .15em;
  z-index: 1;
  padding: clamp(1.938rem, -0.03rem + 4.19vw, 5rem) 0 clamp(1.938rem, -0.03rem + 4.19vw, 5rem) clamp(3.625rem, 1.939rem + 3.59vw, 6.25rem);
  background-color: #fff;
  max-width: 980px;
  width: 68%;
}

/* 下層 ウッドジョイの強み */
.strengths-section {
  max-width: 1440px;
  width: 89.3%;
  margin: 0 auto;
  padding-top: clamp(3.294rem, -0.011rem + 7.04vw, 8.438rem);
}

.strengths-section-cotainer {
  width: 100%;
  margin: 0 auto;
}

.strengths-section-cotainer .section-title {
  width: 83.3%;
  margin: 0 auto;
}

.strengths-title-img {
  padding-top:clamp(1.413rem, -0.009rem + 3.03vw, 3.625rem); 
  z-index: 1;
  position: relative;
}

.strengths-contents {
  position: relative;
  background-color: #fff;
  padding: clamp(1.938rem, -0.03rem + 4.19vw, 5rem) clamp(2.438rem, -0.012rem + 5.22vw, 6.25rem);
  margin: clamp(-146px, calc(-0.07612 * 100vw + 0.16px), -57px) auto 0;
  max-width: 1200px;
  width: 69.4%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(5rem, 3.394rem + 3.42vw, 7.5rem);
}

.strengths-content-title-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 16px;
}

.strengths-content-title .content-number {
  display:grid;
  place-items: center;
  font-size: clamp(1.125rem, 0.723rem + 0.86vw, 1.75rem);
  color: #fff;
  background-color: #009f95;
  width: clamp(1.688rem, 0.764rem + 1.97vw, 3.125rem);
  height: clamp(1.688rem, 0.764rem + 1.97vw, 3.125rem);
  font-family: "Montserrat";
}

.strengths-content-title {
  display: flex;
  align-items: end;
  gap: 16px;
}

.strengths-content-title .content-maintitle {
  display: block;
  font-size: clamp(1.25rem, 0.527rem + 1.54vw, 2.375rem);
  letter-spacing: .15em;
  color: #009f95;
  line-height: 1.4;
}
.content-subtitle {
  display: block;
  font-size: clamp(0.875rem, 0.554rem + 0.68vw, 1.375rem);
  letter-spacing: .15em;
  color: #009f95;
  line-height: 1.7;
}
.strengths-inner-txt {
  font-size: clamp(0.813rem, 0.732rem + 0.17vw, 0.938rem);
  line-height: 2;
  letter-spacing: .15em;
  margin-top: clamp(0.588rem, 0.001rem + 1.25vw, 1.5rem);
  margin-bottom: clamp(2.75rem, 2.108rem + 1.37vw, 3.75rem);
}
.strengths-inner-txt .green-txt,
.philosophy-section-txt .green-txt {
  color: #009f95;
}

.strengths-content-img-wrap {
  position: relative;
  width: 100%;
}
.strengths-content-img {
  display: block;
  width: 96%;
  height: auto;
  object-fit: cover;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

/* ベージュ背景を span で配置 */
.strengths-img-bg-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 36.4%;
  height: clamp(4.463rem, -0.018rem + 9.55vw, 11.438rem);            
  background: #f2ebdb;
  z-index: 0;
  transform: translate(
  0,
  clamp(-20px, -3vw, -8px)
);
}
.strengths-img-bg-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36.4%;
  height: clamp(4.463rem, -0.018rem + 9.55vw, 11.438rem);            
  background: #f2ebdb;
  z-index: 0;
  transform: translate(
  0,
  clamp(20px, -3vw, 8px)
);
}

/* 企業理念 */
.message {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding-top: clamp(5.85rem, -0.028rem + 12.52vw, 15rem);
}

.message-wrap {
  max-width: 1200px;
  width: 75%;
  margin: 0 auto;
}
.message-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: clamp(1.319rem, -0.002rem + 2.81vw, 3.375rem);
}
.message-txt {
  width: 56%;
  font-size: clamp(0.813rem, 0.732rem + 0.17vw, 0.938rem);
  line-height: 2;
  letter-spacing: .15em;
}
.message-txt .message-name {
  font-size: clamp(0.875rem, 0.554rem + 0.68vw, 1.375rem);
}
.message-img {
  width: 38%;
}

#philosophy-section {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding-top: clamp(4.388rem, -0.021rem + 9.39vw, 11.25rem);
}
#mission-section {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding-top: clamp(2.438rem, -0.012rem + 5.22vw, 6.25rem);
}
#vision-section {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding-top: clamp(4.625rem, -0.033rem + 9.92vw, 11.875rem);
}

.philosophy-section-inner {
  max-width: 1920px;
  width: 100%;
  margin: clamp(1.462rem, -0.007rem + 3.13vw, 3.75rem) auto 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.philosophy-section-inner-bg {
  width: 47.9%;
  z-index: -1;
}

#philosophy-section .section-title,
#mission-section .section-title,
#vision-section .section-title {
  max-width: 1200px;
  width: 75%;
  margin: 0 auto;
}

.philosophy-section-txt {
  z-index: 1;
  padding: clamp(1.938rem, -0.03rem + 4.19vw, 5rem) clamp(8.775rem, -0.042rem + 18.79vw, 22.5rem) clamp(1.938rem, -0.03rem + 4.19vw, 5rem) clamp(2.438rem, -0.012rem + 5.22vw, 6.25rem);
  width: 37.2%;
  margin: clamp(5.438rem, -0.023rem + 11.63vw, 13.938rem) 0 0 -68.2%;
  background-color: #fff;
}

.philosophy-section-txt p {
  font-size: clamp(0.813rem, 0.732rem + 0.17vw, 0.938rem);
  line-height: 2;
  letter-spacing: .15em;
}
.philosophy-section-txt .philosophy-section-txt-main {
  font-size: clamp(1.063rem, 0.781rem + 0.6vw, 1.5rem);
}

.reverse .philosophy-section-txt {
  height: auto;
  margin: clamp(-24px, calc(-0.01249 * 100vw - 0.02px), -9.4px) -68.2% 0 0;
  padding: 0 clamp(1.938rem, -0.03rem + 4.19vw, 5rem) clamp(1.938rem, -0.03rem + 4.19vw, 5rem) clamp(5.875rem, -4.805rem + 22.75vw, 22.5rem);
}


.company-profile {
  max-width: 1200px;
  width: 75%;
  margin: 0 auto;
  padding: clamp(5.125rem, -0.014rem + 10.95vw, 13.125rem) 0 0;
}

.company-profile-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(1.938rem, -0.03rem + 4.19vw, 5rem);
  width: 100%;
  margin: 0 auto;
  align-items: stretch; /* ←高さを揃える */
}

.company-profile-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 37px 0;
}

/* 下線をグラデーションにする */
.company-profile-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #009f95 0 10px, #cccccc 10px 100%);
}

.company-profile-item:first-child::before,
.company-profile-item:nth-child(2)::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, #009f95 0 10px, #cccccc 10px 100%);
  margin-bottom: 37px; /* 下線の余白 */
}

.company-profile-item .label {
  flex: 0 0 auto; /* ← shrinkもgrowもしない */
  align-self: flex-start;
  display: inline-block;
  width: auto;
  font-size: clamp(0.813rem, 0.692rem + 0.26vw, 1rem);
  font-weight: 500;
  background: #ffffff;
  border: 1px solid #212529;
  padding: clamp(0.294rem, 0.001rem + 0.62vw, 0.75rem) clamp(0.781rem, -0.002rem + 1.67vw, 2rem);
  border-radius: 99px;
  margin-bottom: 16px;
}

.company-profile-item p {
  line-height: 1.72;
  letter-spacing: 0.1em;
  font-size: clamp(0.875rem, 0.554rem + 0.68vw, 1.375rem);
}
.license-list {
  list-style: none;       /* デフォルトの・を消す */
  padding: 0;
  margin: 0;
}

.license-list li {
  position: relative;
  padding-left: 1em;      /* ・の位置 */
  line-height: 1.72;
  letter-spacing: 0.1em;
  font-size: clamp(0.875rem, 0.554rem + 0.68vw, 1.375rem);
}

.license-list li::before {
  content: "・";          /* 疑似要素でドットを追加 */
  position: absolute;
  left: 0;
}


.company-profile-gmap {
  margin-top: 20px;   
}
.company-profile-gmap a {
  color: #009f95;
  font-size: clamp(0.813rem, 0.692rem + 0.26vw, 1rem);
  border-bottom: 1px solid #009f95;
  padding-bottom: 6px;
  margin-right: 8px;
}
.icon-link {
  display: inline-block;
  width: 16px;  /* アイコンサイズ */
  height: 13px;
  background-color: #009f95; /* ←ここで色変更 */
  -webkit-mask: url(/assets/img/icon-link.svg) no-repeat center;
  -webkit-mask-size: contain;
  mask: url(/assets/img/icon-link.svg) no-repeat center;
  mask-size: contain;
}

.company-profile-email a {
  color: #212529;
  line-height: 1.72;
  letter-spacing: 0.1em;
  font-size: clamp(0.875rem, 0.554rem + 0.68vw, 1.375rem);
}

.company-profile-item a:hover {
  text-decoration: underline;
}

.related-companies {
  max-width: 1200px;
  width: 75%;
  margin: 0 auto;
  padding: clamp(3.656rem, -0.018rem + 7.83vw, 9.375rem) 0 clamp(1.462rem, -0.007rem + 3.13vw, 3.75rem);
}

.related-title {
  background-color: #f2ebdb; /* ベージュ背景 */
  text-align: center;
  font-size: clamp(0.875rem, 0.393rem + 1.03vw, 1.625rem);
  font-weight: 500;
  letter-spacing: .15em;
  padding: clamp(0.588rem, 0.001rem + 1.25vw, 1.5rem);
}

.related-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(3rem, 2vw, 5rem);
}

.related-item {
  padding: clamp(0.975rem, -0.005rem + 2.09vw, 2.5rem) 0 clamp(1.169rem, -0.008rem + 2.51vw, 3rem);
  border-bottom: 1px solid #ccc;
}

.company-name {
  font-weight: 500;
  line-height: 1.27;
  letter-spacing: .1em;
  font-size: clamp(0.875rem, 0.554rem + 0.68vw, 1.375rem);
  margin-bottom: clamp(0.813rem, 0.692rem + 0.26vw, 1rem);
}

.company-link {
  font-size: clamp(0.813rem, 0.692rem + 0.26vw, 1rem);
  color: #009f95;
  border-bottom: 1px solid #009f95;
  padding-bottom: 4px;
  text-decoration: none;
}

.company-link .icon-link {
  display: inline-block;
  width: 16px;
  height: 13px;
  margin-left: 8px;
  background-color: #009f95;
  -webkit-mask: url(/assets/img/icon-link.svg) no-repeat center;
  -webkit-mask-size: contain;
  mask: url(/assets/img/icon-link.svg) no-repeat center;
  mask-size: contain;
}

.privacy-policy {
  max-width: 1200px;
  width: 75%;
  margin: 0 auto;
  padding: clamp(5.85rem, -0.028rem + 12.52vw, 15rem) 0 0;
  
}

.privacy-policy-toptxt {
  border-bottom: 1px solid #ccc;
  padding-bottom: clamp(1.462rem, -0.007rem + 3.13vw, 3.75rem);
}

.privacy-policy-container p,
.privacy-policy ul li,
.privacy-policy .privacy-date {
  font-size: clamp(0.813rem, 0.732rem + 0.17vw, 0.938rem);
  line-height: 2;
  letter-spacing: .15em;
}
.privacy-policy-container p span {
  border-bottom: 1px solid #212529;
}


.privacy-policy h3 {
  font-size: clamp(1.063rem, 0.781rem + 0.6vw, 1.5rem);
  line-height: 1.25;
  letter-spacing: .15em;
  margin-bottom: clamp(0.625rem, -0.178rem + 1.71vw, 1.875rem);
  margin-top: clamp(2.5rem, 1.536rem + 2.05vw, 4rem);
  font-weight: 500;
}

.privacy-policy ul {
  padding-left: 1.5rem;
  margin: 0 0 1.5rem;
}

.privacy-policy ul li {
  line-height: 2;
  letter-spacing: .15em;
}

.privacy-policy .privacy-date {
  text-align: right;
  margin-top: clamp(1.462rem, -0.007rem + 3.13vw, 3.75rem);
}







/* ===== フッターレスポンシブ ===== */
@media (max-width: 1024px){
  .footer-inner{ grid-template-columns: 1fr; gap: 32px; }
}

/* 会社情報ページタイトル改行 */
@media (max-width: 840px) {
  .tab-br {
    display: block;
  }
}


/* ====== SP: 〜750px でハンバーガーに切り替え ====== */
@media screen and (max-width:750px){

.sp-br {
  display: block;
}
.pc-br {
  display: none;
}

#header {
  min-height: 154px;
}
.site-header {
  height: clamp(4.375rem, 2.747rem + 8.14vw, 6.563rem); /* 105-70px */
  padding: 0 20px 0 clamp(1.25rem, 0.32rem + 4.65vw, 2.5rem);
}
.logo img{
  height: clamp(1.5rem, 0.151rem + 6.74vw, 3.313rem); /* 53-24px */
  margin-bottom: 1%;
}


.global-nav {
  display: none;
}
.hamburger-btn{
  display: block;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;                 /* 線の間隔 */
  width: clamp(2.75rem, 1.076rem + 8.37vw, 5rem); /* 80-44px */
  height: clamp(2.75rem, 1.076rem + 8.37vw, 5rem); /* 80-44px */
  background: #e26931;      /* 丸背景（オレンジ） */
  border-radius: 50%;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1001;            /* ナビより上 */
}

.hamburger-btn span{
  position: relative;
  display: block;
  width: clamp(1.25rem, 0.831rem + 2.09vw, 1.813rem);
  height: 2.5px;
  background: #fff;         /* 白い3本線 */
  transition: transform .3s ease, opacity .3s ease;
}

.hamburger-btn span::before, 
.hamburger-btn span::after{
  content:'';
  width: clamp(1.25rem, 0.831rem + 2.09vw, 1.813rem);
  height: 2.5px;
  background: #fff;
  display: block;
  position: absolute;
  left: 0;
  transition: 0.3s;
}

.hamburger-btn span::before{ top:-8px; } /* 上 */
.hamburger-btn span::after { top: 8px; } /* 下 */

/* ===== 開いた状態（.open を付ける） ===== */
/* .open を .hamburger-btn 自体につける場合 */
.hamburger-btn.open span{ 
  background:transparent; 
}      /* 中央線を消す */
.hamburger-btn.open span::before{ 
  top:0; transform:rotate(45deg); 
}
.hamburger-btn.open span::after { 
  top:0; transform:rotate(-45deg); 
}


.sp-nav{
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-image: url("../img/sp-nav-bg.webp");
  background-size: cover;    /* ← 全体に広げたいなら追加 */
  background-position: center;
  overflow-y: auto;         /* ← 縦方向スクロールを許可 */
  -webkit-overflow-scrolling: touch; /* ← iOSで慣性スクロール */
}
    
.sp-nav ul{
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(6.25rem, 3.459rem + 13.95vw, 10rem) clamp(1.563rem, 0.865rem + 3.49vw, 2.5rem);
}

/* トップレベルの各 li に下余白をつけるが、最後だけは除外 */
.sp_menu > li {
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.sp_menu > li.sp-top {
  border-top: 1px solid rgba(255,255,255,0.2);
}


.sp_menu > li:last-of-type {
  padding-bottom: 0;   /* ← これで「個人情報保護方針」だけ消える */
}

/* 「ウッドジョイの強み」だけも無効化 */
.sp_menu > li:nth-child(3) {
  padding-bottom: 0;
}
.sp-nav_main {
  display:flex; 
  align-items:center; 
  justify-content:space-between;
  gap:16px;
  font-size: 32px;
  letter-spacing: 0.15em;
}
 /* 各ブロック全体（メイン＋サブ）を線で囲う */
.sp_menu > li{
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.sp_menu > li:first-child{
  border-top: 1px solid rgba(255,255,255,0.2);
}

/* メインリンクは線なし（見た目はそのまま） */
.sp_menu li a.sp-nav_main{
  display:flex; 
  align-items:center; 
  justify-content:space-between;
  gap:12px;
  padding: 32px 0;
  color:#fff; 
  letter-spacing:.15em; 
  font-size:18px;
}

/* 右側の矢印（img を右端に置いた場合） */
.sp_menu li a.sp-nav_main img{
  width: 16px; height: 16px;
  filter: brightness(0) invert(1); /* 白化 */
}

/* サブリスト（事業紹介、会社概要の下の3本や2本） */
.sp_menu li ul{
  list-style: none; 
  margin: 0;
  padding: 0 0 24px 24px;   /* ← 上下0、左だけ24px */
  justify-content: flex-start;
}
.sp_menu li ul li + li{ 
  margin-top: 20px; 
}

.sp-nav_sub{
  position: relative;
  display: inline-block;
  padding-left: 16px;              /* ダッシュ分の余白 */
  color:#fff; text-decoration: none;
  letter-spacing: .12em;
  font-size: 14px;
  opacity: .95;
}
/* サブ項目左の小さなダッシュ */
.sp-nav_sub::before{
  content:""; 
  position:absolute; 
  left:0; 
  top:.5em;
  width:10px; 
  height:2px; 
  background:#fff; 
}



/* メインビジュアル */
.mv-img {
  min-height: clamp(37.688rem, -1.708rem + 196.98vw, 90.625rem); /* 1450-603px */
}
.mv-bg {
    margin-left: auto;
    width: 29.4%;
  }

#lower-pagetitle .mv-bg {
  margin-left: auto;
    width: 29.4%;
}
.mv-1 {
  width: 38.7%;
  top: clamp(4.375rem, 0.515rem + 19.3vw, 9.563rem); /* 153-70px */
}
.mv-2 {
  top: clamp(9.875rem, -1.055rem + 54.65vw, 24.563rem); /* 393-158px */
  width: 81.6%;
  left: 10%;
}
.mv-3 {
  width: 38.2%;
  top: clamp(29.125rem, -1.898rem + 155.12vw, 70.813rem); /* 1133-466px */
  right: 0%;
}
.mv-txt {
  width: 80%;
  margin: 0 auto;
  margin-left: 10%;
  top: clamp(23.375rem, -1.09rem + 122.33vw, 56.25rem); /* 900-374px */
}



/* トップページウッドジョイの強み */

/* セクション全体：1カラム縦並びに */
.top-features{
  width: 92%;
  padding-top: clamp(6.25rem, 3.924rem + 11.63vw, 9.375rem); /* 150-100px */
  padding-left: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;   /* ← 縦並び */
}

/* 画像を先頭に（順序入れ替え） */
.top-features-right{
  order: -1;
  width: 97%;
  position: relative;
  z-index: 0;
}
.top-features-right img{
  display: block;
  width: 100%;
  height: auto;
}

/* テキスト側は全幅 */
.top-features-left{
  width: 85.6%;
  margin: -36px auto 0;
  position: relative;
  z-index: 1;
}

/* 見出し */
.top-features-main{
  font-size: clamp(1.125rem, -0.084rem + 6.05vw, 2.75rem); /* 44-18px  */
  line-height: 1.6;
  letter-spacing: .12em;
}
.top-features-main span{
  display: inline-block;
  background-color: #009f95;
  color: #fff;
  white-space: normal;     /* 念のため折り返し許可 */
  white-space: nowrap;
}
.top-features-main span:last-child {
  margin-top: 2%;
}

/* 英字のサブコピー */
.top-features-sub{
  margin-top: clamp(1rem, -0.116rem + 5.58vw, 2.5rem); /* 40-16px */
  font-size: clamp(0.688rem, 0.036rem + 3.26vw, 1.563rem);
  letter-spacing: .1em;
  color: #009f95;
  white-space: nowrap;
}

/* 本文 */
.top-features-txt{ 
  margin-top: clamp(1.813rem, -0.094rem + 9.53vw, 4.375rem); /* 70-29px */
}
.top-features-txt p{
  font-size: clamp(0.744rem, -0.005rem + 3.74vw, 1.75rem);
  line-height: 1.786;
  letter-spacing: .15em;
}

/* ボタン：横いっぱい＆タッチ向けにホバー反転は無効化 */
.btn-pill{
  padding: clamp(1.125rem, 0.427rem + 3.49vw, 2.063rem) 
          clamp(1.25rem, 0.6rem + 3vw, 2rem); /* 右パディング少し確保 */
  font-size: clamp(0.938rem, 0.333rem + 3.02vw, 1.75rem);
  width: 89.3%;
}
/* ラベルは中央カラムで中央寄せ */
  .btn-pill .btn-label{
    font-size: clamp(0.744rem, -0.005rem + 3.74vw, 1.75rem);
    text-align: center;
    width: 89.3%;
  }

  /* 矢印は右カラムの右端に */
  .btn-pill .btn-ico{
    grid-column: 3;
    justify-self: end;
    width: 20px;
    height: 20px;
  }

  /* スマホでは色反転なしの場合はそのまま */
  .btn-pill:hover{
    background:#fff;
    color:#009f95;
  }
.btn-pill .ico-normal{ 
  opacity: 1; 
}
.btn-pill .ico-hover{ 
  display: none; 
}

/* 事業紹介 */


.biz-hero {
  padding-top: clamp(6.25rem, 3.924rem + 11.63vw, 9.375rem); /* 150-100px */
  max-width: 100%;
}

.biz-hero img {
  width: 94.6%;
  margin-left: 0;
  margin-right: auto;
}
.biz-intro {
  margin-top: -4%;
}

.biz-intro-inner {
  width: 78%;
  padding: clamp(2.131rem, -0.004rem + 10.67vw, 5rem) 0 clamp(2.131rem, -0.004rem + 10.67vw, 5rem) 11%;
  margin: -15% auto 0 0;
  display: flex;
  flex-direction: column;   /* ← 縦並び */
}

.section-title .sectiontitle-en {
  font-size: clamp(2.075rem, -0.009rem + 10.42vw, 4.875rem); /* 78-32px */
  margin-bottom: clamp(0.688rem, -0.103rem + 3.95vw, 1.75rem); /* 28-11px */
}
.section-title .sectiontitle-ja {
  font-size: clamp(0.875rem, 0.038rem + 4.19vw, 2rem); /* 32-14px */
}
.biz-text {
  margin-top: clamp(2.063rem, -0.124rem + 10.93vw, 5rem); /* 88-33px */
  width: 100%;
}

.biz-text p {
  font-size: clamp(0.744rem, -0.005rem + 3.74vw, 1.75rem);
  line-height: 1.786;
  letter-spacing: .15em;
}
.biz-cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  padding-bottom: 13%;
  padding-left: 0;
  align-items: center;
}
.biz-cards::before {
  height: clamp(27.294rem, -0.069rem + 136.81vw, 64.063rem);
  left: 0;
}
.biz-card {
  width: 78.7%;
}
.biz-card-body {
  left: 8%;
  right: 6%;
  bottom: 11%;
}
.biz-title {
  font-size: clamp(0.938rem, -0.132rem + 5.35vw, 2.375rem); /* 38-15px */
}
.biz-cta {
 width: clamp(2.188rem, -0.185rem + 11.86vw, 5.375rem); /* 86-35px */
 height: clamp(2.188rem, -0.185rem + 11.86vw, 5.375rem); /* 86-35px */
}
.biz-cta img {
  width: clamp(0.563rem, -0.089rem + 3.26vw, 1.438rem); /* 23-9px */
  height: clamp(0.563rem, -0.089rem + 3.26vw, 1.438rem);
}

.recommend-inner .biz-cta .arrow-wrap {
  width: 21px;
  height: 21px;
}

.recommend-inner .biz-cta .arrow-wrap img {
  width: 21px;
}

.company-inner {
 display: flex;
 flex-direction: column;
}
.company-text {
  margin-top: clamp(2.063rem, -0.124rem + 10.93vw, 5rem);
  font-size: clamp(0.744rem, -0.005rem + 3.74vw, 1.75rem);
  line-height: 1.786;
  letter-spacing: .15em;
}

/* 会社概要右カラム */
/* セクション幅を詰めて1カラムに */

.top-company-block {
  padding-top: clamp(6.25rem, 3.924rem + 11.63vw, 9.375rem);
  margin-bottom: 146px;
}
.company-inner{
    max-width: 78%;
    grid-template-columns: 1fr;
    gap: 32px;
  }

/* 1行（リンク）を“画像→タイトル/矢印”の2段組にする */
.company-row{
    display: flex;
    flex-wrap: wrap;                /* 2段に折り返す */
    align-items: center;
    gap: clamp(1rem, -0.116rem + 5.58vw, 2.5rem) 16px;
    padding-bottom: 24px;
    position: relative;
  }
.company-row:last-child{
    border-bottom: none;
    padding-bottom: 0;
  }

  /* 画像：1段目で全幅 */
  .company-thumb{
    order: 1;
    flex: 1 0 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
    position: relative;
    display: block;
  }
  .company-thumb::after{
    content: "";
    position: absolute;
    top: 50%;             /* 画像の中央に配置 */
    left: 100%;           /* 画像の右端からスタート */
    width: 140px;          /* 線の長さ（調整可） */
    height: 2px;          /* 線の太さ */
    background: #ccc;     /* 線の色（グレー） */
    transform: translateY(-50%);
  }

  .company-line {
    width: 18%;
    position: absolute;
    top: 30%;
    margin-left: 90%;
    z-index: 2;
  }

  .company-right {
    gap: clamp(0.813rem, -0.071rem + 4.42vw, 2rem); /* 32–13px */
  }

  /* タイトル（英+和）：2段目左 */
  .company-title{
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .company-title .en{
    font-size: clamp(1.25rem, -0.145rem + 6.98vw, 3.125rem); /* 50–20px */
    letter-spacing: .08em;
  }
  .company-title .ja{
    font-size: clamp(0.75rem, -0.087rem + 4.19vw, 1.875rem); /* 30-12px */
    letter-spacing: .15em;
    margin-top: clamp(0.375rem, 0.003rem + 1.86vw, 0.875rem); /* 14-6px */
  }
  .company-title {
    min-width: 190px;
  }

  /* 丸い矢印：2段目右端に寄せる */
  .company-btn{
    order: 2;
    margin-left: auto;              /* タイトルの右に寄せる */
    width: clamp(2.188rem, -0.185rem + 11.86vw, 5.375rem);   /* 86-35px */
    height: clamp(2.188rem, -0.185rem + 11.86vw, 5.375rem);
  }
  .company-btn img{
    width: clamp(0.563rem, -0.089rem + 3.26vw, 1.438rem);       /* 23–9px */
    height: clamp(0.563rem, -0.089rem + 3.26vw, 1.438rem);
  }



/* フッター */
.footer-nav{ grid-template-columns: 1fr; 
}
.footer-brand .brand-logos {
  margin-bottom: 0;
}
.footer-logo {
  width: 100%;
}

.address {
  margin-top: clamp(1.169rem, -0.008rem + 5.88vw, 2.75rem);
}

.map-link {
  margin-top: clamp(0.637rem, -0.004rem + 3.21vw, 1.5rem);
}



.footer-topbar {
  padding: 27px 0;
}
.footer-topbar img {
  width: clamp(0.813rem, -0.025rem + 4.19vw, 1.938rem); /* 31–13px */
  height: clamp(0.813rem, -0.025rem + 4.19vw, 1.938rem);
}
.footer-main {
  padding-top: clamp(3rem, -0.163rem + 15.81vw, 7.25rem); /* 116–48px */
  padding-bottom: clamp(2.606rem, -0.105rem + 13.56vw, 6.25rem); /* 100–41.7px */
}
.footer-inner {
  max-width: 90%;
  gap: clamp(2.663rem, -0.007rem + 13.35vw, 6.25rem); /* 100-41.7px */
}

.address p {
  font-size: clamp(0.75rem, 0.006rem + 3.72vw, 1.75rem); /* 28–12px */
  line-height: 1.786;
}

.footer-nav {
  gap: 0;
}
.footer-nav .col {
  padding: clamp(1.188rem, 0.025rem + 5.81vw, 2.75rem) 0; /* 40–16px */
}
.footer-nav .col:nth-child(2) {
  border-bottom: none;
}

.footer-nav .col-title {
  font-size: clamp(0.744rem, -0.005rem + 3.74vw, 1.75rem); /* 28–11.9px */
}
.footer-nav li + li:first-child {
  margin-top: 54px;
}
.footer-nav li + li {
  margin-top: clamp(1.5rem, -0.081rem + 7.91vw, 3.625rem); /* 45–18.8px */
  font-size: clamp(0.637rem, -0.004rem + 3.21vw, 1.5rem);
  padding-left: 5%;
}
.footer-nav a:not(.col-title a)::before {
  width: clamp(0.75rem, 0.564rem + 0.93vw, 1rem);
  height: clamp(0.125rem, 0.032rem + 0.47vw, 0.25rem);
}
.footer-nav a:not(.col-title a) {
  padding-left: clamp(1.625rem, 1.067rem + 2.79vw, 2.375rem);
}
.footer-bottom {
  padding: clamp(0.813rem, 0.022rem + 3.95vw, 1.875rem) 0;
}
.footer-bottom p {
  font-size: clamp(0.637rem, -0.004rem + 3.21vw, 1.5rem); /* 24-10.2px */
}

/* 下層ページ */
/* 事業紹介 */
.lowerpage-title {
  padding-top: clamp(5.875rem, -0.125rem + 30vw, 13.938rem);
}
#real-estate,
#repair,
#philosophy,
#information,
#privacy {
  padding-top: clamp(4.625rem, 1.09rem + 17.67vw, 9.375rem);
}

.lowerpage-title-inner {
  width: 89.3%;
}
.lowerpage-title-line {
  display: none;
}
.lowerpage-title-texts .lowerpage-title-en {
  font-size: clamp(2.025rem, -0.003rem + 10.14vw, 4.75rem);
}
.lowerpage-title-texts .lowerpage-title-ja {
  font-size: clamp(0.875rem, 0.038rem + 4.19vw, 2rem);
  margin-top: clamp(0.5rem, 0.035rem + 2.33vw, 1.125rem);
}
.page-title-img {
  margin-top: clamp(1.519rem, -0.002rem + 7.6vw, 3.563rem);
}
.lowerpage-title-line {
  margin-top: 1.75%;
}
.pagetop-txt-title {
  font-size: clamp(1.012rem, -0.001rem + 5.07vw, 2.375rem);
  line-height: 1.842;
}
.pagetop-maintxt {
  font-size: clamp(0.744rem, -0.005rem + 3.74vw, 1.75rem);
  margin-top: clamp(1.313rem, -0.036rem + 6.74vw, 3.125rem);
  line-height: 1.785;
}
.pagetop-txt {
  width: 89.3%;
  padding-top: clamp(5.125rem, -0.038rem + 25.81vw, 12.063rem);
  line-height: 1.785;
}
.pagetop-txt.img2pcs,
.pagetop-txt.img3pcs {
  padding-top: clamp(5.594rem, -0.011rem + 28.02vw, 13.125rem);
}

.biz-list {
  width: 89.3%;
  padding-top: clamp(3.25rem, -0.006rem + 16.28vw, 7.625rem);
}

#lower-page .section-title  .sectiontitle-en {
  display: block;
 font-size: clamp(1.863rem, -0.007rem + 9.35vw, 4.375rem);
 margin-bottom: clamp(0.813rem, 0.022rem + 3.95vw, 1.875rem);
}

#lower-page .section-title .sectiontitle-ja{
  display: block;
  font-size: clamp(0.813rem, 0.022rem + 3.95vw, 1.875rem);
}

.sectiontitle-ja .dash {
  width: 36px;
  height: 5px;
}
.biz-list-content {
  margin-top: clamp(3.462rem, -0.007rem + 17.35vw, 8.125rem);
}
.biz-list-wrap {
  width: 94%;
  margin-left: clamp(1.063rem, -0.007rem + 5.35vw, 2.5rem);
}
.biz-list-img-bg {
  height: clamp(8.75rem, -0.087rem + 44.19vw, 20.625rem);
}
/* 奇数行 */
.biz-list-inner:nth-child(odd) .biz-list-img-bg {
  transform: translate(
    clamp(-40px, -8vw, -17px), /* X方向：-40px〜-17px */
    clamp(-50px, -10vw, -21px) /* Y方向：-50px〜-21px */
  );
}

/* 偶数行（X方向だけ反転） */
.biz-list-inner:nth-child(even) .biz-list-img-bg {
  transform: translate(
    clamp(17px, 8vw, 40px),    /* X方向：17px〜40px */
    clamp(-50px, -10vw, -21px) /* Y方向：-50px〜-21px */
  );
  
}
.biz-list-txt-wrap {
  width: 100%;
  margin-top: clamp(1.6rem, 8vw, 3.75rem);
}
.biz-list-name {
  font-size: clamp(1.125rem, 0.009rem + 5.58vw, 2.625rem);
  padding-bottom: clamp(0.938rem, 0.24rem + 3.49vw, 1.875rem);
  border-bottom: 6px solid #009f95;
}
.biz-list-txt {
  font-size: clamp(0.744rem, -0.005rem + 3.74vw, 1.75rem);
  margin-top: clamp(1.5rem, 0.291rem + 6.05vw, 3.125rem);
  margin-bottom: clamp(0.875rem, -0.009rem + 4.42vw, 2.063rem);
  line-height: 1.785;
}

.biz-list-inner:nth-child(even) .biz-list-wrap{
  margin-left: 0;
  margin-right: clamp(1.063rem, -0.007rem + 5.35vw, 2.5rem);
}

.biz-list-inner {
  margin-top: clamp(6.25rem, 2.994rem + 16.28vw, 10.625rem);
}
.biz-list-inner:last-child {
  padding-bottom: 0;
}




/* 事業紹介下層-不動産事業 */
#real-estate .lowerpage-title {
  padding-top: 150px
}

#lower-page .pagetop-maintxt {
  line-height: 1.785;
}
.pagetop-wrap {
  display: block;
}
.pagetop-img-right {
  width: 27.6%;
}
#img3-pagetop .pagetop-img-right,
#img3-pagetop .pagetop-img-right {
  margin-left: 0;
  margin-right: auto;
}
.pagetop-img-left-pc{
  display: none;
}
.pagetop-img-left-sp {
  display: block;
  margin-top: clamp(1.275rem, -0.009rem + 6.42vw, 3rem);
  width: 77%;
}
.pagetop-img-left {
  width: 63.4%;
  margin-top: clamp(-90px, -12.093vw + 0.7px, -38px);
}
#img3-pagetop .pagetop-img-bottom,
#img3-pagetop .pagetop-img-bottom {
  width: 55.3%;
  margin-left: auto;
  margin-right: 0;
  margin-top: clamp(1.863rem, -0.007rem + 9.35vw, 4.375rem);
}

.pagetop-inner.plus-img {
  width: 100%;
  margin-left: 0;
  margin-top: clamp(1.6rem, 8vw, 3.75rem);
  padding: 0;
}

#img3-pagetop .pagetop-inner,
#img3-pagetop .pagetop-inner {
  margin-top: clamp(3.938rem, -0.016rem + 19.77vw, 9.25rem);
  padding: 0;
}


#lower-page #repair .pagetop-inner {
  margin-top: clamp(3.994rem, -0.011rem + 20.02vw, 9.375rem);
}

.figure-section {
  padding-top: clamp(1.969rem, -0.008rem + 9.88vw, 4.625rem);
  width: 89.3%;
}

.sp-border {
  display: block;
  width: 2px;
  height: clamp(2.131rem, -0.004rem + 10.67vw, 5rem);
  background-color: #ccc;
  margin: 0 auto clamp(1.969rem, -0.008rem + 9.88vw, 4.625rem);
}
.figure-section-top-txt {
  font-size: clamp(0.906rem, -0.001rem + 4.53vw, 2.125rem);
  line-height: 1.941;
  margin-bottom: clamp(1.275rem, -0.009rem + 6.42vw, 3rem);
}

.figure-box-inner p {
  font-size: clamp(0.694rem, 0.001rem + 3.47vw, 1.625rem);
}

.request-bg {
  width: 100%;
  height: clamp(27.294rem, 26.21rem + 5.42vw, 28.75rem);
}

.figure-bg {
  width: 100vw;
  left: 50%;
  transform: translateX(-50%); /* 左右中央に */
  height: clamp(12rem, -0.465rem + 62.33vw, 28.75rem);
}

.figure-container {
  width: 100%;
  margin: 0 auto;
  justify-content: space-between;
  gap: 0;
}
.figure-box {
  width: 42%;
}
.figure-box-inner {
  width: clamp(7.456rem, -0.018rem + 37.37vw, 17.5rem);
  height: clamp(7.456rem, -0.018rem + 37.37vw, 17.5rem);
}
.figure-box-inner img {
  width: clamp(2.237rem, -0.004rem + 11.21vw, 5.25rem);
}
.figure-box-txt-container {
  width: 100%;
}
.figure-box-txt {
  font-size: clamp(0.637rem, -0.004rem + 3.21vw, 1.5rem);
  line-height: 1.875;
  margin-top: clamp(1rem, 0.023rem + 4.88vw, 2.313rem);
  padding-bottom: clamp(1.938rem, 0.031rem + 9.53vw, 4.5rem);
  width: 40%;
}
.figure-cross {
  width: 11%;
}

.description-section {
  padding-top: clamp(3.994rem, -0.011rem + 20.02vw, 9.375rem);
}

.description-inner {
  width: 89.3%;
}

#description .section-title {
  margin: 0;
}
.section-top-txt-container {
  margin: 0;
}

.section-title .sectiontitle-en {
  font-size: clamp(1.863rem, -0.007rem + 9.35vw, 4.375rem);
}
.section-title .sectiontitle-ja {
  font-size: clamp(0.8rem, 4vw, 1.875rem);
}
.section-top-txt {
  font-size: clamp(1.012rem, -0.001rem + 5.07vw, 2.375rem);
  line-height: 1.842;
  margin-top: clamp(1.6rem, 8vw, 3.75rem);
  margin-bottom: 0;
}
.section-main-txt {
  font-size: clamp(0.744rem, -0.005rem + 3.74vw, 1.75rem);
  line-height: 1.785;
  margin-top: clamp(1.313rem, -0.036rem + 6.74vw, 3.125rem);
}
.business-triangle {
  padding-top: clamp(2.131rem, -0.004rem + 10.67vw, 5rem);
  margin: 0;
}
.circle.top {
  margin-bottom: clamp(2.531rem, -0.004rem + 12.67vw, 5.938rem);
}
.triangle-bg img {
  width: 59.4%;
  margin-top: 0;
}
.circle {
  width: clamp(7.5rem, 0.058rem + 37.21vw, 17.5rem);
  height: clamp(7.5rem, 0.058rem + 37.21vw, 17.5rem);
}

#business-triangle .circle {
  width: clamp(8.256rem, -0.018rem + 41.37vw, 19.375rem);
  height: clamp(8.256rem, -0.018rem + 41.37vw, 19.375rem);
}

.circles-wrap {
  padding: 0;
}
.circle-img {
  height: clamp(2.025rem, -0.003rem + 10.14vw, 4.75rem);
  margin-bottom:clamp(0.531rem, -0.004rem + 2.67vw, 1.25rem);
}
.circle-title {
  font-size: clamp(0.744rem, -0.005rem + 3.74vw, 1.75rem);
  line-height: 1.071;
  letter-spacing: .2em;
  margin-bottom:clamp(0.531rem, -0.004rem + 2.67vw, 1.25rem);
}
.circle-txt {
  font-size: clamp(0.637rem, -0.004rem + 3.21vw, 1.5rem);
  line-height: 1.25;
}

.modelhouse-role {
  padding-top: clamp(2.438rem, -0.028rem + 12.33vw, 5.75rem);
  margin: 0;
}

.modelhouse-role-title p {
  font-size: clamp(1.012rem, -0.001rem + 5.07vw, 2.375rem);
  line-height: 1.842;
}
.modelhouse-role-title-border {
  width: 17%;
}
.modelhouse-role-cards {
  flex-direction: column;
  margin-top: clamp(1.125rem, -0.038rem + 5.81vw, 2.688rem);
  gap: clamp(2.237rem, -0.004rem + 11.21vw, 5.25rem);
  padding-bottom: clamp(2.237rem, -0.004rem + 11.21vw, 5.25rem);
}

.modelhouse-role-card {
  width: 100%;
}

.description-bg {
  width: 100%;
  height: clamp(36.663rem, -0.1rem + 183.81vw, 86.063rem);
}

.role-card-title {
  font-size: clamp(0.906rem, -0.001rem + 4.53vw, 2.125rem);
  line-height: 2.05;
  letter-spacing: .2em;
  margin-top: clamp(0.744rem, -0.005rem + 3.74vw, 1.75rem);
}

.role-txt {
  font-size: clamp(0.744rem, -0.005rem + 3.74vw, 1.75rem);
  line-height: 1.785;
  margin-top: clamp(0.588rem, 0.001rem + 2.93vw, 1.375rem);
}

.description-bg {
  width: 100vw;       /* 画面幅いっぱいにする */
  left: 50%;          /* 中央基準 */
  transform: translateX(-50%); /* 左右中央に */
}

.introduction-section {
  padding-top: clamp(3.75rem, 0.029rem + 18.6vw, 8.75rem);
}



.introduction-inner {
  display: block;
  width: 89.3%;
}


.swiper-navigation-wrapper {
  display: flex;
  align-items: baseline;
  gap: clamp(1.438rem, -0.004rem + 7.21vw, 3.375rem);
}
.swiper-button-prev,
.swiper-button-next {
  width: clamp(3rem, 1.233rem + 8.84vw, 5.375rem) !important;
  height: clamp(3rem, 1.233rem + 8.84vw, 5.375rem) !important;
}
.swiper-button-prev img,
.swiper-button-next img {
  width: clamp(1rem, 0.628rem + 1.86vw, 1.5rem);
  height: clamp(1rem, 0.628rem + 1.86vw, 1.5rem);
}
.divider {
  height: clamp(2.288rem, -0.01rem + 11.49vw, 5.375rem) !important;
}
.swiper-controls {
  gap: clamp(0.744rem, -0.005rem + 3.74vw, 1.75rem);
  margin-top: clamp(2.131rem, -0.004rem + 10.67vw, 5rem);
}
.swiper-pagination {
  width: auto !important;
  font-size: clamp(0.744rem, -0.005rem + 3.74vw, 1.75rem);
}

.swiper {
  width: 89.3%;
  margin: 0 auto !important;
  padding-top: clamp(1.5rem, 0.012rem + 7.44vw, 3.5rem) !important;
}

.swiper-slide {
  width: 87% !important;
}

.card-title {
  font-size: clamp(0.906rem, -0.001rem + 4.53vw, 2.125rem);
  letter-spacing: .2em;
  line-height: 2.05;
  margin: clamp(0.438rem, 0.065rem + 1.86vw, 0.938rem) 0;
}

.card-txt {
  font-size: clamp(0.744rem, -0.005rem + 3.74vw, 1.75rem);
  line-height: 1.785;

}

.recommend-section {
  padding: clamp(2.981rem, -0.009rem + 14.95vw, 7rem) 0 clamp(3.144rem, -0.005rem + 15.74vw, 7.375rem);
  margin-top: clamp(2.131rem, -0.004rem + 10.67vw, 5rem);
}

.recommend-title {
  margin-bottom: clamp(2.025rem, -0.003rem + 10.14vw, 4.75rem);
}

.recommend-inner {
  width: 89.3%;
  padding: 0;
}
.recommend-maintitle {
  font-size: clamp(1.6rem, 8vw, 3.75rem);
}
.recommend-subtitle {
  font-size: clamp(0.8rem, 4vw, 1.875rem);
  margin-top: clamp(0.906rem, -0.001rem + 4.53vw, 2.125rem);
  margin-bottom: 0;
}

.recommend-cards {
  grid-template-columns: none;
}
.recommend-card {
  width: 100%;
}
.recommend-inner-title {
  font-size: clamp(1.012rem, -0.001rem + 5.07vw, 2.375rem);
}


/* エクステリア事業 */

/* セクションTOPパディング */

.exterior-features-section,
.introduction-section.exterior-intro,
.repair-features-section {
  padding-top: clamp(3.725rem, -0.015rem + 18.7vw, 8.75rem);
}
.exterior-features-section .section-title,
.repair-features-section  .section-title  {
  width: 89.3%;
  margin: 0 auto;
}
.exterior-features-body,
.repair-features-body {
  display: block;
  margin-top: clamp(1.863rem, -0.007rem + 9.35vw, 4.375rem);
}

.exterior-features-bg,
.repair-features-bg {
  width: 94%;
}
.exterior-features-txt,
.repair-features-txt {
  margin: clamp(1.331rem, -0.004rem + 6.67vw, 3.125rem) auto 0 !important;
  width: 89.3%;
  padding: 0;
}

.exterior-features-txt p,
.repair-features-txt p,
.request-txt{
  font-size: clamp(0.744rem, -0.005rem + 3.74vw, 1.75rem);
  line-height: 1.785;
}

.exterior-features-txt p,
.repair-features-txt p {
  padding: 0;
  width: 100%;
}

.request-txt {
  margin: clamp(1.863rem, -0.007rem + 9.35vw, 4.375rem) 0;
}
.request-container {
  width: 89.3%;
}
.request-section .request-bg {
  height: clamp(8.75rem, -0.041rem + 43.95vw, 20.563rem);
}

/* * ボタン：横いっぱい＆タッチ向けにホバー反転は無効化 */ 
.btn-request {
  display: grid;                 /* ← flexからgridへ */
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;                        /* 任意。ずれの原因なら0に */
  padding: clamp(1rem, -0.023rem + 5.12vw, 2.375rem) 
          clamp(1.25rem, 0.6rem + 3vw, 2rem); /* 右パディング少し確保 */
  border-radius: 9999px;
  font-size: clamp(0.938rem, 0.333rem + 3.02vw, 1.75rem);
  width: 89.3%;
  margin: clamp(1.438rem, -0.004rem + 7.21vw, 3.375rem) 0 0;
}
/* ラベルは中央カラムで中央寄せ */
.btn-request .btn-label{
  grid-column: 0;
  justify-self: center;
  white-space: nowrap;
  font-size: clamp(0.744rem, -0.005rem + 3.74vw, 1.75rem);
  text-align: center;
}

/* 矢印は右カラムの右端に */
.btn-request .btn-ico{
  grid-column: 3;
  justify-self: end;
  width: clamp(0.531rem, -0.004rem + 2.67vw, 1.25rem);
  height: clamp(0.531rem, -0.004rem + 2.67vw, 1.25rem);
}
.request-section {
  padding-top: clamp(3.725rem, -0.015rem + 18.7vw, 8.75rem);
  padding-bottom: clamp(1.438rem, -0.004rem + 7.21vw, 3.375rem);
}

.strengths-section {
  padding-top: clamp(3.331rem, -0.004rem + 16.67vw, 7.813rem);
  width: 100%;
}

.strengths-section-cotainer {
  width: 100%;
}

#strengths-section .section-title {
  width: 89.3%;
  margin: 0 auto;
}


.strengths-title-img {
  padding-top: clamp(2.131rem, -0.004rem + 10.67vw, 5rem);
}

.strengths-contents {
  width: 89.3%;
  margin-top: 0;
  padding: clamp(2.131rem, -0.004rem + 10.67vw, 5rem) clamp(1.063rem, -0.007rem + 5.35vw, 2.5rem);
  gap: clamp(3.594rem, -0.011rem + 18.02vw, 8.438rem);
}

.strengths-contents:last-child {
  padding-bottom: 0;
}

.strengths-content-title .content-number {
  font-size: clamp(0.744rem, -0.005rem + 3.74vw, 1.75rem);
  width: clamp(1.331rem, -0.004rem + 6.67vw, 3.125rem);
  height: clamp(1.331rem, -0.004rem + 6.67vw, 3.125rem);
}
.strengths-content-title .content-maintitle {
  font-size: clamp(1.063rem, -0.007rem + 5.35vw, 2.5rem);
  line-height: 1.4;
  letter-spacing: 2;
}
.strengths-content-title-wrap {
  display: block;
}
.strengths-content-title {
  padding-bottom: clamp(0.531rem, -0.004rem + 2.67vw, 1.25rem);
  border-bottom: 2px solid #ccc;
}
.content-subtitle {
  font-size: clamp(0.8rem, 4vw, 1.875rem);
  margin-top: clamp(0.344rem, -0.005rem + 1.74vw, 0.813rem);
}
.strengths-inner-txt {
  font-size: clamp(0.744rem, -0.005rem + 3.74vw, 1.75rem);
  line-height: 1.785;
  margin-top: clamp(1.012rem, -0.001rem + 5.07vw, 2.375rem);
  margin-bottom: clamp(2.131rem, -0.004rem + 10.67vw, 5rem);
}
.strengths-img-bg-top,
.strengths-img-bg-bottom {
  height: clamp(3.275rem, -0.009rem + 16.42vw, 7.688rem);
}
.strengths-img-bg-top {
  transform:translate(0,clamp(-13px, calc(-0.01744 * 100vw + 0.08px), -5.5px)); 
}

.message {
  padding-top: clamp(5.594rem, -0.011rem + 28.02vw, 13.125rem);
}

.strengths-img-bg-bottom {
  transform: translate(0, clamp(5.5px, calc(0.01744 * 100vw - 0.08px), 13px));
}

.message-wrap,
#phirosophy-section .section-title {
  width: 89.3%;
}

.message-inner {
  flex-direction: column;
  margin-top: 0;
}
.message-txt {
  width: 100%;
  font-size: clamp(0.744rem, -0.005rem + 3.74vw, 1.75rem);
  margin-top: clamp(2.025rem, -0.003rem + 10.14vw, 4.75rem);
  line-height: 1.785;
}
.message-txt .message-name {
  font-size: clamp(0.906rem, -0.001rem + 4.53vw, 2.125rem);
}
.message-img {
  width: 100%;
  margin-top: clamp(2.025rem, -0.003rem + 10.14vw, 4.75rem);
}
#philosophy-section .section-title, 
#mission-section .section-title, 
#vision-section .section-title {
 width: 89.3%;
}

.philosophy-section-inner {
  flex-direction: column;
  margin-top: 0;
}
#philosophy-section, 
#mission-section, 
#vision-section {
  padding-top: clamp(4.375rem, 1.305rem + 15.35vw, 8.5rem);
}
.philosophy-section-inner-bg {
  width: 94.6%;
  margin-top: clamp(2.131rem, -0.004rem + 10.67vw, 5rem);
}
.philosophy-section-inner-bg:nth-child(even) {
  margin-left: auto;
}

.philosophy-section-txt {
  width: 100%;
  margin: 0;
  margin-top: clamp(2.025rem, -0.003rem + 10.14vw, 4.75rem);
  width: 89.3%;
  padding: 0 clamp(1.063rem, -0.007rem + 5.35vw, 2.5rem);
}

.philosophy-section-txt .philosophy-section-txt-main {
  font-size: clamp(1.012rem, -0.001rem + 5.07vw, 2.375rem);
  line-height: 1.84;
}
.philosophy-section-txt p {
  font-size: clamp(0.744rem, -0.005rem + 3.74vw, 1.75rem);
  line-height: 1.785;
}
.reverse .philosophy-section-txt {
  padding: 0 clamp(1.063rem, -0.007rem + 5.35vw, 2.5rem);
  margin-top: clamp(2.025rem, -0.003rem + 10.14vw, 4.75rem);
}
.reverse {
  display: flex;
  flex-direction: column-reverse;
}



.company-profile-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

.company-profile {
  width: 89.3%;
  padding-top: clamp(3.875rem, -0.032rem + 19.53vw, 9.125rem);
}

.company-profile-item {
  padding: clamp(1.6rem, 8vw, 3.75rem) 0;
}

.company-profile-item .label {
  font-size: clamp(0.719rem, -0.002rem + 3.6vw, 1.688rem);
  padding: clamp(0.45rem, -0.006rem + 2.28vw, 1.063rem) clamp(1.063rem, -0.007rem + 5.35vw, 2.5rem);
  margin-bottom: clamp(0.637rem, -0.004rem + 3.21vw, 1.5rem);
}
.company-profile-item p,
.company-profile-email a,
.license-list li {
  font-size: clamp(0.906rem, -0.001rem + 4.53vw, 2.125rem);
  letter-spacing: .15em;
}
.company-profile-item::after {
  background: linear-gradient(to right, #009f95 0 20px, #cccccc 20px 100%);
  margin-top: clamp(1.6rem, 8vw, 3.75rem);
}

.company-profile-item:first-child::before {
  background: linear-gradient(to right, #009f95 0 20px, #cccccc 20px 100%);
  margin-bottom: clamp(1.6rem, 8vw, 3.75rem);
}
.company-profile-item:nth-child(2)::before {
 display: none;
}
.company-profile-gmap {
  margin-bottom: 6px;
}
.company-profile-gmap a {
  font-size:clamp(0.744rem, -0.005rem + 3.74vw, 1.75rem);
}
.icon-link {
  width: clamp(0.775rem, 0.003rem + 3.86vw, 1.813rem);
  height: clamp(0.637rem, -0.004rem + 3.21vw, 1.5rem);
}

.related-companies {
  width: 89.3%;
  padding-top: clamp(3.994rem, -0.011rem + 20.02vw, 9.375rem);
}
.related-list {
  grid-template-columns: 1fr;
}
.related-title {
  font-size: clamp(1.012rem, -0.001rem + 5.07vw, 2.375rem);
  line-height: 1.84;
  letter-spacing: .15em;
}
.company-name {
  font-size: clamp(0.906rem, -0.001rem + 4.53vw, 2.125rem);
  letter-spacing: .15em;
  margin-bottom: clamp(0.8rem, 4vw, 1.875rem);
}
.company-name.nowebsite {
  margin-bottom: 0;
}
.company-link {
  font-size: clamp(0.744rem, -0.005rem + 3.74vw, 1.75rem);
  line-height: 1.785;
  letter-spacing: .15em;
}
.related-item {
  padding: clamp(1.6rem, 8vw, 3.75rem) 0;
}

.privacy-policy {
  width: 89.3%;
  padding: clamp(5.313rem, -0.036rem + 26.74vw, 12.5rem) 0 0;
}
.privacy-policy-toptxt {
  padding-bottom: clamp(2.131rem, -0.004rem + 10.67vw, 5rem);
}
.privacy-policy-container p,
.privacy-policy ul li,
.privacy-policy .privacy-date {
  font-size: clamp(0.744rem, -0.005rem + 3.74vw, 1.75rem);
  line-height: 1.785;
}
.privacy-policy h3 {
  font-size: clamp(1.012rem, -0.001rem + 5.07vw, 2.375rem);
  line-height: 1.84;
  letter-spacing: .2em;
  margin: clamp(1.863rem, -0.007rem + 9.35vw, 4.375rem) 0 clamp(0.313rem, -0.153rem + 2.33vw, 0.938rem);
}
.privacy-policy .privacy-date {
  margin-top: clamp(2.375rem, -0.044rem + 12.09vw, 5.625rem);
}

/* 各ページのパンくずリスト */

.pankusu-1p,
.pankusu-2p {
  font-size: clamp(0.694rem, 0.001rem + 3.47vw, 1.625rem);
}
.pankuzu {
  margin-top: 90px;
  width: 89.3%;
  margin-bottom: clamp(2.5rem, 0.64rem + 9.3vw, 5rem);
}

.pankuzu.business-index-pankuzu {
  margin-top: clamp(5rem, 1.837rem + 15.81vw, 9.25rem);
  width: 89.3%;
  margin-bottom: clamp(2.5rem, 0.64rem + 9.3vw, 5rem);
}

.pankusu-border {
  width: clamp(1.275rem, -0.009rem + 6.42vw, 3rem);
  height: 2px;
}

.pankuzu.privacy-pankuzu {
  margin: clamp(5rem, 2.209rem + 13.95vw, 8.75rem)  auto clamp(2.5rem, 0.64rem + 9.3vw, 5rem);
}


.pankuzu.repair-pankuzu,
.pankuzu.features-pankuzu,
.pankuzu.companypagepankuzu
 {
  margin-top: clamp(5rem, 2.209rem + 13.95vw, 8.75rem);
}

}






