@charset "UTF-8";
html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 70px;
  }
}

body {
  font-family: "Noto Serif JP", serif;
  color: #222222;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  background-color: #ffffff;
}

.inner {
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 40px;
  }
}

.section {
  padding-block: 60px;
}
@media screen and (min-width: 768px) {
  .section {
    padding-block: 80px;
  }
}

.section__content {
  margin-top: 46px;
}
@media screen and (min-width: 768px) {
  .section__content {
    margin-top: 64px;
  }
}

.section--soft-bg {
  background-color: #faf8f5;
}

.heading {
  font-size: 30px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 27px;
  align-items: center;
  line-height: 100%;
}
@media screen and (min-width: 768px) {
  .heading {
    font-size: 40px;
    gap: 24px;
  }
}

@media screen and (min-width: 600px) {
  .hidden-md {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .hidden-md {
    display: none;
  }
}
@media screen and (min-width: 900px) {
  .hidden-md {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .hidden-md {
    display: none;
  }
}
.button {
  display: inline-block;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  border-radius: 4px;
  transition: background-color 0.3s ease, opacity 0.3s ease, border 0.3s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .button {
    padding: 16px 32px;
    font-size: 16px;
  }
}

.button--primary {
  background-color: #b74233;
  color: #fff;
}
.button--primary:hover {
  background-color: rgb(151.0923076923, 54.4923076923, 42.1076923077);
  opacity: 1;
}

.button--secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 12px 26px;
}
@media screen and (min-width: 768px) {
  .button--secondary {
    padding: 14px 30px;
  }
}
.button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border: 3px solid #fff;
  padding: 11px 25px;
}
@media screen and (min-width: 768px) {
  .button--secondary:hover {
    padding: 13px 29px;
  }
}

.button--accent {
  border-color: #b74233;
  color: #fff;
  background-color: #b74233;
}
.button--accent:hover {
  filter: brightness(0.9);
}

.button--small {
  padding: 6px 14px;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .button--small {
    padding: 7px 16px;
    font-size: 13px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 11px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding: 12px 24px;
  }
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__logo-img {
  height: 38px;
  width: auto;
  display: block;
}
@media screen and (min-width: 768px) {
  .header__logo-img {
    height: 46px;
  }
}

.header__logo-text {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 600;
  color: #102544;
  white-space: nowrap;
}
@media screen and (min-width: 600px) {
  .header__logo-text {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .header__logo-text {
    font-size: 20px;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width: 900px) {
  .header__nav {
    display: flex;
  }
}

.header__nav-list {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media screen and (min-width: 900px) {
  .header__nav-list {
    gap: 34px;
  }
}

.header__nav-list a {
  font-size: 15px;
  font-weight: 500;
  color: #222222;
  transition: opacity 0.3s;
}
.header__nav-list a:hover {
  opacity: 0.7;
}

.header__drawer-toggle {
  display: block;
  position: relative;
  width: 30px;
  height: 24px;
  z-index: 1001;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
@media screen and (min-width: 900px) {
  .header__drawer-toggle {
    display: none;
  }
}
.header__drawer-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #102544;
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: block;
}
.header__drawer-toggle span:nth-child(1) {
  top: 0;
}
.header__drawer-toggle span:nth-child(2) {
  top: 11px;
}
.header__drawer-toggle span:nth-child(3) {
  top: 22px;
}
.header__drawer-toggle.is-active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.header__drawer-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.header__drawer-toggle.is-active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background-color: #fff;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  z-index: 999;
}
.drawer.is-open {
  transform: translateX(0);
}

.drawer__nav {
  padding: 80px 24px 40px;
}
.drawer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.drawer__nav li a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid rgba(16, 37, 68, 0.1);
  color: #222222;
  transition: color 0.3s ease;
}
.drawer__nav li a:hover {
  color: #b74233;
}

.mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 998;
}
.mask.is-open {
  opacity: 1;
  visibility: visible;
}

body.is-drawer-open {
  overflow: hidden;
}

.hero {
  padding: 120px 16px 80px;
  background: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .hero {
    padding: 160px 24px 100px;
  }
}

.hero__bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  animation: slideShow 30s infinite;
}

.hero__bg-slide--01 {
  background-image: url("../img/hero-01.jpg");
  animation-delay: 0s;
  background-position: 40% center;
}

.hero__bg-slide--02 {
  background-image: url("../img/hero-02.jpg");
  animation-delay: 10s;
}

.hero__bg-slide--03 {
  background-image: url("../img/hero-03.jpg");
  animation-delay: 20s;
}

.hero__bg-slide--01 {
  background-image: url("../img/hero-01.jpg");
  animation-delay: 0s;
}
@media (max-width: 767px) {
  .hero__bg-slide--01 {
    background-image: url("../img/hero-01-sp.jpg");
  }
}

.hero__bg-slide--02 {
  background-image: url("../img/hero-02.jpg");
  animation-delay: 10s;
}
@media (max-width: 767px) {
  .hero__bg-slide--02 {
    background-image: url("../img/hero-02-sp.jpg");
  }
}

.hero__bg-slide--03 {
  background-image: url("../img/hero-03.jpg");
  animation-delay: 20s;
}
@media (max-width: 767px) {
  .hero__bg-slide--03 {
    background-image: url("../img/hero-03-sp.jpg");
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
  z-index: 0;
}

.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .hero__inner {
    justify-content: flex-start;
  }
}

.hero__content {
  flex: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeInUp 1.2s ease-out 0.3s forwards;
}
@media screen and (min-width: 768px) {
  .hero__content {
    max-width: none;
    margin: 0;
    text-align: left;
  }
}

.hero__eyebrow {
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  opacity: 0;
  animation: fadeInUp 1.2s ease-out 0s forwards;
}
@media screen and (min-width: 768px) {
  .hero__eyebrow {
    font-size: 14px;
    letter-spacing: 0.16em;
  }
}

.hero__title {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 0.64px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6), 0 4px 12px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .hero__title {
    font-size: 48px;
    line-height: 1.65;
    margin-bottom: 24px;
  }
}

.hero__supplement {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 32px;
  letter-spacing: 1.4px;
  opacity: 0;
  position: absolute;
  top: 150px;
  left: 25%;
  transform: translateX(-50%);
  text-align: center;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7), 0 4px 14px rgba(0, 0, 0, 0.5);
  animation: supplementFade 30s infinite;
}
@media screen and (min-width: 768px) {
  .hero__supplement {
    font-size: 28px;
    top: 185px;
    left: 0;
    transform: none;
    text-align: left;
    padding: 12px 24px;
  }
}

.hero__supplement--01 {
  animation-delay: 0s;
}

.hero__supplement--02 {
  animation-delay: 10s;
}

.hero__supplement--03 {
  animation-delay: 20s;
}

.hero__lead {
  font-size: 16px;
  line-height: 2;
  margin-top: 64px;
  margin-bottom: 36px;
  color: #ffffff;
  font-weight: 400;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6), 0 4px 12px rgba(0, 0, 0, 0.4);
  opacity: 0;
  animation: fadeInUp 1.2s ease-out 0.6s forwards;
}
@media screen and (min-width: 768px) {
  .hero__lead {
    font-size: 18px;
    line-height: 2.1;
    margin-top: 76px;
    margin-bottom: 44px;
  }
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeInUp 1.2s ease-out 0.9s forwards;
}
@media screen and (min-width: 768px) {
  .hero__buttons {
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 0;
  }
}

.hero__button {
  flex: 0 0 auto;
  width: 80%;
  max-width: 320px;
  min-width: auto;
  white-space: normal;
  min-height: 90px;
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .hero__button {
    width: auto;
    max-width: 280px;
    min-width: 220px;
    min-height: 100px;
    padding: 20px 28px;
  }
}

.hero__button-eyebrow {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  letter-spacing: 0.1em;
  font-weight: 500;
  opacity: 0.9;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .hero__button-eyebrow {
    font-size: 14px;
  }
}
.hero__button-eyebrow i {
  font-size: 14px;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .hero__button-eyebrow i {
    font-size: 15px;
  }
}

.hero__button-main {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .hero__button-main {
    font-size: 17px;
  }
}

.hero__button.button--primary .hero__button-eyebrow {
  color: rgba(255, 255, 255, 0.95);
}
.hero__button.button--primary .hero__button-main {
  color: #ffffff;
}

.hero__button.button--secondary {
  background: #102544;
  border: 2px solid #102544;
}
.hero__button.button--secondary .hero__button-eyebrow {
  color: rgba(255, 255, 255, 0.9);
}
.hero__button.button--secondary .hero__button-main {
  color: #ffffff;
}
.hero__button.button--secondary:hover {
  background: rgb(23.7714285714, 54.9714285714, 101.0285714286);
  border-color: rgb(23.7714285714, 54.9714285714, 101.0285714286);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 37, 68, 0.4);
}

.hero__scroll-guide {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  z-index: 10;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7), 0 4px 12px rgba(0, 0, 0, 0.5);
  opacity: 0;
  animation: fadeInUp 1.2s ease-out 1.2s forwards;
}
@media screen and (min-width: 768px) {
  .hero__scroll-guide {
    font-size: 15px;
    bottom: 30px;
  }
}
.hero__scroll-guide p {
  margin-bottom: 6px;
}
.hero__scroll-guide span {
  display: block;
  font-size: 18px;
  animation: bounce 2s infinite 1.5s;
}

@keyframes slideShow {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  3.33% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
    transform: scale(1.05);
  }
  36.66% {
    opacity: 0;
    transform: scale(1.05);
  }
  100% {
    opacity: 0;
    transform: scale(1.05);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes supplementFade {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  3.33% {
    opacity: 1;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
    transform: translateY(0);
  }
  33.33% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.experience {
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .experience__inner {
    display: flex;
    gap: 60px;
    align-items: flex-start;
  }
}
@media screen and (min-width: 900px) {
  .experience__inner {
    gap: 80px;
  }
}

@media screen and (min-width: 768px) {
  .experience__left {
    width: 36%;
    position: sticky;
    top: 110px;
  }
}

.experience__title {
  line-height: 1.2;
}

@media screen and (max-width: 1000px) {
  .experience__title {
    font-size: 30px;
  }
}
.experience__lead {
  margin-top: 28px;
  line-height: 1.8;
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .experience__lead {
    margin-top: 32px;
    font-size: 16px;
  }
}

.experience__benefits {
  margin-top: 36px;
  padding: 24px;
  background: #faf8f5;
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .experience__benefits {
    margin-top: 40px;
    padding: 28px;
  }
}

.experience__benefits-title {
  font-size: 16px;
  font-weight: 600;
  color: #102544;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .experience__benefits-title {
    font-size: 17px;
    margin-bottom: 18px;
  }
}

.experience__benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.experience__benefits-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .experience__benefits-item {
    font-size: 15px;
  }
}

.experience__benefits-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #b74233;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

.experience__cta {
  margin-top: 32px;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .experience__cta {
    margin-top: 40px;
  }
}

.experience__right {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .experience__right {
    width: 64%;
    margin-top: 0;
  }
}

.experience__cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .experience__cards {
    gap: 40px;
  }
}

.experience__card {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
}
.experience__card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.experience__card--featured {
  border: none;
  box-shadow: 0 4px 16px rgba(200, 74, 61, 0.15);
}
.experience__card--featured:hover {
  box-shadow: 0 10px 28px rgba(200, 74, 61, 0.25);
  transform: translateY(-6px);
}

.experience__card-button {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .experience__card-button {
    width: auto;
    min-width: 200px;
  }
}

.experience__card--featured .experience__card-button {
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(200, 74, 61, 0.3);
}
.experience__card--featured .experience__card-button:hover {
  box-shadow: 0 6px 16px rgba(200, 74, 61, 0.4);
}

.experience__card-button--outline {
  background-color: transparent;
  color: #102544;
  border: 1px solid #102544;
}
.experience__card-button--outline:hover {
  background-color: rgba(16, 37, 68, 0.04);
}

.experience__card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #b74233;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  z-index: 10;
  letter-spacing: 0.5px;
}
@media screen and (min-width: 768px) {
  .experience__card-badge {
    font-size: 13px;
    padding: 7px 16px;
  }
}

.experience__card-image {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (min-width: 768px) {
  .experience__card-image {
    height: 320px;
  }
}

.experience__card-body {
  padding: 24px;
}
@media screen and (min-width: 768px) {
  .experience__card-body {
    padding: 28px;
  }
}

.experience__card-date {
  font-size: 14px;
  color: #555555;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.experience__card-date i {
  color: #b74233;
}

.experience__card-title {
  font-size: 20px;
  font-weight: 600;
  color: #102544;
  margin-bottom: 14px;
}
@media screen and (min-width: 768px) {
  .experience__card-title {
    font-size: 22px;
    margin-bottom: 16px;
  }
}

.experience__card-info {
  font-size: 14px;
  color: #555555;
  line-height: 1.8;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .experience__card-info {
    font-size: 15px;
    margin-bottom: 24px;
  }
}
.experience__card-info i {
  color: #102544;
  margin-right: 6px;
  width: 16px;
}

.experience__fallback {
  margin-top: 40px;
  padding: 32px;
  background: #faf8f5;
  border-radius: 12px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .experience__fallback {
    margin-top: 48px;
    padding: 40px;
  }
}
.experience__fallback p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .experience__fallback p {
    font-size: 16px;
  }
}
.experience__fallback a {
  display: inline-block;
  color: #102544;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s;
}
.experience__fallback a:hover {
  color: #b74233;
}

.events-entry__hero {
  padding: 40px 16px 32px;
  background-color: #faf8f5;
}
@media screen and (min-width: 768px) {
  .events-entry__hero {
    padding: 56px 16px 40px;
  }
}

.events-entry__hero-title {
  font-size: 24px;
  font-weight: 700;
  color: #102544;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .events-entry__hero-title {
    font-size: 28px;
  }
}

.events-entry__hero-lead {
  font-size: 14px;
  line-height: 1.9;
  color: #222222;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .events-entry__hero-lead {
    font-size: 15px;
  }
}

.events-entry__hero-note {
  font-size: 12px;
  line-height: 1.8;
  color: #555555;
}

.events-entry {
  background-color: #fff;
}

.events-entry__inner {
  padding: 40px 16px 80px 16px;
}
@media screen and (min-width: 768px) {
  .events-entry__inner {
    padding: 56px 16px 96px 16px;
  }
}

.events-entry__layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .events-entry__layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }
}
@media screen and (min-width: 900px) {
  .events-entry__layout {
    gap: 56px;
  }
}

.events-entry__event {
  flex: 0 0 auto;
}
@media screen and (min-width: 768px) {
  .events-entry__event {
    width: 32%;
    position: sticky;
    top: 96px;
  }
}

.events-entry__event-heading {
  font-size: 16px;
  font-weight: 600;
  color: #102544;
  margin-bottom: 16px;
}

.events-entry__event-card {
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid rgba(16, 37, 68, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  padding: 20px 18px;
}

.events-entry__event-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background-color: #102544;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.events-entry__event-title {
  font-size: 18px;
  font-weight: 600;
  color: #102544;
  line-height: 1.7;
  margin-bottom: 16px;
}

.events-entry__event-meta {
  margin: 0 0 12px 0;
}

.events-entry__event-meta-item {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 4px;
  margin-bottom: 8px;
}
.events-entry__event-meta-item dt {
  font-size: 12px;
  font-weight: 600;
  color: #555555;
}
.events-entry__event-meta-item dt i {
  margin-right: 4px;
}
.events-entry__event-meta-item dd {
  font-size: 14px;
  color: #222222;
}

.events-entry__event-note {
  font-size: 12px;
  line-height: 1.8;
  color: #555555;
}

/* 右カラム：フォーム */
.events-entry__form-section {
  flex: 1 1 auto;
}
@media screen and (min-width: 768px) {
  .events-entry__form-section {
    width: 68%;
  }
}

.events-entry__form-heading {
  font-size: 18px;
  font-weight: 600;
  color: #102544;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .events-entry__form-heading {
    font-size: 20px;
    margin-bottom: 24px;
  }
}

.events-entry__form {
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid rgba(16, 37, 68, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  padding: 20px 16px;
}
@media screen and (min-width: 768px) {
  .events-entry__form {
    padding: 28px 24px 32px;
  }
}
@media screen and (min-width: 900px) {
  .events-entry__form {
    padding: 32px 32px 36px;
  }
}

.form-field {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .form-field {
    margin-bottom: 24px;
  }
}

.form-field__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #102544;
  margin-bottom: 8px;
}

.form-field__required {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 6px;
  font-size: 11px;
  color: #fff;
  background-color: #b74233;
  border-radius: 3px;
}

.form-field__input,
.form-field__select,
.form-field__textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid rgba(16, 37, 68, 0.22);
  font-size: 14px;
  line-height: 1.6;
  color: #222222;
  background-color: #fff;
}

.form-field__input:focus,
.form-field__select:focus,
.form-field__textarea:focus {
  outline: none;
  border-color: #102544;
  box-shadow: 0 0 0 2px rgba(16, 37, 68, 0.15);
}

.form-field__textarea {
  resize: vertical;
}

.form-field__note {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.7;
  color: #555555;
}

.form-field__note--center {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .form-field--half {
    display: flex;
    gap: 16px;
  }
}

@media screen and (min-width: 768px) {
  .form-field__col {
    flex: 1;
  }
}

.form-field__radios {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.form-field__radio {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  color: #222222;
}
.form-field__radio input {
  margin-right: 6px;
}

.form-field__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #222222;
}
.form-field__checkbox input {
  margin-top: 4px;
}

.form-field--actions {
  text-align: center;
}
.form-field--actions .button {
  min-width: 260px;
}

.events-entry__hero {
  padding: 40px 16px 32px;
  background-color: #faf8f5;
}
@media screen and (min-width: 768px) {
  .events-entry__hero {
    padding: 56px 16px 40px;
  }
}

.events-entry__hero-title {
  font-size: 24px;
  font-weight: 700;
  color: #102544;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .events-entry__hero-title {
    font-size: 28px;
  }
}

.events-entry__hero-lead {
  font-size: 14px;
  line-height: 1.9;
  color: #222222;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .events-entry__hero-lead {
    font-size: 15px;
  }
}

.events-entry__hero-note {
  font-size: 12px;
  line-height: 1.8;
  color: #555555;
}

.events-entry {
  background-color: #fff;
}

.events-entry__inner {
  padding: 40px 16px 80px 16px;
}
@media screen and (min-width: 768px) {
  .events-entry__inner {
    padding: 56px 16px 96px 16px;
  }
}

.events-entry__layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .events-entry__layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }
}
@media screen and (min-width: 900px) {
  .events-entry__layout {
    gap: 56px;
  }
}

.events-entry__event {
  flex: 0 0 auto;
}
@media screen and (min-width: 768px) {
  .events-entry__event {
    width: 32%;
    position: sticky;
    top: 96px;
  }
}

.events-entry__event-heading {
  font-size: 16px;
  font-weight: 600;
  color: #102544;
  margin-bottom: 16px;
}

.events-entry__event-card {
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid rgba(16, 37, 68, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  padding: 20px 18px;
}

.events-entry__event-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background-color: #102544;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.events-entry__event-title {
  font-size: 18px;
  font-weight: 600;
  color: #102544;
  line-height: 1.7;
  margin-bottom: 16px;
}

.events-entry__event-meta {
  margin: 0 0 12px 0;
}

.events-entry__event-meta-item {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 4px;
  margin-bottom: 8px;
}
.events-entry__event-meta-item dt {
  font-size: 12px;
  font-weight: 600;
  color: #555555;
}
.events-entry__event-meta-item dt i {
  margin-right: 4px;
}
.events-entry__event-meta-item dd {
  font-size: 14px;
  color: #222222;
}

.events-entry__event-note {
  font-size: 12px;
  line-height: 1.8;
  color: #555555;
}

.events-entry__form-section {
  flex: 1 1 auto;
}
@media screen and (min-width: 768px) {
  .events-entry__form-section {
    width: 68%;
  }
}

.events-entry__form-heading {
  font-size: 18px;
  font-weight: 600;
  color: #102544;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .events-entry__form-heading {
    font-size: 20px;
    margin-bottom: 24px;
  }
}

.events-entry__form {
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid rgba(16, 37, 68, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  padding: 20px 16px;
}
@media screen and (min-width: 768px) {
  .events-entry__form {
    padding: 28px 24px 32px;
  }
}
@media screen and (min-width: 900px) {
  .events-entry__form {
    padding: 32px 32px 36px;
  }
}

.form-field {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .form-field {
    margin-bottom: 24px;
  }
}

.form-field__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #102544;
  margin-bottom: 8px;
}

.form-field__required {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 6px;
  font-size: 11px;
  color: #fff;
  background-color: #b74233;
  border-radius: 3px;
}

.form-field__input,
.form-field__select,
.form-field__textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid rgba(16, 37, 68, 0.22);
  font-size: 14px;
  line-height: 1.6;
  color: #222222;
  background-color: #fff;
}

.form-field__input:focus,
.form-field__select:focus,
.form-field__textarea:focus {
  outline: none;
  border-color: #102544;
  box-shadow: 0 0 0 2px rgba(16, 37, 68, 0.15);
}

.form-field__textarea {
  resize: vertical;
}

.form-field__note {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.7;
  color: #555555;
}

.form-field__note--center {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .form-field--half {
    display: flex;
    gap: 16px;
  }
}

@media screen and (min-width: 768px) {
  .form-field__col {
    flex: 1;
  }
}

.form-field__radios {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.form-field__radio {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  color: #222222;
}
.form-field__radio input {
  margin-right: 6px;
}

.form-field__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #222222;
}
.form-field__checkbox input {
  margin-top: 4px;
}

.form-field--actions {
  text-align: center;
}
.form-field--actions .button {
  min-width: 260px;
}

.events-archive {
  background: #fff;
}

.events-archive__hero {
  background: linear-gradient(135deg, #102544 0%, rgb(6.2857142857, 14.5357142857, 26.7142857143) 100%);
  color: #fff;
  padding: 64px 0 72px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .events-archive__hero {
    padding: 80px 0 88px;
  }
}

.events-archive__hero-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .events-archive__hero-title {
    font-size: 40px;
    margin-bottom: 24px;
  }
}

.events-archive__hero-lead {
  font-size: 15px;
  line-height: 2;
  opacity: 0.95;
}
.events-archive__hero-lead br {
  display: none;
}
@media screen and (min-width: 768px) {
  .events-archive__hero-lead br {
    display: inline;
  }
}
@media screen and (min-width: 768px) {
  .events-archive__hero-lead {
    font-size: 16px;
  }
}

.events-filter {
  background: #fff;
  border-bottom: 1px solid rgba(16, 37, 68, 0.1);
  padding: 32px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
@media screen and (min-width: 768px) {
  .events-filter {
    padding: 40px 0;
  }
}

.events-filter__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.events-filter__tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.events-filter__tabs::-webkit-scrollbar {
  height: 4px;
}
.events-filter__tabs::-webkit-scrollbar-thumb {
  background: rgba(16, 37, 68, 0.2);
  border-radius: 2px;
}
@media screen and (min-width: 768px) {
  .events-filter__tabs {
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
  }
}

.events-filter__tab {
  flex-shrink: 0;
  padding: 12px 24px;
  border: 2px solid rgba(16, 37, 68, 0.2);
  border-radius: 24px;
  background: #fff;
  color: #102544;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.events-filter__tab:hover {
  border-color: #102544;
  background: rgba(16, 37, 68, 0.05);
}
.events-filter__tab.is-active {
  background: #102544;
  color: #fff;
  border-color: #102544;
}
@media screen and (min-width: 768px) {
  .events-filter__tab {
    padding: 14px 32px;
    font-size: 15px;
  }
}

.events-filter__search {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .events-filter__search {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
}

.events-filter__input,
.events-filter__select {
  padding: 14px 20px;
  border: 2px solid rgba(16, 37, 68, 0.15);
  border-radius: 8px;
  font-size: 14px;
  background: #fff;
  color: #222222;
  transition: border-color 0.3s ease;
}
.events-filter__input:focus,
.events-filter__select:focus {
  outline: none;
  border-color: #102544;
}
@media screen and (min-width: 768px) {
  .events-filter__input,
  .events-filter__select {
    max-width: 280px;
    font-size: 15px;
  }
}

.events-filter__input::-moz-placeholder {
  color: #555555;
}

.events-filter__input::placeholder {
  color: #555555;
}

.events-list {
  padding: 64px 0 80px;
  background: #faf8f5;
}
@media screen and (min-width: 768px) {
  .events-list {
    padding: 80px 0 100px;
  }
}

.events-list__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.events-list__featured {
  margin-bottom: 56px;
}
@media screen and (min-width: 768px) {
  .events-list__featured {
    margin-bottom: 72px;
  }
}

.event-card--large {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.event-card--large:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
@media screen and (min-width: 768px) {
  .event-card--large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
}

.event-card--large .event-card__image {
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .event-card--large .event-card__image {
    height: 100%;
    min-height: 360px;
    max-height: 420px;
  }
}

.event-card--large .event-card__content {
  padding: 32px 28px 36px;
}
@media screen and (min-width: 768px) {
  .event-card--large .event-card__content {
    padding: 40px 40px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.event-card--large .event-card__date {
  font-size: 14px;
  color: #555555;
  margin-bottom: 12px;
}
.event-card--large .event-card__date i {
  margin-right: 6px;
  color: #b74233;
}
@media screen and (min-width: 768px) {
  .event-card--large .event-card__date {
    font-size: 15px;
    margin-bottom: 16px;
  }
}

.event-card--large .event-card__title {
  font-size: 26px;
  font-weight: 700;
  color: #102544;
  margin-bottom: 16px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .event-card--large .event-card__title {
    font-size: 32px;
    margin-bottom: 20px;
  }
}

.event-card--large .event-card__description {
  font-size: 15px;
  line-height: 1.9;
  color: #222222;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .event-card--large .event-card__description {
    font-size: 16px;
    margin-bottom: 28px;
  }
}

.event-card--large .event-card__info {
  font-size: 14px;
  line-height: 1.9;
  color: #222222;
  margin-bottom: 28px;
}
.event-card--large .event-card__info p {
  margin-bottom: 8px;
}
.event-card--large .event-card__info p:last-child {
  margin-bottom: 0;
}
.event-card--large .event-card__info i {
  width: 20px;
  color: #b74233;
  margin-right: 6px;
}
@media screen and (min-width: 768px) {
  .event-card--large .event-card__info {
    font-size: 15px;
    margin-bottom: 32px;
  }
}

.event-card--large .event-card__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 600px) {
  .event-card--large .event-card__actions {
    flex-direction: row;
    gap: 16px;
  }
}

.event-card__badge {
  display: inline-block;
  background: #b74233;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 16px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .event-card__badge {
    font-size: 13px;
    padding: 8px 20px;
    margin-bottom: 20px;
  }
}

.events-list__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media screen and (min-width: 600px) {
  .events-list__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media screen and (min-width: 900px) {
  .events-list__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }
}

.event-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.event-card__image {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .event-card__image {
    height: 220px;
  }
}

.event-card__content {
  padding: 24px 20px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .event-card__content {
    padding: 28px 24px 32px;
  }
}

.event-card__date {
  font-size: 13px;
  color: #555555;
  margin-bottom: 10px;
}
.event-card__date i {
  margin-right: 4px;
  color: #b74233;
}
@media screen and (min-width: 768px) {
  .event-card__date {
    font-size: 14px;
    margin-bottom: 12px;
  }
}

.event-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #102544;
  margin-bottom: 14px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .event-card__title {
    font-size: 19px;
    margin-bottom: 16px;
  }
}

.event-card__info {
  font-size: 13px;
  line-height: 1.8;
  color: #222222;
  margin-bottom: 20px;
  flex: 1;
}
.event-card__info p {
  margin-bottom: 6px;
}
.event-card__info p:last-child {
  margin-bottom: 0;
}
.event-card__info i {
  width: 16px;
  color: #b74233;
  margin-right: 4px;
}
@media screen and (min-width: 768px) {
  .event-card__info {
    font-size: 14px;
    margin-bottom: 24px;
  }
}

.events-list__empty {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}
.events-list__empty p {
  font-size: 15px;
  line-height: 1.9;
  color: #222222;
  margin-bottom: 12px;
}
.events-list__empty p:last-of-type {
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .events-list__empty {
    padding: 100px 40px;
  }
  .events-list__empty p {
    font-size: 16px;
  }
}

.events-cta {
  background: linear-gradient(135deg, #b74233 0%, rgb(143.1153846154, 51.6153846154, 39.8846153846) 100%);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .events-cta {
    padding: 80px 0;
  }
}

.events-cta__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.events-cta__title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .events-cta__title {
    font-size: 32px;
    margin-bottom: 24px;
  }
}

.events-cta__lead {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 36px;
  opacity: 0.95;
}
.events-cta__lead br {
  display: none;
}
@media screen and (min-width: 768px) {
  .events-cta__lead br {
    display: inline;
  }
}
@media screen and (min-width: 768px) {
  .events-cta__lead {
    font-size: 16px;
    margin-bottom: 40px;
  }
}

.merits {
  padding-block: 50px;
}
@media screen and (min-width: 768px) {
  .merits {
    padding-block: 100px;
  }
}

.merits__inner {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .merits__inner {
    display: flex;
    gap: 60px;
    align-items: flex-start;
  }
}
@media screen and (min-width: 900px) {
  .merits__inner {
    gap: 80px;
  }
}

@media screen and (min-width: 768px) {
  .merits__left {
    width: 36%;
    position: sticky;
    top: 110px;
    align-self: flex-start;
  }
}

.merits__title::after {
  background: #102544;
}

.merits__lead {
  margin-top: 20px;
  line-height: 1.75;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .merits__lead {
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.8;
  }
}

.merits__lead-sub {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.8;
  color: #555555;
  font-style: italic;
}
@media screen and (min-width: 768px) {
  .merits__lead-sub {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.9;
  }
}

.merits__summary {
  margin-top: 32px;
  padding: 24px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media screen and (min-width: 768px) {
  .merits__summary {
    margin-top: 36px;
    padding: 28px 24px;
    gap: 16px;
  }
}

.merits__summary-item {
  position: relative;
  padding-left: 32px;
  font-size: 15px;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .merits__summary-item {
    font-size: 16px;
    line-height: 1.8;
    padding-left: 36px;
  }
}
.merits__summary-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #b74233;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .merits__summary-item::before {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }
}

.merits__illust {
  margin-top: 28px;
  text-align: center;
  display: block;
}
@media screen and (min-width: 768px) {
  .merits__illust {
    display: none;
  }
}

.merits__illust-image {
  width: 120px;
  height: auto;
  opacity: 0.4;
}

.merits__right {
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .merits__right {
    width: 64%;
    margin-top: 0;
  }
}

.merits__powers {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .merits__powers {
    gap: 32px;
  }
}

.merits__power-card {
  padding: 24px;
  background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
  border-radius: 12px;
  border: 1px solid rgba(16, 37, 68, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.merits__power-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .merits__power-card {
    padding: 28px 32px;
  }
}

.merits__power-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .merits__power-header {
    gap: 18px;
    margin-bottom: 18px;
  }
}

.merits__power-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #102544 0%, rgb(25.7142857143, 59.4642857143, 109.2857142857) 100%);
  border-radius: 50%;
}
.merits__power-icon i {
  font-size: 24px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .merits__power-icon {
    width: 60px;
    height: 60px;
  }
  .merits__power-icon i {
    font-size: 28px;
  }
}

.merits__power-title {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  color: #102544;
  margin-bottom: 0;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .merits__power-title {
    font-size: 21px;
    line-height: 1.5;
  }
}

.merits__power-text {
  line-height: 1.75;
  font-size: 14px;
  margin-bottom: 14px;
  color: #222222;
}
@media screen and (min-width: 768px) {
  .merits__power-text {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
  }
}

.merits__power-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #102544;
  transition: color 0.3s ease;
}
.merits__power-link:hover {
  color: #b74233;
}

.merits__cta {
  margin-top: 32px;
  width: 100%;
  text-align: center;
  display: block;
}
@media screen and (min-width: 768px) {
  .merits__cta {
    margin-top: 40px;
  }
}

.parents-faq {
  background: #fff;
}

@media screen and (min-width: 768px) {
  .parents-faq__inner {
    display: flex;
    gap: 60px;
    align-items: flex-start;
  }
}
@media screen and (min-width: 900px) {
  .parents-faq__inner {
    gap: 80px;
  }
}

@media screen and (min-width: 768px) {
  .parents-faq__left {
    width: 36%;
    position: sticky;
    top: 110px;
  }
}

.parents-faq__title {
  line-height: 1.4;
}
.parents-faq__title br {
  display: none;
}
@media screen and (min-width: 768px) {
  .parents-faq__title br {
    display: block;
  }
}

.parents-faq__lead {
  margin-top: 24px;
  line-height: 1.8;
  font-size: 15px;
  color: #555555;
}
@media screen and (min-width: 768px) {
  .parents-faq__lead {
    font-size: 16px;
    text-align: left;
  }
}
.parents-faq__lead br {
  display: none;
}
@media screen and (min-width: 768px) {
  .parents-faq__lead br {
    display: block;
  }
}

.parents-faq__figure {
  margin-top: 32px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .parents-faq__figure {
    margin-top: 40px;
  }
}

.parents-faq__image {
  width: 100%;
  height: auto;
  display: block;
}

.parents-faq__caption {
  padding: 12px 16px;
  background: rgba(247, 242, 232, 0.5);
  font-size: 13px;
  color: #555555;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .parents-faq__caption {
    font-size: 14px;
    padding: 14px 18px;
  }
}

.parents-faq__right {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .parents-faq__right {
    width: 64%;
    margin-top: 0;
  }
}

.parents-faq__item {
  margin-bottom: 16px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .parents-faq__item {
    margin-bottom: 20px;
  }
}
.parents-faq__item:hover {
  border-color: #102544;
  box-shadow: 0 4px 12px rgba(16, 37, 68, 0.08);
}
.parents-faq__item.is-open {
  border-color: #b74233;
  box-shadow: 0 4px 16px rgba(200, 74, 61, 0.15);
}
.parents-faq__item.is-open .parents-faq__question {
  background: rgb(244.8653846154, 221.6153846154, 218.6346153846);
  color: #102544;
}
.parents-faq__item.is-open .parents-faq__question-toggle i {
  transform: rotate(180deg);
}
.parents-faq__item.is-open .parents-faq__answer {
  max-height: 500px;
  opacity: 1;
  padding: 20px 24px;
}
@media screen and (min-width: 768px) {
  .parents-faq__item.is-open .parents-faq__answer {
    padding: 24px 28px;
  }
}

.parents-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: #fafafa;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .parents-faq__question {
    padding: 20px 24px;
    gap: 16px;
  }
}
.parents-faq__question:hover {
  background: rgb(145.4714285714, 179.2964285714, 229.2285714286);
}

.parents-faq__question-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #b74233;
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .parents-faq__question-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}

.parents-faq__question-text {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color: #102544;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .parents-faq__question-text {
    font-size: 16px;
  }
}

.parents-faq__question-toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #102544;
  font-size: 14px;
}
.parents-faq__question-toggle i {
  transition: transform 0.3s ease;
}

.parents-faq__answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 0 24px;
}
@media screen and (min-width: 768px) {
  .parents-faq__answer {
    padding: 0 28px;
  }
}
.parents-faq__answer p {
  font-size: 14px;
  line-height: 1.85;
  color: #222222;
}
@media screen and (min-width: 768px) {
  .parents-faq__answer p {
    font-size: 15px;
    line-height: 1.9;
  }
}
.parents-faq__answer p:not(:last-child) {
  margin-bottom: 12px;
}

.dojo-search {
  background-color: #faf8f5;
}

@media screen and (min-width: 768px) {
  .dojo-search__inner {
    display: flex;
    gap: 60px;
    align-items: flex-start;
  }
}
@media screen and (min-width: 900px) {
  .dojo-search__inner {
    gap: 80px;
  }
}

@media screen and (min-width: 768px) {
  .dojo-search__left {
    width: 36%;
    position: sticky;
    top: 110px;
  }
}

.dojo-search__title {
  line-height: 1.4;
}
.dojo-search__title br {
  display: none;
}
@media screen and (min-width: 768px) {
  .dojo-search__title br {
    display: block;
  }
}

.dojo-search__lead {
  margin-top: 24px;
  line-height: 1.8;
  font-size: 15px;
  color: #555555;
}
@media screen and (min-width: 768px) {
  .dojo-search__lead {
    font-size: 16px;
    text-align: left;
  }
}
.dojo-search__lead br {
  display: none;
}
@media screen and (min-width: 768px) {
  .dojo-search__lead br {
    display: block;
  }
}

.dojo-search__form {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .dojo-search__form {
    margin-top: 40px;
  }
}

.dojo-search__form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #102544;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .dojo-search__form-label {
    font-size: 15px;
  }
}

.dojo-search__form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .dojo-search__form-group {
    gap: 14px;
  }
}

.dojo-search__select {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  color: #222222;
  background: #fff;
  border: 2px solid #e5e5e5;
  border-radius: 6px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23102544' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dojo-search__select:hover {
  border-color: #102544;
}
.dojo-search__select:focus {
  outline: none;
  border-color: #b74233;
  box-shadow: 0 0 0 3px rgba(183, 66, 51, 0.1);
}
@media screen and (min-width: 768px) {
  .dojo-search__select {
    padding: 16px 18px;
    font-size: 16px;
  }
}

.dojo-search__button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
}
.dojo-search__button i {
  font-size: 14px;
}

.dojo-search__links {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .dojo-search__links {
    margin-top: 32px;
  }
}

.dojo-search__link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #102544;
  transition: color 0.3s ease;
}
.dojo-search__link i {
  font-size: 12px;
  color: #b74233;
}
.dojo-search__link:hover {
  color: #b74233;
}
@media screen and (min-width: 768px) {
  .dojo-search__link {
    font-size: 15px;
  }
}

.dojo-search__note {
  margin-top: 24px;
  padding: 16px;
  background: rgba(16, 37, 68, 0.05);
  border-radius: 8px;
  border-left: 3px solid #b74233;
}
@media screen and (min-width: 768px) {
  .dojo-search__note {
    margin-top: 32px;
    padding: 18px;
  }
}

.dojo-search__note-text {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.7;
  color: #222222;
}
.dojo-search__note-text i {
  flex-shrink: 0;
  margin-top: 2px;
  color: #b74233;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .dojo-search__note-text {
    font-size: 14px;
  }
}

.dojo-search__right {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .dojo-search__right {
    width: 64%;
    margin-top: 0;
  }
}

.dojo-search__map {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  position: relative;
}
@media screen and (min-width: 768px) {
  .dojo-search__map {
    height: 500px;
  }
}

.dojo-search__map-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.dojo-search__map-iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.dojo-search__map-caption {
  margin-top: 16px;
  font-size: 13px;
  color: #555555;
  text-align: center;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .dojo-search__map-caption {
    font-size: 14px;
    margin-top: 20px;
  }
}

.merits-detail {
  background: #faf8f5;
  padding: 60px 0 100px;
}
@media screen and (min-width: 768px) {
  .merits-detail {
    padding: 80px 0 120px;
  }
}

.merits-detail__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .merits-detail__inner {
    padding: 0 40px;
  }
}

.merits-detail__item {
  padding-block: 60px;
  border-bottom: 1px solid rgba(16, 37, 68, 0.06);
}
.merits-detail__item:first-child {
  padding-top: 0;
}
.merits-detail__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .merits-detail__item {
    padding-block: 100px;
  }
}

.merits-detail__header {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}
@media screen and (min-width: 768px) {
  .merits-detail__header {
    flex-direction: row;
    gap: 60px;
    margin-bottom: 64px;
    align-items: center;
  }
}
@media screen and (min-width: 900px) {
  .merits-detail__header {
    gap: 80px;
  }
}

@media screen and (min-width: 768px) {
  .merits-detail__header--reverse {
    flex-direction: row-reverse;
  }
}

.merits-detail__header-figure {
  flex: 1;
  min-width: 0;
}

.merits-detail__header-image {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.5s ease;
}
.merits-detail__header-image:hover {
  transform: scale(1.02);
}

.merits-detail__header-caption {
  margin-top: 12px;
  padding: 10px 14px;
  font-size: 12px;
  color: #555555;
  text-align: left;
  font-style: normal;
  line-height: 1.7;
  background: rgba(247, 242, 232, 0.6);
  border-radius: 6px;
}
@media screen and (min-width: 768px) {
  .merits-detail__header-caption {
    font-size: 13px;
    padding: 12px 16px;
  }
}

.merits-detail__header-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.merits-detail__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #b74233;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(200, 74, 61, 0.25);
}
@media screen and (min-width: 768px) {
  .merits-detail__badge {
    width: 72px;
    height: 72px;
    font-size: 28px;
    margin-bottom: 28px;
  }
}

.merits-detail__title {
  font-size: 22px;
  font-weight: 700;
  color: #102544;
  letter-spacing: 0.02em;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .merits-detail__title {
    font-size: 26px;
    margin-bottom: 24px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 900px) {
  .merits-detail__title {
    font-size: 28px;
  }
}

.merits-detail__lead {
  font-size: 15px;
  line-height: 2;
  color: #222222;
  padding: 18px 18px 18px 20px;
  border-left: 5px solid #b74233;
  background: #fff;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
@media screen and (min-width: 768px) {
  .merits-detail__lead br {
    display: inline;
  }
}
@media screen and (min-width: 768px) {
  .merits-detail__lead {
    font-size: 16px;
    padding: 20px 24px 20px 28px;
  }
}

.merits-detail__body {
  font-size: 15px;
  line-height: 2.2;
  color: #222222;
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .merits-detail__body {
    font-size: 16px;
    line-height: 2.3;
  }
}
@media screen and (min-width: 900px) {
  .merits-detail__body {
    font-size: 17px;
  }
}

.merits-detail__subtitle {
  font-size: 18px;
  font-weight: 700;
  color: #102544;
  margin-top: 48px;
  margin-bottom: 20px;
  padding: 16px 0 16px 20px;
  border-left: 5px solid #b74233;
  line-height: 1.6;
  background: rgba(247, 242, 232, 0.4);
  border-radius: 0 4px 4px 0;
}
.merits-detail__subtitle:first-child {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .merits-detail__subtitle {
    font-size: 20px;
    margin-top: 56px;
    margin-bottom: 24px;
    padding: 18px 0 18px 24px;
  }
}
@media screen and (min-width: 900px) {
  .merits-detail__subtitle {
    font-size: 22px;
  }
}

.merits-detail__text {
  margin-bottom: 28px;
  line-height: 2.2;
}
@media screen and (min-width: 768px) {
  .merits-detail__text {
    line-height: 2.3;
    margin-bottom: 32px;
  }
}
.merits-detail__text:last-child {
  margin-bottom: 0;
}

.merits-detail.section--soft-bg {
  background: #fff;
}

.merits-detail__video {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .merits-detail__video {
    margin-top: 56px;
  }
}
.merits-detail__video-inner {
  padding: 24px 16px;
  border-radius: 16px;
  background-color: #faf8f5;
}

@media screen and (min-width: 768px) {
  .merits-detail__video-inner {
    padding: 32px 40px;
  }
}
.merits-detail__video-player {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #000000;
}

.merits-detail__video-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.merits-detail__video-note {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.8;
  color: #555555;
}

.about-kendo-cta {
  text-align: center;
}

.about-kendo-cta__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 16px 72px;
}
@media screen and (min-width: 768px) {
  .about-kendo-cta__inner {
    padding: 72px 16px 88px;
  }
}

.about-kendo-cta__title {
  font-size: 24px;
  font-weight: 600;
  color: #102544;
  margin-bottom: 20px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .about-kendo-cta__title {
    font-size: 30px;
    margin-bottom: 24px;
  }
}

.about-kendo-cta__lead {
  font-size: 15px;
  line-height: 1.9;
  color: #222222;
  margin-bottom: 32px;
}
.about-kendo-cta__lead br {
  display: none;
}
@media screen and (min-width: 768px) {
  .about-kendo-cta__lead br {
    display: inline;
  }
}
@media screen and (min-width: 768px) {
  .about-kendo-cta__lead {
    font-size: 16px;
    margin-bottom: 40px;
  }
}

.about-kendo-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .about-kendo-cta__buttons {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
}

.about-kendo-cta__buttons .button {
  width: 100%;
  max-width: 320px;
}
@media screen and (min-width: 768px) {
  .about-kendo-cta__buttons .button {
    width: auto;
    min-width: 240px;
  }
}

/* ========================================
   Voices（子ども・保護者の声）
======================================== */
.voices {
  background: linear-gradient(180deg, #ffffff 0%, #faf8f4 100%);
  padding: 80px 0;
}

.voices__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.voices__title {
  text-align: center;
  margin-bottom: 12px;
}

.voices__lead {
  text-align: center;
  font-size: 14px;
  line-height: 1.9;
  color: #555555;
  margin-bottom: 48px;
}
@media screen and (min-width: 768px) {
  .voices__lead {
    font-size: 15px;
    margin-bottom: 56px;
  }
}

.voices__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 48px;
}
@media screen and (min-width: 768px) {
  .voices__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    margin-bottom: 56px;
  }
}
@media screen and (min-width: 900px) {
  .voices__cards {
    gap: 40px;
  }
}

.voices__card {
  position: relative;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 28px 24px 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 2px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.voices__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .voices__card {
    padding: 32px 28px 36px;
  }
}

.voices__card::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 48px;
  line-height: 1;
  color: rgba(16, 37, 68, 0.06);
  font-family: Georgia, serif;
  z-index: 0;
}

.voices__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: 16px;
  font-size: 20px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .voices__card-icon {
    width: 56px;
    height: 56px;
    font-size: 24px;
    margin-bottom: 20px;
  }
}

.voices__card-label {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .voices__card-label {
    font-size: 14px;
    margin-bottom: 16px;
  }
}

.voices__card-highlight {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .voices__card-highlight {
    font-size: 17px;
    margin-bottom: 18px;
  }
}

.voices__card-text {
  font-size: 14px;
  line-height: 2;
  color: #222222;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .voices__card-text br {
    display: inline;
  }
}
@media screen and (min-width: 768px) {
  .voices__card-text {
    font-size: 15px;
    line-height: 2.1;
  }
}

.voices__card--child {
  border-color: rgba(16, 37, 68, 0.1);
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
}
.voices__card--child:hover {
  border-color: #102544;
}
.voices__card--child .voices__card-icon {
  background: linear-gradient(135deg, #102544 0%, rgb(25.7142857143, 59.4642857143, 109.2857142857) 100%);
  box-shadow: 0 4px 12px rgba(16, 37, 68, 0.2);
}
.voices__card--child .voices__card-label {
  color: #102544;
}
.voices__card--child .voices__card-highlight {
  color: #102544;
}

.voices__card--parent {
  border-color: rgba(200, 74, 61, 0.1);
  background: linear-gradient(135deg, #ffffff 0%, #fffbfa 100%);
}
.voices__card--parent:hover {
  border-color: #b74233;
}
.voices__card--parent .voices__card-icon {
  background: linear-gradient(135deg, #b74233 0%, rgb(205.9615384615, 93.4615384615, 79.0384615385) 100%);
  box-shadow: 0 4px 12px rgba(200, 74, 61, 0.2);
}
.voices__card--parent .voices__card-label {
  color: #b74233;
}
.voices__card--parent .voices__card-highlight {
  color: #b74233;
}

.voices__cta {
  text-align: center;
  padding-top: 16px;
}

@media screen and (min-width: 600px) {
  .voices {
    padding: 60px 0;
  }
}
@media screen and (min-width: 768px) {
  .voices {
    padding: 100px 0 108px;
  }
}
.info-blocks {
  padding: 0;
}

.info-blocks__cta {
  padding: 44px 24px;
  background: #102544;
}
@media screen and (min-width: 768px) {
  .info-blocks__cta {
    padding: 60px 40px;
  }
}

.info-blocks__cta-title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .info-blocks__cta-title {
    font-size: 30px;
    margin-bottom: 16px;
  }
}

.info-blocks__cta-lead {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .info-blocks__cta-lead {
    font-size: 15px;
    margin-bottom: 40px;
  }
}

.info-blocks__cta-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .info-blocks__cta-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.info-blocks__cta-card {
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  background: #fff;
  border-radius: 8px;
  transition: all 0.3s;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .info-blocks__cta-card {
    padding: 28px 24px;
    text-align: left;
  }
}
.info-blocks__cta-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.info-blocks__cta-card-header {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e5e5;
}

.info-blocks__cta-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #102544;
  margin-bottom: 6px;
}
@media screen and (min-width: 768px) {
  .info-blocks__cta-card-title {
    font-size: 19px;
  }
}

.info-blocks__cta-card-sub {
  font-size: 12px;
  color: #555555;
}
@media screen and (min-width: 768px) {
  .info-blocks__cta-card-sub {
    font-size: 13px;
  }
}

.info-blocks__cta-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
  flex: 1;
}

.info-blocks__cta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .info-blocks__cta-item {
    align-items: flex-start;
  }
}

.info-blocks__cta-item-date {
  font-size: 12px;
  color: #555555;
}
@media screen and (min-width: 768px) {
  .info-blocks__cta-item-date {
    font-size: 13px;
  }
}

.info-blocks__cta-item-title {
  font-size: 14px;
  color: #222222;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .info-blocks__cta-item-title {
    font-size: 15px;
  }
}

.info-blocks__cta-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #102544;
  border: 1px solid #102544;
  border-radius: 4px;
  transition: all 0.3s;
  text-align: center;
  align-self: center;
}
@media screen and (min-width: 768px) {
  .info-blocks__cta-more {
    font-size: 15px;
    align-self: flex-start;
  }
}
.info-blocks__cta-card:hover .info-blocks__cta-more {
  background: #102544;
  color: #fff;
}

.sns {
  background-color: #fff;
}

.sns__lead {
  margin-top: 24px;
  text-align: center;
  line-height: 1.8;
}

.sns__links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .sns__links {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }
}

.sns__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border: 1px solid #102544;
  border-radius: 8px;
  color: #102544;
  font-weight: 600;
  font-size: 15px;
  max-width: 320px;
  width: 100%;
  justify-content: center;
  transition: background-color 0.3s, color 0.3s;
}
.sns__link:hover {
  background-color: #102544;
  color: #fff;
}

.sns__link-icon {
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sns__link-text {
  font-size: 15px;
}

/* ========================================
   Contact CTA (TOP)
======================================== */
.contact-cta {
  padding: 40px 16px 56px;
  background-color: #ffffff;
}

@media screen and (min-width: 768px) {
  .contact-cta {
    padding: 48px 16px 64px;
  }
}
.contact-cta__inner {
  max-width: 960px;
  margin: 0 auto;
}

.contact-cta__body {
  text-align: center;
}

.contact-cta__title {
  margin-bottom: 16px;
}

.contact-cta__text {
  font-size: 14px;
  line-height: 1.8;
  color: #222222;
  max-width: 480px;
  margin: 0 auto 24px;
}

.contact-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 260px;
  padding: 12px 32px;
  border-radius: 4px;
  border: 1px solid #102544;
  background-color: transparent;
  color: #102544;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-sizing: border-box;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

@media screen and (min-width: 768px) {
  .contact-cta__button {
    width: auto;
    min-width: 200px;
  }
}
.contact-cta__button:hover {
  background-color: #102544;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.contact {
  padding: 80px 0;
  background: #faf8f5;
}
@media screen and (min-width: 768px) {
  .contact {
    padding: 120px 0;
  }
}

.contact__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .contact__inner {
    padding: 0 40px;
  }
}

.contact__heading {
  text-align: center;
  margin-bottom: 48px;
}
@media screen and (min-width: 768px) {
  .contact__heading {
    margin-bottom: 64px;
  }
}

.contact__title {
  font-size: 28px;
  font-weight: 700;
  color: #102544;
  margin-bottom: 24px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .contact__title {
    font-size: 36px;
    margin-bottom: 32px;
  }
}

.contact__lead {
  font-size: 15px;
  line-height: 1.8;
  color: #222222;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .contact__lead {
    font-size: 16px;
    line-height: 1.9;
  }
}

.contact__note {
  font-size: 13px;
  line-height: 1.7;
  color: #555555;
  padding: 16px;
  background: #fff;
  border-left: 3px solid #b74233;
  border-radius: 4px;
}
@media screen and (min-width: 768px) {
  .contact__note {
    font-size: 14px;
    padding: 20px;
  }
}

.contact-form {
  background: #fff;
  padding: 32px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
@media screen and (min-width: 768px) {
  .contact-form {
    padding: 48px 56px;
    border-radius: 16px;
  }
}

.contact-form__block {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(16, 37, 68, 0.1);
}
.contact-form__block:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .contact-form__block {
    margin-bottom: 48px;
    padding-bottom: 48px;
  }
}

.contact-form__block--confirm {
  background: rgba(16, 37, 68, 0.03);
  padding: 24px;
  border-radius: 8px;
  border-bottom: none;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .contact-form__block--confirm {
    padding: 32px;
    margin-bottom: 40px;
  }
}

.contact-form__label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #102544;
  margin-bottom: 16px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .contact-form__label {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.contact-form__required {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: #b74233;
  padding: 3px 8px;
  border-radius: 3px;
  margin-left: 8px;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .contact-form__required {
    font-size: 12px;
    padding: 4px 10px;
  }
}

.contact-form__sub-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #222222;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .contact-form__sub-label {
    font-size: 15px;
    margin-bottom: 10px;
  }
}

.contact-form__help {
  font-size: 13px;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .contact-form__help {
    font-size: 14px;
  }
}

.contact-form__radios {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .contact-form__radios {
    gap: 14px;
  }
}

@media screen and (min-width: 768px) {
  .contact-form__radios--inline {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
}

.contact-form__radio {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #222222;
  cursor: pointer;
  padding: 12px 16px;
  border: 2px solid rgba(16, 37, 68, 0.1);
  border-radius: 6px;
  transition: all 0.3s ease;
  background: #fff;
}
.contact-form__radio:hover {
  background: rgba(16, 37, 68, 0.02);
  border-color: rgba(16, 37, 68, 0.2);
}
.contact-form__radio input[type=radio] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #102544;
}
.contact-form__radio input[type=radio]:checked ~ span {
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .contact-form__radio {
    font-size: 16px;
    padding: 14px 18px;
  }
}

.contact-form__radio:has(input[type=radio]:checked) {
  background: rgba(16, 37, 68, 0.05);
  border-color: #102544;
}

.contact-form__textarea {
  width: 100%;
  padding: 16px;
  font-size: 15px;
  line-height: 1.7;
  color: #222222;
  border: 2px solid rgba(16, 37, 68, 0.15);
  border-radius: 6px;
  resize: vertical;
  transition: border-color 0.3s ease;
  font-family: inherit;
  background: #fff;
}
.contact-form__textarea:focus {
  outline: none;
  border-color: #102544;
  box-shadow: 0 0 0 3px rgba(16, 37, 68, 0.1);
}
.contact-form__textarea::-moz-placeholder {
  color: #555555;
}
.contact-form__textarea::placeholder {
  color: #555555;
}
@media screen and (min-width: 768px) {
  .contact-form__textarea {
    padding: 18px;
    font-size: 16px;
  }
}

.contact-form__field {
  margin-bottom: 24px;
}
.contact-form__field:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .contact-form__field {
    margin-bottom: 28px;
  }
}

.contact-form__field--checkbox {
  margin-bottom: 0;
}

.contact-form__row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .contact-form__row {
    flex-direction: row;
    gap: 32px;
  }
}
.contact-form__row .contact-form__field {
  flex: 1;
  margin-bottom: 0;
}

.contact-form__select {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  color: #222222;
  border: 2px solid rgba(16, 37, 68, 0.15);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23102544' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px;
}
.contact-form__select:focus {
  outline: none;
  border-color: #102544;
  box-shadow: 0 0 0 3px rgba(16, 37, 68, 0.1);
}
@media screen and (min-width: 768px) {
  .contact-form__select {
    padding: 14px 18px;
    font-size: 16px;
  }
}

.contact-form__input {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  color: #222222;
  border: 2px solid rgba(16, 37, 68, 0.15);
  border-radius: 6px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}
.contact-form__input:focus {
  outline: none;
  border-color: #102544;
  box-shadow: 0 0 0 3px rgba(16, 37, 68, 0.1);
}
.contact-form__input::-moz-placeholder {
  color: #555555;
}
.contact-form__input::placeholder {
  color: #555555;
}
@media screen and (min-width: 768px) {
  .contact-form__input {
    padding: 14px 18px;
    font-size: 16px;
  }
}

.contact-form__input--mt {
  margin-top: 12px;
}

.contact-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #222222;
  cursor: pointer;
  line-height: 1.7;
}
.contact-form__checkbox input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #102544;
  flex-shrink: 0;
}
.contact-form__checkbox a {
  color: #102544;
  text-decoration: underline;
}
.contact-form__checkbox a:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .contact-form__checkbox {
    font-size: 15px;
  }
}

.contact-form__actions {
  text-align: center;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .contact-form__actions {
    margin-top: 48px;
  }
}
.contact-form__actions .button {
  min-width: 280px;
  padding: 18px 40px;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .contact-form__actions .button {
    min-width: 320px;
    padding: 20px 48px;
    font-size: 17px;
  }
}

.contact__tel {
  margin-top: 32px;
  padding: 24px;
  background: #fff;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
@media screen and (min-width: 768px) {
  .contact__tel {
    margin-top: 40px;
    padding: 32px;
  }
}

.contact__tel-text {
  font-size: 14px;
  line-height: 1.8;
  color: #222222;
}
@media screen and (min-width: 768px) {
  .contact__tel-text {
    font-size: 15px;
  }
}

.contact__success {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
@media screen and (min-width: 768px) {
  .contact__success {
    padding: 120px 40px;
  }
}

.contact__success-icon {
  font-size: 80px;
  color: #b74233;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .contact__success-icon {
    font-size: 100px;
    margin-bottom: 40px;
  }
}

.contact__success-title {
  font-size: 24px;
  font-weight: 700;
  color: #102544;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .contact__success-title {
    font-size: 32px;
    margin-bottom: 32px;
  }
}

.contact__success-text {
  font-size: 15px;
  line-height: 1.8;
  color: #222222;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .contact__success-text {
    font-size: 16px;
    margin-bottom: 48px;
  }
}

.contact-form__input.is-error,
.contact-form__select.is-error,
.contact-form__textarea.is-error {
  border-color: #b74233;
}

.contact-form__error-message {
  display: block;
  font-size: 13px;
  color: #b74233;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .contact-form__error-message {
    font-size: 14px;
  }
}

.footer {
  background-color: #102544;
  color: #fff;
  padding-block: 50px 30px;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-block: 60px 40px;
  }
}

.footer__nav-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 12px;
}
@media screen and (min-width: 768px) {
  .footer__nav-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 16px;
  }
}

.footer__nav-link {
  color: #fff;
  font-size: 14px;
  transition: opacity 0.3s;
}
.footer__nav-link:hover {
  opacity: 0.7;
}

.footer__sns {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__sns-link {
  color: #fff;
  font-size: 14px;
  transition: opacity 0.3s;
}
.footer__sns-link:hover {
  opacity: 0.7;
}

.footer__copyright {
  margin-top: 30px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb {
  padding: 24px 0;
  background: #faf8f5;
  border-bottom: 1px solid rgba(16, 37, 68, 0.1);
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .breadcrumb {
    padding: 28px 0;
    margin-top: 70px;
  }
}

.breadcrumb__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .breadcrumb__inner {
    font-size: 14px;
  }
}

.breadcrumb__link {
  color: #102544;
  transition: color 0.3s ease;
}
.breadcrumb__link:hover {
  color: #b74233;
}

.breadcrumb__separator {
  color: #555555;
}

.breadcrumb__current {
  color: #222222;
  font-weight: 500;
}

.archive-page {
  background: #fff;
}

.archive-page__hero {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .archive-page__hero {
    margin-bottom: 50px;
  }
}

.archive-page__lead {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.8;
  color: #555555;
}
@media screen and (min-width: 768px) {
  .archive-page__lead {
    margin-top: 24px;
    font-size: 15px;
  }
}

.archive-page__local-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 36px;
}
@media screen and (min-width: 768px) {
  .archive-page__local-nav {
    margin-bottom: 44px;
  }
}

@media screen and (min-width: 768px) {
  .archive-page__local-nav--events {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

@media screen and (min-width: 768px) {
  .archive-page__local-nav--district {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

.archive-page__nav-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 12px;
  background: #fff;
  border: 2px solid #102544;
  border-radius: 6px;
  text-align: center;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .archive-page__nav-button {
    padding: 18px 12px;
  }
}
.archive-page__nav-button:hover {
  background: #102544;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(16, 37, 68, 0.2);
}
.archive-page__nav-button--active {
  background: #102544;
  color: #fff;
  box-shadow: 0 4px 12px rgba(16, 37, 68, 0.25);
}

.archive-page__nav-label {
  font-size: 14px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .archive-page__nav-label {
    font-size: 15px;
  }
}

.archive-page__nav-sub {
  font-size: 11px;
  opacity: 0.85;
}
@media screen and (min-width: 768px) {
  .archive-page__nav-sub {
    font-size: 12px;
  }
}

.archive-page__filter {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  background: #faf8f5;
  border-radius: 6px;
  margin-bottom: 36px;
}
@media screen and (min-width: 768px) {
  .archive-page__filter {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    margin-bottom: 44px;
  }
}

.archive-page__filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 900px) {
  .archive-page__filter-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
}

.archive-page__filter-label {
  font-size: 13px;
  font-weight: 600;
  color: #102544;
}
@media screen and (min-width: 768px) {
  .archive-page__filter-label {
    font-size: 14px;
  }
}

.archive-page__filter-tabs {
  display: none;
}
@media screen and (min-width: 768px) {
  .archive-page__filter-tabs {
    display: flex;
    gap: 6px;
  }
}

.archive-page__filter-tab {
  padding: 6px 12px;
  font-size: 13px;
  background: #fff;
  border: 1px solid #102544;
  border-radius: 4px;
  transition: all 0.3s;
  white-space: nowrap;
}
.archive-page__filter-tab:hover {
  background: rgb(116.5714285714, 159.3214285714, 222.4285714286);
}
.archive-page__filter-tab--active {
  background: #102544;
  color: #fff;
}

.archive-page__filter-select {
  display: block;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #102544;
  border-radius: 4px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .archive-page__filter-select {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .archive-page__filter-select--always {
    display: block;
    min-width: 140px;
  }
}

.archive-page__filter-count {
  font-size: 13px;
  color: #555555;
}
@media screen and (min-width: 768px) {
  .archive-page__filter-count {
    font-size: 14px;
  }
}
.archive-page__filter-count strong {
  color: #102544;
  font-weight: 600;
}

.archive-page__table {
  display: none;
  width: 100%;
  border-collapse: collapse;
}
@media screen and (min-width: 768px) {
  .archive-page__table {
    display: table;
  }
}

.archive-page__table-head {
  background: #102544;
  color: #fff;
}

.archive-page__table-th {
  padding: 11px 9px;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
}
.archive-page__table-th--date {
  width: 75px;
}
.archive-page__table-th--type {
  width: 75px;
}
.archive-page__table-th--venue {
  width: 130px;
}
.archive-page__table-th--target {
  width: 85px;
}
.archive-page__table-th--detail {
  width: 75px;
  text-align: center;
}

.archive-page__table-row {
  border-bottom: 1px solid #e5e5e5;
}
.archive-page__table-row:hover {
  background: #fafafa;
}

.archive-page__table-td {
  padding: 13px 9px;
  font-size: 14px;
  vertical-align: middle;
}

.archive-page__day {
  font-size: 11px;
  color: #555555;
}

.archive-page__badge {
  display: inline-block;
  padding: 3px 9px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 3px;
}
.archive-page__badge--taikai {
  background: #e3f2fd;
  color: #1976d2;
}
.archive-page__badge--shinsa {
  background: #fff3e0;
  color: #f57c00;
}
.archive-page__badge--koshukai {
  background: #e8f5e9;
  color: #388e3c;
}
.archive-page__badge--taikai-result {
  background: #e3f2fd;
  color: #1976d2;
}
.archive-page__badge--shinsa-result {
  background: #fff3e0;
  color: #f57c00;
}
.archive-page__badge--notice {
  background: #f3e5f5;
  color: #7b1fa2;
}
.archive-page__badge--important {
  background: #ffebee;
  color: #c62828;
}
.archive-page__badge--district {
  background-color: #102544;
  color: #ffffff;
}
.archive-page__badge--matsue, .archive-page__badge--izumo, .archive-page__badge--hamada, .archive-page__badge--masuda, .archive-page__badge--oda, .archive-page__badge--oki {
  background: rgb(116.5714285714, 159.3214285714, 222.4285714286);
  color: #102544;
}

.archive-page__link {
  color: #222222;
  font-weight: 500;
  transition: color 0.3s;
}
.archive-page__link:hover {
  color: #102544;
}

.archive-page__cards--events {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media screen and (min-width: 768px) {
  .archive-page__cards--events {
    display: none;
  }
}

.archive-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .archive-page__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

.archive-page__card {
  padding: 18px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s, transform 0.3s;
}
.archive-page__card:hover {
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}
@media screen and (min-width: 768px) {
  .archive-page__card {
    padding: 20px;
  }
}

.archive-page__card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 11px;
}

.archive-page__card-date {
  font-size: 14px;
  font-weight: 600;
  color: #102544;
}

.archive-page__card-day {
  font-size: 12px;
  font-weight: 400;
  margin-left: 3px;
}

.archive-page__card-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 11px;
}

.archive-page__card--news .archive-page__card-date,
.archive-page__card--district .archive-page__card-date {
  font-size: 12px;
  font-weight: 400;
  color: #555555;
}

.archive-page__card-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 11px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .archive-page__card-title {
    font-size: 16px;
  }
}

.archive-page__card-link {
  color: #222222;
  transition: color 0.3s;
}
.archive-page__card-link:hover {
  color: #102544;
}

.archive-page__card-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 13px;
  font-size: 13px;
  color: #555555;
}

.archive-page__card-item {
  display: flex;
  align-items: center;
}
.archive-page__card-item i {
  color: #102544;
  margin-right: 5px;
  width: 14px;
}

.archive-page__card-excerpt {
  font-size: 13px;
  line-height: 1.7;
  color: #222222;
  margin-bottom: 13px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .archive-page__card-excerpt {
    font-size: 14px;
  }
}

.archive-page__card-button {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .archive-page__card-button {
    width: auto;
    min-width: 130px;
  }
}

.archive-page__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-top: 44px;
}
@media screen and (min-width: 768px) {
  .archive-page__pagination {
    gap: 10px;
    margin-top: 54px;
  }
}

.archive-page__pagination-prev,
.archive-page__pagination-next {
  padding: 7px 14px;
  font-size: 13px;
  color: #102544;
  border: 1px solid #102544;
  border-radius: 4px;
  transition: all 0.3s;
}
.archive-page__pagination-prev:hover,
.archive-page__pagination-next:hover {
  background: #102544;
  color: #fff;
}

.archive-page__pagination-numbers {
  display: flex;
  gap: 5px;
}

.archive-page__pagination-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 13px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  transition: all 0.3s;
}
.archive-page__pagination-number:hover {
  background: rgb(116.5714285714, 159.3214285714, 222.4285714286);
  border-color: #102544;
}
.archive-page__pagination-number--active {
  background: #102544;
  color: #fff;
  border-color: #102544;
}

.archive-page__pagination-ellipsis {
  display: flex;
  align-items: center;
  padding: 0 3px;
  color: #555555;
}

.archive-page__fallback {
  padding: 44px 18px;
  text-align: center;
  background: #faf8f5;
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .archive-page__fallback {
    padding: 54px 18px;
  }
}

.archive-page__fallback-text {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 22px;
}
@media screen and (min-width: 768px) {
  .archive-page__fallback-text {
    font-size: 15px;
  }
}

.archive-page__fallback-buttons {
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .archive-page__fallback-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 14px;
  }
}

/* ===================================
         道場下層ページ
      =================================== */
.dojo-list__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.dojo-list__filter-btn {
  padding: 8px 16px;
  border: 1px solid #b74233;
  background: #fff;
  color: #102544;
  border-radius: 3px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s;
}

.dojo-list__filter-btn:hover {
  background: #f7f2e8;
}

.dojo-list__filter-btn.is-active {
  background: #b74233;
  color: #fff;
}

.dojo-list__district {
  margin-bottom: 48px;
}

.dojo-list__district-name {
  font-size: 24px;
  font-weight: 700;
  color: #102544;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 3px solid #b74233;
}

.dojo-accordion__item {
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 12px;
  overflow: hidden;
}

.dojo-accordion__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s;
}

.dojo-accordion__header:hover {
  background: #f7f2e8;
}

.dojo-accordion__header[aria-expanded=true] {
  background: #f7f2e8;
  border-bottom: 1px solid #ddd;
}

.dojo-accordion__header-content {
  flex: 1;
}

.dojo-accordion__name {
  font-size: 18px;
  font-weight: 700;
  color: #102544;
  margin-bottom: 4px;
}

.dojo-accordion__meta {
  font-size: 14px;
  color: #666;
}

.dojo-accordion__icon {
  font-size: 20px;
  color: #b74233;
  transition: transform 0.3s;
}

.dojo-accordion__header[aria-expanded=true] .dojo-accordion__icon {
  transform: rotate(180deg);
}

.dojo-accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.dojo-accordion__panel[aria-hidden=false] {
  max-height: 1000px;
}

.dojo-accordion__body {
  padding: 24px 20px;
  background: #fff;
}

.dojo-accordion__details {
  margin: 0;
}

.dojo-accordion__details dt {
  font-weight: 700;
  color: #102544;
  margin-bottom: 4px;
  font-size: 14px;
}

.dojo-accordion__details dd {
  margin: 0 0 16px 0;
  color: #333;
  font-size: 15px;
  line-height: 1.6;
}

.dojo-accordion__details dd:last-child {
  margin-bottom: 0;
}

.dojo-accordion__details dd a {
  color: #b74233;
  text-decoration: underline;
}

.dojo-accordion__link {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 24px;
  background: #b74233;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  transition: background 0.3s;
}

.dojo-accordion__link:hover {
  background: #a33c31;
}

.dojo-list__lead {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 40px;
}

.dojo-list__note {
  margin-top: 60px;
  padding: 20px;
  background: #f7f2e8;
  border-radius: 4px;
}

.dojo-list__note p {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 8px;
}

.dojo-list__note p:last-child {
  margin-bottom: 0;
}

.dojo-list__note i {
  color: #b74233;
  margin-right: 8px;
}

@media (max-width: 599px) {
  .dojo-list__district-name {
    font-size: 20px;
  }
  .dojo-accordion__name {
    font-size: 16px;
  }
  .dojo-accordion__meta {
    font-size: 13px;
  }
  .dojo-accordion__header {
    padding: 12px 16px;
  }
  .dojo-accordion__body {
    padding: 20px 16px;
  }
}
/* ===================================
         フッターロゴのスタイル追加
      =================================== */
.footer__logo {
  text-align: center;
  margin-bottom: 32px;
}

.footer__logo a {
  display: inline-block;
}

.footer__logo-img {
  height: 80px;
  width: auto;
  margin-bottom: 12px;
}

.footer__logo-text {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

@media (min-width: 768px) {
  .footer__logo-img {
    height: 100px;
  }
  .footer__logo-text {
    font-size: 18px;
  }
}
.page-main {
  background: #fff;
}

.federation-intro {
  padding: 60px 0;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .federation-intro {
    padding: 80px 0;
  }
}

.federation-intro__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .federation-intro__inner {
    padding: 0 40px;
  }
}

.federation-intro__content {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .federation-intro__content {
    margin-top: 48px;
  }
}

.federation-intro__lead {
  font-size: 16px;
  line-height: 2;
  color: #222222;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .federation-intro__lead {
    font-size: 17px;
    line-height: 2.1;
    margin-bottom: 40px;
  }
}

.federation-intro__note {
  font-size: 14px;
  line-height: 1.8;
  color: #555555;
  padding: 16px 20px;
  background: rgba(16, 37, 68, 0.03);
  border-left: 3px solid #b74233;
  border-radius: 4px;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .federation-intro__note {
    font-size: 15px;
    padding: 20px 24px;
    margin-bottom: 40px;
  }
}

.federation-intro__note--demo {
  border-left-color: #b74233;
}

.federation-intro__list {
  border-top: 2px solid #102544;
}

.federation-intro__item {
  display: flex;
  flex-direction: column;
  padding: 24px 0;
  border-bottom: 1px solid rgba(16, 37, 68, 0.1);
}
@media screen and (min-width: 768px) {
  .federation-intro__item {
    flex-direction: row;
    padding: 28px 0;
  }
}

.federation-intro__term {
  font-size: 15px;
  font-weight: 700;
  color: #102544;
  margin-bottom: 12px;
  min-width: 140px;
}
@media screen and (min-width: 768px) {
  .federation-intro__term {
    font-size: 16px;
    margin-bottom: 0;
    min-width: 160px;
  }
}

.federation-intro__desc {
  font-size: 15px;
  line-height: 1.9;
  color: #222222;
}
@media screen and (min-width: 768px) {
  .federation-intro__desc {
    font-size: 16px;
    line-height: 2;
    flex: 1;
  }
}

.federation-greeting {
  padding: 60px 0;
  background: #faf8f5;
}
@media screen and (min-width: 768px) {
  .federation-greeting {
    padding: 80px 0;
  }
}

.federation-greeting__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .federation-greeting__inner {
    padding: 0 40px;
  }
}

.federation-greeting__note {
  font-size: 14px;
  line-height: 1.8;
  color: #555555;
  padding: 16px 20px;
  background: #fff;
  border-left: 3px solid #b74233;
  border-radius: 4px;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .federation-greeting__note {
    font-size: 15px;
    padding: 20px 24px;
    margin-bottom: 40px;
  }
}

.federation-greeting__body {
  background: #fff;
  padding: 32px 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
@media screen and (min-width: 768px) {
  .federation-greeting__body {
    padding: 48px 56px;
    border-radius: 12px;
  }
}

.federation-greeting__text {
  font-size: 15px;
  line-height: 2;
  color: #222222;
  margin-bottom: 24px;
  text-indent: 1em;
}
.federation-greeting__text:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .federation-greeting__text {
    font-size: 16px;
    line-height: 2.1;
    margin-bottom: 28px;
  }
}

.federation-greeting__signature {
  font-size: 15px;
  line-height: 1.8;
  color: #222222;
  text-align: right;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(16, 37, 68, 0.1);
}
@media screen and (min-width: 768px) {
  .federation-greeting__signature {
    font-size: 16px;
    margin-top: 48px;
    padding-top: 40px;
  }
}

.federation-outline {
  padding: 60px 0;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .federation-outline {
    padding: 80px 0;
  }
}

.federation-outline__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .federation-outline__inner {
    padding: 0 40px;
  }
}

.federation-outline__content {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .federation-outline__content {
    margin-top: 48px;
  }
}

.federation-outline__note {
  font-size: 14px;
  line-height: 1.8;
  color: #555555;
  padding: 16px 20px;
  background: rgba(16, 37, 68, 0.03);
  border-left: 3px solid #b74233;
  border-radius: 4px;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .federation-outline__note {
    font-size: 15px;
    padding: 20px 24px;
    margin-bottom: 40px;
  }
}

.federation-outline__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.federation-outline__table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 2px solid #102544;
}
.federation-outline__table th,
.federation-outline__table td {
  padding: 16px 20px;
  font-size: 15px;
  line-height: 1.8;
  text-align: left;
  border-bottom: 1px solid rgba(16, 37, 68, 0.1);
}
@media screen and (min-width: 768px) {
  .federation-outline__table th,
  .federation-outline__table td {
    padding: 20px 24px;
    font-size: 16px;
    line-height: 1.9;
  }
}
.federation-outline__table th {
  font-weight: 700;
  color: #fff;
  background: #102544;
  width: 140px;
  vertical-align: top;
}
@media screen and (min-width: 768px) {
  .federation-outline__table th {
    width: 180px;
  }
}
.federation-outline__table td {
  color: #222222;
  background: #fff;
}
.federation-outline__table tr:last-child th,
.federation-outline__table tr:last-child td {
  border-bottom: none;
}

.federation-outline__activities {
  list-style-position: inside;
  padding-left: 0;
}
.federation-outline__activities li {
  margin-bottom: 8px;
  line-height: 1.8;
}
.federation-outline__activities li:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .federation-outline__activities li {
    line-height: 1.9;
  }
}

.federation-officers {
  padding: 60px 0;
  background: #faf8f5;
}
@media screen and (min-width: 768px) {
  .federation-officers {
    padding: 80px 0;
  }
}

.federation-officers__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .federation-officers__inner {
    padding: 0 40px;
  }
}

.federation-officers__content {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .federation-officers__content {
    margin-top: 48px;
  }
}

.federation-officers__note {
  font-size: 14px;
  line-height: 1.8;
  color: #555555;
  padding: 16px 20px;
  background: #fff;
  border-left: 3px solid #b74233;
  border-radius: 4px;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .federation-officers__note {
    font-size: 15px;
    padding: 20px 24px;
    margin-bottom: 40px;
  }
}

.federation-officers__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.federation-officers__table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  background: #fff;
}
.federation-officers__table thead {
  background: #102544;
  color: #fff;
}
.federation-officers__table thead th {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  border-bottom: 2px solid rgb(11.1428571429, 25.7678571429, 47.3571428571);
}
@media screen and (min-width: 768px) {
  .federation-officers__table thead th {
    padding: 18px 24px;
    font-size: 16px;
  }
}
.federation-officers__table tbody tr {
  border-bottom: 1px solid rgba(16, 37, 68, 0.1);
}
.federation-officers__table tbody tr:last-child {
  border-bottom: none;
}
.federation-officers__table tbody tr:nth-child(even) {
  background: rgba(16, 37, 68, 0.02);
}
.federation-officers__table tbody td {
  padding: 16px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: #222222;
}
@media screen and (min-width: 768px) {
  .federation-officers__table tbody td {
    padding: 18px 24px;
    font-size: 16px;
  }
}
.federation-officers__table tbody td:first-child {
  font-weight: 600;
  color: #102544;
}

.federation-officers__hint {
  font-size: 14px;
  line-height: 1.8;
  color: #555555;
  margin-top: 24px;
  padding: 16px 20px;
  background: #fff;
  border-radius: 4px;
}
@media screen and (min-width: 768px) {
  .federation-officers__hint {
    font-size: 15px;
    margin-top: 28px;
    padding: 20px 24px;
  }
}

.federation-office {
  padding: 60px 0;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .federation-office {
    padding: 80px 0;
  }
}

.federation-office__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .federation-office__inner {
    padding: 0 40px;
  }
}

.federation-office__content {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .federation-office__content {
    margin-top: 48px;
  }
}

.federation-office__note {
  font-size: 14px;
  line-height: 1.8;
  color: #555555;
  padding: 16px 20px;
  background: rgba(16, 37, 68, 0.03);
  border-left: 3px solid #b74233;
  border-radius: 4px;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .federation-office__note {
    font-size: 15px;
    padding: 20px 24px;
    margin-bottom: 40px;
  }
}

.federation-office__list {
  border-top: 2px solid #102544;
}

.federation-office__item {
  display: flex;
  flex-direction: column;
  padding: 24px 0;
  border-bottom: 1px solid rgba(16, 37, 68, 0.1);
}
@media screen and (min-width: 768px) {
  .federation-office__item {
    flex-direction: row;
    padding: 28px 0;
  }
}

.federation-office__term {
  font-size: 15px;
  font-weight: 700;
  color: #102544;
  margin-bottom: 12px;
  min-width: 140px;
}
@media screen and (min-width: 768px) {
  .federation-office__term {
    font-size: 16px;
    margin-bottom: 0;
    min-width: 160px;
  }
}

.federation-office__desc {
  font-size: 15px;
  line-height: 1.9;
  color: #222222;
}
@media screen and (min-width: 768px) {
  .federation-office__desc {
    font-size: 16px;
    line-height: 2;
    flex: 1;
  }
}

.section__head {
  font-size: 24px;
  font-weight: 700;
  color: #102544;
  text-align: center;
  line-height: 1.5;
  padding-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .section__head {
    font-size: 28px;
    padding-bottom: 20px;
  }
}

@media print {
  .header,
  .drawer,
  .mask,
  .breadcrumb,
  .footer {
    display: none;
  }
  .federation-intro__note--demo,
  .federation-greeting__note,
  .federation-outline__note,
  .federation-officers__note,
  .federation-office__note {
    border-left-color: #999;
  }
  .federation-outline__table,
  .federation-officers__table {
    border: 1px solid #333;
  }
  .page-main {
    background: #fff;
  }
}
.federation-greeting {
  padding: 60px 0;
  background: #faf8f5;
}
@media screen and (min-width: 768px) {
  .federation-greeting {
    padding: 80px 0;
  }
}

.federation-greeting__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .federation-greeting__inner {
    padding: 0 40px;
  }
}

.federation-greeting__content {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .federation-greeting__content {
    margin-top: 48px;
  }
}

.federation-greeting__note {
  font-size: 14px;
  line-height: 1.8;
  color: #555555;
  padding: 16px 20px;
  background: #fff;
  border-left: 3px solid #b74233;
  border-radius: 4px;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .federation-greeting__note {
    font-size: 15px;
    padding: 20px 24px;
    margin-bottom: 40px;
  }
}

.federation-greeting__body {
  background: #fff;
  padding: 32px 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
@media screen and (min-width: 768px) {
  .federation-greeting__body {
    display: flex;
    gap: 40px;
    padding: 48px 56px;
    border-radius: 12px;
  }
}
@media screen and (min-width: 900px) {
  .federation-greeting__body {
    gap: 48px;
  }
}

.federation-greeting__photo {
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .federation-greeting__photo {
    flex-shrink: 0;
    width: 200px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 900px) {
  .federation-greeting__photo {
    width: 240px;
  }
}

.federation-greeting__figure {
  margin: 0;
}

.federation-greeting__image {
  width: 100%;
  max-width: 240px;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  border: 3px solid #102544;
  margin: 0 auto;
  display: block;
}
@media screen and (min-width: 768px) {
  .federation-greeting__image {
    max-width: 100%;
  }
}

.federation-greeting__caption {
  font-size: 12px;
  line-height: 1.6;
  color: #555555;
  text-align: center;
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .federation-greeting__caption {
    font-size: 13px;
    margin-top: 14px;
  }
}

.federation-greeting__text-area {
  flex: 1;
}

.federation-greeting__text {
  font-size: 15px;
  line-height: 2;
  color: #222222;
  margin-bottom: 24px;
  text-indent: 1em;
}
.federation-greeting__text:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .federation-greeting__text {
    font-size: 16px;
    line-height: 2.1;
    margin-bottom: 28px;
  }
}

.federation-greeting__signature {
  font-size: 15px;
  line-height: 1.8;
  color: #222222;
  text-align: right;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(16, 37, 68, 0.1);
}
@media screen and (min-width: 768px) {
  .federation-greeting__signature {
    font-size: 16px;
    margin-top: 48px;
    padding-top: 40px;
  }
}

@media (min-width: 600px) and (max-width: 767px) {
  .federation-greeting__photo {
    width: 180px;
    margin: 0 auto 32px;
  }
  .federation-greeting__image {
    max-width: 180px;
  }
}
@media (max-width: 599px) {
  .federation-greeting__body {
    padding: 24px 20px;
  }
  .federation-greeting__photo {
    margin-bottom: 24px;
  }
  .federation-greeting__image {
    max-width: 200px;
  }
  .federation-greeting__text {
    font-size: 14px;
    line-height: 1.9;
  }
}
@media print {
  .federation-greeting__image {
    border-color: #333;
    max-width: 180px;
  }
  .federation-greeting__caption {
    display: none;
  }
  .federation-greeting__body {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}
.federation-outline__lead {
  font-size: 16px;
  line-height: 2;
  color: #222222;
  margin-bottom: 32px;
  padding: 24px;
  background: #faf8f5;
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .federation-outline__lead {
    font-size: 17px;
    line-height: 2.1;
    margin-bottom: 40px;
    padding: 32px 40px;
  }
}

.page-main {
  background: #fff;
}

.privacy {
  padding: 60px 0 80px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .privacy {
    padding: 80px 0 100px;
  }
}

.privacy__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .privacy__inner {
    padding: 0 40px;
  }
}

.privacy__content {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .privacy__content {
    margin-top: 48px;
  }
}

.privacy__note {
  font-size: 14px;
  line-height: 1.8;
  color: #555555;
  padding: 16px 20px;
  background: rgba(16, 37, 68, 0.03);
  border-left: 3px solid #b74233;
  border-radius: 4px;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .privacy__note {
    font-size: 15px;
    padding: 20px 24px;
    margin-bottom: 40px;
  }
}

.privacy__lead {
  font-size: 16px;
  line-height: 2;
  color: #222222;
  padding: 24px;
  background: #faf8f5;
  border-radius: 8px;
  margin-bottom: 40px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .privacy__lead {
    font-size: 17px;
    line-height: 2.1;
    padding: 32px 40px;
    margin-bottom: 48px;
  }
}

.privacy__list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: privacy-counter;
}

.privacy__item {
  background: #fff;
  padding: 28px 24px;
  margin-bottom: 24px;
  border: 2px solid rgba(16, 37, 68, 0.1);
  border-radius: 8px;
  transition: border-color 0.3s ease;
}
.privacy__item:last-child {
  margin-bottom: 0;
}
.privacy__item:hover {
  border-color: rgba(16, 37, 68, 0.2);
}
@media screen and (min-width: 768px) {
  .privacy__item {
    padding: 36px 40px;
    margin-bottom: 28px;
    border-radius: 10px;
  }
}

.privacy__subheading {
  font-size: 18px;
  font-weight: 700;
  color: #102544;
  margin-bottom: 16px;
  line-height: 1.5;
  padding-bottom: 12px;
  border-bottom: 2px solid #102544;
}
@media screen and (min-width: 768px) {
  .privacy__subheading {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 14px;
  }
}

.privacy__text {
  font-size: 15px;
  line-height: 2;
  color: #222222;
}
@media screen and (min-width: 768px) {
  .privacy__text {
    font-size: 16px;
    line-height: 2.1;
  }
}

.privacy__item--numbered {
  position: relative;
  padding-left: 60px;
}
@media screen and (min-width: 768px) {
  .privacy__item--numbered {
    padding-left: 80px;
  }
}
.privacy__item--numbered::before {
  content: counter(privacy-counter);
  counter-increment: privacy-counter;
  position: absolute;
  left: 20px;
  top: 28px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background: #102544;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .privacy__item--numbered::before {
    left: 24px;
    top: 36px;
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}
.privacy__item--numbered .privacy__subheading {
  border-bottom: none;
  padding-bottom: 0;
}

@media (max-width: 599px) {
  .privacy__lead {
    font-size: 15px;
    line-height: 1.9;
    padding: 20px;
  }
  .privacy__item {
    padding: 24px 20px;
  }
  .privacy__subheading {
    font-size: 17px;
  }
  .privacy__text {
    font-size: 14px;
    line-height: 1.9;
  }
}
@media print {
  .privacy {
    background: #fff;
  }
  .privacy__note {
    border-left-color: #999;
  }
  .privacy__lead {
    background: #f5f5f5;
  }
  .privacy__item {
    border: 1px solid #333;
    page-break-inside: avoid;
    margin-bottom: 20px;
  }
  .privacy__subheading {
    border-bottom-color: #333;
  }
}
.privacy__item:focus-within {
  outline: 2px solid #102544;
  outline-offset: 2px;
}

body.is-menu-open {
  overflow: hidden;
}

.header.is-scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}