.l-header__inner {
    justify-content: flex-end !important;
}

/* ヘッダーの中身の幅を制限し、中央に寄せる */
.l-header__inner {
    max-width: 1200px; /* サイトの基本コンテンツ幅 */
    margin: 20px auto; /* 上下に20pxの余白を作り、左右を中央揃えにする */
    padding: 0 4%;    
    display: flex;
    /* justify-content: flex-end; から以下に変更 */
    justify-content: center; /* メニューを中央に寄せる */
}

/* ロゴエリアを非表示にする（中央寄せを完璧にするため） */
.l-header__logo {
    display: none !important;
}

/* メニュー自体のマージンをリセット */
.gpc-nav {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* 画像ホバー時の拡大アニメーションをカスタマイズ */
.zoom-up img {
    transition: transform 0.4s ease; /* 0.6秒かけてなめらかに変化 */
}

.zoom-up img:hover {
    transform: scale(1.05); /* 1.1倍に拡大（好みに合わせて1.05などに調整） */
    cursor: pointer;
}

.my-fixed-img img {
    width: 100% !important;
    aspect-ratio:１/１; /* あなたが揃えたい比率に調整 */
    object-fit: cover;
}

.my-fixed2-img img {
    width: 100% !important;
    aspect-ratio:4/3; /* あなたが揃えたい比率に調整 */
    object-fit: cover;
}

/* --- カーソル設定 --- */
.cursor-follower {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: rgba(135, 206, 250, 0.5);
  border-radius: 50%;
  z-index: 999999;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
}
.cursor-follower.is-active {
  width: 60px;
  height: 60px;
}

/* --- ふわっと表示設定 --- */
.js-scroll-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out; /* 速めの0.5秒 */
}
.js-scroll-fade.is-show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .cursor-follower { display: none; }
}
/* サイト全体の文章を少しだけ太く、濃くする */
body {
    -webkit-font-smoothing: antialiased; /* 文字のギザギザを抑える */
    -moz-osx-font-smoothing: grayscale;
    font-weight: 500; /* 通常の400より少し太い500に設定 */
    color: #222;      /* 文字色をしっかり濃くする */
}