#sec_01 {
  width: 100%;
  height: 100vh;
  position: relative;
  background: url(../img/main/sec_01_background.png) no-repeat center / cover;
}

#sec_01 .big_line {
  height: 100%;
  width: 80px;
  position: absolute;
  background: #ff611e;
  top: 0;
  z-index: 9999999;
}

#sec_01 .big_line:first-of-type {
  left: 0;
}

#sec_01 .big_line:last-of-type {
  right: 0;
}

#sec_01 .org_box {
  max-width: 85%;
  width: 100%;
  height: 100%;
  padding-top: 100px;
  border-left: 5px solid #ff611e;
  border-right: 5px solid #ff611e;
  margin: 0 auto;
}

#sec_01 .org_box .grn_box {
  max-width: 95%;
  width: 100%;
  height: 100%;
  border-left: 5px solid #00a028;
  border-right: 5px solid #00a028;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

#sec_01 .org_box .grn_box .wrap {
  max-width: 1350px;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#sec_01 .org_box .grn_box .wrap .text_box h2 {
  font-family: "NB";
  font-weight: bold;
  font-size: 40px;
  color: #ff611e;
  -webkit-text-stroke: 1px #000;
  margin-bottom: 20px;
}

#sec_01 .org_box .grn_box .wrap .text_box h1 {
  font-family: "NB";
  font-weight: bold;
  font-size: 50px;
  color: #fff;
  line-height: 70px;
}

#sec_01 .org_box .grn_box .wrap .text_box h1 span {
  font-size: 60px;
}

#sec_01 .org_box .grn_box .wrap .img_box {
  width: auto;
  height: auto;
  position: relative;
  z-index: 1;
}

#sec_01 .org_box .grn_box .wrap .img_box img {
  width: auto;
  height: auto;
  animation: circle infinite 60s linear;
  transition: all 0.3s;
  z-index: -1;
}

@keyframes circle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#sec_01 .org_box .grn_box .wrap .img_box .circle {
  width: 500px;
  height: 500px;
  background: #ff611e;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

#sec_01 .org_box .grn_box .wrap .img_box .circle img {
  width: auto;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 0;
  animation: unset;
}

#line {
  width: 100%;
  height: auto;
  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
  background: #00a028;
}

#line img {
  width: auto;
  height: auto;
  margin: 25px 0;
}

#sec_03 {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  background: url(../img/main/sec_03_background.png) no-repeat center / cover;
  padding: 100px 0;
  text-align: center;
}

#sec_03 .rolling {
  width: auto;
  height: auto;
  position: absolute;
  top: 0;
}

#sec_03 .rolling img {
  width: auto;
  height: auto;
}

#sec_03 .rolling:first-of-type {
  left: 5%;
}

#sec_03 .rolling:first-of-type img {
  animation: rolling_01 infinite 80s linear;
}

#sec_03 .rolling:last-of-type {
  right: 5%;
}

#sec_03 .rolling:last-of-type img {
  animation: rolling_02 infinite 60s linear;
}

@keyframes rolling_01 {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}

@keyframes rolling_02 {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(100%);
  }
}

#sec_03 h2 {
  font-family: "NB";
  font-weight: bold;
  font-size: 60px;
  margin-bottom: 50px;
}

#sec_03 h2 span {
  color: #ff611e;
}

#sec_03 .video_box {
  width: 900px;
  height: 490px;
  margin: 0 auto 50px;
}

#sec_03 .video_box video {
  width: 100%;
  height: 100%;
}

#sec_03 .neon_box_01 {
  width: auto;
  height: auto;
  padding: 25px;
  border: 3px dashed #ff611e;
  box-shadow: 0 0 20px rgba(255, 102, 37, 0.5), 0 0 30px rgba(255, 102, 37, 0.5);
  animation: neon_box_01 15s infinite alternate;
  max-width: 900px;
  margin: 0 auto 50px;
  background: rgba(000, 000, 000, 0.3);
}

@keyframes neon_box_01 {
  0%,
  19%,
  21%,
  23%,
  25%,
  54%,
  56%,
  100% {
    opacity: 1;
    box-shadow: 0 0 20px rgba(255, 102, 37, 0.5),
      0 0 30px rgba(255, 102, 37, 0.5);
  }
  20%,
  24%,
  55% {
    opacity: 0.4;
    box-shadow: none;
  }
}

#sec_03 .neon_box_01 .inner {
  width: auto;
  height: auto;
  background: #000;
  padding: 25px 35px;
  border: 3px solid #ff611e;
  box-shadow: 0 0 20px rgba(255, 102, 37, 0.5), 0 0 30px rgba(255, 102, 37, 0.5);
}

#sec_03 .neon_box_01 .inner h3 {
  font-family: "NB";
  font-size: 46px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #ff611e, 0 0 30px #ff611e,
    0 0 40px #ff611e, 0 0 50px #ff611e, 0 0 60px #ff611e, 0 0 70px #ff611e;
  animation: flicker_01 20s infinite alternate;
}

#sec_03 .neon_box_01 .inner h3 span {
  color: #ff611e;
}

#sec_03 .neon_box_01 .inner h4 {
  font-family: "NB";
  font-size: 80px;
  font-weight: bold;
  color: #ff611e;
  text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #ff611e, 0 0 30px #ff611e,
    0 0 40px #ff611e, 0 0 50px #ff611e, 0 0 60px #ff611e, 0 0 70px #ff611e;
  animation: flicker_01 20s infinite alternate;
}

#sec_03 .neon_box_01 .inner h4 span {
  font-size: 60px;
}

@keyframes flicker_01 {
  0%,
  19%,
  21%,
  23%,
  25%,
  54%,
  56%,
  100% {
    opacity: 1;
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #ff611e, 0 0 30px #ff611e,
      0 0 40px #ff611e, 0 0 50px #ff611e, 0 0 60px #ff611e, 0 0 70px #ff611e;
  }
  20%,
  24%,
  55% {
    opacity: 0.4;
    text-shadow: none;
  }
}

#sec_03 .neon_box_02 {
  width: auto;
  height: auto;
  padding: 25px;
  border: 3px dashed #00a028;
  box-shadow: 0 0 20px rgba(0, 174, 44, 0.5), 0 0 30px rgba(0, 174, 44, 0.5);
  animation: neon_box_02 10s infinite alternate;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(000, 000, 000, 0.3);
}

@keyframes neon_box_02 {
  0%,
  19%,
  21%,
  23%,
  25%,
  54%,
  56%,
  100% {
    opacity: 1;
    box-shadow: 0 0 20px rgba(0, 174, 44, 0.5), 0 0 30px rgba(0, 174, 44, 0.5);
  }
  20%,
  24%,
  55% {
    opacity: 0.4;
    box-shadow: none;
  }
}

#sec_03 .neon_box_02 .inner {
  width: auto;
  height: auto;
  padding: 25px 35px;
  border: 3px solid #00a028;
  box-shadow: 0 0 20px rgba(0, 174, 44, 0.5), 0 0 30px rgba(0, 174, 44, 0.5);
  background: #000;
}

#sec_03 .neon_box_02 .inner h3 {
  font-family: "NB";
  font-size: 46px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #00a028, 0 0 30px #00a028,
    0 0 40px #00a028, 0 0 50px #00a028, 0 0 60px #00a028, 0 0 70px #00a028;
  animation: flicker_02 15s infinite alternate;
}

#sec_03 .neon_box_02 .inner h3 span {
  color: #00a028;
}

#sec_03 .neon_box_02 .inner h4 {
  font-family: "NB";
  font-size: 80px;
  font-weight: bold;
  color: #00a028;
  text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #00a028, 0 0 30px #00a028,
    0 0 40px #00a028, 0 0 50px #00a028, 0 0 60px #00a028, 0 0 70px #00a028;
  animation: flicker_02 15s infinite alternate;
}

#sec_03 .neon_box_02 .inner h4 span {
  font-size: 60px;
}

@keyframes flicker_02 {
  0%,
  19%,
  21%,
  23%,
  25%,
  54%,
  56%,
  100% {
    opacity: 1;
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #00a028, 0 0 30px #00a028,
      0 0 40px #00a028, 0 0 50px #00a028, 0 0 60px #00a028, 0 0 70px #00a028;
  }
  20%,
  24%,
  55% {
    opacity: 0.4;
    text-shadow: none;
  }
}

#sec_04 {
  width: 100%;
  height: auto;
  padding: 100px 0;
  text-align: center;
  background: #f3e7d1;
}

#sec_04 .text_box {
  width: 100%;
  height: auto;
  position: relative;
}

#sec_04 .text_box img {
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

#sec_04 .text_box img:first-of-type {
  left: 0;
}

#sec_04 .text_box img:last-of-type {
  right: 0;
}

#sec_04 .text_box h2 {
  font-family: "NB";
  font-weight: bold;
  font-size: 80px;
  color: transparent;
  -webkit-text-stroke: 2px #000;
  margin-bottom: 30px;
}

#sec_04 .text_box h3 {
  font-family: "NB";
  font-weight: bold;
  font-size: 60px;
  color: #000;
  margin-bottom: 70px;
}

#sec_04 .img_box {
  width: 100%;
  max-width: 1103px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

#sec_04 .img_box img {
  width: auto;
  height: auto;
}

#sec_05 {
  width: 100%;
  height: auto;
  position: relative;
  padding: 100px 0;
  background: url(../img/main/sec_05_background.png) no-repeat center / cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

#sec_05 .wrap {
  width: 100%;
  height: auto;
  max-width: 1400px;
}

#sec_05 .wrap .h_text {
  width: auto;
  height: auto;
  margin-bottom: 100px;
}

#sec_05 .wrap .slide_wrap {
  width: auto;
  height: auto;
  position: relative;
}

#sec_05 .wrap .slide_wrap .slide {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#sec_05 .wrap .slide_wrap .slide .box {
  width: auto;
  height: auto;
  position: relative;
  margin: 0 50px;
}

#sec_05 .wrap .slide_wrap .slide .box img {
  width: 100%;
  height: auto;
  scale: 0.8;
  transition: all 0.3s;
}

#sec_05 .wrap .slide_wrap .slide .box img.active {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

#sec_05 .wrap .slide_wrap .slide_btn {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#sec_05 .wrap .slide_wrap .slide_btn img {
  width: auto;
  height: auto;
  cursor: pointer;
}

#sec_05 .wrap .slide_wrap .slide .box.slick-center img {
  opacity: 0;
}

#sec_05 .wrap .slide_wrap .slide .box.slick-center img.active {
  opacity: 1;
  scale: 1;
}

#sec_06 {
  width: 100%;
  height: auto;
  background: url(../img/main/sec_06_background.png) no-repeat center / cover;
  padding: 100px 0;
}

#sec_06 h2 {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 160px;
  text-align: right;
  font-family: "NR";
  font-weight: normal;
  font-size: 60px;
}

#sec_06 h2 span {
  font-size: 80px;
}

#sec_06 h2 span span {
  font-family: "NB";
  font-weight: bold;
  color: #ff611e;
  text-shadow: 3px 4px 6px #999;
}

#sec_06 .slide {
  width: 100%;
  height: auto;
}

#sec_06 img {
  filter: drop-shadow(10px 6px 6px #c3c3c3);
  margin: 0 15px;
  transition: 0.3s;
}

#sec_06 .slick-list {
  overflow: unset !important;
}

#sec_06 .first-active {
  scale: 2;
  margin: 0 250px;
}

#sec_07 {
  width: 100%;
  height: auto;
  position: relative;
  background: #f3e7d1;
}

#sec_07 .wrap {
  width: 100%;
  max-width: 90%;
  height: auto;
  padding: 100px 0;
  background: #00a028;
  position: relative;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

#sec_07 .wrap::before {
  width: 105%;
  height: 90%;
  border: 5px solid #00a028;
  box-shadow: 1px 1px 5px #00a028;
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

#sec_07 .wrap h2 {
  font-family: "NR";
  font-size: 40px;
  font-weight: normal;
  color: #fff;
  margin-bottom: 60px;
}

#sec_07 .wrap h2 span {
  font-family: "NB";
  font-weight: bold;
  font-size: 60px;
}

#sec_07 .wrap h2 span span {
  color: #000;
}

#sec_07 .wrap .rolling {
  width: 100%;
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
}

#sec_07 .wrap .rolling img {
  width: auto;
  height: auto;
  animation: rolling_03 infinite 120s linear;
  margin-right: 20px;
}

@keyframes rolling_03 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

#sec_08 {
  width: 100%;
  height: auto;
  padding: 55px 0;
  background: url(../img/main/sec_08_background.png) no-repeat center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

#sec_08 .wrap {
  width: 100%;
  max-width: 1720px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#sec_08 .wrap .text_box {
  border: 10px solid #f3e7d1;
}

#sec_08 .wrap .text_box h2 {
  text-align: center;
  font-family: "NB";
  font-size: 50px;
  font-weight: bold;
  text-shadow: 1px 1px 5px #333;
  width: 700px;
  height: auto;
  padding: 100px 0 0;
  border-top: 13px solid #f3e7d1;
  border-bottom: 13px solid #f3e7d1;
  z-index: 1;
  position: relative;
}

#sec_08 .wrap .text_box h2::before {
  width: 100%;
  height: 80%;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: #f3e7d1;
  z-index: -1;
}

#sec_08 .wrap .text_box h3 {
  width: 100%;
  height: 100%;
  background: #f3e7d1;
  color: #000;
  padding-left: 96px;
  padding-top: 50px;
  padding-bottom: 157px;
  font-family: "NR";
  font-weight: normal;
  font-size: 30px;
  line-height: 40px;
}

#sec_08 .wrap .text_box h3 span {
  font-size: 40px;
  color: #ff611e;
  font-family: "NB";
  font-weight: bold;
}

#sec_08 .wrap .slide_box {
  width: 100%;
  max-width: 890px;
  height: auto;
}

#sec_09 {
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
}

#sec_09 .container_01 {
  width: 60%;
  height: auto;
  padding: 50px 0 50px 100px;
  background: #f3e7d1;
}

#sec_09 .container_01 .wrap {
  width: 100%;
  height: auto;
  background: #ff611e;
  padding: 50px 0 50px 80px;
}

#sec_09 .container_01 .wrap .inner {
  width: 100%;
  height: auto;
  padding: 70px 48px;
  background: url(../img/main/sec_09_background_01.png) no-repeat center / cover;
}

#sec_09 .container_01 .wrap .inner .box {
  width: 100%;
  height: auto;
  background: #f3e7d1;
  padding: 50px 0;
  position: relative;
}

#sec_09 .container_01 .wrap .inner .box img {
  display: block;
}

#sec_09 .container_01 .wrap .inner .box .title {
  width: auto;
  height: auto;
  margin: 0 auto 48px;
}

#sec_09 .container_01 .wrap .inner .box .side {
  width: auto;
  height: auto;
  position: absolute;
  top: 38px;
  left: 32px;
}

#sec_09 .container_01 .wrap .inner .box .slide_wrap {
  width: 100%;
  max-width: 630px;
  margin: 0 auto;
  position: relative;
}

#sec_09 .container_01 .wrap .inner .box .slide_wrap .slide {
  width: 100%;
  height: auto;
}

#sec_09 .container_01 .wrap .inner .box .slide_wrap .slide img {
  margin: 0 15px;
}

#sec_09 .container_01 .wrap .inner .box .slide_wrap .next_btn {
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -70px;
  cursor: pointer;
}

#sec_09 .container_02 {
  width: 40%;
  height: auto;
  background: url(../img/main/sec_09_background_02.png) no-repeat center / cover;
  padding: 50px 100px 50px 0;
}

#sec_09 .container_02 .wrap {
  width: 100%;
  height: auto;
  padding: 102px 0 130px 67px;
  border: 3px solid #ff611e;
  border-left: none;
}

#sec_09 .container_02 .wrap h2 {
  font-family: "NR";
  font-size: 30px;
  font-weight: normal;
  color: #fff;
  line-height: 40px;
  margin-bottom: 60px;
}

#sec_09 .container_02 .wrap h2 span {
  font-family: "NB";
  font-weight: bold;
  font-size: 50px;
  color: #ff611e;
}

#sec_09 .container_02 .wrap h3 {
  font-family: "NB";
  font-weight: bold;
  font-size: 35px;
  color: #fff;
  margin-bottom: 20px;
}

#sec_09 .container_02 .wrap h3 span {
  font-size: 30px;
  color: #ff611e;
}

#sec_09 .container_02 .wrap h4 {
  font-family: "NR";
  font-weight: normal;
  color: #fff;
  font-size: 25px;
}

#sec_09 .container_02 .wrap h4:first-of-type {
  margin-bottom: 60px;
}

#sec_09 .container_02 .wrap h4 span {
  font-family: "NB";
  font-weight: bold;
}

#sec_10 {
  width: 100%;
  height: auto;
  background: url(../img/main/sec_10_background.png) no-repeat center / cover;
  text-align: center;
  padding: 100px 0;
}

#sec_10 h2 {
  font-family: "NB";
  font-size: 55px;
  color: #fff;
  margin-bottom: 30px;
}

#sec_10 h2 span {
  font-size: 45px;
}

#sec_10 h3 {
  font-family: "NL";
  font-weight: 100;
  color: #fff;
  font-size: 36px;
  margin-bottom: 30px;
}

#sec_10 h3 span {
  color: #00a028;
}

#sec_10 img {
  width: auto;
  height: auto;
}

#sec_10 img:first-of-type {
  margin-bottom: 90px;
}

#sec_11 {
  width: 100%;
  height: auto;
}

#sec_11 img {
  width: 100%;
  height: auto;
}

#sec_15 {
  width: 100%;
  height: auto;
  background: #f3e7d1;
  padding: 100px 0;
}

#sec_15 h2 {
  font-family: "NR";
  font-weight: normal;
  font-size: 35px;
  text-align: center;
}

#sec_15 h3 {
  font-family: "NB";
  font-weight: bold;
  font-size: 50px;
  margin-bottom: 100px;
  text-align: center;
}

#sec_15 h3 span {
  color: #00a028;
}

#sec_15 form {
  width: 100%;
  height: auto;
}

#sec_15 form .input_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

#sec_15 form .input_wrap label {
  width: 225px;
  height: auto;
  font-family: "NR";
  font-weight: normal;
  font-size: 30px;
  display: inline-block;
}

#sec_15 form .input_wrap input[type="text"] {
  width: 288px;
  height: 40px;
  padding: 0 5px;
  border: 1px solid #000;
  background: #eae4d8;
  font-size: 20px;
  color: #000;
}

#sec_15 form .input_wrap div:first-of-type input[type="text"] {
  margin-right: 50px;
}

#sec_15 form .input_wrap input[type="radio"] {
  display: none;
}

#sec_15 form .input_wrap .radio_btn {
  width: 144px;
  height: 40px;
  border: 1px solid #000;
  background: #fff;
  text-align: center;
  cursor: pointer;
  font-family: "NR";
  font-size: 30px;
  font-weight: normal;
  color: #000;
  line-height: 40px;
}

#sec_15 form .input_wrap textarea {
  width: 851px;
  height: 214px;
  border: 1px solid #000;
  background: #eae4d8;
  padding: 5px;
  color: #000;
  font-size: 20px;
}

#sec_15 form .input_wrap:nth-of-type(3) {
  align-items: flex-start;
  margin-bottom: 20px;
}

#sec_15 form .check_wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

#sec_15 form .check_wrap input {
  width: 20px;
  height: 20px;
  border: none;
  background: #fff;
  margin-right: 10px;
}

#sec_15 form .check_wrap label {
  font-family: "NR";
  font-weight: normal;
  font-size: 20px;
  color: #000;
}

#sec_15 form input[type="submit"] {
  display: block;
  width: 203px;
  height: 41px;
  border-radius: 10px;
  border: none;
  background: #00a028;
  color: #fff;
  font-family: "NR";
  font-weight: normal;
  font-size: 20px;
  margin: 0 auto;
}

@media (max-width: 1600px) {
  #sec_01 .big_line {
    width: 60px;
  }

  #sec_01 .org_box {
    max-width: 90%;
  }

  #sec_01 .org_box .grn_box .wrap {
    max-width: 1200px;
  }

  #sec_01 .org_box .grn_box .wrap .text_box h2 {
    font-size: 36px;
  }

  #sec_01 .org_box .grn_box .wrap .text_box h1 {
    font-size: 46px;
  }

  #sec_01 .org_box .grn_box .wrap .text_box h1 span {
    font-size: 56px;
  }

  #sec_01 .org_box .grn_box .wrap .img_box img {
    width: 550px;
  }

  #sec_01 .org_box .grn_box .wrap .img_box .circle {
    width: 450px;
    height: 450px;
  }

  #sec_01 .org_box .grn_box .wrap .img_box .circle img {
    width: 400px;
    left: 20px;
  }

  #sec_03 h2 {
    font-size: 48px;
  }

  #sec_03 .rolling img {
    width: 200px;
  }

  #sec_03 .rolling:first-of-type {
    left: 1%;
  }

  #sec_03 .rolling:last-of-type {
    right: 1%;
  }

  #sec_04 .text_box h2 {
    font-size: 64px;
  }

  #sec_04 .text_box h3 {
    font-size: 52px;
  }

  #sec_04 .text_box img {
    width: 450px;
  }

  #sec_05 .wrap .h_text {
    width: 750px;
  }

  #sec_06 h2 {
    max-width: 90%;
    font-size: 52px;
  }

  #sec_06 h2 span {
    font-size: 70px;
  }

  #sec_08 .wrap {
    max-width: 95%;
  }

  #sec_08 .wrap .text_box h2 {
    font-size: 42px;
  }

  #sec_08 .wrap .text_box {
    width: 45%;
  }

  #sec_08 .wrap .slide_box {
    max-width: 50%;
  }

  #sec_08 .wrap .text_box h3 {
    font-size: 26px;
  }

  #sec_09 .container_02 .wrap {
    padding: 102px 0 130px 48px;
  }

  #sec_09 .container_01 .wrap .inner .box .slide_wrap {
    max-width: 500px;
  }

  #sec_09 .container_02 .wrap h2 {
    font-size: 24px;
  }

  #sec_09 .container_02 .wrap h2 span {
    font-size: 38px;
  }

  #sec_09 .container_02 .wrap h3 {
    font-size: 30px;
  }

  #sec_09 .container_02 .wrap h3 span {
    font-size: 26px;
  }

  #sec_09 .container_02 .wrap h4 {
    font-size: 20px;
  }

  #sec_09 .container_02 .wrap {
    padding: 102px 0 107px 48px;
  }

  #sec_10 h2 {
    font-size: 42px;
  }

  #sec_10 h3 {
    font-size: 30px;
  }

  #sec_10 h2 span {
    font-size: 36px;
  }

  #sec_10 img {
    width: 80%;
  }
}

@media (max-width: 1400px) {
  #sec_01 .org_box .grn_box .wrap {
    flex-wrap: wrap;
    justify-content: center;
  }

  #sec_01 .org_box .grn_box .wrap .text_box {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }

  #sec_01 .org_box .grn_box .wrap .img_box img {
    width: 450px;
  }

  #sec_01 .org_box .grn_box .wrap .img_box .circle {
    width: 400px;
    height: 400px;
  }

  #sec_01 .org_box .grn_box .wrap .img_box .circle img {
    width: 350px;
    left: 15px;
  }

  #sec_01 .org_box .grn_box .wrap .text_box h2 {
    font-size: 32px;
  }

  #sec_01 .org_box .grn_box .wrap .text_box h1 {
    font-size: 38px;
    line-height: 50px;
  }

  #sec_01 .org_box .grn_box .wrap .text_box h1 span {
    font-size: 46px;
  }

  #sec_01 .big_line {
    z-index: 1;
  }

  #sec_01 .org_box {
    max-width: 80%;
  }

  #sec_03 h2 {
    font-size: 42px;
  }

  #sec_03 .video_box {
    width: 800px;
    height: 450px;
  }

  #sec_03 .neon_box_01 .inner h3 {
    font-size: 40px;
  }

  #sec_03 .neon_box_01 .inner h4 {
    font-size: 64px;
  }

  #sec_03 .neon_box_01 .inner h4 span {
    font-size: 48px;
  }

  #sec_03 .neon_box_02 .inner h3 {
    font-size: 40px;
  }

  #sec_03 .neon_box_02 .inner h4 {
    font-size: 64px;
  }

  #sec_03 .neon_box_02 .inner h4 span {
    font-size: 48px;
  }

  #sec_03 .neon_box_01 {
    max-width: 800px;
  }

  #sec_03 .neon_box_02 {
    max-width: 800px;
  }

  #sec_04 .text_box h2 {
    font-size: 52px;
    margin-bottom: 20px;
  }

  #sec_04 .text_box h3 {
    font-size: 42px;
  }

  #sec_04 .text_box img {
    width: 350px;
  }

  #sec_04 .img_box img:first-of-type {
    width: 450px;
  }

  #sec_04 .img_box img:last-of-type {
    width: 480px;
  }

  #sec_04 .img_box {
    max-width: 980px;
  }

  #sec_05 .wrap {
    max-width: 1200px;
  }

  #sec_08 .wrap .text_box h2 {
    padding: 50px 0 0;
    font-size: 36px;
  }

  #sec_08 .wrap .text_box h3 {
    padding: 50px 0px 100px 50px;
  }

  #sec_08 .wrap .text_box h2 {
    width: 100%;
  }

  #sec_09 {
    flex-wrap: wrap;
  }

  #sec_09 .container_01 {
    width: 100%;
    padding: 50px 0;
  }

  #sec_09 .container_01 .wrap {
    width: 90%;
    margin: 0 auto;
    padding: 50px;
  }

  #sec_09 .container_02 {
    width: 100%;
    padding: 50px;
  }

  #sec_09 .container_02 .wrap {
    border-left: 3px solid #ff611e;
    padding: 100px;
  }
}

@media (max-width: 1200px) {
  #sec_01 .org_box {
    padding-top: 80px;
  }

  #sec_03 .rolling {
    display: none;
  }

  #sec_04 .text_box h2 {
    font-size: 46px;
    margin-bottom: 10px;
  }

  #sec_04 .text_box h3 {
    font-size: 36px;
  }

  #sec_04 .text_box img {
    width: 250px;
  }

  #sec_04 .img_box img:first-of-type {
    width: 350px;
  }

  #sec_04 .img_box img:last-of-type {
    width: 380px;
  }

  #sec_04 .img_box {
    max-width: 750px;
  }

  #sec_05 .wrap {
    max-width: 95%;
    margin: 0 auto;
  }

  #sec_05 .wrap .slide_wrap .slide .box {
    margin: 0 20px;
  }

  #sec_05 .wrap .slide_wrap .slide_btn {
    max-width: 430px;
  }

  #sec_06 h2 {
    font-size: 42px;
  }

  #sec_06 h2 span {
    font-size: 62px;
  }

  #sec_06 .first-active {
    margin: 0 150px;
  }

  #sec_07 .wrap h2 {
    font-size: 32px;
  }

  #sec_07 .wrap h2 span {
    font-size: 48px;
  }

  #sec_07 .wrap .rolling img {
    height: 400px;
  }

  #sec_08 .wrap .text_box h2 {
    font-size: 28px;
  }

  #sec_08 .wrap .text_box h3 {
    font-size: 20px;
    line-height: 35px;
  }

  #sec_08 .wrap .text_box h3 span {
    font-size: 32px;
  }

  #sec_15 h2 {
    font-size: 28px;
  }

  #sec_15 h3 {
    font-size: 42px;
  }

  #sec_15 form .input_wrap label {
    width: 220px;
    font-size: 22px;
  }

  #sec_15 form .input_wrap input[type="text"] {
    width: 220px;
  }

  #sec_15 form .input_wrap .radio_btn {
    width: 110px;
  }

  #sec_15 form .input_wrap textarea {
    width: 690px;
  }
}

@media (max-width: 900px) {
  #sec_01 .org_box .grn_box .wrap .text_box h2 {
    font-size: 26px;
  }

  #sec_01 .org_box .grn_box .wrap .text_box h1 {
    font-size: 32px;
    line-height: 45px;
  }

  #sec_01 .org_box .grn_box .wrap .text_box h1 span {
    font-size: 38px;
  }

  #sec_01 .org_box .grn_box .wrap .img_box img {
    width: 400px;
  }

  #sec_01 .org_box .grn_box .wrap .img_box .circle {
    width: 350px;
    height: 350px;
  }

  #sec_01 .org_box .grn_box .wrap .img_box .circle img {
    width: 300px;
    left: 20px;
  }

  #sec_03 h2 {
    font-size: 36px;
    margin-bottom: 30px;
  }

  #sec_03 .video_box {
    width: 650px;
    height: 400px;
  }

  #sec_03 .neon_box_01 {
    max-width: 650px;
  }

  #sec_03 .neon_box_02 {
    max-width: 650px;
  }

  #sec_03 .neon_box_01 .inner h3 {
    font-size: 32px;
  }

  #sec_03 .neon_box_01 .inner h4 {
    font-size: 52px;
  }

  #sec_03 .neon_box_01 .inner h4 span {
    font-size: 42px;
  }

  #sec_03 .neon_box_02 .inner h3 {
    font-size: 32px;
  }

  #sec_03 .neon_box_02 .inner h4 {
    font-size: 52px;
  }

  #sec_03 .neon_box_02 .inner h4 span {
    font-size: 42px;
  }

  #sec_04 .text_box h2 {
    font-size: 36px;
  }

  #sec_04 .text_box h3 {
    font-size: 28px;
  }

  #sec_04 .text_box img {
    width: 200px;
  }

  #sec_04 .img_box {
    flex-wrap: wrap;
  }

  #sec_04 .img_box {
    justify-content: center;
    max-width: 380px;
  }

  #sec_04 .img_box img:first-of-type {
    margin-bottom: 50px;
  }

  #sec_05 .wrap .h_text {
    width: 500px;
    margin-bottom: 50px;
  }

  #sec_05 .wrap .slide_wrap .slide_btn {
    max-width: 80%;
  }

  #sec_06 h2 {
    font-size: 36px;
    margin-bottom: 100px;
  }

  #sec_06 h2 span {
    font-size: 48px;
  }

  #sec_06 {
    padding: 100px 0 0;
  }

  #sec_07 .wrap h2 {
    font-size: 28px;
  }

  #sec_07 .wrap h2 span {
    font-size: 32px;
  }

  #sec_08 .wrap {
    flex-wrap: wrap;
  }

  #sec_08 .wrap .text_box {
    width: 100%;
    order: 1;
  }

  #sec_08 .wrap .slide_box {
    max-width: 100%;
  }

  #sec_08 .wrap .text_box h3 {
    padding: 50px 0;
    text-align: center;
  }

  #sec_09 .container_01 .wrap {
    padding: 30px;
  }

  #sec_09 .container_01 .wrap .inner {
    padding: 40px;
  }

  #sec_09 .container_01 .wrap .inner .box {
    padding: 30px 0;
  }

  #sec_09 .container_01 .wrap .inner .box .title {
    width: 280px;
    margin: 0 auto 30px;
  }

  #sec_09 .container_01 .wrap .inner .box .side {
    height: 280px;
  }

  #sec_09 .container_01 .wrap .inner .box .slide_wrap {
    max-width: 400px;
  }

  #sec_09 .container_02 .wrap {
    padding: 50px;
  }

  #sec_15 h3 {
    font-size: 36px;
    margin-bottom: 50px;
  }

  #sec_15 h2 {
    font-size: 22px;
  }

  #sec_15 form .input_wrap {
    flex-wrap: wrap;
    margin-bottom: 0;
  }

  #sec_15 form .input_wrap div {
    width: 100%;
    max-width: 95%;
    display: flex;
    align-items: center;
  }

  #sec_15 form .input_wrap div:first-of-type input[type="text"] {
    margin-right: 0;
  }

  #sec_15 form .input_wrap div label {
    width: 25%;
    margin-right: 0;
    margin-bottom: 30px;
  }

  #sec_15 form .input_wrap div input[type="text"] {
    width: 75%;
    margin-bottom: 30px;
  }

  #sec_15 form .input_wrap:nth-of-type(3) {
    width: 100%;
    max-width: 95%;
    margin: 0 auto 20px;
  }

  #sec_15 form .input_wrap:nth-of-type(3) label {
    width: 25%;
  }

  #sec_15 form .input_wrap:nth-of-type(3) textarea {
    width: 75%;
  }
}

@media (max-width: 700px) {
  #sec_01 .org_box .grn_box .wrap .text_box h2 {
    font-size: 22px;
  }

  #sec_01 .org_box .grn_box .wrap .text_box h1 {
    font-size: 26px;
    line-height: 35px;
  }

  #sec_01 .org_box .grn_box .wrap .text_box h1 span {
    font-size: 32px;
  }

  #sec_01 .org_box .grn_box .wrap .img_box img {
    width: 350px;
  }

  #sec_01 .org_box .grn_box .wrap .img_box .circle {
    width: 300px;
    height: 300px;
  }

  #sec_01 .org_box .grn_box .wrap .img_box .circle img {
    width: 270px;
    left: 10px;
  }

  #line img {
    width: 1200px;
    margin: 15px 0;
  }

  #sec_03 h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  #sec_03 .video_box {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
    max-width: 90%;
    margin: 0 auto 20px;
  }

  #sec_03 .video_box video {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }

  #sec_03 .neon_box_01 {
    max-width: 90%;
  }

  #sec_03 .neon_box_01 .inner h3 {
    font-size: 24px;
    word-break: keep-all;
  }

  #sec_03 .neon_box_01 .inner h4 {
    font-size: 42px;
  }

  #sec_03 .neon_box_01 .inner h4 span {
    font-size: 32px;
  }

  #sec_03 .neon_box_02 {
    max-width: 90%;
  }

  #sec_03 .neon_box_02 .inner h3 {
    font-size: 24px;
    word-break: keep-all;
  }

  #sec_03 .neon_box_02 .inner h4 {
    font-size: 42px;
  }

  #sec_03 .neon_box_02 .inner h4 span {
    font-size: 32px;
  }

  #sec_04 .text_box img {
    width: 150px;
  }

  #sec_04 .text_box h2 {
    font-size: 28px;
    -webkit-text-stroke: 1px #fff;
  }

  #sec_04 .text_box h3 {
    font-size: 22px;
  }

  #sec_04 .img_box img:first-of-type {
    width: 250px;
  }

  #sec_04 .img_box img:last-of-type {
    width: 280px;
  }

  #sec_05 .wrap .slide_wrap .slide_btn {
    max-width: 70%;
  }

  #sec_06 h2 {
    font-size: 28px;
  }

  #sec_06 h2 span {
    font-size: 36px;
  }

  #sec_09 .container_01 .wrap .inner .box .side {
    display: none;
  }

  #sec_09 .container_01 .wrap .inner .box .slide_wrap .next_btn {
    right: -40px;
  }

  #sec_09 .container_02 .wrap {
    padding: 30px;
  }

  #sec_10 h2 {
    font-size: 28px;
  }

  #sec_10 h3 {
    font-size: 20px;
  }

  #sec_10 img {
    width: 95%;
  }

  #sec_10 h2 span {
    font-size: 20px;
  }

  #sec_15 h2 {
    font-size: 20px;
  }

  #sec_15 h3 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  #sec_15 form .input_wrap label {
    font-size: 18px;
  }

  #sec_15 form .input_wrap input[type="text"] {
    font-size: 16px;
    height: 30px;
  }

  #sec_15 form .input_wrap .radio_btn {
    height: 30px;
    width: 80px;
    line-height: 30px;
    font-size: 20px;
  }

  #sec_15 form .input_wrap textarea {
    height: 150px;
    font-size: 16px;
  }

  #sec_15 form .check_wrap label {
    font-size: 16px;
  }

  #sec_15 form input[type="submit"] {
    width: 150px;
  }
}

@media (max-width: 500px) {
  #sec_01 .big_line {
    width: 20px;
  }

  #sec_01 .org_box {
    max-width: 85%;
  }

  #sec_01 .org_box {
    padding-top: 60px;
  }

  #sec_01 .org_box .grn_box .wrap .text_box h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  #sec_01 .org_box .grn_box .wrap .text_box h1 {
    font-size: 22px;
    line-height: 30px;
  }

  #sec_01 .org_box .grn_box .wrap .text_box h1 span {
    font-size: 26px;
  }

  #sec_01 .org_box .grn_box .wrap .img_box img {
    width: 300px;
  }

  #sec_01 .org_box .grn_box .wrap .img_box .circle {
    width: 270px;
    height: 270px;
  }

  #sec_01 .org_box .grn_box .wrap .img_box .circle img {
    width: 230px;
    left: 15px;
  }

  #sec_03 h2 {
    font-size: 26px;
  }

  @keyframes flicker_01 {
    0%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56%,
    100% {
      opacity: 1;
      text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #ff611e,
        0 0 30px #ff611e, 0 0 40px #ff611e;
    }
    20%,
    24%,
    55% {
      opacity: 0.4;
      text-shadow: none;
    }
  }

  @keyframes flicker_02 {
    0%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56%,
    100% {
      opacity: 1;
      text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #00a028,
        0 0 30px #00a028, 0 0 40px #00a028;
    }
    20%,
    24%,
    55% {
      opacity: 0.4;
      text-shadow: none;
    }
  }

  #sec_03 .neon_box_01 .inner h3 {
    font-size: 20px;
  }

  #sec_03 .neon_box_01 .inner h4 {
    font-size: 32px;
  }

  #sec_03 .neon_box_01 .inner h4 span {
    font-size: 24px;
  }

  #sec_03 .neon_box_02 .inner h3 {
    font-size: 20px;
  }

  #sec_03 .neon_box_02 .inner h4 {
    font-size: 32px;
  }

  #sec_03 .neon_box_02 .inner h4 span {
    font-size: 24px;
  }

  #sec_05 .wrap .h_text {
    width: 350px;
  }

  #sec_05 .wrap .slide_wrap .slide_btn img {
    width: 15px;
  }

  #sec_05 .wrap .slide_wrap .slide_btn {
    max-width: 85%;
  }

  #sec_06 h2 {
    font-size: 20px;
  }

  #sec_06 h2 span {
    font-size: 28px;
  }

  #sec_06 .first-active {
    margin: 0 100px;
  }

  #sec_07 .wrap h2 {
    font-size: 20px;
  }

  #sec_07 .wrap h2 span {
    font-size: 24px;
  }

  #sec_07 .wrap .rolling img {
    height: 300px;
  }

  #sec_07 .wrap {
    padding: 50px 0;
  }

  #sec_08 .wrap .text_box h2 {
    font-size: 24px;
  }

  #sec_08 .wrap .text_box h3 {
    font-size: 18px;
    line-height: 30px;
  }

  #sec_08 .wrap .text_box h3 span {
    font-size: 26px;
  }

  #sec_08 .wrap .text_box h2 {
    padding: 30px 0 0;
    font-size: 20px;
    border-top: 6px solid #f3e7d1;
    border-bottom: 6px solid #f3e7d1;
  }

  #sec_09 .container_01 .wrap .inner .box .title {
    width: 200px;
  }

  #sec_09 .container_01 .wrap .inner .box .slide_wrap .next_btn {
    right: 50%;
    bottom: -50px;
    transform: translateX(50%);
    top: unset;
  }

  #sec_09 .container_02 .wrap h2 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 30px;
  }

  #sec_09 .container_02 .wrap h2 span {
    font-size: 26px;
  }

  #sec_09 .container_02 .wrap h3 {
    font-size: 20px;
  }

  #sec_09 .container_02 .wrap h3 span {
    font-size: 18px;
  }

  #sec_09 .container_02 .wrap h4:first-of-type {
    margin-bottom: 30px;
  }

  #sec_09 .container_02 .wrap h4 {
    font-size: 16px;
  }

  #sec_15 h2 {
    font-size: 18px;
  }

  #sec_15 h3 {
    font-size: 24px;
  }

  #sec_15 form .input_wrap div {
    flex-wrap: wrap;
  }

  #sec_15 form .input_wrap div label {
    width: 100%;
    margin-bottom: 5px;
    text-align: center;
  }

  #sec_15 form .input_wrap div input[type="text"] {
    width: 100%;
    margin-bottom: 20px;
  }

  #sec_15 form .input_wrap div {
    justify-content: center;
  }

  #sec_15 form .input_wrap .radio_btn {
    margin-bottom: 20px;
  }

  #sec_15 form .input_wrap:nth-of-type(3) {
    flex-wrap: wrap;
    justify-content: center;
  }

  #sec_15 form .input_wrap:nth-of-type(3) label {
    width: 100%;
    text-align: center;
    margin-bottom: 5px;
  }

  #sec_15 form .input_wrap:nth-of-type(3) textarea {
    width: 100%;
  }
}

@media (max-width: 400px) {
  #sec_01 .big_line {
    width: 10px;
  }

  #sec_01 .org_box {
    max-width: 90%;
    border-left: 3px solid #ff611e;
    border-right: 3px solid #ff611e;
  }

  #sec_01 .org_box .grn_box {
    border-left: 3px solid #00a028;
    border-right: 3px solid #00a028;
  }

  #sec_01 .org_box .grn_box .wrap .text_box h2 {
    font-size: 16px;
  }

  #sec_01 .org_box .grn_box .wrap .text_box h1 {
    font-size: 18px;
    line-height: 25px;
  }

  #sec_01 .org_box .grn_box .wrap .text_box h1 span {
    font-size: 22px;
  }

  #sec_01 .org_box .grn_box .wrap .img_box img {
    width: 250px;
  }

  #sec_01 .org_box .grn_box .wrap .img_box .circle {
    width: 220px;
    height: 220px;
  }

  #sec_01 .org_box .grn_box .wrap .img_box .circle img {
    width: 190px;
  }

  #line img {
    width: 1000px;
  }

  #sec_03 .neon_box_01 {
    padding: 15px;
  }

  #sec_03 .neon_box_02 {
    padding: 15px;
  }

  #sec_03 .neon_box_01 .inner {
    padding: 20px 15px;
  }

  #sec_03 .neon_box_01 .inner h3 {
    font-size: 16px;
  }

  #sec_03 .neon_box_01 .inner h4 {
    font-size: 22px;
  }

  #sec_03 .neon_box_01 .inner h4 span {
    font-size: 18px;
  }

  #sec_03 .neon_box_02 .inner {
    padding: 20px 15px;
  }

  #sec_03 .neon_box_02 .inner h3 {
    font-size: 16px;
  }

  #sec_03 .neon_box_02 .inner h4 {
    font-size: 22px;
  }

  #sec_03 .neon_box_02 .inner h4 span {
    font-size: 18px;
  }

  #sec_03 h2 {
    font-size: 20px;
  }

  #sec_04 {
    padding: 50px 0;
  }

  #sec_04 .text_box h2 {
    font-size: 24px;
  }

  #sec_04 .text_box h3 {
    font-size: 18px;
    margin-bottom: 40px;
  }

  #sec_04 .text_box img {
    width: 100px;
  }

  #sec_04 .img_box img:first-of-type {
    width: 200px;
    margin-bottom: 30px;
  }

  #sec_04 .img_box img:last-of-type {
    width: 220px;
  }

  #sec_05 .wrap .h_text {
    width: 280px;
  }

  #sec_06 h2 {
    font-size: 18px;
  }

  #sec_06 h2 span {
    font-size: 24px;
  }

  #sec_06 .first-active {
    margin: 0 60px;
  }

  #sec_07 .wrap h2 {
    font-size: 16px;
    margin-bottom: 30px;
  }

  #sec_07 .wrap h2 span {
    font-size: 20px;
  }

  #sec_07 .wrap .rolling img {
    height: 250px;
  }

  #sec_06 {
    padding: 50px 0 0;
  }

  #sec_08 .wrap .text_box h3 {
    font-size: 14px;
    line-height: 25px;
  }

  #sec_08 .wrap .text_box h3 span {
    font-size: 20px;
  }

  #sec_09 .container_01 .wrap {
    padding: 10px;
  }

  #sec_09 .container_01 .wrap .inner {
    padding: 20px;
  }

  #sec_09 .container_01 .wrap .inner .box .title {
    width: 160px;
  }

  #sec_09 .container_01 .wrap .inner .box .slide_wrap {
    max-width: 95%;
  }

  #sec_09 .container_01 .wrap .inner .box .slide_wrap .next_btn {
    width: 30px;
    bottom: -30px;
  }

  #sec_09 .container_02 {
    padding: 30px;
  }

  #sec_09 .container_02 .wrap h2 {
    font-size: 16px;
    line-height: 25px;
  }

  #sec_09 .container_02 .wrap h2 span {
    font-size: 20px;
  }

  #sec_09 .container_02 .wrap h3 {
    font-size: 18px;
  }

  #sec_09 .container_02 .wrap h3 span {
    font-size: 16px;
  }

  #sec_09 .container_02 .wrap h4 {
    font-size: 14px;
    word-break: keep-all;
  }

  #sec_09 .container_02 .wrap {
    padding: 20px 10px;
  }

  #sec_10 h2 {
    font-size: 20px;
  }

  #sec_10 h3 {
    font-size: 16px;
  }

  #sec_10 img:first-of-type {
    margin-bottom: 50px;
  }

  #sec_10 h2 span {
    font-size: 16px;
  }

  #sec_15 {
    padding: 50px 0;
  }

  #sec_15 h2 {
    font-size: 16px;
  }

  #sec_15 h3 {
    font-size: 20px;
  }

  #sec_15 form .input_wrap label {
    font-size: 16px;
  }

  #sec_15 form .input_wrap .radio_btn {
    font-size: 16px;
  }

  #sec_15 form .check_wrap label {
    font-size: 12px;
  }

  #sec_15 form .check_wrap input {
    width: 15px;
    height: 15px;
  }

  #sec_15 form input[type="submit"] {
    width: 120px;
    height: 35px;
    font-size: 18px;
  }
}
