@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+KR&display=swap");
/* popup-top */
.popup {
  position: absolute;
  top: 200px;
  right: 12.5%;
  font-size: 18px;
}
.popup .position {
  position: relative;
  width: 500px;
  height: 390px;
  padding: 18px;
  border: 2.5px dashed #fff;
  background: rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
}
.popup .position .close_btn {
  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;
  margin-bottom: 15px;
}
.popup .position .close_btn label {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
}
.popup .position .close_btn label input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 18px;
  height: 18px;
  cursor: pointer;
  outline: none !important;
  border: 1px solid #fff;
  background: transparent;
  margin-right: 10px;
  vertical-align: middle;
}
.popup .position .close_btn label input[type=checkbox]:before {
  content: "✓";
  position: absolute;
  bottom: -20%;
  left: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  font-size: 27px;
  font-weight: bold;
}
.popup .position .close_btn label input[type=checkbox]:checked {
  background: #fff;
  color: #B6CDEF;
}
.popup .position .close_btn label input[type=checkbox]:checked:before {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.popup .position .close_btn .close {
  width: 30px;
  height: 30px;
  background: #fff;
  color: #7B8FB0;
  padding: 3px 0;
  font-size: 25px;
  text-align: center;
}
.popup .position h3 {
  background: #fff;
  border-radius: 20px;
  padding: 5px 18px 7px 15px;
  color: #95A5C0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 15px;
  font-weight: 500;
}
.popup .position img {
  width: 100%;
}
.popup .position .move_btn {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #DC709F;
  background: #fff;
  padding: 15px 50px;
  border-radius: 30px 0 0 0;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .popup {
    top: 200px;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  .popup .position {
    width: 700px;
    height: 100%;
    background: rgb(255, 255, 255);
  }
  .popup .position .close_btn label {
    color: #B6CDEF;
    text-shadow: none;
  }
  .popup .position .close_btn label input[type=checkbox] {
    border: 1px solid #B6CDEF;
  }
  .popup .position h3 {
    background: #95A5C0;
    color: #fff;
  }
}
@media (max-width: 768px) {
  .popup .position {
    width: 330px;
  }
}
#right_pop {
  position: fixed;
  bottom: 18%;
  right: 3%;
}
#right_pop .r_p_position {
  position: relative;
}
#right_pop .r_p_position i {
  display: block;
  margin: 2px 0;
  font-size: 30px;
  color: #333;
  width: 75px;
  height: 75px;
  line-height: 70px;
  text-align: center;
  background: #fff;
  border-radius: 50%;
  border: 1.5px solid #4E813B;
  -webkit-box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.3);
}
#right_pop .r_p_position .action-list {
  -webkit-transform: scale(0) translateY(400px);
          transform: scale(0) translateY(400px);
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#right_pop .r_p_position .action-list li {
  text-align: center;
}
#right_pop .r_p_position .action-list li a {
  color: #90BE45;
  font-size: 15px;
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.5);
}
#right_pop .r_p_position .action-list.on {
  -webkit-transform: scale(1) translateY(0);
          transform: scale(1) translateY(0);
  opacity: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#right_pop .r_p_position .xi-plus {
  margin: 15px 0 0;
  background: #4E813B;
  border: 2px solid #ccc;
  color: #fff;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#right_pop .r_p_position .xi-plus.on {
  border: none;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media (max-width: 768px) {
  #right_pop {
    bottom: 30%;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}
#toTop {
  display: none;
  position: fixed;
  bottom: 8%;
  right: 3%;
  cursor: pointer;
}
#toTop i {
  font-size: 30px;
  color: #78b319;
  width: 75px;
  height: 75px;
  line-height: 70px;
  text-align: center;
  background: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  #toTop {
    bottom: 22%;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
/*header*/
#header {
  color: #333;
  background: #fff;
}
#header .container {
  width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1024px) {
  #header .container {
    width: auto;
  }
}
#header .top {
  line-height: 40px;
  border-bottom: 1px solid #ddd;
}
#header .top img {
  width: 80px;
  margin-top: -5px;
}
#header .top ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#header .top ul > li > a {
  display: block;
  font-size: 12px;
}
#header .top ul > li ~ li > a:before {
  content: "";
  display: block;
  display: inline-block;
  width: 1px;
  height: 10px;
  background: #ddd;
  margin: 0 21px;
}
#header .bottom {
  line-height: 100px;
}
#header .bottom ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#header .bottom ul > li > a {
  margin: 0 22px;
  font-weight: 500;
  font-size: 18px;
}
#header .bottom ul > li:hover {
  color: #90BE45;
}
#header .bottom .right a {
  padding: 5px 16px;
  border: 1px solid #eee;
  border-radius: 20px;
}
#header .bottom .right a i {
  color: #999;
  margin-right: 6px;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
#header .mopen {
  display: none;
}

/*main_visual*/
#main_visual {
  position: relative;
  letter-spacing: -0.025em;
}
#main_visual figure {
  background: url("../img/main_visual.jpg") no-repeat center center/cover;
  height: calc(100vh - 150px);
}
#main_visual .container {
  width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  padding-top: 10%;
  color: #fff;
}
@media (max-width: 1024px) {
  #main_visual .container {
    width: auto;
  }
}
#main_visual .sub-title {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 36px;
  letter-spacing: -0.04em;
}
#main_visual h2 {
  font-size: 72px;
  font-weight: 500;
  letter-spacing: 0;
  font-family: "Noto Serif KR", sans-serif;
}
#main_visual h2 span {
  font-size: 48px;
  letter-spacing: 0;
  -webkit-animation: bloom 2s forwards;
          animation: bloom 2s forwards;
}
#main_visual h2 strong {
  opacity: 0;
  -webkit-animation: bloom2 2s 2s forwards;
          animation: bloom2 2s 2s forwards;
}
#main_visual .ex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 0;
  width: 1200px;
}
#main_visual .ex li {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#main_visual .ex li .case {
  position: absolute;
  bottom: 0;
  left: 0;
}
#main_visual .ex li .case .bg {
  width: 370px;
  height: 90px;
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  overflow: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#main_visual .ex li .case .bg h3 {
  font-size: 28px;
  font-weight: 700;
  padding: 34px 0 0;
}
#main_visual .ex li .case .bg h3 i {
  font-size: 32px;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
#main_visual .ex li .case .bg h3 span {
  font-size: 18px;
  font-weight: 500;
}
#main_visual .ex li .case .bg h3:after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #90BE45;
  margin: 18px auto 26px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#main_visual .ex li .case .bg p {
  font-size: 0;
  font-weight: 300;
}
#main_visual .ex li .case .bg strong {
  display: block;
  margin: 10px auto 20px;
  font-size: 0;
  font-weight: 500;
}
#main_visual .ex li .case .bg a {
  display: block;
  width: 50%;
  padding: 10px 0 12px;
  border: 1px solid #ddd;
  margin: 30px auto 0;
  border-radius: 20px;
}
#main_visual .ex li .case .bg a:hover {
  border: none;
  background: #4E813B;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#main_visual .ex li .case:hover .bg {
  height: 280px;
}
#main_visual .ex li .case:hover h3 {
  padding: 50px 0 0;
  color: #90BE45;
}
#main_visual .ex li .case:hover h3:after {
  width: 300px;
}
#main_visual .ex li .case:hover p {
  font-size: 16px;
}
#main_visual .ex li .case:hover strong {
  font-size: 23px;
}

@-webkit-keyframes bloom {
  0% {
    opacity: 0.3;
  }
  60% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

@keyframes bloom {
  0% {
    opacity: 0.3;
  }
  60% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes bloom2 {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.5;
  }
  75% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bloom2 {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.5;
  }
  75% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}
.con01-02 {
  background: url("../img/bg01.jpg") no-repeat center center/cover;
  overflow: hidden;
}

/*con01*/
#con01 {
  padding: 180px 0;
}
#con01 .container {
  position: relative;
  width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #333;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1024px) {
  #con01 .container {
    width: auto;
  }
}
#con01 .container .left {
  height: 40px;
  color: #000;
  font-weight: 500;
  padding: 9px 40px;
  border: 1px solid #ccc;
  border-radius: 40px;
}
#con01 .container > div {
  overflow: hidden;
}
#con01 .container .slider {
  width: 730px;
}
#con01 .container .slider a {
  line-height: 42px;
}
#con01 .container .slider a strong {
  display: inline-block;
  width: 75px;
  height: 40px;
  margin-right: 30px;
  line-height: 40px;
  border-radius: 10px;
  font-size: 18px;
  background: #4E813B;
  color: #fff;
  text-align: center;
}
#con01 .container .slider a span {
  font-size: 24px;
  font-weight: 500;
  margin-right: 30px;
}
#con01 .container .slider a em {
  font-size: 18px;
  font-weight: 300;
}
#con01 .container .btn i {
  width: 40px;
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 40px;
  font-size: 23px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
}
#con01 .container .btn i.xi-angle-down {
  margin-left: 15px;
}
#con01 .container:before {
  content: "";
  display: block;
  position: absolute;
  bottom: -45px;
  right: 0;
  width: 200%;
  height: 1px;
  background: #999;
}

/*con02*/
#con02 {
  padding: 40px 0 170px;
  text-align: center;
  letter-spacing: -0.025em;
  color: #333;
}
#con02 h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  #con02 h2 {
    font-size: 2.8vh;
  }
}
#con02 p {
  margin-bottom: 90px;
}
#con02 .tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#con02 .tab > li {
  position: relative;
  font-size: 21px;
  font-weight: 500;
  margin: 0 25px 45px;
  color: #444;
  cursor: pointer;
}
#con02 .tab > li:before {
  position: absolute;
  top: 70%;
  left: -10%;
  content: "";
  display: block;
  width: 0;
  height: 10px;
  background: rgba(144, 190, 69, 0.2);
  border-radius: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#con02 .tab > li:after {
  position: absolute;
  top: 25%;
  right: -23px;
  display: none;
  content: "";
  width: 20px;
  height: 19px;
  background: #78b319;
  border-radius: 12px 0;
}
#con02 .tab > li.on:before {
  width: 75px;
}
#con02 .tab > li.on:after {
  content: "";
  display: block;
}
#con02 .slider_wrap {
  width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: right;
  position: relative;
}
@media (max-width: 1024px) {
  #con02 .slider_wrap {
    width: auto;
  }
}
#con02 .slider_wrap .container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 100px;
}
#con02 .slider_wrap .container figure:nth-of-type(1) {
  width: 780px;
  margin-right: 10px;
}
#con02 .slider_wrap .container figure:nth-of-type(1) .slick-list {
  border-radius: 0 0 0 300px;
}
#con02 .slider_wrap .container figure:nth-of-type(2) {
  background: url("../img/con02_top.jpg") no-repeat center center/cover;
  width: 390px;
  height: 230px;
  margin-top: 30px;
  color: #fff;
  padding: 75px 0 0 37px;
  text-align: left;
  border-radius: 0 300px 0 0;
}
#con02 .slider_wrap .container figure:nth-of-type(2) a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#con02 .slider_wrap .container figure:nth-of-type(2) a strong {
  font-size: 24px;
  font-weight: 500;
}
#con02 .slider_wrap .container figure:nth-of-type(2) a strong:after {
  display: inline-block;
  content: "";
  width: 2px;
  height: 16px;
  background: #ddd;
  margin: 0 25px 0 18px;
}
#con02 .slider_wrap .container figure:nth-of-type(2) a span {
  font-size: 17px;
  font-weight: 300;
  line-height: 30px;
}
#con02 .slider_wrap .container figure:nth-of-type(3) {
  width: 390px;
  position: absolute;
  top: 270px;
  right: -10px;
}
#con02 .slider_wrap .container figure img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#con02 .slider_wrap .container figure img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
#con02 .slider_wrap > a {
  height: 40px;
  color: #000;
  font-weight: 500;
  padding: 9px 40px;
  border: 1px solid #ccc;
  border-radius: 40px;
}
#con02 .slider_wrap:before {
  content: "";
  display: block;
  position: absolute;
  bottom: -35px;
  left: 0;
  width: 200%;
  height: 1px;
  background: #999;
}

/*con03*/
#con03 {
  padding: 170px 0 125px;
  background: url("../img/con03.jpg") no-repeat center center/cover;
  text-align: center;
  color: #fff;
  letter-spacing: -0.025em;
}
#con03 h2 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 10px;
  font-family: "Noto Serif KR", sans-serif;
}
#con03 p {
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 18px;
  font-family: "Noto Serif KR", sans-serif;
}
#con03 span {
  font-size: 18px;
  font-weight: 300;
  font-family: "Noto Serif KR", sans-serif;
}
#con03 .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#con03 .btn a {
  display: block;
  border: 1px solid #999;
  width: 230px;
  height: 42px;
  line-height: 42px;
  margin: 45px 15px 90px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#con03 .btn a:nth-child(1) {
  border: none;
  background: #4E813B;
}
#con03 .btn a:hover {
  border: none;
  background: #4E813B;
}
#con03 > a {
  height: 40px;
  color: #000;
  font-weight: 500;
  padding: 9px 40px;
  border: 1px solid #ccc;
  border-radius: 40px;
  background: #ccc;
}

/*con04*/
.con04_bg {
  background: url("../img/con04.jpg") no-repeat top center/cover;
}

#con04 {
  padding: 165px 0;
  background: #fff;
  border-radius: 400px 0 0 0;
}
#con04 .container {
  width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  color: #333;
  letter-spacing: -0.025em;
  text-align: center;
}
@media (max-width: 1024px) {
  #con04 .container {
    width: auto;
  }
}
#con04 .container h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 35px;
  text-align: left;
}
@media (max-width: 1024px) {
  #con04 .container h2 {
    font-size: 2.8vh;
  }
}
#con04 .container .content_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 15px 0 0;
  margin-bottom: 90px;
  text-align: left;
}
#con04 .container .content_wrap .left {
  width: 385px;
  height: 500px;
  border-top: 1.5px solid #000;
  padding: 130px 0 0 73px;
}
#con04 .container .content_wrap .left h3 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 40px;
}
#con04 .container .content_wrap .left p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 35px;
  color: #444;
}
#con04 .container .content_wrap .left span {
  color: #555;
}
#con04 .container .content_wrap .left .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 32px;
}
#con04 .container .content_wrap .left .btn i {
  width: 36px;
  height: 36px;
  border: 1px solid #ccc;
  border-radius: 36px;
  font-size: 20px;
  text-align: center;
  line-height: 35px;
  cursor: pointer;
}
#con04 .container .content_wrap .left .btn i.xi-angle-right {
  margin-left: 10px;
}
#con04 .container .content_wrap .poster {
  width: 770px;
}
#con04 .container .content_wrap .poster figure {
  position: relative;
  margin-left: 30px;
}
#con04 .container .content_wrap .poster figure img {
  height: 500px;
}
#con04 .container .content_wrap .poster figure a {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 185px;
  background: rgba(78, 129, 59, 0.85);
  padding: 40px 0 0 35px;
  color: #fff;
}
#con04 .container .content_wrap .poster figure a strong {
  font-size: 24px;
  font-weight: 500;
}
#con04 .container .content_wrap .poster figure a span {
  display: block;
  font-size: 15px;
  margin: 8px 0 13px;
}
#con04 .container .content_wrap .poster figure a em {
  font-weight: 300;
  line-height: 26px;
  font-size: 17px;
}
#con04 .container .content_wrap .poster .slick-dots {
  position: absolute;
  bottom: 0;
  left: -314px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#con04 .container .content_wrap .poster .slick-dots li {
  width: 62.8px;
  height: 5px;
  background: #cecece;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  cursor: pointer;
}
#con04 .container .content_wrap .poster .slick-dots li.slick-active {
  background: #78b319;
}
#con04 .container .content_wrap .poster .slick-dots li button {
  display: none;
}
#con04 .container > a {
  height: 40px;
  color: #000;
  font-weight: 500;
  padding: 9px 40px;
  border: 1px solid #ccc;
  border-radius: 40px;
}

/*con05*/
#con05 {
  background: url("../img/con05_background_large.jpg") no-repeat fixed center center/cover;
  padding: 300px 0 250px;
}
#con05 .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 1024px) {
  #con05 .container {
    width: auto;
  }
}
#con05 .container .left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #000;
  border: 2px solid #ccc;
  margin-right: 15px;
}
#con05 .container .left:hover {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  z-index: 999;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#con05 .container .right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  margin-left: 15px;
  background: url("../img/con05.jpg") no-repeat center center/cover;
  border: 2px solid #ccc;
}
#con05 .container .right a {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 40px;
  color: #000;
  font-weight: 500;
  padding: 9px 40px;
  border: 1px solid #ccc;
  border-radius: 40px;
  padding: 11px 60px;
  background: #eee;
}
#con05 .container .right:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#con05 .container .right:hover a {
  bottom: 44%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

/*footer*/
#footer {
  padding: 70px 0 50px;
  background: #434D3E;
  font-weight: 500;
}
#footer .container {
  width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  color: #999;
  letter-spacing: -0.025em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1024px) {
  #footer .container {
    width: auto;
  }
}
#footer .container .footer_nb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#footer .container .footer_nb dl {
  margin-right: 60px;
  border-left: 1px solid #777;
  padding: 0 12px;
}
#footer .container .footer_nb dl dt {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 13px;
  color: #ccc;
}
#footer .container .footer_nb dl dd {
  line-height: 29px;
  font-size: 15px;
}
#footer .container .right {
  text-align: right;
}
#footer .container .right .sns {
  border-bottom: 1px solid #777;
  margin-bottom: 20px;
  color: #ccc;
  padding-bottom: 15px;
}
#footer .container .right .sns i {
  font-size: 28px;
  margin-left: 12px;
}
#footer .container .right img {
  max-width: 180px;
  margin-bottom: 18px;
}
#footer .container .right address {
  font-size: 14px;
  font-weight: 300;
}

@media (max-width: 1024px) {
  /*header*/
  #header .container {
    width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    padding: 0 15px;
  }
  /*main_visual*/
  /*con01*/
  /*con02*/
  /*con03*/
  /*con04*/
  /*con05*/
  /*footer*/
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #header .container {
    width: auto;
  }
}
@media (max-width: 1024px) {
  #header .top {
    position: absolute;
    top: 0;
    left: -100%;
    width: calc(100% - 85px);
    background: #fff;
    border-right: 1px solid #999;
    z-index: 999;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  #header .top.on {
    left: 0;
  }
  #header .top img {
    display: none;
  }
  #header .top ul {
    padding-right: 30px;
  }
  #header .top ul > li > a {
    display: block;
    font-size: 13px;
  }
  #header .top ul > li ~ li > a:before {
    height: 2vw;
    background: #cecece;
    margin: 0 1vw;
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
    line-height: 30px;
  }
  #header .bottom img {
    position: relative;
    width: 100%;
    z-index: 10000;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  #header .bottom img.on {
    padding-top: 80px;
  }
  #header .bottom .gnb {
    position: fixed;
    top: 0;
    left: -100%;
    width: calc(100% - 85px);
    background: #fff;
    border-right: 1px solid #999;
    height: 100vh;
    z-index: 998;
    padding: 180px 0 0 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  #header .bottom .gnb.on {
    left: 0;
  }
  #header .bottom ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    line-height: 70px;
    margin-top: -5px;
    padding: 0 30px;
  }
  #header .bottom ul > li {
    border-bottom: 1.5px solid #ddd;
  }
  #header .bottom ul > li > a {
    display: block;
    margin: 0px;
    padding: 0;
    font-size: 22px;
  }
  #header .bottom .right {
    position: fixed;
    bottom: 50px;
    left: -100%;
    z-index: 10000;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    opacity: 0;
  }
  #header .bottom .right.on {
    left: 15px;
    opacity: 1;
  }
  #header .mopen {
    display: block;
    position: fixed;
    top: 32px;
    right: 6%;
    z-index: 999;
  }
  #header .mopen:after {
    position: relative;
    content: "";
    display: block;
    padding: 5px;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 0.5px solid #eee;
    -webkit-box-shadow: 2px 1px 5px rgba(120, 179, 25, 0.2);
            box-shadow: 2px 1px 5px rgba(120, 179, 25, 0.2);
    -webkit-transform: scale(1.45);
            transform: scale(1.45);
  }
  #header .mopen span {
    position: absolute;
    display: block;
    width: 100%;
    height: 3px;
    background: #4e813b;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    z-index: 1;
    opacity: 0.8;
  }
  #header .mopen span:nth-child(1) {
    top: 10px;
  }
  #header .mopen span:nth-child(2) {
    top: 19px;
  }
  #header .mopen span:nth-child(3) {
    top: 19px;
  }
  #header .mopen span:nth-child(4) {
    top: 28px;
  }
  #header .mopen.on span:nth-child(1) {
    opacity: 0;
    -webkit-transform: translateX(-30px) scale(0.8);
            transform: translateX(-30px) scale(0.8);
  }
  #header .mopen.on span:nth-child(2) {
    -webkit-transform: rotate(45deg) scale(0.8);
            transform: rotate(45deg) scale(0.8);
  }
  #header .mopen.on span:nth-child(3) {
    -webkit-transform: rotate(-45deg) scale(0.8);
            transform: rotate(-45deg) scale(0.8);
  }
  #header .mopen.on span:nth-child(4) {
    opacity: 0;
    -webkit-transform: translateX(30px) scale(0.8);
            transform: translateX(30px) scale(0.8);
  }
  #main_visual {
    text-align: center;
  }
  #main_visual figure {
    height: calc(100vh - 120px);
  }
  #main_visual .container {
    padding: 16vh 0 0;
    letter-spacing: -0.025em;
  }
  #main_visual .sub-title {
    font-size: 3.5vh;
    margin-bottom: 25px;
  }
  #main_visual h2 {
    font-size: 8vh;
    margin-bottom: 25px;
    text-shadow: 0 0 2px #cecece;
  }
  #main_visual h2 span {
    font-size: 5vh;
    font-weight: 500;
    margin-bottom: 25px;
    display: block;
    text-shadow: none;
    opacity: 1;
    -webkit-animation: none;
            animation: none;
  }
  #main_visual h2 strong {
    opacity: 1;
    -webkit-animation: none;
            animation: none;
  }
  #main_visual .ex {
    display: block;
    width: 100%;
    margin: 0 auto;
  }
  #main_visual .ex li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  #main_visual .ex li .case {
    position: static;
  }
  #main_visual .ex li .case .bg {
    width: 43vh;
    height: 34vh;
    margin: 0 auto;
    padding: 0 10px;
    -webkit-transition: none;
    transition: none;
  }
  #main_visual .ex li .case .bg h3 {
    font-size: 3.3vh;
    padding: 6.5vh 0 0;
    color: #90be45;
  }
  #main_visual .ex li .case .bg h3 i {
    font-size: 3.3vh;
  }
  #main_visual .ex li .case .bg h3 span {
    font-size: 2.2vh;
  }
  #main_visual .ex li .case .bg h3:after {
    content: "";
    display: block;
    width: 38vh;
    height: 2px;
    margin: 2.2vh auto 2.6vh;
    -webkit-transition: none;
    transition: none;
  }
  #main_visual .ex li .case .bg p {
    font-size: 1.9vh;
  }
  #main_visual .ex li .case .bg strong {
    margin: 1.5vh auto 2.8vh;
    font-size: 2.6vh;
  }
  #main_visual .ex li .case .bg a {
    display: block;
    width: 50%;
    padding: 10px 0 12px;
    border: 1px solid #ddd;
    margin: 30px auto 0;
    border-radius: 20px;
  }
  #main_visual .ex li .case:hover .bg {
    width: 43vh;
    height: 34vh;
    margin: 0 auto;
    padding: 0 10px;
    -webkit-transition: none;
    transition: none;
  }
  #main_visual .ex li .case:hover h3 {
    font-size: 3.3vh;
    padding: 6.5vh 0 0;
    color: #90be45;
  }
  #main_visual .ex li .case:hover h3 i {
    font-size: 3.3vh;
  }
  #main_visual .ex li .case:hover h3 span {
    font-size: 2.2vh;
  }
  #main_visual .ex li .case:hover h3:after {
    content: "";
    display: block;
    width: 38vh;
    height: 2px;
    margin: 2.2vh auto 2.6vh;
    -webkit-transition: none;
    transition: none;
  }
  #main_visual .ex li .case:hover p {
    font-size: 1.9vh;
  }
  #main_visual .ex li .case:hover strong {
    margin: 1.5vh auto 2.8vh;
    font-size: 2.6vh;
  }
  #main_visual .ex .slick-dots {
    position: absolute;
    top: -12%;
    left: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  #main_visual .ex .slick-dots li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    margin: 0 3px;
  }
  #main_visual .ex .slick-dots li.slick-active {
    background: #90be45;
  }
  #main_visual .ex .slick-dots li button {
    display: none;
  }
  .con01-02 {
    background: url("../img/bg01.jpg") no-repeat top left/cover;
  }
  #con01 {
    padding: 80px 0;
  }
  #con01 .container {
    position: relative;
    width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    margin: 0 25px;
    padding: 0;
    display: block;
    text-align: center;
    color: #333;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #con01 .container {
    width: auto;
  }
}
@media (max-width: 1024px) {
  #con01 .container .left {
    height: 40px;
    color: #000;
    font-weight: 500;
    padding: 9px 40px;
    border: 1px solid #ccc;
    border-radius: 40px;
    margin-bottom: 5px;
    line-height: 42px;
  }
  #con01 .container .slider {
    width: auto;
    margin: 30px 15px;
  }
  #con01 .container .slider a {
    line-height: 4vh;
    word-break: keep-all;
  }
  #con01 .container .slider a strong {
    display: none;
  }
  #con01 .container .slider a span {
    font-size: 25px;
    margin-right: 0;
  }
  #con01 .container .slider a em {
    display: block;
    font-size: 18px;
  }
  #con01 .container .btn i.xi-angle-down {
    margin-left: 5px;
  }
  #con01 .container:before {
    width: 100%;
  }
  #con02 h2 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 8px;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #con02 h2 {
    font-size: 2.8vh;
  }
}
@media (max-width: 1024px) {
  #con02 p {
    margin-bottom: 30px;
    font-size: 1.7vh;
  }
  #con02 .tab {
    padding: 0 15px;
    margin-bottom: 2.5vh;
  }
  #con02 .tab > li {
    font-size: 2.3vh;
    margin: 0 2vh 40px 2vh;
  }
  #con02 .tab > li.on:before {
    width: 8vh;
  }
  #con02 .tab > li.on:after {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
  }
  #con02 .slider_wrap {
    width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    padding: 0 15px;
    text-align: center;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #con02 .slider_wrap {
    width: auto;
  }
}
@media (max-width: 1024px) {
  #con02 .slider_wrap .container {
    display: block;
    margin: 0 15px 50px;
    height: 100%;
    overflow: hidden;
  }
  #con02 .slider_wrap .container figure:nth-of-type(1) {
    width: auto;
    height: 70%;
    margin-right: 0;
  }
  #con02 .slider_wrap .container figure:nth-of-type(1) .slick-list {
    border-radius: 0 100px 0 0;
  }
  #con02 .slider_wrap .container figure:nth-of-type(2) {
    width: 100%;
    height: 30%;
    margin-top: 0;
    padding: 10% 0 7% 0;
    text-align: center;
    border-radius: 0 0 0 100px;
  }
  #con02 .slider_wrap .container figure:nth-of-type(2) a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #con02 .slider_wrap .container figure:nth-of-type(2) a strong {
    font-size: 2.7vh;
    font-weight: 500;
    text-align: left;
  }
  #con02 .slider_wrap .container figure:nth-of-type(2) a strong:after {
    width: 2px;
    height: 2.2vh;
    margin: 0 25px 0 18px;
  }
  #con02 .slider_wrap .container figure:nth-of-type(2) a span {
    display: block;
    font-size: 2vh;
    line-height: 3.2vh;
    text-align: left;
  }
  #con02 .slider_wrap .container figure:nth-of-type(3) {
    display: none;
  }
  #con02 .slider_wrap:before {
    width: calc(100% - 50px);
    left: 25px;
    bottom: -70px;
  }
  #con03 {
    padding: 170px 0;
  }
  #con03 h2 {
    font-size: 3.3vh;
    margin-bottom: 20px;
  }
  #con03 p {
    font-size: 1.9vh;
    margin-bottom: 8px;
    padding: 0 25px;
    line-height: 3vh;
    word-break: keep-all;
  }
  #con03 span {
    display: none;
  }
  #con03 .btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 25px;
    margin-bottom: 100px;
  }
  #con03 .btn a {
    width: 70%;
    height: 5vh;
    line-height: 5vh;
    margin: 3vh auto 0;
    font-size: 1.7vh;
  }
  #con03 .btn a:nth-child(1) {
    border: none;
    background: #4E813B;
  }
  #con03 .btn a:hover {
    border: none;
    background: #4E813B;
  }
  #con04 {
    padding: 130px 0;
    border-radius: 200px 0 0 0;
  }
  #con04 .container {
    width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    padding: 0;
    margin: 0;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #con04 .container {
    width: auto;
  }
}
@media (max-width: 1024px) {
  #con04 .container h2 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 35px;
    text-align: center;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #con04 .container h2 {
    font-size: 2.8vh;
  }
}
@media (max-width: 1024px) {
  #con04 .container .content_wrap {
    display: block;
    width: 100%;
    padding: 0 15px;
    margin-bottom: 60px;
    text-align: center;
  }
  #con04 .container .content_wrap .left {
    width: auto;
    height: auto;
    padding: 8vh 0;
    margin: 0 20px;
  }
  #con04 .container .content_wrap .left h3 {
    font-size: 2.8vh;
    margin-bottom: 3.2vh;
  }
  #con04 .container .content_wrap .left p {
    font-size: 2vh;
    line-height: 3.3vh;
    margin-bottom: 13px;
  }
  #con04 .container .content_wrap .left span {
    font-size: 1.85vh;
  }
  #con04 .container .content_wrap .left .btn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #con04 .container .content_wrap .poster {
    width: 100%;
    margin-top: -30px;
  }
  #con04 .container .content_wrap .poster:after {
    content: "";
    display: block;
    width: auto;
    height: 1px;
    background: #999;
    margin-top: 8vh;
  }
  #con04 .container .content_wrap .poster figure {
    padding: 0;
    margin: 0 20px;
  }
  #con04 .container .content_wrap .poster figure img {
    width: 100%;
    height: auto;
  }
  #con04 .container .content_wrap .poster figure a {
    width: 100%;
    height: 22vh;
    padding: 5vh 0 0 0;
    margin-left: 0;
  }
  #con04 .container .content_wrap .poster figure a strong {
    font-size: 2.6vh;
  }
  #con04 .container .content_wrap .poster figure a span {
    font-size: 1.6vh;
  }
  #con04 .container .content_wrap .poster figure a em {
    line-height: 3vh;
    font-size: 1.9vh;
  }
  #con04 .container .content_wrap .poster .slick-dots {
    display: none;
  }
  #con04 .container > a {
    height: 40px;
    color: #000;
    font-weight: 500;
    padding: 9px 40px;
    border: 1px solid #ccc;
    border-radius: 40px;
  }
  #con05 {
    padding: 100px 0;
  }
  #con05 .container {
    display: block;
    width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  #con05 .container {
    width: auto;
  }
}
@media (max-width: 1024px) {
  #con05 .container .left {
    width: auto;
    margin: 0 20px;
  }
  #con05 .container .left:hover {
    -webkit-transform: none;
            transform: none;
  }
  #con05 .container .right {
    width: auto;
    height: 300px;
    margin: 20px 20px 0;
  }
  #con05 .container .right a {
    width: 250px;
    text-align: center;
    bottom: 44%;
  }
  #con05 .container .right:hover {
    -webkit-transform: none;
            transform: none;
  }
  #footer .container {
    display: block;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #footer .container .footer_nb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #footer .container .footer_nb dl {
    margin: 0 auto 30px;
    text-align: left;
    padding: 0 12px;
  }
  #footer .container .footer_nb dl dt {
    font-size: 1.8vh;
    margin-bottom: 2.6vh;
    word-break: keep-all;
    line-height: 1.5;
  }
  #footer .container .footer_nb dl dd {
    line-height: 2.8vh;
    font-size: 1.6vh;
    word-break: keep-all;
  }
  #footer .container .right {
    text-align: center;
  }
  #footer .container .right .sns {
    padding: 20px 0;
    border-top: 1px solid #555;
    border-bottom: 1px solid #555;
    margin-bottom: 30px;
  }
  #footer .container .right .sns i {
    font-size: 3vh;
    margin-left: 1.8vh;
  }
  #footer .container .right img {
    max-width: 50%;
    margin-bottom: 2.5vh;
  }
  #footer .container .right address {
    font-size: 1.5vh;
  }
}
@media (max-width: 768px) {
  /*header*/
  #header .top ul {
    padding-right: 0;
  }
  #header .bottom img.on {
    padding-top: 50px;
  }
  #header .bottom ul {
    line-height: 70px;
  }
  #header .bottom ul > li > a {
    font-size: 18px;
  }
  #con01 .container .slider a span {
    font-size: 18px;
  }
  #con01 .container .slider a em {
    font-size: 15px;
  }
}