@charset "UTF-8";

/* =========================================
  1. 全体定義
========================================= */
html {
  scroll-behavior: auto !important;
}

body {
  font-family: 'Noto Sans JP', "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #333333;
  margin: 0;
  line-height: 1.8;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  transition: 0.3s;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* =========================================
  2. ヘッダー (.l-header)
   ========================================= */
/* ロゴ + メニュー全体 */
.l-header {
  background: #fff;
  width: 100%;
  position: relative;
  z-index: 1000;
}

/* ロゴ + メニュー */
.l-header__main {
  padding: 20px 0;
}

/* ロゴ + メニューの横並び */
.flex-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 株式会社ユニケソフトウェアリサーチ */
.l-header__logo img {
  width: 320px;
  height: auto;
}

/* ロゴ + メニューの幅 */
.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ユニケについて　製品情報　会社案内　ポリシー */
.c-gnav {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

/* 各ナビゲーション項目 */
.c-gnav__item {
  position: relative;
}

.c-gnav__category {
  color: #333;
  font-size: 17px;
  padding: 10px 0;
  display: block;
  cursor: pointer;
}

/* ドロップダウン */
.c-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 10px 0;
  width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  z-index: 100;
  border-top: 3px solid #00a0e9;
}

.c-gnav__item:hover .c-dropdown {
  opacity: 1;
  visibility: visible;
  top: 120%;
}

.c-dropdown li a {
  padding: 10px 20px;
  display: block;
  color: #333;
  font-size: 14px;
}

.c-dropdown li a:hover {
  background: #f5f5f5;
  color: #00a0e9;
}

/* ==================================================
   ヘッダー (クラブユニケ用)
================================================== */
.l-club-header {
  background-color: #ffffff;
  padding: 15px 0;
  border-top: 3px solid #5fb6ff;
  /* 上部の青い線 */
  border-bottom: 1px solid #eeeeee;

  /* スクロール固定にする設定 */
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* 共通の inner flex-container の設定をこの中でだけ上書き */
.l-club-header .l-club-header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  /* メニューとボタンの間隔 */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ナビゲーションメニュー */
.l-club-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  /* メニュー項目同士の間隔 */
  list-style: none;
  margin: 0;
  padding: 0;
}

.l-club-header__nav li {
  white-space: nowrap;
  padding: 0;
  border: none;
  /* 古い縦線を無効化 */
}

.l-club-header__nav a {
  text-decoration: none;
  color: #005AAB;
  font-weight: bold;
  font-size: 19px;
  transition: opacity 0.3s ease;
  display: block;
}

.l-club-header__nav a:hover {
  opacity: 0.6;
}

/* ヘッダーのお問い合わせボタン */
.l-club-header__btn {
  white-space: nowrap;
}

.c-btn-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #00A3A8;
  /* 通常時の色 */
  color: #ffffff;
  font-weight: bold;
  font-size: 14px;
  padding: 8px 25px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  line-height: 1.4;
}

.c-btn-header:hover {
  background-color: #00C2C8;
  /* ホバー時に少し明るい色に変更 */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.c-btn-header .icon {
  margin-right: 6px;
  font-size: 16px;
}

/* =========================================
   3. ハンバーガーメニュー (.c-hamburger)
========================================= */
/* ハンバーガーメニュー (PCは非表示) */
.c-hamburger {
  display: none;
  width: 50px;
  height: 50px;
  background-color: #e8a1a1;
  border: none;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}

.c-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 13px;
  transition: 0.3s;
}

.c-hamburger span:nth-child(1) {
  top: 15px;
}

.c-hamburger span:nth-child(2) {
  top: 24px;
}

.c-hamburger span:nth-child(3) {
  top: 33px;
}

/* メニューオープン時の×印 */
.c-hamburger.is-active span:nth-child(1) {
  top: 24px;
  transform: rotate(45deg);
}

.c-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.c-hamburger.is-active span:nth-child(3) {
  top: 24px;
  transform: rotate(-45deg);
}

.pc-only {
  display: flex !important;
}

/* =========================================
  4. 製品サブヘッダー (全製品共通 .l-sub-header)
========================================= */
/* 製品ロゴ、機能～製品のお問い合わせ */
.l-sub-header {
  border-top: 3px solid #5fb6ff;
  border-bottom: 1px solid #eee;
  background: #fff;
  height: 70px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

  /* スクロール固定 */
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* 製品ロゴ */
.l-sub-header__logo img {
  height: 45px;
  width: auto;
  vertical-align: middle;
}

/* 機能～セミナー */
.l-sub-header__nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  align-items: center;
}

/* 機能～セミナーの各項目 */
.l-sub-header__nav li {
  border-right: 1px solid #ddd;
  padding: 0 15px;
}

.l-sub-header__nav li:first-child {
  border-left: 1px solid #ddd;
}

.l-sub-header__nav a {
  color: #333;
  font-size: 15px;
  display: block;
}

.l-sub-header__nav a:hover {
  color: #00a0e9;
}

/* 製品のお問い合わせ */
.c-btn-red {
  background: #ff5a4e;
  color: #fff;
  padding: 10px 25px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
}

.c-btn-red::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 12px;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22white%22%3E%3Cpath%20d%3D%22M20%202H4c-1.1%200-2%20.9-2%202v12c0%201.1.9%202%202%202h14l4%204V4c0-1.1-.9-2-2-2zm-2%2012H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  margin-right: 8px;
}

.c-btn-red:hover {
  background: #e04a3f;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(211, 47, 47, 0.4);
}

/* =========================================
  5. パンくずリスト (.c-breadcrumb)
   ========================================= */
.c-breadcrumb {
  background-color: #f9f9f9;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.c-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-breadcrumb__list li {
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: center;
}

.c-breadcrumb__list li a,
.c-breadcrumb__list li span {
  color: #2c72c3;
}

.c-breadcrumb__list li a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

.c-breadcrumb__list li::after {
  content: ">";
  margin: 0 12px;
  color: #666;
  font-family: Arial, sans-serif;
}

/* 製品名の後ろの「>」 */
.c-breadcrumb__list li:last-child::after {
  content: none;
}

/* 製品名 */
.c-breadcrumb__list li:last-child span {
  color: #333;
}

/* ================================
  6. よくある質問セクション（共通パーツ: .c-faq）
================================ */
.c-faq-section {
  padding: 80px 0;
  background: #ffffff;
}

.c-faq__list {
  max-width: 900px;
  margin: 0 auto;
}

/* 1つの質問ブロック */
.c-faq__item {
  border-bottom: 1px solid #e0e0e0;
  overflow: hidden;
  /* アニメーション用 */
}

/* 一番上の線 */
.c-faq__item:first-child {
  border-top: 1px solid #e0e0e0;
}

/* 質問エリア (クリック部分) */
.c-faq__q {
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px 40px 20px 10px;
  /* 右側にアイコン用の余白を確保 */
  font-size: 18px;
  font-weight: bold;
  color: var(--theme-color);
  /* ★サイトごとの色に自動変化！ */
  cursor: pointer;
  list-style: none;
  /* デフォルトの▶︎を消す */
  transition: background-color 0.3s;
}

/* ホバーでうっすら背景色をつける */
.c-faq__q:hover {
  background-color: #f9f9f9;
  /* var(--bg-gray) の代用 */
}

/* デフォルトの▶︎を消す（Safari対策） */
.c-faq__q::-webkit-details-marker {
  display: none;
}

/* 右側の三角アイコン（▶） */
.c-faq__q::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid var(--theme-color);
  /* ★サイトごとの色に自動変化！ */
  transition: transform 0.3s ease;
}

/* 開いた時はアイコンを下向き（▼）にする */
.c-faq__item[open] .c-faq__q::after {
  transform: translateY(-50%) rotate(90deg);
}

/* 回答エリア */
.c-faq__a {
  padding: 0 10px 30px 10px;
}

.c-faq__a p {
  margin: 0;
  color: #333333;
  font-size: 15px;
  line-height: 1.8;
}

.c-faq__a p+p {
  margin-top: 10px;
}

.c-faq__a a {
  color: #005AAB;
  /* ヘッダーと同じ綺麗な青色 */
  text-decoration: underline;
  /* リンクだと分かりやすいように下線を追加 */
  transition: opacity 0.3s ease;
}

.c-faq__a a:hover {
  opacity: 0.7;
  /* マウスを乗せたら少し薄くなるように */
}

/* ================================
  7. お問い合わせセクション (.p-contact)
================================ */
/* 色がサイトごとに変わる部分は、変数 var(--theme-color) を使う */
:root {
  --theme-color: #4a80c0;
  /* デフォルトのテーマカラー（青） */
}

.p-contact {
  padding: 80px 0;
  background: #f5f5f5;
  /* サイト全体の背景色に合わせて調整可 */
}

.p-contact__card {
  max-width: 800px;
  margin: 0 auto;
  border: 4px solid var(--theme-color);
  /* ★変数を使用 */
  background: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  /* 他のカードに合わせて少し角丸に */
  overflow: hidden;
}

.p-contact__header {
  background: var(--theme-color);
  /* ★変数を使用 */
  padding: 15px;
  text-align: center;
  color: #ffffff;
}

.p-contact__title {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
}

.p-contact__body {
  padding: 50px 20px;
  text-align: center;
}

.p-contact__lead {
  font-size: 18px;
  margin-bottom: 30px;
  font-weight: bold;
  color: #333333;
}

/* ▼ 元コードに無かったボタンの装飾を補完 ▼ */
.p-contact__btn-area {
  margin-bottom: 40px;
}

.p-contact__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--theme-color);
  /* ★変数を使用 */
  /* コンバージョンを促すオレンジ系（変更可） */
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  padding: 18px 60px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.p-contact__btn:hover {
  transform: translateY(2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), var(--theme-color);
}

.p-contact__btn-icon {
  margin-right: 8px;
}

/* ▲ ボタン装飾ここまで ▲ */

.p-contact__phone-lead {
  font-size: 16px;
  margin-bottom: 10px;
  color: #333333;
}

.p-contact__phone-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.p-contact__phone-link {
  color: var(--theme-color);
  /* ★変数を使用 */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.p-contact__phone-link:hover {
  opacity: 0.7;
}

.p-contact__phone-icon {
  font-size: 32px;
}

.p-contact__phone-number {
  font-size: 45px;
  font-weight: bold;
  line-height: 1;
  font-family: Arial, sans-serif;
}

.p-contact__phone-hours {
  font-size: 14px;
  color: #666666;
}

/* ================================
   8. 他製品ページリンク (.p-other-products)
================================ */
.p-other-products {
  padding: 80px 0;
  background-color: #ffffff;
}

/* グリッド全体の設定 */
.p-other-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 横に3列 */
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
  /* ★追加: 高さが違う画像が来ても間延びさせず、上揃えにする */
}

/* カラム（列）ごとの設定 */
.p-other-products__column {
  display: flex;
  flex-direction: column;
  /* カラム内では縦に並べる */
  gap: 24px;
  /* バナー同士の縦の隙間 */
}

.p-other-products__item a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: opacity 0.3s ease;
  line-height: 0;
}

.p-other-products__item a:hover {
  opacity: 0.7;
}

.p-other-products__item img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* =========================================
  9. フッター（ .l-footer）
   ========================================= */
.l-footer {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1;
  background-color: #ffffff;
  /* 白背景で統一 */
  padding: 40px 0 30px;
  /* 上下の余白 */
  border-top: 1px solid #eee;
  /* 上部にうっすらと境界線 */
}

/* ロゴとリンクエリアを横並びにする親要素 */
.l-footer__inner {
  display: flex;
  justify-content: center;
  /* 全体を中央寄りに */
  align-items: flex-start;
  gap: 80px;
  margin-bottom: 30px;
}

/* タイトルと高さを合わせる微調整 */
.l-footer__logo {
  padding-top: 5px;
}

.l-footer__logo img {
  width: 350px;
  height: auto;
}

/* 2つのリンク列を横並びにする */
.l-footer__nav {
  display: flex;
  gap: 50px;
  /* リスト間の余白 */
}

.l-footer__title {
  font-weight: normal;
  /* 画像に合わせて太字を解除 */
  font-size: 1rem;
  color: #333333;
  margin-bottom: 25px;
}

.l-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.l-footer__list li {
  margin-bottom: 15px;
  /* リスト間の縦の隙間を少し広めに */
}

/* リンク文字のスタイル */
.l-footer__list a {
  color: #555;
  /* 画像の落ち着いたグレーに寄せる */
  font-size: 0.95rem;
  transition: color 0.3s;
}

.l-footer__list a:hover {
  color: #004ea2;
  text-decoration: underline;
}

/* コピーライトエリア（右寄せ） */
.l-footer__copyright {
  text-align: right;
  padding-right: 10px;
}

.l-footer__copyright small {
  font-size: 0.75rem;
  color: #333;
}

/* ページトップボタン */
.c-pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s;
}

.c-pagetop.is-visible {
  opacity: 1;
  visibility: visible;
}

/* マウスを乗せた時：少し大きくする */
.c-pagetop:hover {
  transform: scale(1.1);
}

/* クリックされた時（JSでクラスを付与） */
/* ボタンがギュッと凝縮して、少し上に浮くアニメーション */
.c-pagetop.is-clicked {
  transform: scale(0.8) translateY(-20px);
  opacity: 0;
  /* 消えながら上へ移動 */
  pointer-events: none;
  /* 連打防止 */
}

.c-pagetop a {
  display: block;
  width: 50px;
  height: 50px;
  background-color: #fce4e4;
  border: 1px solid #e8a1a1;
  position: relative;
}

.c-pagetop a::after {
  content: "";
  position: absolute;
  top: 55%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid #e8a1a1;
  border-right: 2px solid #e8a1a1;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.icon {
  display: flex;
}

/* =========================================
   タブレット・中間サイズ対応 (1024px以下)
========================================= */
@media (max-width: 1024px) {
  .l-header__logo img {
    width: 200px;
    height: auto;
  }

  /* サブヘッダーの調整★ */
  .l-sub-header .inner {
    padding: 0 10px;
    /* 左右の余白を減らす */
  }

  .l-sub-header__logo img {
    height: 35px !important;
    /* 製品ロゴを少し小さく */
  }

  .l-sub-header__nav li {
    padding: 0 8px;
    /* メニュー同士の間隔を狭める */
  }

  .l-sub-header__nav a {
    font-size: 13px;
    /* 文字サイズを少し小さく */
    white-space: nowrap;
    /* 文字を改行させない */
  }

  .c-btn-red {
    padding: 10px 15px;
    /* お問い合わせボタンの余白を減らす */
    font-size: 12px;
    /* 文字を少し小さく */
    white-space: nowrap;
  }

  /* フッターの調整 */
  .l-footer__logo img {
    width: 260px;
    /* フッターロゴの幅を少し小さくしてスペースを確保 */
  }

  /* ヘッダーの文字サイズ */
  .l-club-header__nav a {
    font-size: 15px;
  }
}

/* =========================================
   12. レスポンシブ対応 (スマホ: 768px以下)
   ========================================= */
@media (max-width: 768px) {

  /* PC用パーツを隠す */
  .pc-only {
    display: none !important;
  }

  /* ロゴとハンバーガー */
  .l-header__main {
    padding: 10px 0;
  }

  .l-header__main .flex-container {
    flex-direction: row;
    justify-content: space-between;
  }

  .l-header__logo img {
    width: 200px;
    margin: 0;
    height: auto;
  }

  /* ハンバーガーメニューの表示 */
  .c-hamburger {
    display: block;
  }

  /* スマホナビ */
  .l-header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #fff;
    transition: 0.4s;
    z-index: 1000;
    padding-top: 70px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
  }

  .l-header__nav.is-open {
    right: 0;
  }

  .c-gnav {
    flex-direction: column;
    gap: 0;
  }

  .c-gnav__item {
    border-bottom: 1px solid #eee;
    width: 100%;
  }

  .c-gnav__category {
    padding: 15px 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* アコーディオンアイコン */
  .c-gnav__category::after {
    content: "+";
    font-weight: bold;
    color: #ccc;
  }

  .c-gnav__category.is-open::after {
    content: "-";
  }

  /* ドロップダウン (アコーディオン化) */
  .c-dropdown {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    border-top: none;
    opacity: 1;
    visibility: visible;
    display: none;
    background: #f9f9f9;
  }

  .c-dropdown li a {
    padding: 12px 30px;
    font-size: 14px;
  }


  /* ================================
     スマホ対応：FAQ
  ================================ */
  .c-faq-section {
    padding: 50px 0;
  }

  .c-faq__q {
    font-size: 15px;
    padding-right: 35px;
    /* アイコンに文字が被らないように */
  }

  .c-faq__a {
    font-size: 14px;
    padding: 0 10px 20px 10px;
  }

  /* ================================
     スマホ対応：お問い合わせ
  ================================ */
  .p-contact {
    padding: 50px 0;
  }

  .p-contact__body {
    padding: 30px 15px;
  }

  .p-contact__title {
    font-size: 20px;
  }

  .p-contact__lead {
    font-size: 15px;
  }

  .p-contact__btn {
    width: 100%;
    /* スマホでは横幅いっぱいに */
    padding: 15px 20px;
    font-size: 18px;
    box-sizing: border-box;
  }

  .p-contact__phone-icon {
    font-size: 24px;
  }

  .p-contact__phone-number {
    font-size: 34px;
  }

  /* ================================
   スマホ対応：他製品
================================ */
  .p-other-products {
    padding: 50px 0;
  }

  .p-other-products__grid {
    grid-template-columns: 1fr;
    /* 縦に1列 */
    gap: 16px;
    padding: 0 20px;
  }

  .p-other-products__column {
    gap: 16px;
    /* スマホ時のバナー同士の隙間 */
  }

  .p-other-products__item a {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  /* ================================
    スマホ対応：フッター
  ================================ */
  /* コンテンツ縦並び化 */
  .footer-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .l-footer__logo img {
    margin: 0 auto 10px;
  }


  .l-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    /* 中央揃えから「左寄せ」に */
    gap: 30px;
    padding: 0 10px;
    /* 左右に少し余白を持たせる */
  }

  .l-footer__logo img {
    width: 250px;
    height: auto;
  }

  .l-footer__nav {
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    text-align: left;
  }

  .l-footer__group {
    width: 50%;
    /* 画面幅を半分（50%）ずつ分け合う */
  }

  .l-footer__title {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .l-footer__list li {
    margin-bottom: 12px;
  }

  .l-footer__list a {
    font-size: 0.85rem;
    /* スマホ画面で改行されないように少し小さく */
  }

  .l-footer__copyright {
    text-align: center;
    /* コピーライトは中央のまま */
    padding-right: 0;
    margin-top: 40px;
  }

  /* コピーライトのサイズ */
  .l-footer__copyright small {
    font-size: 0.75rem;
  }
}