
.section__title {
  font-family: "Arial";
  font-size: 2.8rem;
  display: inline-block;
  background: linear-gradient(90deg, #000000, #f21d89);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* Firefox対応 */
  text-fill-color: transparent;
  letter-spacing: 0.08em;
  position: relative;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, letter-spacing 0.3s ease;
}

.section__title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  /* 左揃え */
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #000000, #f21d89, #000000);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(242, 29, 137, 0.6);
  animation: line-glow 3s infinite linear;
  background-size: 200% auto;
}

@keyframes line-glow {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
  .section__title {
    font-size: 2rem;
    /* スマホ向けに縮小 */
    letter-spacing: 0.05em;
  }

  .section__title::after {
    width: 70px;
    /* 下線も短く調整 */
    height: 4px;
    bottom: -10px;
  }
  
}

@media (max-width: 480px) {
  .section__title {
    font-size: 1.6rem;
    /* 小さい画面向け */
    letter-spacing: 0.04em;
  }

  .section__title::after {
    width: 50px;
    height: 3px;
    bottom: -8px;
  }
}


/* Topセクション */
.top-section {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

.top-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
.top-section {
    height: 43vh;
}
}

.top-title {
  position: absolute;
  font-family: system-ui, sans-serif;
  top: 57%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-weight: bold;
  font-size: clamp(1.5rem, 5vw, 3rem);
  color: #ffffff; /* 基本文字色 */

  /* 文字だけの3D感 */
  text-shadow: 
1px 1px 0 #f21d89, 
2px 2px 0 #333, 
3px 3px 0 #088b0b, 
4px 4px 0 #f21d89, 
5px 5px 5px rgba(0, 0, 0, 0.5);
}


/* 文字サイズを画面幅に応じて調整 */
.top-title h1 {
  position: relative;
  font-size: clamp(1.5rem, 5vw, 3rem);
  z-index: 1;
  background: none;
  display: inline-block;
  padding: 1em 2em;
  white-space: nowrap;
}

/* 各文字をアニメーション対象にする */
.top-title h1 span {
  display: inline-block;
  opacity: 0;
  animation: fly-in 1s forwards;
}

/* 1文字ずつディレイを付けて順番に出現 */
.top-title h1 span:nth-child(1) { animation-delay: 0.1s; }
.top-title h1 span:nth-child(2) { animation-delay: 0.2s; }
.top-title h1 span:nth-child(3) { animation-delay: 0.3s; }
.top-title h1 span:nth-child(4) { animation-delay: 0.4s; }
.top-title h1 span:nth-child(5) { animation-delay: 0.5s; }
.top-title h1 span:nth-child(6) { animation-delay: 0.6s; }
.top-title h1 span:nth-child(7) { animation-delay: 0.7s; }

/* アニメーション定義：いろんな方向から飛んでくる */
@keyframes fly-in {
  0% {
    opacity: 0;
    transform: translate(
      calc(var(--x, 0) * 100px),
      calc(var(--y, 0) * 100px)
    ) rotate(-30deg);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(0);
  }
}

/* ランダムっぽさを出すためにカスタムプロパティで方向を変える */
.top-title h1 span:nth-child(odd) { --x: 1; --y: -1; }
.top-title h1 span:nth-child(even) { --x: -1; --y: 1; }



.top-title h1 {
  position: relative;
  font-size: clamp(1.5rem, 5vw, 3rem); /* 最小1.5rem、最大3rem */
  z-index: 1; /* 丸より前面に表示 */
  background: none; /* 背景なし */
  display: inline-block;
  padding: 1em 2em; /* paddingも文字サイズに合わせる */
}

.top-title h1::before {
  content: "";
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(100px, 25vw, 280px);
  height: clamp(100px, 25vw, 280px);
  
  /* 球体っぽいグラデーション */
  background: radial-gradient(circle at 30% 30%, 
              rgb(242 29 137 / 62%), 
              rgba(50, 150, 255, 0.8), 
              rgba(10, 20, 60, 0.95));
  
  border-radius: 50%;

  /* 光沢・立体感 */
  box-shadow: 
    inset -10px -10px 25px rgba(255, 255, 255, 0.7),
    inset 8px 8px 20px rgba(0, 0, 0, 0.4),
    0 12px 25px rgba(0, 0, 0, 0.5),
    0 0 25px rgba(50, 150, 255, 0.6); /* ネオン外光 */
  
  z-index: -1;
  animation: glowPulse 6s ease-in-out infinite;
}

/* ネオンが呼吸するようなアニメーション */
@keyframes glowPulse {
  0%, 100% {
    box-shadow: 
      inset -10px -10px 25px rgba(255, 255, 255, 0.7),
      inset 8px 8px 20px rgba(0, 0, 0, 0.4),
      0 12px 25px rgba(0, 0, 0, 0.5),
      0 0 25px rgba(50, 150, 255, 0.6);
  }
  50% {
    box-shadow: 
      inset -8px -8px 20px rgba(255, 255, 255, 0.8),
      inset 6px 6px 18px rgba(0, 0, 0, 0.35),
      0 10px 20px rgba(0, 0, 0, 0.45),
      0 0 45px rgba(50, 200, 255, 0.9);
  }
}


/********************************
矢印の場所　css　start
*********************************/
/* コンテナ全体 */
.breadcrumb-container {
  display: flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, #928866, #33465f);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  backdrop-filter: blur(5px);
  padding: 0px 0px 0px 20px;
}

/* ロゴ */
.breadcrumb-logo img {
  height: 20px;
  width: auto;
  transition: transform 0.3s;
}

.breadcrumb-logo img:hover {
  transform: scale(1.1) rotate(-5deg);
}

/* パンくずリスト */
.main-header-breadcrumbs-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

/* 矢印 */
/* パンくずリスト */
.main-header-breadcrumbs-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-size: 12px;
}

/* 矢印装飾 */
.main-header-breadcrumbs-list li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: 0 10px;
  background: linear-gradient(135deg, #ffcc00, #ff9900);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transition: transform 0.3s, filter 0.3s;
}

.main-header-breadcrumbs-list li:not(:last-child):hover::after {
  transform: translateX(3px) rotate(10deg);
  filter: drop-shadow(0 0 4px #ffeb3b);
}

/* リンク */
.main-header-breadcrumbs-list li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}

.main-header-breadcrumbs-list li a:hover {
  color: #ffeb3b;
  transform: translateY(-2px);
}

/* 現在のページ */
.main-header-breadcrumbs-list li.current {
  color: #ffeb3b;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

/* レスポンシブ調整 */
@media screen and (max-width: 600px) {
 
  .main-header-breadcrumbs-list {
    gap: 5px;
    font-size: 13px;
  }
}
.about-info {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
}

/***********************************
矢印の場所　css　end
***********************************/


/* レスポンシブ */
@media screen and (max-width: 768px) {
  .top-title span {
    font-size: 2rem;
  }

  .top-title h1 {
    font-size: 1.5rem;
    padding: 8px 15px;
  }
}

/***********************************
table　css　ｓtart
***********************************/
/* 共通セクション */
.section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* タイトル */
.section__title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
/* 会社概要リスト */
.about-info__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.about-info__item {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform .25s ease;
}
.about-info__item:hover {
  transform: translateY(-4px);
}
.about-info__title {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  border-left: 4px solid #f21d89; /* 左ラインで統一感 */
  padding-left: 8px;
}
.about-info__description {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .about-info__container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/***********************************
table　css　end
***********************************/

/*******************************
access-info　css　start
*******************************/
.access-info {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #ffd100, #203a43, #2c5364); /* ネオングラデーション */
  overflow: hidden;
  color: #fff;
}

.access-info .inner {
    max-width: 1000px;
    margin: 0 auto;
}

/* 斜めカットエフェクト */
.access-info::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at top left, rgba(0,255,255,0.1), transparent 60%),
              radial-gradient(circle at bottom right, rgba(0,255,180,0.15), transparent 70%);
  transform: rotate(-10deg);
  z-index: 0;
}


.access-info__container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ガラス風カード */
.access-info__text {
  flex: 1;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05); /* 半透明レイヤー */
  background-image: url("../img/about_map.png"); /* ここに背景画像を指定 */
  background-size: cover;   /* 画像を全体にフィット */
  background-position: center; /* 中央配置 */
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}


.access-info__item {
  margin-bottom: 25px;
}

.access-info__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #00eaff;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(0,234,255,0.6);
}

.access-info__description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #fff;
}

/* 地図 */
.map-container {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5), 0 0 20px rgba(0,234,255,0.3);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .access-info__container {
    flex-direction: column;
  }
  .map-container {
    min-height: 300px;
    margin-top: 30px;
  }
  .section__title {
    font-size: 2rem;
  }
}
/*******************************
access-info　css　end
*******************************/