@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "Zen Old Mincho", serif;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
header ul,
header ol {
  padding: 0;
}

footer ul,
footer ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.about-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.about-hero__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  filter: brightness(0.7);
}

.about-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.about-hero__title {
  font-family: "Anton", sans-serif;
  font-weight: 700;
  font-size: 72px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-hero__subtitle {
  font-family: "Sawarabi Mincho", serif;
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 768px) {
  .about-hero {
    height: 300px;
  }
  .about-hero__title {
    font-size: 48px;
  }
  .about-hero__subtitle {
    font-size: 16px;
  }
}
.team-slogan {
  padding-top: 120px;
  background-color: #fff;
  text-align: center;
}

.team-slogan__content {
  max-width: 800px;
  margin: 0 auto;
}

.team-slogan__title {
  font-family: "Anton", sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #253274;
  text-transform: uppercase;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
}

.team-slogan__main {
  margin-bottom: 60px;
}

.team-slogan__text {
  font-family: "Sawarabi Mincho", serif;
  font-weight: 700;
  font-size: 64px;
  color: #000;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.team-slogan__english {
  font-family: "Anton", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #56564E;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.team-slogan__description {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.team-slogan__description p {
  color: #000;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .team-slogan {
    padding-top: 80px;
  }
  .team-slogan__title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .team-slogan__text {
    font-size: 48px;
  }
  .team-slogan__english {
    font-size: 18px;
  }
  .team-slogan__description {
    margin-bottom: 40px;
  }
  .team-slogan__description p {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
.team-features {
  position: relative;
  padding: 120px 0 0 0;
  background-color: transparent;
}
.team-features .section-title {
  text-align: center;
  color: #000;
  font-family: "Sawarabi Mincho", serif;
  font-weight: 700;
  font-size: 48px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 60px 0;
  padding: 0 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0;
  height: 100vh;
  min-height: 600px;
}

.feature-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  border: none;
  background: transparent;
}

.feature-card__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.feature-card__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  top: 0;
  left: 0;
}
.feature-card__bg-img:first-child {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.feature-card__bg-img--hover {
  opacity: 0;
  transform: scale(1.1);
  z-index: 2;
}

.feature-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card__content {
  position: relative;
  z-index: 4;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  color: #fff;
}

.feature-card__header {
  margin-bottom: auto;
  padding-top: 0;
}

.feature-card__title {
  font-family: "Sawarabi Mincho", serif;
  font-weight: 700;
  font-size: 28px;
  color: #fff;
  margin: 0;
  letter-spacing: 0.02em;
  line-height: 1.3;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card__detail {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 0;
  overflow: hidden;
}

.feature-card__content-title {
  font-family: "Sawarabi Mincho", serif;
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.feature-card__description {
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  line-height: 1.7;
  text-align: left;
  margin-bottom: 30px;
}

.feature-card__points {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-card__points li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}
.feature-card__points li::before {
  content: "•";
  color: rgba(255, 255, 255, 0.8);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  font-size: 16px;
}
.feature-card__points li:last-child {
  margin-bottom: 0;
}

.feature-card:hover .feature-card__bg-img:first-child {
  opacity: 0;
  transform: scale(0.95);
}
.feature-card:hover .feature-card__bg-img.feature-card__bg-img--hover {
  opacity: 1;
  transform: scale(1.05);
}
.feature-card:hover .feature-card__overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.feature-card:hover .feature-card__title {
  transform: translateY(-10px);
}
.feature-card:hover .feature-card__detail {
  opacity: 1;
  transform: translateY(0);
  max-height: 1000px;
}

@media screen and (max-width: 1024px) {
  .team-features {
    padding: 80px 0 0 0;
  }
  .team-features .section-title {
    font-size: 36px;
    margin-bottom: 40px;
  }
  .features-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    height: auto;
    min-height: auto;
  }
  .feature-card {
    height: 50vh;
    min-height: 400px;
  }
  .feature-card__content {
    padding: 30px;
  }
  .feature-card__title {
    font-size: 24px;
  }
  .feature-card__content-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .feature-card__description {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .feature-card__points li {
    font-size: 13px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .team-features {
    padding: 60px 0 0 0;
  }
  .team-features .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .features-grid {
    margin-top: 0;
  }
  .feature-card {
    height: 60vh;
    min-height: 350px;
  }
  .feature-card__content {
    padding: 24px 20px;
  }
  .feature-card__title {
    font-size: 20px;
  }
  .feature-card__content-title {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .feature-card__description {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .feature-card__points li {
    font-size: 12px;
    margin-bottom: 8px;
    padding-left: 16px;
  }
}
.manager-message {
  padding: 120px 0;
  background-color: #fff;
}

.manager-message__content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: center;
}

.manager-message__text {
  max-width: 100%;
}

.manager-message__info {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid #253274;
}

.manager-message__name {
  font-family: "Sawarabi Mincho", serif;
  font-weight: 700;
  font-size: 32px;
  color: #000;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.manager-message__title {
  font-size: 18px;
  color: #253274;
  font-weight: 500;
  margin-bottom: 12px;
}

.manager-message__career {
  color: #56564E;
  font-size: 14px;
  line-height: 1.6;
}

.manager-message__body p {
  color: #000;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
  text-align: left;
}

.manager-message__image {
  max-width: 400px;
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
}

.manager-message__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 1024px) {
  .manager-message__content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .manager-message__image {
    order: -1;
    margin: 0 auto;
    max-width: 300px;
  }
  .manager-message__body p {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .manager-message {
    padding: 80px 0;
  }
  .manager-message__content {
    gap: 40px;
  }
  .manager-message__info {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }
  .manager-message__name {
    font-size: 28px;
  }
  .manager-message__title {
    font-size: 16px;
  }
  .manager-message__body p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .manager-message__image {
    max-width: 250px;
  }
}
/*16px＝1rem*/
body {
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  body {
    padding-top: 70px;
  }
}
@media screen and (max-width: 375px) {
  body {
    padding-top: 60px;
  }
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 10px;
  }
}

.section-title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 36px;
  color: #253274;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #ff9e0c;
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #56564E;
  margin-bottom: 40px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.section-more {
  color: #253274;
  text-decoration: none;
  font-weight: 500;
}
.section-more:hover {
  color: #ff9e0c;
}

@media screen and (max-width: 768px) {
  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .section-header {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
}
.btn {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: #ff9e0c;
  color: #fff;
}
.btn-primary:hover {
  background-color: #d88200;
}

.btn-secondary {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-secondary:hover {
  background-color: #fff;
  color: #253274;
}

.btn-outline {
  background-color: transparent;
  color: #253274;
  border-color: #253274;
}
.btn-outline:hover {
  background-color: #253274;
  color: #fff;
}

.btn-large {
  padding: 16px 32px;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  .btn-large {
    padding: 14px 28px;
    font-size: 16px;
  }
}
/*16px＝1rem*/
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .hero {
    height: 80vh;
    min-height: 500px;
  }
}

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

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-slide__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(37, 50, 116, 0.6) 0%, rgba(37, 50, 116, 0.3) 50%, transparent 100%);
  z-index: 2;
}

.hero-slide__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 8s ease-out;
  transform: scale(1);
}

.swiper-slide-active .hero-slide__bg-img {
  transform: scale(1.05);
}

.hero-slide__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .hero-slide__content {
    max-width: 90%;
    padding: 0 15px;
  }
}

.hero-slide__text {
  position: relative;
  padding: 40px 0;
}
.hero-slide__text .hero-slide__title,
.hero-slide__text .hero-slide__description {
  opacity: 0;
  transform: translateY(30px);
  transition: none;
}
.hero-slide__text.animate .hero-slide__title {
  -webkit-animation: elegantSlideIn 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
          animation: elegantSlideIn 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.hero-slide__text.animate .hero-slide__description {
  -webkit-animation: elegantSlideIn 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s forwards;
          animation: elegantSlideIn 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s forwards;
}
.hero-slide__text.animate .hero-slide__accent-dots span {
  -webkit-animation: dotReveal 0.6s ease-out 1s forwards;
          animation: dotReveal 0.6s ease-out 1s forwards;
}
.hero-slide__text.animate .hero-slide__accent-dots span:nth-child(1) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.hero-slide__text.animate .hero-slide__accent-dots span:nth-child(2) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.hero-slide__text.animate .hero-slide__accent-dots span:nth-child(3) {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
.hero-slide__text.visible .hero-slide__title,
.hero-slide__text.visible .hero-slide__description {
  opacity: 1;
  transform: translateY(0);
}
.hero-slide__text.visible .hero-slide__accent-dots span {
  opacity: 0.6;
  transform: scale(1);
}
.hero-slide__text.hidden .hero-slide__title,
.hero-slide__text.hidden .hero-slide__description {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.hero-slide__text.hidden .hero-slide__accent-dots span {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-slide__title {
  font-family: "Anton", sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 64px);
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.05em;
  transition: all 0.6s ease;
  cursor: default;
}
.hero-slide__title:hover {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}
@media screen and (max-width: 768px) {
  .hero-slide__title {
    margin-bottom: 15px;
  }
  .hero-slide__title:hover {
    transform: none;
  }
}

.hero-slide__description {
  font-size: clamp(16px, 2.5vw, 24px);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  font-weight: 500;
  transition: all 0.4s ease;
  cursor: default;
}
.hero-slide__description:hover {
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 768px) {
  .hero-slide__description {
    line-height: 1.5;
  }
  .hero-slide__description:hover {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }
}

@-webkit-keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-swiper-pagination {
  display: none !important;
}

.hero-swiper-button-next,
.hero-swiper-button-prev {
  display: none !important;
}

.hero__scrolling-text {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .hero__scrolling-text {
    bottom: 20px;
  }
}

.hero__text-line {
  white-space: nowrap;
  font-family: "Anton", sans-serif;
  font-weight: 700;
  font-size: clamp(60px, 12vw, 200px);
  color: rgba(37, 50, 116, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  -webkit-animation: scrollText 80s linear infinite;
          animation: scrollText 80s linear infinite;
}
@media screen and (max-width: 768px) {
  .hero__text-line {
    font-size: clamp(40px, 10vw, 120px);
  }
}

@-webkit-keyframes scrollText {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes scrollText {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.hero-swiper .swiper-slide {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero-swiper .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.hero-swiper .swiper-slide.swiper-slide-prev, .hero-swiper .swiper-slide.swiper-slide-next {
  opacity: 0.5;
}

.hero__decorations {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.hero__decoration {
  position: absolute;
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.6), transparent);
}
.hero__decoration--top-left {
  top: 60px;
  left: 60px;
  -webkit-animation: decorationPulse 4s ease-in-out infinite;
          animation: decorationPulse 4s ease-in-out infinite;
}
.hero__decoration--top-right {
  top: 60px;
  right: 60px;
  -webkit-animation: decorationPulse 4s ease-in-out infinite 1s;
          animation: decorationPulse 4s ease-in-out infinite 1s;
}
.hero__decoration--bottom-left {
  bottom: 100px;
  left: 60px;
  -webkit-animation: decorationPulse 4s ease-in-out infinite 2s;
          animation: decorationPulse 4s ease-in-out infinite 2s;
}
.hero__decoration--bottom-right {
  bottom: 100px;
  right: 60px;
  -webkit-animation: decorationPulse 4s ease-in-out infinite 3s;
          animation: decorationPulse 4s ease-in-out infinite 3s;
}
@media screen and (max-width: 768px) {
  .hero__decoration {
    display: none;
  }
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-slide__accent-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8), transparent);
  margin: 0 auto 30px;
  -webkit-animation: lineGlow 3s ease-in-out infinite;
          animation: lineGlow 3s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  .hero-slide__accent-line {
    width: 40px;
    margin-bottom: 20px;
  }
}

.hero-slide__accent-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .hero-slide__accent-dots {
    gap: 8px;
    margin-top: 20px;
  }
}
.hero-slide__accent-dots span {
  width: 6px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  -webkit-animation: dotPulse 2s ease-in-out infinite;
          animation: dotPulse 2s ease-in-out infinite;
}
.hero-slide__accent-dots span:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.hero-slide__accent-dots span:nth-child(2) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.hero-slide__accent-dots span:nth-child(3) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

@-webkit-keyframes decorationPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.8;
    transform: scaleY(1.2);
  }
}

@keyframes decorationPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.8;
    transform: scaleY(1.2);
  }
}
@-webkit-keyframes particleFloat {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(20px);
    opacity: 0;
  }
}
@keyframes particleFloat {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(20px);
    opacity: 0;
  }
}
@-webkit-keyframes lineGlow {
  0%, 100% {
    opacity: 0.6;
    transform: scaleX(1);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.1);
  }
}
@keyframes lineGlow {
  0%, 100% {
    opacity: 0.6;
    transform: scaleX(1);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.1);
  }
}
@-webkit-keyframes dotPulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}
@keyframes dotPulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}
@-webkit-keyframes elegantSlideIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  60% {
    opacity: 0.8;
    transform: translateY(-2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes elegantSlideIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  60% {
    opacity: 0.8;
    transform: translateY(-2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes dotReveal {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
}
@keyframes dotReveal {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
}
.news-section {
  padding: 80px 0;
  background-color: #fff;
}

.news-section .inner {
  max-width: 1200px;
}

.news-section__title {
  font-family: "Anton", sans-serif;
  font-weight: 700;
  font-size: clamp(60px, 8vw, 120px);
  color: #000;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.news-section__subtitle {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  color: #56564E;
  margin-bottom: 60px;
}

.news-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.news-pickup {
  position: relative;
}

.news-pickup__label {
  font-family: "Anton", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
}

.news-pickup__item {
  background-color: #000;
  border-radius: 12px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.news-pickup__category {
  background-color: #fff;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.news-pickup__date {
  color: #fff;
  font-size: 14px;
  margin-bottom: 15px;
}

.news-pickup__title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}

.news-pickup__title a {
  color: #fff;
}

.news-pickup__excerpt {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
}

.news-category-area {
  display: flex;
  flex-direction: column;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-item {
  border-bottom: 1px solid #D5D5D5;
}
.news-item:last-child {
  border-bottom: none;
}

.news-item__link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.news-item__link:hover {
  transform: translateX(5px);
}

.news-item__date {
  color: #56564E;
  font-size: 14px;
  min-width: 80px;
}

.news-item__category {
  background-color: #D9D9D9;
  color: #000;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 12px;
  text-transform: uppercase;
  min-width: 60px;
  text-align: center;
}

.news-item__title {
  flex: 1;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.news-item__link:hover .news-item__title {
  color: #253274;
}

.news-item__arrow {
  color: #253274;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.news-item__link:hover .news-item__arrow {
  transform: translateX(5px);
}

.news-view-more {
  margin-top: 40px;
  text-align: center;
}

.news-view-more__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #253274;
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-family: "Anton", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.news-view-more__btn:hover {
  background-color: #19214d;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.news-view-more__icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.news-view-more__btn:hover .news-view-more__icon {
  transform: translateX(5px);
}

@media screen and (max-width: 768px) {
  .news-section {
    padding: 60px 0;
  }
  .news-section__title {
    font-size: 48px;
    margin-bottom: 15px;
  }
  .news-section__subtitle {
    font-size: 14px;
    margin-bottom: 40px;
  }
  .news-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .news-pickup__label {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .news-pickup__item {
    padding: 20px;
  }
  .news-pickup__title {
    font-size: 16px;
  }
  .news-item__link {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 15px 0;
  }
  .news-item__date {
    min-width: auto;
    font-size: 12px;
  }
  .news-item__category {
    min-width: auto;
  }
  .news-item__title {
    font-size: 14px;
  }
}
.latest-result {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.result-card {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.result-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #253274;
  color: #fff;
  padding: 20px;
  border-radius: 8px;
  min-width: 100px;
}

.result-card__month {
  font-size: 16px;
  font-weight: 500;
}

.result-card__day {
  font-size: 36px;
  font-weight: 700;
}

.result-card__details {
  flex: 1;
}

.result-card__type {
  display: inline-block;
  background-color: #ff9e0c;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.result-card__teams {
  font-size: 20px;
  font-weight: 700;
  color: #253274;
  margin-bottom: 10px;
}

.result-card__score {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.result-card__score-home,
.result-card__score-away {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  background-color: #D9D9D9;
  padding: 8px 12px;
  border-radius: 6px;
  min-width: 40px;
  text-align: center;
}

.result-card__score-separator {
  font-size: 18px;
  font-weight: 700;
  color: #56564E;
}

.result-card__result {
  font-size: 18px;
  font-weight: 700;
  color: #ff9e0c;
  margin-bottom: 6px;
}

.result-card__venue {
  color: #56564E;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .latest-result {
    padding: 60px 0;
  }
  .result-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 20px;
  }
  .result-card__teams {
    font-size: 16px;
  }
  .result-card__score {
    justify-content: center;
  }
  .result-card__score-home,
.result-card__score-away {
    font-size: 20px;
  }
}
.alumni-section {
  padding: 80px 0;
  background-color: #fff;
}

.alumni-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.alumni-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #D5D5D5;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 20px;
}
.alumni-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.alumni-card__year {
  background-color: #253274;
  color: #fff;
  font-family: "Anton", sans-serif;
  font-weight: 700;
  font-size: 24px;
  padding: 16px;
  border-radius: 8px;
  min-width: 80px;
  text-align: center;
  line-height: 1;
}

.alumni-card__info {
  flex: 1;
}

.alumni-card__name {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 6px;
}

.alumni-card__position {
  color: #56564E;
  font-size: 14px;
  margin-bottom: 4px;
}

.alumni-card__destination {
  color: #ff9e0c;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}

.alumni-card__team {
  font-weight: 700;
  color: #253274;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .alumni-section {
    padding: 60px 0;
  }
  .alumni-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .alumni-card {
    padding: 20px;
    gap: 16px;
  }
  .alumni-card__year {
    font-size: 20px;
    padding: 12px;
    min-width: 70px;
  }
  .alumni-card__name {
    font-size: 18px;
  }
  .alumni-card__team {
    font-size: 14px;
  }
}
.alumni-empty {
  text-align: center;
  padding: 60px 20px;
  background-color: #fff;
  border-radius: 12px;
  border: 2px dashed #D5D5D5;
}
.alumni-empty p {
  margin: 0 0 15px 0;
  color: #56564E;
  font-size: 16px;
}
.alumni-empty p:last-child {
  margin-bottom: 0;
}
.alumni-empty p a {
  color: #253274;
  text-decoration: none;
  font-weight: 500;
}
.alumni-empty p a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .alumni-empty {
    padding: 40px 15px;
  }
  .alumni-empty p {
    font-size: 14px;
  }
}

.about-section {
  padding: 80px 0;
  background-color: #fff;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text {
  padding-right: 40px;
}

.about-text__title {
  font-family: "Anton", sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 6vw, 72px);
  color: #000;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.about-text__subtitle {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  color: #56564E;
  margin-bottom: 40px;
  font-weight: 400;
}

.about-text__description {
  margin-bottom: 40px;
}
.about-text__description p {
  color: #000;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-text__description p:last-child {
  margin-bottom: 0;
}

.about-text__button {
  margin-top: 40px;
}

.btn-about {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #253274;
  color: #fff;
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-family: "Anton", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
}
.btn-about:hover {
  background-color: #19214d;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.btn-about__icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.btn-about:hover .btn-about__icon {
  transform: translateX(5px);
}

.about-slider {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-swiper {
  width: 100%;
  height: 500px;
}

.about-slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.about-slide__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.5s ease;
}

.about-slide:hover .about-slide__image {
  transform: scale(1.05);
}

.about-pagination {
  bottom: 20px !important;
}
.about-pagination .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  width: 12px;
  height: 12px;
  margin: 0 6px !important;
  transition: all 0.3s ease;
}
.about-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fff;
  transform: scale(1.2);
}

.about-button-next,
.about-button-prev {
  color: #fff !important;
  background-color: rgba(0, 0, 0, 0.3) !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
}
.about-button-next:hover,
.about-button-prev:hover {
  background-color: rgba(0, 0, 0, 0.6) !important;
  transform: scale(1.1) !important;
}
.about-button-next::after,
.about-button-prev::after {
  font-size: 18px !important;
  font-weight: bold !important;
}

.about-button-next {
  right: 20px !important;
}

.about-button-prev {
  left: 20px !important;
}

@media screen and (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .about-text {
    padding-right: 0;
    order: 2;
  }
  .about-slider {
    order: 1;
  }
  .about-text__title {
    font-size: 36px;
    margin-bottom: 8px;
  }
  .about-text__subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .about-text__description {
    margin-bottom: 30px;
  }
  .about-text__description p {
    text-align: left;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 5px;
  }
  .about-text__button {
    margin-top: 30px;
  }
  .btn-about {
    padding: 15px 30px;
    font-size: 14px;
  }
  .about-swiper {
    height: 350px;
  }
  .about-button-next,
.about-button-prev {
    width: 40px !important;
    height: 40px !important;
  }
  .about-button-next::after,
.about-button-prev::after {
    font-size: 16px !important;
  }
  .about-button-next {
    right: 15px !important;
  }
  .about-button-prev {
    left: 15px !important;
  }
}
.recruit-cta {
  padding: 120px 0;
  background-image: url("../images/fukuoka-b-fv.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  position: relative;
}

.recruit-cta__content {
  position: relative;
  z-index: 2;
}

.recruit-cta__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.recruit-cta__text {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.recruit-cta__features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.recruit-cta__actions {
  position: relative;
  z-index: 2;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.feature-item__icon {
  font-size: 48px;
}

.feature-item__text {
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .recruit-cta {
    padding: 60px 0;
  }
  .recruit-cta__title {
    font-size: 28px;
  }
  .recruit-cta__text {
    font-size: 16px;
  }
  .recruit-cta__features {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item__icon {
    font-size: 36px;
  }
}
.sns-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.instagram-feed {
  max-width: 1000px;
  margin: 0 auto;
}
.instagram-feed #sb_instagram {
  max-width: 100% !important;
}
.instagram-feed .sbi_item {
  margin: 10px !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
  transition: transform 0.3s ease !important;
}
.instagram-feed .sbi_item:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}
.instagram-feed .sbi_photo {
  border-radius: 12px !important;
}
.instagram-feed .sbi_photo img {
  border-radius: 12px !important;
}
.instagram-feed .sbi_caption_wrap {
  padding: 15px !important;
  background-color: #fff !important;
}
.instagram-feed .sbi_caption {
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: #000 !important;
}

@media screen and (max-width: 768px) {
  .sns-section {
    padding: 60px 0;
  }
  .instagram-feed .sbi_item {
    margin: 8px !important;
  }
}
.sponsor-section {
  padding: 80px 0;
  background-color: #D9D9D9;
  overflow: hidden;
}

.sponsor-slider {
  overflow: hidden;
}

.sponsor-swiper {
  overflow: visible;
}

.sponsor-swiper .swiper-wrapper {
  align-items: center;
  transition-timing-function: linear !important;
}

.sponsor-swiper .swiper-slide {
  width: auto !important;
  flex-shrink: 0;
}

.sponsor-item {
  max-width: 300px;
  aspect-ratio: 280/110;
  width: 100%;
  height: auto;
}

.sponsor-item__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 768px) {
  .sponsor-section {
    padding: 60px 0;
  }
  .sponsor-item {
    max-width: 200px;
    aspect-ratio: 200/80;
  }
}
@media screen and (max-width: 375px) {
  .sponsor-section {
    padding: 40px 0;
  }
}
.footer {
  background: #253274;
  color: #fff;
  padding: 40px 0 0;
  margin-top: auto;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  margin-bottom: 20px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer__logo-img {
  max-width: 80px;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}

.footer__logo-text {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin: 0;
  letter-spacing: 0.05em;
}

.footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 30px;
}

.footer__nav-item {
  margin: 0;
}

.footer__nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}
.footer__nav-link:hover {
  color: #ff9e0c;
}

.footer__sponsors {
  padding: 40px 0 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 30px;
}

.footer__sponsors-title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  text-align: center;
  margin: 0 0 20px 0;
  letter-spacing: 0.05em;
}

.footer__sponsors-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .footer__sponsors-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 375px) {
  .footer__sponsors-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.footer__sponsor-item {
  max-width: 280px;
  width: 100%;
  height: auto;
  aspect-ratio: 280/110;
}

.footer__sponsor-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__bottom {
  text-align: center;
  padding: 20px 0;
}

.footer__copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

@media screen and (max-width: 768px) {
  .footer__inner {
    padding: 0 15px;
  }
  .footer__content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .footer__nav-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
}
@media screen and (max-width: 375px) {
  .footer {
    padding: 30px 0 0;
  }
  .footer__content {
    padding-bottom: 20px;
    margin-bottom: 15px;
  }
  .footer__logo-img {
    max-width: 60px;
  }
  .footer__logo-text {
    font-size: 14px;
  }
  .footer__nav-list {
    gap: 10px;
  }
  .footer__nav-link {
    font-size: 13px;
  }
  .footer__sponsors {
    padding: 30px 0 20px 0;
  }
  .footer__sponsors-title {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .footer__sponsors-list {
    gap: 20px;
  }
  .footer__sponsor-item {
    max-width: 80px;
  }
  .footer__bottom {
    padding: 15px 0;
  }
  .footer__copyright {
    font-size: 12px;
  }
}
/*16px＝1rem*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(37, 50, 114, 0.1);
  transition: all 0.3s ease;
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.header__logo-link:hover {
  opacity: 0.8;
}

.header__logo-img {
  max-width: 50px;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
.header__logo-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__logo-text {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 18px;
  color: #253274;
  letter-spacing: 0.05em;
}

.header__wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
  justify-content: flex-end;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__nav-link {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 16px;
  color: #253274;
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}
.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ff9e0c;
  transition: width 0.3s ease;
}
.header__nav-link:hover {
  color: #ff9e0c;
}
.header__nav-link:hover::after {
  width: 100%;
}

.header__contact-btn {
  font-size: 14px;
  padding: 10px 20px;
}
.header__contact-btn:hover {
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
  z-index: 101;
  margin-left: 20px;
}

.hamburger__line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #253274;
  position: absolute;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger__line:nth-child(1) {
  top: 0;
}

.hamburger__line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger__line:nth-child(3) {
  bottom: 0;
}

.hamburger.is-active .hamburger__line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active .hamburger__line:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.drawer-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(37, 50, 114, 0.9);
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.drawer-menu.is-active {
  visibility: visible;
  opacity: 1;
}

.drawer-menu__inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background-color: #fff;
  padding: 80px 30px 30px;
  transform: translateX(100%);
  transition: all 0.3s ease;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.drawer-menu.is-active .drawer-menu__inner {
  transform: translateX(0);
}

.drawer-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.drawer-menu__link {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 16px;
  color: #253274;
  text-decoration: none;
  padding: 15px 0;
  display: block;
  border-bottom: 1px solid #D5D5D5;
  transition: color 0.3s ease;
}
.drawer-menu__link:hover {
  color: #ff9e0c;
}

.drawer-menu__cta {
  margin-top: 40px;
}

.drawer-menu__contact-btn {
  width: 100%;
  text-align: center;
  font-size: 16px;
  padding: 15px;
}

@media screen and (max-width: 768px) {
  .header__inner {
    padding: 12px 15px;
  }
  .header__logo-text {
    font-size: 16px;
  }
  .header__wrapper {
    justify-content: flex-end;
  }
  .header__nav,
.header__cta {
    display: none;
  }
  .hamburger {
    display: block;
    margin-left: 0;
  }
  .drawer-menu__inner {
    width: 280px;
    padding: 70px 20px 20px;
  }
}
@media screen and (max-width: 375px) {
  .header__logo-img {
    max-width: 40px;
  }
  .header__logo-text {
    font-size: 14px;
  }
  .drawer-menu__inner {
    width: 250px;
  }
}
.fixed-banners {
  position: fixed;
  z-index: 98;
}
@media (min-width: 768px) {
  .fixed-banners {
    right: 20px;
    bottom: 30px;
  }
}
@media (max-width: 767px) {
  .fixed-banners {
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    box-shadow: 0 -2px 20px rgba(37, 50, 114, 0.15);
    padding: 12px 15px;
  }
}

.fixed-banners__container {
  display: flex;
}
@media (min-width: 768px) {
  .fixed-banners__container {
    flex-direction: column;
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .fixed-banners__container {
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
  }
}

.fixed-banner {
  display: flex;
  align-items: center;
  text-decoration: none;
  background: linear-gradient(135deg, #253274 0%, #ff9e0c 100%);
  color: #fff;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(37, 50, 114, 0.2);
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .fixed-banner {
    padding: 20px 22px;
    min-width: 220px;
    min-height: 80px;
    gap: 15px;
  }
  .fixed-banner:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(37, 50, 114, 0.3);
  }
}
@media (max-width: 767px) {
  .fixed-banner {
    padding: 12px 15px;
    flex: 1;
    gap: 8px;
    min-height: 50px;
  }
  .fixed-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 50, 114, 0.25);
  }
}
.fixed-banner--gym {
  background: linear-gradient(135deg, #ff9e0c 0%, #ffb23f 100%);
}
.fixed-banner--gym::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
}
.fixed-banner--career {
  background: linear-gradient(135deg, #253274 0%, #384bae 100%);
}
.fixed-banner--career::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
}

.fixed-banner__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .fixed-banner__icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
  }
}
@media (max-width: 767px) {
  .fixed-banner__icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
  }
}
@media (min-width: 768px) {
  .fixed-banner__icon svg {
    width: 25px;
    height: 25px;
  }
}
@media (max-width: 767px) {
  .fixed-banner__icon svg {
    width: 18px;
    height: 18px;
  }
}

.fixed-banner__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .fixed-banner__logo {
    width: 110px;
    height: auto;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
  }
}
@media (max-width: 767px) {
  .fixed-banner__logo {
    width: 70px;
    height: auto;
    padding: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
  }
}

.fixed-banner__logo-img {
  width: 100%;
  height: auto;
  aspect-ratio: 210/58;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
}

.fixed-banner__content {
  flex: 1;
  min-width: 0;
}

.fixed-banner__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .fixed-banner__title {
    font-size: 15px;
    margin-bottom: 3px;
  }
}
@media (max-width: 767px) {
  .fixed-banner__title {
    font-size: 12px;
    margin-bottom: 1px;
  }
}

.fixed-banner__subtitle {
  font-family: "Zen Old Mincho", serif;
  font-weight: 300;
  opacity: 0.9;
  line-height: 1;
}
@media (min-width: 768px) {
  .fixed-banner__subtitle {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .fixed-banner__subtitle {
    font-size: 10px;
  }
}

.fixed-banners {
  -webkit-animation: slideInBanners 0.6s ease-out 0.8s both;
          animation: slideInBanners 0.6s ease-out 0.8s both;
}

@-webkit-keyframes slideInBanners {
  from {
    @media (min-width: 768px) {
      transform: translateX(100%);
      opacity: 0;
    }
    @media (max-width: 767px) {
      transform: translateY(100%);
      opacity: 0;
    }
  }
  to {
    transform: translate(0);
    opacity: 1;
  }
}

@keyframes slideInBanners {
  from {
    @media (min-width: 768px) {
      transform: translateX(100%);
      opacity: 0;
    }
    @media (max-width: 767px) {
      transform: translateY(100%);
      opacity: 0;
    }
  }
  to {
    transform: translate(0);
    opacity: 1;
  }
}
.sponsors {
  background-color: #fff;
  padding: 80px 0;
}

@media screen and (max-width: 768px) {
  .sponsors {
    padding: 60px 0;
  }
}
.sponsors__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 25px;
}

@media screen and (max-width: 768px) {
  .sponsors__inner {
    padding: 0 15px;
  }
}
.sponsors__title {
  font-family: "Sawarabi Mincho", serif;
  font-weight: 700;
  font-size: 40px;
  color: #000;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .sponsors__title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}
.sponsors__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: center;
  justify-items: center;
}

@media screen and (max-width: 768px) {
  .sponsors__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media screen and (max-width: 375px) {
  .sponsors__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.sponsors__item {
  max-width: 280px;
  width: 100%;
  height: auto;
  aspect-ratio: 280/110;
}

.sponsors__link {
  display: block;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
}

.sponsors__link:hover {
  opacity: 0.8;
}

.sponsors__image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #fff;
  border: 1px solid #D5D5D5;
  border-radius: 8px;
  padding: 20px;
}

.players-hero {
  background: linear-gradient(135deg, #253274 0%, #13193a 100%);
  color: #fff;
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
}
.players-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/fukuoka-b-fv-bg.webp") center/cover no-repeat;
  opacity: 0.1;
  z-index: 1;
}
.players-hero__inner {
  position: relative;
  z-index: 2;
}
.players-hero__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.players-hero__subtitle {
  font-size: 18px;
  opacity: 0.9;
  font-weight: 500;
}

.players-main {
  padding: 80px 0;
  background: #fff;
}

.players-section {
  margin-bottom: 120px;
}
.players-section:last-child {
  margin-bottom: 0;
}
.players-section__header {
  text-align: center;
  margin-bottom: 60px;
}
.players-section__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 36px;
  color: #253274;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.players-section__title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #ff9e0c;
  border-radius: 2px;
}
.players-section__description {
  font-size: 16px;
  color: #56564E;
  font-weight: 500;
}

.staff-recruit {
  background: linear-gradient(135deg, rgba(255, 158, 12, 0.05) 0%, rgba(249, 219, 84, 0.05) 100%);
  border-radius: 20px;
  padding: 60px;
  border: 2px solid rgba(255, 158, 12, 0.1);
}
.staff-recruit__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.staff-recruit__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 28px;
  color: #253274;
  margin-bottom: 25px;
}
.staff-recruit__text {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 40px;
}
.staff-recruit__positions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}
.staff-recruit__action {
  margin-top: 40px;
}

.position-item {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 158, 12, 0.1);
  transition: all 0.3s ease;
}
.position-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-color: #ff9e0c;
}
.position-item__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 18px;
  color: #253274;
  margin-bottom: 10px;
}
.position-item__desc {
  font-size: 14px;
  color: #56564E;
  margin: 0;
}

.players-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.player-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(37, 50, 116, 0.1);
  transition: all 0.4s ease;
  position: relative;
}
.player-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #ff9e0c;
}
.player-card__image {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(37, 50, 116, 0.1) 0%, rgba(255, 158, 12, 0.1) 100%);
}
.player-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.player-card:hover .player-card__img {
  transform: scale(1.05);
}
.player-card__number {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #253274 0%, #19214d 100%);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 3px solid #fff;
}
.player-card__info {
  padding: 25px;
}
.player-card__name {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 20px;
  color: #253274;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 0.05em;
}
.player-card__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.player-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(37, 50, 116, 0.1);
}
.player-detail:last-child {
  border-bottom: none;
}
.player-detail__label {
  font-size: 13px;
  font-weight: 700;
  color: #ff9e0c;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  min-width: 60px;
}
.player-detail__value {
  font-size: 14px;
  color: #333333;
  font-weight: 500;
  text-align: right;
}

@media screen and (max-width: 1024px) {
  .players-hero {
    padding: 80px 0 60px;
  }
  .players-hero__title {
    font-size: 40px;
  }
  .players-hero__subtitle {
    font-size: 16px;
  }
  .players-main {
    padding: 60px 0;
  }
  .players-section {
    margin-bottom: 100px;
  }
  .players-section__header {
    margin-bottom: 50px;
  }
  .players-section__title {
    font-size: 32px;
  }
  .staff-recruit {
    padding: 50px;
  }
  .staff-recruit__positions {
    gap: 25px;
  }
  .players-grid {
    gap: 25px;
  }
}
@media screen and (max-width: 768px) {
  .players-hero {
    padding: 60px 0 40px;
  }
  .players-hero__title {
    font-size: 32px;
  }
  .players-hero__subtitle {
    font-size: 15px;
  }
  .players-main {
    padding: 50px 0;
  }
  .players-section {
    margin-bottom: 80px;
  }
  .players-section__header {
    margin-bottom: 40px;
  }
  .players-section__title {
    font-size: 28px;
  }
  .staff-recruit {
    padding: 40px 30px;
  }
  .staff-recruit__title {
    font-size: 24px;
  }
  .staff-recruit__text {
    font-size: 15px;
  }
  .staff-recruit__positions {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  .position-item {
    padding: 25px 20px;
  }
  .position-item__title {
    font-size: 16px;
  }
  .position-item__desc {
    font-size: 13px;
  }
  .players-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .player-card__image {
    height: 240px;
  }
  .player-card__number {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  .player-card__info {
    padding: 20px;
  }
  .player-card__name {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .player-detail__label {
    font-size: 12px;
  }
  .player-detail__value {
    font-size: 13px;
  }
}
@media screen and (max-width: 480px) {
  .player-detail {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .player-detail__value {
    text-align: left;
  }
  .staff-recruit__title {
    font-size: 22px;
  }
  .staff-recruit__text {
    text-align: left;
  }
}
@media screen and (max-width: 375px) {
  .players-hero {
    padding: 50px 0 30px;
  }
  .players-hero__title {
    font-size: 28px;
  }
  .players-hero__subtitle {
    font-size: 14px;
  }
  .players-main {
    padding: 40px 0;
  }
  .players-section {
    margin-bottom: 60px;
  }
  .players-section__header {
    margin-bottom: 30px;
  }
  .players-section__title {
    font-size: 24px;
  }
  .staff-recruit {
    padding: 30px 20px;
    border-radius: 15px;
  }
  .staff-recruit__title {
    font-size: 19px;
    margin-bottom: 20px;
  }
  .staff-recruit__text {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .staff-recruit__positions {
    margin-bottom: 30px;
  }
  .position-item {
    padding: 20px 15px;
  }
  .position-item__title {
    font-size: 15px;
  }
  .players-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .player-card__image {
    height: 200px;
  }
  .player-card__number {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .player-card__info {
    padding: 18px;
  }
  .player-card__name {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .player-detail {
    gap: 8px;
  }
  .player-detail__label {
    font-size: 11px;
    min-width: 50px;
  }
  .player-detail__value {
    font-size: 12px;
  }
}
.game-info-hero {
  background: linear-gradient(135deg, #253274 0%, #13193a 100%);
  color: #fff;
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
}
.game-info-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/fukuoka-b-fv-bg.webp") center/cover no-repeat;
  opacity: 0.1;
  z-index: 1;
}
.game-info-hero__inner {
  position: relative;
  z-index: 2;
}
.game-info-hero__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.game-info-hero__subtitle {
  font-size: 18px;
  opacity: 0.9;
  font-weight: 500;
}

.game-info-main {
  padding: 80px 0;
  background: #fff;
}

.game-info-tabs {
  margin-bottom: 60px;
}
.game-info-tabs__nav {
  display: flex;
  justify-content: center;
  border-bottom: 2px solid rgba(37, 50, 116, 0.1);
}
.game-info-tabs__button {
  background: none;
  border: none;
  padding: 15px 40px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 18px;
  color: #56564E;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}
.game-info-tabs__button:hover {
  color: #253274;
  background: rgba(37, 50, 116, 0.05);
}
.game-info-tabs__button.active {
  color: #253274;
  border-bottom-color: #253274;
  background: rgba(37, 50, 116, 0.05);
}

.game-info-tab-content {
  display: none;
}
.game-info-tab-content.active {
  display: block;
}

.game-results__header {
  text-align: center;
  margin-bottom: 50px;
}
.game-results__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 36px;
  color: #253274;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.game-results__title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #ff9e0c;
  border-radius: 2px;
}

.game-results-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.game-result-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(37, 50, 116, 0.1);
  transition: all 0.3s ease;
}
.game-result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: #ff9e0c;
}
.game-result-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(37, 50, 116, 0.1);
}
.game-result-card__date {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 18px;
  color: #253274;
}
.game-result-card__location {
  font-size: 14px;
  color: #56564E;
  background: rgba(255, 158, 12, 0.1);
  padding: 5px 12px;
  border-radius: 12px;
}
.game-result-card__type {
  display: inline-block;
  background-color: #ff9e0c;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
  margin-right: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.game-result-card__match {
  text-align: center;
}
.game-result-card__teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}
.game-result-card__team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.game-result-card__team .team-name {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 16px;
  color: #333333;
}
.game-result-card__team .team-score {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 32px;
  color: #253274;
}
.game-result-card__vs {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 20px;
  color: #56564E;
}
.game-result-card__result {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 20px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 16px;
}
.game-result-card__result.勝利 {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
}
.game-result-card__result.敗北 {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}
.game-result-card__result.引き分け {
  background: rgba(255, 193, 7, 0.1);
  color: #ffc107;
}
.game-result-card__content {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(37, 50, 116, 0.1);
  font-size: 14px;
  line-height: 1.6;
  color: #333333;
}

.game-schedule__header {
  text-align: center;
  margin-bottom: 50px;
}
.game-schedule__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 36px;
  color: #253274;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.game-schedule__title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #ff9e0c;
  border-radius: 2px;
}

.calendar-container {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(37, 50, 116, 0.1);
  margin-bottom: 50px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.calendar-header h3 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 24px;
  color: #253274;
  margin: 0;
  flex: 1;
  text-align: center;
}

.calendar-nav-btn {
  background: #253274;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.calendar-nav-btn:hover {
  background: #19214d;
  transform: scale(1.1);
}
.calendar-nav-btn:active {
  transform: scale(0.95);
}

.calendar-grid .calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  margin-bottom: 10px;
}
.calendar-grid .calendar-weekdays .weekday {
  text-align: center;
  padding: 10px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 14px;
  color: #56564E;
  background: rgba(37, 50, 116, 0.05);
}
.calendar-grid .calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
}
.calendar-grid .calendar-days .calendar-day {
  min-height: 80px;
  padding: 8px;
  background: #fff;
  border: 1px solid rgba(37, 50, 116, 0.1);
  position: relative;
}
.calendar-grid .calendar-days .calendar-day.today {
  background: rgba(37, 50, 116, 0.1);
  border-color: #253274;
}
.calendar-grid .calendar-days .calendar-day.has-game {
  background: rgba(255, 158, 12, 0.1);
  border-color: #ff9e0c;
}
.calendar-grid .calendar-days .calendar-day.empty {
  background: rgba(166, 166, 166, 0.1);
}
.calendar-grid .calendar-days .calendar-day .day-number {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 14px;
  color: #333333;
  display: block;
  margin-bottom: 5px;
}
.calendar-grid .calendar-days .calendar-day .game-info {
  font-size: 10px;
  line-height: 1.2;
  margin-bottom: 2px;
}
.calendar-grid .calendar-days .calendar-day .game-info .game-opponent {
  color: #253274;
  font-weight: 700;
}
.calendar-grid .calendar-days .calendar-day .game-info .game-time {
  color: #56564E;
}

.upcoming-games h3 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 24px;
  color: #253274;
  margin-bottom: 25px;
  text-align: center;
}

.upcoming-games-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.upcoming-game-item {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(37, 50, 116, 0.1);
  display: flex;
  align-items: center;
  gap: 25px;
  transition: all 0.3s ease;
}
.upcoming-game-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-color: #ff9e0c;
}

.upcoming-game-date {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 18px;
  color: #253274;
  min-width: 120px;
}
.upcoming-game-date .time {
  display: block;
  font-size: 14px;
  color: #56564E;
  font-weight: 500;
  margin-top: 5px;
}

.upcoming-game-details {
  flex: 1;
}

.upcoming-game-type {
  display: inline-block;
  background-color: #ff9e0c;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.upcoming-game-teams {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 16px;
  color: #333333;
  margin-bottom: 5px;
}

.upcoming-game-location {
  font-size: 14px;
  color: #56564E;
}

@media screen and (max-width: 1024px) {
  .game-info-hero {
    padding: 80px 0 60px;
  }
  .game-info-hero__title {
    font-size: 40px;
  }
  .game-info-hero__subtitle {
    font-size: 16px;
  }
  .game-info-main {
    padding: 60px 0;
  }
  .game-info-tabs__button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .game-result-card {
    padding: 25px;
  }
  .game-result-card__teams {
    gap: 20px;
  }
  .game-result-card__team .team-score {
    font-size: 28px;
  }
  .calendar-day {
    min-height: 70px;
  }
}
@media screen and (max-width: 768px) {
  .game-info-hero {
    padding: 60px 0 40px;
  }
  .game-info-hero__title {
    font-size: 32px;
  }
  .game-info-hero__subtitle {
    font-size: 15px;
  }
  .game-info-main {
    padding: 50px 0;
  }
  .game-info-tabs__nav {
    flex-direction: column;
  }
  .game-info-tabs__button {
    padding: 15px 20px;
    font-size: 16px;
  }
  .game-result-card {
    padding: 20px;
  }
  .game-result-card__header {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .game-result-card__teams {
    flex-direction: column;
    gap: 15px;
  }
  .game-result-card__vs {
    font-size: 16px;
  }
  .calendar-container {
    padding: 20px;
  }
  .calendar-day {
    min-height: 60px;
    padding: 5px;
  }
  .calendar-day .game-info {
    font-size: 9px;
  }
  .upcoming-game-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .upcoming-game-date {
    min-width: auto;
  }
}
@media screen and (max-width: 375px) {
  .game-info-hero {
    padding: 50px 0 30px;
  }
  .game-info-hero__title {
    font-size: 28px;
  }
  .game-info-hero__subtitle {
    font-size: 14px;
  }
  .game-info-main {
    padding: 40px 0;
  }
  .game-info-tabs {
    margin-bottom: 40px;
  }
  .game-info-tabs__button {
    padding: 12px 15px;
    font-size: 15px;
  }
  .game-result-card {
    padding: 15px;
  }
  .game-result-card__date {
    font-size: 16px;
  }
  .game-result-card__team .team-score {
    font-size: 24px;
  }
  .calendar-header h3 {
    font-size: 20px;
  }
  .calendar-nav-btn {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  .calendar-day {
    min-height: 50px;
    padding: 3px;
  }
  .calendar-day .day-number {
    font-size: 12px;
  }
  .calendar-day .game-info {
    font-size: 8px;
  }
  .upcoming-games h3 {
    font-size: 20px;
  }
  .upcoming-game-date {
    font-size: 16px;
  }
  .upcoming-game-teams {
    font-size: 14px;
  }
}
.no-results,
.no-upcoming-games {
  text-align: center;
  padding: 60px 20px;
  color: #56564E;
}
.no-results p,
.no-upcoming-games p {
  font-size: 16px;
  margin: 0;
}

.news-hero {
  background: linear-gradient(135deg, #253274 0%, #13193a 100%);
  color: #fff;
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
}
.news-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/fukuoka-b-fv-bg.webp") center/cover no-repeat;
  opacity: 0.1;
  z-index: 1;
}
.news-hero__inner {
  position: relative;
  z-index: 2;
}
.news-hero__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.news-hero__subtitle {
  font-size: 18px;
  opacity: 0.9;
  font-weight: 500;
}

.news-main {
  padding: 80px 0;
  background: #fff;
}

.news-categories {
  margin-bottom: 60px;
}
.news-categories__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}
.news-categories__item {
  display: inline-block;
  padding: 8px 20px;
  background: transparent;
  color: #56564E;
  text-decoration: none;
  border: 2px solid rgba(37, 50, 116, 0.2);
  border-radius: 25px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
}
.news-categories__item:hover, .news-categories__item.active {
  background: #253274;
  color: #fff;
  border-color: #253274;
}

.news-list {
  margin-bottom: 80px;
}

.news-articles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 60px;
}

.news-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(37, 50, 116, 0.1);
  transition: all 0.3s ease;
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: #ff9e0c;
}
.news-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid rgba(37, 50, 116, 0.1);
}
.news-card__date {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 14px;
  color: #56564E;
}
.news-card__category {
  display: inline-block;
  padding: 4px 12px;
  background: #ff9e0c;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 12px;
}
.news-card__content {
  padding: 25px;
}
.news-card__title {
  margin-bottom: 15px;
}
.news-card__link {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 20px;
  color: #253274;
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.3s ease;
}
.news-card__link:hover {
  color: #ff9e0c;
}
.news-card__excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 20px;
}
.news-card__image {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
}
.news-card__img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.news-card__img:hover {
  transform: scale(1.05);
}
.news-card__footer {
  padding: 0 25px 25px;
}
.news-card__read-more {
  display: inline-flex;
  align-items: center;
  color: #253274;
  text-decoration: none;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
}
.news-card__read-more::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.news-card__read-more:hover {
  color: #ff9e0c;
}
.news-card__read-more:hover::after {
  transform: translateX(4px);
}

.news-pagination {
  display: flex;
  justify-content: center;
}
.news-pagination .page-numbers {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px;
}
.news-pagination .page-numbers li {
  display: flex;
}
.news-pagination .page-numbers a,
.news-pagination .page-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 15px;
  background: #fff;
  color: #253274;
  text-decoration: none;
  border: 1px solid rgba(37, 50, 116, 0.2);
  border-radius: 6px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
}
.news-pagination .page-numbers a:hover,
.news-pagination .page-numbers span:hover {
  background: #253274;
  color: #fff;
  border-color: #253274;
}
.news-pagination .page-numbers .current {
  background: #253274;
  color: #fff;
  border-color: #253274;
}

.news-empty {
  text-align: center;
  padding: 80px 20px;
}
.news-empty__content {
  max-width: 400px;
  margin: 0 auto;
}
.news-empty__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 24px;
  color: #253274;
  margin-bottom: 15px;
}
.news-empty__text {
  font-size: 16px;
  color: #56564E;
  margin: 0;
}

.article-hero {
  background: linear-gradient(135deg, #253274 0%, #13193a 100%);
  color: #fff;
  padding: 120px 0 80px;
  position: relative;
}
.article-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/fukuoka-b-fv-bg.webp") center/cover no-repeat;
  opacity: 0.1;
  z-index: 1;
}
.article-hero__inner {
  position: relative;
  z-index: 2;
}
.article-hero__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.article-hero__meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}
.article-hero__date {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 16px;
  opacity: 0.9;
}
.article-hero__category {
  display: inline-block;
  padding: 6px 15px;
  background: #ff9e0c;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 15px;
}
.article-hero__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.4;
  margin: 0;
  letter-spacing: 0.02em;
}

.article-main {
  padding: 80px 0;
  background: #fff;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-featured-image {
  margin-bottom: 50px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.article-featured-image__img {
  width: 100%;
  height: auto;
  display: block;
}

.article-body {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 60px;
}
.article-body h2,
.article-body h3,
.article-body h4,
.article-body h5,
.article-body h6 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  color: #253274;
  margin: 40px 0 20px;
  line-height: 1.4;
}
.article-body h2 {
  font-size: 28px;
  padding-bottom: 10px;
  border-bottom: 3px solid #ff9e0c;
}
.article-body h3 {
  font-size: 24px;
}
.article-body h4 {
  font-size: 20px;
}
.article-body p {
  margin-bottom: 20px;
}
.article-body ul,
.article-body ol {
  margin-bottom: 20px;
  padding-left: 30px;
}
.article-body ul li,
.article-body ol li {
  margin-bottom: 8px;
}
.article-body blockquote {
  background: rgba(37, 50, 116, 0.05);
  padding: 20px;
  margin: 30px 0;
  border-left: 4px solid #ff9e0c;
  border-radius: 6px;
}
.article-body blockquote p {
  margin-bottom: 0;
  font-style: italic;
}
.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}
.article-body a {
  color: #ff9e0c;
  text-decoration: underline;
}
.article-body a:hover {
  color: #d88200;
}

.article-footer {
  margin-bottom: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(37, 50, 116, 0.1);
}

.article-tags__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.article-tags__label {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 14px;
  color: #253274;
}
.article-tags__item {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(255, 158, 12, 0.1);
  color: #ff9e0c;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  border-radius: 15px;
  transition: all 0.3s ease;
}
.article-tags__item:hover {
  background: #ff9e0c;
  color: #fff;
}

.article-navigation {
  margin-bottom: 60px;
}
.article-navigation__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.article-navigation__item.prev {
  justify-self: start;
}
.article-navigation__item.next {
  justify-self: end;
  text-align: right;
}
.article-navigation__link {
  display: block;
  padding: 20px;
  background: rgba(37, 50, 116, 0.05);
  border: 1px solid rgba(37, 50, 116, 0.1);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  max-width: 300px;
}
.article-navigation__link:hover {
  background: rgba(37, 50, 116, 0.1);
  border-color: #ff9e0c;
  transform: translateY(-2px);
}
.article-navigation__label {
  display: block;
  font-size: 12px;
  color: #56564E;
  font-weight: 500;
  margin-bottom: 8px;
}
.article-navigation__title {
  display: block;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 14px;
  color: #253274;
  line-height: 1.4;
}

.related-articles {
  margin-bottom: 60px;
}
.related-articles__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 24px;
  color: #253274;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
.related-articles__title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #ff9e0c;
  border-radius: 2px;
}
.related-articles__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.related-article-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(37, 50, 116, 0.1);
  transition: all 0.3s ease;
}
.related-article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-color: #ff9e0c;
}
.related-article-card__image {
  height: 150px;
  overflow: hidden;
}
.related-article-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.related-article-card:hover .related-article-card__img {
  transform: scale(1.05);
}
.related-article-card__content {
  padding: 20px;
}
.related-article-card__date {
  font-size: 12px;
  color: #56564E;
  margin-bottom: 10px;
  display: block;
}
.related-article-card__title {
  margin: 0;
}
.related-article-card__link {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 14px;
  color: #253274;
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.3s ease;
}
.related-article-card__link:hover {
  color: #ff9e0c;
}

.article-back {
  text-align: center;
}
.article-back__link {
  display: inline-block;
  padding: 12px 30px;
}

@media screen and (max-width: 1024px) {
  .news-hero {
    padding: 80px 0 60px;
  }
  .news-hero__title {
    font-size: 40px;
  }
  .news-hero__subtitle {
    font-size: 16px;
  }
  .news-main {
    padding: 60px 0;
  }
  .article-hero {
    padding: 100px 0 60px;
  }
  .article-hero__title {
    font-size: 32px;
  }
  .article-main {
    padding: 60px 0;
  }
  .related-articles__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .news-hero {
    padding: 60px 0 40px;
  }
  .news-hero__title {
    font-size: 32px;
  }
  .news-hero__subtitle {
    font-size: 15px;
  }
  .news-main {
    padding: 50px 0;
  }
  .news-categories {
    margin-bottom: 40px;
  }
  .news-categories__list {
    justify-content: flex-start;
    gap: 10px;
  }
  .news-categories__item {
    font-size: 13px;
    padding: 6px 15px;
  }
  .news-card__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .news-card__content {
    padding: 20px;
  }
  .news-card__link {
    font-size: 18px;
  }
  .news-card__footer {
    padding: 0 20px 20px;
  }
  .article-hero {
    padding: 80px 0 50px;
  }
  .article-hero__meta {
    flex-direction: column;
    gap: 15px;
  }
  .article-hero__title {
    font-size: 28px;
  }
  .article-main {
    padding: 50px 0;
  }
  .article-body {
    font-size: 15px;
  }
  .article-body h2 {
    font-size: 24px;
  }
  .article-body h3 {
    font-size: 20px;
  }
  .article-navigation__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .article-navigation__item.prev, .article-navigation__item.next {
    justify-self: stretch;
    text-align: left;
  }
  .article-navigation__link {
    max-width: none;
  }
  .related-articles__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media screen and (max-width: 375px) {
  .news-hero {
    padding: 50px 0 30px;
  }
  .news-hero__title {
    font-size: 28px;
  }
  .news-hero__subtitle {
    font-size: 14px;
  }
  .news-main {
    padding: 40px 0;
  }
  .news-categories {
    margin-bottom: 30px;
  }
  .news-categories__item {
    font-size: 12px;
    padding: 5px 12px;
  }
  .news-card__header, .news-card__content, .news-card__footer {
    padding: 15px;
  }
  .news-card__link {
    font-size: 16px;
  }
  .news-card__excerpt {
    font-size: 13px;
  }
  .article-hero {
    padding: 60px 0 40px;
  }
  .article-hero__title {
    font-size: 24px;
  }
  .article-main {
    padding: 40px 0;
  }
  .article-body {
    font-size: 14px;
  }
  .article-body h2 {
    font-size: 20px;
  }
  .article-body h3 {
    font-size: 18px;
  }
  .related-article-card__image {
    height: 120px;
  }
  .related-article-card__content {
    padding: 15px;
  }
  .related-article-card__link {
    font-size: 13px;
  }
}
.contact-hero {
  background-color: #253274;
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 50, 116, 0.9) 0%, rgba(37, 50, 116, 0.7) 100%);
  z-index: 1;
}

.contact-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 25px;
}

.contact-hero__title {
  font-family: "Sawarabi Mincho", serif;
  font-weight: 700;
  font-size: 72px;
  color: #fff;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-hero__subtitle {
  font-family: "Sawarabi Mincho", serif;
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-main {
  padding: 120px 0;
  background-color: #fff;
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-section {
  background-color: #fff;
  border-radius: 16px;
  padding: 60px 50px;
  margin-bottom: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid #D5D5D5;
}

.contact-section__header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-section__title {
  font-family: "Anton", sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #253274;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.contact-section__description {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 16px;
  color: #56564E;
  line-height: 1.8;
}

.contact-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .contact-hero {
    padding: 60px 0 40px;
  }
  .contact-hero__inner {
    padding: 0 15px;
  }
  .contact-hero__title {
    font-size: 48px;
  }
  .contact-hero__subtitle {
    font-size: 16px;
  }
  .contact-main {
    padding: 80px 0;
  }
  .contact-section {
    padding: 40px 30px;
    margin-bottom: 30px;
  }
  .contact-section__header {
    margin-bottom: 40px;
  }
  .contact-section__title {
    font-size: 28px;
    margin-bottom: 15px;
  }
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form__field {
  margin-bottom: 30px;
}

.contact-form__field--checkbox {
  margin-bottom: 40px;
}

.contact-form__label {
  display: block;
  font-family: "Sawarabi Mincho", serif;
  font-weight: 500;
  font-size: 16px;
  color: #000;
  margin-bottom: 8px;
  line-height: 1.5;
}

.contact-form__required {
  color: #e74c3c;
  font-size: 14px;
  margin-left: 4px;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #D5D5D5;
  border-radius: 8px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  background-color: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: #253274;
  box-shadow: 0 0 0 3px rgba(37, 50, 116, 0.2);
}

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

.contact-form__input::-moz-placeholder, .contact-form__textarea::-moz-placeholder {
  color: #A6A6A6;
  opacity: 1;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: #A6A6A6;
  opacity: 1;
}

.contact-form__checkbox {
  margin-right: 10px;
  accent-color: #253274;
}

.contact-form__field--checkbox {
  display: flex;
  align-items: flex-start;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 14px;
  color: #000;
  line-height: 1.6;
}

.contact-form__submit {
  text-align: center;
  margin-top: 40px;
}

.contact-form__button {
  display: inline-block;
  padding: 18px 60px;
  background-color: #253274;
  color: #fff;
  font-family: "Anton", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  min-width: 200px;
  text-transform: uppercase;
}

.contact-form__button:hover {
  background-color: rgba(37, 50, 116, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 50, 116, 0.3);
}

.contact-form__button:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(37, 50, 116, 0.3);
}

.wpcf7-not-valid-tip {
  color: #e74c3c;
  font-size: 14px;
  margin-top: 5px;
  display: block;
}

.wpcf7-validation-errors {
  background-color: #fdf2f2;
  border: 1px solid #f5c6cb;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 20px;
  color: #721c24;
  font-size: 14px;
}

.wpcf7-mail-sent-ok {
  background-color: #f0f9f0;
  border: 1px solid #c3e6c3;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 20px;
  color: #155724;
  font-size: 14px;
}

.wpcf7-spinner {
  margin-left: 10px;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .contact-form {
    padding: 0 15px;
  }
  .contact-form__field {
    margin-bottom: 25px;
  }
  .contact-form__input,
.contact-form__textarea {
    padding: 12px 15px;
    font-size: 16px;
  }
  .contact-form__button {
    padding: 15px 40px;
    font-size: 16px;
    min-width: 180px;
  }
  .contact-form__submit {
    margin-top: 30px;
  }
}
@media screen and (max-width: 375px) {
  .contact-form__button {
    width: 100%;
    padding: 15px 20px;
  }
}
.tashiro-page .inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (max-width: 768px) {
  .tashiro-page .inner {
    padding: 0 15px;
  }
}

.tashiro-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.tashiro-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.tashiro-hero__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tashiro-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  color: #fff;
}
.tashiro-hero__title {
  font-family: "Sawarabi Mincho", serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .tashiro-hero__title {
    font-size: 32px;
    margin-bottom: 15px;
  }
}
.tashiro-hero__subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .tashiro-hero__subtitle {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.tashiro-hero__description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .tashiro-hero__description {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.tashiro-hero__button .btn-primary {
  display: inline-block;
  background-color: #ff9e0c;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
}
.tashiro-hero__button .btn-primary:hover {
  background-color: #d88200;
  transform: translateY(-2px);
}
@media screen and (max-width: 768px) {
  .tashiro-hero__button .btn-primary {
    font-size: 16px;
    padding: 12px 30px;
  }
}

.section-title {
  font-family: "Sawarabi Mincho", serif;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #253274;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
}

.tashiro-usage {
  padding: 80px 0;
  background-color: #f8f9fa;
}
.tashiro-usage__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .tashiro-usage__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.tashiro-usage__subtitle {
  font-family: "Sawarabi Mincho", serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #253274;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .tashiro-usage__subtitle {
    font-size: 22px;
    margin-bottom: 15px;
  }
}
.tashiro-usage__description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  letter-spacing: 0.05em;
}
.tashiro-usage__description p {
  margin-bottom: 15px;
}
.tashiro-usage__description p:last-child {
  margin-bottom: 0;
}
.tashiro-usage__visual {
  text-align: center;
}
.tashiro-usage__visual-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tashiro-schedule {
  padding: 80px 0;
}
.tashiro-schedule__subtitle {
  font-family: "Sawarabi Mincho", serif;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #253274;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .tashiro-schedule__subtitle {
    font-size: 22px;
    margin-bottom: 15px;
  }
}
.tashiro-schedule__description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 50px;
  color: #333;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .tashiro-schedule__description {
    margin-bottom: 40px;
  }
}

.schedule-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .schedule-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.schedule-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.schedule-card:hover {
  transform: translateY(-5px);
}
.schedule-card__icon {
  width: 60px;
  height: 60px;
  background-color: #ff9e0c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
}
.schedule-card__icon svg {
  width: 24px;
  height: 24px;
}
.schedule-card__title {
  font-family: "Sawarabi Mincho", serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #253274;
  letter-spacing: 0.05em;
}
.schedule-card__time {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ff9e0c;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
}
.schedule-card__note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #666;
  letter-spacing: 0.05em;
}

.tashiro-benefits {
  padding: 80px 0;
  background-color: #f8f9fa;
}
.tashiro-benefits__subtitle {
  font-family: "Sawarabi Mincho", serif;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #253274;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .tashiro-benefits__subtitle {
    font-size: 22px;
    margin-bottom: 40px;
  }
}

.benefits-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .benefits-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.benefit-item__icon {
  font-size: 24px;
  color: #ff9e0c;
  flex-shrink: 0;
}
.benefit-item__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.05em;
}

.benefits-visual {
  text-align: center;
}
.benefits-visual__img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tashiro-steps {
  padding: 80px 0;
}
.tashiro-steps__subtitle {
  font-family: "Sawarabi Mincho", serif;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #253274;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .tashiro-steps__subtitle {
    font-size: 22px;
    margin-bottom: 40px;
  }
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .steps-list {
    gap: 20px;
  }
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.step-item:hover {
  transform: translateX(10px);
}
@media screen and (max-width: 768px) {
  .step-item {
    padding: 20px;
    gap: 15px;
  }
}
.step-item__number {
  width: 50px;
  height: 50px;
  background-color: #ff9e0c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Sawarabi Mincho", serif;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .step-item__number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}
.step-item__content {
  flex: 1;
}
.step-item__title {
  font-family: "Sawarabi Mincho", serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #253274;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .step-item__title {
    font-size: 18px;
  }
}
.step-item__description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  letter-spacing: 0.05em;
}

.tashiro-gallery {
  padding: 80px 0;
  background-color: #f8f9fa;
}
.tashiro-gallery__subtitle {
  font-family: "Sawarabi Mincho", serif;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  color: #253274;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .tashiro-gallery__subtitle {
    font-size: 22px;
    margin-bottom: 10px;
  }
}
.tashiro-gallery__description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 50px;
  color: #666;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .tashiro-gallery__description {
    margin-bottom: 40px;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 250px);
    gap: 15px;
  }
}
@media screen and (max-width: 375px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 250px);
    gap: 15px;
  }
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.gallery-item--large {
  grid-column: span 2;
  grid-row: span 1;
}
@media screen and (max-width: 768px) {
  .gallery-item--large {
    grid-column: span 2;
  }
}
@media screen and (max-width: 375px) {
  .gallery-item--large {
    grid-column: span 1;
  }
}
.gallery-item__image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.gallery-item__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 50, 116, 0.8) 0%, rgba(255, 158, 12, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}
.gallery-item:hover .gallery-item__img {
  transform: scale(1.1);
}
.gallery-item__content {
  text-align: center;
  color: #fff;
  padding: 20px;
}
.gallery-item__title {
  font-family: "Sawarabi Mincho", serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .gallery-item__title {
    font-size: 20px;
  }
}
.gallery-item__description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .gallery-item__description {
    font-size: 14px;
  }
}

.tashiro-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #3949ab 100%);
  background-image: url("../images/tashiro-img.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.tashiro-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 35, 126, 0.8) 0%, rgba(40, 53, 147, 0.7) 30%, rgba(57, 73, 171, 0.6) 70%, rgba(26, 35, 126, 0.9) 100%);
  z-index: 1;
}
.tashiro-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, transparent 30%, rgba(0, 0, 0, 0.2) 70%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 2;
}
.tashiro-cta__content {
  text-align: center;
  position: relative;
  z-index: 3;
}
.tashiro-cta .section-title {
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.tashiro-cta__subtitle {
  font-family: "Sawarabi Mincho", serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 768px) {
  .tashiro-cta__subtitle {
    font-size: 22px;
    margin-bottom: 15px;
  }
}
.tashiro-cta__description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 768px) {
  .tashiro-cta__description {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.tashiro-cta__button .btn-primary {
  display: inline-block;
  background-color: #ff9e0c;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(255, 158, 12, 0.3);
  text-shadow: none;
}
.tashiro-cta__button .btn-primary:hover {
  background-color: #d88200;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 158, 12, 0.4);
}
@media screen and (max-width: 768px) {
  .tashiro-cta__button .btn-primary {
    font-size: 16px;
    padding: 12px 30px;
  }
}