
.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;
}
.error-msg {
  display: block;
  color: red;
  font-size: 0.9em;
  margin-top: 5px;
}


.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;
}

/* ================================
   お問い合わせフォーム デザイン
   ================================ */
#contents {
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  padding: 40px 20px;
  background: linear-gradient(135deg, #f0f4f8, #dfe9f3);
}

.lower-title span {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(90deg, #0072ff, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.lower-title span::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0072ff, #00c6ff);
  border-radius: 2px;
  margin-top: 10px;
}

/* フォーム全体 */
.inquiry form {
  background: rgba(255, 255, 255, 0.85);

  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  backdrop-filter: blur(10px);
}

/* テーブルスタイル */
.tb2 {
  width: 100%;
  border-collapse: collapse;
}

.tb2 th,
.tb2 td {
  padding: 15px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #eee;
}

.tb2 th {
  font-weight: 600;
  color: #000000;
  width: 30%;
}

/* 入力フィールド */
input[type="text"],
input[type="email"],
textarea,
select {
  width: 100%;
  max-width: 500px;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background: #ddd;
  transition: 0.3s ease;
  font-size: 1rem;
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
}

input:focus,
textarea:focus,
select:focus {
  border-color: #00c6ff;
  box-shadow: 0 0 8px rgba(0, 198, 255, 0.6);
  outline: none;
}

/* ラジオボタン */
input[type="radio"] {
  accent-color: #0072ff;
  transform: scale(1.2);
  margin-right: 6px;
}

/* テキストエリア */
textarea {
  min-height: 120px;
  resize: vertical;
}

/* ボタン */
.inquiry-btn input[type="button"],
.inquiry-btn input[type="submit"] {
  background: linear-gradient(90deg, #000000, #f21d89, #000000);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 40px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,114,255,0.3);
}

.inquiry-btn input:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,114,255,0.4);
}
p.t-center.mb30 {
    padding: 20px;
    text-align: center;
}
.inquiry-btn {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
/* 必須マーク */
.f-red {
  color: #e60033;
  font-weight: bold;
}

/* サブタイトル */
.subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 30px 0 20px;
  padding-left: 15px;
  border-left: 6px solid #00c6ff;
  color: #444;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .tb2 th, .tb2 td {
    display: block;
    width: 100%;
  }
  .tb2 th {
    margin-top: 15px;
  }
  .tb2 td {
    margin-bottom: 15px;
  }
}
