
/* =========================
 *
  HEADER
========================= */
/* デフォルト背景 */
body {
  background-color: #ffffff;
  transition: background-color 0.8s ease;
  overflow-x:hidden;
  font-family: 
  "Noto Sans JP",
  "Hiragino Kaku Gothic ProN",
  "Hiragino Sans",
  "Yu Gothic",
  "Meiryo",
  sans-serif;
}


body.is-gray-bg {
  background-color: #3a3a3a;
}
a{
	text-decoration:none;
}
html,body{
  margin: 0;
  padding: 0;
   overflow-x:hidden;
}
.site-header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items:center;
  justify-content: space-between;
  padding-right:0px;
}

/* ロゴ */
.header-logo img {
  height: 40px;
  width: auto;
  margin-top:-10px;
}
.header-nav {
  margin-left: auto;
}
/* ナビ（PC） */
.header-nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav a {
  text-decoration: none;
  color: #111;
  font-size: 15px;
  font-weight: 500;
}

/* CTA */
.header-cta .cta-btn {
  background: #2f3336;
  color: #fff;
  padding: 15px 80px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition:0.6s ease; /* 調整 */
}
.header-cta {
  margin-left: 50px; /* ← ここを調整 */
}
.header-cta :hover{
	color: #2f3336;
	background:#fff;
}
.cta-btn:hocer{
	color: #2f3336;
	background:#fff;
}
.cta-vtn:hover{
	color: #fff;
	background: #2f3336;
}
/* =========================
  ハンバーガー
========================= */

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  margin-right:20px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #111;
}

/* =========================
  SPナビ
========================= */
.sp-nav{
  max-height:0;
  overflow:hidden;
  background:#fff;
  border-top:1px solid #eee;
  transition:max-height .4s ease;
}

/* 開いた状態 */
.sp-nav.active{
  transform:translateY(0);
  opacity:1;
  visibility:visible;
}

.sp-nav ul {
  list-style: none;
  padding: 24px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sp-nav a {
  text-decoration: none;
  color: #111;
  font-size: 16px;
}

.sp-cta a {
  display: inline-block;
  background: #2f3336;
  color: #fff;
  padding: 14px;
  text-align: center;
  border-radius: 4px;
}
.menu-toggle span{
  width:24px;
  height:2px;
  background:#111;
  transition:0.3s;
}

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

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

.menu-toggle.active span:nth-child(3){
  transform:translateY(-8px) rotate(-45deg);
}
/* =========================
 CONTACT CTA
========================= */

.contact-cta {
  background-image: url("../images/contact-bg.jpg");
  background-size:cover;
  background-position: center;
  padding: 30px 24px;
  color: #fff;
  text-align: center;
  font-weight:100;
}

.contact-cta-inner {
  max-width: 800px;
  margin: 0 auto;
    position:relative;
  z-index:5;
}

.contact-ttl {
  font-size: 36px;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.contact-sub {
  font-size: 14px;
  margin-bottom: 24px;
  opacity: 0.9;
  
}

.contact-text {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight:200;
}

.contact-btn {
  display: inline-block;
  background: #fff;
  color: #2f3336;
  padding: 16px 48px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 200;
  transition: 
    background-color 0.3s ease,
    color 0.3s ease;
}
.contact-btn:hover{
	color: #fff;
	background: #2f3336;
}
/* =========================
 FOOTER MAIN
========================= */

.footer-main {
  background: #f3f2f0;
  padding: 80px 24px 40px;
    position:relative;
  z-index:5;
}

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

/* 左 */
.footer-left {
  max-width: 320px;
}

.footer-left img {
  height: 40px;
  width: auto;
  margin-top:-10px;
}

.footer-text {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-cta {
  display: inline-block;
  border: 1px solid #111;
  padding: 12px 24px;
  text-decoration: none;
  font-size: 13px;
  color: #111;
}

/* 右ナビ */
.footer-nav ul {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 24px 48px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav a,
.footer-nav span {
  font-size: 14px;
  color: #111;
  text-decoration: none;
}

.footer-nav small {
  display: block;
  font-size: 11px;
  color: #555;
  margin-top: 6px;
}

/* コピーライト */
.footer-copy {
  text-align: center;
  font-size: 11px;
  color: #777;
  margin-top: 40px;
}
.site-footer {
  font-family: "Noto Sans JP", sans-serif;
}
/* =========================
  FIRST VIEW
========================= */

.fv {
  background-image: url("../images/bg-geometry.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 220px 0;
  
}
#globe-bg{
  position:fixed;
  width:700px;
  height:700px;
  top:55%;
  right:80px;
  transform:translateY(-50%);
  z-index:1;
  pointer-events:none;
}

/* FV 内側 */
.fv-inner {
  height: 100%;

  display: flex;
  flex-direction: column;

  justify-content: center; /* ← 垂直中央 */
  align-items: flex-start; /* ← 左寄せ */

  padding-left: 80px;
  position:relative;
  z-index:5;
}

/* キャッチコピー */
.fv-copy {
  font-size: 48px;
  line-height: 1.4;
  font-weight: 600;
  margin: 0 0 24px;

  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 0.5s;
}
.fv-subcopy {
  font-size: 20px;
  line-height: 1.8;
  margin: 0;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
  FIXED BACKGROUND SECTION
========================= */

.fixed-bg-section {
  background-image: url("../images/bg-geometry.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 140px 0;
  padding-bottom:40px;
  z-index:-999;
}

/* 中央寄せ */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 各ブロック */
.block {
  margin-bottom: 140px;
  position:relative;
  z-index:5;
}

/* 見出し行 */
.block-head {
  display: flex;
  align-items: center;
  gap: 24px;
}

.block-title {
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.block-line {
  flex: 1;
  height: 1px;
  background: #111;
  opacity: 0.6;
}

/* 日本語サブ */
.block-sub {
  font-size: 13px;
  color: #555;
  margin-top: 8px;
}

/* リード文 */
.block-lead {
  font-size: 25px;
  font-weight: 400;
  line-height: 1.8;
  margin: 40px 0 24px;
}

/* 本文 */
.block-text {
  font-size: 14px;
  line-height: 2;
  color: #333;
  width:550px;
}
/* =========================
  SERVICE SECTION
========================= */

.service-section {
  background-image: url("../images/bg-geometry.png");
  background-size: cover;
  background-position: center;
  padding: 140px 0;
}

.service-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position:relative;
  z-index:5;
}

/* 見出し */
.section-head {
  display: flex;
  align-items: center;
  gap: 24px;
}

.section-title {
  font-size: 36px;
  font-weight: 400;
  white-space: nowrap;
}

.section-line {
  flex: 1;
  height: 1px;
  background: #111;
  opacity: 0.6;
}

.section-sub {
  font-size: 13px;
  color: #555;
  margin-top: 8px;
}

.section-lead {
  margin: 40px 0 80px;
  font-size: 14px;
  line-height: 2;
}

/* サービス一覧 */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

/* 各アイテム */
.service-item {
  display: flex;
  align-items: top;
  gap: 80px;
}

.service-text {
  flex: 1;
}

.service-title {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 24px;
}

#accordion-title {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 60px;
}
.service-text p {
  font-size: 14px;
  line-height: 2;
}

.service-image {
  flex: 1;
    position:relative;
  z-index:5;
}

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

/* フッター文 */
.service-footer-text {
  margin-top: 120px;
  font-size: 14px;
  line-height: 2;
  width:550px;
}
========================= */
  SERVICE ACCORDION
========================= */
.accordion-inner {
  max-width: 800px;
  margin: 120px auto 0;
  background-color:#000;
  padding: 80px !important;
    position:relative;
  z-index:5;
  
}
.accordion-box {
  padding: 150px 80px;
  padding-right:200px;
  background-color:#fff;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  margin-right:100px;
  margin-top:100px;
  position:relative;
  z-index:5;
}
.accordion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

/* 各アイテム */
.accordion-item {
  border-top: 1px solid #777;
}

.accordion-item:last-child {
  border-bottom: 1px solid #777;
}

/* ヘッダー */
.accordion-header {
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
    color: #333; /* 好きな色に */
  -webkit-appearance: none;
  appearance: none;
}

.accordion-title {
  font-size: 16px;
  font-weight: 400;
}

/* ＋アイコン */
.accordion-icon {
  width: 28px;
  height: 28px;
  border: 1px solid #777;
  border-radius: 50%;
  position: relative;
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  background: #777;
}

.accordion-icon::before {
  width: 12px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accordion-icon::after {
  width: 1px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* 開閉コンテンツ */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-content p {
  padding-bottom: 24px;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

/* 開いた状態 */
.accordion-item.is-open .accordion-content {
  max-height: 200px;
}

.accordion-item.is-open .accordion-icon::after {
  display: none; /* ＋ → − */
}
/* =========================
  FLOW TEXT
========================= */
.flow-text-area{
width:100%;
overflow:hidden;
}
.flow-text-wrap {
display:flex;
width:max-content;
animation:flow-text 80s linear infinite;
}
.features-section{
overflow:hidden;
}
.flow-text {
font-size:80px;
font-weight:900;
letter-spacing:0.08em;
color:rgba(0,0,0,0.08);
white-space:nowrap;
margin-right:80px;
}

/* アニメーション */
@keyframes flow-text {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* =========================
  PROBLEM SECTION
========================= */

.problem-section {
  position: relative;
  padding-top:140px;
  padding-bottom:400px;
  color: #fff;
  background: linear-gradient(
    to bottom,
    rgba(60,60,60,0) 0%,
    rgba(60,60,60,1) 100%
  );
}

/* 右上の模様 */
.problem-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 700px;
  height: 700px;
  background-image: url("../images/bg-network.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.3;
}
.problem-section::before {
  content: "";
  position: absolute;
  inset: 0;
  /* 透明グラデーション*/
  background: linear-gradient(
    to bottom,
    rgba(58,58,58,0) 0%,
    rgba(58,58,58,0.4) 40%,
    rgba(58,58,58,0.8) 90%,
    rgba(58,58,58,1) 100%
  );

  z-index: 1;
}
/* 中身 */
.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 80px;
}

/* 左テキスト */
.problem-text {
  flex: 1;
  position:relative;
  z-index:5;
}

.problem-title {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 32px;
}

.problem-list {
  margin-bottom: 32px;
}

.problem-list li {
  font-size: 14px;
  line-height: 2;
}

/* 説明文 */
.problem-desc {
  font-size: 14px;
  line-height: 2;
  opacity: 0.9;
  width:600px;
}

/* 右画像 */
.problem-images {
  flex: 1;
  position: relative;
  margin-top: 200px;
  margin-right:-100px;
}
.problem-images::before {
  content: "";
  position: absolute;

  /* 白オブジェクトのサイズと位置 */
  top: 40px;
  left: 70px;
  width: 60%;
  height: 170%;
  background: #fff;
  z-index: 0;
}
.problem-images img {
  width: 65%;
  display: block;
}

.img-top {
  position: relative;
  z-index: 1;
}

.img-bottom {
  position: absolute;
  bottom: -220px;
  left: -220px;
  width: 80%;
  z-index: 2;
}
/* セクション */
.features-section {
  background-image: url("../images/bg-geometry.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 160px 0;
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position:relative;
  z-index:5;
}

/* ラベル */
.features-label {
  font-size: 26px;
  margin-bottom: 80px;
}

/* 1特徴＝1行 */
.feature-row {
    max-width: 1100px;   /* ← 要素としての幅 */
  margin: 0 auto 120px; /* ← 中央寄せ + 下余白 */
  display: flex;
  gap: 150px;
  margin-bottom: 100px;
  align-items: flex-start;
}

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

.feature-title {
  font-size: 16px;
  font-weight: 400;
  border-bottom: 1px solid #111;
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.feature-lead {
  font-size: 15px;
  margin-bottom: 16px;
}

.feature-desc {
  font-size: 14px;
  line-height: 2;
  color: #333;
}

/* 右画像（画像前提） */
.feature-image {
  flex: 1;
  display: flex;
  justify-content: center; /* 右カラム内で中央 */
    position:relative;
  z-index:5;
}

.feature-image img {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
/* =========================
  CTA button (KOTO style)
========================= */

.feature-cta{
  margin-top: 120px;
}

/* ボタン本体 */
.cta-koto{
  --line-len:30px;   /* 右に伸びる線の長さ */
  --overlap: 13px;     /* 線がボタンの中に食い込む量 */
  --diag-len: 20px;    /* 斜線の長さ */

  position: relative;
  display: inline-block;
  min-width: 120px;
  padding: 20px 30px;
  border: 1px solid #111;
  color: #111;
  text-decoration: none;
  font-size: 14px;
  text-align: center;
  background: transparent;

}

/* 右に伸びる水平線（ボタン右辺から出て、少し中にも食い込む） */
.cta-koto::after{
  content:"";
  position:absolute;
  top:50%;
  left: calc(100% - var(--overlap));
  width: calc(var(--line-len) + var(--overlap));
  height: 1px;
  background:#111;
  transform: translateY(-50%);
}

/* 先端から左上に伸びる斜線（片側だけの矢印） */
.cta-koto::before{
  content:"";
  position:absolute;
  top:50%;

  /* 👇 横線の終点に完全一致 */
  left: calc(100% + var(--line-len));

  width: var(--diag-len);
  height: 1px;
  background:#111;

  transform-origin: left center;
  transform: translateY(-50%) rotate(-135deg);
}
.cta-koto::after,
.cta-koto::before {
  transition:
    width 0.35s ease,
    left 0.35s ease,
    transform 0.35s ease;
}
/* hover（控えめ：線をちょい伸ばすだけ） */
.cta-koto:hover{
  --line-len: 50px;
}
.cta-flex{
	display:flex;
	justify-content:center;
    gap:200px;
}
/* =========================
  FLOW BLOCK
========================= */

.flow-block {
  background: #fff;
  padding: 30px 0;
  margin-top:100px;
  margin-right:400px;
   box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  margin-bottom:120px;
    position:relative;
  z-index:5;
}

/* 見出し */
.flow-head {
  max-width: 900px;
  margin-left: 50px; /* 左寄せ */
  margin-bottom: 80px;
}

.flow-title {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 8px;
}

.flow-sub {
  font-size: 14px;
  margin-bottom: 24px;
}

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

/* リスト全体 */
.flow-list {
  max-width: 900px;
  margin-left:50px;
}
/* 1行 */
.flow-item {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 100px;
}

/* 縦ライン */
.flow-item::before {
  content: "";
  position: absolute;
  top: 72px;  
  left: 28px;             /* 円の中心 */
  width: 1px;
  height: calc(100% - 104px);
  background: #111;
}

/* 最後だけ線なし */
.flow-item:last-child::before {
  display: none;
}
/* 左：番号 */
.flow-step {
  position: relative;
  width: 56px;
  flex-shrink: 0;
  text-align: center;
}

/* 丸 */
.flow-step span {
  display: inline-flex;
  width: 56px;
  height: 56px;
  border: 1px solid #111;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* 縦ライン */
.flow-step::after {
  content: "";
  position: absolute;
  top: 56px;
  left: 50%;
  width: 1px;
  height: calc(100% - 56px);
  background: #111;
  transform: translateX(-50%);
}

/* 最後は線なし */
.flow-item:last-child .flow-step::after {
  display: none;
}

/* 右テキスト */
.flow-text2 {
  font-size: 16px;
  line-height: 2;
  color: #333;
  padding-top: 6px;
}
/* =========================
  MEMBER BLOCK
========================= */

.member-block {
  margin-top: 160px;
  position:relative;
  z-index:5;
}

/* 見出し */
.member-head {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 8px;
}

.member-title {
  font-size: 36px;
  font-weight: 500;
}

.member-line {
  flex: 1;
  height: 1px;
  background: #111;
}

.member-sub {
  font-size: 14px;
  margin-bottom: 64px;
}

/* メンバー一覧 */
.member-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
    position:relative;
  z-index:5;
}

/* カード */
.member-card {
  text-align: left;
  position:relative;
  z-index:5;
}

.member-image {
  margin-bottom: 16px;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f2f2f2;
}

.member-image img {
  width: 100%;
  height: 100%;   /* ← autoを消して100% */
  object-fit: cover;
  display: block;
  transition: 0.6s ease;
}
.member-image img:hover{
	transform: scale(1.08); 
   transition:0.6s all;
}
/* テキスト */
.member-role {
  font-size: 12px;
  margin-bottom: 4px;
}

.member-name {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 12px;
}

.member-text {
  font-size: 13px;
  line-height: 1.8;
  color: #333;
}

/* 一覧リンク */
.member-more {
  margin-top: 64px;
  text-align: right;
}

.member-more a {
  font-size: 14px;
  color: #111;
  text-decoration: none;
  position: relative;
  padding-right: 32px;
}

.member-more a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 1px;
  background: #111;
  transform: translateY(-50%);
}
.member-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px; /* ← 両サイドの余白 */
}
/* =========================
  WORKS SECTION
========================= */

.works-section {
  padding: 160px 0 120px;
}

.works-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px; /* 👈 両サイド余白 */
}

/* 見出し */
.section-head {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 8px;
}

.section-title {
  font-size: 36px;
  font-weight: 400;
}

.section-line {
  flex: 1;
  height: 1px;
  background: #111;
}

.section-sub {
  font-size: 14px;
  margin-bottom: 64px;
}

/* グリッド */
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

/* 実績カード */
.works-item {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* 画像 */
.works-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #ddd;
  overflow: hidden;
}

.works-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* hover拡大（前セクションと統一） */
  transform: scale(1) translateZ(0);
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.works-item:hover .works-image img {
  transform: scale(1.08);
}

/* タイトル */
.works-title {
  font-size: 14px;
  line-height: 1.8;
}

/* 一覧リンク */
.works-link {
  margin-top: 64px;
  text-align: right;
}

.works-link a {
  font-size: 14px;
  color: #111;
  text-decoration: none;
  position: relative;
  padding-right: 32px;
}

.works-link a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 1px;
  background: #111;
  transform: translateY(-50%);
}
.works-client {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
}

.works-client-meta {
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.9;
}
/* カテゴリ（横長問題を物理的に殺す） */
.works-item .works-type {
  display: inline-flex !important;
  width: auto !important;
  max-width: fit-content !important;
  padding: 6px 18px;
  border: 1px solid #bbb;
  border-radius: 999px;
  background: #f2f2f2;
  font-size: 13px;
  line-height: 1;
  margin: 12px 0 6px;
}

/* クライアント名を上に詰める */
.works-item .works-client {
  margin-top: 0 !important;
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 500;
}
/* =========================
  NEWS SECTION
========================= */


.news-inner {
  max-width: 1100px;
  margin-left: 80px;   /* ← 左寄せ */
  margin-right: auto;

  background: #fff;
  padding: 64px 72px;
  border-radius: 4px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position:relative;
  z-index:5;
}

/* リスト */
.news-list {
  margin-top: 40px;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px dotted #999;
}

/* 日付 */
.news-date {
  font-size: 13px;
  color: #333;
  min-width: 80px;
}

/* カテゴリ */
.news-category {
  font-size: 12px;
  padding: 2px 10px;
  border: 1px solid #333;
  border-radius: 2px;
  white-space: nowrap;
}

/* タイトル */
.news-title {
  font-size: 14px;
  color: #111;
  text-decoration: none;
  flex: 1;
  transition: opacity 0.3s ease;
}

.news-title:hover {
  opacity: 0.6;
}
/* =========================
  COMPANY SECTION
========================= */

.company-section {
  padding: 160px 0 120px;
 
}

.company-inner {
  max-width: 1100px;
  margin-left: 80px;   
  margin-right: auto;
  padding: 0 24px;
  position:relative;
  z-index:5;

}

/* 見出しは既存流用でOK
.section-head
.section-title
.section-line
.section-sub
*/

/* 会社情報 */
.company-list {
  margin-top: 64px;
}

.company-row {
  display: flex;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid #dcdcdc;
}

/* 項目名 */
.company-label {
  width: 160px;
  font-size: 14px;
  color: #111;
  flex-shrink: 0;
 
}

/* 内容 */
.company-data {
  font-size: 14px;
  color: #333;
  line-height: 1.8;
}
/* CONTACT */

.contact-section{
padding:60px 0;
background:#f5f5f5;
background-image: url("../images/bg-geometry.png");
  background-size: 110%;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

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

/* タイトル */

.contact-title{
font-size:80px;
font-weight:700;
color:#ddd;
letter-spacing:4px;
margin-bottom:20px;
}

.contact-lead{
font-size:14px;
line-height:1.8;
color:#555;
margin-bottom:60px;
}

.contact-lead span{
font-size:12px;
color:#888;
}


/* フォームカード */

.contact-box{
background:#fff;
padding:60px;
border-radius:6px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
max-width:720px;
margin:0 auto;
}


/* フォーム */

.form-group{
margin-bottom:24px;
}

.form-group > label{
display:block;
font-size:14px;
font-weight:600;
margin-bottom:6px;
}

.required{
background:#333;
color:#fff;
font-size:11px;
padding:2px 6px;
margin-left:6px;
border-radius:2px;
}

.wpcf7 input,
.wpcf7 textarea{
width:100%;
padding:12px;
border:1px solid #ddd;
border-radius:4px;
font-size:14px;
}

.wpcf7 textarea{
height:140px;
}

/* プライバシー */

.privacy-box{
  background:#f7f7f7;
  padding:16px;
  font-size:12px;
  line-height:1.6;
  margin-bottom:16px;

  max-height:200px;   /* ←高さ調整（好きに変えてOK） */
  overflow-y:auto;    /* ←縦スクロール */
  border-radius:6px;  
}

.form-privacy{
margin-bottom:20px;
font-size:13px;
}
.form-privacy label{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:8px;
}
/* スクロールバーちょいカッコよく（任意） */
.privacy-box::-webkit-scrollbar {
  width:6px;
}
.privacy-box::-webkit-scrollbar-thumb {
  background:#ccc;
  border-radius:3px;
}

/* 送信ボタン */

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

.wpcf7-submit{
background:#2f3336;
color:#fff;
padding:12px 28px;
border:none;
font-size:14px;
cursor:pointer;
transition:.3s;
}

.wpcf7-submit:hover{
	color: #2f3336;
	background: #fff;
}
/* チェックボックスだけリセット */
.form-privacy input[type="checkbox"]{
  width: auto !important;  /* ←これが本命 */
  margin: 0;               /* ←余計なズレ消す */
}


/* その他 */

.check-other{
  grid-column: span 2;
  display:flex;
  align-items:center;
  gap:20px;
}

/* その他入力 */

.other-input{
width:100%;
max-width:360px;
height:44px;
border:1px solid #ddd;
border-radius:6px;
padding:10px;
}
.service-check .wpcf7-checkbox{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px 80px;
}

.service-check .wpcf7-list-item{
margin:0;
}

.service-check label{
display:flex;
align-items:center;
gap:12px;
font-size:13px;
}

.service-check input{
width:22px;
height:22px;
}
.service-check input[type="checkbox"]{
  width:22px !important;
  height:22px !important;
  min-width:22px;
  min-height:22px;
  flex-shrink:0;
  margin-top:2px;
}
.check-other{
grid-column: span 2;
display:flex;
align-items:center;
gap:20px;
}
/* =========================
 ARCHIVE
========================= */

.news-archive{
padding:120px 0;
background:#f5f5f5;
background-image:url("../images/bg-geometry.png");
background-size:110%;
background-position:center;
}

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


/* ヘッド */

.archive-head{
margin-bottom:60px;
}

.archive-title{
font-size:80px;
color:#ddd;
font-weight:700;
letter-spacing:4px;
margin-bottom:20px;
}

.archive-sub{
display:flex;
justify-content:space-between;
align-items:center;
border-bottom:1px solid #333;
padding-bottom:12px;
}

.archive-sub span{
font-size:18px;
font-weight:600;
}


/* カテゴリ */

.archive-category{
display:flex;
align-items:center;
gap:20px;
}

.archive-category span{
font-size:12px;
letter-spacing:2px;
}

.archive-category select{
border:none;
border-bottom:1px solid #333;
background:transparent;
padding:6px 20px;
font-size:14px;
}


/* 投稿グリッド */

.archive-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
}


/* カード */

.archive-card{
text-decoration:none;
color:#111;
}

.archive-thumb{
aspect-ratio:4/3;
background:#ccc;
overflow:hidden;
margin-bottom:16px;
}

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


.archive-cat{
display:inline-block;
border:1px solid #999;
padding:4px 12px;
font-size:12px;
border-radius:20px;
margin-bottom:10px;
}

.archive-title2{
font-size:18px;
font-weight:600;
margin-bottom:8px;
}

.archive-client{
font-size:12px;
color:#666;
}
/* =========================
 MEMBER ARCHIVE
========================= */

.member-archive{
padding:40px 0;
background:#f5f5f5;
background-image:url("../images/bg-geometry.png");
background-size:110%;
background-position:center;
}

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


/* ヘッド */

.member-archive-head{
text-align:center;
margin-bottom:80px;
padding-bottom:30px;
border-bottom:1px solid #333;
}

.member-archive-title{
font-size:120px;
font-weight:700;
color:#e6e6e6;
letter-spacing:4px;
margin-bottom:10px;
line-height:1;
}

.member-archive-sub{
font-size:18px;
font-weight:600;
margin-bottom:30px;
margin-top:-40px;
}

.member-archive-text{
max-width:800px;
margin:0 auto;
font-size:14px;
line-height:2;
color:#555;
}


/* グリッド */

.member-archive-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:60px 40px;
}


/* カード */


/* 画像 */

.member-archive-image{
aspect-ratio:3/4;
overflow:hidden;
margin-bottom:16px;
}

.member-archive-image img{
width:90%;
height:90%;
object-fit:cover;
transition:.3s;
}
.member-archive-image img:hover{
   transform: scale(1.05); 
   transition:0.6s all;
}

/* 役職 */

.member-archive-role{
display:inline-block;
border:1px solid #999;
padding:6px 14px;
font-size:12px;
margin-bottom:10px;
}


/* 名前 */

.member-archive-name{
font-size:18px;
font-weight:600;
margin-bottom:10px;
}


/* 説明 */

.member-archive-desc{
font-size:13px;
line-height:1.7;
color:#555;
}


/* SNS */

.member-archive-sns{
display:inline-block;
margin-top:10px;
font-size:12px;
text-decoration:underline;
}
/* =================================
WORKS PLAN PAGE
================================= */

.works-plan-page{
position:relative;
}

/* HERO */

.works-plan-hero{
position:relative;
padding-top:140px;
padding-bottom:140px;
background:#f5f5f5;
overflow:hidden;
}

/* 内側 */

.works-plan-hero-inner{
max-width:1200px;
margin:0 auto;
padding:0 48px;
position:relative;
z-index:2;
}

/* 背景巨大文字 */

.works-plan-hero-bg{
position:absolute;
top:40px;
left:48px;

font-size:140px;
font-weight:700;
color:#e9e9e9;

letter-spacing:4px;
z-index:1;
}

/* コンテンツ */

.works-plan-hero-content{
position:relative;
z-index:2;
margin-top:120px;
max-width:700px;
}

/* タイトル */

.works-plan-hero-title{
font-size:28px;
font-weight:500;
margin-bottom:24px;
}

/* テキスト */

.works-plan-hero-text{
font-size:14px;
line-height:2;
color:#555;
}

/* 右の黒ボックス */

.works-plan-hero-visual{
position:absolute;
right:0;
bottom:0;

width:60%;
height:260px;

background:#2f2f2f;
}

/* ======================
Works Plan Page
====================== */

.worksplan{
position:relative;
background-image:url("../images/bg-geometry.png");
background-size:cover;
background-position:center;
background-attachment:fixed;
}


/* HERO */

.worksplan-hero{
position:relative;
padding:140px 0 160px;
  background-image: url("../images/bg-geometry.png");
  background-size: cover;
  background-position: center;

}

.worksplan-inner{
max-width:1200px;
margin:0 auto;
padding:0 48px;
position:relative;
z-index:5;
}

.worksplan-title{
font-size:32px;
margin-bottom:24px;
}
.worksplanpage-title{
font-size:14px;
margin-bottom:0px;
}
.worksplan-text{
font-size:16px;
line-height:2;
color:#555;
max-width:650px;
}


/* 背景文字 */

.worksplan-bg{
position:absolute;
bottom:-40px;
left:0;

font-size:200px;
font-weight:700;

color:#e5e5e5;

letter-spacing:4px;
white-space:nowrap;

z-index:1;
}


/* 黒ブロック */

.worksplan-dark{
height:420px;
background:#2f2f2f;
position:relative;
position:relative;
z-index:5;
}


/* 白カード */

.worksplan-card{
position:absolute;
top:190px;
left:0;
background:#f5f5f5;
padding:10px 20px;
box-shadow:0 20px 60px rgba(0,0,0,0.1);
width:420px;
}

.worksplan-card h2{
font-size:72px;
color:#ddd;
margin-bottom:10px;
}

.worksplan-card p{
font-size:14px;
}
/* =========================
WORKSPLAN LIST
========================= */

.worksplan-list{
padding:160px 0;
}

.worksplan-list-inner{
max-width:1200px;
margin:0 auto;
padding:0 48px;
position:relative;
z-index:5;
}

/* グリッド */

.worksplan-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:80px 60px;
}

/* カード */

.worksplan-item{
display:flex;
flex-direction:column;
gap:14px;
}

/* 画像 */

.worksplan-image{
aspect-ratio:4/3;
background:#ddd;
overflow:hidden;
}

.worksplan-image img{
width:100%;
height:100%;
object-fit:cover;
}
/* クライアント */

.worksplan-client{
font-size:12px;
color:#777;
}

/* ボタン */

.worksplan-more{
margin-top:80px;
display:flex;
justify-content:flex-end;
}
.contactbtn-more{
margin-top:80px;
display:flex;
justify-content:flex-end;
}
.worksplan-btn{
display:inline-block;
border:1px solid #333;
padding:16px 60px;
font-size:14px;
text-decoration:none;
color:#111;
position:relative;
}

/* 矢印 */

.worksplan-btn::after{
content:"";
position:absolute;
top:50%;
right:-30px;
width:20px;
height:1px;
background:#111;
}

.worksplan-btn::before{
content:"";
position:absolute;
top:50%;
right:-30px;
width:10px;
height:1px;
background:#111;
transform:rotate(-45deg);
transform-origin:right;
}
/* =========================
PLAN SECTION
========================= */

.plan-section{
background-image:url("../images/bg-geometry.png");
background-size:cover;
background-position:center;
background-attachment:fixed;
padding:160px 0;
}

.plan-inner{
max-width:1200px;
margin:0 auto;
padding:0 48px;
display:grid;
grid-template-columns:420px 1fr;
gap:120px;
align-items:start;
}

/* 左 */

.plan-left{
position:sticky;
top:0px;
height:fit-content;
position:relative;
z-index:5;
}


/* Plan文字 */

.plan-bg{
font-size:120px;
color:#e6e6e6;
font-weight:700;
margin-bottom:20px;
margin-top:10px;
}

.plan-title{
font-size:26px;
}


/* 右 */

.plan-right{
flex:1;
display:flex;
flex-direction:column;
gap:80px;
}
.text-under{
	position:relative;
   z-index:5;
}

/* カード */

.plan-card{
background:#fff;
padding:32px 40px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
border-radius:2px;
position:relative;
z-index:5;
}


/* 上ライン */

.plan-head{
font-size:16px;
padding-bottom:10px;
border-bottom:1px solid #333;
margin-bottom:20px;
}


/* 行 */

.plan-row{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:16px;
}

.plan-period{
font-size:14px;
}

.plan-price{
font-size:22px;
letter-spacing:2px;
}


/* テキスト */

.plan-text{
font-size:13px;
line-height:1.8;
color:#777;
}


/* CTA */

.plan-cta{
margin-top:60px;
}

.plan-btn{
display:inline-block;
border:1px solid #333;
padding:16px 60px;
text-decoration:none;
font-size:14px;
color:#111;
position:relative;
}


/* 矢印 */

.plan-btn::after{
content:"";
position:absolute;
top:50%;
right:-30px;
width:20px;
height:1px;
background:#111;
}

.plan-btn::before{
content:"";
position:absolute;
top:50%;
right:-30px;
width:10px;
height:1px;
background:#111;
transform:rotate(-45deg);
transform-origin:right;
}
/* =========================
 NEWS SINGLE
========================= */

.news-single{
padding:140px 0;
background-image:url("../images/bg-geometry.png");
background-size:cover;
background-position:center;
}

.news-single-inner{
max-width:800px;
margin:0 auto;
padding:60px;
background:#fff;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* タイトル */

.news-single-title{
font-size:28px;
margin-bottom:20px;
}

/* メタ */

.news-single-meta{
display:flex;
gap:16px;
margin-bottom:40px;
font-size:13px;
color:#555;
}

.news-single-category{
border:1px solid #999;
padding:3px 10px;
font-size:12px;
}

/* 本文 */

.news-single-content{
font-size:15px;
line-height:2;
color:#333;
}

.news-single-content p{
margin-bottom:24px;
}

.news-single-content img{
max-width:100%;
height:auto;
margin:30px 0;
}

/* ナビ */

.news-single-nav{
display:flex;
justify-content:space-between;
align-items:center;
margin-top:60px;
padding-top:30px;
border-top:1px solid #ddd;
}

.news-single-nav a{
text-decoration:none;
font-size:14px;
color:#111;
}

.news-back a{
border:1px solid #111;
padding:10px 24px;
}
.news-single-thumb{
width:100%;
overflow:hidden;
margin-bottom:30px;
}

.news-single-thumb img{
max-width:100%;
height:auto;
display:block;
}
/* =========================
 FAQ
========================= */

.faq-section{
padding:140px 0;
background:#f5f5f5;
}

.faq-inner{
max-width:1100px;
margin:0 auto;
display:flex;
gap:80px;
padding:0 24px;
}

/* 左 */

.faq-left{
width:200px;
}

.faq-title{
font-size:18px;
margin-bottom:8px;
}

.faq-sub{
font-size:28px;
letter-spacing:2px;
}

/* 右 */

.faq-right{
flex:1;
}

/* アイテム */

.faq-item{
border-bottom:1px solid #ddd;
position:relative;
z-index:5;
}

/* 質問 */
.faq-question br{
	display:none;
}
.faq-question{
width:100%;
background:#2f2f2f;
color:#fff;
padding:18px 20px;
border:none;
display:flex;
justify-content:space-between;
align-items:center;
font-size:14px;
cursor:pointer;
text-align:left;
}

/* アイコン */

.faq-icon{
width:20px;
height:20px;
position:relative;
}

.faq-icon::before,
.faq-icon::after{
content:"";
position:absolute;
background:#fff;
}

.faq-icon::before{
width:14px;
height:2px;
top:9px;
left:3px;
}

.faq-icon::after{
width:2px;
height:14px;
left:9px;
top:3px;
}

/* 開いたとき */

.faq-item.active .faq-icon::after{
display:none;
}

/* 回答 */

.faq-answer{
max-height:0;
overflow:hidden;
transition:max-height .4s ease;
background:#eee;
}

.faq-answer p{
padding:20px;
font-size:13px;
line-height:1.8;
color:#555;
}









/* =========================
  レスポンシブ
========================= */

@media (max-width: 768px) {
  .header-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .sp-nav.active {
    display: block;
  }
	.sp-nav{
  max-height:0;
  overflow:hidden;
  background:#fff;
  border-top:1px solid #eee;
  transition:max-height 0.4s ease;
}

/* 開いた状態 */
.sp-nav.active{
  max-height:500px;
}
	  .header-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
	  .fv-copy {
    font-size: 28px;
    padding: 16px 20px;
  }
	  .fixed-bg-section {
    background-size: 50%;
    padding: 100px 0;
  }

  .block {
    margin-bottom: 100px;
  }
.block-text {
  font-size: 14px;
  line-height: 2;
  color: #333;
  width:100%;
}
  .block-title {
    font-size: 28px;
  }

  .block-lead {
    font-size: 18px;
  }
	  .service-item,
  .service-item.reverse {
    flex-direction: column;
    gap: 40px;
  }
.service-footer-text {
  margin-top: 120px;
  font-size: 14px;
  line-height: 2;
  width:300px;
}
  .service-list {
    gap: 80px;
  }
.problem-desc {
  font-size: 14px;
  line-height: 2;
  opacity: 0.9;
  width:100%;
}
  .section-title {
    font-size: 28px;
  }
  .accordion-inner {
    margin: 80px auto 0;
  }

  .accordion-box {
    padding: 40px 24px;
	margin-right:50px;
  }

  .accordion-grid {
    grid-template-columns: 1fr;
    gap: 0px;
  }
	#accordion-title {
  font-size: 20px;
  font-weight: 400;
}
	  .problem-inner {
    flex-direction: column;
  }

  .problem-images {
    margin-top: 40px;
  }
.problem-images::before {
  top: 40px;
  left: 70px;
  width: 60%;
  height: 50%;
  background: #fff;
  z-index: -1;
}
	.problem-section {
  padding-top:140px;
  padding-bottom:100px;
  color: #fff;
  background: linear-gradient(
    to bottom,
    rgba(60,60,60,0) 0%,
    rgba(60,60,60,1) 100%
  );
}
	.problem-images {
  margin-right:0px;
}
  .img-bottom {
    position: static;
    width: 100%;
    margin-top: 20px;
  }
	  .member-title {
    font-size: 28px;
  }
/* 1特徴＝1行 */
.feature-row {
    max-width: 1100px;   /* ← 要素としての幅 */
  margin: 0 auto 120px; /* ← 中央寄せ + 下余白 */
  display: block;
  gap: 150px;
  margin-bottom: 100px;
  align-items: flex-start;
}

/* 左テキスト */
.feature-text {
  flex: 1;
}
.feature-title {
  font-size: 16px;
  font-weight: 400;
  border-bottom: 1px solid #111;
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.feature-lead {
  font-size: 15px;
  margin-bottom: 16px;
}

.feature-desc {
  font-size: 14px;
  line-height: 2;
  color: #333;
}

/* 右画像（画像前提） */
.feature-image {
  flex: 1;
  display: flex;
  justify-content: center; /* 右カラム内で中央 */
}

.feature-image img {
  width: 50%;
  height: 50%;
  margin-top:20px;
  display: block;
}
	.cta-koto{
  --line-len:30px;   /* 右に伸びる線の長さ */
  --overlap: 13px;     /* 線がボタンの中に食い込む量 */
  --diag-len: 20px;    /* 斜線の長さ */
  min-width: 80px;
  padding: 10px 20px;
  font-size: 12px;

}
	.cta-flex{
	display:block;
}
	.feature-cta{
  margin-top: 20px;
}
  .member-list {
    grid-template-columns: 1fr;
    gap: 32px;
  }
.flow-block {
  padding-bottom:0px;
  margin-top:100px;
  margin-right:0px;
}

/* 見出し */
.flow-head {
  max-width: 500px;
  margin-left: 20px; /* 左寄せ */
  margin-bottom: 20px;
}

.flow-title {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 8px;
}

.flow-sub {
  font-size: 12px;
  margin-bottom: 24px;
}

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

/* リスト全体 */
.flow-list {
  max-width: 400px;
  margin-left:10px;
}
/* 1行 */
.flow-item {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 100px;
}

/* 縦ライン */
.flow-item::before {
  content: "";
  position: absolute;
  top: 72px;  
  left: 28px;             /* 円の中心 */
  width: 1px;
  height: calc(100% - 104px);
  background: #111;
}

/* 最後だけ線なし */
.flow-item:last-child::before {
  display: none;
}
/* 左：番号 */
.flow-step {
  position: relative;
  width: 56px;
  flex-shrink: 0;
  text-align: center;
}

/* 丸 */
.flow-step span {
  display: inline-flex;
  width: 56px;
  height: 56px;
  border: 1px solid #111;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* 縦ライン */
.flow-step::after {
  content: "";
  position: absolute;
  top: 56px;
  left: 50%;
  width: 1px;
  height: calc(100% - 56px);
  background: #111;
  transform: translateX(-50%);
}

/* 最後は線なし */
.flow-item:last-child .flow-step::after {
  display: none;
}

/* 右テキスト */
.flow-text2 {
  font-size: 10px;
  line-height: 1.5;
  color: #333;
  padding-top: 6px;
}
  .member-more {
    text-align: left;
  }
	  .works-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-title {
    font-size: 28px;
  }
	  .company-inner {
    margin-left: auto;
    margin-right: auto;
  }
	.contact-section{
		padding-top:20px;
	}
.contact-inner{
padding:0 24px;
}

.contact-box{
padding:40px 24px;
}

.contact-title{
font-size:42px;
}

.contact-lead{
font-size:13px;
}
.news-inner{
margin-left:auto;
margin-right:auto;
padding:40px 24px;
}
	.news-list ul{
		padding-left:0px;
}
/* 1投稿 */

.news-item{
flex-direction:column;
align-items:flex-start;
gap:10px;
}

/* 日付＋カテゴリ */

.news-date{
font-size:13px;
}

.news-category{
margin-left:10px;
}

/* タイトル */

.news-title{
font-size:14px;
line-height:1.6;
}
	.features-section{
		padding-bottom:50px;
	}
/* =========================
  COMPANY SECTION
========================= */

.company-section {
  padding: 50px 0 120px;
}

.company-inner {
  margin-left: 0px;   /* ← 添付通りの左寄せ */
  margin-right: auto;
  padding: 0 24px;
}

/* 見出しは既存流用でOK
.section-head
.section-title
.section-line
.section-sub
*/

/* 会社情報 */
.company-list {
  margin-top: 64px;
}

.company-row {
  display: flex;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid #dcdcdc;
}

/* 項目名 */
.company-label {
  width: 160px;
  font-size: 14px;
  color: #111;
  flex-shrink: 0;
}

/* 内容 */
.company-data {
  font-size: 14px;
  color: #333;
  line-height: 1.8;
}
.service-check .wpcf7-checkbox{
grid-template-columns:1fr;
gap:18px;
}

.service-check label{
  display:flex;
  align-items:flex-start;
  gap:12px;
  font-size:12px;
}

.service-check input{
width:18px;
height:18px;
}

.other-input{
max-width:100%;
}
.contact-box .wpcf7 input:not([type="checkbox"]),
.contact-box .wpcf7 textarea{
width:90%;
}
.footer-main{
padding:60px 20px 30px;
}

.footer-inner{
flex-direction:column;
gap:40px;
}

.footer-left img{
height:34px;
}

.footer-text{
font-size:12px;
}

.footer-cta{
font-size:12px;
padding:10px 20px;
}

/* ナビ */

.footer-nav ul{
grid-template-columns:repeat(2,1fr);
gap:20px 24px;
}

.footer-nav a,
.footer-nav span{
font-size:13px;
}

.footer-nav small{
font-size:10px;
}

/* コピー */

.footer-copy{
font-size:10px;
margin-top:30px;
}
.member-archive-grid{
grid-template-columns:repeat(2,1fr);
gap:40px 20px;
}

.member-archive-title{
font-size:64px;
}

.member-archive-text{
font-size:13px;
line-height:1.8;
}
	
.worksplan-hero{
padding:100px 0 120px;
}

/* テキスト */

.worksplan-inner{
padding:0 24px;
}

.worksplan-title{
font-size:24px;
}

.worksplan-text{
font-size:13px;
}

/* 背景文字 */

.worksplan-bg{
font-size:60px;
bottom:-20px;
left:10px;
}

/* 黒ブロック */

.worksplan-dark{
height:auto;
padding:120px 0 0px;
}

/* 白カード */
.worksplan-card{
position:relative;
top:auto;
left:auto;
margin:0 auto;
width:85%;
padding:10px 50px;
}
/* Works文字 */
.worksplan-card h2{
font-size:48px;
}
	.plan-inner{
grid-template-columns:1fr;
gap:80px;
}
.plan-left{
position:relative;
top:auto;
}
.plan-bg{
font-size:64px;
}
.plan-card{
padding:24px;
}
	.circle-text-wrap {
display:none;
}
.circle-text-wrap2 {
display:none;
}
.circle-text-wrap3 {
display:none;
}

/* ======================
Works Plan Page
====================== */

.worksplan{
position:relative;
background-image:url("../images/bg-geometry.png");
background-size:cover;
background-position:center;
background-attachment:fixed;
}


/* HERO */

.worksplan-hero{
position:relative;
padding:50px 0 50px;
  background-image: url("../images/bg-geometry.png");
  background-size: cover;
  background-position: center;

}

.worksplan-inner{
max-width:1200px;
margin:0 auto;
padding:0 48px;
position:relative;
z-index:2;
}

.worksplan-title{
font-size:32px;
margin-bottom:0px;
}

.worksplan-text{
font-size:14px;
line-height:2;
color:#555;
max-width:600px;
}


/* 背景文字 */

.worksplan-bg{
position:absolute;
bottom:-40px;
left:0;

font-size:50px;
font-weight:700;

color:#e5e5e5;

letter-spacing:4px;
white-space:nowrap;

z-index:1;
}


/* 黒ブロック */

.worksplan-dark{
height:0px;
background:#2f2f2f;
position:relative;
}


/* 白カード */

.worksplan-card{
position:absolute;
top:190px;
left:0;
background:#f5f5f5;
padding:0px 20px;
box-shadow:0 20px 60px rgba(0,0,0,0.1);
width:50px;
bottom:70px;
}

.worksplan-card h2{
font-size:42px;
color:#ddd;
margin-bottom:0px;
}

.worksplan-card p{
font-size:14px;
}
	/* =========================
WORKSPLAN LIST
========================= */

.worksplan-list{
padding-top:260px;
padding-bottom:50px;
}

.worksplan-list-inner{
max-width:1200px;
margin:0 auto;
padding:0 48px;
}

/* グリッド */

.worksplan-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:40px 30px;
}

/* カード */

.worksplan-item{
display:flex;
flex-direction:column;
gap:14px;
}

/* 画像 */

.worksplan-image{
aspect-ratio:4/3;
background:#ddd;
overflow:hidden;
}

.worksplan-image img{
width:100%;
height:100%;
object-fit:cover;
}

/* クライアント */

.worksplan-client{
font-size:12px;
color:#777;
}
	
.plan-section{
padding:50px 0;
}
	
/* Plan文字 */

.plan-bg{
font-size:80px;
margin-bottom:20px;
margin-top:10px;
}

.plan-title{
margin-top:0px;
font-size:22px;
}
	.archive-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:40px;
}
.news-archive{
padding:60px 0;
background:#f5f5f5;
background-image:url("../images/bg-geometry.png");
background-size:110%;
background-position:center;
}
.archive-title{
font-size:40px;
letter-spacing:2px;
margin-bottom:10px;
}

.archive-sub{
display:block;
}

.archive-sub span{
font-size:13px;
}
	.news-single{
padding:80px 0;
}

.news-single-inner{
padding:30px 20px;
margin:0 16px;
}

/* タイトル */

.news-single-title{
font-size:20px;
line-height:1.6;
}

/* メタ */

.news-single-meta{
flex-wrap:wrap;
gap:10px;
font-size:12px;
margin-bottom:20px;
}

/* サムネイル */

.news-single-thumb{
margin-bottom:20px;
}

.news-single-thumb img{
width:100%;
height:auto;
}

/* 本文 */

.news-single-content{
font-size:14px;
line-height:1.9;
}

/* ナビ */

.news-single-nav{
flex-direction:column;
gap:20px;
align-items:center;
text-align:center;
}

.news-single-nav a{
font-size:13px;
}

.news-back a{
padding:10px 20px;
}
	.faq-inner{
flex-direction:column;
gap:40px;
}

.faq-left{
width:auto;
}

.faq-sub{
font-size:24px;
}
	.faq-question br{
	display:block;
}
	.fv-subcopy {
  font-size: 15px;
  line-height: 1.8;
  padding:16px 20px;
}
	.flow-block{
  margin-right:0;
}
	.flow-block{
  display:none;
}
}





/* =========================
   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);
}
/*==========
 準備中用]
=====*/
.junbi-title{
	text-align:center;
	  font-family: 
  "Noto Sans JP",
  "Hiragino Kaku Gothic ProN",
  "Hiragino Sans",
  "Yu Gothic",
  "Meiryo",
  sans-serif;
}
.junbip{
	text-align:center;
}