/*
Theme Name: Client Renewal
*/

/* =========================
   RESET
========================= */

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

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Shippori Mincho", serif;
  background: #fff;
  color: #1f2e4d;
  scroll-behavior: smooth;
}

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

/* =========================
   HEADER
========================= */
.contact-header{
	display:none;
}
main {
  margin-top: 96px; /* ヘッダーの高さ分空ける（調整可） */
}
.site-header {
  position: relative;
  height: 96px;
  background: #fff;
  position: fixed;
  width: 100%;
  z-index: 9999; /* メニューより前面に出す */
  background: #fff; /* 背景を設定しないと下の要素が透けて見える */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* 見た目を浮かせる */
}

.header-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding-left: 40px;
  padding-right: 160px; /* CONTACT分を空ける */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ロゴ */
.site-logo img {
  height: 180px;
}

/* ナビ */
.global-nav {
  display: flex;
  align-items: center;
  gap: 48px;
}

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

.global-nav li::marker {
  content: "";
}

.global-nav a {
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: #1f2e4d;
}

/* CONTACT */
.contact-btn {
  position: absolute;
  top: 50%;
  right: 0px;
  width: 160px;
  height: 100%;
  background: #0b1f3b;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.2em;
  display: flex;
  align-items: center;
  justify-content: center; 
  z-index: 1;
  position: absolute;
  transform: translateY(-50%);
}
.contact-nav-item {
  display: none;
}
/* =========================
   HERO（完全修正版）
========================= */

.hero {
  position: relative;
  min-height: 520px;           /* ← カンプ基準で固定 */
  padding-bottom: 160px; /* NEWSがはみ出す分だけ */
  overflow: visible;     /* ← ここ超重要 */
}

/* 右フル画像 */
.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 65vw;             /* ← 画面基準 */
  height: 100%;
  z-index: 1;
  opacity: 0;
  transform: translateX(20px);
  animation: fadeIn 2s ease 0.3s forwards;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 左下の水色 */
.hero-color {
  position: absolute;
  left: 0;
  bottom:-160px;
  width: 45%;
  height: 260px;
  background: #95b2bd;
  z-index: 0;
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeIn 2s ease 0.3s forwards;
}

/* テキスト */
/* テキスト塊（中央揃えのまま、塊ごと左へ） */
.hero-content{
  position: absolute;       /* ← “塊”を自由に置けるようにする */
  top: 120px;               /* ← ロゴ下に寄せる：ここを微調整 */
  left: 90px;              /* ← 左寄せ位置：ここを微調整 */
  width: auto;           /* ← 塊の幅（カンプに合わせやすい） */
  text-align: center;       /* ← 子の文字を中央揃えにする */
  z-index: 3;
  padding: 20px 48px;
  background: rgba(255, 255, 255, 0.3);
backdrop-filter: blur(2px);
-webkit-backdrop-filter: blur(14px); /* Safari対策 */
  border-radius: 30px;                 /* ← 角丸（超重要） */
  box-shadow:
    0 20px 10px rgba(0, 0, 0, 0.12),
}

.hero-lead {
  font-size: 28px;
  font-weight:600;
  line-height: 1.3;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  text-align:center;
  text-shadow:
    0 0 6px rgba(255,255,255,1),
    0 0 12px rgba(255,255,255,0.8);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s ease 0.3s forwards;
}
@keyframes fadeIn {
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-sub {
  font-size: 18px;
  font-weight:600;
  line-height: 1.4;
  letter-spacing: 0.6em;
  text-align:center;
  text-shadow:
    0 0 6px rgba(255,255,255,1),
    0 0 12px rgba(255,255,255,0.8);
    opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s ease 0.3s forwards;
}
/* =========================
   NEWS（Hero overlap）
========================= */

.news-overlap {
  position: absolute;
  right: 5%;
  bottom: -120px;
  width: 520px;
  z-index: 30;
    opacity: 0;
  animation: fadeIn 3s ease 0.3s forwards;
}
.news-box {
  z-index:
  max-width: 900px;
  margin: 0 auto;
  background: rgba(220,220,220,0.92);
  padding: 20px 40px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
　z-index:10;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.news-title {
  font-size: 20px;
  letter-spacing: 0.3em;
  color: #1f2e4d;
  margin-bottom: 20px;
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-item {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 10px 0;
  border-bottom: 1px dashed #ccc;
}

.news-item:last-child {
  border-bottom: none;
}

.news-date {
  font-size: 12px;
  color: #777;
  white-space: nowrap;
}

.news-link {
  font-size: 14px;
  color: #1f2e4d;
  text-decoration: none;
  line-height: 1.6;
}

.news-link:hover {
  text-decoration: underline;
}
.news-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.15em;
  padding: 3px 10px;
  margin-right: 12px;
  border-radius: 20px;
  background: #1f2e4d;
  color: #fff;
}

/* =========================
   ABOUT SECTION
========================= */

.about-section {
  padding: 260px 0 100px;
  background: #fff;
}

.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* ---------- 左テキスト ---------- */

.about-label {
  display: inline-flex;       /* ← 横並びにする */
  align-items: center;
  gap: 16px;                  /* 文字と線の間 */
 
  font-size: 16px;
  letter-spacing: 0.3em;
  color: #999;
  margin-bottom: 24px;
}

.about-label::after {
  content: "";
  display: block;
  width: 120px;               /* 線の長さ */
  height: 1px;
  background: #ccc;           /* 薄めで上品 */
}


.about-title {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.18em;
  margin-bottom: 32px;
}

.about-lead {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 32px;
}

.about-body {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 6px;
}
.about-list {
  list-style: none;
  padding: 0;
  margin-top: 1px; 
  margin-bottom:50px;
}
.about-list li {
  position: relative;
  font-size: 15px;
  line-height: 0.95;
  padding-left: 1.2em;
  margin-bottom: 2px; /* 行間はここで詰める */
}

/* 黒丸（・）をCSSで作る */
.about-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

/* 赤いアンダーライン */
.about-list li::after {
  content: "";
  position: absolute;
  left: 0.5em;
  bottom: -1px;
  width: calc(38% - 1.2em);
  height: 3px;
  opacity:0.7;
  background: #b33a3a; /* 上品な赤 */
}


/* ---------- 右画像 ---------- */

.about-images {
  position: relative;
  transform: translateY(120px); /* ← ここが効くはず */
}

.about-image-main {
  position: relative;
  z-index: 1;
  width: 80%;
}

.about-image-main img {
  width: 60%;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.about-image-sub {
  position: absolute;
  right: 0;
  bottom: -220px;
  width: 55%;
  z-index: 2;
}

.about-image-sub img {
  width: 80%;
  display: block;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}
/* =========================
   Scroll Fade In
========================= */
/* ===== Scroll Fade In ===== */
.js-fade {
  opacity: 0;
  transform: translateY(10px); /* 保険の微移動（不要なら消してOK） */
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

/* 左から */
.js-fade-left {
  transform: translateX(-40px);
}

/* 右から */
.js-fade-right {
  transform: translateX(40px);
}

/* 表示時 */
.js-fade.is-show {
  opacity: 1;
  transform: translateX(0);
}

/* もし上下の微移動も残したいなら、表示時にこうする
.js-fade.is-show {
  opacity: 1;
  transform: translate(0, 0);
}
*/


/* “遅らせたい要素”用（任意） */
.js-fade.delay-1 { transition-delay: 0.12s; }
.js-fade.delay-2 { transition-delay: 0.24s; }
.js-fade.delay-3 { transition-delay: 0.36s; }

/* =========================
   ABOUT DETAIL
========================= */

.about-detail {
position: relative;
}
/* 線専用レイヤー */
.about-detail-line {
  position: absolute;
  top: 0;                 /* ← キャッチ基準にする */
  left: 80px;            /* ← コンテンツ右端と揃える */
  width: 420px;
  height: 100%;
  pointer-events: none;
}
/* 上の横線（キャッチ → 左） */
.about-detail-line::before {
  content: "";
  position: absolute;
  top: 28px;              /* ← キャッチの文字中央に合わせる */
  right: 0;
  width: 420px;
  height: 1px;
  background: #bbb;
}
/* 左の縦線 */
.about-detail-line span {
  position: absolute;
  top: 28px;              /* ← 上の横線と接続 */
  left: 0;
  width: 1px;
  height: calc(100% - 28px);
  background: #bbb;
}
/* 下の横線（03の下 → 右） */
.about-detail-line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 420px;
  height: 1px;
  background: #bbb;
}
.about-detail-inner {
  position: relative;
  max-width: 1250px;
  margin-left: auto;   /* 右寄せ */
  margin-right: 0;
  padding-right: 80px; /* 右の余白 */
  padding-left: 120px; /* ← 線の“内側”にテキストを入れる余白 */
　padding-bottom: 120px;
}
.about-detail-lead {
  transform: translateY(12px); /* 数値は微調整（8〜20pxくらい） */
  position: relative;
  max-width: 1100px;
  margin-left: auto;
  margin-right: 80px;   /* ← 逆コ右端と一致 */
  padding-left: 0;      /* ← 線は描かない */
  font-size: 21px;
  letter-spacing: 0.2em;
  color: #555;
  text-align: right;
  margin-bottom: 30px;
　
}
.about-detail-lead::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 420px;      /* 逆コ上辺と同じ長さ */
  height: 1px;
  background: #bbb;
  transform: translateY(-50%);
}



/* 各項目 */
.about-detail-text {
  text-align: left;
}

.about-detail-item {
  display: flex;
  gap: 40px;
  margin-bottom: 64px;
}

.about-detail-item:last-child {
  margin-bottom: 0;
}

/* 番号 */
.about-detail-num {
  font-size: 48px;
  font-weight: 300;
  color: #d2b2a4;
  line-height: 1;
  min-width: 80px;
  text-align: right;
}

/* テキスト */
.about-detail-text h3 {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  top: 0.15em;               /* ← これが超重要 */
}

.about-detail-text p {
  font-size: 14px;
  line-height: 1.9;
  color: #333;
  top: 0.15em;               /* ← これが超重要 */
}
/* 箇条書き本体 */
.about-list-detail {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
　  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.about-list-detail li {
  position: relative;
  font-size: 15px;
  line-height: 1;
  padding-left: 1.3em;
  margin-bottom: 4px;   /* ← 行間を詰める */
  text-align: left;
  padding-bottom:10px;
}

/* 黒丸 */
.about-list-detail li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0.1em;
}

/* 最後の説明文（見た目は同列、役割は別） */
.about-list-detail-note {
  position: relative;
  font-size: 15px;
  line-height: 1.6;     /* 読ませるので少し広め */
  padding-left: 1.3em;
  margin-top: 8px;     /* ← ここで“少しだけ”間を空ける */
  text-align: left;
}

/* 説明文にも黒丸を付ける */
.about-list-detail-note::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0.15em;
}
.about-list-detail-note {
  padding-left: 0;
}

.about-list-detail-note::before {
  content: none;
}
/* =========================
   SERVICE BANNER
========================= */

.service-banner {
  position: relative;
  width: 100%;
  height: 160px; /* ここで高さを明確に指定 */
  overflow: hidden;
  margin-top:100px;
}

/* バナー内のラッパー */
.service-banner-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
/* バナー画像 */
.service-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* ★これが一番大事 */
  display: block;
}

.service-banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
}

.service-banner-text h2 {
  font-size: 24px;
  letter-spacing: 0.2em;
  margin: 0;
}

.service-banner-text p {
  font-size: 14px;
  font-weight:700;
  letter-spacing: 0.2em;
  margin: 4px 0 0;
}
/* セクション全体 */
.service-block {
  background: #ededed;
  padding: 50px 0;
   border: 3px solid #ccc; /* ← 外枠線 */
  position: relative;      /* ← 擬似要素のために必要 */
  margin-top:90px;
}
/* セクション内コンテナ */
.service-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}
/* タイトルエリア */
.service-header {
  text-align: center;
  margin-bottom: 64px;
}

.service-title {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.15em;
  border-bottom: 1px solid #ccc;
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.service-lead {
  font-size: 14px;
  line-height: 2;
  color: #555;
}

/* 画像と本文の並び（flex） */
.service-body-wrapper {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

/* 左：画像とラベル */
.service-img-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1 1 40%;
  min-width: 300px;
}

.service-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 14px;
  color: #b33a3a;
  letter-spacing: 0.1em;
  margin: 0;
  padding-top: 8px;
  margin-top:-200px;
}

.service-img {
  border-left: 2px solid #b33a3a;
  border-bottom: 2px solid #b33a3a;
  padding-left: 8px;
  padding-bottom: 8px;
}

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

/* 右：本文 */
.service-text {
  flex: 1 1 60%;
  min-width: 300px;
}
.service-text-main{
	margin:0 auto;
}
.service-body {
  font-size: 14px;
  line-height: 1.4;
  color: #333;
  margin-bottom: 24px;
  letter-spacing:1.3;
}

.service-body.red {
  color: #b33a3a;
  font-weight: 700;
  margin-bottom:0px;
}
.red{
	color: #b33a3a;
	font-weight:700;
}
.service-body .underline {
  text-decoration: underline;
}

/* 箇条書き */
.service-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.service-list li {
  font-size: 14px;
  color: #333;
  line-height: 1.9;
  margin-bottom: 4px;
  position: relative;
  padding-left: 1.2em;
}

.service-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
/* セクション全体 */
.support-section {
  background: #fff;
  padding: 90px 0;
  text-align: center;
}

/* 内側余白と幅 */
.support-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

/* タイトル */
.support-title {
  font-size: 24px;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.support-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  background: #aaa;
  margin: 12px auto 0;
}

/* リード文 */
.support-lead {
  font-size: 14px;
  color: #555;
  line-height: 2;
  margin-bottom: 60px;
}

/* 画像部分 */
.support-image {
  margin-bottom: 60px;
}

.support-image img {
  max-width: 70%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* 補足テキスト */
.support-note {
  font-size: 14px;
  color: #333;
  line-height: 2;
}
.support-note .red {
  color: #b33a3a;
  font-weight: 500;
}
.works-item a {
  text-decoration: none;
}
.works-section {
  position: relative;
  background: url('/wp-content/themes/client-renewal/assets/images/voice-bg.jpg') no-repeat center center / cover;
  color: #fff;
  padding: 80px 0;
  text-align: center;
  z-index: 1;
  overflow: hidden;
}
.works-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(27, 30, 44, 0.85); /* ← 透かしカラー */
  z-index: 0;
}

.works-inner {
  position: relative; /* ← 背景オーバーレイの上に表示させるため */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  z-index: 1;
}
.works-title {
  font-size: 24px;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
  text-align:left;
  padding-left:60px;
  font-weight:400;
}

.works-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-bottom: 48px;
}

.works-item {
  width: 300px;
  text-align: left;
}

.works-thumb{
  width: 100%;
  aspect-ratio: 4 / 3;   /* ← 16/9 や 1/1 に変えてOK */
  background: #fff;
  overflow: hidden;
}

.works-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.works-meta {
  margin-top: 16px;
  font-size: 14px;
  color: #fff;
}
.works-tags{
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.works-tag{
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  line-height: 1;
  border-radius: 999px;
  letter-spacing: .08em;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
}

/* スラッグ別に色を変えたい場合（例） */
.works-tag--sns{
  background: rgba(179,58,58,.35);
  border-color: rgba(179,58,58,.6);
}

.works-tag--consulting{
  background: rgba(31,46,77,.35);
  border-color: rgba(31,46,77,.6);
}

.works-client {
  margin-bottom: 8px;
}

.works-description {
  line-height: 1.6;
  font-size:20px;
  text-decoration:none;
}
  .works-single-content p {
    text-align: left;    /* ← SPは左寄せの方が読みやすい */
  }
.works-btn{
	text-align:right;
    padding-right:70px;
	font-weight:600;
}
/* ボタン */
.works-btn a {
  display: inline-block;
  background: #fff;
  color:#1b1e2c;
  padding: 10px 24px;
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: 0.3s;
  text-decoration: none;
}

.works-btn a:hover {
  opacity: 0.8;
}
/* 実績一覧（白背景）用のタグ見た目 */
.works-archive .works-tags{
  margin: 8px 0 10px;
}
/* 実績詳細：Instagramリンクの見た目調整 */
.works-single-instagram a,
.works-single-instagram a:link,
.works-single-instagram a:visited,
.works-single-instagram a:hover,
.works-single-instagram a:active {
  color: #1f2e4d;        /* サイトの基本テキスト色（黒寄り） */
  text-decoration: none; /* 下線を完全に消す */
}
.works-single-instagram{
  margin: 8px 0 0;
}

.works-single-instagram a{
  font-size: 14px;
  color: #b33a3a;
  text-decoration: none;
  border-bottom: 1px solid rgba(179,58,58,.4);
  padding-bottom: 2px;
  transition: opacity .3s;
}

.works-single-instagram a:hover{
  opacity: .7;
}
/* hover時だけ少し変化を付けたい場合（任意） */
.works-single-instagram a:hover {
  opacity: 0.7;
}

.works-archive .works-tag{
  background: #f2f2f2;
  border: 1px solid #ddd;
  color: #1f2e4d;
}

/* スラッグ別に色付けしたい場合（任意） */
.works-archive .works-tag--sns{
  background: rgba(179,58,58,.10);
  border-color: rgba(179,58,58,.35);
  color: #b33a3a;
}
.works-archive .works-tag--consulting{
  background: rgba(31,46,77,.10);
  border-color: rgba(31,46,77,.25);
  color: #1f2e4d;
}

/* セクション全体 */
.trouble-block {
  background: #e5e0e1;
  padding: 30px 0;
  position: relative;
  z-index:0;
}
/* ▼追加：背景の山形デザイン */
.trouble-block::after {
  content: '';
  position: absolute;
  bottom: -40px; /* ↓調整可 */
  left: 0;
  width: 100%;
  height: 80px; /* ↓調整可 */
  background: #e5e0e1;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  z-index: -1;
}
/* 中央寄せコンテナ */
.trouble-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.works-single-instagram{
  margin: 8px 0 0;
}

.works-single-instagram a{
  font-size: 14px;
  color: #b33a3a;
  text-decoration: none;
  border-bottom: 1px solid rgba(179,58,58,.4);
  padding-bottom: 2px;
  transition: opacity .3s;
}
/* 実績詳細：Instagramリンク完全リセット */
.works-single-instagram a {
  color: #1f2e4d !important;
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  background-image: none !important;
}

/* 擬似要素で線が出てる場合も殺す */
.works-single-instagram a::before,
.works-single-instagram a::after {
  content: none !important;
}

.works-single-instagram a:hover{
  opacity: .7;
}

/* タイトル */
.trouble-title {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #555;
  margin-bottom: 64px;
}

/* カード全体（flex） */
.trouble-cards {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* カード */
.trouble-card {
  background: #fff;
  padding: 24px;
  flex: 1 1 30%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: left;
　 display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 420px; /* ← 調整！ */
}

/* 番号＋見出し */
.trouble-number {
  font-weight: 500;
  font-size: 16px;
  color: #222;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.trouble-number span {
  margin: 0 6px;
}

/* 画像 */
.trouble-image img {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
}

/* テキスト */
.trouble-text {
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
/* セクション全体 */
.support-block {
  background: #fff;
  padding: 80px 0;
}

/* コンテナ */
.support-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

/* タイトル */
.support-title {
  font-size: 28px;
  font-weight: 500;
  color: #333;
  margin-bottom: 16px;
}

/* リード文 */
.support-lead {
  font-size: 16px;
  color: #555;
  line-height: 2;
  margin-bottom: 64px;
}

.support-lead .red {
  color: #b33a3a;
  font-weight: 600;
}

/* 画像 */
.support-image-2 img {
  max-width: 80%;
  margin:0 auto;
  height: auto;
}
/* =========================
   MERIT
========================= */
/* セクション全体 */
.merit-section {
  padding: 80px 0;
  background: #ededed;
  border: 3px solid #ccc; /* ← 外枠線 */
  margin: 0 auto;
}

.merit-inner {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative; /* ← 擬似要素のために必要 */
}

/* タイトル */
.merit-title {
  font-size: 24px;
  text-align: center;
  color: #333;
  margin-bottom: 64px;
}

.merit-title .red {
  color: #b33a3a;
}

/* 各項目全体 */
.merit-item {
  margin-bottom: 50px;
}

/* 見出し */
.merit-number {
  font-weight: 600;
  margin-bottom: 16px;
  color: #333;
}

/* 横並び */
.merit-body {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.merit-image {
  flex: 0 0 350px;
}

.merit-image img {
  width: 100%;
  height: auto;
}

.merit-text {
  flex: 1;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

.merit-text .red {
  color: #b33a3a;
  font-weight: 600;
}
/* =========================
   voice
========================= */
.voice-heading {
  background: #fff;
  text-align: center;
  padding-bottom:20px;
}

.voice-title {
  font-size: 32px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}

.voice-subtitle {
  font-size: 16px;
  color: #666;
  letter-spacing: 0.1em;
}
/* =========================
   blog
========================= */
.blog-section {
  background: #fff;
  padding: 80px 0;
  text-align: center;
  border-top: 3px double #2d2f44;

}

.blog-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.blog-header {
  margin-bottom: 48px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
 p{
	text-decoration: none;
}

.blog-en {
  font-size: 28px;
  color: #444;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  position: relative;
  padding: 0 40px; /* ← 両サイドに余白を確保 */
}

.blog-en::before,
.blog-en::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 600px; /* 線の長さ */
  height: 3px;
  background: repeating-linear-gradient(
    to bottom,
    #2d2f44,
    #2d2f44 1px,
    transparent 1px,
    transparent 2px,
    #2d2f44 2px,
    #2d2f44 3px
  );
  transform: translateY(-50%);
}

.blog-en::before {
  left: 0;
  transform: translate(-100%, -50%);
}

.blog-en::after {
  right: 0;
  transform: translate(100%, -50%);
}


.blog-ja {
  font-size: 14px;
  color: #555;
}

.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between; /* 4つ並べる */
  margin-bottom: 48px;
}

.blog-item {
  width: 260px;
  text-align: left;
}

.blog-thumb img,
.blog-thumb .no-image {
  width: 100%;
  height: 160px;
  background: #ddd;
  object-fit: cover;
}

.blog-title {
  margin-top: 16px;
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  text-decoration: none; /* ← 下線を削除 */
}
.blog-btn {
  text-align: center;
  margin-top: 16px;
  position: relative;
  padding-bottom: 40px;
}

.blog-btn::after {
  content: "";
  display: block;
  width: 600px;
  height: 3px;
  margin: 32px auto 0;
  background: repeating-linear-gradient(
    to bottom,
    #2d2f44,
    #2d2f44 1px,
    transparent 1px,
    transparent 2px,
    #2d2f44 2px,
    #2d2f44 3px
  );
}

.blog-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #2d2f44;
  color: #fff;
  padding: 12px 28px;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: 0.3s;
  border-radius: 2px;
  line-height: 1;
}

.blog-btn a span {
  display: inline-block;
  width: 20px;
  height: 20px;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  color: #2d2f44;
  font-weight: bold;
}

/* 初期は非表示 */
.blog-slider-wrapper {
  display: none;
}

.blog-btn a:hover {
  opacity: 0.8;
}
.blog-card-meta{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom: 10px;
}

.blog-card-label{
  display:inline-block;
  font-size: 11px;
  letter-spacing: .12em;
  padding: 4px 10px;
  border-radius: 999px;
  line-height: 1;
}

.blog-card-label.is-news{
  background:#1f2e4d;
  color:#fff;
}

.blog-card-label.is-blog{
  background:#eee;
  color:#1f2e4d;
  border:1px solid #d5d5d5;
}

/* 既存のdateが<p>前提だったので、念のためtimeでも崩れないように */
.blog-card-date{
  font-size: 12px;
  color:#777;
  margin:0;
}
/* ▼ブログセクション内のリンク下線を完全に消す（PC/SP共通） */
.blog-section a,
.blog-section a:link,
.blog-section a:visited,
.blog-section a:hover,
.blog-section a:active {
  text-decoration: none;
}

/* =========================
   company
========================= */
.company-section {
  background: #fff;
  padding: 80px 0;
}

.company-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 60px;
  flex-wrap: wrap; /* レスポンシブ対策 */
}

.company-text {
  flex: 1;
  text-align: left;
}

.company-en {
  font-size: 28px;
  color: #444;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.company-ja {
  font-size: 16px;
  color: #555;
}

.company-image-area {
  flex: 1;
  position: relative;
  display: inline-block;
}

.company-bg {
  position: absolute;
  top: -70px;
  right: 0px; /* 少し右に飛び出す */
  width: 250px;   /* ← 縦長に */
  height: 200%;
  background: #bcc3cf;
  z-index: 0;
}

.company-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
}


/* =========================
   代表メッセージ
========================= */
.message-section {
  background: #fff;
  padding: 80px 0;
}

.message-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}
.message-content {
  display: flex;
  align-items: center;  /* ← 上下中央揃えに変更！ */
  gap: 60px;
  flex-wrap: wrap;
}


.message-image {
  flex: 1;
  position: relative;
}

.message-image img {
  width: 90%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}

/* カラーの背景風オブジェクト（左下に伸びる） */
.message-image::before {
  content: '';
  position: absolute;
  left: -12px;
  bottom: -12px;
  width: 90%;
  height: 90%;
  background: #dba99b;
  z-index: 1;
}

.message-text {
  flex: 1;
  font-size: 14px;
  color: #333;
  line-height: 1.7;
}

.message-title {
  display: flex;
  align-items: center;
  font-size: 28px;
  font-weight: bold;
  color: #7b3e2e;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.message-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #7b3e2e;
  margin-left: 16px;
}
.message-subtitle {
  font-size: 14px;
  color: #934b3c;
  margin-bottom: 24px;
  margin-top:-10px;
}
/* =========================
   outlie
========================= */
.company-section {
  background: #f8f8f8;
  padding: 30px 0;
  color: #333;
}

.company-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.company-header {
  text-align: left;
  margin-bottom: 10px;
}

.company-title {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.company-subtitle {
  font-size: 14px;
  color: #666;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
}

.company-table th {
  text-align: left;
  padding: 12px 0;
  width: 120px;
  font-weight: bold;
  vertical-align: top;
  padding: 12px 0;
  border-bottom: 1px dotted #ccc;
}

.company-table td {
  padding: 12px 0;
  border-bottom: 1px dotted #ccc;
}

.company-map {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.company-map iframe {
  width: 100%;
  height: 360px; /* 横長感を出すために高さは抑えめ */
  border: none;
  display: block;
}
/* =========================
   CONTACT
========================= */
.contact-section {
  padding: 80px 0;
  background: #fff;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 80px;
  border: 3px double #1f2e4d;   /* 二重線 */
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

/* ---------- 左テキスト ---------- */
.contact-text {
  flex: 1;
}

.contact-en {
  font-size: 32px;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
  color: #444;
}

.contact-ja {
  font-size: 16px;
  color: #555;
  margin-bottom: 24px;
}

.contact-lead {
  font-size: 14px;
  line-height: 1.9;
  color: #333;
}

/* ---------- 右ボタン ---------- */
.contact-btn-area {
  flex-shrink: 0;
  min-width: 240px;  /* ← 追加してみて */
}

.contact-btn-2 {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 32px;
  background: #3b3a4a;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-decoration: none;
  white-space: nowrap;
}

.contact-btn-icon {
  font-size: 14px;
}
.contact-page-section {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.contact-page-title {
  font-size: 14px;
  letter-spacing: 0.2em;
  margin-bottom: 40px;
}

.contact-page-title span {
  display: block;
  font-size: 24px;
  color: #555;
  margin-top: 8px;
}

.form-note {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.8;
}
.form-note span {
  font-size: 13px;
  color: #666;
}

.contact-table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 30px;
  border-collapse: collapse;
}

.contact-table th {
  background: #d7dde2;
  width: 30%;
  padding: 16px;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

.contact-table td {
  background: #f9f9f9;
  padding: 16px;
  text-align: left;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  background: #fff;
}

.form-textarea {
  height: 150px;
  resize: vertical;
}

.wpcf7-list-item {
  margin-right: 20px;
  font-size: 14px;
}

.consent-check {
  font-size: 12px;
  margin-bottom: 30px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.form-submit {
  text-align: center;
}

.form-submit-button {
  background: #1f2e4d;
  color: #fff;
  border: none;
  padding: 14px 40px;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.3s;
}
.form-submit-button:hover {
  opacity: 0.8;
}
/* タイトル内の英字 */
.contact-en {
  display: block;
  font-size: 30px;
  color: #555;
  margin-top: 8px;
  letter-spacing: 0.15em;
}

/* フォーム全体を囲む枠 */
.contact-box {
  background: #fff;
  padding: 40px 30px;
  margin: 0 auto;
  max-width: 960px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
  border-radius: 4px;
}

/* 通知文 */
.form-note {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.8;
}
.form-note span {
  font-size: 13px;
  color: #666;
}
/* =========================
   WORKS ARCHIVE
========================= */

.works-archive-header {
  padding: 30px 0 40px;
  text-align: center;
  background: #fff;
  display: block;
  margin:0 auto;
}
.works-archive-grid {
  padding: 80px 0;
  background: #f5f5f5;
}

.works-archive-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* カード */
.works-card {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.works-card-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

/* サムネ */
.works-card-thumb {
  aspect-ratio: 16 / 9;
  background: #ddd;
  overflow: hidden;
}

.works-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* noimage */
.works-card-noimage {
  width: 40%;
  height: 40%;
  background: linear-gradient(135deg, #ccc, #aaa);
}

/* テキスト */
.works-card-body {
  padding: 10px 10px 10px;
}

.works-card-category {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #666;
  margin-bottom: 3px;
}

.works-card-title {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}

.works-card-excerpt {
  font-size: 13px;
  line-height: 1.7;
  color: #555;
}

/* 矢印 */
.works-card-arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
  font-size: 18px;
  transition: transform 0.3s ease;
}

/* hover */
.works-card:hover .works-card-arrow {
  transform: translateX(6px);
}

.works-card:hover img {
  transform: scale(1.05);
  transition: transform 0.5s ease;
}
.works-archive-title {
  display: flex;
  flex-direction: column;
  align-items: center;   /* ここで確実に中央 */
  justify-content: center;
  gap: 10px;
  margin: 0;             /* h1のデフォ余白を殺す */
  color: #555;
  text-align: center;
}

.works-archive-title .works-ja {
  display: block;
  font-size: 48px;       /* 今の見た目に合わせて調整してOK */
  line-height: 1.1;      /* 余白でズレて見えるのを防ぐ */
  letter-spacing: 0.06em;
}

.works-archive-title .works-en {
  display: block;
  font-size: 18px;       /* 画像の比率ならこのくらい */
  line-height: 1;
  letter-spacing: 0.12em;
}
/* 実績詳細：ホームページボタン */
.works-single-site {
  margin-top: 16px;
}

.works-single-site a {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 26px;
  font-size: 16px;
  letter-spacing: 0.08em;

  color: #b33a3a;
  text-decoration: none;

  border: 1.5px solid #e3bcbc;
  border-radius: 999px;

  background: transparent;
  transition: all 0.3s ease;
}

/* 矢印（CSSで再現） */
.works-single-site a::after {
  content: "→";
  font-size: 14px;
  transition: transform 0.3s ease;
}

/* hover */
.works-single-site a:hover {
  background: rgba(179,58,58,0.06);
}

.works-single-site a:hover::after {
  transform: translateX(4px);
}
/* =========================
   WORKS SINGLE
========================= */

.works-single-header {
  padding: 30px 0 40px;
  text-align: center;
  background: #fff;
}

.works-single-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.works-single-client {
  font-size: 14px;
  color: #777;
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}

.works-single-title {
  font-size: 32px;
  line-height: 1.4;
  color: #333;
}

.works-single-thumb {
  margin: 0 auto;
  max-width: 1000px;
}

.works-single-thumb img {
  width: 50%;
  height: auto;
  display: block;      /* ← 超重要 */
  margin: 0 auto;      /* ← 中央寄せ */
}

.works-single-content {
  padding: 40px 0 40px;
}

.works-single-content p {
  line-height: 1.9;
  margin-bottom: 1.5em;
  color: #444;
  text-align:left;
  font-weight:700;
}

.works-single-back {
  text-align: center;
  padding-bottom: 80px;
}

.works-single-back a {
  display: inline-block;
  padding: 12px 32px;
  border: 1px solid #ccc;
  background: #1f2e4d;   /* ← 紺色（サイトと統一） */
  color: #fff;           /* ← 白文字 */
  text-decoration: none;
  transition: 
  background-color 0.3s ease,
  color 0.3s ease,
  transform 0.3s ease;
}
.works-single-back a:hover{
  background:#fff ;   /* ← 紺色（サイトと統一） */
  color: #1f2e4d;   /* ← 白文字 */
  transform: translateY(-2px);
}
.instagram-text{
	color:#b33a3a;
}
/* =========================
   BLOG ARCHIVE
========================= */

.blog-archive-header {
  padding: 30px 0 40px;
  text-align: center;
  background: #fff;
}

.blog-archive-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #555;
}

.blog-archive-title .blog-ja {
  font-size: 36px;
  letter-spacing: 0.08em;
}

.blog-archive-title .blog-en {
  font-size: 16px;
  letter-spacing: 0.18em;
}

.blog-archive-grid {
  padding: 80px 0;
  background: #f5f5f5;
}

.blog-archive-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* カード */
.blog-card {
  background: #fff;
}

.blog-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.blog-card-thumb {
  aspect-ratio: 16 / 9;
  background: #ddd;
  overflow: hidden;
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-noimage {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ccc, #aaa);
}

.blog-card-body {
  padding: 16px;
}

.blog-card-date {
  font-size: 12px;
  color: #777;
  margin-bottom: 6px;
}

.blog-card-title {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.blog-card-excerpt {
  font-size: 13px;
  line-height: 1.7;
  color: #555;
}
/* =========================
   BLOG SINGLE (SEO)
========================= */

.blog-single-header {
  padding: 32px 0 40px;
  text-align: left;
  background: #fff;
}

.blog-single-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.blog-single-meta {
  font-size: 13px;
  color: #777;
  margin-bottom: 10px;
}

.blog-single-title {
  font-size: 32px;
  line-height: 1.4;
  color: #222;
}

.blog-single-eyecatch {
  margin: 10px auto;
  max-width: 1000px;
  text-align: center;
}

.blog-single-eyecatch img {
  width: 60%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.blog-single-content {
  padding: 40px 0;
}

.blog-single-content p {
  line-height: 1.9;
  margin-bottom: 1.6em;
  color: #444;
}

/* 見出し（SEO的に重要） */
.blog-single-content h2 {
  font-size: 24px;
  margin: 48px 0 20px;
  line-height: 1.4;
}

.blog-single-content h3 {
  font-size: 18px;
  margin: 32px 0 16px;
}

/* 一覧に戻る */
.blog-single-back {
  text-align: center;
  padding-bottom: 80px;
}

.blog-single-back a {
  display: inline-block;
  padding: 12px 32px;
  background: #1f2e4d;
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.blog-single-back a:hover {
  background: #fff;
  color: #1f2e4d;
}
/* =========================
   FOOTER
========================= */

.site-footer {
  background: #0b1f3b;
  color: #fff;
  padding: 30px 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 120px;
}

/* -------------------------
   LEFT : CONTACT
------------------------- */

.footer-contact {
  max-width: 420px;
}

.footer-title {
  font-size: 28px;
  letter-spacing: 0.18em;
  margin-bottom: 24px;
}

.footer-text {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  opacity: 0.9;
}

.footer-link {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.6);
  padding-bottom: 4px;
}

.footer-link:hover {
  opacity: 0.8;
}

.footer-sns {
  margin-top: 32px;
}

.footer-sns img {
  width: 20px;
  height: auto;
}

/* -------------------------
   RIGHT : NAV
------------------------- */

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;

  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 24px 80px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.2em;
  opacity: 0.85;
}
.footer-nav h1{
	font-size:10px;
	line-height:0.01em;
}
.footer-nav a:hover {
  opacity: 1;
}

/* =========================
   RESPONSIVE (スマホ対応)
========================= */

/* スマホ：幅768px以下 */
@media screen and (max-width: 768px) {

  html, body {
    font-size: 15px;
  }

  /* ----------------------
     HERO
  ---------------------- */
  .hero {
    min-height: auto;
    padding: 30px 20px 120px;
    text-align: center;
  }
  .hero-bg {
    width: 100%;
    height: 200px;
    position: relative;
    transform: none;
  }
  .hero-content {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    padding: 10px;
    background: rgba(255,255,255,0.6);
    margin-top: 0px;
  }
  .hero-lead {
    font-size: 17px;
    letter-spacing: 0.08em;
  }
  .hero-sub {
    font-size: 11px;
	font-weight:700;
    letter-spacing: 0.4em;
  }

  /* ----------------------
     ABOUT SECTION
  ---------------------- */
 .about-section {
  padding: 170px 0 100px;
  background: #fff;
}
	.about-title{
		font-size:24px;
		font-weight:700;
}
	.about-lead{
		font-size:17px;
		font-weight:700;
	}
	.about-body{
		font-size:12px;
	    font-weight:700;
	}
		.about-body-one{
		font-size:12px;
		font-weight:700;
	}
		.about-body-one{
		font-size:12px;
		font-weight:700;
	}
	.about-body br{
display:none;
	}
	.about-list {
  margin-top: 0px; 
  margin-bottom:20px;
}
.about-list li {
  position: relative;
  font-size: 15px;
  font-weight:700;
  line-height: 0.95;
  padding-left: 1.2em;
  margin-bottom: 2px; /* 行間はここで詰める */
}

/* 黒丸（・）をCSSで作る */
.about-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

/* 赤いアンダーライン */
.about-list li::after {
  left: 0.5em;
  bottom: -3px;
  width: calc(60% - 1.2em);
  height: 3px;
  opacity:0.7;
  background: #b33a3a; /* 上品な赤 */
}
  .about-inner {
    display: block;
    padding: 0 20px;
  }
  .about-images {
    margin-top: 24px;
    transform: none;
  }
  .about-image-main img,
  .about-image-sub img {
    width: 100%;
  }
.about-image-main {
  position: relative;
  z-index: 1;
  width: 60%;
}

.about-image-main img {
  width: 100%;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.about-image-sub {
  position: absolute;
  right: 0;
  bottom: -100px;
  width: 40%;
  z-index: 2;
}

.about-image-sub img {
  width: 100%;
  display: block;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}
  /* ----------------------
     ABOUT DETAIL
  ---------------------- */
  .about-detail-inner {
    padding: 0 20px;
  }
  .about-detail-line {
    display: none; /* 線を消す */
  }
  .about-detail-item {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
  }
  .about-detail-num {
    font-size: 32px !important;
	font-weight:700;
    text-align: left;
  }
.about-detail-lead {
  transform: translateY(12px); /* 数値は微調整（8〜20pxくらい） */
  position: relative;
  max-width: 1100px;
  margin-left: auto;
  margin-right: 30px;   /* ← 逆コ右端と一致 */
  padding-left: 0;      /* ← 線は描かない */
  font-size: 20px;
  letter-spacing: 0.2em;
  color: #555;
  margin-bottom: 30px;
  text-align:left;
　
}
.about-detail-lead::before {
  position: absolute;
  left: 0;
  top: 50%;
  width:1000px;      /* 逆コ上辺と同じ長さ */
  height: 1px;
  background: #bbb;
  transform: translateY(-50%);
}
	.about-detail-text p {
  font-size: 13px;
  font-weight:700;
  line-height: 1.9;
  color: #333;
  top: 0.15em;               /* ← これが超重要 */
}
/* 箇条書き本体 */
.about-list-detail {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
　  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.about-list-detail li {
  position: relative;
  font-size: 14px;
  font-weight:700;
  line-height: 1;
  padding-left: 1.3em;
  margin-bottom: 1px;   /* ← 行間を詰める */
  text-align: left;
  padding-bottom:10px;
}

/* 黒丸 */
.about-list-detail li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0.1em;
}
  /* ----------------------
     SERVICE BLOCK
  ---------------------- */
	.service-title{
		font-size:20px;
		font-weight:700;
	}
	.service-text-main{
		font-size:12px;
	    font-weight:700;
	}
	.service-body{
		font-size:12px;
		font-weight:700;
		line-height: 1.9;
	}
	.service-body br{
		display:none;
	}
	/* タイトルエリア */
.service-header {
  margin-bottom: 20px;
}
	.service-block{
		margin-top:40px;
		padding: 20px 0;
		
	}
  .service-body-wrapper {
    flex-direction: column;
    gap: 32px;
    padding: 0 20px;
  }
  .service-img-wrapper,
  .service-text {
    min-width: auto;
    width: 100%;
  }
  .service-label {
    transform: none;
    writing-mode: horizontal-tb;
    margin-top: 0;
  }

/* 箇条書き */
.service-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.service-list li {
  font-size: 12px;
  font-weight:700;
  color: #333;
  line-height: 1.7;
  margin-bottom: 1px;
  position: relative;
  padding-left: 1.2em;
}

.service-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
  /* ----------------------
     SUPPORT SECTION
  ---------------------- */
	.support-title{
		font-size:20px;
	    font-weight:700;
	}
	.support-lead{
		font-size:13px;
		font-weight:700;
	}
	.support-note{
		font-size:13px;
		font-weight:700;
	}
  .support-image img,
  .support-image-2 img {
    max-width: 105%;
  }

  /* ----------------------
     WORKS / BLOG / CARDS
  ---------------------- */
	.works-title {
  margin-bottom: 20px;
}

.works-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-bottom: 4px;
}
  .works-item,
  .blog-item,
  .trouble-card,
  .merit-image,
  .merit-text {
    width: 100%;
	
  }
.works-section {
  padding: 20px 0;
}
	.works-btn{
	text-align:center;
    padding-right:0px;
	font-weight:600;
}
/* ボタン */
.works-btn a {
  display: inline-block;
  background: #fff;
  color:#1b1e2c;
  padding: 10px 24px;
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: 0.3s;
  text-decoration: none;
}

.works-btn a:hover {
  opacity: 0.8;
}
.works-single-site {
  margin-top: 10px;
  font-size: 12px;       /* ここで大きさ調整 */
  font-weight: 600;
}
  /* ----------------------
     COMPANY
  ---------------------- */
	.company-section{
		padding:0px 0px;
	}
  .company-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 0 20px;
  }
  .company-bg {
    display: none;
  }

  /* ----------------------
     CONTACT
  ---------------------- */
  .contact-inner {
    max-width: 700px;
    flex-direction: column;
    padding: 20px 0px;
    text-align: center;
    gap: 20px;
  }
  .contact-btn-area {
    width: 90%;
  }
  .contact-btn-2 {
    width: 80%;
    justify-content: center;
  }

}
/* ハンバーガーメニュー：768px以下 */
@media screen and (max-width: 768px) {
	.contact-btn{
		display:none;
	}
  .contact-nav-item {
    display: block;
    margin-top: 20px;
    border-top: 1px solid #ccc;
    padding-top: 10px;
  }
  .contact-nav-item a {
    color: #0b1f3b;
    font-weight: bold;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    top: 24px;
    right: 20px;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1001; /* CONTACTより上にする */
  }

  .menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #1f2e4d;
    margin: 5px 0;
    transition: all 0.3s ease;
  }

  .menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .global-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    width: 100%;
    padding: 20px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
	
  }

  .global-nav.active {
    display: flex;
  }

  .global-nav ul {
    flex-direction: column;
    gap: 16px;
  }

  .global-nav li a {
    font-size: 16px;
    font-weight:700;
    padding: 8px 0;
  }
	/* =========================
   NEWS（Hero overlap）
========================= */

.news-overlap {
  position: absolute;
  right: 5%;
  bottom: -120px;
  width: 350px;
  z-index: 30;
}
.news-box {
  z-index:
  max-width: 700px;
  margin: 0 auto;
  background: rgba(220,220,220,0.92);
  padding: 10px 20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
　z-index:10;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.news-title {
  font-size: 15px;
  font-weight:700;
  letter-spacing: 0.3em;
  color: #1f2e4d;
  margin-bottom: 10px;
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-item {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 10px 0;
  border-bottom: 1px dashed #ccc;
}

.news-item:last-child {
  border-bottom: none;
}

.news-date {
  font-size: 9px;
  font-weight:700;
  color: #777;
  white-space: nowrap;
}

.news-link {
  font-size: 11px;
  font-weight:700;
  color: #1f2e4d;
  text-decoration: none;
  line-height: 1.6;
}
	.news-label {
  font-size: 8px;
  font-weight:700;
  letter-spacing: 0.15em;
  padding: 3px 10px;
  margin-right: 12px;
  border-radius: 20px;
  background: #1f2e4d;
  color: #fff;
}
	/* タイトル */
.trouble-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* カード全体（flex） */
.trouble-cards {
  display: block;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}
	
/* カード */
.trouble-card {
  padding: 15px;
  min-height: 300px; /* ← 調整！ */
  margin-top:10px;
}
/* 画像 */
.trouble-image img {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
}

/* テキスト */
.trouble-text {
  font-size: 12px;
  font-weight:700;
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
	
.merit-inner {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative; /* ← 擬似要素のために必要 */
}

/* タイトル */
.merit-title {
  font-size: 20px;
  margin-bottom: 30px;
}
	.merit-section {
  padding: 30px 0;
}
	.merit-text {
  flex: 1;
  font-size: 12px;
  font-weight:700;
}
	.merit-text br{
		display:none;
	}
	
	.message-section{
		padding:20px 0px;
	}
.message-content {
  display: block;
  align-items: center;  /* ← 上下中央揃えに変更！ */
  gap: 60px;
  flex-wrap: wrap;
}
.message-image {
  flex: 1;
  position: relative;
}

.message-image img {
  width: 90%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}

/* カラーの背景風オブジェクト（左下に伸びる） */
.message-image::before {
  content: '';
  position: absolute;
  left: -12px;
  bottom: -12px;
  width: 90%;
  height: 90%;
  background: #dba99b;
  z-index: 1;
}

.message-text {
  flex: 1;
  font-size: 12px;
  font-weight:700;
  color: #333;
  line-height: 1.7;
}

.message-title {
  display: flex;
  align-items: center;
  font-size: 28px;
  font-weight: bold;
  color: #7b3e2e;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.message-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #7b3e2e;
  margin-left: 16px;
}
.message-subtitle {
  font-size: 11px;
  color: #934b3c;
  margin-bottom: 24px;
  margin-top:-10px;
}
	td{
		font-size:12px;
	}
	
	
	
	
  /* ----------------------
     FOOTER-RESPONSIVE
  ---------------------- */
  .footer-inner {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
    text-align: center;
    align-items: center;
  }

  .footer-contact {
    max-width: 100%;
  }

  .footer-title {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .footer-text {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .footer-link {
    font-size: 13px;
  }

  .footer-sns {
    margin-top: 24px;
	display:flex;
	justify-content:center;
  }

  .footer-sns img {
    width: 18px;
    text-align:center;
  }

  .footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .footer-nav li {
    text-align: center;
  }

  .footer-nav a {
    font-size: 14px;
  }

  .footer-nav h1 {
    font-size: 10px;
    line-height: 1.4;
    margin-top: 4px;
  }
	/* スライダー非表示（PC用） */
.blog-slider {
  display: none;
}
  /* PC用の.blog-listを非表示 */
  .blog-list {
    display: none;
  }

  /* スマホ用スライダー表示 */
  .blog-slider {
    display: block;
    padding: 0 16px;
  }

  .swiper-slide {
    width: 80%; /* 少し見切れる感じに */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background: #fff;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 20px;
  }

  .blog-thumb img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .blog-title {
    font-size: 14px;
    margin-top: 8px;
    color: #333;
  }
  .blog-slider-wrapper {
    display: block;
  }

  .blog-list {
    display: none;
  }
	.blog-btn::after {
  width: 300px;
  height: 3px;
}
	.blog-section{
		padding:0px 20px;
	}
	.contact-page-title {
  font-size: 14px;
  letter-spacing: 0.2em;
  margin-bottom: 40px;
}

.contact-page-title span {
  display: block;
  font-size: 24px;
  color: #555;
  margin-top: 8px;
}

.form-note {
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-table th {
  background: #d7dde2;
  width: 33%;
  padding: 16px;
  text-align: left;
  vertical-align: top;
  font-size: 10px;
}

.contact-table td {
  background: #f9f9f9;
  padding: 16px;
  text-align: left;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 10px;
  font-size: 12px;
  border: 1px solid #ccc;
  background: #fff;
}

.form-textarea {
  height: 150px;
  resize: vertical;
}
	.wpcf7-list-item {
  margin-right: 20px;
  font-size: 10px;
}
	/* =========================
   WORKS ARCHIVE - SP
========================= */

  .works-archive-inner {
    grid-template-columns: repeat(2, 1fr); /* ← 2列にする */
    gap: 20px;                             /* ← SPは少し詰める */
    padding: 0 20px;                      /* ← 左右余白も縮める */
  }

  .works-card-body {
    padding: 10px;
  }

  .works-card-title {
    font-size: 12px;
  }

  .works-card-excerpt {
   display:none;
  }
/* =========================
   WORKS SINGLE - SP
========================= */
  .works-single-inner {
    padding: 0 16px;
  }

  .works-single-client {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .works-single-title {
    font-size: 22px;
    line-height: 1.5;
  }

  .works-single-thumb img {
    width: 90%;          /* ← SPでは大きめに */
  }

  .works-single-content {
    padding: 24px 0 32px;
  }

  .works-single-content p {
    font-size: 12px;
    line-height: 1.9;
    text-align: left;    /* ← SPは左寄せの方が読みやすい */
  }

  .works-single-back {
    padding-bottom: 60px;
  }
	.works-single-site a{
		font-size:12px;
	     padding: 6px 13px;
	}
  .works-single-back a {
    padding: 12px 28px;
    font-size: 13px;
    letter-spacing: 0.12em;
  }
  .blog-archive-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 20px;
  }

  .blog-card-title {
    font-size: 14px;
  }

  .blog-card-excerpt {
    font-size: 12px;
  }
	/* =========================
   BLOG SINGLE - Responsive
========================= */

  .blog-single-header {
    padding: 24px 0 28px;
  }

  .blog-single-inner {
    padding: 0 16px;
  }

  .blog-single-title {
    font-size: 22px;
    line-height: 1.45;
  }

  .blog-single-meta {
    font-size: 12px;
  }

  /* アイキャッチはSPでは横いっぱいに */
  .blog-single-eyecatch {
    margin: 24px auto;
  }

  .blog-single-eyecatch img {
    width: 70%;
  }

  /* 本文 */
  .blog-single-content {
    padding: 24px 0;
  }

  .blog-single-content p {
    font-size: 14px;
    line-height: 1.8;
  }

  /* 見出し */
  .blog-single-content h2 {
    font-size: 20px;
    margin: 36px 0 16px;
  }

  .blog-single-content h3 {
    font-size: 16px;
    margin: 28px 0 14px;
  }

  /* 戻るボタン */
  .blog-single-back {
    padding-bottom: 60px;
  }

  .blog-single-back a {
    padding: 12px 28px;
    font-size: 13px;
  }
	.contact-lead {
  font-size: 14px;
  font-weight:700;
  line-height: 1.9;
  color: #333;
}
	.merit-number {
  font-weight: 700;
  font-size:15px;
  margin-bottom: 16px;
  color: #333;
}
	.blog ja{
	font-weight:700;
	}
	.voice-subtitle{
		font-weight:700;
	}
	.about-detail-text h3 {
  font-weight: 700;
}
}
