@charset "UTF-8";
body {
  font-size: 16px;
  color: #603813;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6875;
  height: 100%;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.pc {
  display: inline;
}

.sp {
  display: none;
}

.header {
  background: rgba(243, 239, 239, 0.75);
}

.header.fixed {
  background: rgba(243, 239, 239, 0.75);
}

.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
}

.header_inner {
  max-width: 960px;
  height: 85px;
  margin: 0 auto;
}

.header-nav {
  align-items: center;
}

.header-nav-list {
  display: flex;
  justify-content: space-around;
}

.header-nav-item-link {
  display: block;
  color: #1d1a1a;
  font-weight: bold;
  height: 85px;
  line-height: 85px;
}

.fixed .header-nav-item-link {
  height: 85px;
  line-height: 25px;
  font-size: 16px;
  display: flex;
  align-items: center;
  text-align: center;
}

.main_visual {
  width: 100%;
  height: auto;
  position: relative;
}

.header_sp {
  display: none;
}

.navigation {
  display: none;
}

.stars {
  position: relative;
  width: 100%; /* 星空の横幅 */
  overflow: hidden; /* 星が枠外にはみ出すのを防ぐ */
  z-index: 50;
}

/* 星のスタイル */
.star {
  position: absolute;
  display: block;
  background-color: #fff; /* 星の色 */
  border-radius: 50%;
  box-shadow: 0 0 4px 2px rgba(255, 255, 255, 0.2); /* 星の影 */
  opacity: 0;
  animation: twinkle 5s infinite;
  z-index: 50;
}

/* 星がキラキラ光るアニメーション */
@keyframes twinkle {
  0% {
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
.main_visual_image_pc {
  -o-object-fit: cover;
     object-fit: cover;
}

.main_visual_image_sp {
  display: none;
}

.toplogo {
  width: 65%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  animation: fadeIn 2s ease-out forwards;
  z-index: 100;
}

.toplogo_sp {
  display: none;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.mv_left_pc {
  position: absolute;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 36%;
  animation: fadeIn 5s ease-out forwards;
  z-index: 100;
}

.mv_right_pc {
  position: absolute;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 36%;
  animation: fadeIn 5s ease-out forwards;
  z-index: 100;
}

.mv_top_sp {
  display: none;
}

.mv_bottom_sp {
  display: none;
}

.movie_content {
  position: relative;
  background: #00823a;
}

.movie_content_bg {
  background-image: url(../images/school_bg.png);
  background-size: cover;
  background-repeat: repeat;
  animation: fadeIn 3s ease-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.movie_content_inner {
  max-width: 1100px;
  /* height: 560px; */
  margin: 0 auto;
}

.movie_content_items {
  padding: 52px 0;
  display: flex;
  justify-content: space-around;
}

.movie_content_item {
  width: 300px;
}

figure {
  position: relative;
  text-align: center;
}

.youtube_frame {
  width: 253px;
  height: 439px;
  position: absolute;
  aspect-ratio: 13/16;
  left: 23px;
  top: 17px;
}

.main_content_textarea {
  position: relative;
}

.main_content_left {
  position: absolute;
  left: 10px;
  top: 0;
  width: 18%;
}

.main_content_right {
  position: absolute;
  right: 10px;
  top: 0;
  width: 18%;
}

.main_content_top {
  background: url(../images/information_back.jpg) repeat center center;
}
.main_content_top p {
  color: #fff;
  padding: 50px;
  text-align: center;
  line-height: 2;
  font-size: 18px;
}

.page_nav {
  background: #42210b;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page_nav_lists {
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page_nav_list {
  display: block;
  color: #ffffff;
  text-align: center;
  font-size: 16px;
  padding: 10px 15px;
}

.main_content_wrap {
  background: url(../images/main_bg.jpg);
  background-size: 100%;
  padding-top: 30px;
}

.snow_container {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 50;
}

.snow {
  background-color: snow;
  border-radius: 50%;
  position: absolute;
  animation: animate-snow 10s linear;
}

@keyframes animate-snow {
  0% {
    opacity: 0;
    top: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: 100vh;
  }
}
.main_content_pop {
  max-width: 960px;
  margin: 0 auto;
  padding-bottom: 60px;
  position: relative;
  z-index: 150;
}

.main_content_text {
  font-family: "BIZ UDMincho", serif;
  color: #fff;
  font-size: 21px;
  text-align: center;
  line-height: 2;
  margin-bottom: 20px;
}

.main_pop_text {
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  color: #fff;
  line-height: 2;
  margin-bottom: 20px;
}
.main_pop_text:nth-child(n+2) {
  margin-top: 30px;
}

.main_content_pop_title {
  background: #147663;
  padding: 20px;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  position: relative;
  margin: 30px auto 50px auto;
  width: 860px;
  z-index: 150;
  font-family: "BIZ UDMincho", serif;
}

.main_content_pop_title_before {
  position: absolute;
  left: 10%;
  top: 7px;
  width: 10%;
  z-index: 150;
}

.main_content_pop_title_after {
  position: absolute;
  right: 10%;
  top: 7px;
  width: 10%;
  z-index: 150;
}

.premium_bnr {
  margin-top: 20px;
}
.premium_bnr p {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  color: #fff;
}

.main_content_slider {
  width: 1200px;
  margin: 0 auto;
}

.slider .slick-slide {
  margin: 0 60px;
  padding: 60px 0;
  position: relative;
}

.slider .slick-slide .main_content_slider_img {
  width: 500px;
  height: 373px;
  transition: all 0.6s ease 0.4s;
  opacity: 0.8;
  box-shadow: 7px 7px 15px -5px #666;
  overflow: hidden;
}

.slider .slick-slide.slick-current .main_content_slider_img {
  transform: scale(1.2);
  opacity: 1;
}

.slider .slick-slide .main_content_slider_img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.slider .slick-arrow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 0;
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}

.slider .slick-arrow::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #09000d;
  border-width: 3px 3px 0 0;
  position: absolute;
  top: 24px;
  transform: rotate(45deg);
}

.slider .slick-next {
  right: 0;
}

.slider .slick-prev {
  left: 0;
}

.slider .slick-next::before {
  left: 20px;
}

.slider .slick-prev::before {
  border-width: 0 0 3px 3px;
  right: 22px;
}

.dots .slick-dots {
  text-align: center;
}

.dots .slick-dots li {
  display: inline-block;
}

.dots .slick-dots button {
  display: block;
  width: 10px;
  height: 10px;
  margin: 6px;
  font-size: 0;
  padding: 0;
  border: 0;
  outline: none;
  cursor: pointer;
  background: #bcbcbc;
  border-radius: 50%;
}

.dots .slick-dots .slick-active button {
  background: #0a467d;
}

.main_content_pop_text2 {
  font-weight: bold;
  text-align: center;
  font-size: 20px;
  line-height: 2;
  letter-spacing: 5px;
  margin-top: 30px;
}

.main_content_pop_wrapping {
  max-width: 960px;
  margin: 0 auto;
  padding-bottom: 250px;
}

.pop_image {
  margin-bottom: 20px;
  z-index: 150;
}

.wrapping_text {
  font-size: 18px;
  margin-top: -20px;
  color: #fff;
}

.school_content {
  background: url(../images/school_bg.png) repeat center center;
  padding: 30px 0 100px 0;
  position: relative;
}
.school_content p {
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  margin: 80px auto;
}

.school_content_pop_title {
  background: #9d1f24;
  padding: 20px;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  position: relative;
  margin: 30px auto 50px auto;
  width: 860px;
  z-index: 150;
  font-family: "BIZ UDMincho", serif;
}

.school_content_pop_title_before {
  position: absolute;
  left: 10%;
  top: 7px;
  width: 10%;
  z-index: 150;
}

.school_content_pop_title_after {
  position: absolute;
  right: 10%;
  top: 7px;
  width: 10%;
  z-index: 150;
}

.school_bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 960px;
}

.event_calendar {
  background: url(../images/school_bg.png) repeat center top;
}

.event_calendar_wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 50px 0;
}

.shoplist {
  background: url(../images/shop_bg.jpg);
  background-size: 100%;
  background-repeat: repeat;
}

.shoplist_title {
  width: 60%;
  margin: 50px auto;
}

.gift_bnr {
  margin-bottom: 50px;
}

.shop_list_wrap {
  width: 960px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  /* padding: 10px; */
  box-sizing: border-box;
  margin: 0 auto;
  border-radius: 5px;
}

.shoplist .shoplist_box {
  width: 48%;
  margin: 20px 0;
}

.shoplist .shoplist_box a {
  transition: All 0.5s ease;
}

.shoplist .shoplist_box a:hover {
  opacity: 0.6;
}

.shoplist .shoplist_box ul {
  display: flex;
  align-items: center;
  margin-bottom: 3%;
  list-style-type: none;
}

.shoplist .shoplist_box ul li {
  margin-left: 5px;
}

.shoplist .shoplist_box ul li:first-child {
  margin-right: auto;
  margin-left: -5px;
}

#page-top a {
  width: 180px;
  height: 120px;
  bottom: 50px;
  padding: 20px;
  position: fixed;
  right: 0;
  z-index: 150;
}

.footer {
  color: #ffffff;
  background: #40220f;
  text-align: center;
  padding: 30px;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer .menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.footer .menu li {
  margin: 0;
  padding: 0 20px;
}

.footer .copyright {
  margin: 0;
  padding: 20px 0 0 0;
}

/* --------------------------------------------------
sp ウィンドウ幅が最大767pxまでの場合に適用
----------------------------------------------------- */
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: inline;
  }
  .header {
    display: none;
  }
  .header.fixed {
    display: none;
  }
  .header_inner {
    display: none;
  }
  .header-nav-list {
    display: none;
  }
  .main_visual {
    width: 100%;
    height: auto;
  }
  .main_visual_image_pc {
    display: none;
  }
  .main_visual_image_sp {
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: 100;
  }
  .toplogo {
    display: none;
  }
  .toplogo_sp {
    display: block;
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-object-fit: cover;
       object-fit: cover;
    animation: fadeIn 2s ease-out forwards;
    z-index: 100;
  }
  .mv_left_pc {
    display: none;
  }
  .mv_right_pc {
    display: none;
  }
  .mv_top_sp {
    display: block;
    position: absolute;
    top: 0;
    animation: fadeIn 5s ease-out forwards;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: 100;
  }
  .mv_bottom_sp {
    display: block;
    position: absolute;
    bottom: 0;
    animation: fadeIn 5s ease-out forwards;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: 100;
  }
  .header_sp {
    background-color: transparent;
    position: fixed;
    z-index: 200;
    display: block;
  }
  .header_hamburger_menu {
    grid-column: 2/3;
    margin-right: -20px;
    padding: 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    min-height: 60px;
  }
  .hamburger_menu {
    width: 50px;
    height: 50px;
    position: relative;
    border: none;
    background: transparent;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    padding: 0;
    cursor: pointer;
    background: #dba660;
    position: fixed;
    right: 10px;
    z-index: 200;
  }
  .hamburger_menu__bar {
    display: inline-block;
    width: 44%;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
  }
  .hamburger_menu__bar:first-child {
    top: 16px;
  }
  .hamburger_menu__bar:nth-child(2) {
    top: 24px;
  }
  .hamburger_menu__bar:last-child {
    top: 32px;
  }
  .hamburger_menu--open .hamburger_menu__bar {
    top: 50%;
  }
  .hamburger_menu--open .hamburger_menu__bar:first-child {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
  }
  .hamburger_menu--open .hamburger_menu__bar:last-child {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  }
  .hamburger_menu--open .hamburger_menu__bar:nth-child(2) {
    display: none;
  }
  .navigation {
    display: none;
    background: rgba(255, 255, 255, 0.7);
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 150;
  }
  .navigation_list {
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0;
  }
  .navigation_list-item {
    border-bottom: dotted 1px #474747;
  }
  .navigation_list-item:first-child {
    border-top: dotted 1px #474747;
  }
  .navigation_link {
    color: #000;
    font-weight: 700;
    text-decoration: none;
    display: block;
    padding: 24px 0;
    transition: 0.5s;
  }
  /* .movie_content{
      background-image: url(../images/slidbgsp2.jpg);
      height: 1050px;
  } */
  .movie_content_inner {
    max-width: 760px;
  }
  .movie_content_items {
    flex-direction: column;
    margin: 0 auto;
  }
  .movie_content_item {
    margin: 0 auto;
  }
  /* .border {
      bottom: -84.3%;
  } */
  .fadeIn {
    transform: translate3d(0, 50px, 0);
    transition: 1s;
    opacity: 0;
  }
  .fadeIn.scrollIn {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  .main_content_wrap {
    background: url(../images/main_bg_sp.jpg);
    background-size: 100%;
    margin: 0 auto;
  }
  .main_content_left {
    width: 36%;
  }
  .main_content_right {
    width: 36%;
  }
  .main_content_top {
    height: auto;
  }
  .main_content_top p {
    font-size: 16px;
    padding: 80px 50px 50px 50px;
  }
  .main_content_pop_title {
    font-size: 22px;
    position: relative;
    margin: 0 auto 50px auto;
    width: 360px;
    z-index: 150;
  }
  .main_content_pop_title_before {
    position: absolute;
    left: 2%;
    top: 15px;
    width: 13%;
    z-index: 150;
  }
  .main_content_pop_title_after {
    position: absolute;
    right: 2%;
    top: 15px;
    width: 13%;
    z-index: 150;
  }
  .premium_bnr p {
    font-size: 18px;
  }
  .page_nav {
    height: auto;
  }
  .page_nav_lists {
    max-width: 370px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .page_nav_list {
    display: block;
    color: #ffffff;
    text-align: center;
    font-size: 12px;
    padding: 10px 15px;
  }
  .main_content_slider {
    width: 360px;
  }
  .slider .slick-slide .main_content_slider_img {
    width: 370px;
    height: 300px;
  }
  .slider .slick-arrow {
    width: 30px;
    height: 30px;
  }
  .slider .slick-arrow::before {
    top: 9px;
  }
  .slider .slick-next::before {
    left: 9px;
  }
  .slider .slick-prev::before {
    right: 9px;
  }
  .slider .slick-prev {
    left: -26px;
  }
  .slider .slick-next {
    right: -26px;
  }
  .main_content_text {
    font-size: 16px;
  }
  .school_content p {
    font-size: 36px;
  }
  .main_content_pop_wrapping {
    padding-bottom: 80px;
  }
  .main_content_text_pc {
    display: none;
  }
  .main_content_text_sp {
    display: block;
  }
  .main_top_line_pc {
    display: none;
  }
  .main_top_line_sp {
    display: block;
    position: absolute;
    bottom: 0%;
  }
  .main_content_pop {
    width: 100%;
    padding: 0 10px 30px 10px;
  }
  .main_content_pop_text {
    font-size: 10px;
  }
  .main_content_pop_text2 {
    font-size: 13px;
  }
  .wrapping_text {
    font-size: 10px;
  }
  .school_content {
    position: relative;
  }
  .school_content_pop_title {
    font-size: 22px;
    margin: 0 auto 50px auto;
    width: 360px;
    z-index: 150;
  }
  .school_content_pop_title_before {
    position: absolute;
    top: 15px;
    width: 13%;
    z-index: 150;
  }
  .school_content_pop_title_after {
    position: absolute;
    right: 2%;
    top: 15px;
    width: 13%;
    z-index: 150;
  }
  .school_bottom {
    width: 370px;
  }
  .event_calendar_wrap {
    width: 360px;
  }
  .shoplist {
    background: url(../images/shop_bg_sp.jpg);
  }
  .shoplist_title {
    width: 80%;
    margin: 30px auto;
  }
  .gift_bnr {
    margin-bottom: 0;
  }
  .shoplist .shoplist_box {
    width: 100%;
    margin: 20px 0;
  }
  .shop_list_wrap {
    width: 375px;
    flex-direction: column;
    box-sizing: border-box;
    margin: 0 auto;
    border-radius: 5px;
    padding: 0 10px;
  }
  #page-top a {
    width: 140px;
    height: 80px;
    right: -18px;
  }
}
@media screen and (max-width: 375px) {
  .slider .slick-slide .main_content_slider_img {
    width: 360px;
    height: 290px;
  }
  .slider .slick-arrow {
    width: 25px;
    height: 25px;
  }
  .slider .slick-arrow::before {
    top: 8px;
    width: 9px;
    height: 9px;
  }
  .slider .slick-next::before {
    left: 8px;
  }
  .slider .slick-prev::before {
    right: 8px;
  }
  .slider .slick-prev {
    left: -6px;
  }
  .slider .slick-next {
    right: -6px;
  }
}/*# sourceMappingURL=style.css.map */