/* .cursor {
  cursor: url(../img/common/cursor.png) 2 2, auto;
} */

#sec_01 {
  width: 100%;
  height: 100vh;
  position: relative;
  background: url(../img/main/sec_01_bg.png) no-repeat center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#sec_01 .wrap {
  width: 100%;
  max-width: 1600px;
  height: auto;
  position: relative;
}

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

#sec_01 .wrap .text h1 {
  font-family: 'RS_EB';
	font-weight: bold;
  font-size: 50px;
  color: #fff;
  margin-bottom: 10px;
}

#sec_01 .wrap .text h1 span {
  color: #E99BC1;
}

#sec_01 .wrap .text h1 span.sm {
  font-size: 40px;
  color: #fff;
}

#sec_01 .wrap .text h2 {
  width: 400px;
  height: 50px;
  border-radius: 25px;
  background: #E99BC1;
  align-content: center;
  text-align: center;
  font-family: 'RS_R';
	font-weight: normal;
  font-size: 30px;
  color: #fff;
  margin-bottom: 10px;
}

#sec_01 .wrap .text .date {
  font-family: 'RS_B';
	font-weight: bold;
  font-size: 40px;
  color: #E99BC1;
  margin-bottom: 10px;
}

#sec_01 .wrap .text .date span {
  color: #fff;
  font-size: 30px;
}

#sec_01 .wrap .text .info {
  font-family: 'RS_R';
	font-weight: normal;
  font-size: 30px;
  color: #fff;
  margin-bottom: 30px;
}

#sec_01 .wrap .text a {
  width: 400px;
  height: 50px;
  border-radius: 25px;
  background: url(../img/common/btn_bg.png) no-repeat center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 20px;
  color: #fff;
}

#sec_01 .wrap .text .item {
  width: auto;
  height: auto;
  position: absolute;
  top: -17%;
  right: 24.56%;
  z-index: -1;
  animation: item 5s infinite ease-in;
}

@keyframes item {
  0% {transform: translateY(0);}
  35% {transform: translateY(3%);}
  70% {transform: translateY(-3%);}
  100% {transform: translateY(0);}
}

#sec_01 .wrap .text .timer {
  width: auto;
  height: auto;
  position: absolute;
  right: 0;
  top: 2%;
}

#sec_01 .wrap .text .timer img {
  display: block;
  width: auto;
  height: auto;
  transform-origin: 50% 50%; 
  animation: timer 20s linear infinite;
}

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

#sec_01 .wrap .text .timer .cnt {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'RS_B';
	font-weight: bold;
  font-size: 20px;
  color: #fff;
}

#sec_01 .wrap .text .plant {
  width: auto;
  height: auto;
  position: absolute;
  animation: balloon 3s infinite linear;
  z-index: -2;
}

#sec_01 .wrap .text .plant_1 {
  left: 17.94%;
  top: -7.5%;
  animation-delay: 0s;
}

#sec_01 .wrap .text .plant_2 {
  left: 43.56%;
  top: -27.5%;
  animation-delay: 1s;
}

#sec_01 .wrap .text .plant_3 {
  right: 11.88%;
  top: -27%;
  animation-delay: 0.5s;
}

#sec_01 .wrap .text .plant_4 {
  right: 5.63%;
  top: 53%;
  animation-delay: 2s;
}

#sec_01 .wrap .text .plant_5 {
  right: -5%;
  bottom: 23.25%;
  animation-delay: 1s;
}

#sec_01 .wrap .text .plant_6 {
  right: 24.38%;
  bottom: -1.75%;
  animation-delay: 3s;
}

@keyframes balloon {
  0% {transform: translateY(0);}
  35% {transform: translateY(10%);}
  70% {transform: translateY(-10%);}
  100% {transform: translateY(0);}
}

#sec_01 .marquee {
  width: 100%;
  height: 80px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  overflow: hidden;
}

#sec_01 .marquee .box {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  gap: 30px;
  align-items: center;
}

#sec_01 .marquee:hover .box {
  animation-play-state: paused;
}

#sec_01 .marquee .box p {
  font-family: 'RS_R';
  font-weight: normal;
  font-size: 20px;
  color: #E99BC1;
  margin: 0;
  flex-shrink: 0;
}

#sec_01 .marquee .box p.big {
  font-size: 24px;
}

#sec_01 .marquee .box p .white {
  color: #fff;
}

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

#sec_02 {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
  background: url(../img/main/sec_02_bg.png) no-repeat center / cover;
  overflow: hidden;
}

#sec_02 .wrap {
  width: 100%;
  max-width: 1600px;
  height: auto;
  text-align: center;
}

#sec_02 .wrap nav {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

#sec_02 .wrap nav a {
  position: relative; 
  isolation: isolate;   
  overflow: hidden; 
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 10px;
  font-family: 'RS_R';
  font-weight: normal;
  font-size: 20px;
  color: #fff;
  transition: border-color 0.3s, color 0.3s;
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  z-index: 1;
}

#sec_02 .wrap nav a::before {
  content: '';
  position: absolute;
  inset: 0;         
  width: 150%;  
  height: 100%;
  background: #fff;
  transform: rotate(-45deg) translateY(-3em);
  transform-origin: 0% 100%;
  transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
  z-index: -1;
}

#sec_02 .wrap nav a:hover {
  color: #0B1633;
  border-color: #fff;
}

#sec_02 .wrap nav a:hover::before {
  opacity: 1;
  background-color: #fff;
  transform: rotate(0deg);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

#sec_02 .wrap .inner {
  width: 100%;
  height: auto;
  margin: 100px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

#sec_02 .wrap .inner iframe,
#sec_02 .wrap .inner .temporary {
  width: 100%;
  height: 500px;
  border-radius: 10px;
  min-width: 0;
  object-fit: cover;
}

#sec_02 .wrap .inner .box {
  width: 100%;
  height: auto;
}

#sec_02 .wrap .inner .box h2 {
  font-family: 'RS_EB';
	font-weight: bold;
  font-size: 50px;
  color: #fff;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

#sec_02 .wrap .inner .box h2 span {
  color: #E99BC1;
}

#sec_02 .wrap .inner .box h2 span.sm {
  color: #fff;
  font-size: 40px;
}

#sec_02 .wrap .inner .box h2 img {
  width: auto;
  height: auto;
  z-index: -1;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

#sec_02 .wrap .inner .box h3 {
  width: 400px;
  height: 50px;
  border-radius: 25px;
  margin: 0 auto 35px;
  background: #E99BC1;
  align-content: center;
  font-family: 'RS_R';
	font-weight: normal;
  font-size: 30px;
  color: #fff;
}

#sec_02 .wrap .inner .box p {
  font-family: 'RS_B';
	font-weight: bold;
  font-size: 20px;
  color: #fff;
  line-height: 32px;
  margin-bottom: 30px;
}

#sec_02 .wrap .inner .box a {
  width: 90%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: url(../img/common/btn_bg.png) no-repeat center / cover;
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 20px;
  color: #fff;
  border-radius: 100px;
}

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

#sec_03 h3 {
  font-family: 'RS_B';
	font-weight: bold;
  font-size: 30px;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
}

#sec_03 h2 {
  font-family: 'RS_B';
	font-weight: bold;
  font-size: 50px;
  color: #E99BC1;
  text-align: center;
  margin-bottom: 50px;
}

#sec_03 .wrap {
  width: 100%;
  max-width: 1100px;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin: 0 auto;
}

#sec_03 .wrap .box {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#sec_03 .wrap .box img {
  width: auto;
  height: auto;
}

#sec_03 .wrap .box .txt {
  width: auto;
  height: auto;
}

#sec_03 .wrap .box .txt h4 {
  font-family: 'RS_B';
	font-weight: bold;
  font-size: 30px;
  color: #fff;
  margin-bottom: 30px;
}

#sec_03 .wrap .box .txt p {
  font-family: 'RS_B';
	font-weight: bold;
  font-size: 22px;
  line-height: 30px;
  color: #fff;
  margin-bottom: 25px;
}

#sec_03 .wrap .box .txt a {
  width: 400px;
  height: 50px;
  border-radius: 25px;
  background: url(../img/common/btn_bg.png) no-repeat center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 20px;
  color: #fff;
}

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

#sec_04 h2 {
  font-family: 'RS_B';
	font-weight: bold;
  font-size: 50px;
  color: #fff;
  margin-bottom: 50px;
}

#sec_04 h2 span {
  color: #E99BC1;
}

#sec_04 h2 .sm {
  font-size: 30px;
}

#sec_04 .wrap {
  width: auto;
  height: auto;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

#sec_05 {
  width: 100%;
  height: auto;
  padding: 100px 0;
  background: url(../img/main/sec_05_bg.png) no-repeat center / cover;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

#sec_05 .wrap .box_wrap {
  display: flex;
  align-items: center;
  gap: 200px;
  margin-bottom: 50px;
}

#sec_05 .wrap .box {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

#sec_05 .wrap .box p {
  width: 150px;
  height: 50px;
  border-radius: 25px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'RS_B';
	font-weight: bold;
  font-size: 18px;
  color: #0B1633;
  flex-shrink: 0;
}

#sec_05 .wrap .box img {
  width: auto;
  height: auto;
}

#sec_05 .wrap .box .slide {
  overflow: hidden;
}

#sec_05 .wrap .box .slide .slide_inner {
  display: flex;
  align-items: center;
  gap: 30px;
  animation: marquee 25s linear infinite;
}

#sec_05 .wrap .box .slide:hover .slide_inner {
  animation-play-state: paused;
}

@media (max-width: 1600px) {
  #sec_01 .wrap,
  #sec_02 .wrap {
    max-width: 90%;
  }

  #sec_01 .wrap .text .item {
    width: 500px;
  }
}

@media (max-width: 1400px) {
  #sec_01 .wrap .text h1 {
    font-size: 40px;
  }

  #sec_01 .wrap .text h1 span.sm {
    font-size: 30px;
  }

  #sec_01 .wrap .text h2 {
    width: 350px;
    font-size: 24px;
  }

  #sec_01 .wrap .text .date {
    font-size: 32px;
  }

  #sec_01 .wrap .text .date span {
    font-size: 24px;
  }

  #sec_01 .wrap .text .info {
    font-size: 24px;
  }

  #sec_01 .wrap .text a {
    font-size: 18px;
    width: 300px;
  }

  #sec_01 .wrap .text .item {
    width: 400px;
    top: -10%;
  }

  #sec_02 .wrap .inner {
    flex-wrap: wrap;
    gap: 50px;
  }

  #sec_02 .wrap .inner .box a {
    width: 500px;
  }

  #sec_02 .wrap .inner iframe, #sec_02 .wrap .inner .temporary {
    max-width: 800px;
  }

  #sec_05 .wrap {
    max-width: 90%;
  }
}

@media (max-width: 1200px) {
  #sec_01 .wrap .text .item {
    width: 350px;
    right: 22%;
  }

  #sec_01 .wrap .text h1 {
    font-size: 32px;
  }

  #sec_01 .wrap .text h1 span.sm {
    font-size: 20px;
  }

  #sec_01 .wrap .text h2 {
    width: 300px;
    font-size: 20px;
    height: 40px;
  }

  #sec_01 .wrap .text .date {
    font-size: 24px;
  }

  #sec_01 .wrap .text .date span {
    font-size: 18px;
  }

  #sec_01 .wrap .text .info {
    font-size: 18px;
  }

  #sec_01 .wrap .text a {
    font-size: 16px;
    width: 250px;
    height: 40px;
  }

  #sec_01 .wrap .text .plant {
    scale: 0.8;
  }

  #sec_01 .marquee .box p {
    font-size: 16px;
  }

  #sec_01 .marquee .box p.big {
    font-size: 20px;
  }

  #sec_01 .marquee {
    height: 60px;
  }

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

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

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

  #sec_03 .wrap .box img {
    width: 50%;
  }

  #sec_03 .wrap .box .txt h4 {
    font-size: 24px;
  }

  #sec_03 .wrap .box .txt p {
    font-size: 18px;
  }

  #sec_03 .wrap .box .txt a {
    width: 350px;
    font-size: 18px;
  }

  #sec_05 .wrap .box_wrap {
    gap: 50px;
  }

  #sec_05 .wrap .box img {
    height: 40px;
  }

  #sec_05 .wrap .box p {
    width: 120px;
    height: 40px;
    font-size: 16px;
  }
}

@media (max-width: 900px) {
  #sec_01 .wrap .text {
    text-align: center;
  }

  #sec_01 .wrap .text h2 {
    margin: 0 auto 10px;
  }

  #sec_01 .wrap .text a {
    margin: 0 auto;
  }

  #sec_01 .wrap .text .item {
    opacity: 0.3;
    top: 50%;
    left: 50%;
  }

  @keyframes item {
    0% {transform: translate(-50%, -50%);}
    35% {transform: translate(-50%, -47%);}
    70% {transform: translate(-50%, -53%);}
    100% {transform: translate(-50%, -50%);}
  }

  #sec_01 .wrap .text .plant_1 {
    left: -1%;
  }

  #sec_01 .wrap .text .plant_2 {
    left: 20%;
    top: -39%;
  }

  #sec_01 .wrap .text .plant_3 {
    right: 10%;
    top: 17%;
  }

  #sec_01 .wrap .text .plant_4 {
    right: 17%;
    top: 60%;
  }

  #sec_01 .wrap .text .plant_5 {
    right: 1%;
    bottom: -20%;
  }

  #sec_01 .wrap .text .plant_6 {
    right: 82%;
    bottom: -2%;
  }

  #sec_01 .wrap .text .timer {
    top: -40%;
  }

  #sec_01 .wrap .text .timer img {
    width: 120px;
  }

  #sec_01 .wrap .text .timer .cnt {
    font-size: 14px;
  }

  #sec_02 .wrap nav a {
    width: calc((100% - 20px) / 3);
    height: 50px;
    font-size: 16px;
  }

  #sec_02 .wrap nav {
    gap: 10px;
    flex-wrap: wrap;
  }

  #sec_02 .wrap .inner .box h2 img {
    width: 100%;
  }

  #sec_02 .wrap .inner .box h2 {
    font-size: 40px;
  }

  #sec_02 .wrap .inner .box h2 span.sm {
    font-size: 30px;
  }

  #sec_02 .wrap .inner .box h3 {
    width: 350px;
    font-size: 24px;
  }

  #sec_02 .wrap .inner .box p {
    font-size: 18px;
  }

  #sec_02 .wrap .inner .box a {
    width: 400px;
    font-size: 18px;
  }

  #sec_03 .wrap .box {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  #sec_03 .wrap .box img {
    width: 60%;
    order: -1;
  }

  #sec_04 h2 {
    font-size: 40px;
  }

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

  #sec_05 .wrap .box p {
    width: 100px;
    height: 30px;
    font-size: 14px;
  }

  #sec_05 .wrap .box img {
    height: 30px;
  }
}

@media (max-width: 700px) {
  #sec_01 .wrap .text .timer {
    top: -35%;
  }

  #sec_01 .marquee .box p {
    font-size: 14px;
  }

  #sec_01 .marquee .box p.big {
    font-size: 18px;
  }

  #sec_02 .wrap .inner iframe, #sec_02 .wrap .inner .temporary {
    height: 400px;
  }

  #sec_02 .wrap .inner .box h2 {
    font-size: 30px;
  }

  #sec_02 .wrap .inner .box h2 span.sm {
    font-size: 20px;
  }

  #sec_02 .wrap .inner .box h3 {
    width: 300px;
    height: 40px;
    font-size: 20px;
  }

  #sec_02 .wrap .inner .box p {
    font-size: 16px;
    line-height: 25px;
  }

  #sec_02 .wrap .inner .box a {
    width: 300px;
    font-size: 16px;
    height: 50px;
  }

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

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

  #sec_03 .wrap .box .txt h4 {
    font-size: 20px;
  }

  #sec_03 .wrap .box .txt p {
    font-size: 16px;
    line-height: 25px;
  }

  #sec_03 .wrap .box .txt a {
    width: 250px;
    font-size: 16px;
    height: 40px;
    margin: 0 auto;
  }

  #sec_04 h2 {
    font-size: 32px;
  }

  #sec_04 h2 .sm {
    font-size: 20px;
  }

  #sec_05 .wrap .box_wrap {
    flex-wrap: wrap;
  }

  #sec_05 .wrap .box {
    width: 100%;
  }
}

@media (max-width: 500px) {
  #sec_01 .wrap .text .item {
    width: 300px;
  }

  #sec_01 .wrap .text h1 {
    font-size: 24px;
  }

  #sec_01 .wrap .text h1 span.sm {
    font-size: 18px;
  }

  #sec_01 .wrap .text h2 {
    width: 250px;
    font-size: 18px;
    height: 35px;
  }

  #sec_01 .wrap .text .date {
    font-size: 20px;
  }

  #sec_01 .wrap .text .date span {
    font-size: 14px;
  }

  #sec_01 .wrap .text .info {
    font-size: 16px;
  }

  #sec_01 .wrap .text a {
    font-size: 14px;
    width: 200px;
    height: 35px;
  }

  #sec_01 .marquee .box {
    animation: marquee 30s linear infinite;
  }

  #sec_01 .wrap .text .plant {
    scale: 0.5;
  }

  #sec_01 .wrap .text .timer img {
    width: 100px;
  }

  #sec_01 .wrap .text .plant_1 {
    left: -5%;
  }

    #sec_01 .wrap .text .plant_2 {
    left: 22%;
    top: -45%;
  }

    #sec_01 .wrap .text .plant_3 {
    right: -5%;
    top: 20%;
  }

    #sec_01 .wrap .text .plant_4 {
    right: -7%;
    top: 68%;
  }

    #sec_01 .wrap .text .plant_5 {
    right: 20%;
    bottom: -20%;
  }

    #sec_01 .wrap .text .plant_6 {
    right: 84%;
    bottom: 17%;
  }

  #sec_02 .wrap nav a {
    height: 40px;
    font-size: 14px;
  }

  #sec_02 .wrap .inner {
    margin: 50px auto;
  }

  #sec_02 .wrap .inner iframe, #sec_02 .wrap .inner .temporary {
    height: 250px;
  }

  #sec_02 .wrap .inner .box h2 {
    font-size: 24px;
  }

  #sec_02 .wrap .inner .box h2 span.sm {
    font-size: 18px;
  }

  #sec_02 .wrap .inner .box h3 {
    width: 200px;
    height: 30px;
    font-size: 16px;
  }

  #sec_02 .wrap .inner .box p {
    font-size: 14px;
  }

  #sec_02 .wrap .inner .box a {
    width: 200px;
    font-size: 14px;
    height: 40px;
  }

  #sec_02 .wrap nav a {
    height: 30px;
    font-size: 12px;
  }

  #sec_02 .wrap .inner iframe, #sec_02 .wrap .inner .temporary {
    height: 200px;
  }

  #sec_02 .wrap .inner .box h2 {
    font-size: 20px;
  }

  #sec_02 .wrap .inner .box h2 span.sm {
    font-size: 16px;
  }

  #sec_02 .wrap .inner .box h3 {
    width: 150px;
    height: 30px;
    font-size: 12px;
  }

  #sec_02 .wrap .inner .box p {
    font-size: 10px;
    line-height: 20px;
  }

  #sec_02 .wrap .inner .box a {
    width: 180px;
    font-size: 12px;
    height: 30px;
  }

  #sec_03 {
    padding: 50px 0;
  }

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

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

  #sec_03 .wrap .box img {
    width: 70%;
  }

  #sec_03 .wrap .box .txt h4 {
    font-size: 16px;
  }

  #sec_03 .wrap .box .txt p {
    font-size: 14px;
    line-height: 20px;
  }

  #sec_03 .wrap .box .txt a {
    width: 200px;
    font-size: 14px;
    height: 35px;
  }

  #sec_04 {
    padding: 50px 0;
  }

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

  #sec_04 h2 .sm {
    font-size: 16px;
  }

  #sec_05 {
    padding: 50px 0;
  }

  #sec_05 .wrap .box p {
    width: 80px;
    height: 25px;
    font-size: 12px;
  }

  #sec_05 .wrap .box img {
    height: 25px;
  }

  #sec_05 .wrap .box_wrap {
    gap: 30px;
    margin-bottom: 30px;
  }
}

@media (max-width: 400px) {
  #sec_01 .wrap .text h1 {
    font-size: 20px;
  }

  #sec_01 .wrap .text h1 span.sm {
    font-size: 16px;
  }

  #sec_01 .wrap .text h2 {
    width: 220px;
    font-size: 16px;
    height: 30px;
  }

  #sec_01 .wrap .text .date {
    font-size: 18px;
  }

  #sec_01 .wrap .text .info {
    font-size: 14px;
  }

  #sec_01 .wrap .text a {
    font-size: 12px;
    width: 180px;
    height: 30px;
  }

  #sec_01 .wrap .text .timer {
    top: -50%;
  }

  #sec_01 .wrap .text .timer img {
    width: 80px;
  }

  #sec_01 .wrap .text .timer .cnt {
    font-size: 10px;
  }

  #sec_01 .marquee .box p {
    font-size: 12px;
  }

  #sec_01 .marquee .box p.big {
    font-size: 16px;
  }

  #sec_01 .marquee {
    height: 50px;
  }

  #sec_03 h3 {
    font-size: 14px;
  }

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

  #sec_03 .wrap .box img {
    width: 80%;
  }

  #sec_03 .wrap .box .txt h4 {
    font-size: 14px;
    margin-bottom: 20px;
  }

  #sec_03 .wrap .box .txt p {
    font-size: 12px;
  }

  #sec_03 .wrap .box .txt a {
    font-size: 12px;
    height: 30px;
  }

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

  #sec_04 h2 .sm {
    font-size: 14px;
  }
}