@charset "UTF-8";
:root {
  --primary: #FF9E00;
  --secondary: #FFF8E1;
  --accent: #FFD60A;
  --background: #FFFFFF;
  --surface: #FFFFFF;
  --text: #333333;
  --text-light: #666666;
  --contrast-blue: #00A8E8;
  --contrast-teal: #00CEC9;
  --contrast-purple: #A56EFF;
  --contrast-pink: #FF6B9D;
  --contrast-green: #00D9A3;
  --border-radius: 1.5rem;
  --shadow: 0 6px 15px rgba(255, 158, 0, 0.06);
  --shadow-colorful: 0 8px 25px rgba(0, 168, 232, 0.15);
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  color: #333333;
  background: #FFFFFF;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@-webkit-keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-20px) rotate(5deg);
            transform: translateY(-20px) rotate(5deg);
  }
}
@keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-20px) rotate(5deg);
            transform: translateY(-20px) rotate(5deg);
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  z-index: 1000;
  padding: 1.2rem 0;
  -webkit-box-shadow: 0 6px 15px rgba(255, 158, 0, 0.06);
          box-shadow: 0 6px 15px rgba(255, 158, 0, 0.06);
}

.header__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}

.header__logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333333;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  width: 250px;
}
.header__logo-img {
  width: 100%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.header__logo:hover .header__logo-img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.header__logo-icon {
  width: 40px;
  height: 40px;
  background: #FF9E00;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 1.2rem;
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header__nav a {
  color: #333333;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}
.header__nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: #FF9E00;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
  border-radius: 2px;
}
.header__nav a:hover {
  color: #FF9E00;
}
.header__nav a:hover::after {
  width: 100%;
}

.header__cta {
  background: #FF9E00;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 3rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 2px 10px rgba(255, 158, 0, 0.2);
          box-shadow: 0 2px 10px rgba(255, 158, 0, 0.2);
  white-space: nowrap;
}
.header__cta:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 15px rgba(255, 158, 0, 0.3);
          box-shadow: 0 4px 15px rgba(255, 158, 0, 0.3);
  background: #FF8800;
}

.breadcrumb {
  background: #F5F5F5;
  padding: 1rem 2rem;
}
.breadcrumb__content {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.875rem;
  color: #666666;
}
.breadcrumb__content a {
  color: #666666;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.breadcrumb__content a:hover {
  color: #FF9E00;
}
.breadcrumb__separator {
  margin: 0 0.5rem;
  color: #999;
}

@media (max-width: 968px) {
  .header__content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .header__nav {
    display: none;
  }
  .header__cta {
    display: none;
  }
  .header__logo {
    font-size: 1.2rem;
  }
}
@media (max-width: 640px) {
  .header__logo {
    font-size: 1rem;
  }
  .header__logo span {
    display: none;
  }
  .header__cta {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
  }
}

/* Hamburger button */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.hamburger__line {
  display: block;
  width: 24px;
  height: 2px;
  background: #2C3E50;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hamburger.is-open .hamburger__line:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
          transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.is-open .hamburger__line:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open .hamburger__line:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(5px, -5px);
          transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile navigation overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 999;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 2rem;
  overflow-y: auto;
}
.mobile-nav.is-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mobile-nav__links {
  list-style: none;
  width: 100%;
  margin-bottom: 2rem;
}
.mobile-nav__links li {
  border-bottom: 1px solid #eeeeee;
}
.mobile-nav__links a {
  display: block;
  padding: 1.2rem 0;
  color: #333333;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
}
.mobile-nav__links a:hover {
  color: #FF9E00;
}
.mobile-nav__cta {
  display: inline-block;
  width: 100%;
  padding: 1rem 2rem;
  background: #FF9E00;
  color: white;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 3rem;
  -webkit-box-shadow: 0 4px 15px rgba(255, 158, 0, 0.3);
          box-shadow: 0 4px 15px rgba(255, 158, 0, 0.3);
}

@media (max-width: 968px) {
  .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/* sp-br: mobile-only line break */
.sp-br {
  display: none;
}

/* pc-dot: PC only inline element (hidden on SP) */
.pc-dot {
  display: inline;
}

footer {
  background: #2C3E50;
  color: white;
  padding: 4rem 2rem 2rem;
}
@media (max-width: 640px) {
  footer {
    padding: 2rem 1.5rem 1.5rem;
  }
  .footer__section:last-child {
    padding-left: 0;
  }
}

.footer__content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__section:last-child {
  padding-left: 10rem;
}
.footer__section h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #FF9E00;
}
.footer__section p {
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.footer__logo {
  width: 250px;
}

.footer__links {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}
.footer__links li {
  margin-bottom: 0;
}
.footer__links a {
  color: white;
  text-decoration: none;
  opacity: 0.9;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer__links a:hover {
  opacity: 1;
  color: #FF9E00;
  padding-left: 5px;
}

.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  opacity: 0.7;
}

.page-title {
  background: linear-gradient(135deg, #FF9E00 0%, #FF8800 100%);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
}
.page-title__content h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.page-title__content p {
  font-size: 1.2rem;
  font-weight: 500;
  opacity: 0.9;
}
@media (max-width: 968px) {
  .page-title__content h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 640px) {
  .page-title {
    padding: 3rem 1.5rem;
  }
  .page-title__content h1 {
    font-size: 2rem;
  }
  .page-title__content p {
    font-size: 1rem;
  }
}

.btn-primary {
  background: #FF9E00;
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 3rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-block;
  -webkit-box-shadow: 0 4px 15px rgba(255, 158, 0, 0.3);
          box-shadow: 0 4px 15px rgba(255, 158, 0, 0.3);
}
.btn-primary:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 25px rgba(255, 158, 0, 0.4);
          box-shadow: 0 8px 25px rgba(255, 158, 0, 0.4);
  background: #FF8800;
  color: white;
}

.btn-secondary {
  background: white;
  color: #333333;
  padding: 1.2rem 3rem;
  border-radius: 3rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid #E0E0E0;
  display: inline-block;
}
.btn-secondary:hover {
  border-color: #FF9E00;
  color: #FF9E00;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white {
  background: white;
  color: #FF9E00;
  padding: 1.2rem 5rem;
  border-radius: 3rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: inline-block;
}
.btn-white:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
          box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  background: #FFF8E1;
  color: #FF9E00;
}

.btn-outline {
  background: transparent;
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 3rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid white;
  display: inline-block;
}
.btn-outline:hover {
  background: white;
  color: #FF9E00;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.form__group {
  margin-bottom: 2rem;
}

.form__label {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 0.75rem;
}

.form__description {
  font-size: 0.9rem;
  color: #666666;
  margin-bottom: 0.75rem;
  margin-top: -0.5rem;
}

.form__required {
  display: inline-block;
  background: #FF9E00;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  margin-left: 0.5rem;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid #E0E0E0;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-family: "Zen Maru Gothic", sans-serif;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: white;
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: #FF9E00;
  -webkit-box-shadow: 0 0 0 3px rgba(255, 158, 0, 0.1);
          box-shadow: 0 0 0 3px rgba(255, 158, 0, 0.1);
}

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

.form__select {
  -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='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232C3E50' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 12px;
  padding-right: 3rem;
  cursor: pointer;
}

.form__submit {
  margin-top: 3rem;
  text-align: center;
}

.form__btn-submit {
  background: linear-gradient(135deg, #FF9E00 0%, #FF8800 100%);
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 1.25rem 4rem;
  border: none;
  border-radius: 3rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 4px 15px rgba(255, 158, 0, 0.3);
          box-shadow: 0 4px 15px rgba(255, 158, 0, 0.3);
  font-family: "Zen Maru Gothic", sans-serif;
}
.form__btn-submit:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 25px rgba(255, 158, 0, 0.4);
          box-shadow: 0 8px 25px rgba(255, 158, 0, 0.4);
}
.form__btn-submit:active {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.form__notes {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #F5F5F5;
  border-radius: 0.75rem;
}
.form__notes p {
  font-size: 0.9rem;
  color: #666666;
  line-height: 1.8;
  margin: 0.5rem 0;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  padding: 0.75rem 1rem;
  border: 2px solid #E0E0E0;
  border-radius: 0.75rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: white;
}
.checkbox-label:hover {
  border-color: #FF9E00;
  background: rgba(255, 158, 0, 0.05);
}
.checkbox-label input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin-right: 0.75rem;
  cursor: pointer;
  accent-color: #FF9E00;
}
.checkbox-label span {
  font-size: 0.95rem;
  color: #2C3E50;
}

@media (max-width: 640px) {
  .checkbox-group {
    grid-template-columns: 1fr;
  }
  .form__btn-submit {
    width: 100%;
    font-size: 1.1rem;
    padding: 1.1rem 2rem;
  }
  .form__notes {
    padding: 1rem;
  }
  .form__notes p {
    font-size: 0.85rem;
  }
}
.hero {
  margin-top: 0;
  min-height: 50vh;
  background-image: url("../images/mv.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  overflow: hidden;
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.85)), color-stop(50%, rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.3) 100%);
  z-index: 1;
}
.hero__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5.5rem 2rem 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero__left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 800px;
}
.hero__badge {
  display: inline-block;
  background: rgba(255, 158, 0, 0.15);
  color: #FF9E00;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
}
.hero__title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}
.hero__title .highlight {
  color: #FF9E00;
  position: relative;
  display: inline;
}
.hero__subtitle {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  padding-left: 1rem;
  border-left: 4px solid #FF9E00;
}
.hero__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.hero__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  min-width: 280px;
}

.btn-primary-hero {
  background: #FF9E00;
  color: white;
  padding: 1.2rem 5rem;
  border-radius: 3rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 4px 15px rgba(255, 158, 0, 0.3);
          box-shadow: 0 4px 15px rgba(255, 158, 0, 0.3);
  display: inline-block;
}
.btn-primary-hero:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 25px rgba(255, 158, 0, 0.4);
          box-shadow: 0 8px 25px rgba(255, 158, 0, 0.4);
  background: #FF8800;
  color: white;
}

.btn-secondary-hero {
  background: white;
  color: #333333;
  padding: 1.2rem 2.5rem;
  border-radius: 3rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid #ddd;
  display: inline-block;
}
.btn-secondary-hero:hover {
  border-color: #FF9E00;
  color: #FF9E00;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-card {
  background: white;
  padding: 2rem;
  border-radius: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.stat-card:nth-child(1) {
  border-left: 4px solid #FF9E00;
}
.stat-card:nth-child(2) {
  border-left: 4px solid #00D9A3;
}
.stat-card:nth-child(3) {
  border-left: 4px solid #00A8E8;
}
.stat-card:hover {
  -webkit-transform: translateX(-5px);
          transform: translateX(-5px);
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stat__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}

.stat__label {
  font-size: 0.85rem;
  color: #333333;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}
.stat__label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: #FF9E00;
  border-radius: 2px;
}

.stat-orange .stat__label::after {
  background: #FF9E00;
}

.stat-green .stat__label::after {
  background: #00D9A3;
}

.stat-blue .stat__label::after {
  background: #00A8E8;
}

.stat__number {
  font-size: 2.2rem;
  font-weight: 900;
  color: #333333;
}

.challenge-solution-section {
  padding: 6rem 2rem;
  background: #F5F5EB;
}

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

.challenge-solution__title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #333333;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 4rem;
  position: relative;
  display: inline-block;
  width: 100%;
}
.challenge-solution__title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #FF9E00;
}

.challenge-solution__subtitle {
  text-align: center;
  color: #666666;
  font-size: 1.125rem;
  margin-bottom: 4rem;
  margin-top: -2.5rem;
}
.challenge-solution__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.challenge-solution__cta {
  text-align: center;
  margin-top: 3rem;
}

.challenge-solution__card {
  background: #FFF8E1;
  border-radius: 2rem;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 3px solid #FFE0A3;
}

.challenge__part {
  padding: 2rem 1.5rem 1.5rem;
  background: white;
  position: relative;
  min-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.challenge__number {
  position: static;
  margin: 0 auto 1rem;
  width: 50px;
  height: 50px;
  background: #FFD60A;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: #333333;
  -webkit-box-shadow: 0 2px 10px rgba(255, 214, 10, 0.3);
          box-shadow: 0 2px 10px rgba(255, 214, 10, 0.3);
}

.challenge__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333333;
  text-align: center;
  margin: 0.5rem 0 1.5rem;
  line-height: 1.6;
}

.challenge__image {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.challenge__image-item {
  width: 100%;
}

.solution__part {
  padding: 1.5rem 1.5rem 2rem;
  background: #FFF8E1;
}

.solution__text {
  font-size: 1rem;
  color: #333333;
  line-height: 1.8;
  font-weight: 400;
  margin: 0;
}

.gem-badge-outside {
  text-align: center;
  padding: 3rem 1rem;
}

.gem-badge__decoration {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
}

.gem-badge__text-small {
  font-size: 1rem;
  font-weight: 700;
  color: #555555;
  letter-spacing: 0.03em;
  margin: 0 0 0.5rem;
}
.gem-badge__text-large {
  font-size: 2rem;
  font-weight: 900;
  color: #FF9E00;
  letter-spacing: 0.03em;
  margin: 0;
  position: relative;
  padding-bottom: 0.5rem;
}
.gem-badge__text-large::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#FF9E00), to(transparent));
  background: linear-gradient(90deg, transparent, #FF9E00, transparent);
  border-radius: 2px;
}

.services {
  padding: 6rem 2rem;
  background: white;
}
.services__container {
  max-width: 1200px;
  margin: 0 auto;
}
.services__header {
  text-align: center;
  margin-bottom: 4rem;
}
.services__title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #333333;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  width: 100%;
}
.services__title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #FF9E00;
}
.services__subtitle {
  font-size: 1.125rem;
  color: #666666;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.service-card {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid #F0F0F0;
}
.service-card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
          box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: #FF9E00;
}

.service-card__image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #F5F5F5;
}
.service-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.service-card__content {
  padding: 2rem;
}

.service-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.service-card__description {
  font-size: 1rem;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-card__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FF9E00;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 1rem;
}
.service-card__link:hover {
  color: #FF8800;
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.service-card__link:hover .service-card__link-icon {
  background: #FF8800;
}
.service-card__link-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  background: #FF9E00;
  border-radius: 50%;
  margin-left: 0.4rem;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  position: relative;
}
.service-card__link-icon::before {
  content: "";
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  border-top: 2px solid white;
  border-right: 2px solid white;
  border-radius: 1px;
  -webkit-transform: rotate(45deg) translateX(-1px);
          transform: rotate(45deg) translateX(-1px);
}

.column-section {
  padding: 6rem 2rem;
  background: white;
}
.column-section__container {
  max-width: 1200px;
  margin: 0 auto;
}
.column-section__header {
  text-align: center;
  margin-bottom: 4rem;
}
.column-section__title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #333333;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  width: 100%;
}
.column-section__title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #FF9E00;
}
.column-section__subtitle {
  font-size: 1.125rem;
  color: #666666;
}
.column-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.column-section__cta {
  text-align: center;
  margin-top: 3rem;
}

.column-card {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid #F0F0F0;
  text-decoration: none;
  color: inherit;
  display: block;
}
.column-card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
          box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: #FF9E00;
}

.column-card__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #F5F5F5;
  position: relative;
}

.column-card__image-item {
  width: 100%;
}

.column-card__category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #FF9E00;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 10;
}

.column-card__content {
  padding: 2rem;
}

.column-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.column-card__description {
  font-size: 1rem;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.column-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

.column-card__date {
  font-size: 0.875rem;
  color: #666666;
  font-weight: 600;
}

.btn-column-list {
  display: inline-block;
  padding: 1rem 5rem;
  background: #FF9E00;
  color: white;
  border: 2px solid #FF9E00;
  border-radius: 3rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-column-list:hover {
  background: #FF8800;
  color: white;
  border-color: #FF8800;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 15px rgba(255, 158, 0, 0.3);
          box-shadow: 0 4px 15px rgba(255, 158, 0, 0.3);
}

.services__cta {
  text-align: center;
  margin-top: 3rem;
}

/* International Schools Section */
.schools-section {
  padding: 6rem 2rem;
  background: #f8f9fa;
}
.schools-section__container {
  max-width: 1200px;
  margin: 0 auto;
}
.schools-section__header {
  text-align: center;
  margin-bottom: 3rem;
}
.schools-section__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
  width: 100%;
}
.schools-section__title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #FF9E00;
}

.schools-section__subtitle {
  color: #666666;
  font-size: 1.125rem;
}
.schools-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.school-intro-card {
  display: block;
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.school-intro-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.school-intro-card__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.school-intro-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.school-intro-card__image.is-logo img {
  -o-object-fit: contain;
     object-fit: contain;
}
.school-intro-card__content {
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.school-intro-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.75rem;
}
.school-intro-card__area {
  font-size: 0.875rem;
  color: #666;
}
.school-intro-card__curriculum {
  font-size: 0.875rem;
  background: #FFF3CD;
  color: #856404;
  padding: 0.15rem 0.5rem;
  border-radius: 0.25rem;
  font-weight: 600;
}
.school-intro-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.school-intro-card__description {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.school-intro-card__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: center;
      align-self: center;
  color: #FF9E00;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 1rem;
}
.school-intro-card__btn:hover {
  color: #FF8800;
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.schools-section__cta {
  text-align: center;
  margin-top: 3rem;
}

.latest-news {
  padding: 6rem 2rem;
  background: #FAFAFA;
}
.latest-news__container {
  max-width: 1000px;
  margin: 0 auto;
}
.latest-news__title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #333333;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  width: 100%;
}
.latest-news__title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #FF9E00;
}
.latest-news__subtitle {
  text-align: center;
  color: #666666;
  font-size: 1.125rem;
  margin-bottom: 3rem;
}
.latest-news__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  margin-bottom: 3rem;
}
.latest-news__item {
  display: grid;
  grid-template-columns: 80px auto 1fr;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #E0E0E0;
  text-decoration: none;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.latest-news__item:hover {
  background: #FFF8F0;
}
.latest-news__item--no-link {
  cursor: default;
}
.latest-news__item--no-link:hover {
  background: transparent;
}
.latest-news__date {
  font-size: 1rem;
  color: #333333;
  font-weight: 600;
}
.latest-news__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 28px;
  padding: 0 0.9rem;
  background: #FF9E00;
  color: white;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
}
.latest-news__text {
  font-size: 1rem;
  font-weight: 600;
  color: #333333;
  line-height: 1.6;
}
.latest-news__cta {
  text-align: center;
  margin-top: 3rem;
}
.latest-news__button {
  display: inline-block;
  padding: 1rem 5rem;
  background: #FF9E00;
  color: white;
  border: 2px solid #FF9E00;
  border-radius: 3rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.latest-news__button:hover {
  background: #FF8800;
  color: white;
  border-color: #FF8800;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 15px rgba(255, 158, 0, 0.3);
          box-shadow: 0 4px 15px rgba(255, 158, 0, 0.3);
}

.cta-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #FF9E00 0%, #FF8800 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255, 214, 10, 0.2);
  border-radius: 50%;
  -webkit-animation: float 15s ease-in-out infinite;
          animation: float 15s ease-in-out infinite;
}
.cta-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite reverse;
}

.cta-section__content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-section__content h2 {
  font-size: 3rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.cta-section__content p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-section__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 968px) {
  .hero__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
  }
  .hero__left {
    max-width: 100%;
  }
  .hero__title {
    font-size: 2.5rem;
  }
  .hero__right {
    width: 100%;
    max-width: 400px;
  }
  .challenge-solution__title {
    font-size: 1.8rem;
  }
  .challenge-solution__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .challenge__part {
    min-height: 280px;
    padding: 2rem 1.5rem 1.5rem;
  }
  .challenge__title {
    padding-top: 2rem;
  }
  .solution__part {
    padding: 1.2rem 1.5rem 1.8rem;
  }
  .gem-badge__decoration {
    gap: 0;
  }
  .gem-badge__text-large {
    font-size: 1.6rem;
  }
  .services__grid,
  .column-section__grid,
  .schools-section__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .service-card__image {
    height: 200px;
  }
  .column-card__image {
    height: 180px;
  }
  .latest-news__item {
    grid-template-columns: 80px auto 1fr;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
  }
}
@media (max-width: 640px) {
  .hero {
    background-position: 97%;
  }
  .hero__left {
    text-align: left;
  }
  .hero__title {
    font-size: 2rem;
    margin-bottom: 12rem;
  }
  .hero__subtitle {
    font-size: 1rem;
  }
  .hero__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .btn-primary-hero,
  .btn-secondary-hero {
    width: 100%;
    text-align: center;
  }
  .challenge-solution__title {
    font-size: 1.875rem;
  }
  .challenge__part {
    padding: 1.5rem 1rem 1.2rem;
    min-height: 240px;
  }
  .challenge__number {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .challenge__title {
    font-size: 1.125rem;
    margin-top: 0.25rem;
    padding-top: 0;
  }
  .solution__part {
    padding: 1rem 1rem 1.5rem;
  }
  .solution__text {
    font-size: 1rem;
  }
  .gem-badge-outside {
    padding: 2rem 0.5rem;
  }
  .gem-badge__decoration {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
  .gem-badge__text-large {
    font-size: 1.3rem;
  }
  .services__title,
  .column-section__title {
    position: relative;
    display: inline-block;
  }
  .services__title::after,
  .column-section__title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #FF9E00;
  }
  .services__title,
  .column-section__title {
    font-size: 1.875rem;
  }
  .services__subtitle,
  .column-section__subtitle {
    font-size: 1.125rem;
  }
  .service-card__image {
    height: 180px;
  }
  .service-card__content {
    padding: 1.5rem;
  }
  .service-card__title {
    font-size: 1.25rem;
    text-align: center;
  }
  .column-card__image {
    height: 160px;
  }
  .column-card__title {
    font-size: 1.125rem;
  }
  .column-card__description {
    font-size: 1rem;
  }
  .btn-column-list,
  .latest-news__button {
    width: 100%;
    padding: 1rem 2rem;
    text-align: center;
  }
  .challenge-solution-section,
  .services,
  .column-section,
  .latest-news,
  .cta-section {
    padding: 4rem 1.5rem;
  }
  .hero__content {
    padding: 2rem 1.5rem 2.5rem;
  }
  .cta-section__content h2 {
    font-size: 1.5rem;
  }
  .btn-primary-hero,
  .btn-secondary-hero,
  .btn-white,
  .btn-outline,
  .btn-column-list {
    font-size: 1.125rem;
  }
  .btn-white,
  .btn-outline {
    width: 100%;
    text-align: center;
  }
  .stat-card {
    padding: 1.2rem 1.5rem;
  }
  .latest-news__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem;
  }
  .latest-news__text {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    font-size: 1.125rem;
  }
  .schools-section__title {
    font-size: 1.875rem;
  }
  .latest-news__title {
    font-size: 1.875rem;
  }
  .footer__section:last-child {
    padding-left: 0;
  }
  .sp-br {
    display: block;
  }
}
body {
  padding-top: 80px;
}

.search-section {
  padding: 3rem 2rem;
  background: white;
  border-bottom: 1px solid #E0E0E0;
}

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

.search__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 2rem;
  text-align: center;
}

.search__form {
  background: #FAFAFA;
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 2px solid #F0F0F0;
}

.search__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.search__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
.search__field label {
  font-size: 1rem;
  font-weight: 700;
  color: #333333;
}
.search__field select {
  padding: 1rem 2.5rem 1rem 1rem;
  border: 2px solid #E0E0E0;
  border-radius: 0.5rem;
  font-size: 1rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: "Zen Maru Gothic", sans-serif;
  background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333333' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 1rem center;
  color: #333333;
  -webkit-text-fill-color: #333333;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.search__field select:focus {
  outline: none;
  border-color: #FF9E00;
}

.btn-search {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  display: block;
  padding: 1.2rem;
  background: #FF9E00;
  color: white;
  border: none;
  border-radius: 3rem;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-search:hover {
  background: #FF8800;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 15px rgba(255, 158, 0, 0.3);
          box-shadow: 0 4px 15px rgba(255, 158, 0, 0.3);
}

.schools-list-section {
  padding: 4rem 2rem;
  background: #FAFAFA;
}

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

.schools__header {
  margin-bottom: 2rem;
}

.schools__count {
  font-size: 1rem;
  color: #666666;
}
.schools__count span {
  font-weight: 700;
  color: #FF9E00;
}

.schools__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.school-card {
  background: white;
  border-radius: 2rem;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.school-card:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
          box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.school-card__image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #ffffff;
}
.school-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.school-card__image.is-logo img {
  -o-object-fit: contain;
     object-fit: contain;
}

.school-card:hover .school-card__image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.school-card__content {
  padding: 2rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.school-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.school-card__area {
  font-size: 1rem;
  color: #666666;
  font-weight: 600;
}

.school-card__curriculum {
  background: #FF9E00;
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 700;
}

.school-card__name-en {
  font-size: 1.5rem;
  font-weight: 900;
  color: #333333;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.school-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.school-card__fee {
  background: #FFF8E1;
  padding: 1rem;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid #FF9E00;
}

.school-card__fee-label {
  display: block;
  font-size: 0.875rem;
  color: #666666;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.school-card__fee-amount {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  color: #FF9E00;
}

.school-card__description {
  font-size: 1rem;
  color: #555555;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding: 0.875rem 1rem;
  background: #FAFAFA;
  border-left: 3px solid #E8C870;
  border-radius: 0 0.375rem 0.375rem 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.school-card__btn {
  display: block;
  width: auto;
  min-width: 200px;
  max-width: 250px;
  margin: 1.5rem auto 0;
  padding: 1rem 2.5rem;
  background: #FF9E00;
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 3rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.school-card__btn:hover {
  background: #FF8800;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 15px rgba(255, 158, 0, 0.3);
          box-shadow: 0 4px 15px rgba(255, 158, 0, 0.3);
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin-top: 4rem;
  padding: 2rem 0;
}
.pagination__btn {
  background: #ffffff;
  color: #FF9E00;
  border: 1px solid #E0E0E0;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
}
a.pagination__btn:hover {
  background: #FF9E00;
  color: #ffffff;
  border-color: #FF9E00;
}
.pagination__btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.pagination__numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
.pagination__numbers a.page-numbers {
  text-decoration: none;
}
.pagination__numbers a.page-numbers:hover .pagination__number {
  background: #FF9E00;
  color: #ffffff;
  border-color: #FF9E00;
}
.pagination__number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 2.5rem;
  padding: 0.5rem 0.75rem;
  background: #ffffff;
  color: #FF9E00;
  border: 1px solid #E0E0E0;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 700;
}
.pagination__numbers .page-numbers.current .pagination__number {
  background: #FF9E00;
  color: white;
  border-radius: 0.5rem;
}

@media (max-width: 968px) {
  .search__row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .search__form {
    padding: 2rem;
  }
  .schools__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .pagination {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.75rem;
  }
}
@media (max-width: 640px) {
  .search-section {
    padding: 2rem 1rem;
  }
  .search__title {
    font-size: 1.5rem;
  }
  .search__form {
    padding: 1.5rem;
  }
  .school-card__image {
    height: 220px;
  }
  .school-card__content {
    padding: 1.5rem;
  }
  .schools__count {
    font-size: 1rem;
  }
  .school-card__area {
    font-size: 0.875rem;
  }
  .school-card__name-en {
    font-size: 1.25rem;
  }
  .school-card__name {
    font-size: 1rem;
  }
  .pagination__numbers {
    gap: 0.3rem;
  }
  .pagination__number {
    width: 40px;
    height: 40px;
  }
}
body {
  padding-top: 80px;
}

.single-gem_school .breadcrumb,
.single-gem_column .breadcrumb {
  margin-top: 0.75rem;
}

.mobile-search-form { display: none; }

.mobile-fixed-cta { display: none; }

@media (max-width: 640px) {
  body.single-gem_school footer {
    padding-bottom: 95px;
  }
}

.detail-content-section {
  padding: 3rem 2rem;
  background: #FAFAFA;
}

.detail__wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
}

.detail__main {
  min-width: 0;
  background: white;
  padding: 3rem;
  border-radius: 1.5rem;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.school-header {
  margin-bottom: 2.5rem;
}

.school-header__badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 1rem;
}

.school-header__badge-area {
  font-size: 1rem;
  color: #666666;
  font-weight: 600;
}

.school-header__badge-curriculum {
  background: #FF9E00;
  color: white;
  padding: 0.4rem 1.2rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 700;
}

.school-header__title-en {
  font-size: 2.25rem;
  font-weight: 900;
  color: #333333;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.school-header__title-ja {
  font-size: 1.25rem;
  font-weight: 600;
  color: #666666;
  line-height: 1.4;
}

.gallery-section {
  margin-bottom: 2.5rem;
}

.gallery__slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.gallery__main {
  width: 100%;
  height: 500px;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  background: #F5F5F5;
}
.gallery__main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery__thumbnails {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}
.gallery__thumbnail {
  width: calc(25% - 0.75rem);
  height: 100px;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* Gallery nav buttons */
.gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.gallery__nav:hover { background: rgba(0,0,0,0.7); }
.gallery__nav--prev { left: 0.75rem; }
.gallery__nav--next { right: 0.75rem; }

/* Lightbox */
.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox.active {
  display: flex;
}
.gallery-lightbox__img-wrap {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox__img-wrap img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 0.5rem;
}
.gallery-lightbox__close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 9001;
}
.gallery-lightbox__nav {
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 2.5rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  margin: 0 1rem;
}
.gallery-lightbox__nav:hover { background: rgba(255,255,255,0.3); }

.gallery__thumbnail:hover {
  border-color: #FF9E00;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.gallery__thumbnail.active {
  border-color: #FF9E00;
}
.gallery__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.content-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 2px solid #F0F0F0;
}
.content-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.content-section__title {
  font-size: 1.75rem;
  font-weight: 900;
  color: #333333;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid #FF9E00;
  display: inline-block;
}

.content-section__body {
  font-size: 1rem;
  line-height: 1.8;
  color: #333333;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid #E5E5E5;
}
.content-section__body:first-of-type {
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}
.content-section__body p {
  margin-bottom: 1rem;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.info-table th, .info-table td {
  padding: 1.2rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid #E0E0E0;
}
.info-table th {
  background: #F5F5F5;
  font-weight: 700;
  color: #333333;
  width: 35%;
  vertical-align: top;
}
.info-table td {
  color: #666666;
  line-height: 1.8;
}
.info-table td a {
  color: #FF9E00;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  word-break: break-all;
  overflow-wrap: break-word;
}
.info-table td a:hover {
  color: #FF8800;
  text-decoration: underline;
}
.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none;
}

.location-address {
  margin-bottom: 2rem;
}
.location-address h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0.75rem;
}
.location-address p {
  color: #666666;
  line-height: 1.8;
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.access-col h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0.75rem;
}
.access-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.access-col ul li {
  color: #666666;
  line-height: 1.8;
  padding-left: 1.5rem;
  position: relative;
}
.access-col ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #FF9E00;
  font-weight: 700;
}
.access-col p {
  color: #666666;
  line-height: 1.8;
}

.map-container {
  margin-top: 2rem;
  border-radius: 1rem;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.map-container iframe {
  width: 100%;
  display: block;
}

.detail-cta-section {
  background: -webkit-gradient(linear, left top, right bottom, from(#FF9E00), to(#FF8800));
  background: linear-gradient(135deg, #FF9E00 0%, #FF8800 100%);
  padding: 4rem 3rem;
  border-radius: 1.5rem;
  margin-top: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.detail-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  -webkit-animation: float 15s ease-in-out infinite;
          animation: float 15s ease-in-out infinite;
}

.detail-cta__content {
  position: relative;
  z-index: 1;
}

.detail-cta__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.detail-cta__title {
  font-size: 2rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.detail-cta__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.detail-cta__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.detail__sidebar {
  position: relative;
}

.sidebar__sticky {
  position: sticky;
  top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

.sidebar__block {
  background: white;
  padding: 2rem;
  border-radius: 1.5rem;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #F0F0F0;
}

.sidebar__title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #333333;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid #FF9E00;
}

.sidebar__search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.sidebar__search-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
.sidebar__search-field label {
  font-size: 1rem;
  font-weight: 700;
  color: #333333;
}
.sidebar__search-field select {
  padding: 1rem 2.5rem 1rem 1rem;
  border: 2px solid #E0E0E0;
  border-radius: 0.5rem;
  font-size: 1rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: "Zen Maru Gothic", sans-serif;
  background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333333' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 1rem center;
  color: #333333;
  -webkit-text-fill-color: #333333;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sidebar__search-field select:focus {
  outline: none;
  border-color: #FF9E00;
}

.sidebar__btn-search {
  width: 100%;
  padding: 1.2rem;
  background: #FF9E00;
  color: white;
  border: none;
  border-radius: 3rem;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}
.sidebar__btn-search:hover {
  background: #FF8800;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 15px rgba(255, 158, 0, 0.3);
          box-shadow: 0 4px 15px rgba(255, 158, 0, 0.3);
}

.sidebar__cta h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0.75rem;
  text-align: center;
}
.sidebar__cta p {
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: center;
}

.sidebar__btn-cta {
  display: block;
  width: 100%;
  padding: 1rem;
  background: #FF9E00;
  color: white;
  border-radius: 3rem;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sidebar__btn-cta:hover {
  background: #FF8800;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 15px rgba(255, 158, 0, 0.3);
          box-shadow: 0 4px 15px rgba(255, 158, 0, 0.3);
}

@media (max-width: 1200px) {
  .detail__wrapper {
    grid-template-columns: 1fr 300px;
    gap: 2rem;
  }
  .detail__main {
    padding: 2.5rem;
  }
  .gallery__main {
    height: 400px;
  }
  .gallery__thumbnails {
    /* 4列はベーススタイルと同じため上書き不要 */
  }
  .access-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 968px) {
  .detail__wrapper {
    grid-template-columns: 1fr;
  }
  .detail__sidebar {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .sidebar__sticky {
    position: static;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .detail__main {
    padding: 2rem;
  }
  .gallery__main {
    height: 350px;
  }
  .gallery__thumbnail {
    width: calc(33.333% - 0.667rem);
  }
}
@media (max-width: 640px) {
  .detail-content-section {
    padding: 2rem 1rem;
    padding-bottom: 6rem;
  }
  .detail__main {
    padding: 1.5rem;
  }
  .gallery__main {
    height: 250px;
  }
  .gallery__thumbnails {
    gap: 0.75rem;
  }
  .gallery__thumbnail {
    width: calc(50% - 0.375rem);
  }
  .gallery__thumbnail {
    height: 80px;
  }
  .school-header__title-en {
    font-size: 1.625rem;
  }
  .school-header__title-ja {
    font-size: 1.125rem;
  }
  .content-section__title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  .content-section {
    border-bottom: none;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }
  .content-section__body {
    padding-top: 1rem;
    margin-top: 1rem;
  }
  .info-table {
    margin: 0.75rem 0;
  }
  .detail__sidebar {
    display: none;
  }
  .info-table th, .info-table td {
    padding: 1rem;
    display: block;
    width: 100%;
  }
  .info-table th {
    background: transparent;
    padding-bottom: 0.5rem;
    font-size: 1.125rem;
    border-bottom: none;
  }
  .info-table td {
    padding-top: 0;
    padding-bottom: 1.5rem;
  }
  .detail-cta-section {
    display: none;
  }
  .detail-cta__title {
    font-size: 1.5rem;
  }
  .detail-cta__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .mobile-search-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #E8E8E8;
    margin-top: 2rem;
  }
  .mobile-search-form__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2C3E50;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid #FF9E00;
    display: inline-block;
    margin-bottom: 0.25rem;
  }
  .mobile-search-form__field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
  }
  .mobile-search-form__field label {
    font-size: 1rem;
    font-weight: 700;
    color: #2C3E50;
  }
  .mobile-search-form__field select {
    padding: 1rem 2.5rem 1rem 1rem;
    border: 2px solid #E0E0E0;
    border-radius: 0.5rem;
    font-size: 1rem;
    background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333333' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 1rem center;
    color: #333333;
    -webkit-text-fill-color: #333333;
    cursor: pointer;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  .mobile-search-form__btn {
    width: 100%;
    padding: 1.2rem;
    background: #FF9E00;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
  }
  .mobile-fixed-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 500;
    background: white;
    padding: 1rem 1.5rem;
    -webkit-box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
    border-top: 1px solid #E0E0E0;
  }
  .mobile-fixed-cta__btn {
    display: block;
    background: #FF9E00;
    color: white;
    text-align: center;
    padding: 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    -webkit-box-shadow: 0 4px 15px rgba(255, 158, 0, 0.3);
            box-shadow: 0 4px 15px rgba(255, 158, 0, 0.3);
  }
}
.contact-form-section {
  padding: 5rem 2rem;
  background: #FAFAFA;
}

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

.contact__intro {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.contact__intro-title {
  font-size: 2rem;
  font-weight: 900;
  color: #2C3E50;
  margin-bottom: 1.5rem;
}

.contact__intro-text {
  font-size: 1rem;
  color: #666666;
  line-height: 1.8;
}

.contact__intro-note {
  font-size: 1rem;
  color: #666666;
  line-height: 1.8;
  margin-top: 1.5rem;
}

.contact__intro-link {
  color: #FF9E00;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid #FF9E00;
  padding-bottom: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.contact__intro-link:hover {
  color: #FF8800;
  border-bottom-color: #FF8800;
}

.consultation-form {
  background: white;
  padding: 3rem;
  border-radius: 1.5rem;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form__checkbox-group,
.form__radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.form__checkbox-item,
.form__radio-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 1rem;
  color: #333333;
  line-height: 1.5;
}
.form__checkbox-item input[type=checkbox],
.form__checkbox-item input[type=radio],
.form__radio-item input[type=checkbox],
.form__radio-item input[type=radio] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  accent-color: #FF9E00;
  cursor: pointer;
}
.form__checkbox-item:hover span,
.form__radio-item:hover span {
  color: #FF9E00;
}

.form__privacy {
  margin: 2rem 0 1.5rem;
  padding: 1.5rem;
  background: #FAFAFA;
  border-radius: 0.75rem;
  border: 1px solid #E0E0E0;
}

.form__privacy-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 1rem;
  color: #333333;
}
.form__privacy-label input[type=checkbox] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  accent-color: #FF9E00;
  cursor: pointer;
}

.form__privacy-link {
  color: #FF9E00;
  text-decoration: underline;
  font-weight: 700;
}
.form__privacy-link:hover { color: #FF8800; }

.privacy-section {
  padding: 5rem 2rem;
  background: #FAFAFA;
}

.privacy__container {
  max-width: 860px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 1.5rem;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 640px) {
  .privacy-section {
    padding: 3rem 1rem;
  }
  .privacy__container {
    padding: 1.75rem 1.25rem;
  }
}

.privacy__updated {
  font-size: 0.9rem;
  color: #666666;
  margin-bottom: 2rem;
  text-align: right;
}

.privacy__lead {
  font-size: 1rem;
  line-height: 1.9;
  color: #333333;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #F0F0F0;
}

.privacy__block {
  margin-bottom: 2.5rem;
}
.privacy__block:last-child { margin-bottom: 0; }

.privacy__heading {
  font-size: 1.2rem;
  font-weight: 900;
  color: #333333;
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 4px solid #FF9E00;
}

.privacy__subheading {
  font-size: 1rem;
  font-weight: 700;
  color: #333333;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.privacy__block p,
.privacy__block ul {
  font-size: 1rem;
  line-height: 1.9;
  color: #666666;
}

.privacy__block ul {
  padding-left: 1.5rem;
  margin-top: 0.75rem;
}
.privacy__block li { margin-bottom: 0.4rem; }

.privacy__contact-link {
  color: #FF9E00;
  text-decoration: underline;
  font-weight: 700;
}
.privacy__contact-link:hover { color: #FF8800; }

@media (max-width: 968px) {
  .contact__intro-title {
    font-size: 1.7rem;
  }
  .contact__intro-text {
    font-size: 1rem;
  }
  .consultation-form {
    padding: 2rem;
  }
}
@media (max-width: 640px) {
  .contact-form-section {
    padding: 3rem 1rem;
  }
  .contact__intro-title {
    font-size: 1.5rem;
  }
  .contact__intro-text {
    font-size: 1rem;
  }
  .consultation-form {
    padding: 1.5rem;
  }
  .form__label {
    font-size: 0.95rem;
  }
}
.faq-section {
  padding: 5rem 2rem;
  background: #FAFAFA;
}

.faq__container {
  max-width: 900px;
  margin: 0 auto;
}

.faq__category {
  margin-bottom: 4rem;
}

.faq__category-title {
  font-size: 1.75rem;
  font-weight: 900;
  color: #333333;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid #FF9E00;
  position: relative;
}
.faq__category-title::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 50px;
  height: 3px;
  background: #FFD60A;
}

.faq__item {
  background: white;
  border-radius: 1rem;
  margin-bottom: 1rem;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.faq__item:hover {
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.faq__item.active .faq__icon {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.faq__item.active .faq__answer {
  max-height: 2000px;
}

.faq__question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: white;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #333333;
  text-align: left;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.faq__question:hover {
  background: #FFF8F0;
}

.faq__question-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 1rem;
}

.faq__icon {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FF9E00;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
  padding-top: 1rem;
}
.faq__answer p, .faq__answer ul, .faq__answer table {
  padding: 0 2rem 0.6rem;
}
.faq__answer p {
  font-size: 1rem;
  color: #666666;
  line-height: 1.8;
}
.faq__answer ul {
  list-style: none;
  padding-left: 2rem;
  padding-right: 2rem;
}
.faq__answer ul li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  color: #666666;
  font-size: 1rem;
  line-height: 1.7;
}
.faq__answer ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #FF9E00;
  font-weight: 700;
}
.faq__answer strong {
  font-weight: 700;
  color: #333333;
}
.faq__answer a {
  color: #FF9E00;
  text-decoration: underline;
}
.faq__answer a:hover {
  color: #CC7E00;
}

.cost-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}
.cost-table thead tr {
  background: #FF9E00;
  color: white;
}
.cost-table th, .cost-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid #E0E0E0;
  font-size: 0.95rem;
}
.cost-table tbody tr {
  background: white;
}
.cost-table tbody tr:last-child td {
  border-bottom: none;
}
.cost-table tbody tr:hover {
  background: #FFF8E1;
}

.faq__cta {
  background: #FFF8E1;
  padding: 3rem;
  border-radius: 1.5rem;
  text-align: center;
  border: 2px solid #FFE0A3;
  margin-top: 2rem;
}
.faq__cta h2 {
  font-size: 1.8rem;
  font-weight: 900;
  color: #333333;
  margin-bottom: 1rem;
}
.faq__cta p {
  font-size: 1rem;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.faq__cta .cta-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 968px) {
  .faq__category-title {
    font-size: 1.5rem;
  }
  .faq__question {
    padding: 1.25rem 1.5rem;
  }
  .faq__answer p, .faq__answer ul, .faq__answer table {
    padding: 0 1.5rem 1.5rem;
  }
  .faq__answer ul {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .faq__cta {
    padding: 2rem;
  }
}
@media (max-width: 640px) {
  .faq-section {
    padding: 3rem 1rem;
  }
  .faq__category-title {
    font-size: 1.5rem;
  }
  .faq__question {
    padding: 1rem 1.25rem;
    font-size: 1.125rem;
  }
  .faq__answer p, .faq__answer ul {
    padding: 0 1.25rem 1.25rem;
  }
  .faq__answer p {
    font-size: 1rem;
  }
  .faq__answer ul li {
    font-size: 1rem;
  }
  .cost-table th, .cost-table td {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }
  .faq__cta {
    padding: 1.5rem;
  }
  .faq__cta h2 {
    font-size: 1.4rem;
  }
  .faq__cta .cta-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.services-page-title {
  background: linear-gradient(135deg, #FF9E00 0%, #FF8800 100%);
  padding: 4rem 2rem;
  text-align: center;
}
.services-page-title h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  margin: 0;
}
.services-page-title .subtitle {
  font-size: 1.1rem;
  color: white;
  opacity: 0.95;
}

.services-section {
  padding: 5rem 2rem;
  background: #FAFAFA;
}

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

.service-item {
  scroll-margin-top: 80px;
  margin-bottom: 5rem;
  background: white;
  border-radius: 2rem;
  padding: 2.5rem;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.service-item:last-child {
  margin-bottom: 0;
}

.service-item__title {
  font-size: 2rem;
  font-weight: 900;
  color: #2C3E50;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  text-align: center;
}

.service-item__subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  color: #666666;
}

.service-item__badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 3rem;
  font-size: 1rem;
  font-weight: 700;
  margin-left: 1rem;
}
.service-item__badge--coming-soon {
  background: #FF9E00;
  color: white;
}

.service-item__lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #333333;
  padding: 1rem 1.25rem;
  background: #FFF8F0;
  border-left: 4px solid #FF9E00;
  border-radius: 0.75rem;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 2rem;
}

.service-item__columns {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.service-item__content {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.service-item__image-wrapper {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.service-item__image {
  position: relative;
  width: 100%;
  height: 100%;
}
.service-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 1.5rem;
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-item__coming-soon-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, #FF9E00 0%, #FF8800 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-size: 1rem;
  font-weight: 700;
  -webkit-box-shadow: 0 4px 15px rgba(255, 158, 0, 0.3);
          box-shadow: 0 4px 15px rgba(255, 158, 0, 0.3);
}

.service-item__cta {
  display: inline-block;
  width: 100%;
  padding: 1.2rem 2rem;
  background: linear-gradient(135deg, #FF9E00 0%, #FF8800 100%);
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 3rem;
  -webkit-box-shadow: 0 4px 15px rgba(255, 158, 0, 0.3);
          box-shadow: 0 4px 15px rgba(255, 158, 0, 0.3);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.service-item__cta:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 25px rgba(255, 158, 0, 0.4);
          box-shadow: 0 8px 25px rgba(255, 158, 0, 0.4);
}

.service-item__features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.feature-item {
  padding: 1rem 1.25rem;
  background: #FAFAFA;
  border-radius: 1rem;
}

.feature-item__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.feature-item__title::before {
  content: "✓";
  display: inline-block;
  width: 22px;
  height: 22px;
  background: #FF9E00;
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 22px;
  margin-right: 0.75rem;
  font-size: 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.feature-item__text {
  font-size: 1rem;
  line-height: 1.7;
  color: #666666;
}

@media (max-width: 968px) {
  .services-page-title h1 {
    font-size: 2rem;
  }
  .services-page-title .subtitle {
    font-size: 1rem;
  }
  .services-section {
    padding: 3rem 1rem;
  }
  .service-item {
    padding: 2rem;
    margin-bottom: 3rem;
  }
  .service-item__title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
  .service-item__subtitle {
    font-size: 1rem;
  }
  .service-item__lead {
    font-size: 1rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
  .service-item__columns {
    display: block;
  }
  .service-item__image-wrapper {
    margin-top: 1.5rem;
  }
  .service-item__image {
    height: 220px;
  }
  .service-item__image img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .service-item__cta {
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }
  .service-item__coming-soon-badge {
    top: 1rem;
    right: 1rem;
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
  .service-item__features {
    gap: 0.75rem;
  }
  .feature-item {
    padding: 1rem;
  }
}
@media (max-width: 640px) {
  .services-page-title {
    padding: 3rem 1rem;
  }
  .services-page-title h1 {
    font-size: 1.7rem;
  }
  .service-item {
    padding: 1.5rem;
  }
  .service-item__title {
    font-size: 1.25rem;
  }
  .service-item__badge {
    display: block;
    margin-left: 0;
    margin-top: 0.5rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .service-item__lead {
    font-size: 1rem;
    padding: 0.875rem;
    text-align: left;
  }
  .service-item__columns {
    gap: 1.25rem;
  }
  .feature-item__title {
    font-size: 1.125rem;
  }
  .feature-item__text {
    font-size: 1rem;
  }
  .pc-dot {
    display: none;
  }
}

/* =============================================================================
   News — List & Single
   ============================================================================= */

.news-list-page {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.news-list-page .latest-news__list {
  margin-bottom: 2rem;
}

.news-list__no-results {
  text-align: center;
  color: #666666;
  padding: 3rem 0;
}

.news-article-section {
  padding: 3rem 2rem 5rem;
  background: #FAFAFA;
}

.news-article__container {
  max-width: 860px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 1.5rem;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.news-article__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.news-article__date {
  font-size: 1rem;
  color: #666666;
  font-weight: 600;
}

.news-article__title {
  font-size: 2rem;
  font-weight: 900;
  color: #333333;
  line-height: 1.4;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #F0F0F0;
}

.news-article__thumb {
  width: 100%;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 2rem;
}
.news-article__thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.news-article__body {
  font-size: 1rem;
  line-height: 1.9;
  color: #333333;
}
.news-article__body p       { margin-bottom: 1rem; }
.news-article__body h2      { font-size: 1.5rem; font-weight: 900; margin: 2.5rem 0 1rem; padding-left: 1rem; border-left: 4px solid #FF9E00; }
.news-article__body h3      { font-size: 1.2rem; font-weight: 700; margin: 2rem 0 0.75rem; padding: 0.5rem 1rem; background: #FFF8F0; border-left: 4px solid #E8C870; border-radius: 0 0.25rem 0.25rem 0; }
.news-article__body ul,
.news-article__body ol      { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.news-article__body li      { margin-bottom: 0.5rem; }
.news-article__body a       { color: #FF9E00; text-decoration: underline; }
.news-article__body a:hover { color: #FF8800; }
.news-article__body img     { max-width: 100%; height: auto; border-radius: 0.75rem; margin: 1rem 0; }
.news-article__body strong  { font-weight: 700; }
.news-article__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 1rem;
  line-height: 1.7;
}
.news-article__body table th,
.news-article__body table td {
  padding: 0.875rem 1.25rem;
  border: 1px solid #E5E5E5;
  vertical-align: top;
}
.news-article__body table th {
  background: #FFF8F0;
  font-weight: 700;
  color: #1a1a1a;
  white-space: nowrap;
  width: 30%;
}
.news-article__body table td {
  background: #ffffff;
  color: #333333;
}
.news-article__body table tr:nth-child(even) td {
  background: #FAFAFA;
}

.news-article__back {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #F0F0F0;
}
.news-article__back .btn-secondary {
  background: #FF9E00;
  color: white;
  border-color: #FF9E00;
}
.news-article__back .btn-secondary:hover {
  background: #FF8800;
  border-color: #FF8800;
  color: white;
}

@media (max-width: 640px) {
  .news-article-section    { padding: 2rem 1rem 4rem; }
  .news-article__container { padding: 1.5rem; }
  .news-article__title     { font-size: 1.5rem; }
  .news-article__body h2   { font-size: 1.25rem; }
  .news-article__body h3   { font-size: 1.1rem; }
  .news-article__body table { font-size: 0.9rem; }
  .news-article__body table th,
  .news-article__body table td { padding: 0.625rem 0.875rem; }
  .news-article__body table th { width: auto; white-space: normal; }
}

/* =============================================================================
   Fair / Seminar Contact Form Section
   ============================================================================= */

.fair-form {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #E5E5E5;
}

.fair-form__title {
  font-size: 1.6rem;
  font-weight: 900;
  color: #1A1A1A;
  margin-bottom: 2rem;
  text-align: center;
}

@media (max-width: 640px) {
  .fair-form__title { font-size: 1.3rem; }
}

/* =============================================================================
   Why Choose Page
   ============================================================================= */

.why-choose-section {
  padding: 5rem 2rem;
  background: #F8F8F8;
}

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

.reason-item {
  scroll-margin-top: 80px;
  background: white;
  border-radius: 1.5rem;
  padding: 3rem;
  margin-bottom: 3rem;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.reason-item:last-child {
  margin-bottom: 0;
}

.reason-item__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.reason-item__number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: #FF9E00;
  color: white;
  font-size: 1.3rem;
  font-weight: 900;
  border-radius: 50%;
  line-height: 1;
}

.reason-item__title {
  font-size: 1.75rem;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.4;
}

.reason-item__title-sub {
  display: inline-block;
  margin-top: 0.3rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #FF9E00;
}
.reason-item__title-sub::before { content: '【'; }
.reason-item__title-sub::after  { content: '】'; }

.reason-item__columns {
  display: -ms-grid;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.reason-item__content       { -webkit-box-ordinal-group: 2; -ms-flex-order: 1; order: 1; }
.reason-item__image-wrapper { -webkit-box-ordinal-group: 3; -ms-flex-order: 2; order: 2; }

.reason-item__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  display: block;
}

.reason-item__body {
  font-size: 1rem;
  color: #333333;
  line-height: 1.9;
  margin-bottom: 0.5rem;
}
.reason-item__body:last-child { margin-bottom: 0; }

@media (max-width: 968px) {

  .reason-item {
    padding: 2rem 1.5rem;
  }
  .reason-item__columns {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 2rem;
  }
  .reason-item__image-wrapper {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .reason-item__content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .reason-item__title  { font-size: 1.3rem; }
  .reason-item__number { width: 44px; height: 44px; min-width: 44px; font-size: 1.1rem; }
}

@media (max-width: 640px) {
  .why-choose-section { padding: 3rem 1.5rem; }
  .reason-item__header { gap: 1rem; }
  .reason-item__title { font-size: 1.375rem; }
}
/* ==========================================================================
   About Page
   ========================================================================== */

/* 代表メッセージ */
.about-section {
  padding: 5rem 2rem;
  background: #F8F8F8;
}

.about-section__container {
  max-width: 1100px;
  margin: 0 auto;
}

.about-message {
  background: white;
  border-radius: 1.5rem;
  padding: 3rem;
}

.about-message__title {
  font-size: 1.8rem;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #E8C870;
}

.about-message__columns {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: start;
}

.about-message__quote {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.about-message__body {
  font-size: 1rem;
  color: #333333;
  line-height: 1.9;
  margin-bottom: 1rem;
}

.about-message__body:last-of-type {
  margin-bottom: 1.5rem;
}

.about-message__signature {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: right;
}

.about-message__image-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.about-message__image {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
}

.about-message__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* 会社概要テーブル */
.company-info-section {
  padding: 5rem 2rem;
  background: white;
}

.company-info__container {
  max-width: 1100px;
  margin: 0 auto;
}

.company-info__title {
  font-size: 1.75rem;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #E8C870;
}

.company-info__table {
  width: 100%;
  border-collapse: collapse;
}

.company-info__row {
  border-bottom: 1px solid #E5E5E5;
}

.company-info__row:first-child {
  border-top: 1px solid #E5E5E5;
}

.company-info__label {
  width: 200px;
  padding: 1.25rem 1.5rem 1.25rem 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  vertical-align: top;
  white-space: nowrap;
}

.company-info__value {
  padding: 1.25rem 0;
  font-size: 1rem;
  color: #333333;
  line-height: 1.8;
}

@media (max-width: 968px) {
  .about-message {
    padding: 2rem 1.5rem;
  }
  .about-message__columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-message__image-wrapper {
    order: -1;
  }
  .company-info__label {
    width: 140px;
  }
}

@media (max-width: 640px) {
  .about-section { padding: 3rem 1.5rem; }
  .company-info-section { padding: 3rem 1.5rem; }
  .about-message__title { font-size: 1.4rem; }
  .company-info__title { font-size: 1.5rem; }
  .company-info__table,
  .company-info__tbody,
  .company-info__row,
  .company-info__label,
  .company-info__value {
    display: block;
    width: 100%;
  }
  .company-info__label {
    padding-bottom: 0.25rem;
    white-space: normal;
    text-align: left;
  }
  .company-info__value {
    padding-top: 0;
    padding-bottom: 1.25rem;
  }
}

/* ==========================================================================
   Contact Form 7 — 既存デザインへの統合
   ========================================================================== */

/* CF7ラッパー */
.wpcf7 { width: 100%; }
.wpcf7-form { width: 100%; }

/* CF7が生成する p タグをリセット */
.wpcf7-form p { margin: 0; }

/* ラベルとインプットの間隔（br廃止後はmarginで制御） */
.form__group .form__label { margin-bottom: 0.5rem; }

/* wpcf7-form-control-wrap をブロック化 */
.wpcf7-form-control-wrap { display: block; }

/* テキスト・メール・tel 入力 */
.wpcf7-form .wpcf7-form-control-wrap input[type="text"],
.wpcf7-form .wpcf7-form-control-wrap input[type="email"],
.wpcf7-form .wpcf7-form-control-wrap input[type="tel"],
.wpcf7-form .wpcf7-form-control-wrap textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid #D9D9D9;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
  color: #1a1a1a;
  background: #FAFAFA;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  /* iOS Safari デフォルトスタイルをリセット */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.wpcf7-form .wpcf7-form-control-wrap input:focus,
.wpcf7-form .wpcf7-form-control-wrap textarea:focus {
  outline: none;
  border-color: #FF9E00;
  box-shadow: 0 0 0 3px rgba(255,158,0,0.12);
  background: #fff;
}

/* チェックボックス・ラジオ — 縦並び */
.wpcf7-checkbox,
.wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.wpcf7-checkbox .wpcf7-list-item,
.wpcf7-radio .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  cursor: pointer;
}
.wpcf7-checkbox .wpcf7-list-item input,
.wpcf7-radio .wpcf7-list-item input {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: #FF9E00;
  cursor: pointer;
  flex-shrink: 0;
}
.wpcf7-checkbox .wpcf7-list-item label,
.wpcf7-radio .wpcf7-list-item label {
  font-size: 0.95rem;
  color: #333;
  cursor: pointer;
}

/* acceptance（プライバシー同意） */
.wpcf7-acceptance .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.wpcf7-acceptance .wpcf7-list-item input {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: #FF9E00;
  flex-shrink: 0;
}

/* select（CF7） */
.wpcf7-form .wpcf7-form-control-wrap select {
  width: 100%;
  padding: 0.875rem 2.5rem 0.875rem 1rem;
  border: 1.5px solid #D9D9D9;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
  color: #1a1a1a;
  background: #FAFAFA url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232C3E50' d='M6 9L1 4h10z'/%3E%3C/svg%3E") no-repeat right 1.25rem center;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.wpcf7-form .wpcf7-form-control-wrap select:focus {
  outline: none;
  border-color: #FF9E00;
  box-shadow: 0 0 0 3px rgba(255,158,0,0.12);
  background-color: #fff;
}

/* 送信ボタン */
.wpcf7-form input[type="submit"],
.wpcf7-submit {
  display: block;
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #FF9E00 0%, #FFB84D 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  /* iOS Safari デフォルトスタイルをリセット */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: opacity 0.2s, transform 0.1s;
}
.wpcf7-form input[type="submit"]:hover,
.wpcf7-submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* バリデーションメッセージ */
.wpcf7-not-valid-tip {
  color: #e53e3e;
  font-size: 0.85rem;
  margin-top: 0.3rem;
  display: block;
}
.wpcf7-response-output {
  margin: 1.5rem 0 0;
  padding: 0.875rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  border: none !important;
}
.wpcf7-form.sent .wpcf7-response-output {
  background: #f0fff4;
  color: #276749;
}
.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.spam .wpcf7-response-output {
  background: #fff5f5;
  color: #c53030;
}

/*# sourceMappingURL=main.css.map */