@charset "utf-8";

/* 余白・ボックスモデルのリセット */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 基本設定 */
html {
  -webkit-text-size-adjust: 100%;
  /* iOSの自動拡大を無効化 */
}

img {
  height: auto;
  display: block;
  border-style: none;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
  border-radius: 0;
  background: transparent;
  border: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #333333;
}

.header {
  max-width: 1440px;
  margin: 0 auto;

  top: 0;
  z-index: 100;
  background-color: #e9f8fa;
}

.header-inner {
  padding: 0px 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

h1 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.logo img {
  width: 80px;
  height: auto;
}

.lang-box {
  background-color: #e9f8fa;
  padding: 10px 130px 0px 130px;
  max-width: 1440px;
  margin: 0 auto;
}

.lang-switch {
  display: flex;
  gap: 8px;
  justify-content: left;
}

.lang-switch a {
  font-size: 16px;
  text-decoration: none;
  border: 1px solid #333;
  padding: 2px 30px;
  color: #333;
  border-radius: 5px;
  font-weight: 500;
}

.lang-switch a:hover {
  background: #333;
  color: #fff;
}

.nav {
  display: flex;
  gap: 50px;
  padding-right: 280px;
}

.nav a {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.nav a:hover {
  color: #9f9f9f;
}

/* ===== 半円CTA ===== */
.header-cta {
  position: fixed;
  top: -130px; /* ← 高さの半分だけ上に逃がす */
  right: 90px; /* ← 右端から少し左へ */

  width: 280px;
  height: 280px;
  background: #ff9f2d;
  border-radius: 50%; /* ← 完全な円 */
  opacity: 0.9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 100px;
  z-index: 1000;
}

.header-cta a {
  letter-spacing: 0.2em;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
}

.header-cta a:hover {
  color: #2bb3d6;
}

/* ===== ファーストビュー ===== */
.hero {
  max-width: 1440px;
  margin: 0 auto;
  background-color: #e9f8fa;
}

.hero-inner {
  max-width: 1440px;
  width: 100%;
  padding: 0 130px;
  height: 800px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* 各スライド */
.bg {
  position: absolute;
  inset: 0;
  background-size: auto;
  background-position: right center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: fade 18s infinite ease-in-out;
}

/* 画像指定 + 時間差 */
.bg1 {
  background-image: url(./img/hero6.png);
  animation-delay: 0s;
}
.bg2 {
  background-image: url(./img/hero2.png);
  animation-delay: 6s;
}
.bg3 {
  background-image: url(./img/hero3.png);
  animation-delay: 12s;
}

/* クロスフェード（1枚あたり約6秒、切替約1.5秒） */
@keyframes fade {
  0% {
    opacity: 0;
  }
  8% {
    opacity: 1;
  } /* じわっと出る */
  33% {
    opacity: 1;
  } /* 表示維持 */
  41% {
    opacity: 0;
  } /* じわっと消える */
  100% {
    opacity: 0;
  }
}

.hero-text {
  position: absolute;
  top: 43%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* 左揃え */
  gap: 12px;
}

.hero-sub {
  position: relative;
  display: inline-block;
  background: #fff;
  padding: 10px 16px;
  font-weight: bold;
  margin-bottom: 12px;
  font-size: 36px;
  letter-spacing: 0.28em;
  width: fit-content;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.hero-sub::before {
  content: "";
  position: absolute;
  top: -6px;
  right: -6px;
  width: 100%;
  height: 100%;
  background: #1cb9d5;
  z-index: -1;
}

.hero-title {
  display: inline-block;
  background: #fff;
  padding: 10px 16px;
  font-size: 36px;

  font-weight: 700;
  color: #2bb3d6;
  letter-spacing: 0.1em;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  position: relative;
}

.hero-title::before {
  content: "";
  position: absolute;
  top: -8px; /* 上にずらす */
  right: -8px; /* 右にずらす */
  width: 100%;
  height: 100%;
  background: #1cb9d5;
  z-index: -1; /* 背面に配置 */
}

.hero-title {
  font-weight: bold;
  line-height: 1.4;
}

/* メイン語（48pt） */
.hero-title .main-word {
  font-size: 48px;
  color: #2bb3d6; /* BLUE TREEのメインカラー想定 */
}

/* 助詞（36pt） */
.hero-title .sub-word {
  font-size: 36px;
  color: #2bb3d6;
}

/* 黒指定 */
.hero-title .black,
.hero-title .kakko {
  color: #000;
  font-size: 36px;
}

/* ここからアバウトセクション */
.about {
  max-width: 1440px;
  margin: 0 auto;
}

.about-inner {
  padding: 120px 130px;
  display: flex;
  flex-direction: column;
  align-items: center;

  background-image: url(./img/about-bg.png);
  background-repeat: no-repeat;
}

.about-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
}

.about-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.18em;
  color: #333;
  max-width: 900px;
  text-align: center;
}

/* ここから問題提起セクション */
.problem-intro {
  max-width: 1440px;
  margin: 0 auto;
}

.problem-inner {
  padding: 0; /* 画像のみなので余白なし */
}

.problem-intro img {
  width: 100%;
  height: auto;
  display: block;
}

/* ここから解決セクション */
.solution {
  max-width: 1440px;
  margin: 0 auto;
  padding: 120px 0;
  text-align: center;
}

.solution-inner {
  padding: 0 130px;
}

/* ===== 上部コピー ===== */
.solution-lead {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

/* テキスト */
.solution-lead .text {
  font-size: 32px;
  font-weight: 500; /* Medium */
  white-space: nowrap;
}

/* 共通の線 */
.solution-lead .line {
  width: 48px;
  height: 2px;
  background-color: #333333;
}

/* 左右の傾き */
.solution-lead .line.left {
  transform: rotate(40deg);
}

.solution-lead .line.right {
  transform: rotate(-40deg);
}

.solution-lead .line::after {
  content: "";
  position: absolute;
  top: 6px;
  width: 38px;
  height: 2px;
  background-color: #333333;
}

/* 左側 */
.solution-lead .line.left::after {
  left: 10px;
  transform: rotate(-15deg);
}

/* 右側 */
.solution-lead .line.right::after {
  right: 10px;
  transform: rotate(15deg);
}

/* 左右の傾き */
.solution-lead .line.left {
  transform: rotate(40deg);
}

.solution-lead .line.right {
  transform: rotate(-40deg);
}

/* ===== メインコピー ===== */
.solution-title {
  text-align: center;
  line-height: 1.3;
  position: relative;
}

/* 福祉タクシー */
.solution-sub {
  font-size: 36px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 8px;
  color: #2bb3d6;
}

/* “BLUE TREE” */
.solution-main {
  display: inline-block;
  position: relative;
  font-size: 60px;
  font-weight: 700;
  color: #2bb3d6;
  z-index: 1;
}

.solution-main::before {
  content: "";
  position: absolute;
  left: -6px;
  bottom: 6px;

  width: 100%;
  height: 18px;

  background: #ffe36a; /* 黄色マーカー */
  z-index: -1;
}

/* で */
.solution-de {
  font-size: 42px;
  font-weight: 500; /* Medium */
  margin-left: 8px;
}

/* 解決 */
.solution-ketsu {
  font-size: 50px;
  font-weight: 500; /* Medium */
  letter-spacing: 0.15em; /* トラッキング150 */
  margin-left: 6px;
}

/* ===== カード ===== */
.solution-cards {
  display: flex;
  justify-content: space-between;
  margin-top: 64px;
}

.solution-card {
  width: 30%;
  display: flex;
  flex-direction: column;
}

.solution-card p {
  margin-top: 16px;
  font-size: 16px;
}

/* ここからはご利用の流れセクション */
.flow {
  background: #a4e3ef;
  max-width: 1920x;
  margin: 0 auto;
  padding: 120px 0;
  text-align: center;
}

.flow-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 58px;
  display: inline-flex;
  align-items: center;

  letter-spacing: 0.18em;
  position: relative;
}

.flow-title::after {
  position: absolute;
  left: 250px;
  content: "";
  width: 40px;
  height: 40px;
  background-image: url(./img/flow-title.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: translateX(15px);
  transform: translateY(-15px);
}

.flow-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.flow-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  width: 330px;
  padding: 58px 29px 43px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flow-step {
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: #f7931e;
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
}

.flow-icon {
  width: 72px; /* 5vw */
  margin: 29px auto 22px; /* 2vw auto 1.5vw */
}

.flow-icon-wrap {
  height: 120px; /* ← 全カード共通 */
  display: flex;
  align-items: center; /* 縦中央 */
  justify-content: center;
}

.flow-heading {
  font-size: 24px; /* 1.4vw */
  font-weight: 700;
  color: #f7931e;
  margin-bottom: 14px; /* 1vw */
}

.flow-text {
  font-size: 16px; /* 1.1vw */
  line-height: 1.8;
  letter-spacing: 0.12em;
}

.flow-arrow {
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 24px solid #000;
  align-self: center;
}

.flow-body {
  margin-top: 16px;
}

/* ここから料金のセクション */
.price {
  max-width: 1440px;
  margin: 50px auto;
}

.price-inner {
  margin: 0 auto;
  padding: 80px 120px;
  text-align: center;
  max-width: 1180px;
  background: #20b9d6;
  border-radius: 40px;
}

.price-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.18em;
  color: #fff;
}

.price-title::after {
  position: absolute;
  left: 250px;
  content: "";
  width: 40px;
  height: 40px;
  background-image: url(./img/price-title.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: translateX(15px);
  transform: translateY(-15px);
}

.price-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
}

.price-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #fff;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #1ca0b9;
  box-shadow: 0px 5px 10px 2px rgba(0, 0, 0, 0.2);
}

.price-label {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.18em;
}

.price-value {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.price-attention {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.price-plus {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.price-example {
  display: inline-block;
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.price-list {
  margin: 50px auto 0px;
  max-width: 1180px;
}

.price-list-note {
  margin: 30px auto;
  max-width: 1180px;
  text-align: left;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.18em;
}

.price-list-note p {
  margin-bottom: 10px;
}

.price-list-note p span {
  color: red;
}

.price-list-example {
  margin: 100px auto 0px;
  max-width: 1180px;
}

/* ここから予約セクション */
.reserve-section {
  background-image: url(./img/reserve-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 200px 0;
  max-width: 1920px;
  margin: 0 auto;
  text-align: center;
}

.reserve-inner {
  padding: 50px 120px;
  margin: 0 auto;
  text-align: center;
}

.reserve-lead {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 32px;
  text-shadow:
    0 0 10px rgba(13, 75, 87, 0.15),
    /* スプレッド再現 */ 0 0 14px rgba(13, 75, 87, 0.15);
}

.reserve-buttons {
  display: flex;
  justify-content: center;
  gap: 36px;
}

.reserve-btn {
  min-width: 350px;
  padding: 10px 24px;
  border-radius: 14px;
  font-size: 36px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  letter-spacing: 0.2em;
}

.reserve-btn:hover {
  transform: translateY(2px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.reserve-btn--tel {
  background: #ffa726;
  color: #ffffff;
}

.reserve-btn--web {
  background: #ffffff;
  color: #ffa726;
}

/* ここから車両紹介セクション */
.vehicle {
  background: #cfeff4;
  padding: 50px 0;
  max-width: 1920px;
  margin: 100px auto;
}

.vehicle-inner {
  max-width: 1440px;
  padding: 0 120px;
  margin: 0 auto;
  text-align: center;
}

.vehicle-title {
  position: relative;
  display: inline-block;
  margin-bottom: 80px;
}

.title-text {
  display: flex;
  gap: -20px;
  position: relative;
  z-index: 2;
}

.title-text span {
  width: 56px;
  height: 56px;
  background: #ffffff;
  color: #1b7f92;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
}

/* 背面の青い丸 */
.vehicle-title::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate(6px, 6px);
  background: radial-gradient(circle, #1b7f92 60%, transparent 61%) repeat-x;
  background-size: 56px 56px;
  border-radius: 999px;
  z-index: 1;
}

.vehicle-circles {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}

.vehicle-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vehicle-item img {
  width: 90%;
  height: auto;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

/* 中央だけ下げる */
.vehicle-item.is-center {
  margin-top: 60px;
}

.vehicle-text {
  font-size: 24px;
  font-weight: 500;
  margin-top: 100px;
}

/* ここから質問セクション */
.faq {
  max-width: 1440px;
  margin: 50px auto;
}

.faq-inner {
  margin: 0 auto;
  padding: 80px 120px;
  text-align: center;
  max-width: 1180px;
}

.faq-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.18em;
}

.faq-title::after {
  position: absolute;
  left: 280px;
  content: "";
  width: 67px;
  height: 59px;
  background-image: url(./img/qa-icon.png);
  background-repeat: no-repeat;
  background-size: contain;

  transform: translateX(-40px);
  transform: translateY(-30px);
}

.faq-item {
  margin-bottom: 20px;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border: 2px solid #1b7f92;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  position: relative;
}

.faq-q {
  font-size: 20px;
  font-weight: 700;
}

.faq-a {
  font-size: 20px;
  font-weight: 700;
}

.faq-text {
  flex: 1;
  text-align: left;
  font-size: 20px;
  font-weight: 500;
}

.faq-icon {
  width: 36px;
  height: 36px;
  background: #1b7f92;
  border-radius: 50%;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: #fff;
}

.faq-icon::before {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  border: 0 solid #1b7f92;
  transition:
    max-height 0.3s ease,
    padding 0.2s ease,
    border-width 0.2s ease;
}

.faq-answer.is-open {
  max-height: 150px;
  padding: 22px 24px;
  border: 2px solid #1b7f92;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border-radius: 12px;
  background: #1b7f92;
  cursor: pointer;
  position: relative;
  margin-top: 5px;
  color: #fff;
}

.faq-answer p {
  padding: 16px 24px;
  line-height: 1.7;
  text-align: left;
}

.faq-item.active .faq-answer {
  max-height: 200px; /* 内容に応じて十分な値 */
}

.faq-item.active .faq-icon::after {
  display: none; /* プラス → マイナス */
}

.answer-icon {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  position: relative;
}

.answer-icon::before,
.answer-icon::after {
  content: "";
  position: absolute;
  background: #1b7f92;
}

.answer-icon::before {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ここから会社概要セクション */
/* セクション */

/* ここからブログセクション */
/* ===== ブログセクション ===== */
.blog {
  max-width: 1440px;
  margin: 50px auto;
}

.blog-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 120px;
  background: #cfeff4;
  border-radius: 32px;
}

/* タイトル */
.blog-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 56px;
}

/* リスト */
.blog-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 各行 */
.blog-item a {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 28px 0;
  text-decoration: none;
  color: #222;
  border-bottom: 1px solid #333;
  transition: opacity 0.2s ease;
}

.blog-item a:hover {
  opacity: 0.7;
}

/* 日付 */
.blog-date {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

/* タイトルテキスト */
.blog-text {
  flex: 1;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.12em;
  line-height: 1.6;
}

/* 矢印 */
.blog-arrow {
  width: 32px;
  height: 1px;
  background: #333;
  position: relative;
  flex-shrink: 0;
}

.blog-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -6px;
  width: 12px;
  height: 12px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
}

/* ===== セクション ===== */
.company {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 0;
}

/* ===== インナー ===== */
.company-inner {
  max-width: 1180px;
  margin: 0 auto;
}

/* ===== タイトル ===== */
.company-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 100px;
}

/* ===== ブロック共通 ===== */
.company-block {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 160px;
}

.company-block.reverse {
  flex-direction: row;
}

/* ===== テキスト ===== */
.company-text {
  flex: 1;
}

.company-role {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.company-catch {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.8;
  letter-spacing: 0.18em;
}

.company-message {
  font-size: 16px;
  line-height: 2;
  color: #555;
  margin-bottom: 40px;
  letter-spacing: 0.18em;
}

.company-name {
  font-size: 16px;
}

.name-ja {
  font-weight: 700;
  margin-left: 10px;
  font-size: 22px;
}

.name-en {
  margin-left: 20px;
  font-size: 14px;
  color: #1fa0b5;
  letter-spacing: 0.1em;
}

/* ===== 画像 ===== */
.company-image {
  width: 425px;
  flex-shrink: 0;
}

.company-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

/* ===== 会社情報全体 ===== */
.company-info {
  margin-top: 120px;
}

.info-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* ===== リスト ===== */
.info-list {
  width: 100%;
}

.info-row {
  display: flex;
  align-items: center;
  padding: 22px 40px;
}

/* 交互背景 */
.info-row:nth-child(odd) {
  background-color: #a4e3ef;
}

/* 項目名 */
.info-row dt {
  width: 180px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

/* 内容 */
.info-row dd {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

/* ここからフッター */
.footer {
  background-color: #a4e3ef;

  margin: 50px auto 0px;
}

/* ===== インナー ===== */
.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 120px 20px;
}

/* ===== 上段（ロゴ＋会社情報） ===== */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}

/* ===== ロゴ ===== */
.footer-logo img {
  max-width: 150px;
}

/* ===== 会社情報 ===== */
.footer-info {
  color: #333333;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.18em;
  text-align: right;
  font-weight: bold;
}

.footer-info p {
  margin: 10px 0px 10px 0px;
  text-align: left;
}

/* ===== コピーライト ===== */
.footer-copy {
  margin-top: 60px;
  text-align: center;
  color: #333333;
  font-size: 16px;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1.2s ease,
    transform 1.2s ease;
}

.fade-up.is-show {
  opacity: 1;
  transform: translateY(0);
}

.hamburger {
  display: none;
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
  z-index: 2000;
}

.hamburger span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #333;
  left: 0;
  transition: 0.3s;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 9px;
}

.hamburger span:nth-child(3) {
  bottom: 0;
}

/* バツ */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 10px;
}

.sp-cta {
  display: none;
}

/*  */
/* スマホ版CSS */

@media (max-width: 768px) {
  .header {
    width: 100%;
  }

  .hero {
    width: 100%;
  }

  .about {
    width: 100%;
  }

  .problem-intro {
    width: 100%;
  }

  .solution {
    width: 100%;
  }

  /* 1180pxコンテンツ */

  .solution-inner,
  .blog-inner,
  .faq-inner,
  .price-inner,
  .company-inner {
    padding-left: 10px;
    padding-right: 10px;
  }

  /* PCナビ消す */

  .nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #1cb9d5;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transform: translateX(100%);
    transition: 0.4s;
    z-index: 10;
    padding-right: 0;
  }

  .nav a {
    text-align: center;
  }

  /* 開いた状態 */

  .nav.active {
    transform: translateX(0);
  }

  /* ハンバーガー表示 */

  .hamburger {
    display: block;
  }

  /* PC CTA削除 */

  .header-cta {
    display: none;
  }

  /* SP CTA */

  .sp-cta {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .sp-cta a {
    font-size: 20px;
    font-weight: 700;
  }

  .sp-cta-tel {
    background-color: #ff9f2d;
    color: #fff;
    border-radius: 10px;
    padding: 5px 10px;
  }

  .sp-cta-web {
    background-color: #ff9f2d;
    color: #fff;
    border-radius: 10px;
    padding: 5px 10px;
  }

  .sp-cta-toiawase {
    background-color: #ff9f2d;
    color: #fff;
    border-radius: 10px;
    padding: 5px 10px;
  }

  .header-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .logo img {
    width: 45px;
  }

  h1 {
    font-size: 12px;
  }

  .hero {
    width: 100%;
    height: 300px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hero-inner {
    height: 100%;
  }

  .bg {
    position: absolute;
    inset: 0;
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: fade 18s infinite ease-in-out;
  }

  .bg1 {
    background-image: url(./img/hero6.png);
    animation-delay: 0s;
  }
  .bg2 {
    background-image: url(./img/hero2.png);
    animation-delay: 6s;
  }
  .bg3 {
    background-image: url(./img/hero3.png);
    animation-delay: 12s;
  }

  /* クロスフェード（1枚あたり約6秒、切替約1.5秒） */
  @keyframes fade {
    0% {
      opacity: 0;
    }
    8% {
      opacity: 1;
    } /* じわっと出る */
    33% {
      opacity: 1;
    } /* 表示維持 */
    41% {
      opacity: 0;
    } /* じわっと消える */
    100% {
      opacity: 0;
    }
  }

  .hero-text {
    position: absolute;
    top: 50%;
    transform: translateX(-50%);
    margin-left: 10px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* 左揃え */
    gap: 10px;
  }

  .hero-sub {
    position: relative;
    display: inline-block;
    background: #fff;
    padding: 5px 8px;
    font-weight: bold;
    margin-bottom: 6px;
    font-size: 16px;
    letter-spacing: 0.18em;
    width: fit-content;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  }

  .hero-sub::before {
    content: "";
    position: absolute;
    top: -6px;
    right: -6px;
    width: 100%;
    height: 100%;
    background: #1cb9d5;
    z-index: -1;
  }

  .hero-title {
    display: inline-block;
    background: #fff;
    padding: 5px 8px;
    font-size: 16px;

    font-weight: 700;
    color: #2bb3d6;
    letter-spacing: 0.18em;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    position: relative;
    white-space: nowrap;
    display: inline-flex;
  }

  .hero-title::before {
    content: "";
    position: absolute;
    top: -6px; /* 上にずらす */
    right: -6px; /* 右にずらす */
    width: 100%;
    height: 100%;
    background: #1cb9d5;
    z-index: -1; /* 背面に配置 */
  }

  .hero-title {
    font-weight: bold;
    line-height: 1.4;
  }

  /* メイン語（48pt） */
  .hero-title .main-word {
    font-size: 16px;
    color: #2bb3d6; /* BLUE TREEのメインカラー想定 */
  }

  /* 助詞（36pt） */
  .hero-title .sub-word {
    font-size: 16px;
    color: #2bb3d6;
  }

  /* 黒指定 */
  .hero-title .black,
  .hero-title .kakko {
    color: #000;
    font-size: 16px;
  }

  /* ここからアバウトセクション */

  .about-inner {
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;

    background-image: url(./img/about-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
  }

  .about-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
  }

  .about-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.18em;
    color: #333;

    text-align: center;
  }

  /* ここから解決セクション */
  .solution {
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
  }

  .solution-inner {
    padding: 0px;
  }

  /* ===== 上部コピー ===== */
  .solution-lead {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 15px;
  }

  /* テキスト */
  .solution-lead .text {
    font-size: 18px;
    font-weight: 500; /* Medium */
    white-space: nowrap;
  }

  /* 共通の線 */
  .solution-lead .line {
    width: 48px;
    height: 2px;
    background-color: #333333;
  }

  /* 左右の傾き */
  .solution-lead .line.left {
    transform: rotate(40deg);
  }

  .solution-lead .line.right {
    transform: rotate(-40deg);
  }

  .solution-lead .line::after {
    content: "";
    position: absolute;
    top: 6px;
    width: 38px;
    height: 2px;
    background-color: #333333;
  }

  /* 左側 */
  .solution-lead .line.left::after {
    left: 10px;
    transform: rotate(-15deg);
  }

  /* 右側 */
  .solution-lead .line.right::after {
    right: 10px;
    transform: rotate(15deg);
  }

  /* 左右の傾き */
  .solution-lead .line.left {
    transform: rotate(40deg);
  }

  .solution-lead .line.right {
    transform: rotate(-40deg);
  }

  /* ===== メインコピー ===== */
  .solution-title {
    text-align: center;
    line-height: 1.3;
    position: relative;
  }

  /* 福祉タクシー */
  .solution-sub {
    font-size: 36px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 8px;
    color: #2bb3d6;
  }

  /* “BLUE TREE” */
  .solution-main {
    display: inline-block;
    position: relative;
    font-size: 20px;
    font-weight: 700;
    color: #2bb3d6;
    z-index: 1;
  }

  .solution-main::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;

    width: 100%;
    height: 8px;

    background: #ffe36a; /* 黄色マーカー */
    z-index: -1;
  }

  /* ===== カード ===== */
  .solution-cards {
    display: flex;
    flex-direction: column;

    margin-top: 64px;
    width: 100%;
  }

  .solution-card {
    width: 80%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
  }

  .solution-card p {
    margin-top: 0px;
    margin-bottom: 10px;
    font-size: 16px;
  }

  /* ここからはご利用の流れセクション */
  .flow {
    background: #a4e3ef;
    max-width: 1920x;
    margin: 30px auto;
    padding: 30px;
    text-align: center;
  }

  .flow-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 58px;
    display: inline-flex;
    align-items: center;

    letter-spacing: 0.18em;
    position: relative;
  }

  .flow-title::after {
    position: absolute;
    left: 140px;
    content: "";
    width: 20px;
    height: 20px;
    background-image: url(./img/flow-title.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transform: translateX(15px);
    transform: translateY(-15px);
  }

  .flow-cards {
    display: flex;
    flex-direction: column;

    justify-content: center;
    margin: 30px auto;
  }

  .flow-card {
    margin: 0 auto;
    position: relative;
    background: #fff;
    border-radius: 24px;
    width: 330px;
    padding: 10px auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .flow-step {
    position: absolute;
    top: -38px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: #f7931e;
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.05em;
  }

  .flow-icon {
    width: 72px; /* 5vw */
    margin: 29px auto 22px; /* 2vw auto 1.5vw */
  }

  .flow-icon-wrap {
    height: 60px; /* ← 全カード共通 */
    display: flex;
    align-items: center; /* 縦中央 */
    justify-content: center;
  }

  .flow-heading {
    font-size: 20px; /* 1.4vw */
    font-weight: 700;
    color: #f7931e;
    margin-bottom: 14px; /* 1vw */
  }

  .flow-text {
    font-size: 16px; /* 1.1vw */
    line-height: 1.8;
    letter-spacing: 0.12em;
  }

  .flow-arrow {
    width: 0;
    height: 0;
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-top: 24px solid #000;
    align-self: center;
    margin: 30px auto;
  }

  .flow-body {
    margin-top: 16px;
  }

  /* ここから料金のセクション */
  .price {
    max-width: 1440px;
    margin: 50px 10px 10px;
  }

  .price-inner {
    margin: 0 auto;
    padding: 10px 10px;
    text-align: center;
    max-width: 1180px;
    background: #20b9d6;
    border-radius: 40px;
  }

  .price-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    margin-top: 30px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.18em;
    color: #fff;
  }

  .price-title::after {
    position: absolute;
    left: 140px;
    content: "";
    width: 20px;
    height: 20px;
    background-image: url(./img/price-title.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transform: translateX(15px);
    transform: translateY(-15px);
  }

  .price-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-bottom: 40px;
  }

  .price-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #1ca0b9;
    box-shadow: 0px 5px 10px 2px rgba(0, 0, 0, 0.2);
  }

  .price-label {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.18em;
  }

  .price-value {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.18em;
  }

  .price-attention {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
  }

  .price-plus {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
  }

  .price-example {
    display: inline-block;
    color: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1em;
  }

  .price-list {
    margin: 30px auto 10px;
    max-width: 1180px;
  }

  .price-list img {
    max-width: 100%;
    margin: 0 auto;
  }

  .price-list-note {
    margin: 10px auto;
    max-width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.1em;
  }

  .price-list-note p {
    margin-bottom: 10px;
  }

  .price-list-note p span {
    color: red;
    letter-spacing: 0.1em;
  }

  .price-list-example {
    margin: 30px auto 10px;
    max-width: 1180px;
  }

  .price-list-example img {
    max-width: 100%;
    margin: 0 auto;
  }

  /* ここから予約セクション */
  .reserve-section {
    background-image: url(./img/reserve-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px 0;
    max-width: 1920px;
    margin: 0 auto;
    text-align: center;
  }

  .reserve-inner {
    padding: 10px 20px;
    margin: 0 auto;
    text-align: center;
  }

  .reserve-lead {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow:
      0 0 10px rgba(13, 75, 87, 0.15),
      /* スプレッド再現 */ 0 0 14px rgba(13, 75, 87, 0.15);
  }

  .reserve-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
  }

  .reserve-btn {
    min-width: 150px;
    height: 40px;
    padding: 3px 5px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
    letter-spacing: 0.1em;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .reserve-btn:hover {
    transform: translateY(2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  }

  .reserve-btn--tel {
    background: #ffa726;
    color: #ffffff;
  }

  .reserve-btn--web {
    background: #ffffff;
    color: #ffa726;
  }

  /* ここから車両紹介セクション */
  .vehicle {
    background: #cfeff4;
    padding: 20px 0;
    max-width: 1920px;
    margin: 50px auto;
  }

  .vehicle-inner {
    max-width: 1440px;
    padding: 0 20px;
    margin: 0 auto;
    text-align: center;
  }

  .vehicle-title {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
  }

  .title-text {
    display: flex;
    gap: -20px;
    position: relative;
    z-index: 2;
  }

  .title-text span {
    width: 40px;
    height: 40px;
    background: #ffffff;
    color: #1b7f92;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
  }

  /* 背面の青い丸 */
  .vehicle-title::before {
    content: "";
    position: absolute;
    inset: 0;
    transform: translate(6px, 6px);
    background: radial-gradient(circle, #1b7f92 60%, transparent 61%) repeat-x;
    background-size: 40px 40px;
    border-radius: 999px;
    z-index: 1;
  }

  .vehicle-circles {
    display: flex;
    flex-direction: column;

    margin-bottom: 20px;
  }

  .vehicle-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
  }

  .vehicle-item img {
    width: 70%;
    height: auto;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
  }

  /* 中央だけ下げる */
  .vehicle-item.is-center {
    margin-top: 0px;
  }

  .vehicle-text {
    font-size: 16px;
    font-weight: 500;
    margin-top: 20px;
  }

  /* ここから質問セクション */
  .faq {
    max-width: 1440px;
    margin: 20px auto;
  }

  .faq-inner {
    margin: 0 auto;
    padding: 20px 10px;
    text-align: center;
    max-width: 1180px;
  }

  .faq-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.18em;
  }

  .faq-title::after {
    position: absolute;
    left: 160px;
    content: "";
    width: 30px;
    height: 30px;
    background-image: url(./img/qa-icon.png);
    background-repeat: no-repeat;
    background-size: contain;

    transform: translateX(-20px);
    transform: translateY(-15px);
  }

  .faq-item {
    margin-bottom: 10px;
  }

  .faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    border: 2px solid #1b7f92;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    position: relative;
  }

  .faq-q {
    font-size: 16px;
    font-weight: 700;
  }

  .faq-a {
    font-size: 16px;
    font-weight: 700;
  }

  .faq-text {
    flex: 1;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
  }

  .faq-icon {
    width: 26px;
    height: 26px;
    background: #1b7f92;
    border-radius: 50%;
    position: relative;
  }

  .faq-icon::before,
  .faq-icon::after {
    content: "";
    position: absolute;
    background: #fff;
  }

  .faq-icon::before {
    width: 16px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .faq-icon::after {
    width: 2px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    border: 0 solid #1b7f92;
    transition:
      max-height 0.3s ease,
      padding 0.2s ease,
      border-width 0.2s ease;
  }

  .faq-answer.is-open {
    max-height: 350px;
    padding: 22px 24px;
    border: 2px solid #1b7f92;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #1b7f92;
    cursor: pointer;
    position: relative;
    margin-top: 5px;
    color: #fff;
  }

  .faq-answer p {
    padding: 16px 24px;
    line-height: 1.7;
    text-align: left;
  }

  .faq-item.active .faq-answer {
    max-height: 200px; /* 内容に応じて十分な値 */
  }

  .faq-item.active .faq-icon::after {
    display: none; /* プラス → マイナス */
  }

  .answer-icon {
    width: 26px;
    height: 26px;
    background: #fff;
    border-radius: 50%;
    position: relative;
  }

  .answer-icon::before,
  .answer-icon::after {
    content: "";
    position: absolute;
    background: #1b7f92;
  }

  .answer-icon::before {
    width: 16px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  /* ここからブログセクション */
  /* ===== ブログセクション ===== */
  .blog {
    max-width: 1440px;
    margin: 20px auto;
  }

  .blog-inner {
    max-width: 1180px;
    margin: 0 10px;
    padding: 10px 10px;
    background: #cfeff4;
    border-radius: 32px;
  }

  /* タイトル */
  .blog-title {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
  }

  /* リスト */
  .blog-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .blog-item {
    margin-bottom: 20px;
  }

  /* 各行 */
  .blog-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
    text-decoration: none;
    color: #222;
    border-bottom: 1px solid #333;
    transition: opacity 0.2s ease;
  }

  .blog-item a:hover {
    opacity: 0.7;
  }

  /* 日付 */
  .blog-date {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }

  /* タイトルテキスト */
  .blog-text {
    flex: 1;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.12em;
    line-height: 1.5;
  }

  /* 矢印 */
  .blog-arrow {
    display: none;
  }

  /* ===== ここからカンパニーセクション ===== */
  .company {
    max-width: 1440px;
    margin: 30px auto 0px;
    padding: 20px 0;
  }

  /* ===== インナー ===== */
  .company-inner {
    max-width: 1180px;
    margin: 0 auto;
  }

  /* ===== タイトル ===== */
  .company-title {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
  }

  /* ===== ブロック共通 ===== */
  .company-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 70px;
    padding: 0 10px;
  }

  .company-block.reverse {
    flex-direction: column;
  }

  /* ===== テキスト ===== */
  .company-text {
    flex: 1;
  }

  .company-role {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .company-catch {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
    letter-spacing: 0.18em;
  }

  .company-message {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    letter-spacing: 0.18em;
  }

  .company-name {
    font-size: 16px;
  }

  .name-ja {
    font-weight: 700;
    margin-left: 10px;
    font-size: 20px;
  }

  .name-en {
    margin-left: 10px;
    font-size: 14px;
    color: #1fa0b5;
    letter-spacing: 0.1em;
  }

  /* ===== 画像 ===== */
  .company-image {
    width: 70%;
    flex-shrink: 0;
    margin: 0 auto;
  }

  .company-image img {
    width: 100%;
    border-radius: 20px;
    display: block;
  }

  /* ===== 会社情報全体 ===== */
  .company-info {
    margin-top: 80px;
  }

  .info-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  /* ===== リスト ===== */
  .info-list {
    width: 100%;
  }

  .info-row {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    text-align: left;
  }

  /* 交互背景 */
  .info-row:nth-child(odd) {
    background-color: #a4e3ef;
  }

  /* 項目名 */
  .info-row dt {
    width: 100px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-align: left;
  }

  /* 内容 */
  .info-row dd {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.18em;

    flex: 1;
  }

  /* ここからフッター */
  .footer {
    background-color: #a4e3ef;

    margin: 30px auto 0px;
  }

  /* ===== インナー ===== */
  .footer-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 30px 10px 20px;
  }

  /* ===== 上段（ロゴ＋会社情報） ===== */
  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    gap: 20px;
  }

  /* ===== ロゴ ===== */
  .footer-logo img {
    display: block;
    max-width: 80px;
    margin: 0 auto;
  }

  /* ===== 会社情報 ===== */
  .footer-info {
    color: #333333;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.18em;
    text-align: center;
    font-weight: bold;
  }

  .footer-info p {
    margin: 10px 0px 10px 0px;
    text-align: center;
  }

  /* ===== コピーライト ===== */
  .footer-copy {
    margin-top: 30px;
    text-align: center;
    color: #333333;
    font-size: 12px;
    letter-spacing: 0.12em;
    font-weight: 500;
  }
}
