/* リセットと基本スタイル */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #ffffff;
  color: #1e3a8a; /* ネイビーブルー */
  line-height: 1.8;
  font-weight: 400; /* Regularで読みやすく */
}

html,
body {
  overflow-x: hidden;
}

.aono-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #0d1a3b, #1e3c72); /* 濃紺グラデ */
  z-index: 9999; /* 最前面 */
  overflow: hidden;
}

.aono-text-container {
  position: relative;
  z-index: 2;
}

.aono-text-svg {
  width: 400px;
  height: 100px;
  fill: #f5f5f5; /* 白に近い文字 */
  opacity: 0; /* 最初は透明 */
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.aono-track-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.aono-track-svg {
  width: 200%;
  height: 80px;
  fill: #4a4a4a;
  opacity: 0.15; /* 薄く控えめ */
  animation: aono-move-track 12s linear infinite;
}

.aono-steam-particle {
  position: absolute;
  width: 10px;
  height: 10px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.6),
    rgba(255, 255, 255, 0)
  );
  border-radius: 50%;
  z-index: 3;
  filter: blur(2px); /* 湯気のふわっと感 */
}

@keyframes aono-move-track {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* タイポグラフィ */
h1 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 600;
  color: #1e3a8a;
  text-align: center;
}

h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  text-align: center;
}

p,
li,
td,
th {
  font-size: clamp(0.7rem, 2vw, 1rem);
  font-weight: 400;
}

@font-face {
  font-family: "TsukuhouShogoMin";
  src: url("./assets/fonts/TsukuhouShogoMin-OFL.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* Zen Kaku Gothic New */
.font-zenkaku {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.tsukuhou {
  font-family: "TsukuhouShogoMin", "Noto Serif JP", serif;
}

/* 配置 */
.margin-btm-10 {
  margin-bottom: 10px !important;
}
.margin-btm-30 {
  margin-bottom: 30px !important;
}
.margin-btm-50 {
  margin-bottom: 50px !important;
}
.text-left {
  text-align: start;
}

.pc_br {
  display: inherit;
}

.sp_br {
  display: none;
}

.pc_center {
  text-align: center;
}

.text-area {
  max-width: 500px;
  margin: 0 auto;
}

.text-center {
  text-align: center !important;
}

.text-center2 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.text-center3 {
  margin: 0 auto;
}

.apply .text-area {
  display: flex;
  justify-content: center;
}

/* ナビゲーション */
.navbar {
  background: linear-gradient(135deg, #1e3a8a, #2b4cb3);
  padding: clamp(0.8rem, 1.5vw, 1rem);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  flex: 1;
  text-align: center;
}

.logo a {
  color: #ffffff;
  font-size: clamp(1.3rem, 2.8vw, 1.6rem);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1.2rem;
  transition: color 0.3s ease;
}

.logo a:hover {
  color: #f59e0b;
}

.nav-links {
  display: flex;
  list-style: none;
  flex: 1;
  justify-content: flex-end;
  margin-right: 2rem;
}

.nav-links li {
  margin-left: clamp(1rem, 2vw, 1.5rem);
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(0.6rem, 2vw, 0.8rem);
  font-weight: 400;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  background: #f59e0b;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: #f59e0b;
}

.hamburger {
  display: none;
  color: #ffffff;
  font-size: clamp(1.3rem, 2.8vw, 1.6rem);
  cursor: pointer;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.hamburger .close-icon {
  display: none;
}

.hamburger.active .open-icon {
  display: none;
}

.hamburger.active .close-icon {
  display: block;
}

/* ヒーローセクション */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-carousel {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  background: linear-gradient(
    135deg,
    rgba(160, 163, 173, 0.7),
    rgba(245, 158, 11, 0.3)
  );
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  max-width: 80%;
}

.hero-text h1 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 0.5rem;
}

.hero-text p {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
}

.cta-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1.5rem;
  background: #f59e0b;
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 600;
  transition: transform 0.3s ease, background 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.1);
  background: #d97706;
}

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.dot.active {
  opacity: 1;
  background: #f59e0b;
  transform: scale(1.2);
}

/* セクション */
.section {
  padding: clamp(2rem, 5vw, 4rem);
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #f59e0b, transparent);
}

.content {
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.content p,
.content ul,
.content .history {
  max-width: 900px;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 会社概要テーブル */
.company-table {
  width: 100%;
  margin: 2rem auto;
  border-collapse: collapse;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.company-table th,
.company-table td {
  padding: 1rem;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  text-align: left;
}

.company-table th {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #ffffff;
  font-weight: 600;
}

.company-table tr {
  transition: transform 0.3s ease, background 0.3s ease;
}

.company-table tr:hover {
  transform: translateY(-3px);
  background: #f8fafc;
}

.company-table i {
  margin-right: 0.5rem;
  color: #ffffff;
}

/* 事業内容 */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem auto;
  max-width: 1000px;
}

.service-card {
  position: relative;
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.2);
}

.service-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  filter: brightness(0.9);
}

.service-content {
  padding: 1rem;
  text-align: center;
}

.service-content h3 {
  margin-bottom: 0.5rem;
}

.service-description {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.service-card:hover .service-description {
  max-height: 150px;
}

.clients ul {
  display: flex;
  flex-direction: row;
  gap: 50px;
  text-align: center;
  justify-content: center;
}

/* プロジェクトと社員の声 */
.project-item,
.testimonial-item {
  display: flex;
  gap: 1rem;
  margin: 1.5rem auto;
  background: #ffffff;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  text-align: left;
}

.project-item img,
.testimonial-item img {
  width: 200px;
  height: auto;
  border-radius: 10px;
}

/* リストスタイル */
ul {
  list-style: none;
}

ul li {
  margin-bottom: 0.5rem;
}

ul li i {
  color: #f59e0b;
  margin-right: 0.5rem;
}

.hero-recruit {
  position: relative;
  height: 40vh;
  min-height: 350px;
  max-height: 600px;
  margin-top: 64px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-recruit .hero-carousel {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-recruit .recruit-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s cubic-bezier(0.77, 0, 0.18, 1);
  z-index: 1;
}

.hero-recruit .recruit-hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.hero-recruit .recruit-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72);
}

.hero-recruit .hero-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.78),
    rgba(245, 158, 11, 0.12)
  );
  color: #fff;
  padding: 2rem 1.5rem;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  text-align: center;
  max-width: 90%;
  z-index: 10;
}

.hero-recruit .hero-text h1 {
  font-size: clamp(1.3rem, 4vw, 2.2rem);
  margin-bottom: 0.6rem;
}

.hero-recruit .hero-text p {
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-nav {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  z-index: 20;
  pointer-events: none;
}
.hero-prev,
.hero-next {
  background: rgba(30, 58, 138, 0.8);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  transition: background 0.2s;
}
.hero-prev:hover,
.hero-next:hover {
  background: #f59e0b;
  color: #fff;
}
.hero-recruit .hero-dots {
  display: flex;
  gap: 12px;
  pointer-events: all;
}
.hero-recruit .recruit-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.6;
  border: 2px solid #f59e0b;
  cursor: pointer;
  transition: opacity 0.4s, background 0.4s, transform 0.4s;
}
.hero-recruit .recruit-dot.active {
  opacity: 1;
  background: #f59e0b;
  transform: scale(1.15);
}
@media (max-width: 768px) {
  .hero-recruit {
    height: 36vh !important;
    min-height: 180px;
    margin-top: 52px;
  }
  .hero-recruit .hero-text {
    padding: 1.2rem 0.5rem;
  }
}

.daily-flow {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 2rem;
  background: linear-gradient(145deg, #f8fafc, #ffffff);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  text-align: center;
}

.flow-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.flow-item {
  flex: 1;
  min-width: 280px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(30, 58, 138, 0.08);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flow-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.2);
}

.flow-item h4 {
  margin-bottom: 1rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #1e3a8a;
}

.flow-item ul {
  list-style: none;
  text-align: left;
}

.flow-item .time {
  font-weight: 600;
  color: #f59e0b;
  margin-right: 0.5rem;
}

/* FAQスタイル */
.faq-section {
  width: 100%;
  margin: 3rem auto;
  padding: 2rem;
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
}

.faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.faq-question {
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 600;
  cursor: pointer;
  color: #1e3a8a;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  padding: 0 1rem;
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  color: #333;
  background: #f9fafb;
}

.faq-answer.open {
  max-height: 200px; /* 十分な高さに調整可 */
  padding: 1rem;
}

.salary {
  padding-left: 20px;
}

/* お問い合わせフォーム */
.contact-form {
  max-width: 500px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-weight: 400;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
}

.contact-form input,
.contact-form textarea {
  padding: 0.5rem;
  border: 1px solid #1e3a8a;
  border-radius: 8px;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 5px rgba(245, 158, 11, 0.3);
  outline: none;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  background: #f59e0b;
  color: #ffffff;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 25px;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 400;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.contact-form button:hover {
  transform: scale(1.1);
  background: #d97706;
}

/* プライバシーポリシー */
#privacy {
  padding-top: 150px;
  padding-bottom: 150px !important;
  height: 80vh;
}

#privacy h2 {
  margin-bottom: 30px;
}

#privacy ul {
  margin-bottom: 50px;
  max-width: 600px;
  margin: 0 auto 30px;
  text-align: start;
}

.container {
  width: 100%;
}

/* フッター */
footer {
  background: linear-gradient(135deg, #1e3a8a, #2b4cb3);
  color: #ffffff;
  padding: 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 400;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
  color: #f59e0b;
  transform: translateY(-2px);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-social a {
  color: #ffffff;
  font-size: clamp(1.3rem, 2.8vw, 1.6rem);
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
  color: #f59e0b;
  transform: rotate(360deg);
}

.footer-slogan {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 400;
  margin-bottom: 1rem;
  text-align: center;
}

.top-button {
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 400;
  transition: transform 0.3s ease;
  text-align: center;
}

.top-button:hover {
  transform: scale(1.1);
}

.top-button i {
  margin-right: 0.5rem;
}

.footer-copyright {
  font-size: clamp(0.8rem, 1.8vw, 1rem);
  font-weight: 400;
  text-align: center;
}

.top-button {
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 400;
  transition: transform 0.3s ease;
}

.top-button:hover {
  transform: scale(1.1);
}

.top-button i {
  margin-right: 0.5rem;
}

.job-worth-container {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 2rem;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  text-align: center;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 2rem;
  color: #1e3a8a;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  width: 50%;
  height: 3px;
  background: linear-gradient(135deg, #1e3a8a, #f59e0b);
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
}

.requirements {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 2rem;
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  text-align: center;
}

.requirements-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.requirement-item {
  width: 230px;
  padding: 1rem;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 12px rgba(30, 58, 138, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.requirement-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.2);
}

.requirement-icon {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.8rem;
}

.requirement-item p {
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  color: #333;
  line-height: 1.6;
}

.job-worth-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.job-worth-card {
  background: linear-gradient(145deg, #f8fafc, #ffffff);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-worth-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.15);
}

.job-icon {
  font-size: 2rem;
  color: #f59e0b;
  margin-bottom: 0.8rem;
}

.job-worth-card h4 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #1e3a8a;
  margin-bottom: 0.6rem;
}

.job-worth-card p {
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  color: #333;
  line-height: 1.6;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #1e3a8a, #2b4cb3);
    padding: 1rem;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-align: center;
    transform: translateY(-10px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav-links.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links li {
    margin: 0.5rem 0;
  }

  .nav-links a {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    text-align: center;
    display: block;
  }

  .hamburger {
    display: block;
  }

  .hero {
    height: 50vh;
  }

  .hero-text {
    padding: 0.8rem;
    max-width: 90%;
  }

  .project-item,
  .testimonial-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .project-item img,
  .testimonial-item img {
    width: 100%;
    max-width: 250px;
  }

  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
    text-align: center;
  }

  .company-table th {
    margin-top: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 90%;
  }

  .service-card img {
    height: 120px;
  }

  .footer-links {
    flex-direction: column;
  }

  .requirement-item {
    width: 70%;
    padding: 1rem;
  }
}

@media (max-width: 468px) {
  .sp_br {
    display: inherit;
  }

  .pc_br {
    display: none;
  }

  .pc_center {
    text-align: left;
  }
  .requirement-item {
    width: 90%;
    padding: 1rem;
  }

  .hero-text {
    top: 60%;
    left: 50%;
  }

  .hero-text h1 {
    font-size: 1.2rem;
  }
  .hero-text p {
    font-size: 0.8rem;
  }
  .cta-button {
    padding: 0.3rem 1.2rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 500;
  }
}
