﻿@charset "utf-8";
/* **********************************************************************************/
/* 나눔 스퀘어 */
@import url('https://cdn.rawgit.com/moonspam/NanumSquare/master/nanumsquare.css');
@font-face {
  /* 빙그레체 */
  font-family: 'Binggrae';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_one@1.0/Binggrae.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
/* **********************************************************************************/
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #fff;
}
.wrap {
  width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width: 1199px) {
  .wrap {
    width: 100%;
    padding: 0 20px;
  }
}
header {
  position: fixed;
  z-index: 5;
  width: 100%;
}
.header-top {
  background-color: #ffd925;
}
@media only screen and (max-width: 1199px) {
  .header-top {
    /*display: none;*/
    z-index: 10;
  }
}
.util {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 30px;
}
.util li {
  vertical-align: middle;
  list-style: none;
}
.util li:first-child a::before {
  content: "";
  padding: 0;
}
.util li a {
  display: block;
  font-family: 'NanumSquare', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  margin: 0 12px 0 0;
}
.util li a::before {
  content: "|";
  padding-right: 12px;
}
.util li a:hover {
  color: #333;
}
.util li a:hover::before {
  color: #fff;
}
.util li .util-btn {
  padding: 5px 16px;
  color: #666;
  background-color: #fff;
  border-radius: 10px;
  margin: 0 0 0 5px;
}
.util li .util-btn::before {
  content: "";
  margin: 0;
  padding: 0;
}
.util li .util-btn:hover {
  color: #fff;
  background-color: #abce01;
}
.header-content {
  background-color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid #ddd;
  box-shadow: 1px 1px 2px rgba(255, 255, 255, 0.1);
  transition: 0.4s;
}
@media only screen and (max-width: 1199px) {
  .header-content {
    background-color: #fff;
  }
}
.header-content:hover {
  background-color: #fff;
}
.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media only screen and (max-width: 1199px) {
  .nav-wrap {
    display: block;
  }
}
.logo > a {
  display: inline-block;
  margin: 28px 0;
}
@media only screen and (max-width: 1199px) {
  .logo {
    display: inline-block;
  }
}
.menu {
  display: flex;
  width: 100%;
  margin-left: 90px;
}
@media only screen and (max-width: 1199px) {
  .menu {
    display: none;
  }
}
.menu-dep1 {
  display: flex;
  justify-content: space-between;
  width: 100%;
  z-index: 999;
}
.menu-dep1 > li {
  list-style: none;
}
.menu-dep1 > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  font-family: 'Binggrae', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
}
.menu-dep1 > li.on > a {
  color: #b3d219;
  text-decoration: none;
}
.menu-dep1 > li.on > a::before {
  content: "";
  position: absolute;
  top: 130px;
  width: 165px;
  height: 3px;
  background-color: #b3d219;
}
.menu-dep1 > li.on > a::after {
  content: "";
  position: absolute;
  width: 100%;
  top: 132px;
  left: 0;
  border-top: 1px solid #eee;
}
.menu-dep2 {
  position: absolute;
  top: 130px;
  left: 50%;
  transform: translate(-50%, 0);
  display: none;
  width: 1200px;
  text-align: right;
  margin: 0 auto;
  height: 75px;
}
.menu-dep2 > li {
  display: inline-block;
  list-style: none;
  margin: 0 25px;
}
.menu-dep2 > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 75px;
  font-family: 'Binggrae', sans-serif;
  font-size: 16px;
  color: #232323;
  z-index: 7;
  text-decoration: none;
}
.menu-dep2 > li.on > a {
  position: relative;
  text-decoration: none;
  font-weight: 600;
}
.menu-dep2 > li.on > a::before {
  content: "";
  position: absolute;
  top: 40px;
  width: 100%;
  height: 10px;
  background-color: #b3d219;
  z-index: -1;
}
.menu-dep3 {
  position: absolute;
  top: 75px;
  left: 50%;
  transform: translate(-50%, 0);
  display: none;
  width: 1200px;
  text-align: center;
  margin: 0 auto;
  height: 75px;
}
.menu-dep3 > li {
  display: inline-block;
  list-style: none;
  margin: 0 25px;
}
.menu-dep3 > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 75px;
  font-family: 'Binggrae', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #232323;
}
.menu-dep3 > li > a:hover {
  position: relative;
  font-weight: 600;
  text-decoration: none;
}
.mobile-btn-group {
  display: none;
}
@media only screen and (max-width: 1199px) {
  .mobile-btn-group {
    display: inline-block;
    float: right;
    margin-top: 35px;
  }
}
.mobile-btn-group a {
  text-align: right;
}
.mobile-btn-group a i,
.mobile-btn-group a svg {
  font-size: 30px;
  color: #232323;
}
.mobile-menu {
  display: none;
}
.mobile-menu.on {
  position: fixed;
  top: 0;
  left: 0;
  display: initial;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  overflow-y: auto;
}
.m-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
}
.m-logo > a {
  display: inline-block;
  margin: 15px 0 15px 20px;
}
@media only screen and (max-width: 1199px) {
  .m-logo {
    display: inline-block;
  }
}
.m-mobile-btn-group {
  margin-right: 20px;
}
.m-mobile-btn-group a i,
.m-mobile-btn-group a svg {
  font-size: 30px;
  color: #232323;
}
.m-menu-dep1 > li > a {
  display: block;
  padding: 15px 20px;
  width: 100%;
  font-family: 'Binggrae', sans-serif;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid #ddd;
  text-decoration: none;
  color: #232323;
}
.m-menu-dep1 > li > a:hover {
  background-color: #f7f7f7;
  text-decoration: none;
  color: #232323;
}
.m-menu-dep1 > .arr.on {
  border-top: 5px solid #ddd;
  border-bottom: 5px solid #ddd;
}
.m-menu-dep1 > .arr.on > a {
  background-color: #64cb08;
  color: #fff;
}
.m-menu-dep1 > .arr.on::after {
  color: #fff;
}
.arr {
  position: relative;
}
.arr::after {
  content: "+";
  position: absolute;
  top: 12px;
  right: 25px;
  font-size: 18px;
  font-weight: 600;
  color: #333333;
}
.arr.on::after {
  content: "-";
  right: 28px;
}
.m-menu-dep2 {
  display: none;
}
.m-menu-dep2 > li {
  border-bottom: 1px solid #ddd;
}
.m-menu-dep2 > li > a {
  display: block;
  padding: 15px 30px;
  width: 100%;
  font-family: 'Binggrae', sans-serif;
  font-size: 16px;
  text-decoration: none;
  color: #232323;
}
.m-menu-dep2 > li > a:hover {
  background-color: #f7f7f7;
  text-decoration: none;
  color: #232323;
}
.m-menu-dep2 > .arr.on > a {
  border-bottom: 1px solid #64cb08;
  color: #64cb08;
  font-weight: 600;
}
.m-menu-dep2 > .arr.on::after {
  color: #64cb08;
}
.m-menu-dep2.on {
  display: initial;
}
.m-menu-dep3 {
  display: none;
}
.m-menu-dep3 > li {
  border-bottom: 1px solid #ddd;
}
.m-menu-dep3 > li > a {
  display: block;
  padding: 15px 40px;
  width: 100%;
  font-family: 'Binggrae', sans-serif;
  font-size: 16px;
  text-decoration: none;
  background-color: #f5f5f5;
  color: #232323;
}
.m-menu-dep3 > li > a::before {
  content: "-";
  margin-right: 5px;
}
.m-menu-dep3 > li > a:hover {
  background-color: #eee;
  text-decoration: none;
  color: #232323;
}
.m-menu-dep3 > li:last-child {
  border-bottom: 0;
}
.m-menu-dep3.on {
  display: initial;
}
.m-util {
  background-color: #1a1a1a;
  display: flex;
  justify-content: space-between;
}
.m-util li {
  width: 100%;
  text-align: center;
  list-style: none;
  border-right: 1px solid #ddd;
}
.m-util li a {
  display: inline-block;
  padding: 20px 5px;
  color: #fff;
  font-size: 14px;
}
.m-util li:last-child {
  border-right: 0;
}
section#section1 {
  position: relative;
  z-index: 4;
  padding-top: 30px;
}
.section1-container {
  position: absolute;
  width: 100%;
  top: 550px;
}
.quick-menu-wrap {
  position: absolute;
  width: 100%;
  height: 530px;
  transition: 0.2s;
}
@media only screen and (max-width: 1199px) {
  .quick-menu-wrap {
    height: 730px;
  }
}
.quick-menu-wrap::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 40px;
  background-image: url("images/yearstudy-up-bak.png");
}
.quick-menu {
  position: relative;
  top: 275px;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1199px) {
  .quick-menu {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 768px) {
  .quick-menu {
    top: 200px;
  }
}
.quick-menu li {
  display: flex;
  align-items: center;
  list-style: none;
  box-shadow: 1px 1px 10px rgba(255, 255, 255, 0.2);
}
.quick-menu li a {
  width: 100%;
  padding: 57px 0 58px;
  height: 170px;
  text-align: center;
}
.quick-menu li a:hover {
  text-decoration: none;
}
.quick-menu .quick-box1 {
  width: 250px;
  background-color: #00cf9d;
  border-radius: 20px 0 0 20px;
}
.quick-menu .quick-box1:hover {
  position: relative;
  background: #00cf9d url("images/quick-box-bak1.png") no-repeat center center;
}
.quick-menu .quick-box1:hover::after {
  content: url("images/quick-bear.png");
  position: absolute;
  top: -134px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 10;
}
.quick-menu .quick-box1:hover::before {
  content: "";
  position: absolute;
  top: -10px;
  width: 250px;
  height: 30px;
  background-color: #00cf9d;
}
@media only screen and (max-width: 1199px) {
  .quick-menu .quick-box1 {
    width: 50%;
    border-radius: 0;
  }
  .quick-menu .quick-box1:hover::before {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .quick-menu .quick-box1 {
    width: 100%;
  }
  .quick-menu .quick-box1:hover::after {
    top: -124px;
  }
  .quick-menu .quick-box1:hover::before {
    height: 0px;
  }
}
.quick-menu .quick-box2 {
  width: 250px;
  background-color: #ff9900;
}
.quick-menu .quick-box2:hover {
  position: relative;
  background: #ff9900 url("images/quick-box-bak2.png") no-repeat center center;
}
.quick-menu .quick-box2:hover::after {
  content: url("images/quick-bear.png");
  position: absolute;
  top: -134px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 10;
}
.quick-menu .quick-box2:hover::before {
  content: "";
  position: absolute;
  top: -10px;
  width: 250px;
  height: 30px;
  background-color: #ff9900;
}
@media only screen and (max-width: 1199px) {
  .quick-menu .quick-box2 {
    width: 50%;
  }
  .quick-menu .quick-box2:hover::before {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .quick-menu .quick-box2 {
    width: 100%;
    margin-top: 20px;
  }
  .quick-menu .quick-box2:hover::after {
    top: -124px;
  }
  .quick-menu .quick-box2:hover::before {
    height: 0px;
  }
}
.quick-menu .quick-box3 {
  width: 250px;
  background-color: #f46337;
}
.quick-menu .quick-box3:hover {
  position: relative;
  background: #f46337 url("images/quick-box-bak3.png") no-repeat center center;
}
.quick-menu .quick-box3:hover::after {
  content: url("images/quick-bear.png");
  position: absolute;
  top: -134px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 10;
}
.quick-menu .quick-box3:hover::before {
  content: "";
  position: absolute;
  top: -10px;
  width: 250px;
  height: 30px;
  background-color: #f46337;
}
@media only screen and (max-width: 1199px) {
  .quick-menu .quick-box3 {
    width: calc(100% - 450px);
    margin-top: 20px;
  }
  .quick-menu .quick-box3:hover::before {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .quick-menu .quick-box3 {
    width: 100%;
    margin-top: 20px;
  }
  .quick-menu .quick-box3:hover::after {
    top: -124px;
  }
  .quick-menu .quick-box3:hover::before {
    height: 0px;
  }
}
.quick-menu .quick-box4 {
  width: 450px;
  background-color: #14a4da;
  border-radius: 0 20px 20px 0;
  background-image: url("images/quick-box4-bak.png");
  background-repeat: no-repeat;
}
.quick-menu .quick-box4 a {
  position: relative;
  text-align: left;
  padding-left: 110px;
}
.quick-menu .quick-box4 a .quick-arrow {
  position: absolute;
  top: 60px;
  left: 240px;
  transition: 0.2s;
}
.quick-menu .quick-box4 a:hover .quick-arrow {
  left: 280px;
  transition: 0.2s;
}
@media only screen and (max-width: 1199px) {
  .quick-menu .quick-box4 {
    margin-top: 20px;
    border-radius: 0;
  }
}
@media only screen and (max-width: 768px) {
  .quick-menu .quick-box4 {
    width: 100%;
    margin-top: 20px;
    background-size: 100%;
  }
  .quick-menu .quick-box4 a {
    text-align: center;
    padding-left: 0;
  }
  .quick-menu .quick-box4 a .quick-arrow {
    display: none;
  }
  .quick-menu .quick-box4 a:hover p {
    color: #002679;
    transition: 0.2s;
  }
}
.quick-tit {
  font-family: 'Binggrae', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
}
.quick-con {
  font-family: 'Binggrae', sans-serif;
  font-size: 20px;
  color: #fff;
  margin-top: 7px;
}
.sliderinfo {
  position: relative;
  width: 938px;
  height: 154px;
  margin: 0 auto;
  top: 75px;
  z-index: 9;
}
@media only screen and (max-width: 1199px) {
  .sliderinfo {
    width: 100%;
    height: 114px;
  }
}
.sliderinfo .slick-dots {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translate(-50%, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.sliderinfo .slick-dots li {
  width: 10px;
  height: 10px;
  padding: 0;
  margin-right: 10px;
  text-align: center;
  cursor: pointer;
  list-style: none;
}
.sliderinfo .slick-dots li:last-child {
  margin-right: 0;
}
.sliderinfo .slick-dots li button {
  display: inline-block;
  width: 10px;
  height: 12px;
  font-size: 0;
  line-height: 0;
  border: 0;
  outline: none;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
}
.sliderinfo .slick-dots li button:hover {
  color: #333;
  background-color: #fff;
}
.sliderinfo .slick-dots li button::before {
  content: "0";
}
.sliderinfo .slick-dots .slick-active {
  width: 15px;
}
.sliderinfo .slick-dots .slick-active button {
  width: 15px;
  height: 15px;
  background-color: #049039;
}
.sliderinfo .slick-dots .slick-active button:hover {
  background-color: #049039;
}
.items-slogan {
  overflow: hidden;
}
@media only screen and (max-width: 1199px) {
  .items-slogan img {
    margin: 3% auto 0;
    width: 80%;
  }
}
@media only screen and (max-width: 768px) {
  .items-slogan img {
    width: 75%;
  }
}
.sliderinfo-wrap {
  position: relative;
}
.slider-prev {
  position: absolute;
  top: 120px;
  left: 0;
  font-size: 60px;
  font-weight: 600;
}
.slider-prev i,
.slider-prev svg {
  color: #4fac40;
}
.slider-prev:hover i,
.slider-prev:hover svg {
  color: #049039;
}
@media only screen and (max-width: 768px) {
  .slider-prev {
    top: 85px;
  }
}
.slider-next {
  position: absolute;
  top: 120px;
  right: 0;
  font-size: 60px;
  font-weight: 600;
}
.slider-next i,
.slider-next svg {
  color: #4fac40;
}
.slider-next:hover i,
.slider-next:hover svg {
  color: #049039;
}
@media only screen and (max-width: 768px) {
  .slider-next {
    top: 85px;
  }
}
section#section2 {
  z-index: 3;
  height: 1050px;
}
.slider {
  height: 1050px;
}
.slider .slick-list {
  padding: 0 !important;
}
.slider .items-bg {
  height: 1050px;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}
.slider .items-bg > div {
  margin: 0 auto;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
}
section#section3 {
  z-index: 4;
  height: 640px;
}
.section3-contianer {
  background-image: url("images/yearstudy-down-bak.png");
  height: 640px;
}
@media only screen and (max-width: 1199px) {
  .section3-contianer {
    background-image: url("images/yearstudy-down-bak-r.png");
    height: 800px;
  }
}
@media only screen and (max-width: 1199px) {
  .section3-contianer {
    background-image: url("images/yearstudy-down-bak-r.png");
    height: 1000px;
  }
}
.year-wrap {
  text-align: center;
}
.year-wrap h2 {
  font-family: 'Binggrae', sans-serif;
  font-weight: 600;
  font-size: 45px;
  color: #232323;
  padding: 70px 0 40px;
}
@media only screen and (max-width: 1199px) {
  .year-wrap h2 {
    padding: 240px 0 40px;
    font-size: 38px;
  }
}
@media only screen and (max-width: 768px) {
  .year-wrap h2 {
    padding: 450px 0 40px;
    font-size: 22px;
  }
}
.year-wrap p {
  font-family: 'Binggrae', sans-serif;
  font-weight: 600;
  font-size: 20px;
  padding: 15px 0;
  color: #232323;
}
@media only screen and (max-width: 1199px) {
  .year-wrap p {
    padding: 10px 0;
    font-size: 18px;
  }
}
@media only screen and (max-width: 768px) {
  .year-wrap p {
    padding: 5px 0;
    line-height: 1.2;
    font-size: 16px;
  }
}
.year-class-list {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1199px) {
  .year-class-list {
    justify-content: space-around;
    flex-wrap: wrap;
  }
}
.year-class-list li {
  list-style: none;
}
@media only screen and (max-width: 1199px) {
  .year-class-list li {
    margin-bottom: 10px;
  }
}
.year-class-list li a {
  display: inline-block;
  background-color: #fff;
  border-radius: 20px;
  font-family: 'Binggrae', sans-serif;
  font-size: 20px;
  font-weight: 600;
  padding: 17px 30px;
  color: #333;
  transition: 0.1s;
}
@media only screen and (max-width: 768px) {
  .year-class-list li a {
    font-size: 16px;
    padding: 15px 23px;
  }
}
.year-class-list li a:hover {
  background-color: #049039;
  text-decoration: none;
  color: #fff;
  transition: 0.2s;
}
.year-more {
  display: inline-block;
  text-align: center;
  margin-top: 30px;
  font-family: 'Binggrae', sans-serif;
  z-index: 999;
  font-size: 18px;
  font-weight: 600;
  color: #232323;
}
@media only screen and (max-width: 768px) {
  .year-more {
    margin-top: 15px;
  }
}
.year-more::after {
  content: url("images/year-plus-btn.png");
  margin-left: 10px;
}
.year-more:hover {
  color: #049039;
  text-decoration: none;
}
.year-more:hover::after {
  content: url("images/year-plus-btn-on.png");
}
section#section4 {
  margin-top: -160px;
  margin-bottom: 115px;
  z-index: 5;
}
@media only screen and (max-width: 1199px) {
  section#section4 {
    margin-top: 50px;
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  section#section4 {
    margin-top: 300px;
    margin-bottom: 80px;
  }
}
.section4-wrap {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-top: 80px;
}
@media only screen and (max-width: 1199px) {
  .section4-wrap {
    flex-wrap: wrap;
    margin-top: 50px;
  }
}
.kids-img {
  width: 100%;
}
.notice {
  /* width: 480px; */
  width: 75%auto
}
@media only screen and (max-width: 1199px) {
  .notice {
    width: 100%;
    margin-bottom: 40px;
  }
}
.notice-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.notice-tab li a {
  font-family: 'Binggrae', sans-serif;
  font-size: 24px;
  margin-right: 25px;
}
.notice-tab li:last-child a {
  margin-right: 0;
}
a.more {
  font-family: 'Binggrae', sans-serif;
  font-size: 16px;
  color: #999;
}
a.more:hover {
  text-decoration: none;
  color: #049039;
}
a.more:hover::after {
  content: url("images/more-btn-on.png");
}
a.more::after {
  content: url("images/more-btn.png");
  padding-left: 5px;
}
.notice-content {
  margin-top: 15px;
  min-height: 270px;
}
.notice-content > p {
  font-family: 'Binggrae', sans-serif;
  font-size: 16px;
  color: #999;
}
.notice-content ul li {
  list-style: none;
  margin-bottom: 10px;
}
.notice-content ul li:last-child {
  margin-bottom: 0;
}
.notice-content ul li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 60px;
}
.notice-content ul li a:hover {
  text-decoration: none;
}
.notice-content ul li a:hover .notice-date {
  background-color: #049039;
}
.notice-content ul li a:hover .notice-title {
  border: 2px solid #049039;
}
.notice-content ul li a:hover .notice-title p {
  font-weight: 600;
  color: #049039;
}
.notice-date {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: #abce01;
  border-radius: 10px;
  width: 60px;
  padding: 15px 0;
  margin-right: 20px;
}
.notice-year {
  width: 100%;
  font-family: 'NanumSquare', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #fff;
  text-align: center;
  padding-bottom: 2px;
}
.notice-month {
  font-family: 'NanumSquare', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}
.notice-month::after {
  content: "/";
  font-size: 16px;
}
.notice-day {
  font-family: 'NanumSquare', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}
.notice-title {
  display: flex;
  justify-content: flex-start;
  width: calc(100% - 80px);
  border: 1px solid #abce01;
  border-radius: 10px;
  padding: 21px 20px;
}
.notice-title p {
  font-family: 'Binggrae', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #676767;
}
.ui-widget.ui-widget-content {
  border: 0;
  padding: 0;
}
.ui-tabs .ui-tabs-nav {
  border: 0;
  padding: 0;
  background-color: initial;
}
.ui-tabs .ui-tabs-nav li {
  border: 0;
  margin: 0;
  padding: 0;
  background-color: #fff;
}
.ui-tabs .ui-tabs-nav li a {
  padding: 0;
  color: #acacac;
}
.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  padding: 0;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin: 0;
  padding: 0;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active a {
  padding: 0;
  color: #232323;
  font-weight: 600;
}
.ui-tabs .ui-tabs-panel {
  padding: 0;
}
.todaymeal {
  width: 380px;
}
@media only screen and (max-width: 1199px) {
  .todaymeal {
    width: calc(100% - 300px);
    margin-right: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .todaymeal {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
}
.todaymeal-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.todaymeal-info h2 {
  font-family: 'Binggrae', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #232323;
}
.todaymeal-content {
  background: url("images/todaymeal-bak.png") no-repeat;
  width: 100%;
  height: 280px;
  margin-top: 15px;
  padding: 30px;
}
@media only screen and (max-width: 1199px) {
  .todaymeal-content {
    background-repeat: initial;
    border-radius: 25px;
  }
}
.todaymeal-content .todymeal-scroll {
  overflow-y: auto;
  height: 220px;
  padding-right: 10px;
}
.todaymeal-content .todymeal-scroll::-webkit-scrollbar {
  width: 15px;
}
.todaymeal-content .todymeal-scroll::-webkit-scrollbar-thumb {
  background-color: #abce01;
}
.todaymeal-content .todymeal-scroll::-webkit-scrollbar-track {
  background-color: rgba(99, 203, 8, 0.34);
}
.todaymeal-content .todymeal-scroll h4 {
  font-family: 'Binggrae', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #049039;
  word-break: keep-all;
}
.todaymeal-content .todymeal-scroll p {
  font-family: 'Binggrae', sans-serif;
  font-size: 16px;
  color: #232323;
  padding-top: 5px;
  margin-bottom: 18px;
  line-height: 1.3;
  word-break: keep-all;
}
.banner {
  position: relative;
  width: 280px;
  border-radius: 25px;
}
@media only screen and (max-width: 768px) {
  .banner {
    margin: 0 auto;
  }
}
.banner-util {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 190px;
  height: 40px;
  padding: 0 20px;
  background-color: #abce01;
  border-radius: 10px 10px 0 0;
}
.banner-count span {
  font-family: 'NanumSquare', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  padding-right: 2px;
}
.banner-count .banner-nownum {
  color: #049039;
}
.banner-control {
  display: flex;
}
.banner-arrow a {
  font-size: 14px;
  text-decoration: none;
}
.banner-arrow a i,
.banner-arrow a svg {
  color: #fff;
}
.banner-arrow a:hover i,
.banner-arrow a:hover svg {
  color: #049039;
}
.banner-arrow .banner-prev::after {
  content: "|";
  font-size: 13px;
  color: #eee;
  margin-left: 10px;
  margin-right: 5px;
  vertical-align: 2px;
}
.banner-playstop::before {
  content: "|";
  font-size: 13px;
  color: #eee;
  margin-left: 10px;
  margin-right: 5px;
  vertical-align: 2px;
}
.banner-playstop a {
  font-size: 16px;
  text-decoration: none;
}
.banner-playstop a i,
.banner-playstop a svg {
  color: #fff;
}
.banner-playstop a:hover i,
.banner-playstop a:hover svg {
  color: #049039;
}
footer {
  background-color: #1b212a;
}
.footer-info {
  display: flex;
  align-items: center;
  height: 60px;
}
.footer-info ul {
  display: flex;
  align-items: center;
}
.footer-info ul li {
  list-style: none;
}
.footer-info ul li a {
  color: #fff;
}
.footer-info ul li a:hover {
  text-decoration: none;
  color: #abce01;
}
.footer-info ul li:after {
  content: "|";
  color: #aaa;
  font-size: 14px;
  margin-left: 25px;
  margin-right: 25px;
}
.footer-info ul li:last-child:after {
  content: "";
}
.footer-info ul li .footer-point {
  color: #ffd200;
}
.footer-content {
  display: flex;
  align-items: center;
  background-color: #1b1e24;
  height: 165px;
}
@media only screen and (max-width: 1199px) {
  .footer-content {
    height: 220px;
  }
}
@media only screen and (max-width: 768px) {
  .footer-content {
    height: 280px;
  }
}
.footer-address {
  display: flex;
}
@media only screen and (max-width: 1199px) {
  .footer-address {
    flex-wrap: wrap;
  }
}
.footer-logo {
  margin-right: 75px;
  display: inline-block;
}
@media only screen and (max-width: 1199px) {
  .footer-logo {
    width: 100%;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-address-box {
    margin-top: 20px;
  }
}
.footer-address-box address {
  font-family: 'NanumSquare', sans-serif;
  font-size: 16px;
  color: #fff;
  padding: 4px 0;
}
.footer-address-box address span {
  padding-right: 30px;
}
.footer-address-box address span:last-child {
  padding-right: 0;
}
@media only screen and (max-width: 768px) {
  .footer-address-box address span {
    padding: 5px 0;
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .footer-address-box address {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    word-break: keep-all;
    line-height: 1.2;
  }
}
.footer-address-box p {
  margin-top: 10px;
  color: #bbb;
}
@media only screen and (max-width: 768px) {
  .footer-address-box p {
    font-size: 14px;
    word-break: keep-all;
    line-height: 1.2;
  }
}