html{
	padding:0;
	margin:0;
     scroll-behavior: smooth;
}
body {
  font-family:
    'Noto Sans JP',
    -apple-system,
    BlinkMacSystemFont,
    'Hiragino Kaku Gothic ProN',
    'Hiragino Sans',
    'Yu Gothic',
    'YuGothic',
    'Meiryo',
    sans-serif;
  	padding:0;
	margin:0;
}
/* =========================
   HEADER 全体
========================= */
.site-header {
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 999;
}

/* 内側 */
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  padding: 0 60px;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}
/* =========================
   HAMBURGER（共通）
========================= */
.hamburger {
  position: fixed;
  right: 20px;

  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 10000;
  display:none;
}
.hamburger span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #1c3f63;
  left: 0;
  transition: 0.3s;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }
/* =========================
   LOGO
========================= */
.header-inner img {
  height: 70px;
  display: block;
}

/* =========================
   NAV
========================= */
.header-nav {
  display: flex;
  justify-content: center;
  z-index:9999;
}

.nav-list {
  display: flex;
  gap: 50px; /* ←ここかなり重要 */
  padding: 0;
  margin: 0;
  margin-right:-50px;
}

.nav-list li {
  list-style: none;
}

.nav-list a {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #1c3f63;
  text-decoration: none;

  letter-spacing: 0.15em; /* ←雰囲気の核 */
  transition: 0.3s;
}

.nav-list a:hover {
  opacity: 0.6;
}

/* =========================
   CONTACT（右端）
========================= */
.header-contact {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #000;
  text-decoration: none;
}
.site-header {
  top: var(--wp-admin--admin-bar--height, 0px);
}
/* =========================
   FV
========================= */
.fv {
  position: relative;
  width: 100vw;
  height: calc(100vh - 80px);
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

/* 動画 */
.fv-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* オーバーレイ（少し暗く） */
.fv-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

/* テキスト配置 */
.fv-inner {
  position: relative;
  z-index: 2;
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding-left: 4%;
  color: #fff;
}

/* タイトル */
.fv-title {
  font-size: 90px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

/* サブ */
.fv-sub {
  margin-top: 30px;
  font-size: 25px;
  letter-spacing: 0.15em;
}
/* =========================
   LOGO SLIDER
========================= */
.logo-slider {
  width: 100%;
  overflow: hidden;
  background: #f5f5f5;
  padding: 40px 0;
}

/* 横並び */
.logo-track {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
}
.logo-track-2 {
  display: flex;
  width: max-content;
  animation: scroll2 20s linear infinite;
}
/* ロゴグループ */
.logo-list {
  display: flex;
  align-items: center;
  gap: 80px;
  padding-right: 80px;
}

/* ロゴ */
.logo-list img {
  height: 50px;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
}

/* アニメーション */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* アニメーション */
@keyframes scroll2 {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
/* =========================
   ABOUT
========================= */
.about {
  background: #f3f3f3;
  padding: 120px 20px 140px;
  text-align: center;
}

/* 内側 */
.about-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* 小見出し */
.about-label {
  font-size: 14px;
  color: #1c3f63;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}

/* タイトル */
.about-title {
  font-size: 48px;
  font-weight: 700;
  color: #1c3f63;
  line-height: 1.4;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
}

/* 説明文 */
.about-text {
  font-size: 14px;
  color: #1c3f63;
  line-height: 2.2;
  letter-spacing: 0.08em;
  margin-bottom: 60px;
  font-weight:300;
}

/* ボタン */
.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
font-weight:300;
  padding: 18px 40px;
  background: #1c3f63;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s;
}

/* ホバー */
.about-btn:hover {
   background: #fff;
  color: #1c3f63;
}

/* 矢印 */
.about-btn .arrow {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid #fff;
  border-radius: 50%;
  position: relative;
}

/* 矢印中身 */
.about-btn .arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 45%;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}
/* =========================
   MEMBERS
========================= */
.members {
  position: relative;
  padding: 120px 20px 140px;
  text-align: center;

  /* 背景画像 */
  background: url('../images/members-bg.jpg') no-repeat center/cover;
}

/* 内側 */
.members-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* 小見出し */
.members-label {
  font-size: 14px;
  color: #1c3f63;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}

/* タイトル */
.members-title {
  font-size: 40px;
  font-weight: 700;
  color: #1c3f63;
  letter-spacing: 0.15em;
  margin-bottom: 80px;
}

/* カード全体 */
.members-list {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 80px;
}

/* カード */
.member-card {
  text-align: center;
}

/* 画像 */
.member-img {
  width: 260px;
  height: 350px;
  background: #fff;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

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

/* 役職 */
.member-role {
  font-size: 13px;
  color: #6b7c8f;
  margin-bottom: 8px;
}

/* 名前 */
.member-name {
  font-size: 16px;
  font-weight: 600;
  color: #1c3f63;
}

/* ボタン */
.members-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 18px 40px;
  background: #1c3f63;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.1em;
  border-radius: 4px;
  transition: 0.3s;
}

.members-btn:hover {
    background: #fff;
  color: #1c3f63;
}

/* 矢印 */
.members-btn .arrow {
  width: 18px;
  height: 18px;
  border: 1px solid #fff;
  border-radius: 50%;
  position: relative;
}

.members-btn .arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 45%;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}
/* =========================
   SERVICE
========================= */

.service {
  padding: 120px 0;
  background: #fff;
}

/* タイトル */
.service-head {
  text-align: center;
  margin-bottom: 80px;
}

/* 全体ラップ */
.service-wrap {
  position: relative;
}

/* グレー（左だけ） */
.service-box {
  width: 80%; /* ←ここ重要（全体じゃない） */
  background: #e9edf2;
  padding: 80px 0;
}

/* 中身 */
.service-inner {
  display: flex;
  align-items: center;
  gap: 80px;

  max-width: 1000px;
  margin-left: 120px; /* ←左寄せ */
}

/* 画像 */
.service-img {
  width: 360px;
  flex-shrink: 0;
}

.service-img img {
  width: 100%;
}

/* テキスト */
.service-content {
  max-width: 500px;
}

/* 番号（白側に出す） */
.service-number {
  position: absolute;
  top: 0;
  right: 150px;
  font-size: 100px;
  color: #1c3f63;
}
/* 小見出し */
.service-label {
  font-size: 14px;
  color: #1c3f63;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}

/* タイトル */
.service-title {
  font-size: 40px;
  font-weight: 700;
  color: #1c3f63;
  letter-spacing: 0.15em;
  margin-bottom: 80px;
}
/* ボタン */
.service-btn {
  display: inline-block;
  padding: 14px 40px;
  background: #1c3f63;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition:0.3s;
}
.service-btn:hover{
	  background: #fff;
  color: #1c3f63;
}
/* 見出し */
.service-heading {
  font-size: 20px;
  color: #1c3f63;
  margin-bottom: 30px;
}

/* 本文 */
.service-text {
  font-size: 14px;
  line-height: 2.2;
  color: #4a5a6a;
  margin-bottom: 40px;
}
/* =========================
   WORKS
========================= */
.works {
  padding: 120px 20px;
  background: url('../images/works-bg.jpg') no-repeat center/cover;
  text-align: center;
}

.works-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.works-label {
  font-size: 13px;
  color: #6b7c8f;
  letter-spacing: 0.2em;
  margin-bottom: -30px;
  text-transform: uppercase; /* ←英語っぽさ出る */
}
.works-title {
  font-size: 50px;
  color: #1c3f63;
  letter-spacing: 0.15em;
  margin-bottom: 80px;
}

/* 一覧 */
.works-list {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 80px;
}
.works-list-top{
	  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 80px;
}
/* アイテム */
.works-item {
  width: 300px;
}
.works-item-top{
	width: 300px;
}
/* 画像 */
.works-img img {
  width: 100%;
  display: block;
  margin-bottom: 20px;
}

/* 会社名 */
.works-client {
  font-size: 14px;
  margin-bottom: 10px;
}

/* 説明 */
.works-desc {
  font-size: 13px;
  color: #555;
}

/* ボタン */
.works-btn {
  display: inline-block;
  padding: 14px 40px;
  background: #1c3f63;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition:0.3s;
}
.works-btn:hover{
	  background: #fff;
  color: #1c3f63;
}
.works-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.works-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* =========================
   BLOG & NEWS
========================= */
.info {
  padding: 120px 20px;
  background: #fff;
}

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

/* カラム */
.info-col {
  flex: 1;
}

/* 見出し */
.info-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.info-head h2 {
  font-size: 24px;
  color: #1c3f63;
}

.info-more {
  font-size: 13px;
  text-decoration: none;
  color: #999;
}

/* リスト */
.info-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* BLOG */
.info-item {
  display: flex;
  gap: 20px;
  text-decoration: none;
  color: #333;
}

/* サムネ */
.info-thumb {
  width: 120px;
  flex-shrink: 0;
}

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

/* 本文 */
.info-title {
  font-size: 14px;
  margin-bottom: 8px;
}

.info-meta {
  font-size: 12px;
  color: #999;
  display: flex;
  gap: 10px;
}

/* NEWS（サムネなし） */
.news .news-item {
  flex-direction: column;
  gap: 5px;
}
/* =========================
   Q&A
========================= */
.qa {
  padding: 120px 20px;
  background: #f4f7fa;
}

.qa-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* 見出し */
.qa-label {
  text-align: center;
  font-size: 14px;
  color: #1c3f63;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}

.qa-title {
  text-align: center;
  font-size: 40px;
  color: #1c3f63;
  letter-spacing: 0.15em;
  margin-bottom: 80px;
}

/* リスト */
.qa-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* アイテム */
.qa-item {
  border-bottom: 1px dashed #9fb3c8;
  padding-bottom: 30px;
}

/* 質問 */
.qa-question {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
}

/* テキスト */
.qa-question p {
  flex: 1;
  font-size: 14px;
}

/* Q */
.q {
  color: #1c3f63;
  font-weight: bold;
}

/* ＋ボタン */
.qa-toggle {
  width: 20px;
  height: 20px;
  position: relative;
}

.qa-toggle::before,
.qa-toggle::after {
  content: "";
  position: absolute;
  background: #1c3f63;
}

.qa-toggle::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.qa-toggle::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

/* 回答 */
.qa-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s;
  margin-top: 0;
  display: flex;
  gap: 10px;
}

/* 開いた時 */
.qa-item.active .qa-answer {
  max-height: 300px;
  margin-top: 15px;
}

/* A */
.a {
  color: red;
  font-weight: bold;
}

/* 回答文 */
.qa-answer p {
  font-size: 14px;
  line-height: 2;
}

/* ＋→− */
.qa-item.active .qa-toggle::after {
  display: none;
}
/* =========================
   CONTACT
========================= */
.contact {
  background: #fff;
  padding: 120px 20px;
  text-align: center;
}

.contact-inner {
  max-width: 800px;
  margin: 0 auto;
}

/* 見出し */
.contact-label {
  font-size: 14px;
  color: #1c3f63;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}

.contact-title {
  font-size: 42px;
  color: #1c3f63;
  letter-spacing: 0.15em;
  margin-bottom: 40px;
}

/* テキスト */
.contact-text {
  font-size: 14px;
  color: #1c3f63;
  line-height: 2;
  margin-bottom: 40px;
}

/* ボタン */
.contact-btn {
  display: inline-block;
  background: #183d63;
  color: #fff;
  padding: 18px 60px;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 4px;
  margin-bottom: 50px;
  transition: 0.3s;
}

.contact-btn:hover {
   background: #fff;
  color: #183d63;
}

/* 下の情報 */
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

/* アイテム */
.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* 電話番号 */
.contact-tel {
  font-size: 26px;
  font-weight: bold;
  color: #183d63;
  letter-spacing: 0.15em;
}

/* メール */
.contact-mail {
  font-size: 16px;
  color: #183d63;
  letter-spacing: 0.1em;
}

/* アイコン共通 */
.icon {
  display: inline-block;
  width: 28px;
  height: 28px;
  position: relative;
}

/* 電話アイコン */
.icon.phone::before {
  content: "📞";
  font-size: 24px;
}

/* メールアイコン */
.icon.mail::before {
  content: "✉️";
  font-size: 22px;
}
/* =========================
   PRIVACY POLICY
========================= */
.privacy-page {
  background: #f7f7f7;
  color: #222;
}

.privacy-fv {
  background:#1c3f63;
  padding: 60px 20px 60px;
}

.privacy-fv-inner {
  width: min(100%, 1100px);
  margin: 0 auto;
}

.privacy-fv-sub {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.3rem;
  letter-spacing: 0.24em;
  line-height: 1;
}

.privacy-fv-title {
  margin: 0;
  color: #fff;
  font-size:35px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.08em;
}

.privacy-content {
  padding: 100px 20px 120px;
}

.privacy-content-inner {
  width: min(100%, 960px);
  margin: 0 auto;
  padding: 72px 72px 80px;
  background: #fff;
  border-radius: 8px;
  box-sizing: border-box;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
}

.privacy-lead {
  margin-bottom: 50px;
}

.privacy-lead p {
  margin: 0;
  font-size:16px;
  line-height: 2;
  color: #333;
  font-weight:300;
}

.privacy-section + .privacy-section {
  margin-top: 42px;
}

.privacy-section h2 {
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #ddd;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  color: #1c3f63;
  font-weight:500;
}

.privacy-section p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  color: #333;
  font-weight:300;
}

.privacy-section ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.privacy-section ul li {
  position: relative;
  margin: 0;
  padding-left: 1.4em;
  font-size: 16px;
  line-height: 2;
  color: #333;
  font-weight:300;
}

.privacy-section ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: #111;
}

.privacy-date {
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid #ddd;
}

.privacy-date p {
  margin: 0;
  font-size: 18px;
  line-height: 0.8em;
  color: #444;
  font-weight:300;
}
/* =========================
   FOOTER
========================= */
.footer {
  background: #062c44;
  color: #fff;
  padding: 100px 40px;
}

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

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

.footer-title {
  font-size: 26px;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

.footer-text {
  font-size: 13px;
  line-height: 2;
  margin-bottom: 20px;
  color: #c9d6e2;
}

.footer-link {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 13px;
  color: #fff;
  border-bottom: 1px solid #fff;
  text-decoration: none;
}

.footer-tel {
  font-size: 14px;
  margin-bottom: 20px;
}

.footer-address {
  font-size: 12px;
  color: #c9d6e2;
  margin-bottom: 15px;
}

.footer-map {
  display: inline-block;
  font-size: 12px;
  background: #fff;
  color: #062c44;
  padding: 5px 12px;
  border-radius: 12px;
  margin-bottom: 20px;
  text-decoration: none;
}

/* SNS */
.footer-sns {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-sns a {
  font-size: 12px;
  color: #fff;
  text-decoration: none;
}

/* コピー */
.footer-copy {
  font-size: 10px;
  color: #c9d6e2;
}

/* 右 */
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ナビ */
.footer-nav {
  display: flex;
  gap: 80px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-col a {
  font-size: 13px;
  color: #fff;
  text-decoration: none;
}

/* SERVICE */
.footer-service-title {
  font-size: 13px;
  margin-bottom: 10px;
}

.footer-service p {
  font-size: 12px;
  color: #c9d6e2;
  margin-bottom: 5px;
}
/* =========================
   MISSION
========================= */
.mission {
  padding: 120px 20px;
  background: #fff;
}

.mission-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* 上のラベル */
.mission-label {
  font-size: 14px;
  color: #1c3f63;
  letter-spacing: 0.15em;
  margin-bottom:-30px;
}
.mission-label-2 {
  font-size: 14px;
  color: #1c3f63;
  letter-spacing: 0.15em;
  margin-top: 40px;
  margin-bottom:-30px;
}
/* タイトル */
.mission-title {
  font-size: 48px;
  letter-spacing: 0.2em;
  color: #1c3f63;
  margin-bottom: 20px;
  border-bottom: 2px solid #1c3f63;
  display: inline-block;
  padding-bottom: 10px;
}

/* リスト */
.mission-list {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* 各項目 */
.mission-item {
}

/* 見出し */
.mission-heading {
  font-size: 18px;
  color: #1c3f63;
  margin-bottom: 15px;
  font-weight: bold;
  margin-top:-20px;
}

/* 本文 */
.mission-item p {
  font-size: 14px;
  line-height: 2;
  color: #1c3f63;
  font-weight:300;
}
/* =========================
   MESSAGE
========================= */
.message {
  padding: 120px 20px;
  background: #f4f7fa;
}

.message-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* 見出し（右寄せ） */
.message-head {
  text-align: right;
  margin-bottom: 60px;
}

.message-label {
  font-size: 14px;
  color: #1c3f63;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}

.message-title {
  font-size: 48px;
  letter-spacing: 0.2em;
  color: #1c3f63;
  display: inline-block;
  border-bottom: 2px solid #1c3f63;
  padding-bottom: 10px;
}

/* 横並び */
.message-content {
  display: flex;
  gap: 80px;
}

/* 左 */
.message-left {
  width: 40%;
}

.message-left img {
  width: 100%;
  display: block;
  margin-bottom: 20px;
}

.message-profile {
  font-size: 12px;
  line-height: 2;
  color: #333;
}

/* 右 */
.message-right {
  width: 60%;
}

/* 本文 */
.message-text p {
  font-size: 14px;
  line-height: 2;
    color: #1c3f63;
  font-weight:300;
  margin-bottom: 20px;
}

/* 署名 */
.message-sign {
  margin-top: 40px;
  text-align: right;
}

.message-sign p {
  font-size: 14px;
  color: #1c3f63;
}

.message-sign .name {
  font-size: 20px;
  margin-top: 5px;
}
/* =========================
   OVERVIEW
========================= */
.overview {
  padding: 120px 20px;
  background: #fff;
}

.overview-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* 見出し */
.overview-label {
  font-size: 14px;
  color: #1c3f63;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}

.overview-title {
  font-size: 48px;
  letter-spacing: 0.2em;
  color: #1c3f63;
  border-bottom: 2px solid #1c3f63;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 50px;
}

/* テーブル */
.overview-table {
  display: flex;
  flex-direction: column;
}

/* 行 */
.overview-row {
  display: flex;
  border-bottom: 1px solid #dcdcdc;
  padding: 20px 0;
}

/* 左 */
.overview-head {
  width: 200px;
  font-size: 14px;
  font-weight: bold;
  color: #1c3f63;
}

/* 右 */
.overview-data {
  flex: 1;
  font-size: 14px;
  color: #333;
  line-height: 2;
      color: #1c3f63;
  font-weight:300;
}

/* MAP */
.overview-map {
  width: 100%;
  height: 250px;
  background: #ccc;
  margin-bottom: 10px;
}
/* =========================
   CONTACT PAGE
========================= */
.contact-page {
  padding: 120px 20px;
  background: #fff;
}

.contact-page-inner {
  max-width: 800px;
  margin: 0 auto;
}

/* 見出し */
.contact-page-label {
  font-size: 14px;
  color: #1c3f63;
  font-weight:300;
  letter-spacing: 0.1em;
  
}

.contact-page-title {
  font-size: 36px;
  letter-spacing: 0.2em;
  margin-bottom: 40px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
  color: #1c3f63;
}

/* 説明 */
.contact-page-text {
  font-size: 13px;
  line-height: 2;
   color: #1c3f63;
  margin-bottom: 40px;
}

.contact-page-text .required {
  color: red;
  margin-top: 10px;
}

/* フォーム */
.form-row {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.form-row label {
  display: block;
  font-size: 13px;
  margin-bottom: 10px;
}

.form-row label span {
  color: red;
}

/* 入力 */
input,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  font-size: 14px;
  background: #f7f7f7;
}

textarea {
  height: 150px;
}

/* ラジオ */
.form-radio label {
  margin-right: 20px;
}

/* チェック */
.form-check label {
  display: inline-block;
  margin-right: 15px;
}
.wpcf7-list-item label {
  display: flex;
  align-items: center; /* ←これが本体 */
  gap: 11px;
}
/* プライバシー */
.privacy-box {
  height: 150px;
  overflow-y: scroll;
  border: 1px solid #ddd;
  padding: 10px;
  font-size: 12px;
  background: #fafafa;
  margin-bottom: 10px;
}

/* 送信 */
.form-submit {
  text-align: center;
  margin-top: 40px;
}

.form-submit input {
  width: 200px;
  background: #1c3f63;
  color: #fff;
  border: none;
  cursor: pointer;
}
.wpcf7-list-item-label {
  color: #333 !important;
  width:300px;
}
/* プライバシーボックス */
.privacy-box {
  max-height: 220px; /* ←高さ調整 */
  overflow-y: auto;
  border: 1px solid #ddd;
  padding: 20px;
  background: #fafafa;
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* スクロールバーちょい綺麗に */
.privacy-box::-webkit-scrollbar {
  width: 6px;
}

.privacy-box::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

/* 同意チェック */
.wpcf7-acceptance {
  font-size: 13px;
}
/* =========================
   NEWS ARCHIVE
========================= */
.news-archive {
  padding: 120px 20px;
  background: #f5f7fa;
}

.news-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* 見出し */
.news-head h1 {
  font-size: 32px;
  color: #1c3f63;
  margin-bottom: 40px;
}

/* カテゴリ */
.news-cat {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.news-cat a {
  text-decoration: none;
  font-size: 14px;
  color: #888;
  position: relative;
}

.news-cat a.active {
  color: #1c3f63;
}

.news-cat a.active::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #1c3f63;
}

/* リスト */
.news-list {
  display: flex;
  flex-direction: column;
}

/* アイテム */
.news-item {
  display: block;
  padding: 30px 0;
  border-bottom: 1px solid #ddd;
  text-decoration: none;
  color: #333;
}

/* メタ */
.news-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.news-date {
  font-size: 14px;
  color: #666;
}

.news-label {
  font-size: 12px;
  border: 1px solid #999;
  padding: 4px 10px;
  border-radius: 20px;
}

/* タイトル */
.news-title {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
}

/* hover */
.news-item:hover {
  opacity: 0.7;
}
/* =========================
   NEWS DETAIL
========================= */
.news-detail {
  padding: 120px 20px;
  background: #fff;
}

.news-detail-inner {
  max-width: 800px;
  margin: 0 auto;
}

/* 見出し */
.news-detail-head {
  text-align: center;
  margin-bottom: 60px;
}

.news-detail-head h1 {
  font-size: 40px;
  color: #1c3f63;
  letter-spacing: 0.2em;
}

.news-detail-head p {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}

/* 記事 */
.news-article {
  border-top: 1px solid #ddd;
  padding-top: 40px;
}

/* メタ */
.news-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.news-date {
  font-size: 14px;
  color: #666;
}

.news-label {
  font-size: 12px;
  border: 1px solid #333;
  padding: 4px 10px;
}

/* タイトル */
.news-title {
  font-size: 18px;
  margin-bottom: 30px;
  color: #1c3f63;
  line-height: 1.6;
}

/* サムネ */
.news-thumb {
  margin-bottom: 30px;
}

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

/* 本文 */
.news-content {
  font-size: 15px;
  line-height: 2.2;
  color: #333;
}

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

/* =========================
   戻るボタン
========================= */
.news-back {
  margin-top: 50px;
  text-align: center;
}

.news-back a {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid #1c3f63;
  color: #1c3f63;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}

.news-back a:hover {
  background: #1c3f63;
  color: #fff;
}

/* =========================
   前後ナビ
========================= */
.news-nav {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.news-nav a {
  color: #1c3f63;
  text-decoration: none;
}

.news-nav a:hover {
  opacity: 0.6;
}
/* =========================
   WORKS ARCHIVE
========================= */
.works-archive {
  padding: 120px 20px;
  background: #fff;
}

.works-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* タイトル */
.works-head {
  text-align: center;
  margin-bottom: 60px;
}

.works-head h1 {
  font-size: 40px;
  letter-spacing: 0.2em;
  color: #1c3f63;
}

/* カテゴリ */
.works-cat {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}

.works-cat a {
  font-size: 14px;
  text-decoration: none;
  color: #999;
  position: relative;
}

.works-cat a.active {
  color: #1c3f63;
}

.works-cat a.active::after {
  content: "";
  height: 2px;
  width: 100%;
  background: #1c3f63;
  position: absolute;
  bottom: -5px;
  left: 0;
}

/* 一覧 */
.works-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* カード */
.works-item {
  text-decoration: none;
  color: #333;
}

/* 画像 */
.works-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 15px;
}

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

/* 会社名 */
.works-company {
  font-size: 14px;
  margin-bottom: 5px;
}

/* タイプ */
.works-type {
  font-size: 12px;
  color: #999;
}
.works-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 15px;

  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transition: 0.3s;
}

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

/* hoverで浮かせる（おすすめ） */
.works-thumb:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}
.works-item a {
  color: inherit;       /* 親の色を引き継ぐ */
  text-decoration: none; /* 下線消す */
}
/* =========================
   WORKS DETAIL
========================= */

.works-detail {
  background: #f5f5f5;
}

/* FV */
.works-fv {
  position: relative;
  padding: 120px 20px 80px;
  text-align: center;
  overflow: hidden;
}

/* 背景巨大文字 */
.works-fv-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 180px;
  color: rgba(0,0,0,0.05);
  letter-spacing: 0.2em;
  white-space: nowrap;
  z-index: 0;
}

/* 中身 */
.works-fv-inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

/* メタ */
.works-meta {
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}

/* タイトル */
.works-fv-title {
  font-size: 32px;
  letter-spacing: 0.2em;
  color: #1c3f63;
  margin-bottom: 40px;
}

/* 画像 */
.works-fv-image {
  max-width: 800px;
  margin: 0 auto;
}

.works-fv-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 本文 */
.works-content {
  max-width: 800px;
  margin: 80px auto;
  font-size: 14px;
  line-height: 2;
}
/* =========================
   WORKS DATA
========================= */

.works-data {
  background: #f5f5f5;
  padding: 120px 20px;
  position: relative;
}

/* 背景文字 */
.works-data::before {
  content: "IN RECORD OUR";
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 140px;
  color: rgba(0,0,0,0.02);
  letter-spacing: 0.2em;
  white-space: nowrap;
}
/* =========================
   背景文字スクロール
========================= */

.works-data {
  position: relative;
  overflow: hidden; /* ←これ重要 */
}

/* 背景文字 */
.works-data::before {
  content: "IN RECORD OUR IN RECORD OUR IN RECORD OUR ";
  position: absolute;
  top: -10%;
  left: 0;

  font-size: 140px;
  color: rgba(0,0,0,0.02);
  letter-spacing: 0.2em;
  white-space: nowrap;

  animation: scrollText 30s linear infinite;
}

/* アニメーション */
@keyframes scrollText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* 内側 */
.works-data-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 120px;
}

/* 左 */
.works-data-left h2 {
  font-size: 24px;
  letter-spacing: 0.15em;
  color: #333;
}

/* 右 */
.works-data-right {
  flex: 1;
}

/* 行 */
.works-row {
  display: flex;
  margin-bottom: 20px;
}

/* ラベル */
.works-row .label {
  width: 150px;
  font-size: 16px;
  color: #999;
  letter-spacing: 0.1em;
}

/* 値 */
.works-row .value {
  font-size: 18px;
  color: #333;
}

/* リンク */
.works-row a {
  color: #333;
  text-decoration: underline;
}
/* =========================
   BACK BUTTON
========================= */

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

.works-back a {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid #1c3f63;
  color: #1c3f63;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.15em;
  transition: 0.3s;
}

/* hover */
.works-back a:hover {
  background: #1c3f63;
  color: #fff;
}
/* =========================
   CATEGORY TAB
========================= */
.works-cat {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.works-cat a {
  font-size: 14px;
  color: #999;
  text-decoration: none;
  position: relative;
  padding-bottom: 5px;
}

/* active */
.works-cat a.active {
  color: #1c3f63;
  font-weight: 500;
}

.works-cat a.active::after {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #1c3f63;
}

/* hover */
.works-cat a:hover {
  opacity: 0.6;
}










@media screen and (max-width: 767px) {

  .site-header {
    height: 70px;
  }

  .header-inner {
    padding: 0 20px;
  }

  .header-logo img {
    height: 40px;
  }

  .header-nav {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: #fff;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: 0.3s;
  }

  .header-nav.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 30px;
  }

  .header-contact {
    display: none;
  }

  .hamburger {
    display: block;
  }

  /* バツ */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
  }

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

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 9px;
  }


  .nav-list {
    flex-direction: column;
    gap: 30px;
    text-align: center;
	margin-right:0px;
  }

  .nav-list a {
    font-size: 18px;
  }

  /* CONTACT非表示 */
  .header-contact {
    display: none;
  }

  /* ハンバーガー表示 */
  .hamburger {
    display: block;
  }

  .fv-inner {
    padding: 0 20px;
  }

  .fv-title {
    font-size: 36px;
    line-height: 1.3;
  }

  .fv-sub {
    font-size: 14px;
  }
	  .logo-list {
    gap: 40px;
  }

  .logo-list img {
    height: 35px;
  }
	
  .about {
    padding: 80px 20px 100px;
  }

  .about-title {
    font-size: 28px;
  }

  .about-text {
    font-size: 13px;
    line-height: 2;
  }
  .about-btn {
    padding: 14px 24px;
    font-size: 13px;
  }
	  .members {
    padding: 80px 20px 100px;
  }
.member-img img {
  height: 100%;
}
	.member-role {
  margin-bottom: 0px;
}

  .members-title {
    font-size: 28px;
    margin-bottom: 50px;
  }

  .members-list {
    flex-direction: column;
    gap: 40px;
  }

  .member-img {
    width: 200px;
    height: 280px;
  }
	  /* 全体余白 */
  .service {
    padding: 80px 0;
  }

  /* タイトル */
  .service-head {
    margin-bottom: 50px;
  }

  /* グレーエリア */
  .service-box {
    width: 85%; /* ←SPはフル幅 */
    padding: 40px 20px;
  }

  /* 中身 */
  .service-inner {
    flex-direction: column; /* ←縦積み */
    gap: 30px;
    margin-left: 0; /* ←リセット重要 */
    max-width: 100%;
  }

  /* 画像 */
  .service-img {
    width: 100%;
  }

  /* テキスト */
  .service-content {
    max-width: 100%;
    text-align: left;
  }

  /* 見出し */
  .service-heading {
    font-size: 18px;
    margin-bottom: 20px;
  }

  /* 本文 */
  .service-text {
    font-size: 13px;
    line-height: 2;
    margin-bottom: 30px;
  }
	.service-text br{
		display:none;
	}
  /* ボタン */
  .service-btn {
    width: 100%;
    text-align: center;
    padding: 14px 0;
  }

  /* 番号 */
  .service-number {
    font-size: 60px;
    top: 10px;
    right: 20px;
  }
/* 一覧 */
.works-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}


  /* 各カード */
  .works-item {
    flex: 0 0 80%; /* ←1枚の幅 */
    scroll-snap-align: start;
  }

  /* スクロールバー消す */
  .works-list::-webkit-scrollbar {
    display: none;
  }
	  .info-inner {
    flex-direction: column;
    gap: 60px;
  }

  .info-thumb {
    width: 100px;
  }
	  .contact {
    padding: 80px 20px;
  }

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

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

  .contact-btn {
    padding: 14px 30px;
  }

  .contact-tel {
    font-size: 20px;
  }
	 .mission {
    padding: 80px 20px;
  }

  .mission-title {
    font-size: 32px;
  }

  .mission-heading {
    font-size: 16px;
  }
	.mission-heading br{
		display:none;
	}
  .message {
    padding: 80px 20px;
  }

  .message-title {
    font-size: 30px;
  }

  .message-content {
    flex-direction: column;
  }

  .message-left,
  .message-right {
    width: 100%;
  }
	  .overview {
    padding: 80px 20px;
  }

  .overview-title {
    font-size: 30px;
  }

  .overview-row {
    flex-direction: column;
    gap: 10px;
  }

  .overview-head {
    width: 100%;
  }
	
  .contact-page {
    padding: 80px 20px;
  }

  .contact-page-title {
    font-size: 26px;
  }
	  .footer-inner {
    flex-direction: column;
    gap: 60px;
  }

  .footer-nav {
    gap: 40px;
  }
.header-inner img {
  height: 50px;
  display: block;
}
input,
textarea {
  width: 80%;
  padding: 12px;
  border: 1px solid #ddd;
  font-size: 14px;
  background: #f7f7f7;
}
	.mission-item p br{
		display:none;
	}
	.message-text p br {
display:none;
}
.wpcf7-list-item label {
  gap: 1px;
}
}
/* =========================
   Tablet
========================= */
@media screen and (max-width: 1024px) {
  .privacy-fv {
    padding: 150px 24px 80px;
  }

  .privacy-content-inner {
    padding: 60px 40px 70px;
  }

  .privacy-fv-title {
    font-size: 4rem;
  }
}

/* =========================
   Mobile
========================= */
@media screen and (max-width: 768px) {
  .privacy-fv {
    padding: 60px 20px 60px;
  }

  .privacy-fv-sub {
    font-size: 1.1rem;
    letter-spacing: 0.16em;
  }

  .privacy-fv-title {
    font-size: 25px;
    line-height: 1.4;
  }

  .privacy-content {
    padding: 40px 16px 40px;
  }

  .privacy-content-inner {
    padding: 34px 18px 42px;
    border-radius: 4px;
  }

  .privacy-lead {
    margin-bottom: 36px;
  }

  .privacy-lead p,
  .privacy-section p,
  .privacy-section ul li,
  .privacy-date p {
    font-size: 1rem;
    line-height: 1.95;
  }

  .privacy-section h2 {
    margin-bottom: 14px;
    padding-bottom: 10px;
    font-size: 1.2rem;
    line-height: 1.6;
  }

  .privacy-section + .privacy-section {
    margin-top: 30px;
  }

  .privacy-date {
    margin-top: 40px;
    padding-top: 22px;
  }
	  .news-archive {
    padding: 80px 20px;
  }

  /* タイトル */
  .news-head h1 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  /* カテゴリ */
  .news-cat {
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .news-cat a {
    font-size: 13px;
    white-space: nowrap;
  }

  /* リスト */
  .news-item {
    padding: 20px 0;
  }

  /* メタ（縦にする） */
  .news-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    margin-bottom: 10px;
  }

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

  .news-label {
    font-size: 11px;
    padding: 3px 8px;
  }

  /* タイトル */
  .news-title {
    font-size: 14px;
    line-height: 1.6;
  }
	  .news-detail {
    padding: 80px 20px;
  }

  .news-detail-head h1 {
    font-size: 28px;
  }

  .news-title {
    font-size: 15px;
  }

  .news-content {
    font-size: 14px;
  }

  .news-nav {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .works-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }
	  .works-data-inner {
    flex-direction: column;
    gap: 40px;
  }

  .works-row {
    flex-direction: column;
    gap: 5px;
  }

  .works-row .label {
    width: auto;
  }
	.works-fv-title{
		font-size:26px;
	}
	/* メタ */
.works-meta {
  font-size: 11px;
  color: #666;
  margin-bottom: 5px;
}
	
/* 背景文字 */
.works-data::before {
  content: "IN RECORD OUR";
  position: absolute;
  top: 10%;
  transform: translateX(-50%);
  font-size: 70px;
  color: rgba(0,0,0,0.02);
  letter-spacing: 0.2em;
  white-space: nowrap;
}
	
.works-data {
  background: #f5f5f5;
  padding: 60px 20px;
  position: relative;
}
/* FV */
.works-fv {
  position: relative;
  padding: 60px 20px 0px;
}
  .works-list-top {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }

  /* 各カード */
  .works-item-top {
    flex: 0 0 80%; /* ←1枚の幅 */
    scroll-snap-align: start;
  }

  /* スクロールバー消す */
  .works-list-top::-webkit-scrollbar {
    display: none;
  }
}