@charset "UTF-8";
body {
  font-family: "M PLUS Rounded 1c", "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 21px;
  line-height: 1.8;
  color: #333333;
  font-weight: 400;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title__main {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
}
@media screen and (min-width: 768px) {
  .section-title__main {
    font-size: 56px;
  }
}
@media screen and (min-width: 1024px) {
  .section-title__main {
    font-size: 64px;
  }
}
.section-title__sub {
  font-size: 21px;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .section-title__sub {
    font-size: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .section-title__sub {
    font-size: 28px;
  }
}

.btn {
  display: inline-block;
  min-width: 200px;
  padding: 15px 30px;
  background-color: #1B4B73;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn:hover {
  opacity: 0.8;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

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

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

.list-item {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}
.list-item:first-child {
  border-top: 1px solid #eee;
}

.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.flex-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.mt-1 {
  margin-top: 10px;
}

.mb-1 {
  margin-bottom: 10px;
}

.pt-1 {
  padding-top: 10px;
}

.pb-1 {
  padding-bottom: 10px;
}

.mt-2 {
  margin-top: 20px;
}

.mb-2 {
  margin-bottom: 20px;
}

.pt-2 {
  padding-top: 20px;
}

.pb-2 {
  padding-bottom: 20px;
}

.mt-3 {
  margin-top: 30px;
}

.mb-3 {
  margin-bottom: 30px;
}

.pt-3 {
  padding-top: 30px;
}

.pb-3 {
  padding-bottom: 30px;
}

.mt-4 {
  margin-top: 40px;
}

.mb-4 {
  margin-bottom: 40px;
}

.pt-4 {
  padding-top: 40px;
}

.pb-4 {
  padding-bottom: 40px;
}

.mt-5 {
  margin-top: 50px;
}

.mb-5 {
  margin-bottom: 50px;
}

.pt-5 {
  padding-top: 50px;
}

.pb-5 {
  padding-bottom: 50px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header.scrolled {
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header.scrolled .header__logo-link,
.header.scrolled .header__nav-item a {
  color: #333333;
}
.header.scrolled .hamburger span {
  background-color: #333333;
}
.header__inner {
  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;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .header__inner {
    padding: 20px 40px;
  }
}
.header__logo {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (min-width: 1024px) {
  .header__logo {
    font-size: 24px;
  }
}
.header__logo-link {
  color: #FFFFFF;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.header__nav {
  display: none;
}
@media screen and (min-width: 1024px) {
  .header__nav {
    display: block;
  }
}
.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__nav-item a {
  color: #FFFFFF;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  font-size: 21px;
}
.header__nav-item a:hover {
  opacity: 0.8;
}
@media screen and (min-width: 1024px) {
  .header__nav-item a {
    font-size: 23px;
  }
}
.header__nav-tel a {
  font-weight: bold;
}

.menu-btn {
  display: none;
  padding: 10px 20px;
  background-color: transparent;
  border: 1px solid #FFFFFF;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 100;
}
@media screen and (min-width: 1024px) {
  .menu-btn {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .menu-btn {
    display: block;
  }
}
.menu-btn__text {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-family: "Montserrat", sans-serif;
}
.header.scrolled .menu-btn {
  border-color: #333333;
}
.header.scrolled .menu-btn .menu-btn__text {
  color: #333333;
}
.menu-btn.active {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
}
.menu-btn.active .menu-btn__text {
  color: #1B4B73;
}
.header.scrolled .menu-btn.active {
  background-color: #1B4B73;
  border-color: #1B4B73;
}
.header.scrolled .menu-btn.active .menu-btn__text {
  color: #FFFFFF;
}

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

.sp-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(27, 75, 115, 0.95);
  padding-top: 80px;
  overflow-y: auto;
  z-index: 90;
  padding-bottom: 15vh;
}
.sp-nav.active {
  display: block;
}
.sp-nav__list {
  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;
  gap: 30px;
  padding: 40px 20px;
}
.sp-nav__item {
  width: 100%;
  max-width: 400px;
  text-align: center;
}
.sp-nav__item a {
  display: block;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
  padding: 20px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sp-nav__item a:hover, .sp-nav__item a:active {
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.sp-nav__item.sp-nav__tel {
  margin-top: 20px;
}
.sp-nav__item.sp-nav__tel a {
  font-size: 28px;
  color: #C5A572;
  background-color: #FFFFFF;
}
.sp-nav__item.sp-nav__tel a:hover, .sp-nav__item.sp-nav__tel a:active {
  background-color: #f2f2f2;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hero__slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 3s ease;
  transition: opacity 3s ease;
}
.hero__slide.active {
  opacity: 1;
}
.hero__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: -webkit-transform 10s ease;
  transition: -webkit-transform 10s ease;
  transition: transform 10s ease;
  transition: transform 10s ease, -webkit-transform 10s ease;
}
.hero__slide img.zoom {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF;
  z-index: 2;
  width: 90%;
  max-width: 800px;
}
@media screen and (min-width: 1024px) {
  .hero__content {
    width: 80%;
  }
}
@media screen and (min-width: 768px) {
  .hero__content .sp-only {
    display: none;
  }
}
.hero__title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 3s ease 0.5s;
  transition: all 3s ease 0.5s;
}
@media screen and (min-width: 1024px) {
  .hero__title {
    font-size: 48px;
  }
}
.hero__title.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.hero__subtitle {
  font-size: 18px;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 3s ease 1s;
  transition: all 3s ease 1s;
}
@media screen and (min-width: 1024px) {
  .hero__subtitle {
    font-size: 24px;
  }
}
.hero__subtitle.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.link-logo {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.link-logo__news, .link-logo__movie, .link-logo__home {
  display: block;
  -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;
  -webkit-animation: rotate-pattern 12s linear infinite;
          animation: rotate-pattern 12s linear infinite;
}
.link-logo__news:hover, .link-logo__movie:hover, .link-logo__home:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.link-logo__news img, .link-logo__movie img, .link-logo__home img {
  width: 80px;
  height: auto;
  display: block;
}

@-webkit-keyframes rotate-pattern {
  0%, 41.67% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  41.67%, 58.33% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
  58.33%, 100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

@keyframes rotate-pattern {
  0%, 41.67% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  41.67%, 58.33% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
  58.33%, 100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}
.concept {
  padding: 80px 0;
  background-color: #1B4B73;
  overflow: hidden;
  position: relative;
}
.concept .section-title {
  text-align: center;
  margin-bottom: 60px;
  color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .concept .section-title {
    margin-bottom: 80px;
  }
}
.concept .section-title__main {
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
  font-family: "Montserrat", sans-serif;
}
@media screen and (min-width: 768px) {
  .concept .section-title__main {
    font-size: 48px;
  }
}
@media screen and (min-width: 1024px) {
  .concept .section-title__main {
    font-size: 56px;
  }
}
.concept .section-title__sub {
  font-size: 16px;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .concept .section-title__sub {
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px) {
  .concept .section-title__sub {
    font-size: 20px;
  }
}
.concept__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .concept__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.concept__text {
  width: 100%;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .concept__text {
    width: 60%;
  }
}
.concept__text p {
  margin-bottom: 24px;
  font-size: 21px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .concept__text p {
    font-size: 23px;
  }
}
@media screen and (min-width: 1024px) {
  .concept__text p {
    font-size: 25px;
  }
}
.concept__text p:last-child {
  margin-bottom: 0;
}
.concept__video {
  width: 100%;
  margin-top: 40px;
  position: relative;
  aspect-ratio: 16/9;
}
@media screen and (min-width: 768px) {
  .concept__video {
    margin-top: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    aspect-ratio: auto;
  }
}
.concept__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.8;
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
}
.concept.fade-in .section-title {
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.concept.fade-in .concept__text {
  opacity: 0;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  -webkit-transition: all 1s ease 0.3s;
  transition: all 1s ease 0.3s;
}
.concept.fade-in .concept__video {
  opacity: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  -webkit-transition: all 1s ease 0.3s;
  transition: all 1s ease 0.3s;
}
.concept.fade-in.active .section-title,
.concept.fade-in.active .concept__text,
.concept.fade-in.active .concept__video {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.concept.fade-in.active .section-title {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.lesson {
  padding: 80px 0;
  background-color: #F5F7F9;
}
.lesson__lead {
  text-align: center;
  font-size: 23px;
  margin-bottom: 50px;
  color: #333333;
}
@media screen and (min-width: 1024px) {
  .lesson__lead {
    font-size: 26px;
  }
}
.lesson__cards {
  display: grid;
  gap: 30px;
  margin-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .lesson__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .lesson__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
  }
}

.lesson-card {
  background: #FFFFFF;
  border-radius: 15px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  -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;
  text-decoration: none;
}
.lesson-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.lesson-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.lesson-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;
}
.lesson-card__image:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.lesson-card__content {
  padding: 25px;
}
.lesson-card__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #1B4B73;
}
@media screen and (min-width: 1024px) {
  .lesson-card__title {
    font-size: 28px;
  }
}
.lesson-card__text {
  font-size: 21px;
  line-height: 1.8;
  color: #333333;
}
@media screen and (min-width: 1024px) {
  .lesson-card__text {
    font-size: 23px;
  }
}

.party-info {
  text-align: center;
  background: #1B4B73;
  color: #FFFFFF;
  padding: 40px;
  border-radius: 15px;
  margin-top: 80px;
}
.party-info__title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
  font-family: "Montserrat", sans-serif;
}
@media screen and (min-width: 1024px) {
  .party-info__title {
    font-size: 36px;
  }
}
.party-info__schedule {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #C5A572;
}
@media screen and (min-width: 1024px) {
  .party-info__schedule {
    font-size: 28px;
  }
}
.party-info__text {
  font-size: 21px;
  line-height: 1.8;
}
@media screen and (min-width: 1024px) {
  .party-info__text {
    font-size: 23px;
  }
}

.instructor {
  padding: 80px 0;
  background-color: rgba(245, 247, 249, 0.85);
}
.instructor__content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.instructor__image {
  margin: 0 auto;
  width: 250px;
}
.instructor__image img {
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .instructor__image {
    margin: 0 auto;
    width: 300px;
  }
  .instructor__image--first {
    margin-bottom: 40px;
  }
  .instructor__image--second {
    width: 300px;
    margin-top: 40px;
  }
  .instructor__image img {
    height: auto;
  }
}
.instructor__info {
  background-color: rgba(245, 247, 249, 0.9);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .instructor__info {
    margin: 0 auto;
    padding: 60px 40px;
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
  }
}
.instructor__title {
  font-size: 28px;
  color: #1B4B73;
  margin-bottom: 20px;
  line-height: 1.4;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .instructor__title {
    font-size: 32px;
  }
}
.instructor__school {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #C5A572;
}
@media screen and (min-width: 768px) {
  .instructor__school {
    font-size: 42px;
  }
}
.instructor__teachers {
  margin-bottom: 50px;
  padding: 30px;
  background-color: rgba(27, 75, 115, 0.1);
  border-radius: 15px;
}
.instructor__teachers-title {
  font-size: 24px;
  margin-bottom: 15px;
  color: #1B4B73;
}
.instructor__teachers-names {
  font-size: 32px;
  font-weight: bold;
  color: #1B4B73;
  letter-spacing: 0.1em;
}
.instructor__history {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}
.instructor__history-item h4 {
  font-size: 24px;
  color: #FFFFFF;
  margin-bottom: 15px;
  padding: 10px 20px;
  background-color: #1B4B73;
  border-radius: 30px;
  display: inline-block;
}
.instructor__history-item p {
  font-size: 21px;
  line-height: 1.8;
  padding: 0 20px;
}
@media screen and (min-width: ) {
  .instructor {
    padding: 60px 0;
  }
  .instructor__image--first img {
    height: 200px;
  }
  .instructor__image--second img {
    height: 300px;
  }
  .instructor__info {
    padding: 30px 20px;
  }
  .instructor__title {
    font-size: 24px;
  }
  .instructor__school {
    font-size: 32px;
  }
  .instructor__teachers {
    padding: 20px;
  }
  .instructor__teachers-title {
    font-size: 21px;
  }
  .instructor__teachers-names {
    font-size: 28px;
  }
  .instructor__history {
    gap: 25px;
  }
  .instructor__history-item h4 {
    font-size: 21px;
  }
  .instructor__history-item p {
    font-size: 18px;
  }
}

.fixed-nav {
  position: fixed;
  z-index: 100;
  height: 15vh;
}
@media screen and (max-width: 1023px) {
  .fixed-nav {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15vh;
    -webkit-box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  }
}
@media screen and (min-width: 1024px) {
  .fixed-nav {
    bottom: 50px;
    right: 50px;
    width: auto;
  }
}
.fixed-nav__list {
  height: 100%;
}
@media screen and (max-width: 1023px) {
  .fixed-nav__list {
    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;
  }
}
@media screen and (min-width: 1024px) {
  .fixed-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
}
@media screen and (max-width: 1023px) {
  .fixed-nav__item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: 100%;
  }
}
.fixed-nav__item:nth-child(1) .fixed-nav__link {
  background-color: #FF6B6B;
}
.fixed-nav__item:nth-child(2) .fixed-nav__link {
  background-color: #4ECDC4;
}
.fixed-nav__item:nth-child(3) .fixed-nav__link {
  background-color: #FFB900;
}
.fixed-nav__item:nth-child(4) .fixed-nav__link {
  background-color: #BF62F5;
}
.fixed-nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  color: #F5F7F9;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1023px) {
  .fixed-nav__link {
    height: 100%;
    padding: 15px 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
}
@media screen and (min-width: 1024px) {
  .fixed-nav__link {
    padding: 20px 30px;
    height: 100%;
    border-radius: 15px;
    -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    width: 160px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
  .fixed-nav__link:hover {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
    -webkit-box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
            box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
    -webkit-filter: brightness(1.1);
            filter: brightness(1.1);
  }
}
@media screen and (max-width: 1023px) {
  .fixed-nav__text {
    font-size: 21px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    padding: 0 5px;
  }
}
@media screen and (min-width: 1024px) {
  .fixed-nav__text {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: center;
    line-height: 1.3;
    white-space: nowrap;
  }
}

.news {
  padding: 80px 0;
  background-color: #F5F7F9;
}
.news__list {
  max-width: 1000px;
  margin: 0 auto 60px;
}
.news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25px 20px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .news__item {
    padding: 30px;
  }
}
.news__item:first-child {
  border-top: 1px solid rgba(51, 51, 51, 0.1);
}
.news__item:hover {
  background-color: rgba(27, 75, 115, 0.05);
}
.news__date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 140px;
  font-size: 21px;
  font-weight: bold;
  color: #1B4B73;
  font-family: "Montserrat", sans-serif;
}
@media screen and (min-width: 768px) {
  .news__date {
    width: 160px;
    font-size: 23px;
  }
}
@media screen and (min-width: 1024px) {
  .news__date {
    width: 180px;
    font-size: 24px;
  }
}
.news__title {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 21px;
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .news__title {
    font-size: 23px;
    padding-left: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .news__title {
    font-size: 24px;
    padding-left: 40px;
  }
}
.news__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: #C5A572;
  border-radius: 50%;
}
.news__more {
  text-align: center;
  margin-bottom: 80px;
}

.btn-more {
  display: inline-block;
  padding: 25px 50px;
  background-color: #1B4B73;
  color: #FFFFFF;
  font-size: 21px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 4px 15px rgba(27, 75, 115, 0.2);
          box-shadow: 0 4px 15px rgba(27, 75, 115, 0.2);
}
@media screen and (min-width: 768px) {
  .btn-more {
    font-size: 23px;
    min-width: 350px;
  }
}
@media screen and (min-width: 1024px) {
  .btn-more {
    font-size: 24px;
    min-width: 400px;
  }
}
.btn-more:hover {
  background-color: #163e5e;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 6px 20px rgba(27, 75, 115, 0.3);
          box-shadow: 0 6px 20px rgba(27, 75, 115, 0.3);
}
.btn-more:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.footer {
  background-color: #1B4B73;
  padding: 80px 0 30px;
  color: #FFFFFF;
}
.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .footer__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 60px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.footer__map {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 768px) {
  .footer__map {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: 500px;
  }
}
.footer__info {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer__info {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 20px;
  }
}
.footer__title {
  font-size: 32px;
  font-weight: bold;
  color: #C5A572;
  margin-bottom: 30px;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .footer__title {
    font-size: 36px;
    text-align: left;
  }
}
.footer__address {
  margin-bottom: 20px;
}
.footer__address p {
  font-size: 21px;
  line-height: 1.8;
  margin-bottom: 5px;
  color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .footer__address p {
    font-size: 23px;
  }
}
.footer__tel {
  margin: 15px 0;
}
.footer__tel a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer__tel a:hover {
  opacity: 0.8;
}
.footer__tel a i {
  font-size: 20px;
  color: #1B4B73;
}
.footer__tel-name {
  display: block;
  font-size: 16px;
  margin-top: 5px;
  color: #FFFFFF;
}
.footer__social {
  text-align: center;
  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;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .footer__social {
    text-align: left;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer__social-link {
  display: inline-block;
  font-size: 40px;
  color: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 50%;
}
.footer__social-link:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  background-color: rgba(255, 255, 255, 0.2);
}
.footer__produced {
  text-align: center;
}
.footer__produced-link {
  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;
  gap: 8px;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer__produced-link:hover {
  opacity: 0.8;
}
.footer__produced-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  letter-spacing: 0.05em;
}
.footer__produced-logo {
  height: 100px;
  width: auto;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  opacity: 0.7;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer__produced-logo:hover {
  opacity: 1;
}
.footer__copyright {
  text-align: center;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.schedule-page {
  padding: 80px 0;
}

.schedule-pdf {
  margin-bottom: 80px;
}
.schedule-pdf__title {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: #1B4B73;
}

.schedule-image__viewer {
  max-width: 1000px;
  margin: 10px auto 30px;
  border: 1px solid rgba(51, 51, 51, 0.1);
  border-radius: 10px;
  overflow: hidden;
  background-color: #FFFFFF;
}
.schedule-image__frame {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}
.schedule-image__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.schedule-image__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 21px;
  font-weight: bold;
  color: #FFFFFF;
  background-color: #1B4B73;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.schedule-image__button:hover {
  background-color: #11304a;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.schedule-image__button i {
  font-size: 24px;
}
.schedule-image__frame {
  cursor: pointer;
  -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;
}
.schedule-image__frame:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.image-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-animation: fadeIn 0.3s ease;
          animation: fadeIn 0.3s ease;
}
.image-modal__content {
  position: relative;
  margin: auto;
  padding: 20px;
  width: 90%;
  height: 90%;
  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;
}
.image-modal__close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2001;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.image-modal__close:hover {
  color: #bbb;
}
.image-modal__image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.space-rental {
  max-width: 800px;
  margin: 0 auto;
}
.space-rental__title {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #1B4B73;
}

.rental-info__item {
  padding: 20px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
}
.rental-info__item:first-child {
  border-top: 1px solid rgba(51, 51, 51, 0.1);
}
.rental-info__name {
  font-size: 23px;
  font-weight: bold;
  color: #1B4B73;
  margin-bottom: 15px;
}
.rental-info__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  font-size: 21px;
}
.rental-info__dates {
  margin-right: 15px;
}
.rental-info__note {
  color: #C5A572;
  font-weight: bold;
}
.rental-info__teacher {
  margin-right: 15px;
}
.rental-info__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.rental-info__free {
  color: #C5A572;
  font-weight: bold;
}
.rental-info__contact a {
  color: #1B4B73;
  text-decoration: none;
  font-weight: bold;
}
.rental-info__contact a:hover {
  text-decoration: underline;
}

.rental-space-info {
  max-width: 800px;
  margin: 60px auto 0;
  padding: 40px;
  background-color: rgba(245, 247, 249, 0.9);
  border-radius: 15px;
  text-align: center;
}
.rental-space-info__title {
  font-size: 28px;
  font-weight: bold;
  color: #1B4B73;
  margin-bottom: 30px;
}
.rental-space-info__content {
  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;
  gap: 25px;
}
.rental-space-info__text {
  font-size: 21px;
  line-height: 1.6;
  color: #333333;
}
.rental-space-info__contact {
  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;
  gap: 10px;
}
.rental-space-info__contact-text {
  font-size: 18px;
  color: #333333;
  font-weight: bold;
}
.rental-space-info__contact-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: bold;
  color: #1B4B73;
  text-decoration: none;
  padding: 15px 25px;
  background-color: #FFFFFF;
  border-radius: 50px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.rental-space-info__contact-link:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.rental-space-info__contact-link i {
  font-size: 20px;
}
.rental-space-info__contact-name {
  font-size: 18px;
  color: #333333;
}

@media print {
  .header,
  .footer,
  .fixed-nav,
  .schedule-image__actions {
    display: none !important;
  }
  .schedule-image__viewer {
    border: none;
  }
}
.lesson-page {
  padding: 80px 0;
}

.lesson-intro {
  text-align: center;
  margin-bottom: 60px;
}
.lesson-intro__text {
  font-size: 24px;
  font-weight: bold;
  color: #C5A572;
  margin-bottom: 20px;
}
.lesson-intro__link {
  display: inline-block;
  padding: 15px 40px;
  background-color: #1B4B73;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 50px;
  font-size: 21px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.lesson-intro__link:hover {
  background-color: #11304a;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.lesson-type {
  margin-bottom: 80px;
}
.lesson-type__title {
  font-size: 28px;
  color: #1B4B73;
  text-align: center;
  margin-bottom: 20px;
}
.lesson-type__description {
  text-align: center;
  font-size: 21px;
  line-height: 1.8;
  margin-bottom: 30px;
  padding: 0 20px;
}
.lesson-type__price {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
  background-color: rgba(245, 247, 249, 0.9);
  border-radius: 10px;
}
.lesson-type__price-main {
  font-size: 28px;
  font-weight: bold;
  color: #1B4B73;
  margin-bottom: 10px;
}
.lesson-type__price-note {
  font-size: 18px;
  color: #C5A572;
}
.lesson-type__price-row {
  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;
  max-width: 400px;
  margin: 0 auto;
  padding: 15px 0;
  font-size: 21px;
  border-bottom: 1px dashed rgba(51, 51, 51, 0.1);
}
.lesson-type__price-row:last-child {
  border-bottom: none;
}
.lesson-type__price-row span:last-child {
  font-weight: bold;
  color: #1B4B73;
}

.lesson-schedule {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background-color: rgba(245, 247, 249, 0.9);
  border-radius: 15px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.lesson-schedule__item {
  padding: 20px 0;
  border-bottom: 1px dashed rgba(51, 51, 51, 0.1);
}
.lesson-schedule__item:last-child {
  border-bottom: none;
}
.lesson-schedule__day {
  font-size: 24px;
  font-weight: bold;
  color: #1B4B73;
  margin-bottom: 10px;
}
.lesson-schedule__times li {
  font-size: 21px;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}
.lesson-schedule__times li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.lesson-schedule__note {
  padding: 20px;
}
.lesson-schedule__note ul li {
  font-size: 21px;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}
.lesson-schedule__note ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.lesson-contact {
  text-align: center;
  margin-top: 80px;
}
.lesson-contact__text {
  font-size: 21px;
  margin-bottom: 30px;
}
.lesson-contact__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 20px 40px;
  font-size: 21px;
  font-weight: bold;
  color: #FFFFFF;
  background-color: #1B4B73;
  text-decoration: none;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.lesson-contact__button:hover {
  background-color: #11304a;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.lesson-contact__button i {
  font-size: 24px;
}

@media screen and (min-width: ) {
  .lesson-schedule {
    padding: 20px;
  }
  .lesson-schedule__day {
    font-size: 21px;
  }
  .lesson-schedule__times li, .lesson-schedule__note ul li {
    font-size: 18px;
  }
  .lesson-contact__text {
    font-size: 18px;
  }
  .lesson-contact__button {
    padding: 15px 30px;
    font-size: 18px;
  }
  .lesson-intro__text {
    font-size: 21px;
  }
  .lesson-intro__link {
    font-size: 18px;
    padding: 12px 30px;
  }
  .lesson-type__title {
    font-size: 24px;
  }
  .lesson-type__description {
    font-size: 18px;
  }
  .lesson-type__price-main {
    font-size: 24px;
  }
  .lesson-type__price-note {
    font-size: 16px;
  }
  .lesson-type__price-row {
    font-size: 18px;
  }
}
.lesson-price {
  margin: 80px 0;
}

.price-list {
  max-width: 800px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.price-list__item {
  background-color: rgba(245, 247, 249, 0.9);
  border-radius: 15px;
  padding: 30px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.price-list__title {
  font-size: 24px;
  color: #1B4B73;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #C5A572;
}
.price-list__content {
  padding: 0 20px;
}
.price-list__detail {
  font-size: 21px;
}
.price-list__row {
  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;
  padding: 15px 0;
  border-bottom: 1px dashed rgba(51, 51, 51, 0.1);
}
.price-list__row:last-child {
  border-bottom: none;
}
.price-list__row dt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.price-list__row dd {
  font-weight: bold;
  color: #1B4B73;
  font-size: 24px;
}
.price-list__note {
  margin-top: 15px;
  color: #C5A572;
  font-size: 18px;
  font-weight: bold;
}

@media screen and (min-width: ) {
  .price-list {
    padding: 0 20px;
  }
  .price-list__item {
    padding: 20px;
  }
  .price-list__title {
    font-size: 21px;
  }
  .price-list__detail {
    font-size: 18px;
  }
  .price-list__row dd {
    font-size: 21px;
  }
  .price-list__note {
    font-size: 16px;
  }
}
.party-page {
  padding: 80px 0;
}

.party-event {
  margin-bottom: 80px;
}
.party-event__title {
  font-size: 32px;
  color: #1B4B73;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 15px;
  border-bottom: 2px solid #C5A572;
}
.party-event__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .party-event__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 60px;
  }
}
.party-event__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.party-event__detail {
  margin-bottom: 30px;
}
.party-event__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 0;
  border-bottom: 1px dashed rgba(51, 51, 51, 0.1);
}
.party-event__row dt {
  width: 100px;
  font-weight: bold;
  color: #1B4B73;
}
.party-event__row dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 21px;
}
.party-event__features {
  background-color: rgba(245, 247, 249, 0.9);
  padding: 30px;
  border-radius: 15px;
}
.party-event__features h4 {
  font-size: 21px;
  color: #1B4B73;
  margin-bottom: 15px;
}
.party-event__features ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}
.party-event__features ul li {
  font-size: 18px;
  padding: 8px 20px;
  background-color: #FFFFFF;
  border-radius: 30px;
}
.party-event__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.party-event__image img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.party-attendant {
  margin-bottom: 60px;
  text-align: center;
}
.party-attendant__title {
  font-size: 28px;
  color: #1B4B73;
  margin-bottom: 30px;
}
.party-attendant__content {
  background-color: rgba(245, 247, 249, 0.9);
  padding: 40px;
  border-radius: 15px;
}
.party-attendant__text {
  font-size: 21px;
  margin-bottom: 20px;
}
.party-attendant__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.party-attendant__list li {
  font-size: 21px;
  padding: 10px 30px;
  border-radius: 30px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #FFFFFF;
  -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;
}
.party-attendant__list li:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.party-attendant__list li:nth-child(1), .party-attendant__list li:nth-child(2), .party-attendant__list li:nth-child(3), .party-attendant__list li:nth-child(4) {
  background-color: #1B4B73;
}
.party-attendant__list li:nth-child(5) {
  background-color: #B54B4B;
}

.party-reserve {
  text-align: center;
}
.party-reserve__text {
  font-size: 21px;
  margin-bottom: 30px;
}
.party-reserve__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 20px 40px;
  font-size: 21px;
  font-weight: bold;
  color: #FFFFFF;
  background-color: #1B4B73;
  text-decoration: none;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.party-reserve__button:hover {
  background-color: #11304a;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.party-reserve__button i {
  font-size: 24px;
}

.party-schedule {
  text-align: center;
  margin: 60px 0;
  padding: 40px;
  background-color: rgba(245, 247, 249, 0.9);
  border-radius: 15px;
}
.party-schedule__text {
  font-size: 21px;
  margin-bottom: 20px;
  color: #1B4B73;
}
.party-schedule__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 15px 40px;
  font-size: 18px;
  color: #FFFFFF;
  background-color: #C5A572;
  text-decoration: none;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.party-schedule__button:hover {
  background-color: #b68e4e;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.party-schedule__button i {
  font-size: 21px;
}

@media screen and (min-width: ) {
  .party-event__title {
    font-size: 28px;
  }
  .party-event__row dd {
    font-size: 18px;
  }
  .party-attendant__text {
    font-size: 18px;
  }
  .party-attendant__list li {
    font-size: 18px;
  }
  .party-reserve__text {
    font-size: 18px;
  }
  .party-reserve__button {
    padding: 15px 30px;
    font-size: 18px;
  }
  .party-schedule {
    padding: 30px 20px;
  }
  .party-schedule__text {
    font-size: 18px;
  }
  .party-schedule__button {
    padding: 12px 30px;
    font-size: 16px;
  }
}
.movie-page {
  padding: 80px 0;
}

.movie-intro {
  text-align: center;
  margin-bottom: 60px;
}
.movie-intro__text {
  font-size: 21px;
  line-height: 1.8;
  color: #333333;
  max-width: 800px;
  margin: 0 auto;
}

.movie-categories {
  margin-bottom: 80px;
}

.movie-category {
  margin-bottom: 60px;
}
.movie-category__title {
  font-size: 32px;
  font-weight: bold;
  color: #1B4B73;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 15px;
  border-bottom: 2px solid #C5A572;
}
.movie-category__videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.movie-item {
  background-color: #FFFFFF;
  border-radius: 15px;
  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);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.movie-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.movie-item__thumbnail {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.movie-item__thumbnail iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px 10px 0 0;
}
.movie-item__content {
  padding: 20px;
}
.movie-item__title {
  font-size: 21px;
  font-weight: bold;
  color: #1B4B73;
  margin-bottom: 10px;
  line-height: 1.4;
}
.movie-item__description {
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 15px;
}
.movie-item__duration {
  display: inline-block;
  font-size: 14px;
  color: #C5A572;
  font-weight: bold;
  padding: 5px 12px;
  background-color: rgba(197, 165, 114, 0.1);
  border-radius: 20px;
}

.movie-contact {
  text-align: center;
  padding: 60px 40px;
  background-color: rgba(245, 247, 249, 0.9);
  border-radius: 15px;
  margin-top: 60px;
}
.movie-contact__text {
  font-size: 21px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.movie-contact__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 20px 40px;
  font-size: 21px;
  font-weight: bold;
  color: #FFFFFF;
  background-color: #1B4B73;
  text-decoration: none;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.movie-contact__button:hover {
  background-color: #11304a;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.movie-contact__button i {
  font-size: 24px;
}

@media screen and (min-width: ) {
  .movie-category__title {
    font-size: 28px;
  }
  .movie-category__videos {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .movie-item__thumbnail {
    padding-bottom: 56.25%;
  }
  .movie-item__content {
    padding: 15px;
  }
  .movie-item__title {
    font-size: 18px;
  }
  .movie-item__description {
    font-size: 14px;
  }
  .movie-contact {
    padding: 40px 20px;
  }
  .movie-contact__text {
    font-size: 18px;
  }
  .movie-contact__button {
    padding: 15px 30px;
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .movie-category__videos {
    grid-template-columns: repeat(2, 1fr);
  }
}
.archive-page {
  padding: 80px 0;
}

.archive {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.archive__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 60px;
}
.archive__item {
  background-color: #F5F7F9;
  border-radius: 15px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  -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;
}
.archive__item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.archive__link {
  display: block;
  text-decoration: none;
  color: #333333;
}
.archive__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.archive__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;
}
.archive__image:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.archive__content {
  padding: 20px;
}
.archive__date {
  display: inline-block;
  font-size: 14px;
  color: #C5A572;
  margin-bottom: 10px;
}
.archive__title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.4;
}
.archive__excerpt {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(51, 51, 51, 0.8);
}
.archive__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.archive__pagination-item {
  width: 35px;
  height: 35px;
  font-size: 14px;
  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;
  border-radius: 50%;
  text-decoration: none;
  color: #333333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.archive__pagination-item:hover {
  background-color: rgba(27, 75, 115, 0.1);
  color: #1B4B73;
}
.archive__pagination-current {
  background-color: #1B4B73;
  color: #FFFFFF;
}
.archive__pagination-prev, .archive__pagination-next {
  width: auto;
  padding: 0 15px;
}

@media screen and (min-width: 768px) {
  .archive__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .archive__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .archive__content {
    padding: 30px;
  }
  .archive__title {
    font-size: 21px;
  }
  .archive__pagination-item {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}
.single-page {
  padding: 80px 0;
}

.single {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.single__header {
  text-align: center;
  margin-bottom: 40px;
}
.single__title {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #1B4B73;
}
.single__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.single__date {
  font-size: 16px;
  color: #C5A572;
}
.single__category {
  font-size: 14px;
  padding: 5px 15px;
  background-color: #1B4B73;
  color: #FFFFFF;
  border-radius: 20px;
}
.single__image {
  margin-bottom: 40px;
  border-radius: 15px;
  overflow: hidden;
}
.single__image img {
  width: 100%;
  height: auto;
}
.single__content {
  line-height: 1.8;
  margin-bottom: 60px;
}
.single__content h2 {
  font-size: 24px;
  font-weight: bold;
  color: #1B4B73;
  margin: 40px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #C5A572;
}
.single__content p {
  margin-bottom: 20px;
  font-size: 16px;
}
.single__content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}
.single__content ul li {
  margin-bottom: 10px;
  font-size: 16px;
  list-style-type: disc;
}
.single__cta {
  text-align: center;
  background-color: #F5F7F9;
  padding: 40px;
  border-radius: 15px;
  margin: 40px 0;
}
.single__cta p {
  font-size: 18px;
  margin-bottom: 20px;
}
.single__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 15px 40px;
  background-color: #1B4B73;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.single__button:hover {
  background-color: #11304a;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.single__button i {
  font-size: 20px;
}
.single__footer {
  border-top: 1px solid rgba(51, 51, 51, 0.1);
  padding-top: 40px;
  margin-bottom: 40px;
}
.single__share {
  text-align: center;
}
.single__share-title {
  display: block;
  font-size: 18px;
  margin-bottom: 15px;
  color: #1B4B73;
}
.single__share-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}
.single__share-button {
  width: 40px;
  height: 40px;
  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;
  background-color: #F5F7F9;
  color: #1B4B73;
  border-radius: 50%;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.single__share-button:hover {
  background-color: #1B4B73;
  color: #FFFFFF;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.single__nav {
  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: 20px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(51, 51, 51, 0.1);
}
.single__nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 10px 20px;
  text-decoration: none;
  color: #333333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.single__nav-item:hover {
  color: #1B4B73;
}
.single__nav-archive {
  padding: 10px 30px;
  background-color: #F5F7F9;
  border-radius: 30px;
}
.single__nav-archive:hover {
  background-color: #1B4B73;
  color: #FFFFFF;
}

@media screen and (min-width: ) {
  .single__title {
    font-size: 24px;
  }
  .single__content h2 {
    font-size: 21px;
  }
  .single__cta {
    padding: 30px 20px;
  }
  .single__nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 15px;
  }
  .single__nav-archive {
    width: 100%;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}