body {
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
}
.bg-blue {
  background-color: #293b8e;
  z-index: 30;
}
.bg-blue::after {
  display: none;
}
.font-inter {
  font-family: "Inter", sans-serif;
}

.header {
  background-color: transparent;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.header::after {
  /* 半透明オーバーレイ */
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255, 0.2);
  z-index: -1; /* コンテンツの背面に配置 */
}
.header::before {
  /* 下線 */
  content: "";
  position: absolute;
  left: 0;
  height: 1px;
  width: 100%;
  bottom: 0;
  background-color: rgb(255, 255, 255);
  z-index: 10;
}
// .header-scrolled-sp {
//   background-color: #ffffff;
//   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1)
// }
.header-scrolled {
  background-color: #293b8e; /* スクロール後の背景色 */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.header.header-scrolled::after {
  display: none; /* もしくは visibility: hidden; opacity: 0; など */
}
/* --- ロゴ --- */
.header-logo {
  flex-shrink: 0;
  z-index: 20;
}
.header-logo-img {
  width: 120px;
  height: 68px;
  object-fit: contain;
}

/* --- デスクトップナビゲーション (1024px以上) --- */
.header-nav-desktop {
  display: none;
  // background: #293b8e;
  z-index: 20;
}
@media (min-width: 1024px) {
  .header {
    padding: 0.5rem 2rem;
  }
  .header-nav-desktop {
    display: block;
  }
  .header-nav-list-desktop {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
  }
  .header-nav-item {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
  }
  .header-nav-item:hover {
    color: #fdd835;
  }
  /* ECサイトボタンの特殊スタイル */
  .header-ec {
    position: relative;
    margin-left: 20px;
    transition: 0.5s;
    width: 180px;
    height: 80px;
    display: block;
  }
  .header-ec:hover {
    opacity: 0.7;
    cursor: pointer;
  }
  .header-ec::after {
    position: absolute;
    content: "";
    left: -5px;
    top: 0;
    width: 180px;
    height: 80px;
    background-image: url("/img/common/header-button.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

/* --- モバイル用アイコン (1023px以下) --- */

.header-icons-mobile {
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 20;
}
@media (min-width: 1024px) {
  .header-icons-mobile {
    display: none;
  }
}

.header-cart-icon-mobile {
  background-color: white;
  color: #293b8e;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.hamburger-menu {
  background-color: #293b8e;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}
.hamburger-bar {
  width: 22px;
  height: 2px;
  background-color: white;
  border-radius: 2px;
}

/* --- モバイル用オーバーレイメニュー --- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #293b8e;
  opacity: 0.88;
  color: white;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 1100;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-header {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-bottom: 2rem;
}

.mobile-menu-header-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
.mobile-menu-cart-icon {
  color: white;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}
.close-menu-button {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0;
}
.mobile-menu-nav {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu-list > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.mobile-menu-item {
  display: block;
  padding: 1rem 0;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
}

/* アコーディオン関連 */
.submenu-parent {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.submenu-parent .mobile-menu-item {
  flex-grow: 1;
}
.submenu-toggle {
  background: none;
  border: 1px solid white;
  color: white;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.submenu-toggle-icon {
  transition: transform 0.3s ease;
}
.submenu-toggle.active .submenu-toggle-icon {
  transform: rotate(45deg);
}
.submenu-list {
  list-style: none;
  padding: 0 0 0 1.5rem;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}
.submenu-list li {
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
}
.submenu-list li:last-child {
  border-bottom: none;
}
.submenu-item {
  display: block;
  padding: 0.75rem 0;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 1rem;
}
.burger-ec {
}

/* その他メニュー内要素 */
.mobile-menu-video-placeholder {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem 0;
  margin: 1.5rem 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}
.mobile-menu-video-placeholder p {
  margin: 0 0 0.5rem 0;
}
.mobile-menu-ec-button {
  background-color: white;
  color: #293b8e;
  text-decoration: none;
  padding: 1rem;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: auto;
  flex-shrink: 0;
}

/*TOPページ*/
#hero {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  min-height: 400px;
}
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  z-index: -1; /* コンテンツの下に配置 */
  transform: translate(-50%, -50%);
}
@media (max-width: 480px) {
  #hero {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  min-height: 340px;
}
  .hero-video {
  position: absolute;
  top: 30%;
  height: auto;
  z-index: -1; /* コンテンツの下に配置 */
  transform: translate(-50%, 0);
}
}

#about {
  background-position: center;
  background-size: cover;
  background-image: url(./img/TOP/about_bg.png);
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  aspect-ratio: 18/13;
  height: auto;
  position: relative;
}
#about::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8rem;
  width: 30%;
  height: auto;
  aspect-ratio: 12/2.7;
  background-position: center;
  background-size: cover;
  background-image: url(./img/TOP/ABOUT.png);
}
#about h2 {
  padding-top: 9rem;
}
#about p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  font-weight: 700;
}
@media (max-width: 1300px) {
  #about {
    background-position: center;
    background-image: none;
    width: 100%;
    max-width: 1600px;
    margin-inline: auto;
    aspect-ratio: auto;
    height: auto;
    position: relative;
    padding: 0 0 30rem;
    background-color: #fff;
  }
  #about:before {
    content: "";
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 100%;
    height: auto;
    aspect-ratio: 18/13;
    background-image: url(./img/TOP/about_bg_sp.png);
    background-position: center;
    background-size: cover;
  }
    #about:after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 30%;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    aspect-ratio: 260/375;
    background-image: url(./img/TOP/player-sp.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  #left-bottom,
  #right-top{
    display: none;
  }
}
@media (max-width: 1150px) {
  #about{
    padding: 0 0 25rem;
  }
}
@media (max-width: 930px) {
  #about{
    padding: 0 0 20rem;
  }
}
@media (max-width: 670px) {
  #about{
    // padding: 0 0 17rem;
  }
   #about:after {
    width: 37%;
  }
}
@media (max-width: 570px) {
   #about:after {
    width: 42%;
  }
}
@media (max-width: 570px) {
   #about:after {
    width: 51%;
  }
}
/*ウェア制作*/
/* チームウェアセクションの背景 */
#wear {
  width: 100%;
  height: auto;
  aspect-ratio: 360/97;
}
.wear-sub-text {
  margin-top: -50px !important;
  font-weight: bold;
  position: relative;
  padding-bottom: 3px;
}
.wear-sub-text::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  width: 190px;
  height: 1px;
  transform: translateX(-50%);
  background-color: #fff;
  font-size: 18px;
}
.wear-h2 {
  font-size: 42px;
  margin-top: 40px;
}
.wear-btn {
  color: #293b8e;
  position: relative;
  padding-left: 72px;
  padding-right: 96px;
}
.wear-btn:after {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  background-image: url(./img/common/arrow-blue.png);
  background-position: center;
  background-size: cover;
}
.team-wear-bg {
  background-image: url("./img/TOP/wear.png");
  background-size: cover;
  background-position: center;
}
.team-wear-content {
  position: relative;
  z-index: 1;
}


@media (max-width: 1024px) {
.wear-h2 {
  margin-top: 1rem;
}
  .team-wear-content h2 {
    font-size: 1.6rem;
  }

  .wear-sub-text {
  margin-top: 0 !important;
}
.wear-btn {
  color: #293b8e;
  position: relative;
  padding-left: 40px;
  padding-right: 63px;
  font-size: 16px;
  padding-top: 10px!important;
  padding-bottom: 10px!important;
}
.wear-btn:after {
  width: 30px;
  height: 30px;
}

}
@media (max-width: 768px) {
.wear-h2 {
  margin-top: 1rem;
}
  .team-wear-content h2 {
    font-size: 1.2rem;
    margin-bottom: 18px!important;
  }

  .wear-sub-text {
  margin-top: 0 !important;
}
.wear-btn {
  padding-left: 40px;
  padding-right: 63px;
}
.wear-btn:after {
  width: 25px;
  height: 25px;
}
 #wear{
  min-height: 178px!important;
}

}

/* 事業内容セクション */
#business {
  background-position: center;
  background-size: cover;
  background-image: url(./img/TOP/service-bg.png);
  padding-top: 160px;
  position: relative;
}
#business:before {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  width: 40%;
  height: auto;
  background-image: url(/img/TOP/SERVICE.png);
  background-position: center;
  background-size: cover;
  aspect-ratio: 53 / 10;
}
#business h2 {
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 23px;
  color: #293b8e;
}
.service-flex {
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
  align-items: center;
}
.service-flex-text {
  align-items: center;
}
#business h3 {
  font-size: 24px;
  color: #fff;
  display: inline-block;
  background-color: #293b8e;
  padding: 8px 24px;
}
.business-text {
  margin-top: 25px;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.8!important;
}
@media (max-width: 1024px) {

#business h2{
  font-size: 2rem;
}
#business h3 {
  font-size: 20px;
  white-space: nowrap;
}
#business:before {
  width: 60%;
  top: 10%;
}
}
@media (max-width: 1024px) {
  #business {
  padding-top: 85px;
}
  #business:before {
  top: 5%;
}
}
/* お知らせ */
.triangle-top-left {
  clip-path: polygon(0 0, 100% 0, 0 100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 8%;
  height: 50%;
  background-color: #293b8e;
}
.triangle-bottom-right {
  clip-path: polygon(100% 100%, 100% 0, 0 100%);
  position: absolute;
  right: 0;
  bottom: 0;
  width: 8%;
  height: 50%;
  background-color: #293b8e;
}
.news {
  padding-top: 40px;
  padding-bottom: 150px;
}
.news-cards {
  max-width: 1200px;
}
.news-card {
  position: relative;
  border-radius: 0 !important;
}
.news-card:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #293b8e;
}
.category-tag {
  background-color: #293b8e;
  top: 0;
  right: 0;
}
.news-sub-heading {
  font-size: 38px;
  font-weight: bold;
  color: #293b8e;
  margin-top: -65px;
}
.news h3 {
  font-size: 22px;
  line-height: 35px;
}
.news-text {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  margin-top: 15px;
}
.news-date {
  text-align: left !important;
  font-size: 16px;
  color: #4a7592;
  font-weight: 600;
}
@media (max-width: 1024px) {

.news-cards {
  max-width: 1200px;
  padding: 0 20px;
}
.news-card {
  max-width: 500px;
  margin-inline: auto;
}
.triangle-top-left {
  clip-path: polygon(0 0, 100% 0, 0 100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 12%;
  height: 30%;
  background-color: #293b8e;
}
.triangle-bottom-right {
  clip-path: polygon(100% 100%, 100% 0, 0 100%);
  position: absolute;
  right: 0;
  bottom: 0;
  width: 12%;
  height: 30%;
  background-color: #293b8e;
}
}
@media (max-width: 1024px) {
  #business {
  padding-top: 85px;
}
  #business:before {
  top: 5%;
}
}
/* --- バナーセクション --- */
.banner-section {
  padding: 8rem 0;
  background-color: #ffffff;
}
.banner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.container {
  max-width: 1240px !important;
  margin-inline: auto;
  padding: 0 20px;
}
.banner-item {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 29/17;
  background-position: center;
  background-size: cover;
  position: relative;
  max-width: 620px!important;
  margin-inline: auto;
}
.banner-item1 {
  background-image: url(./img/common/banner01.png);
}
.banner-item2 {
  background-image: url(./img/common/banner02.png);
}
.banner-item3 {
  background-image: url(./img/common/banner03.png);
}
.banner-item4 {
  background-image: url(./img/common/banner04.png);
}
.banner-item-btn:hover {
  transition: 0.5s;
  filter: brightness(1.3);
}
.banner-item-btn {
  color: #293b8e;
  font-weight: bold;
  font-size: 18px;
  background-color: #fff;
  padding: 18px 96px 18px 72px;
  border-radius: 40px;
  margin-inline: auto;
  display: inline-block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 50px;
  white-space: nowrap;
}
.banner-item-btn1:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  background-position: center;
  background-size: cover;
  background-image: url(./img/common/arrow-blue.png);
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.banner-item-btn2:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  background-position: center;
  background-size: cover;
  background-image: url(./img/common/arrow-green.png);
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.banner-item-btn3:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  background-position: center;
  background-size: cover;
  background-image: url(./img/common/arrow-yellow.png);
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.banner-item-btn4:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  background-position: center;
  background-size: cover;
  background-image: url(./img/common/arrow-purple.png);
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

/* レスポンシブ */
@media (max-width: 962px) {
  .banner-item-btn {
    white-space: nowrap;
      font-size: 16px;
  background-color: #fff;
  padding: 10px 71px 10px 47px;
}
}
@media (min-width: 768px) {
  .banner-grid {
    grid-template-columns: repeat(2, 1fr); /* タブレット以上で2カラム */
  }

}

.banner-item-btn1:before,
.banner-item-btn2:before,
.banner-item-btn3:before,
.banner-item-btn4:before {
  width: 25px;
  height: 25px;
}
}

/*footer*/
footer {
  position: relative;
}
footer .container {
  padding-top: 180px;
}
footer:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 100%;
  height: auto;
  background-image: url(./img/common/LIFE\ ONCE.png);
  background-position: center;
  background-size: cover;
  object-fit: cover;
  aspect-ratio: 600/86;
  z-index: 50;
  max-width: 1200px;
}
/* フッターの背景色 */
.footer-bg {
  background-color: #4a6c9b;
  background-image: url(./img/common/footer-bg.png);
  background-position: center;
  background-size: cover;
}
.footer-logo {
  z-index: 100 !important;
  width: 200px;
}
footer nav a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  footer {
  padding-top: 60px !important;
}
footer .container {
  padding-top: 0;
}
}

/*下層ページメインビジュアル*/
.page-kv {
  width: 100%;
  height: auto;
  aspect-ratio: 24/7;
  background-position: center;
  background-size: cover;
  object-fit: cover;
  position: relative;
  min-height: 250px;
}
.basket {
  background-image: url(./img/basket/kv-basket.png);
}
.service {
  background-image: url(./img/service/kv.png);
}
.company {
  background-image: url(./img/company/kv.png);
}
.contact {
  background-image: url(/img/contact/contact_kv.png);
}

.page-kv-container {
  color: #ffffff;
  white-space: 400px;
  text-align: center;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.page-kv h2 {
  font-size: 40px;
  font-weight: 700;
}
.page-kv p {
  font-weight: 500;
}
@media (max-width: 768px) {
  .page-kv h2 {
  font-size: 28px;
  }
}
/*バスケットボールページ　U-15*/
/* --- U-15セクション --- */
.u15-section {
  padding: 10rem 0;
  background-color: #ffffff;
  overflow: hidden;
  background-image: url(./img/basket/u15-bg.png);
  background-position: center;
  background-size: cover;
  font-weight: 700;
}
.u15-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 10!important;
}
.u15-bg-text{
  position: absolute;
  bottom: -65px;
  z-index: -1!important;
  width: 30%;
  right: 45%;
}
.u15-layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 3rem;
  z-index: 10!important;
}
.u15-title {
  font-size: 38px;
  font-weight: 600;
  color: #293b8e;
  margin-bottom: 2rem;
  font-family: "Inter", sans-serif;
}
.u15-description {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  line-height: 1.8;
  color: #333;
  font-weight: 500;
  z-index: 10!important;
}
.u15-image-stack {
  position: relative;
  min-height: 500px;
  display: none;
}
.u15-image {
  position: absolute;
  object-fit: contain;
  border-radius: 0.5rem;
  display: block;
}
.u15-image-sp {
  display: none;
  bottom:0;
}

@media (min-width: 768px) {
  .u15-layout-grid {
    grid-template-columns: 1.2fr 1fr;
  }
  .u15-image-stack {
    display: block;
  }
  .u15-image {
  display: block;
}
}
@media (max-width: 767px) {
.u15-image-sp {
  display: block;
}
.u15-section {
  padding: 3rem 0 2rem;
  background-image: url(./img/basket/U-15bg_SP.png);
}
.u15-bg-text{
  position: absolute;
  top: 20px;
  z-index: -1!important;
  width: 30%;
  right: 10px;
}
}

.vision-section {
  padding: 8rem 0;
  color: #ffffff;
  overflow: hidden;
  background-image: url(./img/basket/vision-bg.png);
  background-position: center;
  background-size: cover;
  position: relative;
}
.vision-vision{
  position: absolute;
  top: 40px;
  width: 35%;
}
.vision-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.vision-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vision-image-area {
  /* 画像エリアのスタイル */
}
.vision-image {
  width: 100%;
  height: auto;
}
.vision-text-content {
  /* テキストエリアのスタイル */
}
.vision-main-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 1rem;
}
.vision-tags {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 22px;
}
.vision-tag {
  background-color: rgba(255, 255, 255, 0.9);
  color: #293b8e;
  padding: 8px 22px;
  font-weight: 700;
  font-size: 22px;
}
.vision-tag-divider {
  font-size: 1.25rem;
  font-weight: 700;
  opacity: 0.8;
}
.vision-description {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  line-height: 1.8;
  opacity: 0.9;
  max-width: 770px;
  font-weight: bold;
}

@media (min-width: 1024px) {
  .vision-grid {
    grid-template-columns: 1fr 1fr; /* PCでは2カラム */
  }
}
@media (max-width: 768px) {
.vision-vision{
  position: absolute;
  top: 6rem;
  width: 55%;
}
  .vision-container {
  margin: 0 auto;
  padding: 0 1.5rem;
}
.vision-grid {
  display: block;
}
.vision-main-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 1rem;
}
.vision-tags {
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 20px;
}
}

/*コーチ紹介*/

.coach {
  padding: 7rem 0;
  background-color: #f7f7f7;
  z-index: 10;
}
.coach-coach{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  max-width: 550px;
  margin-inline: auto;
  z-index: 0;
  margin-top: -50px;
}
.coach h2 {
  font-size: 38px;
  color: #293b8e;
  text-align: center;
  font-weight: bold;
  z-index: 10!important;
  position: relative;
}
.coach-flexs {
  display: flex !important;
  flex-wrap: wrap; /* アイテムの折り返しを許可する */
  justify-content: flex-start;
  gap: 20px; /* カード間の隙間を上下左右に設定する */
  margin-top: 80px;
  position: relative;
  z-index: 5;
}
.coach-flex {
  display: flex !important;
  flex-wrap: wrap; /* アイテムの折り返しを許可する */
  justify-content: center;
  gap: 20px; /* カード間の隙間を上下左右に設定する */
  margin-top: 80px;
  position: relative;
  z-index: 5;
}

.coach-card {
  /* flex: flex-grow | flex-shrink | flex-basis; */
  /* 各カードの基本幅を300pxとし、必要に応じて伸縮させる */
  flex: 1 1 300px;
  max-width: 381px; /* 元の最大幅は維持する */
}

.coach-card img {
  width: 100%;
  display: block; /* 画像下の余分な隙間を防ぐ */
}
.coach-flex:after,
.coach-flexs:after {
  content: "";
  position: absolute;
  left: -20%;
  top: 50%;
  transform: translateY(-50%);
  height: 100px;
  width: 120%;
  background-color: #293b8e;
  z-index: -1;
}

@media (max-width: 768px) {
  /* 1024pxから変更 */
.coach h2 {
  font-size: 1.6rem;
}
}
@media (max-width: 619px) {
.coach-flexs {
  justify-content: center;
}
}
/*歴代メンバー*/
.gallery-section {
  padding: 5rem 0;
  background-color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
}
.gallery-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center; /* 中央寄せ */
  gap: 4rem; /* 各アイテム間のスペース */
  max-width: 1200px;
}
.gallery-top-row {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr; /* スマホでは1カラム */
  gap: 2rem;
}
.gallery-item {
  width: 100%;
  max-width: 580px; /* アイテムの最大幅 */
}
.gallery-item-title {
  display: inline-block;
  align-items: center;
  gap: 0.75rem;
  font-size: 18px;
  font-weight: 700;
  color: #293b8e;
  border-left: 2px solid #293b8e;
  padding: 0.5rem 1rem 0.5rem 1.5rem;
  margin-bottom: 1rem;
  background-color: #e6e6e6;
}
.gallery-title-divider {
  color: #9ca3af; /* 薄いグレー */
}
.gallery-image-wrapper {
  overflow: hidden;
}
.gallery-image {
  width: 100%;
  height: auto;
  display: block;
}

/* --- レスポンシブデザイン --- */
@media (min-width: 768px) {
  /* 1024pxから変更 */
  .gallery-top-row {
    grid-template-columns: 1fr 1fr; /* タブレット以上で2カラム */
    gap: 2rem;
  }
}

/* --- Tournamentセクション --- */
.tournament-section {
  padding: 5rem 0;
  font-family: "Noto Sans JP", sans-serif;
  position: relative; /* 背景テキストの基準点 */
  overflow: hidden; /* はみ出した背景テキストを隠す */
  background-image: url(./img/basket/tournament-bg.png);
  background-position: center;
  background-size: cover;
}
.tournament-bg-text {
  position: absolute;
  font-family: "Inter", sans-serif;
  font-size: 8rem;
  font-weight: 900;
  color: #e6e6e6;
  white-space: nowrap;
  user-select: none;
  z-index: 0;
}

.tournament-bg-text-top {
  top: 2rem;
}
.tournament-bg-text-bottom {
  bottom: 0;
  right: 0;
}
.tournament-img02 {
  margin-top: 30px;
  width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.tournament-img02 img {
  width: auto;
}
.tournament-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative; /* コンテンツが背景テキストの上に来るように */
  z-index: 1;
  padding-top: 8rem;
}
.tournament-main-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e3a8a; /* 濃い青 */
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}
.tournament-grid {
  display: grid;
  grid-template-columns: 1fr; /* スマホでは1カラム */
  align-items: center;
  gap: 3rem;
}
.tournament-image-area {
  display: flex;
  flex-direction: column;
  align-items: center; /* 画像を中央に配置 */
  gap: 1.5rem;
}
.tournament-image {
  width: 100%;
  height: auto;
}
.tournament-image-second {
  max-width: 400px; /* 2枚目の画像の最大幅を指定 */
}
.tournament-text-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  line-height: 1.8;
  color: #333;
  font-size: 18px;
  font-weight: bold;
}

/* --- レスポンシブデザイン --- */
@media (min-width: 768px) {
  .tournament-grid {
    grid-template-columns: 1fr 1fr; /* タブレット以上で2カラム */
  }
  .tournament-main-title {
    font-size: 2rem;
  }
  .tournament-image-area {
    align-items: flex-start; /* 左寄せに戻す */
  }
  .tournament-bg-text {
    font-size: 10rem;
  }
}
@media (min-width: 1024px) {
  .tournament-bg-text {
    font-size: 12rem;
  }
}
@media (max-width: 1023px) {
  .tournament-bg-text {
    font-size: 5rem;
  }
  .tournament-bg-text-top {
  top: 6rem;
}
.tournament-bg-text-bottom {
  bottom: 0;
  right: 0;
}
}
@media (max-width: 768px) {
.tournament-section {
  padding-top: 1rem;
}
  .tournament-bg-text {
    font-size: 3rem;
  }
  .tournament-bg-text-top {
  top: 7rem;
}
.tournament-bg-text-bottom {
  bottom: 0;
  right: 0;
}
}
/*サービスページ*/
.business-overview-section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  background-image: url(/img/service/business-bg.png);
  background-position: center;
  background-size: cover;
}
.business-overview-bg-text {
  position: absolute;
  top: 0;
  right: 0;
  font-family: "Inter", sans-serif;
  font-size: 8rem;
  font-weight: 900;
  color: #e6e6e6;
  white-space: nowrap;
  user-select: none;
  z-index: 0;
}
.business-overview-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}
.business-overview-player-image {
  position: absolute;
  display: none; /* スマホでは非表示 */
  z-index: 1;
}
.business-overview-player-left {
  width: 250px;
  top: -2rem;
  left: 0;
}
.business-overview-player-right {
  width: 230px;
  bottom: -2rem;
  right: 0;
}
.business-overview-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 0 auto;
  padding: 3rem 1rem;
}
.business-overview-main-title {
  font-size: 38px;
  font-weight: 700;
  color: #293b8e;
  margin-bottom: 2rem;
}
.business-overview-text-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  line-height: 1.8;
  color: #222222;
  font-weight: 500;
}
.page-service-sp-player{
  display: none;
}

/* --- Responsive Design --- */
@media (min-width: 1024px) {
  .business-overview-player-image {
    display: block; /* PCで表示 */
  }
  .business-overview-bg-text {
    font-size: 9rem;
  }
}
@media (max-width: 1023px) {
  .page-service-sp-player{
  display: block;
  width: 70%;
  margin-inline: auto;
}
.business-overview-main-title {
  font-size: 2rem;
}
  .business-overview-bg-text {
  font-size: 5rem;
}

}
@media (max-width: 867px) {
  .page-service-sp-player{
  display: block;
  width: 70%;
  margin-inline: auto;
}
.business-overview-main-title {
  font-size: 1.6rem;
}
  .business-overview-bg-text {
  font-size: 3.5rem;
}
.business-overview-section {
  padding: 3rem 0 2rem;
}
}
.service-basket-section {
  padding: 6rem 0;
  background-color: #f6f6f6;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  overflow: hidden;
}
.service-basket-bg-text {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Inter", sans-serif;
  font-size: 6rem;
  font-weight: 900;
  color: #e6e6e6;
  white-space: nowrap;
  user-select: none;
  z-index: 0;
}
.service-triangle-top-left {
  clip-path: polygon(0 0, 100% 0, 0 100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 7%;
  height: 50%;
  background-color: #293b8e;
}
.service-triangle-bottom-right {
  clip-path: polygon(100% 100%, 100% 0, 0 100%);
  position: absolute;
  right: 0;
  bottom: 0;
  width: 7%;
  height: 50%;
  background-color: #293b8e;
}
.service-basket-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.service-basket-main-title {
  font-size: 38px;
  font-weight: 700;
  color: #1e3a8a;
  text-align: center;
  margin-top: 40px;
  position: relative;
}
.service-basket-grid {
  margin-top: 55px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.servie-basket-link {
  transition: 0.5s;
}
.servie-basket-link:hover {
  cursor: pointer;
  opacity: 0.7;
}

.service-basket-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Responsive Design --- */
@media (min-width: 768px) {
  .service-basket-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .service-basket-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .service-basket-bg-text {
    font-size: 8rem;
  }
  .service-basket-shape-left,
  .service-basket-shape-right {
    border-width: 200px 200px 0 0;
  }
  .service-basket-shape-right {
    border-width: 0 0 200px 200px;
  }
}
@media (max-width: 1023px) {
  .service-basket-section {
  padding: 3rem 0;
}
.service-basket-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.service-basket-main-title {
  font-size: 2rem;
}
.service-basket-bg-text {
  top: 2rem;
  left: 50%;
  font-size: 5rem;
}
.service-triangle-top-left {
  clip-path: polygon(0 0, 100% 0, 0 100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 12%;
  height: 30%;
  background-color: #293b8e;
}
.service-triangle-bottom-right {
  clip-path: polygon(100% 100%, 100% 0, 0 100%);
  position: absolute;
  right: 0;
  bottom: 0;
  width: 12%;
  height: 30%;
  background-color: #293b8e;
}
}
@media (max-width:768px) {

.service-basket-main-title {
  font-size: 1.6rem;
}
.service-basket-bg-text {
  top: 2rem;
  left: 50%;
  font-size: 3rem;
}
.service-triangle-top-left {
  clip-path: polygon(0 0, 100% 0, 0 100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 16%;
  height: 20%;
  background-color: #293b8e;
}
.service-triangle-bottom-right {
  clip-path: polygon(100% 100%, 100% 0, 0 100%);
  position: absolute;
  right: 0;
  bottom: 0;
  width: 16%;
  height: 20%;
  background-color: #293b8e;
}
}
.service-wear-section {
  padding: 6rem 2rem;
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
  background-image: url(/img/service/wear-bg.png);
  background-position: center;
  background-size: cover;
}

.service-wear-bg-text {
  position: absolute;
  top: -1.5rem;
  left: 0;
  font-family: "Inter", sans-serif;
  font-size: 8rem;
  font-weight: 900;
  color: #e6e6e6;
  white-space: nowrap;
  user-select: none;
  z-index: 0;
}
.service-wear-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.service-wear-main-title {
  font-size: 38px;
  font-weight: 700;
  color: #293b8e;
  margin-bottom: 0;
  position: relative;
}
.service-wear-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 30px;
}
.service-wear-text-column {
  display: flex;
  flex-direction: column;
}
.service-wear-subtitle {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  padding-left: 10px;
  background-color: #293b8e;
  max-width: 435px;
}
.service-wear-description {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  font-weight: 600;
  color: #495057;
}
.service-wear-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: 1px solid #1e3a8a;
  border-radius: 50px;
  color: #1e3a8a;
  background-color: transparent;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.04em;
  background-color: #fff;
  align-self: flex-start; /* 左寄せ */
}
.service-wear-button:hover {
  background-color: #1e3a8a;
  color: white;
}
.service-wear-button-arrow {
  display: inline-block;
  margin-left: 0.75rem;
  background-color: #1e3a8a;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
.service-wear-button:hover .service-wear-button-arrow {
  background-color: #2563eb;
}
.service-wear-image-column img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Responsive Design --- */
@media (min-width: 992px) {
  .service-wear-content-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-wear-bg-text {
    font-size: 10rem;
  }
}
@media (max-width: 768px) {
  .service-wear-bg-text {
  font-size: 5rem;
  top: 35px;
}
.service-wear-main-title {
  font-size: 1.6rem;
}
.service-wear-subtitle {
  font-size: 1.1rem;
}
}

/* --- Greeting Section --- */
.greeting-section {
  padding: 11rem 2rem;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  overflow: hidden;
}
.greeting-section:after {
  content: "";
  position: absolute;
  top: 0;
  right: -18%;
  height: auto;
  width: 95%;
  aspect-ratio: 55/46;
  background-image: url(/img/company/greeting-bg.png);
  background-position: center;
  background-size: cover;
}
.greeting-bg-text {
  position: absolute;
  top: 0;
  right: 0;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  color: #e6e6e6;
  opacity: 0.24;
  white-space: nowrap;
  user-select: none;
  z-index: 1;
}
.greeting-container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.greeting-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: -30px;
}
.greeting-image-column {
  display: flex;
  justify-content: center;
}
.greeting-image-column img {
  width: 100%;
  max-width: 460px;
  height: auto;
  object-fit: cover;
}
.greeting-text-column {
  display: flex;
  flex-direction: column;
}
.greeting-main-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
}
.greeting-description {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  line-height: 2.2;
  font-weight: 500;
}
.greeting-signature {
  align-self: flex-end; /* 右寄せ */
  text-align: right;
  line-height: 1.7;
}
.greeting-signature p:last-child {
  font-size: 1.25rem;
  font-weight: 600;
}


/* --- Responsive Design --- */
@media (min-width: 992px) {
  .greeting-content-grid {
    grid-template-columns: 4fr 5fr; /* 画像とテキストの比率を調整 */
    gap: 1rem;
  }
  .greeting-main-title {
    text-align: left;
  }
  .greeting-bg-text {
    font-size: 10rem;
  }
}
@media (max-width: 991px) {
.greeting-section:after {
  top: 50%;
  height: 50%;
  width: 120%;
}
.greeting-bg-text {
  position: absolute;
  bottom: 0;
  right: 0;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  color: #e6e6e6;
  opacity: 0.24;
  white-space: nowrap;
  user-select: none;
  z-index: 100;

}
.greeting-text-column {
  width: 80%;
  margin-left: auto;
  padding-top: 30px;
}
.greeting-section {
  padding: 4rem 2rem;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  overflow: hidden;
}
.greeting-main-title {
  font-size: 2rem;
}
.greeting-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem 5rem;
  align-items: center;
  margin-top: -30px;
}
}
@media (max-width: 660px) {
  .greeting-section:after {
  top: 30%;
  height: 70%;
}
.greeting-text-column {
  width: 100%;
}
.greeting-main-title {
  font-size:1.6rem;
}
}

/* --- Company Profile Section --- */
.company-profile-section {
  padding: 9rem 2rem 6rem;
  background-color: #f6f6f6;
  position: relative;
  overflow: hidden;
}

.company-profile-section:before {
  content: "";
  position: absolute;
  width: 30%;
  height: auto;
  left: 0;
  top: 0;
  aspect-ratio: 279 / 446;
  background-image: url(/img/company/left-top.png);
  background-position: center;
  background-size: cover;
}
.company-profile-section:after {
  content: "";
  position: absolute;
  width: 30%;
  height: auto;
  right: 0;
  bottom: 0;
  aspect-ratio: 404.43 / 645.58;
  background-image: url(/img/company/right-bottom.png);
  background-position: center;
  background-size: cover;
}
.company-info-wrapper,
.access-info-wrapper {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.access-info-wrapper {
  margin-top: 8rem;
  position: relative;
}

/* Background Text */
.company-info-bg-text {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Inter", sans-serif;
  font-size: 8rem;
  font-weight: 700;
  color: #e6e6e6;
  white-space: nowrap;
  user-select: none;
  z-index: 1;
}
.company-info-bg-text {
  margin-top: -50px;
}
.access-info-bg-text {
  position: absolute;
  bottom: -6rem;
  right: 0;
  font-family: "Inter", sans-serif;
  font-size: 8rem;
  font-weight: 700;
  color: #e6e6e6;
  white-space: nowrap;
  user-select: none;
  z-index: 100;
}

/* Main Titles */
.company-info-main-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e3a8a;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}
.access-info-main-title {
  text-align: left;
  font-size: 38px;
  font-weight: 700;
  color: #1e3a8a;
  position: relative;
  z-index: 1;
}

/* Info Table */
.company-info-table {
  background-color: #ffffff;
  // border: 1px solid #E6E6E6;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
  margin-top: 70px;
  font-weight: 500;
  border-right: 1px solid #e6e6e6;
}
.company-info-row {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #dee2e6;
  padding: 18px 0;
}
.company-info-row:last-child {
  border-bottom: none;
}
.company-info-header {
  background-color: #ffffff;
  padding: 1rem 1.5rem;
  color: #222222;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  border-right: 1px solid #dee2e6;
}
.company-info-data {
  padding: 1rem 1.5rem;
  color: #222222;
  line-height: 1.7;
  font-weight: 600;
}

.company-info-service-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.company-info-service-list li {
  position: relative;
  padding-left: 1.25em;
}
.company-info-service-list li::before {
  content: "■";
  position: absolute;
  left: 0;
  color: #222222;
  font-size: 0.8em;
}
.sp-br{
  display: none;
}
@media (max-width: 1023px) {
.company-info-bg-text {
  top: 3rem;
  left: 50%;
  font-size: 6rem;
}
.company-info-bg-text {
  margin-top: -50px;
}
.access-info-bg-text {
  font-size: 4rem;
  bottom: -1.5rem;
}
}
@media (max-width:768px) {
.company-info-bg-text {
  top: 3rem;
  left: 50%;
  font-size: 4rem;
}
.company-info-bg-text {
  margin-top: 50px;
}
.access-info-bg-text {
  font-size: 4rem;
}
.company-info-header {
  background-color: #f8f8f8;
}
.company-info-data {
  padding: 1rem 1.5rem;
  color: #222222;
  line-height: 1.7;
  font-weight: 400;
}
.company-info-row {
  padding:0;
}
.sp-br{
  display: block;
}
.access-info-main-title {
  font-size: 1.6rem;
}
}

/* Access Map */
.access-map-container {
  width: 100%;
  height: 250px;
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* --- Responsive Design --- */
@media (min-width: 768px) {
  .company-info-row {
    flex-direction: row;
  }
  .company-info-header {
    width: 200px;
    flex-shrink: 0;
    border-right: 1px solid #dee2e6;
  }
  .company-info-data {
    flex-grow: 1;
  }

}

/* --- Contact Section --- */
.contact-section {
  padding: 6rem 2rem;
  background-color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
}
.contact-container {
  max-width: 800px;
  margin: 0 auto;
}
.contact-main-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #293b8e;
  display: inline-block;
  width: 100%;
}

/* Form General Styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-form-label {
  font-weight: 600;
  color: #333;
  text-align: left;
}
.contact-form-required,
.contact-form-optional {
  font-weight: 400;
  font-size: 0.9em;
  color: #555;
}
.contact-form-input,
.contact-form-select,
.contact-form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-form-input:focus,
.contact-form-select:focus,
.contact-form-textarea:focus {
  outline: none;
  border-color: #293b8e;
  box-shadow: 0 0 0 2px rgba(41, 59, 142, 0.2);
}
.contact-form-note {
  font-size: 0.85rem;
  color: #666;
}
.contact-form-group-u15 {
  display: contents; /* JavaScriptで表示/非表示を切り替えることを想定 */
}

/* Select Dropdown */
.contact-form-select-wrapper {
  position: relative;
}
.contact-form-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.contact-form-select-wrapper::after {
  content: "▼";
  font-size: 0.8rem;
  color: #555;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Textarea */
.contact-form-textarea {
  resize: vertical;
}

/* Privacy Checkbox */
.contact-form-privacy-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.contact-form-checkbox {
  width: 18px;
  height: 18px;
  accent-color: #293b8e;
}
.contact-form-checkbox-label {
  font-weight: 600;
  border-bottom: 1px solid #222222;
}
.contact-form-checkbox-label:hover{
  transition: .5s;
  border: none;
  cursor: pointer;
  opacity: 0.7;
}
.contact-form-checkbox-text {
  color: #333;
}

/* Submit Button */
.contact-form-submit-group {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.contact-form-submit-button {
  padding: 1rem 3rem;
  background-color: #293b8e;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}
.contact-form-submit-button:hover {
  background-color: #1e2a6a;
}
@media (max-width: 1023px) {
  .header-logo{
    height: 70px;
  }
  .header{
  padding: 0 1rem;
}
}

