@charset "UTF-8";

/* =========================================
   1. 共通設定・ベーススタイル
========================================= */
:root {
  --text-color: #666;
  --border-color: #ccc;
  --content-width: 1200px;
}

body {
  color: var(--text-color);
  font-family:
    "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    Meiryo, sans-serif;
  letter-spacing: 0.05em;
  margin: 0;
  padding: 0;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* PC/SP表示切り替え用クラス */
.sp-only {
  display: none;
}
@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: block;
  }
}

/* 共通コンテナ（左右の余白と最大幅） */
.section-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 100px 4%;
}

/* 共通ボタン（アウトライン） */
.btn--outline {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #999;
  padding: 8px 30px;
  font-size: 13px;
  color: #666;
  transition: 0.3s;
}
.btn--outline:hover {
  opacity: 0.6;
}

/* =========================================
   2. ヘッダー (Header)
========================================= */
.header {
  width: 100%;
  /* スクロール時に後ろが少し透けるようにrgbaで指定 */
  background-color: rgba(255, 255, 255, 0.95);
  padding: 30px 4%;
  box-sizing: border-box;
  /* ▼ スクロール固定 ▼ */
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--content-width);
  margin: 0 auto;
}

.header__logo {
  margin: 0;
  line-height: 1;
}

.header__logo img {
  height: 48px;
  width: auto;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__item a {
  color: #666;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.nav__item a:hover {
  opacity: 0.6;
}

.nav__item img {
  height: 24px;
  width: auto;
}

/* ハンバーガーボタン（PCでは非表示） */
.header__hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 100;
}

/* ▼▼ スマホ用ヘッダー・全画面メニュー ▼▼ */
@media (max-width: 768px) {
  /* ヘッダーのベース設定 */
  .header {
    padding: 15px 4%;
    z-index: 1000;
  }
  .header__logo {
    position: relative;
    z-index: 101;
  }
  .header__logo img {
    height: 36px;
    transition: filter 0.3s ease;
  }

  /* 全画面メニュー（初期状態は非表示） */
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #6a6a6a;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* メニュー展開時 */
  .header.is-active .header__nav {
    opacity: 1;
    visibility: visible;
  }

  /* ロゴとアイコンを白く反転 */
  .header.is-active .header__logo img,
  .header.is-active .nav__item img {
    filter: brightness(0) invert(1);
  }

  /* メニューリスト（2列グリッド） */
  .header.is-active .nav__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 50px;
    row-gap: 40px;
    padding: 0;
  }

  .header.is-active .nav__item a {
    color: #fff;
    font-size: 22px;
    letter-spacing: 0.1em;
  }

  .header.is-active .nav__item:last-child {
    grid-column: 1;
    margin-top: 10px;
  }

  /* ハンバーガーボタン */
  .header__hamburger {
    display: block;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 101;
  }
  .header__hamburger span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #333;
    left: 0;
    transition: all 0.3s ease;
  }
  .header__hamburger span:nth-of-type(1) {
    top: 0;
  }
  .header__hamburger span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .header__hamburger span:nth-of-type(3) {
    bottom: 0;
  }

  /* メニュー展開時の「X」印 */
  .header.is-active .header__hamburger span {
    background-color: #fff;
  }
  .header.is-active .header__hamburger span:nth-of-type(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  .header.is-active .header__hamburger span:nth-of-type(2) {
    opacity: 0;
  }
  .header.is-active .header__hamburger span:nth-of-type(3) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }
}
/* ▲▲ ここまでヘッダーのスマホ用記述 ▲▲ */

/* =========================================
   3. メインビジュアル (Swiper)
========================================= */
.fv {
  padding-top: 20px;
  padding-bottom: 60px;
  overflow: hidden;
}

.fv-slider {
  width: 100%;
  position: relative;
}

.fv-slider .swiper-slide {
  width: 75%;
  max-width: 1000px;
  transition: opacity 0.3s ease;
}

.slide-img-wrapper {
  width: 100%;
  overflow: hidden;
}

.slide-img-wrapper img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  vertical-align: bottom;
  transform: scale(1.15); /* 1.15倍に拡大 */
  transition: transform 6s ease-out; /* 6秒かけてゆっくり変化させる準備 */
}
.fv-slider .swiper-slide-active .slide-img-wrapper img {
  transform: scale(1);
}

.fv-slider .swiper-slide-active img {
  transform: scale(1);
}

.slide-title {
  margin-top: 15px;
  font-size: 14px;
  color: #666;
  letter-spacing: 0.05em;
}

.fv-slider .swiper-slide:not(.swiper-slide-active) {
  opacity: 0.4;
}

/* 左右の矢印共通スタイル */
.fv-slider .swiper-button-prev,
.fv-slider .swiper-button-next {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  color: #333;
  margin-top: -30px; /* Swiperのデフォルト位置調整 */
  z-index: 10;
  transition: opacity 0.3s ease;
}

.fv-slider .swiper-button-prev::after,
.fv-slider .swiper-button-next::after {
  font-size: 20px;
  font-weight: bold;
}

/* -----------------------------
   ▼▼ 修正箇所：PC時のポジション固定 ▼▼
----------------------------- */
@media (min-width: 769px) {
  /* 画面幅が1333pxまでは、中央画像(幅75%)のフチに追従 */
  .fv-slider .swiper-button-prev {
    left: calc(12.5% - 25px);
  }
  .fv-slider .swiper-button-next {
    right: calc(12.5% - 25px);
  }
}

@media (min-width: 1334px) {
  /* 画面幅が1334px以上になり、中央画像が1000pxで固定された後は、
     画面中央から 500px(画像の半分) の位置でピタッと固定 */
  .fv-slider .swiper-button-prev {
    left: calc(50% - 500px - 25px);
  }
  .fv-slider .swiper-button-next {
    right: calc(50% - 500px - 25px);
  }
}
/* ▲▲ 修正箇所ここまで ▲▲ */

/* -----------------------------
   スマホ時のポジション（従来通り）
----------------------------- */
@media (max-width: 768px) {
  /* スマホ時は画面端から適度な距離（例: 10px）に配置 */
  .fv-slider .swiper-button-prev {
    left: 10px;
  }
  .fv-slider .swiper-button-next {
    right: 10px;
  }
}

/* 下部のコントロールエリア（線とボタン） */
.fv-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}

.fv-controls .swiper-pagination {
  position: static;
  width: auto;
  display: flex;
  align-items: center;
  gap: 15px;
}

.fv-controls .swiper-pagination-bullet {
  width: 35px;
  height: 1px;
  background-color: #999;
  border-radius: 0;
  margin: 0 !important;
  opacity: 1;
  transition: background-color 0.3s ease;
}

.fv-controls .swiper-pagination-bullet-active {
  background-color: #333;
  height: 2px;
}

@media (max-width: 768px) {
  .fv-slider .swiper-slide {
    width: 100%;
  }
  .fv-slider .swiper-slide img {
    aspect-ratio: 4 / 3;
  }
  .slide-title {
    padding: 0 4%;
  }
  .fv-controls {
    flex-direction: column;
    gap: 20px;
  }
}

/* =========================================
   4. 見出し・コンセプトエリア
========================================= */
.concept {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 5%;
}

.concept__text-area {
  width: 45%;
  display: flex;
  flex-direction: column;
}
.concept__img-area {
  width: 50%;
}

/* ▼▼ ここからスタイリッシュ化のための追記・修正 ▼▼ */

/* 見出し（タイトル）の調整 */
.concept__text-area .sec-title {
  font-size: 26px; /* 少しサイズを抑えて上品に */
  letter-spacing: 0.15em; /* 文字間を広くしてモダンな印象に */
  margin-top: 0;
  margin-bottom: 35px; /* 本文との余白をしっかりとる */
  line-height: 1.4;
}

/* 本文の調整（行間と文字間） */
.concept__text {
  font-size: 14px;
  line-height: 2.4; /* 【重要】行間をゆったり広げる（2.4倍） */
  letter-spacing: 0.002em; /* 文字同士の隙間も少し広げる */
  color: #555; /* 真っ黒より少し薄い色で洗練された雰囲気に */
}

/* ボタンエリアの調整 */
.concept__btns {
  display: flex;
  gap: 20px;
  margin-top: auto; /* 本文とボタンの間を大きく開けて「抜け感」を作る */
}

/* ▲▲ ここまで ▲▲ */

@media (max-width: 768px) {
  .concept {
    flex-direction: column;
    gap: 40px;
  }
  .concept__text-area,
  .concept__img-area {
    width: 100%;
  }
  /* スマホ時は少し余白を縮める */
  .concept__text-area .sec-title {
    margin-bottom: 25px;
  }
  .concept__btns {
    margin-top: 35px;
  }
}

/* =========================================
   5. ニュースセクション (News)
========================================= */
.news {
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 100px 4%;
  max-width: 1000px;
  margin: 0 auto;
}

.news__head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-right: 80px;
  border-right: 1px solid #ccc;
}

.news__head .sec-title {
  font-size: 32px;
  color: #666;
  letter-spacing: 0.1em;
  font-weight: normal;
  margin: 0 0 30px 0;
}

.news__list {
  flex: 1;
  padding-left: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news__item {
  display: flex;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid #ccc;
}

.news__item time {
  width: 140px;
  font-size: 16px;
  color: #666;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.news__item p {
  margin: 0;
  font-size: 16px;
  color: #666;
  letter-spacing: 0.05em;
}

.news__item p a {
  transition: opacity 0.3s;
}

.news__item p a:hover {
  opacity: 0.6;
}

@media (max-width: 768px) {
  .news {
    flex-direction: column;
    align-items: stretch;
    padding: 60px 4%;
  }

  .news__head {
    padding-right: 0;
    border-right: none;
    margin-bottom: 40px;
  }

  .news__list {
    padding-left: 0;
  }

  .news__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px 0;
  }

  .news__item time {
    width: auto;
  }
  .news__foot {
    margin-top: 30px;
    text-align: center;
  }
}

/* =========================================
   6. フッター (Footer)
========================================= */
.footer {
  padding: 100px 4% 50px;
  text-align: center;
  background-color: #fff;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ロゴ */
.footer__logo {
  margin-bottom: 30px;
  line-height: 1;
}

.footer__logo img {
  height: 48px;
  width: auto;
}

/* Instagramアイコン */
.footer__sns {
  margin-bottom: 40px;
}

.footer__sns img {
  height: 32px;
  width: auto;
  transition: opacity 0.3s ease;
}

.footer__sns a:hover img {
  opacity: 0.6;
}

/* フッターナビゲーション（PCのみ） */
.footer__nav {
  margin-bottom: 60px;
}

.footer__nav-list {
  display: flex;
  justify-content: center;
  gap: 50px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__nav-item a {
  color: #666;
  font-size: 16px;
  letter-spacing: 0.1em;
  transition: opacity 0.3s ease;
}

.footer__nav-item a:hover {
  opacity: 0.6;
}

/* コピーライト */
.footer__copyright {
  margin: 0;
  color: #666;
}

.footer__copyright small {
  font-size: 13px;
  letter-spacing: 0.05em;
}

/* =========================================
   スマホ用表示（ブレイクポイント 768px）
========================================= */
@media (max-width: 768px) {
  .footer {
    padding: 80px 4% 40px;
  }

  .footer__logo {
    margin-bottom: 25px;
  }

  .footer__logo img {
    height: 36px;
  }

  .footer__sns {
    margin-bottom: 30px;
  }

  .footer__sns img {
    height: 28px;
  }
}
/* =========================================
   7. 下層ページ共通スタイル
========================================= */
/* ページタイトルエリア */
.page-header {
  /* ヘッダーが上部固定(sticky)のため、上に少し多めに余白を取ります */
  padding: 60px 4% 60px;
  text-align: center;
  /*background-color: #f8f8f8;*/
}

.page-header__title {
  font-size: 36px;
  color: #333;
  letter-spacing: 0.1em;
  font-weight: normal;
  margin: 0;
  text-transform: capitalize;
}

/* ページコンテンツエリア */
.page-content {
  padding-top: 80px;
  padding-bottom: 120px;
}

@media (max-width: 768px) {
  .page-header {
    padding: 80px 4% 40px;
  }
  .page-header__title {
    font-size: 28px;
  }
  .page-content {
    padding-top: 50px;
    padding-bottom: 80px;
  }
}
/* =========================================
   8. Works（実績一覧）ページ
========================================= */

/* Works専用ページタイトル（上下の枠線付き） */
.page-header--bordered {
  background-color: #fff;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 50px 4%;
  margin-top: 20px;
}

/* -----------------------------
   カテゴリーフィルター
----------------------------- */
.works-category {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  margin-bottom: 40px;
  gap: 15px;
}

.works-category__label {
  font-size: 14px;
  color: #666;
  letter-spacing: 0.1em;
}

.works-category__list {
  display: flex;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.works-category__list a {
  font-size: 14px;
  color: #aaa;
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
}

.works-category__list a:hover {
  opacity: 0.6;
}

/* 選択中のカテゴリー（太字・濃い色） */
.works-category__list a.is-active {
  color: #333;
  font-weight: bold;
}

/* -----------------------------
   Works グリッドレイアウト
----------------------------- */
.works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 30px;
  row-gap: 50px;
}

.works-item {
  display: block;
  text-decoration: none;
}

/* 画像エリアの正方形比率設定とホバーアニメーション */
.works-item__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #f5f5f5;
}

.works-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.works-item:hover .works-item__img img {
  transform: scale(1.05);
}

.works-item:hover .works-item__title {
  opacity: 0.6;
}

.works-item__title {
  margin: 15px 0 0 0;
  font-size: 13px;
  color: #666;
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
}

/* -----------------------------
   ページネーション（ページ送り）
----------------------------- */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 80px;
}

.pagination a,
.pagination span {
  font-size: 16px;
  color: #999;
  text-decoration: none;
  transition: opacity 0.3s;
}

.pagination a:hover {
  opacity: 0.6;
}

/* 現在のページ（太字・下線付き） */
.pagination .pagination__current,
.pagination .current {
  color: #333;
  font-weight: bold;
  border-bottom: 2px solid #333;
  padding-bottom: 2px;
}

/* =========================================
   スマホ用表示（ブレイクポイント 768px）
========================================= */
@media (max-width: 768px) {
  .page-header--bordered {
    padding: 30px 4%;
    margin-top: 0;
  }

  .works-category {
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }

  .works-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 15px;
    row-gap: 30px;
  }

  .works-item__title {
    font-size: 12px;
    margin-top: 10px;
  }

  .pagination {
    margin-top: 50px;
    gap: 15px;
  }
}
/* =========================================
   9. Works詳細ページ (Single Work)
========================================= */

.single-work {
  padding-top: 20px;
}

/* 2カラムレイアウトのベース */
.single-work__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

/* -----------------------------
   左側：テキスト情報（スクロール追従）
----------------------------- */
.single-work__info {
  width: 35%;
  position: sticky;
  top: 150px;
}

.single-work__title {
  font-size: 24px;
  color: #333;
  letter-spacing: 0.1em;
  font-weight: normal;
  margin: 0 0 40px 0;
}

/* 概要リスト */
.single-work__specs {
  margin: 0 0 40px 0;
}

.spec-row {
  display: flex;
  margin-bottom: 12px;
  font-size: 13px;
  color: #666;
  letter-spacing: 0.1em;
}

.spec-row dt {
  width: 80px;
  flex-shrink: 0;
}

.spec-row dd {
  margin: 0;
}

/* 説明文 */
.single-work__desc p {
  font-size: 14px;
  color: #666;
  line-height: 2;
  letter-spacing: 0.05em;
  margin: 0;
}

/* -----------------------------
   右側：ギャラリー（画像一覧）
----------------------------- */
.single-work__gallery {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.single-work__gallery img {
  width: 100%;
  height: auto;
  background-color: #f5f5f5;
}

/* -----------------------------
   下部：前後のページへのナビゲーション
----------------------------- */
.single-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 100px;
  padding-top: 50px;
  border-top: 1px solid #ddd;
}

.single-nav a {
  font-size: 13px;
  color: #666;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: opacity 0.3s;
}

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

.single-nav__list {
  font-weight: bold;
}

/* =========================================
   スマホ用表示（ブレイクポイント 768px）
========================================= */
@media (max-width: 768px) {
  .single-work__inner {
    flex-direction: column;
    gap: 40px;
  }

  .single-work__info,
  .single-work__gallery {
    width: 100%;
  }

  .single-work__info {
    position: static;
  }

  .single-work__title {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .single-work__gallery {
    gap: 30px;
  }

  .single-nav {
    margin-top: 60px;
    padding-top: 30px;
  }
}
/* =========================================
   10. Flow（制作の流れ）ページ
========================================= */

/* PCは2列のグリッドレイアウト */
.flow-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列に均等割り */
  column-gap: 60px; /* 左右の隙間 */
  row-gap: 80px; /* 上下の隙間 */
}

.flow-item__title {
  font-size: 18px;
  color: #666;
  letter-spacing: 0.1em;
  font-weight: bold;
  margin: 0 0 20px 0;
}

.flow-item__text {
  font-size: 14px;
  color: #666;
  line-height: 2; /* 読みやすいように行間を広めに */
  letter-spacing: 0.05em;
  margin: 0;
}

/* =========================================
   スマホ用表示（ブレイクポイント 768px）
========================================= */
@media (max-width: 768px) {
  /* スマホは1列に変更し、隙間を調整 */
  .flow-list {
    grid-template-columns: 1fr;
    row-gap: 60px;
  }

  .flow-item__title {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .flow-item__text {
    font-size: 13px;
  }
}

/* =========================================
   11. Contact（お問い合わせフォーム）
========================================= */
.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-row {
  margin-bottom: 40px;
}

/* ラベル（項目名） */
.form-row label {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #333;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}

/* 必須マーク */
.form-row label .required {
  background-color: #cd0202;
  color: #fff;
  font-size: 11px;
  padding: 3px 8px;
  margin-left: 15px;
  letter-spacing: 0;
  border-radius: 2px;
}

/* 入力エリア */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  background-color: #fcfcfc;
  font-size: 15px;
  font-family: inherit; /* フォントをサイト全体と合わせる */
  box-sizing: border-box;
  transition:
    border-color 0.3s,
    background-color 0.3s;
}

/* 入力中のスタイル */
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #999;
  background-color: #fff;
}

/* テキストエリア（お問い合わせ内容）は高さを出す */
.contact-form textarea {
  height: 200px;
  resize: vertical;
}

/* 送信ボタンエリア */
.form-submit {
  text-align: center;
  margin-top: 60px;
  position: relative;
}

.form-submit input[type="submit"] {
  background-color: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  padding: 12px 60px;
  letter-spacing: 0.1em;
  border: 1px solid #999;
  color: #666;
  transition: opacity 0.3s;
}

.form-submit input[type="submit"]:hover {
  opacity: 0.6;
}

.form-submit .wpcf7-spinner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 0 0 15px; /* ボタンの少し右に配置 */
}

/* =========================================
   12. Aboutページ
========================================= */
.about-page {
  max-width: 900px;
  margin: 0 auto;
}

.about-section {
  margin-bottom: 120px;
}

/* セクションタイトル（Profile / Access） */
.about-section__title {
  font-size: 24px;
  color: #333;
  letter-spacing: 0.15em;
  font-weight: normal;
  margin: 0 0 50px 0;
  text-align: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

/* -----------------------------
   Profile エリア
----------------------------- */
.about-profile__sub {
  font-size: 16px;
  color: #666;
  letter-spacing: 0.1em;
  font-weight: normal;
  margin: 0 0 30px 0;
}

.history-list {
  margin: 0 0 60px 0;
}

.history-row {
  display: flex;
  margin-bottom: 20px;
  font-size: 14px;
  color: #555;
  line-height: 2;
  letter-spacing: 0.08em;
}

.history-row dt {
  width: 80px;
  flex-shrink: 0;
}

.history-row dd {
  margin: 0;
}

.about-profile__note {
  font-size: 12px;
  color: #999;
  letter-spacing: 0.05em;
  text-align: right;
}

/* -----------------------------
   Access エリア
----------------------------- */
.about-access {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 60px;
}

.about-access__info {
  width: 45%;
  display: flex;
  flex-direction: column;
  margin-top: 60px;
}

.about-access__map {
  width: 50%;
}

.about-access__map img {
  width: 100%;
  height: auto;
  border: 1px solid #eee; /* マップの境界を上品に見せる薄い枠線 */
}

.about-access__name {
  font-size: 18px;
  color: #333;
  letter-spacing: 0.1em;
  margin: 0 0 25px 0;
}

.about-access__text {
  font-size: 14px;
  color: #555;
  line-height: 2.4;
  letter-spacing: 0.08em;
  margin: 0 0 25px 0;
}

.map-link {
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 4px; /* 下線と文字の距離を少し離して洗練させる */
  transition: opacity 0.3s;
}

.map-link:hover {
  opacity: 0.6;
}

.about-access__btn {
  margin-top: auto;
  margin-bottom: 5px;
}

/* =========================================
   スマホ用表示（ブレイクポイント 768px）
========================================= */
@media (max-width: 768px) {
  .about-section {
    margin-bottom: 80px;
  }

  .about-section__title {
    font-size: 20px;
    margin-bottom: 40px;
  }

  .history-row {
    flex-direction: column;
    margin-bottom: 25px;
  }

  .history-row dt {
    margin-bottom: 5px;
    font-weight: bold;
  }

  .about-access {
    flex-direction: column;
    gap: 40px;
  }

  .about-access__info,
  .about-access__map {
    width: 100%;
  }
  .about-access__btn {
    /* スマホ画面（縦並び）の時は、ボタンを下に押しやらず通常の余白に戻す */
    margin-top: 40px;
    margin-bottom: 0;
  }
}
/* =========================================
   スマホ用表示（ブレイクポイント 768px）
========================================= */
@media (max-width: 768px) {
  .form-row {
    margin-bottom: 30px;
  }

  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form input[type="tel"],
  .contact-form textarea {
    padding: 12px;
    font-size: 14px;
  }

  .form-submit {
    margin-top: 40px;
  }
}

/* =========================================
   TOPページ：テキスト一文字ずつの出現アニメーション
========================================= */
.showBottom {
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* 1文字ずつ隠すための「見えない窓枠」 */
.showBottom .char-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

/* 動く文字本体（初期状態は100%下に下がって隠れている） */
.showBottom .char {
  display: inline-block;
  transform-origin: 50% 100%;
  translate: 0 100%;
}

/* ▼ 発動時（isActiveが付与された時）の動き ▼ */
.showBottom.isActive .headline .char {
  --delay: 0.012s;
  translate: 0;
  transition: translate 0.8s var(--ease-out-quart)
    calc(var(--delay) * var(--index) * var(--index));
}

.showBottom.isActive .description .char {
  --delay: 0.002s;
  translate: 0;
  transition: translate 0.7s var(--ease-out-quart)
    calc(var(--delay) * var(--index) * var(--index) * 0.01);
}

/* =========================================
   Instagramアイコンの色と高さの調整
========================================= */
/* ヘッダーとフッターのInstagramアイコン共通設定 */
.nav__item img[alt="Instagram"],
.footer__sns img[alt="Instagram"] {
  width: 20px; /* 文字サイズに合わせて少し小さくします（お好みで調整してください） */
  height: auto;
  vertical-align: middle; /* 文字の高さ（ベースライン）に合わせる */
  transform: translateY(-2px); /* 中央をピタッと揃えるための微調整 */

  /* ▼ 真っ黒のアイコンをグレーに変換する魔法のフィルター ▼ */
  filter: invert(45%);

  transition: opacity 0.3s ease;
}

/* マウスを乗せた時の動き（他のリンクと同様にフワッと薄くする） */
.nav__item a:hover img[alt="Instagram"],
.footer__sns a:hover img[alt="Instagram"] {
  opacity: 0.5;
}

/* サイト内のすべての画像（ロゴやアイコン以外）を保護する場合 */
img:not(a img) {
  pointer-events: none;
}
