@charset "UTF-8";

/* 変数定義（デザインに合わせて微調整してください） */
:root {
  --c-primary: #001f5b; /* 濃い青 */
  --c-bg: #ffdf4d; /* 背景黄色 */
  --c-accent: #ff8c00; /* 装飾オレンジ */
  --header-height: 60px;
  --pc-top-offset: 50px;
  --pc-content-width: 450px;
  --scroll-offset: 80px;
  --font-main: 'Noto Sans JP', sans-serif;
}

/* ベースリセット (必要に応じて) */
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-offset);
}
body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--c-primary);
  background-color: #f5f5f5; /* PC用外側背景想定 */
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; height: auto; }

#about,
#map,
#posts,
#brands {
  scroll-margin-top: var(--scroll-offset);
}

.p-pc-deco { display: none; }

/* -----------------------------
  レイアウト (PC表示時のためのラッパー)
----------------------------- */
.l-app {
  max-width: 100%;
  margin: 0 auto;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  html {
    background-color: #ffdf4d;
    background-image:
      url('../img/pc_bg_2.png'),
      url('../img/image1.png');
    background-repeat: no-repeat, repeat;
    background-position: center top, top left;
    background-size: cover, auto;
    background-attachment: fixed, fixed;
  }
  html,
  body {
    height: 100%;
    overflow: hidden;
  }
  body {
    padding-top: var(--pc-top-offset);
    box-sizing: border-box;
    background: none;
  }
  .l-app {
    max-width: var(--pc-content-width);
    height: calc(100vh - var(--pc-top-offset));
    margin: 0 auto;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
    position: relative;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .l-app::-webkit-scrollbar {
    display: none;
  }
  
  /* PC用 右側の装飾エリア */
  .p-pc-deco {
    display: block;
    position: fixed;
    top: 0;
    left: 50%;
    width: 50vw;
    height: 0;
    pointer-events: none;
    z-index: 1;
    overflow: visible;
  }
  .p-pc-deco__img {
    position: fixed;
    border-radius: 50%;
    object-fit: cover;
    pointer-events: none;
  }
  .p-pc-deco__img--1 {
    top: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
  }
  .p-pc-deco__img--2 {
    top: 50%;
    left: calc(50% + 275px);
    width: 150px;
    height: 150px;
  }
  .p-pc-deco__img--3 {
    bottom: -100px;
    right: -50px;
    width: 350px;
    height: 350px;
    border-radius: 500px 500px 0 0;
  }
}

/* -----------------------------
  ヘッダー
----------------------------- */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: #fff;
  z-index: 100;
  border-bottom: 1px solid #eee;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .l-header {
    width: 100%;
    max-width: var(--pc-content-width);
    top: var(--pc-top-offset);
    left: 50%;
    transform: translateX(-50%);
  }
}

.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  height: 100%;
  padding: 0 15px;
}
.l-header__tagline {
  min-width: 0;
  color: var(--c-primary);
  line-height: 1.2;
}
.l-header__tagline-small {
  font-size: 0.65rem;
  font-weight: 700;
}
.l-header__tagline-large {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.l-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.l-header__logo img { height: 28px; }

/* ハンバーガーボタン */
.l-header__hamburger {
  width: 45px;
  height: 45px;
  background-color: var(--c-primary);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 101; /* ドロワーより上に */
}
@media screen and (min-width: 768px) {
  .l-header__hamburger {
    display: none;
  }
}
.l-header__hamburger span {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s;
}
.l-header__hamburger span:nth-of-type(1) { top: 14px; }
.l-header__hamburger span:nth-of-type(2) { top: 21px; }
.l-header__hamburger span:nth-of-type(3) { top: 28px; }

/* ハンバーガー展開時（バツ印へ） */
.l-header__hamburger.is-active span:nth-of-type(1) {
  top: 21px;
  transform: rotate(45deg);
}
.l-header__hamburger.is-active span:nth-of-type(2) {
  opacity: 0;
}
.l-header__hamburger.is-active span:nth-of-type(3) {
  top: 21px;
  transform: rotate(-45deg);
}

/* -----------------------------
  ドロワーメニュー
----------------------------- */
.l-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: calc(100% - 20px);
  height: 100vh;
  background-color: #fff;
  z-index: 90;
  padding-top: calc(var(--header-height) + 40px);
  transform: translateX(100%); /* 初期は右に隠す */
  transition: transform 0.4s ease;
  overflow-y: auto;
}
@media screen and (min-width: 768px) {
  .l-drawer { 
    width: calc(50% - 225px); 
    max-width: 400px;
    margin: 0 auto;
    left: calc(-50% - 225px);
    transform: none; 
    visibility: visible; 
    display: block; 
    background-color: transparent; 
    padding-top: 50px;
    height: 100vh;
    overflow-y: auto;
    z-index: 10;
  }
  .l-drawer.is-active { transform: none; visibility: visible; }
  .l-drawer::-webkit-scrollbar { display: none; }
  
  .l-drawer__logo--pc {
    display: flex!important;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 50px;
    padding-left: 10px;
  }
  .l-drawer__logo--pc .l-header__tagline { margin: 0; color: var(--c-primary); }
  .l-drawer__logo--pc .l-header__tagline-small { font-size: 0.9rem; }
  .l-drawer__logo--pc .l-header__tagline-large { font-size: 1.5rem; }
  .l-drawer__logo--pc .l-header__logo img { height: 32px; }
  
  .l-drawer__nav-box {
    background-color: #fff;
    border-radius: 20px;
    padding: 10px 20px;
    margin-bottom: 20px;
  }
  
  .l-drawer__inner { padding: 0; }
  .l-drawer__nav li { border-bottom: 1px solid rgba(0,0,0,0.05); }
  .l-drawer__nav li:last-child { border-bottom: none; }
  .l-drawer__nav a:not(.c-link-external) { font-size: 1rem; padding: 15px 0; color: var(--c-primary); }
  
  .l-drawer__subnav { margin: 0; padding-left: 10px; }
  .l-drawer__subnav li { border-bottom: 1px solid #fff; }
  .l-drawer__subnav li:first-child { border-top: none; }
  
  .c-link-external {
    padding: 20px 0 20px 20px!important;
  }
}

/* ノートPCなどビューポート高さが足りないときのみ左カラムを収める */
@media screen and (min-width: 768px) and (max-height: 900px) {
  .l-drawer {
    padding-top: var(--pc-top-offset);
    height: calc(100vh - var(--pc-top-offset));
    overflow: hidden;
  }

  .l-drawer__nav a:not(.c-link-external) {
    font-size: 0.8rem!important;
  }

  .l-drawer__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
  }

  .l-drawer__logo--pc {
    gap: 8px;
    margin-bottom: 16px;
    padding-left: 20px;
  }
  .l-drawer__logo--pc .l-header__tagline-small { font-size: 0.7rem; }
  .l-drawer__logo--pc .l-header__tagline-large { font-size: 1.05rem; }
  .l-drawer__logo--pc .l-header__logo img { height: 24px; }

  .l-drawer__nav-box {
    padding: 4px 16px;
    margin-bottom: 8px;
    flex-shrink: 0;
  }

  .l-drawer__nav a:not(.c-link-external) {
    font-size: 0.82rem;
    padding: 8px 0;
  }

  .l-drawer__subnav {
    padding: 0 20px;
    flex-shrink: 0;
  }
  .l-drawer__subnav .c-link-external {
    padding: 10px 0 10px 10px!important;
    font-size: 0.8rem;
  }

  .l-drawer__sns {
    justify-content: flex-start;
    padding-left: 20px;
    margin-top: auto;
    margin-bottom: 0;
    padding-bottom: 16px;
    gap: 10px;
    flex-shrink: 0;
  }
  .l-drawer__sns img {
    width: 30px;
    height: 30px;
  }
}

.l-drawer.is-active { transform: translateX(0); } /* スマホ時スライドイン */

.l-drawer__logo--pc { display: none; }

.l-drawer__inner { padding: 0 30px; }
.l-drawer__nav li {
  border-bottom: 1px solid #ddd;
}
.l-drawer__subnav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.l-drawer__subnav li {
  border-bottom: 1px solid #fff;
}
.l-drawer__nav a:not(.c-link-external) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-weight: bold;
  font-size: 1.1rem;
}
.l-drawer__nav a:not(.c-link-external):hover {
  color: #ff8c00;
}
.l-drawer__nav a:not(.c-link-external)::after {
  content: '';
  width: 8px; height: 8px;
  border-top: 2px solid var(--c-accent);
  border-right: 2px solid var(--c-accent);
  transform: rotate(45deg);
}
.l-drawer__sns {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
  padding-bottom: 40px;
}
.l-drawer__sns img { width: 40px; height: 40px; }

/* -----------------------------
  メイン・FVエリア
----------------------------- */
.l-main { padding-top: var(--header-height); }
@media screen and (min-width: 768px) {
  .l-main {
    position: relative;
    z-index: 2;
    background-color: #fff;
  }
}

.p-fv {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
}
.p-fv__bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: url('../img/img_fv_bg.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: 1;
}
.p-fv__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}
.p-fv__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0 0 30px;
  font-size: 1.5rem;
  font-weight: 900;
}
.p-fv__title-line {
  display: block;
  background-color: #fff;
  padding: 5px 10px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.p-fv__lead {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 30px;
}
.p-fv__tags {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.85rem;
  font-weight: bold;
  margin-bottom: 30px;
}

/* -----------------------------
  FV カルーセル (無限スクロール)
----------------------------- */
.p-fv__carousel {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
}
.p-fv__carousel-track {
  display: flex;
  width: max-content; /* 中身の幅に合わせる */
  animation: scrollCarousel 28s linear infinite;
}

/* 投稿カードコンポーネント */
.c-card-post {
  width: 100px; /* カード幅 */
  background: #fff;
  border-radius: 8px;
  padding: 8px;
  margin-right: 15px; /* カード間の余白 */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  flex-shrink: 0;
}
.c-card-post__img {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}
.c-card-post__img img {
  width: 100%; height: 100%; object-fit: cover;
}
.c-card-post__user {
  display: flex;
  align-items: center;
  gap: 5px;
}
.c-card-post__user-icon {
  width: 20px; height: 20px; border-radius: 50%;
}
.c-card-post__user-name {
  font-size: 0.75rem; color: var(--c-primary);
}

/* 無限スクロールアニメーション */
@keyframes scrollCarousel {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } 
  /* ※JSで中身を2倍にするため、-50%でちょうど1ループになります */
}

/* ==========================================================
   About セクション (追加)
========================================================== */
.p-about {
  position: relative;
  background-color: #fff;
  padding: 80px 20px;
  overflow: hidden; /* 装飾パーツの画面外はみ出しによる横スクロールを防止 */
  text-align: center;
  z-index: 1;
}

.p-about__inner {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  z-index: 2; /* テキストを装飾パーツより前面に配置 */
}

/* タイトルエリア */
.p-about__header {
  margin-bottom: 40px;
}
.p-about__en {
  display: block;
  color: var(--c-accent); /* 共通変数のオレンジ */
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 5px;
}
.p-about__title {
  color: var(--c-primary); /* 共通変数の濃い青 */
  font-size: 1.8rem;
  font-weight: 900;
  margin: 0;
  letter-spacing: 0.05em;
}

/* 本文エリア */
.p-about__content {
  color: #333;
}
.p-about__text {
  font-size: 0.95rem;
  line-height: 2;
  margin-bottom: 30px;
  font-weight: 700; /* デザイン画像に合わせた太めのウェイト */
}
.p-about__text:last-child {
  margin-bottom: 0;
}

/* 装飾パーツの共通設定 */
.p-about__deco {
  position: absolute;
  z-index: -1;
  pointer-events: none; /* テキスト選択やタップの邪魔をしない設定 */
}
.p-about__deco img {
  width: 100%;
  height: auto;
}

/* 各装飾パーツの個別配置設定 */
.p-about__deco--1 { /* image5: 右上・青ドット */
  top: 150px;
  right: 0;
  width: 55px;
}
.p-about__deco--2 { /* image2: 左・オレンジストライプ */
  top: 22%;
  left: 0;
  width: 60px;
}
.p-about__deco--3 { /* image4: 右・オレンジドット＋丸 */
  top: 46%;
  right: 0;
  width: 100px;
}
.p-about__deco--4 { /* image3: 左下・青ドット */
  bottom: 10%;
  left: 0;
  width: 75px;
}
.p-about__deco--5 { /* image6: 右下・オレンジストライプ＋青丸 */
  bottom: 3%;
  right: 0;
  width: 70px;
}

/* ==========================================================
   すごしかたマップ セクション (追加)
========================================================== */
.p-map {
  position: relative;
  background-color: transparent;
  background-image: url('../img/image1.png');
  background-repeat: repeat;
  background-size: 100% auto;
  padding: 80px 0 160px;
  text-align: center;
  z-index: 1;
  border-radius: 100px 100px 0 0;
}

.p-map__inner {
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* タイトルエリア */
.p-map__header {
  margin-bottom: 30px;
}
.p-map__en {
  display: block;
  color: var(--c-accent);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 5px;
}
.p-map__title {
  color: var(--c-primary);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.4;
  margin: 0;
  letter-spacing: 0.05em;
}

/* 地図ベースコンテナ */
.p-map__container {
  position: relative;
  background-color: #fff;
  border-radius: 24px;
  padding: 30px 15px;
  max-width: 100%;
  margin: 0 auto;
  aspect-ratio: 1 / 1; /* 正方形ベースでレスポンシブ管理 */
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-map__graph {
  width: 100%;
  height: auto;
  display: block;
}

/* エリア共通ボタンUI */
.c-btn-area {
  position: absolute;
  background-color: #fff;
  border: 2px solid var(--c-accent);
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  white-space: nowrap;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.c-btn-area:active {
  transform: scale(0.95);
  background-color: #fffbf0;
}
.c-btn-area__num {
  color: var(--c-accent);
  font-weight: 900;
  margin-left: 2px;
}

/* 各エリアボタンの位置マッピング（デザイン画像基準の暫定％配置）
   ※実際の書き出し地図画像の余白に合わせて数値を微調整してください */
.p-map__btn--hokkaido { top: 15%; right: 30%; }
.p-map__btn--tohoku { top: 40%; right: 5%; }
.p-map__btn--kanto { top: 52%; right: 5%; }
.p-map__btn--hokuriku { top: 45%; left: 22%; }
.p-map__btn--tokai { top: 64%; right: 12%; }
.p-map__btn--kinki { top: 57%; left: 20%; }
.p-map__btn--chugoku-shikoku { bottom: 15%; left: 30%; }
.p-map__btn--kyushu { bottom: 5%; left: 10%; }

/* ==========================================================
   100のすごしかた（投稿一覧）セクション (追加)
========================================================== */
.p-posts {
  background-color: #fff;
  padding: 0 0 80px;
  position: relative;
  border-radius: 50%;
  z-index: 3;
  margin-top: -80px;
}

.p-posts__arch {
  position: relative;
  height: 50px;
  pointer-events: none;
}
.p-posts__arch::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 300px;
  background-color: #fff;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.p-posts__inner {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* タイトルエリア */
.p-posts__header {
  text-align: center;
  padding: 20px 20px 30px;
  margin-bottom: 0;
}
.p-posts__en {
  display: block;
  color: var(--c-accent);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 5px;
}
.p-posts__title {
  color: var(--c-primary);
  font-size: 1.6rem;
  font-weight: 900;
  margin: 0;
  letter-spacing: 0.05em;
}

/* ==========================================================
   フィルターエリア
========================================================== */
.p-posts__filter {
  margin-bottom: 30px;
}
.p-posts__filter-row {
  padding: 12px 20px;
}
/* 1段目・2段目の背景色（オレンジの濃淡） */
.p-posts__filter-row--area {
  background-color: var(--c-bg);
}
.p-posts__filter-row--tag {
  background-color: #f57c00;
}

/* エリアボタン：オレンジボーダー */
.p-posts__filter-row--area .c-filter-btn span {
  border-color: var(--c-accent);
}

/* ハッシュタグボタン：赤ボーダー */
.p-posts__filter-row--tag .c-filter-btn span {
  border-color: #e53935;
}
.p-posts__filter-row--tag .c-filter-btn input:checked + span {
  background-color: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
}

/* 横スクロール設定 */
.p-posts__filter-scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  cursor: grab;
  overscroll-behavior-x: contain;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.p-posts__filter-scroll.is-dragging {
  cursor: grabbing;
}
.p-posts__filter-scroll::-webkit-scrollbar {
  display: none;
}

/* フィルターボタン（ラジオ/チェックボックス共通UI） */
.c-filter-btn {
  display: inline-block;
  flex: 0 0 auto;
  cursor: pointer;
}
.c-filter-btn input {
  display: none; /* デフォルトの入力UIを隠す */
}
.c-filter-btn span {
  display: block;
  background-color: #fff;
  color: #333;
  border: 1.5px solid #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.2s ease;
}
/* ホバー＆チェック（選択）時のスタイル */
.c-filter-btn input:checked + span {
  background-color: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
}

/* ==========================================================
   投稿グリッドエリア
========================================================== */
.p-posts__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列配置 */
  gap: 20px 15px;
  padding: 0 20px;
}

/* グリッド用カードコンポーネント */
.c-card-grid {
  display: flex;
  flex-direction: column;
}
.c-card-grid__post-link {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.c-card-grid__img {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
  background-color: #eee;
}
.c-card-grid__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-card-grid__user {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}
.c-card-grid__user-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.c-card-grid__user-name {
  font-size: 0.75rem;
  color: var(--c-primary);
  font-weight: 700;
}
.c-card-grid__brand {
  display: inline-block;
  color: var(--c-accent);
  border: 1px solid var(--c-accent);
  background-color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-align: center;
  width: calc(100% - 22px);
  margin-top: auto;
  text-decoration: none;
  align-self: flex-start;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
a.c-card-grid__brand:hover {
  background-color: var(--c-accent);
  color: #fff;
  border-color: var(--c-accent);
}

/* ローディングスピナー（無限スクロール検知用） */
.p-posts__loader {
  display: flex;
  justify-content: center;
  padding: 40px 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.p-posts__loader[hidden] {
  display: none;
}
.p-posts__loader.is-loading {
  opacity: 1;
}
.c-spinner {
  width: 30px;
  height: 30px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--c-accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ==========================================================
   ホテルブランド セクション (追加)
========================================================== */
.p-brands {
  background-color: #fff;
  padding: 0 20px 80px;
  position: relative;
  z-index: 2;
}

.p-brands__inner {
  max-width: 100%;
  margin: 0 auto;
}

/* タイトルエリア */
.p-brands__header {
  text-align: center;
  margin-bottom: 40px;
}
.p-brands__en {
  display: block;
  color: var(--c-accent);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.p-brands__lead {
  color: var(--c-primary);
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0 0 5px 0;
}
.p-brands__title {
  color: var(--c-primary);
  font-size: 1.6rem;
  font-weight: 900;
  margin: 0;
  letter-spacing: 0.05em;
}

/* ==========================================================
   ブランドリスト & カードコンポーネント
========================================================== */
.p-brands__list {
  display: flex;
  flex-direction: column;
}

.c-card-brand {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: opacity 0.2s ease;
}
a.c-card-brand:hover {
  opacity: 0.85;
}
/* 最後の要素は下線を消す */
.c-card-brand:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.c-card-brand__header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

/* 円形画像 */
.c-card-brand__img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background-color: #f5f5f5;
}

.c-card-brand__titles {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.c-card-brand__tag {
  color: var(--c-primary);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}

.c-card-brand__name-en {
  color: var(--c-primary);
  font-size: 1.45rem;
  font-weight: 900;
  margin: 0;
  line-height: 1.3;
}

.c-card-brand__name-ja {
  color: #666;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

.c-card-brand__desc {
  color: #333;
  line-height: 1.75;
  margin: 0;
}

/* ==========================================================
   フッターエリア (追加)
========================================================== */
.l-footer {
  position: relative;
  width: 100%;
  background-color: #fff;
  z-index: 10;
}

/* ページトップボタン */
.l-footer__pagetop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  background-color: transparent;
  background-image: url('../img/image1.png');
  background-repeat: repeat;
  background-size: 100% auto;
  color: var(--c-primary);
  font-size: 0.95rem;
  font-weight: 900;
  text-align: center;
  padding: 20px 0 70px;
  border: none;
  border-radius: 30px 30px 0 0;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.l-footer__pagetop::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23001f5b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 20L17 7M7 7h10v10'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  transform: rotate(-45deg);
}
.l-footer__pagetop:active {
  opacity: 0.85;
}

/* フッター内部コンテンツ */
.l-footer__inner {
  position: relative;
  background-color: #fff;
  border-radius: 30px 30px 0 0;
  margin-top: -1px;
  margin: -50px 0 0;
  padding: 50px 20px 30px;
  text-align: center;
}

/* ロゴエリア */
.l-footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  max-width: 100%;
  margin: 0 auto 40px;
}
.l-footer__tagline {
  color: var(--c-primary);
  line-height: 1.3;
  text-align: left;
  margin: 0;
}
.l-footer__tagline-small {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
}
.l-footer__tagline-large {
  display: block;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.l-footer__logo-img {
  flex-shrink: 0;
}
.l-footer__logo-img img {
  height: 32px;
  width: auto;
  display: block;
}

/* ナビゲーション */
.l-footer__nav {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}
.l-footer__nav li {
  border-bottom: 1px solid #eee;
  text-align: left;
}
.l-footer__nav li:first-child {
  border-top: 1px solid #eee;
}

/* 外部リンク用共通UI */
.c-link-external {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 20px 0;
  color: #333;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}
.c-link-external::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff8c00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 20L17 7M7 7h10v10'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-left: 15px;
}

/* SNSエリア */
.l-footer__sns {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 35px;
}
.c-sns-btn {
  display: block;
  width: 36px;
  height: 36px;
  transition: transform 0.2s ease;
}
.c-sns-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.c-sns-btn:active {
  transform: scale(0.9);
}

/* コピーライト */
.l-footer__copyright {
  color: #999;
  font-size: 0.7rem;
  font-weight: 500;
  margin: 0;
}