@charset "utf-8";

/*
Theme Name : Morenet WP
Version : 1.0
Author: Daisuke Okaniwa
Description: 有限会社ズーム制作カスタムテーマ
*/
/*h1
 {
    color:aqua;
}
p {
    font-size: 28px;
}*/

* {
  margin: 0;
  padding: 0;
  /*  outline: 1px solid #dbf8ff;*/
}


/*練習用*/

.ren1 {
  background-color: #d1cfd1;
  padding: 2rem;
}

.ren2 {
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  /* フォント */
  color: blue;
}


.ren3 {
  padding: 2rem;
  background-color: #f6ffce;
}

.ren1 img {
  width: 100%;
  margin-bottom: 16px;
}

.ren4 {
  background-color: #ffeff3;
  padding: 20px 150px 80px 250px;
  margin: 20px 150px 80px 250px;
}

body {
  font-family: "Noto Serif JP", serif;
  font-weight: 100;
  /*400 700*/
  font-style: normal;
}

/*  {
  font-family: "Kaisei Decol", serif;
  font-weight: 300;
  font-style: normal;
} */



.link-orange {
  color: rgb(0, 0, 0);
  text-decoration: none;
}

.link-orange:hover {
  color: #000000;
}

/* =========================
   ヘッダー
========================= */
header {
  background: rgba(26, 22, 18, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(154, 125, 74, 0.3);
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  height: 80px;
  justify-content: space-between;
}

.logo{
      font-family: 'IM Fell English SC', serif;
    font-size: 26px;
    color: #b9a78b;
    letter-spacing: 0.1em;
    line-height: 1;
    font-weight: 700;
text-decoration: none;
}

/* ロゴ画像 */
.logo img {
  width: auto;
  height: 52px;
  /* 暗い背景に合わせて明るく補正（ロゴが白抜きでない場合は削除可） */
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 0.2s;
}

.logo:hover img {
  opacity: 1;
}

/* ナビ全体 */
.menu {
  margin-left: auto;
}

.menu ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 通常リンク */
.menu a {
  display: inline-block;
  background: transparent;
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  padding: 7px 14px;
  border: none;
  border-radius: 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  font-family: "Noto Serif JP", serif;
  transition: color 0.2s;
  position: relative;
}

/* ホバー下線アニメーション */
.menu a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: #b9a78b;
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}

.menu a:hover {
  color: #c4a96b;
}

.menu a:hover::after {
  transform: scaleX(1);
}

/* お問い合わせボタン */
.menu a.contact-button {
  background: #8b2e1a;
  color: #fdfaf6 !important;
  border: 1px solid rgba(139, 46, 26, 0.5);
  padding: 8px 18px;
  border-radius: 0;
  font-size: 12px;
  letter-spacing: 0.15em;
  margin-left: 8px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(139, 46, 26, 0.25);
}

.menu a.contact-button::after {
  display: none;
}

.menu a.contact-button:hover {
  background: #a33520;
  color: #fdfaf6;
  box-shadow: 0 4px 16px rgba(139, 46, 26, 0.4);
}

/* =========================
   ハンバーガー
========================= */
.hamburger {
  display: none;
}

@media screen and (max-width: 991px) {

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 999;
    position: relative;
  }

  .hamburger span {
    position: absolute;
    width: 100%;
    height: 1px;
    background: rgba(245, 241, 235, 0.8);
    border-radius: 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;
  }

  /* バツ印 */
  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 43%;
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
  }

  /* ドロワーメニュー */
  .menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(26, 22, 18, 0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(154, 125, 74, 0.2);
    padding: 24px 20px;
    z-index: 998;
  }

  .menu.open {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
  }

  .menu ul {
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
  }

  .menu a {
    display: inline-block;
    width: 180px;
    text-align: right;
    padding: 10px 0;
    font-size: 13px;
    letter-spacing: 0.12em;
  }

  .menu a::after {
    left: 0;
    right: 0;
  }

  .menu a.contact-button {
    margin-top: 8px;
    margin-left: 0;
    text-align: center;
    width: 180px;
    padding: 10px 18px;
  }
}

.main-visual {
  margin-top: 80px;
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.img1 {
  background-image: url("img/kuro.jpg");
}

.img2 {
  background-image: url("img/kuro.jpg");
}

.img3 {
  background-image: url("img/kuro.jpg");
}



.main-visual {

  margin-top: 80%;
  background-size: cover;
  background-position: center;
  min-height: 600px;
  position: relative;
}


.main-button {

  position: absolute;
  left: 190px;
  bottom: 90px;
  display: inline-block;
  background-color: transparent;
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 6px;
  border: 1px solid #fff;
}

.main-button:hover {
  background-color: #fff;
  color: #000;
  transition: 0.3s;
}


.main-text {
  position: absolute;
  left: 8%;
  bottom: 200px;
  color: #fff;
  max-width: 600px;
}

.main-text h1 {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.4;
}

.main-button {
  display: inline-block;
  margin-top: 24px;
  background: linear-gradient(135deg, #310000 0%, #47000a 45%, #240000 100%);
  color: #fff;
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 6px;
  border: 1px solid #1a1907;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.main-button:hover {
  background-color: #faf8f4;
  color: #d1d1d1;
  border-color: #1a1907;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);

}


.main-text {
  color: #fff;
}

.big-text {
  font-size: 1.8em;
  font-weight: bold;
}



.main-text {
  color: #fff;
}


.section-button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.section-link-button {
  display: inline-block;
  background: #8b2e1a;
  color: #fdfaf6;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.18em;
  padding: 18px 52px;
  border: 1px solid rgba(139, 46, 26, 0.5);
  transition: background 0.3s, box-shadow 0.3s;
  font-family: "Noto Serif JP", serif;
  box-shadow: 0 4px 20px rgba(139, 46, 26, 0.3);
}


.section-link-button:hover {
 background: #a33520;
  color: #fdfaf6;
  box-shadow: 0 4px 16px rgba(139, 46, 26, 0.4);
}



/* フッター全体 */
footer {
  background: #000000;
  color: #fff;

}


/* 3カラム */
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}


/* ナビ */
.footer-nav {
  width: 32%;
}

.fnav-list {
  list-style: none;
  margin: 20px;
  padding: 20px;
}

.fnav-list li {
  margin-bottom: 12px;
}

.fnav-list a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.fnav-list a:hover {
  color: #d7b56d;
}

@media screen and (max-width: 767px) {
  .footer-top {
    padding: 40px 0 30px;
  }

  .footer-grid {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
  }

  .footer-logo,
  .footer-nav,
  .footer-info {
    width: 100%;
  }

  .footer-logo img {
    max-width: 140px;
    height: auto;
    margin: 0 auto;
  }

  .fnav-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-info p {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .footer-bottom {
    padding: 16px 0;
  }

  .footer-copyright {
    font-size: 0.8rem;
    line-height: 1.6;
  }
}



/* 会社情報 */
.footer-info {
  width: 40%;
}

.footer-info p {
  line-height: 1.9;
  color: rgba(255, 255, 255, 1);
}

/* 下段 */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 0;
}

.footer-copyright {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 1);
}

/* フッター全体　エンド */



/* フロントページ　サービス内容 */

.front-service {
  padding: 100px 0;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 16px;
  text-align: center;
}

.section-lead {
  text-align: center;
  margin-bottom: 50px;
  color: #555;
}

.service-list {
  display: flex;

  gap: 30px;
}

.service-item {
  width: calc(50% - 15px);
  box-sizing: border-box;
  border: 1px solid #e5dfd6;
  padding: 32px 28px;
  background: #fff;
  position: relative;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  text-align: center;
}


.service-item h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.service-item p {
  line-height: 1.8;
  color: #444;
}

.service-button-wrap {
  text-align: center;
  margin-top: 60px;
}

.service-button {
  display: inline-block;
  background: linear-gradient(135deg, #000000 0%, #47000a 45%, #000000 100%);
  color: #ffffff;
  text-decoration: none;
  padding: 10px 18px;
  border: 1px solid #1a1907;
  border-radius: 6px;
  transition: 0.3s;
}

.service-button:hover {
  background-color: #faf8f4;
  color: #d1d1d1;
  border-color: #5a0d18;
}


@media screen and (max-width: 767px) {
  .service-list {
    flex-direction: column;
  }
}



/* =========================
   フロントページ 制作実績ピックアップ（新デザイン）
========================= */
.fp-works {
  padding: 100px 0;
  background-color: #111;
  position: relative;
  overflow: hidden;
}

/* 背景 "WORKS" 文字 */
.fp-works::before {
  content: 'WORKS';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'IM Fell English SC', serif;
  font-size: 180px;
  color: rgba(154, 125, 74, 0.06);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  z-index: 0;
}

/* コンテナを前面に */
.fp-works .container {
  position: relative;
  z-index: 1;
}

.fp-works-header {
  text-align: center;
  margin-bottom: 56px;
}

.fp-works-en {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: #b9a78b;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: "Noto Serif JP", serif;
}

.fp-works-ja {
  margin-bottom: 16px;
  color: #fff;
}

.fp-works-line {
  width: 40px;
  height: 1px;
  background: #b9a78b;
  margin: 0 auto;
}

/* グリッド */
.fp-works-grid {
  display: flex;
  gap: 24px;
}

/* 各アイテム */
.fp-work-item {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.fp-work-placeholder {
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: transform 0.4s ease;
}

.fp-work-item:hover .fp-work-placeholder {
  transform: scale(1.04);
}

/* 実際の画像を使う場合 */
.fp-work-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.fp-work-item:hover img {
  transform: scale(1.04);
}

.fp-work-cat {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.55);
  font-family: "Noto Serif JP", serif;
}

.fp-work-name {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
}

/* ホバーオーバーレイ */
.fp-work-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fp-work-item:hover .fp-work-overlay {
  opacity: 1;
}

.fp-work-overlay span {
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  padding-bottom: 4px;
  font-family: "Noto Serif JP", serif;
}

/* もっと見るボタン */
.fp-works-more {
  text-align: center;
  margin-top: 48px;
}

.fp-works-btn {
  display: inline-block;
  background: transparent;
  color: #fff;
  text-decoration: none;
  padding: 12px 30px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 6px;
  transition: 0.3s;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.06em;
}

.fp-works-btn:hover {
  background-color: #fff;
  color: #111;
  border-color: #fff;
}

/* タブレット */
@media screen and (max-width: 991px) {
  .fp-works-grid {
    gap: 16px;
  }

  .fp-works::before {
    font-size: 120px;
  }
}

/* スマホ */
@media screen and (max-width: 767px) {
  .fp-works {
    padding: 70px 0;
  }

  .fp-works::before {
    font-size: 72px;
    right: 0;
    top: 16px;
    transform: none;
  }

  .fp-works-grid {
    flex-direction: column;
    gap: 16px;
  }

  .fp-work-item {
    flex: none;
    width: 100%;
  }
}


/* =========================
   ご依頼の流れ
========================= */
.fp-flow {
  padding: 10px 0 50px 0;
  background-color: #f8f6f2;
  /* #111 → お客様の声と同じ明るい背景 */
  position: relative;
  overflow: hidden;
}

.fp-flow::before {
  content: 'FLOW';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'IM Fell English SC', serif;
  font-size: 180px;
  color: rgba(154, 125, 74, 0.06);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  z-index: 0;
}

.fp-flow .container {
  position: relative;
  z-index: 1;
}

/* 見出し色を黒に */
.fp-flow-ja {
  color: #111 !important;
}

/* ステップ */
.fp-flow-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 48px;
}

.fp-flow-step {
  flex: 1;
  text-align: center;
  padding: 32px 12px;
  background: #fff;
  border: 1px solid #e5dfd6;
  position: relative;
  transition: 0.3s;
}

.fp-flow-step:hover {
  background: #f0ece4;
  border-color: #b9a78b;
}

/* 矢印 */
.fp-flow-step::after {

  content: '';
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 14px solid #f0ece4;
  border-top: 28px solid transparent;
  border-bottom: 28px solid transparent;
  z-index: 2;
}

.fp-flow-step:last-child::after {
  display: none;
}

.fp-flow-step-num {
  font-family: 'IM Fell English SC', serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: #b9a78b;
  margin-bottom: 10px;
}

.fp-flow-step-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: #111;
  /* 白 → 黒 */
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-family: "Noto Serif JP", serif;
}

/* 補足テキスト */
.fp-flow-note {
  text-align: center;
  font-size: 0.88rem;
  color: #000000;
  /* 半透明白 → グレー */
  letter-spacing: 0.12em;
  margin-bottom: 36px;
  font-family: "Noto Serif JP", serif;
}

/* ボタン */
.fp-flow-cta {
  text-align: center;
}

.fp-flow-btn {
   display: inline-block;
  background: #8b2e1a;
  color: #fdfaf6;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.18em;
  padding: 18px 52px;
  border: 1px solid rgba(139, 46, 26, 0.5);
  transition: background 0.3s, box-shadow 0.3s;
  font-family: "Noto Serif JP", serif;
  box-shadow: 0 4px 20px rgba(139, 46, 26, 0.3);
}

.fp-flow-btn:hover {
 background: #a33520;
  color: #fdfaf6;
  box-shadow: 0 4px 16px rgba(139, 46, 26, 0.4);
}

/* タブレット */
@media screen and (max-width: 991px) {
  .fp-flow-steps {
    flex-wrap: wrap;
    gap: 2px;
  }

  .fp-flow-step {
    width: calc(33.333% - 2px);
    flex: none;
  }

  .fp-flow-step::after {
    display: none;
  }

  .fp-flow::before {
    font-size: 120px;
  }
}

/* スマホ */
@media screen and (max-width: 767px) {
  .fp-flow {
    padding: 30px 0;
  }

  .fp-flow::before {
    font-size: 72px;
    right: 0;
    top: 16px;
    transform: none;
  }

  .fp-flow-steps {
    flex-direction: column;
    gap: 2px;
  }

  .fp-flow-step {
    width: 100%;
    padding: 20px 16px;
  }

  .fp-flow-step-name {
    font-size: 0.95rem;
  }
}



/* よくある質問 */

.front-faq {
  padding: 60px 0 100px;
  background: rgba(255, 255, 255, 1);
}

.faq-title {
  text-align: center;
  color: #000000;
  margin-bottom: 20px;
}

.faq-lead {
  text-align: center;
  color: rgba(0, 0, 0, 0.72);
  margin-bottom: 50px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  padding: 28px 30px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background-color: rgba(0, 0, 0, 0.03);
}

.faq-question {
  font-size: 1.1rem;
  color: #000000;
  margin-bottom: 14px;
  line-height: 1.8;
}

.faq-answer {
  color: #000000 ;
  line-height: 2;
}



/* 会社案内 */

.front-company {
  padding: 100px 0;
  background-color: #f8f6f2;
}

.company-wrap {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.company-text {
  width: 45%;
  text-align: center;
}

.company-info {
  width: 55%;
}

.company-title {
  margin-bottom: 20px;
  color: #111;
}

.company-lead {
  font-size: 1.05rem;
  line-height: 2;
  margin-bottom: 20px;
  color: #222;
}

.company-message {
  font-size: 1.05rem;
  line-height: 2;
  margin-bottom: 20px;
  color: #222;
}

.company-name {
  font-size: 1.05rem;
  line-height: 2;
  margin-bottom: 20px;
  color: #222;
}

.company-list {
  border-top: 1px solid #d8d1c7;
}

.company-row {
  display: flex;
  border-bottom: 1px solid #d8d1c7;
  padding: 18px 0;
}

.company-row dt {
  width: 140px;
  font-weight: 700;
  color: #111;
}

.company-row dd {
  flex: 1;
  color: #444;
}

@media screen and (max-width: 767px) {
  .company-wrap {
    flex-direction: column;
    gap: 30px;
  }

  .company-text,
  .company-info {
    width: 100%;
  }

  .company-row {
    flex-direction: column;
    gap: 8px;
  }

  .company-row dt {
    width: 100%;
  }
}



.main-visual {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
  min-height: calc(100svh - 80px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* サービス内容 */

.sub-hero {
  margin-top: 80px;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sub-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.sub-hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.sub-hero-en {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  color: #d7b56d;
}

.sub-hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.4;
  font-weight: 700;
}

/* =========================
   サービス下層ページ 一覧
========================= */
.sv-page {
  padding: 80px 0 100px;
  background-color: #111;
  position: relative;
  overflow: hidden;
}

.sv-page::before {
  content: 'SERVICES';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'IM Fell English SC', serif;
  font-size: 180px;
  color: rgba(154, 125, 74, 0.05);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  z-index: 0;
}

.sv-page .container {
  position: relative;
  z-index: 1;
}

/* ヘッダー文字を白に */
.sv-page-ja {
  color: #fff !important;
}

.sv-page-lead {
  text-align: center;
  color: rgba(245, 241, 235, 1);
  font-size: 0.92rem;
  line-height: 2;
  margin-top: 24px;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", serif;
}

/* グリッド：フロントと同じfp-service-cardを流用 */
.sv-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 16px;
}

/* fp-service-card はフロントのCSSをそのまま流用 */
/* アンカーリンクなのでスクロール先にオフセット */
.sv-page-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: 0.3s;
}

.sv-page-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(185, 167, 139, 0.5);
  transform: translateY(-3px);
}

.sv-page-card .fp-service-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}

.sv-page-card .fp-service-icon svg {
  width: 100%;
  height: 100%;
  stroke: #b9a78b;
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sv-page-card .fp-service-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.6;
  font-family: "Noto Serif JP", serif;
}

.sv-page-card .fp-service-body {
  font-size: 0.88rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 14px;
}

.sv-page-card .fp-service-link {
  font-size: 0.8rem;
  color: #b9a78b;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(185, 167, 139, 0.4);
  padding-bottom: 2px;
  font-family: "Noto Serif JP", serif;
}

.sv-page-card:hover .fp-service-link {
  border-color: #b9a78b;
}

@media screen and (max-width: 767px) {
  .sv-page-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sv-page-card {
    gap: 18px;
    padding: 24px 20px;
  }
}


/* =========================
   サービス詳細（交互レイアウト）
========================= */
.sv-detail {
  padding: 100px 0;
  background-color: #f8f6f2;
  position: relative;
  overflow: hidden;
  /* アンカーリンクのオフセット */
  scroll-margin-top: 80px;
}

.sv-detail--dark {
  background-color: #1a1612;
}

.sv-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* 右左反転 */
.sv-detail-inner--rev {
  direction: rtl;
}

.sv-detail-inner--rev>* {
  direction: ltr;
}

/* 画像エリア */
.sv-detail-img {
  position: relative;
  overflow: hidden;
}

.sv-detail-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.sv-detail-img:hover img {
  transform: scale(1.03);
}

/* 画像なしのプレースホルダー */
.sv-detail-img--placeholder {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #2a2520, #1a1612);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sv-detail-img--placeholder span {
  font-family: 'IM Fell English SC', serif;
  font-size: 2rem;
  color: rgba(185, 167, 139, 0.4);
  text-align: center;
  line-height: 1.6;
}

/* テキストエリア */
.sv-detail-body {
  padding: 8px 0;
}

/* 英語サブタイトル */
.sv-detail-en {
  font-family: 'IM Fell English SC', serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  color: #b9a78b;
  display: block;
  margin-bottom: 12px;
}

/* 見出し */
.sv-detail-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: #111;
  line-height: 1.5;
  margin-bottom: 16px;
  font-family: "Noto Serif JP", serif;
}

.sv-detail--dark .sv-detail-title {
  color: #fdfaf6;
}

/* ゴールドライン */
.sv-detail-line {
  width: 40px;
  height: 1px;
  background: #b9a78b;
  margin-bottom: 24px;
}

/* 本文 */
.sv-detail-text {
  font-size: 0.92rem;
  line-height: 2.2;
  color: #444;
  margin-bottom: 28px;
  font-family: "Noto Serif JP", serif;
}

.sv-detail--dark .sv-detail-text {
  color: rgba(245, 241, 235, 0.65);
}

/* 特徴リスト */
.sv-detail-list {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sv-detail-list li {
  font-size: 0.88rem;
  color: #333;
  padding-left: 20px;
  position: relative;
  line-height: 1.7;
  font-family: "Noto Serif JP", serif;
}

.sv-detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 1px;
  background: #b9a78b;
}

.sv-detail--dark .sv-detail-list li {
  color: rgba(245, 241, 235, 0.7);
}

/* CTAボタン */
.sv-detail-btn {
  display: inline-block;
  background: #8b2e1a;
  color: #fdfaf6;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.18em;
  padding: 14px 36px;
  border: 1px solid rgba(139, 46, 26, 0.5);
  transition: background 0.3s, box-shadow 0.3s;
  font-family: "Noto Serif JP", serif;
  box-shadow: 0 4px 16px rgba(139, 46, 26, 0.25);
}

.sv-detail-btn:hover {
  background: #a33520;
  box-shadow: 0 6px 22px rgba(139, 46, 26, 0.4);
}

/* タブレット */
@media screen and (max-width: 991px) {
  .sv-detail-inner {
    gap: 48px;
  }
}

/* スマホ */
@media screen and (max-width: 767px) {
  .sv-detail {
    padding: 70px 0;
  }

  .sv-detail-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* スマホでは反転なし・常に画像が上 */
  .sv-detail-inner--rev {
    direction: ltr;
  }

  .sv-detail-title {
    font-size: 1.4rem;
  }

  .sv-detail-btn {
    width: 100%;
    text-align: center;
    display: block;
  }
}


/* =========================
   制作実績ページ
========================= */

/* フィルターセクション */
.wk-filter {
  padding: 80px 0 60px;
  background-color: #111;
  position: relative;
  overflow: hidden;
}

.wk-filter::before {
  content: 'WORKS';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'IM Fell English SC', serif;
  font-size: 180px;
  color: rgba(154, 125, 74, 0.05);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  z-index: 0;
}

.wk-filter .container {
  position: relative;
  z-index: 1;
}

.wk-filter-ja {
  color: #fff !important;
}

.wk-filter-lead {
  text-align: center;
  color: rgba(245, 241, 235, 0.45);
  font-size: 0.88rem;
  line-height: 2;
  margin-top: 20px;
  letter-spacing: 0.12em;
  font-family: "Noto Serif JP", serif;
}

/* カテゴリタブ */
.wk-filter-tabs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.wk-filter-tab {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  padding: 8px 22px;
  text-decoration: none;
  color: rgba(245, 241, 235, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: "Noto Serif JP", serif;
  transition: 0.25s;
}

.wk-filter-tab:hover {
  color: #b9a78b;
  border-color: rgba(185, 167, 139, 0.4);
}

.wk-filter-tab.is-active {
  color: #fdfaf6;
  border-color: #b9a78b;
  background: rgba(185, 167, 139, 0.1);
}


/* グリッドセクション */
.wk-grid-section {
  padding: 0 0 100px;
  background-color: #111;
}

/* グリッド本体 */
.wk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

/* 各アイテム */
.wk-item {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  aspect-ratio: 4 / 3;
  background: #1a1612;
}

/* サムネイル画像 */
.wk-item-img {
  width: 100%;
  height: 100%;
}

.wk-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.wk-item:hover .wk-item-img img {
  transform: scale(1.06);
}

/* 画像なし */
.wk-item-noimg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2a2520, #1a1612);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wk-item-noimg span {
  font-family: "Noto Serif JP", serif;
  font-size: 0.9rem;
  color: rgba(185, 167, 139, 0.5);
  text-align: center;
  padding: 16px;
}

/* ホバーオーバーレイ */
.wk-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 10, 6, 0.75);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wk-item:hover .wk-item-overlay {
  opacity: 1;
}

.wk-item-cat {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: #b9a78b;
  display: block;
  margin-bottom: 8px;
  font-family: 'IM Fell English SC', serif;
}

.wk-item-title {
  font-size: 1rem;
  color: #fdfaf6;
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
  line-height: 1.5;
  font-family: "Noto Serif JP", serif;
}

.wk-item-arrow {
  font-size: 11px;
  color: rgba(245, 241, 235, 0.6);
  letter-spacing: 0.1em;
  border-bottom: 1px solid rgba(245, 241, 235, 0.3);
  padding-bottom: 2px;
  font-family: "Noto Serif JP", serif;
}

/* 空の場合 */
.wk-empty {
  text-align: center;
  color: rgba(245, 241, 235, 0.4);
  padding: 80px 0;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.12em;
}

/* ページネーション（新デザイン） */
.wk-pagination {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}

.wk-pagination .nav-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.wk-pagination a,
.wk-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: rgba(245, 241, 235, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "Noto Serif JP", serif;
  transition: 0.25s;
  box-sizing: border-box;
}

.wk-pagination a:hover {
  color: #b9a78b;
  border-color: rgba(185, 167, 139, 0.4);
}

.wk-pagination .current {
  color: #fdfaf6;
  border-color: #b9a78b;
  background: rgba(185, 167, 139, 0.12);
}

.wk-pagination .dots {
  border: none;
  color: rgba(245, 241, 235, 0.25);
}

/* タブレット */
@media screen and (max-width: 991px) {
  .wk-filter::before {
    font-size: 120px;
  }

  .wk-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* スマホ */
@media screen and (max-width: 767px) {
  .wk-filter {
    padding: 60px 0 48px;
  }

  .wk-filter::before {
    font-size: 72px;
    right: 0;
    top: 16px;
    transform: none;
  }

  .wk-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
  }

  .wk-item-overlay {
    opacity: 1;
    background: rgba(15, 10, 6, 0.5);
    padding: 14px;
  }

  .wk-item-cat {
    font-size: 9px;
  }

  .wk-item-title {
    font-size: 0.82rem;
    margin-bottom: 6px;
  }

  .wk-item-arrow {
    font-size: 10px;
  }

  .wk-grid-section {
    padding: 0 0 70px;
  }

  .wk-pagination a,
  .wk-pagination span {
    min-width: 38px;
    height: 38px;
    font-size: 11px;
  }
}



/* =========================
   下層ページ ご依頼の流れ
   背景写真あり
========================= */

.flow-page {
  position: relative;
  padding: 80px 0 100px;
  background: url("img/goirai.jpg") center center / cover no-repeat;
  overflow: hidden;
}

.flow-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(248, 246, 242, 0.92);
  z-index: 0;
}

.flow-page .container {
  position: relative;
  z-index: 1;
}

.flow-page-head {
  text-align: center;
  margin-bottom: 60px;
}

.flow-page-head h2 {
  font-size: 2.3rem;
  line-height: 1.4;
  color: #111;
  margin-bottom: 18px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}

.flow-page-head p {
  max-width: 760px;
  margin: 0 auto;
  color: #111;
  line-height: 2;
  font-size: 2rem;
}

/* 説明文 */
.flow-page-lead {
  max-width: 760px;
  margin: 0 auto;
  color: #555;
  line-height: 2;
  font-size: 1.1rem;
  text-align: center;
}

/* 滑らか表示アニメーション */

.smooth {
  clip-path: inset(0 100% 0 0);
  display: block;
  transition: 2.5s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}

.smooth.is-animated {
  clip-path: inset(0);
}

@media screen and (max-width: 767px) {
  .flow-page-lead {
    font-size: 1rem;
  }
}

.flow-page-list {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.flow-page-list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: #d8d1c7;

}

.flow-page-item {
  position: relative;
  padding: 40px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e5dfd6;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  transition: 0.3s;
  text-align: center;
}

.flow-page-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.flow-page-item .fnum {
  position: relative;
  display: inline-block;
  padding: 0 55px;
}

.flow-page-item .fnum:before,
.fnum:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 1px;
  background-color: black;

}

.flow-page-item .fnum:before {
  left: 0;
}

.flow-page-item .fnum:after {
  right: 0;
}



.flow-page-item h3 {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: #111;
  line-height: 1.6;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}

.flow-page-item p {
  font-size: 0.95rem;
  line-height: 2;
  color: #1d1d1d;
}

.flow-page-contact {
  margin-top: 50px;
  padding: 40px 30px;
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e5dfd6;
}

.flow-page-contact p {
  margin-bottom: 24px;
  color: #1d1d1d;
  line-height: 1.8;
}

@media screen and (max-width: 991px) {
  .flow-page {
    padding: 70px 0 90px;
  }

  .flow-page-item {
    padding: 24px 24px 24px 90px;
  }

  .flow-page-number {
    width: 60px;
    height: 60px;
    font-size: 1rem;
  }

  .flow-page-item h3 {
    font-size: 1.2rem;
  }
}

.flow-page-contact-bt {
  display: block;
  margin-top: 50px;
  padding: 16px 28px;
  font-size: 1.05rem;
  min-width: 300px;
  text-align: center;

}

@media screen and (max-width: 767px) {
  .flow-page {
    padding: 50px 0 70px;
  }

  .flow-page-head {
    margin-bottom: 40px;
  }

  .flow-page-head h2 {
    font-size: 2rem;
  }

  .flow-page-list::before {
    left: 26px;
  }

  .flow-page-item {
    padding: 22px 18px 22px 72px;
  }

  .flow-page-number {
    width: 52px;
    height: 52px;
    top: 20px;
    font-size: 0.95rem;
  }

  .flow-page-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .flow-page-item p {
    font-size: 0.92rem;
    line-height: 1.8;
  }

  .flow-page-contact {
    padding: 30px 20px;
  }
}







/* 会社案内 */

.sub-hero {
  margin-top: 80px;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sub-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.sub-hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.sub-hero-en {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  color: #d7b56d;
}

.sub-hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.4;
  font-weight: 700;
}

.container-map {
  margin: 80px;
}


/* よくある質問 */

.faq-title {
  margin-top: 0;
}


/* お問い合わせ */

.sub-hero {
  margin-top: 80px;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sub-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.sub-hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.sub-hero-en {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  color: #d7b56d;
}

.sub-hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.4;
  font-weight: 400;
}


/* =========================
   Contact Form 7
========================= */

.contact-form-area {
  padding: 100px 0 100px;
  background-color: #fff;
}

.contact-form-area .container {
  max-width: 760px;
  margin: 0 auto;

}

/* フォーム全体 */
.wpcf7 form {
  display: flex;
  flex-direction: column;
  gap: 32px;

}

/* ラベル */
.wpcf7 form label {
  display: block;
  font-size: 0.95rem;
  color: #111;
  line-height: 1.8;
  font-weight: 500;
}

/* 必須・任意 */
.required {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.8rem;
  color: #fff;
  background: #5a0d18;
  padding: 2px 8px;
  border-radius: 4px;
}

.optional {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.8rem;
  color: #666;
  background: #f3f0eb;
  padding: 2px 8px;
  border-radius: 4px;
}

/* 入力欄 */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  margin-top: 10px;
  padding: 14px 16px;
  border: 1px solid #d8d1c7;
  background-color: #fff;
  color: #111;
  font-size: 1rem;
  line-height: 1.6;
  border-radius: 6px;
  box-sizing: border-box;
  transition: 0.3s;
  font-family: "Noto Sans JP", sans-serif;
}

/* フォーカス */
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  outline: none;
  border-color: #5a0d18;
  box-shadow: 0 0 0 3px rgba(90, 13, 24, 0.08);
}

/* テキストエリア */
.wpcf7 textarea {
  min-height: 200px;
  resize: vertical;
}

/* ラジオボタン */
.wpcf7 .wpcf7-form-control-wrap .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 12px;
}

.wpcf7 .wpcf7-list-item {
  margin: 0;
}

.wpcf7 .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  cursor: pointer;
}

/* チェックボックス */
.privacy-check {
  font-size: 0.95rem;
  line-height: 1.8;
  display: flex;
  align-items: center;
}

.privacy-check .wpcf7-list-item {
  margin: 0;
}

.privacy-check label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  cursor: pointer;
}

.privacy-check-area {
  text-align: center;
}

/* 送信ボタン */
.wpcf7 input[type="submit"] {
  display: block;
  min-width: 220px;
  margin: 20px auto 0;
  background: linear-gradient(135deg, #000000 0%, #47000a 45%, #000000 100%);
  color: #ffffff;
  border: 1px solid #1a1907;
  border-radius: 6px;
  padding: 14px 24px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  text-align: center;
}


.wpcf7 input[type="submit"]:hover {
  background-color: #faf8f4;
  color: #5a0d18;
  border-color: #5a0d18;
}

.submit-area {
  text-align: center;
}


/* エラーメッセージ */
.wpcf7-not-valid-tip {
  font-size: 0.85rem;
  color: #b00020;
  margin-top: 6px;
}

.wpcf7 form .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 0.95rem;
}

/* スマホ */
@media screen and (max-width: 767px) {
  .contact-form-area {
    padding: 60px 0 80px;
  }

  .wpcf7 input[type="text"],
  .wpcf7 input[type="email"],
  .wpcf7 input[type="tel"],
  .wpcf7 textarea,
  .wpcf7 select {
    padding: 12px 14px;
    font-size: 0.95rem;
  }

  .wpcf7 .wpcf7-form-control-wrap .wpcf7-radio {
    flex-direction: column;
    gap: 10px;
  }

  .wpcf7 input[type="submit"] {
    width: 100%;
    min-width: auto;
  }
}

.wsc {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 80px 0 100px;
}

.wsc-ws {
  width: calc(25% - 22.5px);
  box-sizing: border-box;
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #e5dfd6;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.wsc-ws:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}

.wsc-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.wsc-ct {
  padding: 20px 20px 12px;
}

.wsc-ct p {
  font-size: 0.85rem;
  color: #5a0d18;
  margin-bottom: 10px;
  line-height: 1.6;
}

.wsc-ct h3 {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #111;
  font-weight: 500;
}

.wsc-sio {
  padding: 0 20px 20px;
}

.wsc-sio p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.8;
}

/* =========================
   タブレット
========================= */
@media screen and (max-width: 991px) {
  .wsc {
    gap: 24px;
    padding: 70px 0 90px;
  }

  .wsc-ws {
    width: calc(50% - 12px);
  }

  .wsc-ct {
    padding: 18px 18px 10px;
  }

  .wsc-sio {
    padding: 0 18px 18px;
  }
}

/* =========================
   スマホ
========================= */
@media screen and (max-width: 767px) {
  .wsc {
    flex-direction: column;
    gap: 20px;
    padding: 50px 0 70px;
  }

  .wsc-ws {
    width: 100%;
  }

  .wsc-img img {
    aspect-ratio: 16 / 10;
  }

  .wsc-ct {
    padding: 16px 16px 8px;
  }

  .wsc-ct p {
    font-size: 0.8rem;
  }

  .wsc-ct h3 {
    font-size: 1.05rem;
    line-height: 1.5;
  }

  .wsc-sio {
    padding: 0 16px 16px;
  }

  .wsc-sio p {
    font-size: 0.88rem;
    line-height: 1.7;
  }

  .navigation.pagination {
    margin-bottom: 70px;
  }

  .navigation.pagination a,
  .navigation.pagination span {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
}

/* =========================
   カテゴリ絞り込み
========================= */
.filter-by-category {
  padding: 60px 0 20px;
  text-align: center;
}

.filter-by-category h2 {
  font-size: 1.6rem;
  color: #111;
  margin-bottom: 24px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}

.filter-by-category ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.filter-by-category li {
  margin: 0;
}

.filter-by-category a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #000000 0%, #47000a 45%, #000000 100%);
  border: 1px solid #1a1907;
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 0.95rem;
  line-height: 1.4;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.filter-by-category a:hover {
  background-color: #faf8f4;
  color: #5a0d18;
  border-color: #5a0d18;
}

/* =========================
   タブレット
========================= */
@media screen and (max-width: 991px) {
  .filter-by-category {
    padding: 50px 0 20px;
  }

  .filter-by-category h2 {
    font-size: 1.4rem;
  }

  .filter-by-category ul {
    gap: 12px;
  }
}

/* =========================
   スマホ
========================= */
@media screen and (max-width: 767px) {
  .filter-by-category {
    padding: 40px 0 10px;
  }

  .filter-by-category h2 {
    font-size: 1.25rem;
    margin-bottom: 18px;
  }

  .filter-by-category ul {
    gap: 10px;
  }

  .filter-by-category a {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
}

/* =========================
   ページネーション
========================= */
.navigation.pagination {
  margin: 60px auto 100px;
  text-align: center;
}

.navigation.pagination .nav-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.navigation.pagination a,
.navigation.pagination span {
  display: inline-block;
  min-width: 44px;
  padding: 10px 14px;
  text-decoration: none;
  color: #111;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  line-height: 1.4;
  transition: 0.3s;
  box-sizing: border-box;
}

.navigation.pagination a:hover {
  background-color: #faf8f4;
  color: #5a0d18;
  border-color: #5a0d18;
}

.navigation.pagination .current {
  background: linear-gradient(135deg, #000000 0%, #47000a 45%, #000000 100%);
  color: #fff;
  border-color: #1a1907;
}

.navigation.pagination .dots {
  background: transparent;
  border: none;
  color: #777;
  min-width: auto;
  padding: 0 4px;
}

/* 前へ・次へ */
.navigation.pagination .prev,
.navigation.pagination .next {
  padding: 10px 16px;
}

/* スマホ */
@media screen and (max-width: 767px) {
  .navigation.pagination {
    margin: 40px auto 70px;
  }

  .navigation.pagination .nav-links {
    gap: 8px;
  }

  .navigation.pagination a,
  .navigation.pagination span {
    min-width: 40px;
    padding: 8px 12px;
    font-size: 0.9rem;
  }

  .navigation.pagination .prev,
  .navigation.pagination .next {
    padding: 8px 12px;
  }
}

/* =========================
   共通セクションヘッダー（fp系）
========================= */
.fp-section-header {
  text-align: center;
  margin: 56px 0;
}

.fp-section-en {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: #b9a78b;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: "Noto Serif JP", serif;
}

.fp-section-ja {
  margin-bottom: 16px;
  color: #111;
}

.fp-section-line {
  width: 40px;
  height: 1px;
  background: #b9a78b;
  margin: 0 auto;
}


/* =========================
   選ばれる理由
========================= */
.fp-reasons {
  padding: 100px 0;
  background-color: #f8f6f2;
  position: relative;
  overflow: hidden;
}

.fp-reasons::before {
  content: 'REASON';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'IM Fell English SC', serif;
  font-size: 180px;
  color: rgba(154, 125, 74, 0.06);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  z-index: 0;
}

.fp-reasons .container {
  position: relative;
  z-index: 1;
}

.fp-reasons-grid {
  display: flex;
  gap: 28px;
}

.fp-reason-card {
  flex: 1;
  padding: 40px 32px;
  background: #fff;
  border: 1px solid #e5dfd6;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.fp-reason-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.fp-reason-num {
  font-family: 'IM Fell English SC', serif;
  font-size: 2.8rem;
  color: #b9a78b;
  line-height: 1;
  margin-bottom: 20px;
}

.fp-reason-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 16px;
  line-height: 1.6;
  font-family: "Noto Serif JP", serif;
}

.fp-reason-body {
  font-size: 0.92rem;
  line-height: 2;
  color: #000000;
}

@media screen and (max-width: 991px) {
  .fp-reasons::before {
    font-size: 120px;
  }
}

@media screen and (max-width: 767px) {
  .fp-reasons {
    padding: 70px 0;
  }

  .fp-reasons::before {
    font-size: 72px;
    right: 0;
    top: 16px;
    transform: none;
  }

  .fp-reasons-grid {
    flex-direction: column;
    gap: 20px;
  }

  .fp-reason-card {
    padding: 28px 24px;
  }
}


/* =========================
   サービス内容
========================= */
.fp-services {
  padding: 100px 0;
  background-color: #111;
  position: relative;
  overflow: hidden;
}

.fp-services::before {
  content: 'SERVICES';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'IM Fell English SC', serif;
  font-size: 180px;
  color: rgba(154, 125, 74, 0.06);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  z-index: 0;
}

.fp-services .container {
  position: relative;
  z-index: 1;
}

/* サービスセクションはヘッダー文字を白に */
.fp-services .fp-section-ja {
  color: #fff;
}

.fp-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.fp-service-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: 0.3s;
}

.fp-service-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(185, 167, 139, 0.5);
  transform: translateY(-3px);
}

.fp-service-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fp-service-icon svg {
  width: 100%;
  height: 100%;
  stroke: #b9a78b;
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fp-service-content {
  flex: 1;
}

.fp-service-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.6;
  font-family: "Noto Serif JP", serif;
}

.fp-service-body {
  font-size: 0.88rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 14px;
}

.fp-service-link {
  font-size: 0.8rem;
  color: #b9a78b;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(185, 167, 139, 0.4);
  padding-bottom: 2px;
  font-family: "Noto Serif JP", serif;
}

.fp-service-card:hover .fp-service-link {
  border-color: #b9a78b;
}

.fp-services-more {
  text-align: center;
  margin-top: 48px;
}

.fp-services-btn {
  display: inline-block;
  background: transparent;
  color: #fff;
  text-decoration: none;
  padding: 12px 30px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 6px;
  transition: 0.3s;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.06em;
}

.fp-services-btn:hover {
  background-color: #fff;
  color: #111;
  border-color: #fff;
}

@media screen and (max-width: 991px) {
  .fp-services::before {
    font-size: 120px;
  }
}

@media screen and (max-width: 767px) {
  .fp-services {
    padding: 70px 0;
  }

  .fp-services::before {
    font-size: 72px;
    right: 0;
    top: 16px;
    transform: none;
  }

  .fp-services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fp-service-card {
    padding: 24px 20px;
    gap: 18px;
  }

  .fp-service-icon {
    width: 40px;
    height: 40px;
  }
}

/*メインビジュアル*/

/* =========================
   メインビジュアル（BRANDデザイン）
========================= */

/* IM Fell English SC をheader.phpに追加していない場合は追加してください */
/* <link href="https://fonts.googleapis.com/css2?family=IM+Fell+English+SC&display=swap" rel="stylesheet"> */

.mv-brand {
  background-color: #1a1612;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
  /* ヘッダー分オフセット */
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
}

/* 横罫線テクスチャ */
.mv-brand::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg,
      transparent,
      transparent 39px,
      rgba(154, 125, 74, 0.07) 39px,
      rgba(154, 125, 74, 0.07) 40px);
  pointer-events: none;
  z-index: 0;
}

/* 背景画像を使う場合（img/kuro.jpg を流用） */
.mv-brand::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("img/kuro.jpg") center center / cover no-repeat;
  opacity: 0.18;
  z-index: 0;
}

.mv-brand-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 24px;
}

/* 背景の大きな "39" */
.mv-brand-year {
  font-family: 'IM Fell English SC', serif;
  font-size: 260px;
  line-height: 1;
  color: rgba(154, 125, 74, 0.08);
  position: absolute;
  right: 300px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  letter-spacing: -0.02em;
  user-select: none;
  z-index: 0;
}

/* タグライン */
.mv-brand-tag {
  font-size: 11px;
  letter-spacing: 0.35em;
  color: #9a7d4a;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Noto Serif JP", serif;
}

.mv-brand-tag::before {
  content: '';
  width: 32px;
  height: 1px;
  background: #9a7d4a;
  flex-shrink: 0;
}

/* メインキャッチ */
.mv-brand-headline {
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.7;
  color: #fdfaf6;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  font-family: "Noto Serif JP", serif;
}

.mv-brand-headline em {
  color: #c4a96b;
  font-style: normal;
}

/* リード文 */
.mv-brand-body {
  font-size: 14px;
  line-height: 2.3;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.1em;
  margin-bottom: 40px;
  font-family: "Noto Serif JP", serif;
}

/* CTAボタン */
.mv-brand-btn {
  display: inline-block;
  background: #8b2e1a;
  color: #fdfaf6;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.2em;
  padding: 16px 40px;
  border: 1px solid rgba(139, 46, 26, 0.5);
  transition: background 0.3s;
  font-family: "Noto Serif JP", serif;
}

.mv-brand-btn:hover {
  background: #a33520;
}

/* 縦線区切り */
.mv-brand-divider {
  width: 1px;
  background: rgba(154, 125, 74, 0.3);
  height: 180px;
  flex-shrink: 0;
  align-self: center;
}

/* 数字スタッツ */
.mv-brand-stats {
  display: flex;
  flex-direction: column;
  gap: 36px;
  flex-shrink: 0;
}



/* タブレット */
@media screen and (max-width: 991px) {
  .mv-brand-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px;
  }

  .mv-brand-divider,
  .mv-brand-stats {
    display: none;
  }

  .mv-brand-year {
    font-size: 160px;
    right: 0;
    opacity: 0.6;
  }

  .mv-brand {
    min-height: auto;
    padding: 20px 0;
  }
}

/* スマホ */
@media screen and (max-width: 767px) {
  .mv-brand-year {
    font-size: 100px;
    top: auto;
    bottom: 20px;
    transform: none;
  }

  .mv-brand-headline {
    font-size: 24px;
  }

  .mv-brand-body {
    font-size: 13px;
    line-height: 2;
  }

  .mv-brand-btn {
    padding: 14px 28px;
    font-size: 12px;
    width: 100%;
    text-align: center;
    display: block;
  }
}



/* =========================
   お客様の声
========================= */
.fp-voices {
  padding: 20px 0;
  background-color: #f8f6f2;
  position: relative;
  overflow: hidden;
}

.fp-voices::before {
  content: 'VOICES';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'IM Fell English SC', serif;
  font-size: 180px;
  color: rgba(154, 125, 74, 0.06);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  z-index: 0;
}

.fp-voices .container {
  position: relative;
  z-index: 1;
}

.fp-voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.fp-voice-card {
  background: #fff;
  border-left: 3px solid #b9a78b;
  padding: 36px 32px;
  position: relative;
  transition: 0.3s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.fp-voice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.fp-voice-quote {
  font-size: 0.92rem;
  line-height: 2.1;
  color: #000000;
  margin-bottom: 24px;
  position: relative;
  padding-top: 24px;
  font-family: "Noto Serif JP", serif;
}

/* 開き括弧装飾 */
.fp-voice-quote::before {
  content: '\201C';
  font-family: 'IM Fell English SC', serif;
  font-size: 72px;
  color: rgba(154, 125, 74, 0.2);
  line-height: 1;
  position: absolute;
  top: -12px;
  left: -6px;
}

.fp-voice-from {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: #423b31;
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 991px) {
  .fp-voices-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .fp-voices::before {
    font-size: 120px;
  }
}

@media screen and (max-width: 767px) {
  .fp-voices {
    padding: 20px 0;
  }

  .fp-voices::before {
    font-size: 72px;
    right: 0;
    top: 16px;
    transform: none;
  }

  .fp-voices-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fp-voice-card {
    padding: 28px 24px;
  }
}

/* =========================
   お問い合わせ CTA
========================= */
.fp-cta {
  padding: 112px 0;
  background-color: #1a1612;
  position: relative;
  overflow: hidden;
}

/* 背景グラデーション光彩 */
.fp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%,
      rgba(154, 125, 74, 0.1) 0%,
      transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* 背景装飾文字 */
.fp-cta::after {
  content: 'CONTACT';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'IM Fell English SC', serif;
  font-size: 160px;
  color: rgba(154, 125, 74, 0.05);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  z-index: 0;
}

.fp-cta .container {
  position: relative;
  z-index: 1;
}

.fp-cta-inner {
  text-align: center;
}

/* タグ */
.fp-cta-tag {
  font-family: 'IM Fell English SC', serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: #b9a78b;
  display: block;
  margin-bottom: 20px;
}

/* 見出し */
.fp-cta-headline {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600;
  color: #fdfaf6;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-bottom: 14px;
  font-family: "Noto Serif JP", serif;
}

/* サブコピー */
.fp-cta-sub {
  font-size: 13px;
  color: rgba(245, 241, 235, 0.45);
  letter-spacing: 0.18em;
  margin-bottom: 52px;
  font-family: "Noto Serif JP", serif;
}

/* ボタン群 */
.fp-cta-buttons {
  display: flex;
  gap: 48px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* フォームボタン */
.fp-cta-btn-primary {
  display: inline-block;
  background: #8b2e1a;
  color: #fdfaf6;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.18em;
  padding: 18px 52px;
  border: 1px solid rgba(139, 46, 26, 0.5);
  transition: background 0.3s, box-shadow 0.3s;
  font-family: "Noto Serif JP", serif;
  box-shadow: 0 4px 20px rgba(139, 46, 26, 0.3);
}

.fp-cta-btn-primary:hover {
  background: #a33520;
  box-shadow: 0 8px 28px rgba(139, 46, 26, 0.45);
}

/* 電話ブロック */
.fp-cta-tel-block {
  text-align: left;
}

.fp-cta-tel-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: rgba(245, 241, 235, 0.4);
  display: block;
  margin-bottom: 6px;
  font-family: "Noto Serif JP", serif;
}

.fp-cta-tel-num {
  font-family: 'IM Fell English SC', serif;
  font-size: 32px;
  color: #c4a96b;
  letter-spacing: 0.05em;
  display: block;
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.2;
}

.fp-cta-tel-num:hover {
  color: #d4bc80;
}

.fp-cta-tel-hours {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(245, 241, 235, 0.3);
  display: block;
  margin-top: 6px;
  font-family: "Noto Serif JP", serif;
}

/* タブレット */
@media screen and (max-width: 991px) {
  .fp-cta::after {
    font-size: 110px;
  }

  .fp-cta-buttons {
    gap: 32px;
  }
}

/* スマホ */
@media screen and (max-width: 767px) {
  .fp-cta {
    padding: 80px 0;
  }

  .fp-cta::after {
    font-size: 64px;
    right: 0;
    top: 16px;
    transform: none;
  }

  .fp-cta-buttons {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }

  .fp-cta-btn-primary {
    width: 100%;
    text-align: center;
    padding: 16px 32px;
  }

  .fp-cta-tel-block {
    text-align: center;
  }

  .fp-cta-tel-num {
    font-size: 26px;
  }
}

/* =========================
   お問い合わせページ
========================= */

/* ① 導入セクション */
.ct-intro {
  padding: 100px 0;
  background-color: #1a1612;
  position: relative;
  overflow: hidden;
}

.ct-intro::before {
  content: 'CONTACT';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'IM Fell English SC', serif;
  font-size: 160px;
  color: rgba(154, 125, 74, 0.05);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  z-index: 0;
}

.ct-intro-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.ct-en {
  font-family: 'IM Fell English SC', serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  color: #b9a78b;
  display: block;
  margin-bottom: 14px;
}

.ct-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: #fdfaf6;
  font-family: "Noto Serif JP", serif;
  line-height: 1.4;
  margin-bottom: 16px;
}

.ct-line {
  width: 40px;
  height: 1px;
  background: #b9a78b;
  margin-bottom: 28px;
}

.ct-intro-lead {
  font-size: 0.95rem;
  line-height: 2.3;
  color: rgba(245, 241, 235, 0.6);
  font-family: "Noto Serif JP", serif;
}

/* 連絡先カード群 */
.ct-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ct-info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s;
}

.ct-info-card:hover {
  border-color: rgba(185, 167, 139, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.ct-info-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  margin-top: 2px;
}

.ct-info-icon svg {
  width: 100%;
  height: 100%;
  stroke: #b9a78b;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ct-info-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ct-info-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: #b9a78b;
  font-family: 'IM Fell English SC', serif;
}

.ct-info-tel {
  font-family: 'IM Fell English SC', serif;
  font-size: 28px;
  color: #c4a96b;
  text-decoration: none;
  letter-spacing: 0.05em;
  line-height: 1.2;
  transition: color 0.2s;
}

.ct-info-tel:hover {
  color: #d4bc80;
}

.ct-info-hours {
  font-size: 11px;
  color: rgba(245, 241, 235, 0.3);
  letter-spacing: 0.15em;
  font-family: "Noto Serif JP", serif;
}

.ct-info-desc {
  font-size: 0.85rem;
  color: rgba(245, 241, 235, 0.5);
  line-height: 1.8;
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 991px) {
  .ct-intro-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ct-intro::before {
    font-size: 110px;
  }
}

@media screen and (max-width: 767px) {
  .ct-intro {
    padding: 70px 0;
  }

  .ct-intro::before {
    font-size: 64px;
    right: 0;
    top: 16px;
    transform: none;
  }
}


/* ② フォームセクション */
.ct-form-section {
  padding: 100px 0;
  background-color: #f8f6f2;
  position: relative;
  overflow: hidden;
}

.ct-form-section::before {
  content: 'FORM';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'IM Fell English SC', serif;
  font-size: 200px;
  color: rgba(154, 125, 74, 0.04);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  z-index: 0;
}

.ct-form-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 72px;
  align-items: flex-start;
}

/* 左：注意事項 */
.ct-form-note {
  position: sticky;
  top: 100px;
}

.ct-form-note-en {
  font-family: 'IM Fell English SC', serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: #b9a78b;
  display: block;
  margin-bottom: 10px;
}

.ct-form-note-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 20px;
  line-height: 1.6;
}

.ct-form-note-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ct-form-note-list li {
  font-size: 0.82rem;
  line-height: 1.8;
  color: #000000;
  padding-left: 16px;
  position: relative;
  font-family: "Noto Serif JP", serif;
}

.ct-form-note-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 1px;
  background: #b9a78b;
}

/* 電話ブロック */
.ct-form-tel-block {
  padding: 20px;
  background: #fff;
  border: 1px solid #e5dfd6;
  border-left: 3px solid #b9a78b;
}

.ct-form-tel-label {
  font-size: 13px;
  letter-spacing: 0.2em;
  color: #706656;
  display: block;
  margin-bottom: 8px;
  font-family: 'IM Fell English SC', serif;
}

.ct-form-tel-num {
  font-family: 'IM Fell English SC', serif;
  font-size: 24px;
  color: #000000;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.ct-form-tel-num:hover {
  color: #8b2e1a;
}

.ct-form-tel-hours {
  font-size: 13px;
  color: #000000;
  letter-spacing: 0.15em;
  display: block;
  font-family: "Noto Serif JP", serif;
}

/* 右：CF7フォーム上書き */
.ct-form-body {
  background: #fff;
  border: 1px solid #e5dfd6;
  padding: 48px 40px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

/* ラベル */
.ct-form-body .wpcf7 form label {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: #333;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}

/* 入力欄 */
.ct-form-body .wpcf7 input[type="text"],
.ct-form-body .wpcf7 input[type="email"],
.ct-form-body .wpcf7 input[type="tel"],
.ct-form-body .wpcf7 textarea,
.ct-form-body .wpcf7 select {
  background: #fdfaf6;
  border: 1px solid #d8d1c7;
  border-radius: 0;
  font-family: "Noto Serif JP", serif;
  padding: 14px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ct-form-body .wpcf7 input[type="text"]:focus,
.ct-form-body .wpcf7 input[type="email"]:focus,
.ct-form-body .wpcf7 input[type="tel"]:focus,
.ct-form-body .wpcf7 textarea:focus {
  border-color: #b9a78b;
  box-shadow: 0 0 0 3px rgba(185, 167, 139, 0.12);
  outline: none;
}

/* 送信ボタン上書き */
.ct-form-body .wpcf7 input[type="submit"] {
  background: #8b2e1a;
  border: 1px solid rgba(139, 46, 26, 0.4);
  border-radius: 0;
  letter-spacing: 0.18em;
  font-family: "Noto Serif JP", serif;
  font-size: 13px;
  padding: 16px 48px;
  box-shadow: 0 4px 16px rgba(139, 46, 26, 0.25);
  transition: background 0.3s, box-shadow 0.3s;
}

.ct-form-body .wpcf7 input[type="submit"]:hover {
  background: #a33520;
  color: #fff;
  border-color: rgba(139, 46, 26, 0.4);
  box-shadow: 0 6px 22px rgba(139, 46, 26, 0.35);
}

/* 必須バッジ */
.ct-form-body .required {
  background: #8b2e1a;
  border-radius: 0;
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 2px 7px;
}

/* タブレット */
@media screen and (max-width: 991px) {
  .ct-form-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ct-form-note {
    position: static;
  }

  .ct-form-section::before {
    font-size: 120px;
  }
}

/* スマホ */
@media screen and (max-width: 767px) {
  .ct-form-section {
    padding: 70px 0;
  }

  .ct-form-section::before {
    font-size: 72px;
    right: 0;
    top: 16px;
    transform: none;
  }

  .ct-form-body {
    padding: 32px 20px;
  }

  .ct-form-body .wpcf7 input[type="submit"] {
    width: 100%;
    padding: 16px;
  }
}

/* =========================
   フッター（マップ付き）
========================= */
.fp-footer {
  background-color: #0f0d0b;
  border-top: 1px solid rgba(154, 125, 74, 0.2);
}

/* 上段 */
.fp-footer-top {
  padding: 0;
}

.fp-footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
}

/* 左カラム */
.fp-footer-left {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ロゴ */
.fp-footer-logo {
  font-family: 'IM Fell English SC', serif;
  font-size: 26px;
  color: #b9a78b;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 4px;
}

.fp-footer-logo-sub {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: rgba(185, 167, 139, 0.5);
  margin-bottom: 20px;
  font-family: "Noto Serif JP", serif;
}

.fp-footer-address {
  font-size: 0.8rem;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Noto Serif JP", serif;
}

.fp-footer-address a {
  color: rgba(245, 241, 235, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.fp-footer-address a:hover {
  color: #b9a78b;
}

/* 横線区切り */
.fp-footer-divider {
  height: 1px;
  background: rgba(154, 125, 74, 0.2);
  width: 100%;
}

/* ナビ */
.fp-footer-nav-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
  margin: 0;
  padding: 0;
}

.fp-footer-nav-list li a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: rgba(245, 241, 235, 0.8);
  text-decoration: none;
  font-family: "Noto Serif JP", serif;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fp-footer-nav-list li a::before {
  content: '';
  width: 14px;
  height: 1px;
  background: rgba(154, 125, 74, 0.4);
  flex-shrink: 0;
  transition: width 0.2s, background 0.2s;
}

.fp-footer-nav-list li a:hover {
  color: #b9a78b;
}

.fp-footer-nav-list li a:hover::before {
  width: 22px;
  background: #b9a78b;
}

/* 右カラム：マップ */
.fp-footer-map {
  position: relative;
  min-height: 260px;
  filter: grayscale(30%) brightness(0.85);
  transition: filter 0.3s;
  margin: 56px 48px;
}

.fp-footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 260px;
}

.fp-footer-map:hover {
  filter: grayscale(0%) brightness(1);
}

.fp-footer-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* 下段 */
.fp-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 24px;
}

.fp-footer-copy {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: rgba(245, 241, 235, 0.2);
  font-family: "Noto Serif JP", serif;
}

/* タブレット */
@media screen and (max-width: 991px) {
  .fp-footer-inner {
    grid-template-columns: 1fr;
  }

  .fp-footer-left {
    padding: 48px 32px;
    gap: 24px;
  }

  .fp-footer-map {
    min-height: 220px;
  }
}

/* スマホ */
@media screen and (max-width: 767px) {
  .fp-footer-left {
    padding: 40px 20px;
  }

  .fp-footer-nav-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
  }

  .fp-footer-map {
    min-height: 180px;
  }

  /* =========================
   制作実績ページ
========================= */

  /* フィルターセクション */
  .wk-filter {
    padding: 80px 0 60px;
    background-color: #111;
    position: relative;
    overflow: hidden;
  }

  .wk-filter::before {
    content: 'WORKS';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'IM Fell English SC', serif;
    font-size: 180px;
    color: rgba(154, 125, 74, 0.05);
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
    user-select: none;
    z-index: 0;
  }

  .wk-filter .container {
    position: relative;
    z-index: 1;
  }

  .wk-filter-ja {
    color: #fff !important;
  }

  .wk-filter-lead {
    text-align: center;
    color: rgba(245, 241, 235, 0.45);
    font-size: 0.88rem;
    line-height: 2;
    margin-top: 20px;
    letter-spacing: 0.12em;
    font-family: "Noto Serif JP", serif;
  }

  /* カテゴリタブ */
  .wk-filter-tabs {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0;
  }

  .wk-filter-tab {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.18em;
    padding: 8px 22px;
    text-decoration: none;
    color: rgba(245, 241, 235, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-family: "Noto Serif JP", serif;
    transition: 0.25s;
  }

  .wk-filter-tab:hover {
    color: #b9a78b;
    border-color: rgba(185, 167, 139, 0.4);
  }

  .wk-filter-tab.is-active {
    color: #fdfaf6;
    border-color: #b9a78b;
    background: rgba(185, 167, 139, 0.1);
  }


  /* グリッドセクション */
  .wk-grid-section {
    padding: 0 0 100px;
    background-color: #111;
  }

  /* グリッド本体 */
  .wk-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  /* 各アイテム */
  .wk-item {
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    aspect-ratio: 4 / 3;
    background: #1a1612;
  }

  /* サムネイル画像 */
  .wk-item-img {
    width: 100%;
    height: 100%;
  }

  .wk-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }

  .wk-item:hover .wk-item-img img {
    transform: scale(1.06);
  }

  /* 画像なし */
  .wk-item-noimg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2520, #1a1612);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .wk-item-noimg span {
    font-family: "Noto Serif JP", serif;
    font-size: 0.9rem;
    color: rgba(185, 167, 139, 0.5);
    text-align: center;
    padding: 16px;
  }

  /* ホバーオーバーレイ */
  .wk-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 10, 6, 0.75);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .wk-item:hover .wk-item-overlay {
    opacity: 1;
  }

  .wk-item-cat {
    font-size: 10px;
    letter-spacing: 0.25em;
    color: #b9a78b;
    display: block;
    margin-bottom: 8px;
    font-family: 'IM Fell English SC', serif;
  }

  .wk-item-title {
    font-size: 1rem;
    color: #fdfaf6;
    font-weight: 500;
    display: block;
    margin-bottom: 12px;
    line-height: 1.5;
    font-family: "Noto Serif JP", serif;
  }

  .wk-item-arrow {
    font-size: 11px;
    color: rgba(245, 241, 235, 0.6);
    letter-spacing: 0.1em;
    border-bottom: 1px solid rgba(245, 241, 235, 0.3);
    padding-bottom: 2px;
    font-family: "Noto Serif JP", serif;
  }

  /* 空の場合 */
  .wk-empty {
    text-align: center;
    color: rgba(245, 241, 235, 0.4);
    padding: 80px 0;
    font-family: "Noto Serif JP", serif;
    letter-spacing: 0.12em;
  }

  /* ページネーション（新デザイン） */
  .wk-pagination {
    display: flex;
    justify-content: center;
    margin-top: 64px;
  }

  .wk-pagination .nav-links {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }

  .wk-pagination a,
  .wk-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-decoration: none;
    color: rgba(245, 241, 235, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: "Noto Serif JP", serif;
    transition: 0.25s;
    box-sizing: border-box;
  }

  .wk-pagination a:hover {
    color: #b9a78b;
    border-color: rgba(185, 167, 139, 0.4);
  }

  .wk-pagination .current {
    color: #fdfaf6;
    border-color: #b9a78b;
    background: rgba(185, 167, 139, 0.12);
  }

  .wk-pagination .dots {
    border: none;
    color: rgba(245, 241, 235, 0.25);
  }

  /* タブレット */
  @media screen and (max-width: 991px) {
    .wk-filter::before {
      font-size: 120px;
    }

    .wk-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* スマホ */
  @media screen and (max-width: 767px) {
    .wk-filter {
      padding: 60px 0 48px;
    }

    .wk-filter::before {
      font-size: 72px;
      right: 0;
      top: 16px;
      transform: none;
    }

    .wk-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1px;
    }

    .wk-item-overlay {
      opacity: 1;
      background: rgba(15, 10, 6, 0.5);
      padding: 14px;
    }

    .wk-item-cat {
      font-size: 9px;
    }

    .wk-item-title {
      font-size: 0.82rem;
      margin-bottom: 6px;
    }

    .wk-item-arrow {
      font-size: 10px;
    }

    .wk-grid-section {
      padding: 0 0 70px;
    }

    .wk-pagination a,
    .wk-pagination span {
      min-width: 38px;
      height: 38px;
      font-size: 11px;
    }
  }
}

/* =========================
   会社案内ページ
========================= */

/* ① 理念・メッセージ */
.cp-intro {
  padding: 100px 0;
  background-color: #1a1612;
  position: relative;
  overflow: hidden;
}

.cp-intro::before {
  content: 'ABOUT';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'IM Fell English SC', serif;
  font-size: 180px;
  color: rgba(154, 125, 74, 0.05);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  z-index: 0;
}

.cp-intro-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}

.cp-en {
  font-family: 'IM Fell English SC', serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  color: #b9a78b;
  display: block;
  margin-bottom: 14px;
}

.cp-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  color: #fdfaf6;
  font-family: "Noto Serif JP", serif;
  line-height: 1.4;
  margin-bottom: 16px;
}

.cp-line {
  width: 40px;
  height: 1px;
  background: #b9a78b;
  margin-bottom: 28px;
}

.cp-intro-lead {
  font-size: 1.05rem;
  line-height: 2.2;
  color: #fdfaf6;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  margin-bottom: 20px;
}

.cp-intro-body {
  font-size: 0.9rem;
  line-height: 2.3;
  color: rgba(245, 241, 235, 0.8);
  font-family: "Noto Serif JP", serif;
}

/* 数字スタッツ */
.cp-intro-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.cp-stat {
  text-align: center;
}

.cp-stat-num {
  font-family: 'IM Fell English SC', serif;
  font-size: 44px;
  color: #c4a96b;
  line-height: 1;
}

.cp-stat-num sup {
  font-size: 16px;
  font-family: "Noto Serif JP", serif;
  vertical-align: super;
}

.cp-stat-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(245, 241, 235, 0.35);
  display: block;
  margin-top: 6px;
  font-family: "Noto Serif JP", serif;
}

.cp-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(154, 125, 74, 0.25);
}

@media screen and (max-width: 991px) {
  .cp-intro-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cp-intro-stats {
    flex-direction: row;
    justify-content: center;
  }

  .cp-stat-divider {
    width: 32px;
    height: 1px;
  }

  .cp-intro::before {
    font-size: 120px;
  }
}

@media screen and (max-width: 767px) {
  .cp-intro {
    padding: 70px 0;
  }

  .cp-intro::before {
    font-size: 72px;
    right: 0;
    top: 16px;
    transform: none;
  }
}


/* ② 強み */
.cp-strengths {
  padding: 100px 0;
  background-color: #f8f6f2;
  position: relative;
  overflow: hidden;
}

.cp-strengths::before {
  content: 'STRENGTH';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'IM Fell English SC', serif;
  font-size: 160px;
  color: rgba(154, 125, 74, 0.05);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  z-index: 0;
}

.cp-strengths .container {
  position: relative;
  z-index: 1;
}

.cp-strengths-ja {
  color: #111 !important;
}

.cp-strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cp-strength-card {
  padding: 40px 32px;
  background: #fff;
  border: 1px solid #e5dfd6;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  position: relative;
}

.cp-strength-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.cp-strength-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}

.cp-strength-icon svg {
  width: 100%;
  height: 100%;
  stroke: #b9a78b;
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cp-strength-num {
  font-family: 'IM Fell English SC', serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: #b9a78b;
  margin-bottom: 12px;
}

.cp-strength-title {
  font-size: 1rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 14px;
  line-height: 1.6;
  font-family: "Noto Serif JP", serif;
}

.cp-strength-body {
  font-size: 0.88rem;
  line-height: 2;
  color: #000000;
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 991px) {
  .cp-strengths-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cp-strengths::before {
    font-size: 110px;
  }
}

@media screen and (max-width: 767px) {
  .cp-strengths {
    padding: 70px 0;
  }

  .cp-strength-card {
    padding: 28px 24px;
  }
}


/* ③ 会社概要 */
.cp-overview {
  padding: 100px 0;
  background-color: #111;
  position: relative;
  overflow: hidden;
}

.cp-overview::before {
  content: 'PROFILE';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'IM Fell English SC', serif;
  font-size: 170px;
  color: rgba(154, 125, 74, 0.05);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  z-index: 0;
}

.cp-overview .container {
  position: relative;
  z-index: 1;
}

.cp-overview .fp-section-ja {
  color: #fff !important;
}

.cp-overview-inner {
  max-width: 760px;
  margin: 0 auto;
}

.cp-overview-table {
  width: 100%;
}

.cp-overview-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 22px 0;
  gap: 24px;
}

.cp-overview-row:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.cp-overview-row dt {
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  color: #b9a78b;
  font-family: "Noto Serif JP", serif;
  padding-top: 2px;
}

.cp-overview-row dd {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(245, 241, 235, 0.75);
  font-family: "Noto Serif JP", serif;
}

.cp-overview-row dd a {
  color: rgba(245, 241, 235, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.cp-overview-row dd a:hover {
  color: #b9a78b;
}

@media screen and (max-width: 767px) {
  .cp-overview {
    padding: 70px 0;
  }

  .cp-overview-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }
}


/* ④ アクセス */
.cp-access {
  padding: 100px 0;
  background-color: #f8f6f2;
  position: relative;
  overflow: hidden;
}

.cp-access::before {
  content: 'ACCESS';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'IM Fell English SC', serif;
  font-size: 170px;
  color: rgba(154, 125, 74, 0.05);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  z-index: 0;
}

.cp-access .container {
  position: relative;
  z-index: 1;
}

.cp-access-ja {
  color: #111 !important;
}

.cp-access-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: stretch;
}

/* 左：アクセス情報 */
.cp-access-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cp-access-block {
  border-left: 2px solid #e5dfd6;
  padding-left: 16px;
}

.cp-access-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: #b9a78b;
  display: block;
  margin-bottom: 8px;
  font-family: 'IM Fell English SC', serif;
}

.cp-access-text {
  font-size: 0.9rem;
  line-height: 1.9;
  color: #444;
  font-family: "Noto Serif JP", serif;
}

.cp-access-text a {
  color: #444;
  text-decoration: none;
  transition: color 0.2s;
}

.cp-access-text a:hover {
  color: #8b2e1a;
}

.cp-access-btn {
  display: inline-block;
  background: #8b2e1a;
  color: #fdfaf6;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.18em;
  padding: 14px 32px;
  border: 1px solid rgba(139, 46, 26, 0.4);
  transition: background 0.3s, box-shadow 0.3s;
  font-family: "Noto Serif JP", serif;
  box-shadow: 0 4px 16px rgba(139, 46, 26, 0.2);
  margin-top: 8px;
  text-align: center;
}

.cp-access-btn:hover {
  background: #a33520;
  box-shadow: 0 6px 22px rgba(139, 46, 26, 0.35);
}

/* 右：マップ */
.cp-access-map {
  position: relative;
  min-height: 400px;
  filter: grayscale(20%) brightness(0.95);
  transition: filter 0.3s;
  border: 1px solid #e5dfd6;
}

.cp-access-map:hover {
  filter: grayscale(0%) brightness(1);
}

.cp-access-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media screen and (max-width: 991px) {
  .cp-access-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cp-access-map {
    min-height: 300px;
  }

  .cp-access::before {
    font-size: 110px;
  }
}

@media screen and (max-width: 767px) {
  .cp-access {
    padding: 70px 0;
  }

  .cp-access::before {
    font-size: 72px;
    right: 0;
    top: 16px;
    transform: none;
  }

  .cp-access-map {
    min-height: 240px;
  }

  .cp-access-btn {
    display: block;
    text-align: center;
  }
}

/* =========================
   確認ページ
========================= */
.ct-confirm-table {
  margin-bottom: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ct-confirm-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ct-confirm-row dt {
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  color: #b9a78b;
  font-family: "Noto Serif JP", serif;
  padding-top: 2px;
}

.ct-confirm-row dd {
  font-size: 0.92rem;
  line-height: 1.9;
  color: rgba(245, 241, 235, 0.8);
  font-family: "Noto Serif JP", serif;
  white-space: pre-wrap;
}

/* 戻る・送信ボタン */
.ct-confirm-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* 戻るボタン */
.ct-confirm-actions .msp-back-btn,
.ct-confirm-actions input[type="button"] {
  display: inline-block;
  background: transparent;
  color: rgba(245, 241, 235, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px 36px;
  font-size: 13px;
  letter-spacing: 0.18em;
  font-family: "Noto Serif JP", serif;
  cursor: pointer;
  transition: 0.3s;
}

.ct-confirm-actions .msp-back-btn:hover,
.ct-confirm-actions input[type="button"]:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

/* 送信ボタン */
.ct-confirm-actions input[type="submit"] {
  background: #8b2e1a;
  color: #fdfaf6;
  border: 1px solid rgba(139, 46, 26, 0.4);
  padding: 14px 48px;
  font-size: 13px;
  letter-spacing: 0.18em;
  font-family: "Noto Serif JP", serif;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 16px rgba(139, 46, 26, 0.25);
}

.ct-confirm-actions input[type="submit"]:hover {
  background: #a33520;
  box-shadow: 0 6px 22px rgba(139, 46, 26, 0.4);
}

@media screen and (max-width: 767px) {
  .ct-confirm-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .ct-confirm-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .ct-confirm-actions .msp-back-btn,
  .ct-confirm-actions input[type="button"],
  .ct-confirm-actions input[type="submit"] {
    width: 100%;
    text-align: center;
    padding: 14px;
  }
}

/* =========================
   サンクスページ
========================= */
.ct-thanks {
  padding: 140px 0;
  background-color: #1a1612;
  position: relative;
  overflow: hidden;
  min-height: calc(60vh - 80px);
  display: flex;
  align-items: center;
}

.ct-thanks::before {
  content: 'THANK YOU';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'IM Fell English SC', serif;
  font-size: 140px;
  color: rgba(154, 125, 74, 0.05);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  z-index: 0;
}

.ct-thanks .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.ct-thanks-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.ct-thanks-body {
  font-size: 0.92rem;
  line-height: 2.4;
  color: rgba(245, 241, 235, 0.55);
  font-family: "Noto Serif JP", serif;
  margin-bottom: 48px;
}

.ct-thanks-btn {
  display: inline-block;
  background: transparent;
  color: #fdfaf6;
  text-decoration: none;
  padding: 14px 40px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 13px;
  letter-spacing: 0.18em;
  font-family: "Noto Serif JP", serif;
  transition: 0.3s;
}

.ct-thanks-btn:hover {
  background: #fff;
  color: #111;
  border-color: #fff;
}

/* 確認ページのリード文 */
.ct-confirm-lead {
  font-size: 0.9rem;
  color: #555;
  letter-spacing: 0.12em;
  margin-bottom: 32px;
  font-family: "Noto Serif JP", serif;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .ct-thanks {
    padding: 100px 0;
  }

  .ct-thanks::before {
    font-size: 64px;
    right: 0;
    top: 16px;
    transform: none;
  }
}


/* =========================
   プライバシーポリシー
========================= */
.privacy-policy-area {
  padding: 80px 0 120px;
  background-color: #f8f6f2;
}

.privacy-title {
  margin: 50px;
  color: #000000;
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
  background: #fff;
  border: 1px solid #e5dfd6;
  padding: 60px 56px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.privacy-intro {
  font-size: 1rem;
  line-height: 2;
  color: #000000;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e5dfd6;
}

.privacy-block {
  margin-bottom: 36px;
}

.privacy-block h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 14px;
  padding-left: 14px;
  border-left: 3px solid #47000a;
  line-height: 1.6;
}

.privacy-block p {
  font-size: 0.97rem;
  line-height: 2;
  color: #000000;
}

.privacy-block ul {
  margin: 12px 0 0 20px;
  padding: 0;
}

.privacy-block ul li {
  font-size: 0.97rem;
  line-height: 2;
  color: #000000;
  margin-bottom: 4px;
}

.privacy-contact-info {
  margin-top: 16px;
  padding: 20px 24px;
  background: #f8f6f2;
  border: 1px solid #e5dfd6;
}

.privacy-contact-info p {
  margin: 0;
  line-height: 2.2;
}

.privacy-contact-info a {
  color: #47000a;
  text-decoration: none;
}

.privacy-contact-info a:hover {
  text-decoration: underline;
}

.privacy-date {
  font-size: 0.9rem;
  color: #888;
  line-height: 2;
  text-align: right;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e5dfd6;
}

@media screen and (max-width: 767px) {
  .privacy-policy-area {
    padding: 60px 0 80px;
  }

  .privacy-content {
    padding: 36px 24px;
  }

  .privacy-block h3 {
    font-size: 0.98rem;
  }
}


/* =========================
   フッター下段（プライバシーポリシーリンク追加）
========================= */
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-privacy-link {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: 0.3s;
  white-space: nowrap;
}

.footer-privacy-link:hover {
  color: #d7b56d;
}

@media screen and (max-width: 767px) {
  .footer-bottom-inner {
    flex-direction: column;
    gap: 8px;
  }
}
/* =========================
   single.php
========================= */

/* パンくずリスト */
.bread {
  background-color: #f8f6f2;
  padding: 14px 0;
  margin-top: 80px;
}

.bread ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0 auto;
  padding: 0 calc(var(--bs-gutter-x) * 0.5);
  max-width: 1140px;
  font-size: 0.85rem;
  color: #888;
}

.bread ol li + li::before {
  content: "›";
  margin-right: 6px;
  color: #bbb;
}

.bread ol li a {
  color: #555;
  text-decoration: none;
  transition: 0.2s;
}

.bread ol li a:hover {
  color: #47000a;
}

/* 記事全体 */
.single-article {
  max-width: 800px;
  padding-top: 60px;
  padding-bottom: 100px;
}

/* ヘッダー：カテゴリ・日付・タイトル */
.single-header {
  margin-bottom: 36px;
}

.single-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.single-category {
display: inline-block;
  background: #8b2e1a;
  color: #fdfaf6;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.18em;
  padding: 10px 20px;
  border: 1px solid rgba(139, 46, 26, 0.5);
  transition: background 0.3s, box-shadow 0.3s;
  font-family: "Noto Serif JP", serif;
  box-shadow: 0 4px 20px rgba(139, 46, 26, 0.3);
}



.single-category:hover {
  opacity: 0.75;
}


.single-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.7;
  color: #111;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5dfd6;
  font-family: "Noto Serif JP", serif;
}

/* アイキャッチ画像 */
.single-thumbnail {
  margin-bottom: 48px;
}

.single-thumb {

  height: auto;
  display: block;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* 本文 */
.single-body {
  font-size: 1rem;
  line-height: 2;
  color: #333;
}

.single-body p {
  margin-bottom: 24px;
}

.single-body h2 {
  font-size: 1.4rem;
  font-weight: 500;
  color: #111;
  margin: 48px 0 20px;
  padding: 12px 18px;
  border-left: 4px solid #47000a;
  background: #f8f6f2;
  line-height: 1.6;
}

.single-body h3 {
  font-size: 1.15rem;
  font-weight: 500;
  color: #111;
  margin: 36px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e5dfd6;
  line-height: 1.6;
}

.single-body ul,
.single-body ol {
  padding-left: 24px;
  margin-bottom: 24px;
  line-height: 2;
}

.single-body li {
  margin-bottom: 6px;
}

.single-body a {
  color: #47000a;
  text-decoration: underline;
  transition: 0.2s;
}

.single-body a:hover {
  color: #111;
}

.single-body blockquote {
  margin: 32px 0;
  padding: 20px 24px;
  border-left: 4px solid #d8d1c7;
  background: #f8f6f2;
  color: #555;
  font-size: 0.97rem;
  line-height: 2;
}

.single-body img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 24px auto;
}

/* 前後記事ナビ */
.single-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 60px;
  padding: 28px 0;
  border-top: 1px solid #e5dfd6;
  border-bottom: 1px solid #e5dfd6;
  font-size: 0.9rem;
}

.single-nav a {
  display: inline-block;
  color: #111;
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid #e5dfd6;
  border-radius: 4px;
  transition: 0.3s;
  background: #fff;
  white-space: nowrap;
}

.single-nav a:hover {
  background: linear-gradient(135deg, #000000 0%, #47000a 45%, #000000 100%);
  color: #fff;
  border-color: #47000a;
}

.single-nav-prev,
.single-nav-next {
  flex: 1;
}

.single-nav-next {
  text-align: right;
}

.single-nav-list {
  flex-shrink: 0;
  text-align: center;
}

.single-nav-prev:empty,
.single-nav-next:empty {
  visibility: hidden;
}

.single-nav-arrow {
  font-size: 1em;
}

/* =========================
   タブレット
========================= */
@media screen and (max-width: 991px) {
  .single-article {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .single-title {
    font-size: 1.4rem;
  }
}

/* =========================
   スマホ
========================= */
@media screen and (max-width: 767px) {
  .bread ol {
    font-size: 0.8rem;
  }

  .single-article {
    padding-top: 30px;
    padding-bottom: 60px;
  }

  .single-title {
    font-size: 1.2rem;
    padding-bottom: 16px;
  }

  .single-thumbnail {
    margin-bottom: 32px;
  }

  .single-body h2 {
    font-size: 1.15rem;
    padding: 10px 14px;
  }

  .single-body h3 {
    font-size: 1.05rem;
  }

  .single-nav {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    margin-top: 40px;
  }

  .single-nav-prev,
  .single-nav-next,
  .single-nav-list {
    width: 100%;
    text-align: center;
  }

  .single-nav a {
    width: 100%;
    box-sizing: border-box;
  }
}