@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

#strengths,
#classes,
#english,
#events {
  scroll-margin-top: 100px;
}

@media screen and (max-width: 1024px) {
  #strengths,
  #classes,
  #english,
  #events {
    scroll-margin-top: 80px;
  }
}
html body #wrapper {
  /*----------------------------------------------------
      HEADER STYLE
  ----------------------------------------------------*/
}
html body #wrapper > header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  padding: 1.5rem 1.5rem 1rem;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 4px 12px -6px rgba(0, 0, 0, 0.3);
}
html body #wrapper > header .header_logo {
  width: 20%;
}
html body #wrapper > header .header_logo .logo_img img {
  width: 100%;
  height: auto;
  display: block;
}
html body #wrapper > header {
  /* ------------------------------
      PC NAV
  ------------------------------ */
}
html body #wrapper > header .nav_pc {
  display: flex;
  align-items: center;
}
html body #wrapper > header .nav_pc .nav_area {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: right;
}
html body #wrapper > header .nav_pc .nav_area a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #000;
}
html body #wrapper > header .nav_pc .nav_area a img {
  display: block;
  width: 100%;
  height: auto;
}
html body #wrapper > header .nav_pc .btn_area {
  display: flex;
}
html body #wrapper > header .nav_pc .btn_area a {
  text-align: right;
}
html body #wrapper > header {
  /* ------------------------------
      SP NAV
  ------------------------------ */
}
html body #wrapper > header .nav_sp {
  display: none;
}
html body #wrapper > header .sp_menu {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
html body #wrapper > header .sp_menu ul {
  padding: 1.5rem;
}
html body #wrapper > header .sp_menu li {
  border-bottom: 1px solid #eee;
}
html body #wrapper > header .sp_menu a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 0;
  color: #222;
  font-weight: 700;
  text-decoration: none;
}
html body #wrapper > header .sp_menu a img {
  width: 28px;
  height: auto;
  display: block;
  flex-shrink: 0;
}
html body #wrapper > header .sp_menu a span {
  display: block;
}
html body #wrapper > header .sp_menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
html body #wrapper > header {
  /* ------------------------------
      TABLET / SP
  ------------------------------ */
}
@media screen and (max-width: 1024px) {
  html body #wrapper > header {
    height: 80px;
    padding: 1rem;
  }
  html body #wrapper > header .header_logo {
    width: 40%;
  }
  html body #wrapper > header .nav_pc {
    display: none;
  }
  html body #wrapper > header .nav_sp {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.7rem;
  }
  html body #wrapper > header .nav_sp .download,
  html body #wrapper > header .nav_sp .ig,
  html body #wrapper > header .nav_sp .hamburger {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
  }
  html body #wrapper > header .nav_sp .download a,
  html body #wrapper > header .nav_sp .ig a {
    display: block;
    width: 100%;
    height: 100%;
  }
  html body #wrapper > header .nav_sp .download img,
  html body #wrapper > header .nav_sp .ig img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: contain;
       object-fit: contain;
  }
  html body #wrapper > header .nav_sp .hamburger {
    position: relative;
    border: none;
    border-radius: 12px;
    background-color: #E95383;
    cursor: pointer;
    padding: 0;
  }
  html body #wrapper > header .nav_sp .hamburger span {
    position: absolute;
    left: 50%;
    width: 28px;
    height: 3px;
    background-color: #fff;
    border-radius: 999px;
    transform: translateX(-50%);
    transition: 0.3s;
  }
  html body #wrapper > header .nav_sp .hamburger span:nth-child(1) {
    top: 15px;
  }
  html body #wrapper > header .nav_sp .hamburger span:nth-child(2) {
    top: 24px;
  }
  html body #wrapper > header .nav_sp .hamburger span:nth-child(3) {
    top: 33px;
  }
  html body #wrapper > header .nav_sp .hamburger.active span:nth-child(1) {
    top: 24px;
    transform: translateX(-50%) rotate(45deg);
  }
  html body #wrapper > header .nav_sp .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  html body #wrapper > header .nav_sp .hamburger.active span:nth-child(3) {
    top: 24px;
    transform: translateX(-50%) rotate(-45deg);
  }
  html body #wrapper > header .sp_menu {
    top: 80px;
  }
}
html body #wrapper > header {
  /* ------------------------------
      SMALL SP
  ------------------------------ */
}
@media screen and (max-width: 480px) {
  html body #wrapper > header {
    height: 70px;
    padding: 0.75rem;
  }
  html body #wrapper > header .header_logo {
    width: 48%;
  }
  html body #wrapper > header .nav_sp {
    gap: 0.5rem;
  }
  html body #wrapper > header .nav_sp .download,
  html body #wrapper > header .nav_sp .ig,
  html body #wrapper > header .nav_sp .hamburger {
    width: 44px;
    height: 44px;
  }
  html body #wrapper > header .nav_sp .hamburger {
    border-radius: 10px;
  }
  html body #wrapper > header .nav_sp .hamburger span {
    width: 24px;
    height: 3px;
  }
  html body #wrapper > header .nav_sp .hamburger span:nth-child(1) {
    top: 13px;
  }
  html body #wrapper > header .nav_sp .hamburger span:nth-child(2) {
    top: 21px;
  }
  html body #wrapper > header .nav_sp .hamburger span:nth-child(3) {
    top: 29px;
  }
  html body #wrapper > header .nav_sp .hamburger.active span:nth-child(1),
  html body #wrapper > header .nav_sp .hamburger.active span:nth-child(3) {
    top: 21px;
  }
  html body #wrapper > header .sp_menu {
    top: 70px;
  }
}
html body #wrapper {
  /*----------------------------------------------------
      MAIN STYLE
  ----------------------------------------------------*/
}
html body #wrapper > main#contentsAll {
  /*----------------------------------------------------
      SLIDER STYLE
  ----------------------------------------------------*/
}
html body #wrapper > main#contentsAll .mv_slider,
html body #wrapper > main#contentsAll .s1_slider,
html body #wrapper > main#contentsAll .s2_slider,
html body #wrapper > main#contentsAll .s4_slider {
  width: 100%;
  overflow: hidden;
}
html body #wrapper > main#contentsAll .mv_slider .slick-track,
html body #wrapper > main#contentsAll .s1_slider .slick-track,
html body #wrapper > main#contentsAll .s2_slider .slick-track,
html body #wrapper > main#contentsAll .s4_slider .slick-track {
  display: flex;
  align-items: center;
  padding: 0.5rem;
}
html body #wrapper > main#contentsAll .mv_slider .slick-slide,
html body #wrapper > main#contentsAll .s1_slider .slick-slide,
html body #wrapper > main#contentsAll .s2_slider .slick-slide,
html body #wrapper > main#contentsAll .s4_slider .slick-slide {
  height: auto;
}
html body #wrapper > main#contentsAll .mv_slider .slick-slide > div,
html body #wrapper > main#contentsAll .s1_slider .slick-slide > div,
html body #wrapper > main#contentsAll .s2_slider .slick-slide > div,
html body #wrapper > main#contentsAll .s4_slider .slick-slide > div {
  height: 100%;
}
html body #wrapper > main#contentsAll .mv_slider .slick-slide img,
html body #wrapper > main#contentsAll .s1_slider .slick-slide img,
html body #wrapper > main#contentsAll .s2_slider .slick-slide img,
html body #wrapper > main#contentsAll .s4_slider .slick-slide img {
  width: 100%;
  height: 100%;
  display: block;
}
html body #wrapper > main#contentsAll .mv_slider .slides,
html body #wrapper > main#contentsAll .s1_slider .slides,
html body #wrapper > main#contentsAll .s2_slider .slides,
html body #wrapper > main#contentsAll .s4_slider .slides {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 12px;
  padding: 0 0.5rem;
}
html body #wrapper > main#contentsAll .mv_slider .slide_img,
html body #wrapper > main#contentsAll .s1_slider .slide_img,
html body #wrapper > main#contentsAll .s2_slider .slide_img,
html body #wrapper > main#contentsAll .s4_slider .slide_img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
html body #wrapper > main#contentsAll .s2_slider {
  overflow: visible !important;
  padding-bottom: 3rem;
}
html body #wrapper > main#contentsAll .s2_slider.slick-slider {
  position: relative;
}
html body #wrapper > main#contentsAll .s2_slider .slick-list {
  overflow: hidden;
}
html body #wrapper > main#contentsAll .s2_slider .slick-track {
  padding: 0;
}
html body #wrapper > main#contentsAll .s2_slider .slick-arrow {
  position: absolute;
  top: 35%;
  z-index: 20;
  width: 60px;
  height: 60px;
  border: 2px solid #F39A59;
  border-radius: 50%;
  background: #fff;
  color: #F39A59;
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  display: flex !important;
  align-items: center;
  justify-content: center;
}
html body #wrapper > main#contentsAll .s2_slider .slick-prev {
  left: 15%;
}
html body #wrapper > main#contentsAll .s2_slider .slick-prev::before {
  content: "‹";
  font-size: 2rem;
  line-height: 1;
  color: #F39A59;
}
html body #wrapper > main#contentsAll .s2_slider .slick-next {
  right: 15%;
}
html body #wrapper > main#contentsAll .s2_slider .slick-next::before {
  content: "›";
  font-size: 2rem;
  line-height: 1;
  color: #F39A59;
}
html body #wrapper > main#contentsAll .s2_slider .slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin: 1.5rem 0 0;
  margin-top: 5rem;
  position: static;
}
html body #wrapper > main#contentsAll .s2_slider .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0;
}
html body #wrapper > main#contentsAll .s2_slider .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  background: #d8d8d8;
  font-size: 0;
  cursor: pointer;
  display: block;
}
html body #wrapper > main#contentsAll .s2_slider .slick-dots li.slick-active button {
  background: #F39A59;
}
html body #wrapper > main#contentsAll .s5_slider {
  position: relative;
  width: 100%;
  margin-top: 2rem;
  padding-bottom: 3rem;
  overflow: hidden;
}
html body #wrapper > main#contentsAll .s5_slider .slick-list {
  overflow: visible;
}
html body #wrapper > main#contentsAll .s5_slider .slick-track {
  display: flex;
  align-items: center;
}
html body #wrapper > main#contentsAll .s5_slider .slick-slide {
  padding: 0 0.7rem;
  transform: scale(0.72);
  opacity: 0.75;
  transition: 0.4s;
}
html body #wrapper > main#contentsAll .s5_slider .slick-slide > div {
  height: 100%;
}
html body #wrapper > main#contentsAll .s5_slider .slick-center {
  transform: scale(1);
  opacity: 1;
  z-index: 2;
}
html body #wrapper > main#contentsAll .s5_slider .slides {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 10px;
}
html body #wrapper > main#contentsAll .s5_slider .slides iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
}
html body #wrapper > main#contentsAll .s5_slider .slick-arrow {
  position: absolute;
  top: 45%;
  z-index: 20;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
}
html body #wrapper > main#contentsAll .s5_slider .slick-arrow::before {
  display: none;
  content: none;
}
html body #wrapper > main#contentsAll .s5_slider .slick-arrow img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
html body #wrapper > main#contentsAll .s5_slider .slick-prev {
  left: 25%;
}
html body #wrapper > main#contentsAll .s5_slider .slick-next {
  right: 25%;
}
html body #wrapper > main#contentsAll .s5_slider .slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 1.5rem 0 0;
  padding: 0;
  position: static;
}
html body #wrapper > main#contentsAll .s5_slider .slick-dots li {
  width: 8px;
  height: 8px;
  margin: 0;
}
html body #wrapper > main#contentsAll .s5_slider .slick-dots li button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: #d8d8d8;
  font-size: 0;
  cursor: pointer;
  display: block;
}
html body #wrapper > main#contentsAll .s5_slider .slick-dots li.slick-active button {
  background-color: #E95383;
}
@media screen and (max-width: 767px) {
  html body #wrapper > main#contentsAll .s5_slider .slick-arrow {
    top: 35%;
    width: 40px;
    height: 40px;
  }
  html body #wrapper > main#contentsAll .s5_slider .slick-prev {
    left: 10%;
  }
  html body #wrapper > main#contentsAll .s5_slider .slick-next {
    right: 10%;
  }
  html body #wrapper > main#contentsAll .s5_slider {
    margin-top: 1.5rem;
  }
  html body #wrapper > main#contentsAll .s5_slider .slick-slide {
    padding: 0 0.4rem;
    transform: scale(0.86);
  }
  html body #wrapper > main#contentsAll .s5_slider .slick-center {
    transform: scale(1);
  }
}
html body #wrapper > main#contentsAll {
  /*----------------------------------------
  MV
  ----------------------------------------*/
}
html body #wrapper > main#contentsAll .mv {
  position: relative;
  margin-top: 100px;
}
html body #wrapper > main#contentsAll .mv_bg_pc {
  display: block;
  width: 100%;
  height: auto;
}
html body #wrapper > main#contentsAll .mv_btn_list {
  position: absolute;
  top: 78%;
  left: 12%;
  display: block;
  width: 20%;
  transform: translateY(-50%);
}
html body #wrapper > main#contentsAll .mv_btn_list img {
  width: 100%;
  height: auto;
}
html body #wrapper > main#contentsAll .mv_btn {
  display: block;
}
html body #wrapper > main#contentsAll .mv_nav_btn_pc {
  position: fixed;
  top: 28%;
  right: 0;
  z-index: 9999;
  width: 8%;
}
html body #wrapper > main#contentsAll .mv_nav_btn_pc a {
  display: block;
  margin-bottom: 0.5rem;
}
html body #wrapper > main#contentsAll .mv_nav_btn_pc img {
  width: 100%;
  height: auto;
}
html body #wrapper > main#contentsAll .section_btn_list {
  padding: 5rem 0;
}
html body #wrapper > main#contentsAll .section_btn_list .section_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
html body #wrapper > main#contentsAll .section_btn_list .section_btn a {
  display: block;
  flex-shrink: 0;
  width: 20%;
}
html body #wrapper > main#contentsAll .section_btn_list .section_btn a img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  html body #wrapper > main#contentsAll .mv {
    position: relative;
    margin-top: 80px;
    overflow: visible;
  }
  html body #wrapper > main#contentsAll .mv_bg_pc {
    display: none;
  }
  html body #wrapper > main#contentsAll .mv_nav_btn_pc {
    display: none;
  }
  html body #wrapper > main#contentsAll .mv_btn_list {
    position: absolute;
    top: calc(100% + 1rem);
    bottom: auto;
    left: 50%;
    z-index: 9990;
    width: 85%;
    max-width: 700px;
    line-height: 1;
    text-align: center;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
  }
  html body #wrapper > main#contentsAll .mv_btn_list .mv_btn_pc {
    display: none;
  }
  html body #wrapper > main#contentsAll .mv_btn_list .mv_btn_sp {
    width: 100%;
  }
  html body #wrapper > main#contentsAll .mv_btn_list .mv_btn_sp .mv_btn,
  html body #wrapper > main#contentsAll .mv_btn_list .mv_btn_sp a {
    display: block;
    width: 100%;
    margin: 0;
  }
  html body #wrapper > main#contentsAll .mv_btn_list .mv_btn_sp img {
    display: block;
    width: 100%;
    height: auto;
  }
  html body #wrapper > main#contentsAll .mv_btn_list.is-fixed {
    position: fixed;
    top: auto;
    bottom: 15px;
    left: 50%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }
  html body #wrapper > main#contentsAll .mv_btn_list.is-fixed.is-hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, calc(100% + 30px));
  }
  html body #wrapper > main#contentsAll .mv_slider {
    position: relative;
    z-index: 1;
  }
  html body #wrapper > main#contentsAll .section_btn_list {
    padding: 2rem 0;
  }
  html body #wrapper > main#contentsAll .section_btn_list .section_btn {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
  }
  html body #wrapper > main#contentsAll .section_btn_list .section_btn a {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  html body #wrapper > main#contentsAll .section_btn_list {
    padding: 1.5rem 0.8rem;
  }
  html body #wrapper > main#contentsAll .section_btn_list .section_btn {
    gap: 0;
  }
}
@media screen and (min-width: 1025px) {
  html body #wrapper > main#contentsAll .mv_sp {
    display: none;
  }
  html body #wrapper > main#contentsAll .mv_btn_sp {
    display: none;
  }
}
html body #wrapper > main#contentsAll {
  /*----------------------------------------------------
  STYLE
  ----------------------------------------------------*/
}
html body #wrapper > main#contentsAll h1 .title_img {
  text-align: center;
  padding-top: 3rem;
}
html body #wrapper > main#contentsAll h1 .title_img img {
  width: 7rem;
}
html body #wrapper > main#contentsAll h1 .title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
}
html body #wrapper > main#contentsAll h1 .pop {
  text-align: center;
  padding-top: 1rem;
}
html body #wrapper > main#contentsAll h1 .pop img {
  width: 12rem;
}
html body #wrapper > main#contentsAll hr {
  border: 2px solid #000;
  margin: 1.5rem 48% 3rem;
}
html body #wrapper > main#contentsAll .inner {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 0.5rem 0;
  margin: 1rem 15% 0;
}
@media only screen and (max-width: 767px) {
  html body #wrapper > main#contentsAll h1 .title_img img {
    width: 4rem;
  }
  html body #wrapper > main#contentsAll h1 .title {
    font-size: 1.5rem;
  }
  html body #wrapper > main#contentsAll h1 .pop img {
    width: 8rem;
  }
  html body #wrapper > main#contentsAll hr {
    margin: 1.5rem 40% 3rem;
  }
  html body #wrapper > main#contentsAll .inner {
    padding: 0;
    margin: 0 0.5rem 0;
  }
}
html body #wrapper > main#contentsAll {
  /*----------------------------------------------------
  CONTENTS STYLE
  ----------------------------------------------------*/
}
html body #wrapper > main#contentsAll .s1 {
  background-image: url(../img/s1_bg.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 1920px auto;
  padding-bottom: 5%;
  overflow: hidden;
}
html body #wrapper > main#contentsAll .s1 .s1_content {
  display: flex;
  justify-content: space-between;
  padding: 3rem 9% 0;
}
html body #wrapper > main#contentsAll .s1 .movie_sp {
  padding: 0 3rem 1rem;
}
@media only screen and (max-width: 767px) {
  html body #wrapper > main#contentsAll .s1 .inner .s1_content {
    display: block;
    padding: 1.5rem 0 0;
  }
  html body #wrapper > main#contentsAll .s1 .inner .s1_content .s1_txt {
    width: 100% !important;
  }
  html body #wrapper > main#contentsAll .s1 .inner .s1_content .s1_txt h2 {
    padding-top: 2rem;
    text-align: center;
    font-size: 1.8rem !important;
  }
  html body #wrapper > main#contentsAll .s1 .inner .s1_content .s1_txt h3 {
    padding: 1.5rem 0.9rem;
    line-height: 1.5rem;
  }
  html body #wrapper > main#contentsAll .s1 .inner .s1_content .s1_txt p {
    padding: 0 1rem;
    line-height: 1.5rem;
  }
  html body #wrapper > main#contentsAll .s1 .inner .s1_content .movie_pc {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  html body #wrapper > main#contentsAll .movie_sp {
    display: none;
  }
}
html body #wrapper > main#contentsAll .s2 .bg_pink {
  padding-bottom: 5rem;
}
html body #wrapper > main#contentsAll .s2 .bg_pink .inner {
  padding: 2rem;
}
html body #wrapper > main#contentsAll .s2 .bg_pink .inner .s2_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
html body #wrapper > main#contentsAll .s2 .bg_pink .inner .s2_content .s2_txt {
  display: flex;
  align-items: center;
  gap: 1rem;
}
html body #wrapper > main#contentsAll .s2 .bg_pink .inner .s2_content .s2_txt .dot {
  width: 0.8rem;
}
html body #wrapper > main#contentsAll .s2 .bg_pink .inner.s2_inner .s2_content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
  gap: 5%;
}
html body #wrapper > main#contentsAll .s2 .bg_pink .inner.s2_inner .s2_content .s2_txt {
  display: block;
}
html body #wrapper > main#contentsAll .s2 .bg_pink .inner.s2_inner .s2_content .s2_txt .s2_img2 {
  padding: 1rem;
}
html body #wrapper > main#contentsAll .s2 .bg_pink .inner.s2_inner .s2_content .s2_txt .font_08 {
  padding-right: 3.5rem;
}
html body #wrapper > main#contentsAll .s2 .bg_img_pc {
  background-image: url(../img/s2_bg.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding-top: 25%;
  padding-bottom: 10%;
}
@media only screen and (max-width: 1400px) {
  html body #wrapper > main#contentsAll .bg_img_pc {
    padding-top: 30% !important;
  }
}
@media only screen and (max-width: 767px) {
  html body #wrapper > main#contentsAll .s2 .bg_pink {
    padding-bottom: 0;
  }
  html body #wrapper > main#contentsAll .s2 .bg_pink .inner {
    padding: 2rem 1rem;
  }
  html body #wrapper > main#contentsAll .s2 .bg_pink .inner .s2_content {
    display: block;
  }
  html body #wrapper > main#contentsAll .s2 .bg_pink .inner .s2_content .s2_txt .dot {
    width: 0.7rem;
  }
  html body #wrapper > main#contentsAll .s2 .bg_pink .inner .s2_content .s2_txt p {
    font-size: 0.8rem !important;
  }
  html body #wrapper > main#contentsAll .s2 .bg_pink .inner .s2_img {
    width: 100% !important;
  }
  html body #wrapper > main#contentsAll .s2 .bg_img_pc {
    display: none;
  }
  html body #wrapper > main#contentsAll .s2 .bg_img_sp {
    background-image: url(../img/s2_bg_sp.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% auto;
    margin-top: 1rem;
    padding-top: 115%;
    padding-bottom: 12rem;
  }
  html body #wrapper > main#contentsAll .s2 .bg_pink.s2_bottom {
    padding-bottom: 5rem;
  }
  html body #wrapper > main#contentsAll .s2 .bg_pink.s2_bottom .inner.s2_inner .s2_content {
    padding: 0;
    display: block;
  }
  html body #wrapper > main#contentsAll .s2 .bg_pink.s2_bottom .inner.s2_inner .s2_content .s2_txt {
    text-align: center;
  }
  html body #wrapper > main#contentsAll .s2 .bg_pink.s2_bottom .inner.s2_inner .s2_content .s2_txt .t_pink {
    font-size: 1.5rem !important;
  }
  html body #wrapper > main#contentsAll .s2 .bg_pink.s2_bottom .inner.s2_inner .s2_content .s2_txt .s2_img2 {
    padding: 1rem;
    width: 100% !important;
  }
  html body #wrapper > main#contentsAll .s2 .bg_pink.s2_bottom .inner.s2_inner .s2_content .s2_txt .font_08 {
    padding: 0 1rem 1.5rem;
    text-align: left;
  }
  html body #wrapper > main#contentsAll .s2 .bg_pink.s2_bottom .inner.s2_inner .s2_content .s2_movie {
    padding: 0 1rem;
  }
}
html body #wrapper > main#contentsAll .s3 {
  background-image: url(../img/s3_bg.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding-top: 1rem;
}
html body #wrapper > main#contentsAll .s3 .s3_content {
  display: flex;
  gap: 5rem;
  padding-bottom: 5rem;
  align-items: center;
}
html body #wrapper > main#contentsAll .s3 .s3_content .s3_txt h2 {
  padding: 1rem 0;
}
html body #wrapper > main#contentsAll .s3 .s3_content .s3_txt p {
  padding: 1.5rem 0;
}
html body #wrapper > main#contentsAll .s3 .s3_content .s3_txt .s3_btn {
  border: 2px solid #E95383;
  border-radius: 30px;
  text-align: center;
  overflow: hidden;
}
html body #wrapper > main#contentsAll .s3 .s3_content .s3_txt .s3_btn a {
  display: flex;
  align-items: flex-start;
  position: relative;
  display: block;
  padding: 1rem 3rem 1rem 1rem;
  color: #E95383;
  text-decoration: none;
  line-height: 1;
  transition: 0.3s;
}
html body #wrapper > main#contentsAll .s3 .s3_content .s3_txt .s3_btn span {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  transition: 0.3s;
}
html body #wrapper > main#contentsAll .s3 .s3_content .s3_txt .s3_btn:hover {
  background-color: #E95383;
}
html body #wrapper > main#contentsAll .s3 .s3_content .s3_txt .s3_btn:hover a {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  html body #wrapper > main#contentsAll .s3 {
    background-image: url(../img/s3_bg_sp.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% auto;
  }
  html body #wrapper > main#contentsAll .s3 h1 .title_img {
    padding-top: 0;
  }
  html body #wrapper > main#contentsAll .s3 .s3_content {
    display: block;
  }
  html body #wrapper > main#contentsAll .s3 .s3_content .s3_txt {
    padding: 0 1.5rem;
  }
  html body #wrapper > main#contentsAll .s3 .s3_content .s3_txt h2 {
    padding: 0;
    font-size: 1.6rem;
  }
  html body #wrapper > main#contentsAll .s3 .s3_content .s3_txt .s3_btn {
    width: 80%;
    border-radius: 50px;
    margin-bottom: 1.5rem;
  }
}
html body #wrapper > main#contentsAll .s4 {
  background-image: url(../img/s4_bg.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 1920px auto;
  padding: 5rem 0 20rem;
}
html body #wrapper > main#contentsAll .s4 .bunner_list {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding-bottom: 5rem;
}
@media only screen and (max-width: 767px) {
  html body #wrapper > main#contentsAll .s4 {
    background-image: url(../img/s4_bg_sp.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 5rem 0;
  }
  html body #wrapper > main#contentsAll .s4 .title_img {
    padding-top: 0;
  }
  html body #wrapper > main#contentsAll .s4 .bunner_list {
    display: block;
    padding: 0 0.5rem 0.5rem;
  }
  html body #wrapper > main#contentsAll .s4 .bunner_list .bunner {
    width: 100% !important;
  }
}
html body #wrapper > main#contentsAll .s5 {
  background-image: url(../img/s5_bg.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 1920px 100%;
  margin-top: -8rem;
  padding-top: 5rem;
  padding-bottom: 10rem;
}
html body #wrapper > main#contentsAll .s5 h1 .title_img img {
  width: 10rem;
}
html body #wrapper > main#contentsAll .s5 h1 .blacktitle {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  html body #wrapper > main#contentsAll .s5 {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 5rem;
  }
}
html body #wrapper > main#contentsAll .s6 {
  background-image: url(../img/s6_bg.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding: 15% 0 5%;
}
html body #wrapper > main#contentsAll .s6 .s6_btn_list {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
html body #wrapper > main#contentsAll .s6 .s6_btn_list .s6_btn {
  width: 25%;
}
@media only screen and (max-width: 767px) {
  html body #wrapper > main#contentsAll .s6 {
    margin-top: 4rem;
    background-image: url(../img/s6_bg_sp.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% auto;
    padding: 5% 0;
  }
  html body #wrapper > main#contentsAll .s6 .s6_btn_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 4rem;
    gap: 0.5rem;
  }
  html body #wrapper > main#contentsAll .s6 .s6_btn_list .s6_btn {
    width: 90%;
  }
}
html body #wrapper > main#contentsAll footer {
  text-align: center;
}
html body #wrapper > main#contentsAll footer .bg_white {
  padding: 4rem 0;
  color: #785C53;
}
html body #wrapper > main#contentsAll footer .bg_pink2 {
  padding: 2rem 0;
}
@media only screen and (max-width: 767px) {
  html body #wrapper > main#contentsAll footer .bg_white {
    padding: 2rem 0;
  }
  html body #wrapper > main#contentsAll footer .bg_white p {
    font-size: 1.1rem !important;
  }
  html body #wrapper > main#contentsAll footer .bg_white p span {
    font-size: 0.6rem;
  }
  html body #wrapper > main#contentsAll footer .bg_pink2 p {
    font-size: 0.6rem !important;
  }
}/*# sourceMappingURL=style.css.map */