@font-face {
  font-family: 'GmarketSans';
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'GmarketSans';
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'NexonLv2';
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-04@2.1/NEXON Lv2 Gothic.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'NexonLv2';
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-04@2.1/NEXON Lv2 Gothic Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  position: relative;
  line-height: 160%;
}

.gmk {
  font-family: 'GmarketSans';
}

.red {
  color: #f00;
}

.ul {
  text-decoration: underline;
}

html, body {
  margin: 0;
  color: #000;
  font-family: 'NexonLv2', sans-serif;
  word-break: keep-all;
  background: #fff;
  font-size: 16px;
  background: #eee;
  overflow-x: hidden;
}

body {
  margin: auto;
  background: #fff;
}

img {
  display: block;
  max-width: 100%;
}

img.desk {
  display: block;
}

img.mobile {
  display: none !important;
}

header {
  background: #fff;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  height: 64px;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
}

header .logo img {
  height: 40px;
}

footer {
  background: #0E1B27;
  padding: 40px 16px;
  color: #fff;
  font-size: 11px;
  text-align: center;
}

footer .logo {
  width: 50%;
  margin: 0 auto 24px;
}

footer p {
  margin-bottom: 16px;
}

footer a {
  color: #F9E000;
}

footer .copyright {
  color: #2E77BF;
  font-size: 10px;
}

section {
  position: relative;
}

.commonLink {
  padding: 32px 16px;
  background: #F6F6F6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.commonLink a {
  display: block;
  text-align: center;
  color: #000;
  width: 33%;
  margin: 8px 0;
  font-size: 16px;
  line-height: 130%;
}

.commonLink a img {
  width: 64px;
  border-radius: 32px;
  margin: 12px auto;
}

#main .main_top {
  background: url(../images/bg_main_top.jpg) center;
  background-size: cover;
  padding: 32px 16px;
  text-align: center;
  color: #fff;
}

#main .main_top .main_img {
  width: 60%;
  margin: 0 auto 16px;
}
#main .main_top .main_img2 {
  width: 100%;
  margin: 0 auto 16px;
}

#main .main_top p {
  margin-bottom: 4px;
  line-height: 140%;
}

#main .main_top strong {
  color: #F9E000;
  font-size: 18px;
  line-height: 140%;
}

#main .text {
  padding: 32px 16px 0 16px;
}

#main .text .deco {
  margin-top: -8px;
}

#main .text p {
  position: relative;
  margin-bottom: 16px;
  font-size: 16px;
}

#main .btn_container {
  position: relative;
}

#main .btn_container a.btn_estimate {
  display: block;
  text-align: center;
  margin: 0 16px;
  color: #fff;
  padding: 22px 24px 18px;
  margin-bottom: 32px;
  font-size: 24px;
  font-weight: 700;
  background: #f00;
  border-radius: 8px;
  -webkit-animation: blinkfx .3s linear alternate infinite;
          animation: blinkfx .3s linear alternate infinite;
}

#main .btn_container .cursor {
  position: absolute;
  width: 40px;
  top: 26px;
  right: 14px;
  -webkit-animation: btnfx .3s linear alternate infinite;
          animation: btnfx .3s linear alternate infinite;
}

@-webkit-keyframes btnfx {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(5px, 10px);
            transform: translate(5px, 10px);
  }
}

@keyframes btnfx {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(5px, 10px);
            transform: translate(5px, 10px);
  }
}

@-webkit-keyframes blinkfx {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
}

@keyframes blinkfx {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
}

@-webkit-keyframes blinkfx2 {
  0% {
    opacity: 1;
  }
  60% {
    opacity: .9;
  }
  100% {
    opacity: .2;
  }
}

@keyframes blinkfx2 {
  0% {
    opacity: 1;
  }
  60% {
    opacity: .9;
  }
  100% {
    opacity: .2;
  }
}

#textEstimate {
  font-size: 16px;
}

#textEstimate .main_top {
  background: #003E7B;
  padding: 32px 16px;
  text-align: center;
  color: #fff;
}

#textEstimate .main_top .main_img {
  width: 60%;
  margin: 0 auto 16px;
}

#textEstimate .main_top .main_img2 {
  width: 100%;
  margin: 0 auto 16px;
}
#textEstimate .main_top p {
  margin-bottom: 4px;
  line-height: 140%;
}

#textEstimate .text01 {
  background: #F6F6F6;
  padding: 32px 16px;
  text-align: center;
  font-size: 18px;
  margin-bottom: 32px;
}

#textEstimate .text01 li {
  margin-bottom: 8px;
}

#textEstimate .text01 strong {
  color: #f00;
}

#textEstimate .text02 {
  margin: 0 16px;
}

#textEstimate .text02 .deco {
  width: 60%;
  margin-bottom: 8px;
}

#textEstimate .text03 {
  margin: 32px 16px 48px;
}

#textEstimate .text04 {
  background: #FFF06C;
  padding: 48px 16px;
}

#textEstimate .text04 h4 {
  font-size: 24px;
  margin-bottom: 16px;
}

#textEstimate .text04 p {
  margin: 0;
}

#textEstimate .text04 strong {
  display: block;
  margin: 8px 0;
}

#textEstimate .text05 {
  margin: 32px 16px;
}

#textEstimate .text05 .gmk {
  font-size: 24px;
  font-weight: bold;
}

#textEstimate .text06 {
  margin: 32px 16px;
  padding: 16px;
  background: #002C57;
  border-radius: 8px;
  color: #fff;
}

#textEstimate .text06 .deco {
  position: absolute;
  height: 80px;
  right: -20px;
}

#textEstimate .text07 {
  margin: 64px 16px 32px;
}

#textEstimate .text07 h3 {
  color: #0E1B27;
  font-size: 24px;
  margin-bottom: 32px;
  hanging-punctuation: first last;
  -webkit-animation: blinkfx2 .3s linear alternate infinite;
          animation: blinkfx2 .3s linear alternate infinite;
}

#textEstimate .text07 h4 {
  color: #f00;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

#textEstimate .text07 h5 {
  font-weight: 700;
  font-size: 24px;
}

#textEstimate .text08 {
  background: #002C57;
  padding: 32px 16px;
  color: #fff;
}

#textEstimate .text08 h4 {
  font-size: 18px;
  color: #F9E000;
  margin-bottom: 0px;
  font-weight: normal;
}

#textEstimate .text08 h3 {
  font-size: 24px;
  color: #F9E000;
}

#textEstimate .text08 .deco {
  position: absolute;
  bottom: 0;
  right: 14px;
  height: 96px;
  z-index: 0;
  -webkit-animation: blinkfx .3s linear alternate infinite;
          animation: blinkfx .3s linear alternate infinite;
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
}

#textEstimate .text08 a {
  color: #F9E000;
  text-shadow: 0 0 5px #002C57;
}

#formEstimate {
  padding: 32px 16px;
  overflow:hidden;
}

#formEstimate h3 {
  font-size: 36px;
  -webkit-animation: blinkfx2 .3s linear alternate infinite;
          animation: blinkfx2 .3s linear alternate infinite;
  padding-bottom: 24px;
  margin-bottom: 24px;
  position: relative;
}

#formEstimate h3::after {
  position: absolute;
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: #000;
  bottom: 0;
}

a.btn_confirm, button.btn_confirm  {
  display: block;
  width:100%;
  background: #f00;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  padding: 22px 24px 18px;
  border-radius: 8px;
  -webkit-animation: blinkfx2 .3s linear alternate infinite;
          animation: blinkfx2 .3s linear alternate infinite;
}

.blink1 {
  -webkit-animation: blinkfx .3s linear alternate infinite;
          animation: blinkfx .3s linear alternate infinite;  
}
.blink2 {
  -webkit-animation: blinkfx2 .3s linear alternate infinite;
          animation: blinkfx2 .3s linear alternate infinite;  
}


#privacy {
  padding: 32px 16px;
}

#privacy h3 {
  font-size: 24px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  position: relative;
}

#privacy h3::after {
  position: absolute;
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: #000;
  bottom: 0;
}

.form_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 24px;
}

.form_list li h5 {
  display: block;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.form_list li p.descript {
  margin-bottom: 4px;
  font-size: 14px;
  width: 100%;
}

.form_list li .policyBox {
  width: 100%;
  margin-bottom: 8px;
  background: #F7F7F7;
  border: 1px solid #BDBDBD;
  padding: 8px;
  height: 120px;
  resize: none;
  font-size: 13px;
  color: #717171;
}

.form_list li.radiotype {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

.form_list select{width:100%;}

textarea{
  width: 100%;
  background: #F7F7F7;
  border: 1px solid #BDBDBD;
  font-size: 16px;
  padding: 0 16px;
  border-radius: 4px;
}
input[type=text], input[type=email] {
  width: 100%;
  background: #F7F7F7;
  border: 1px solid #BDBDBD;
  height: 48px;
  font-size: 16px;
  padding: 0 16px;
  border-radius: 4px;
}

input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder {
  color: #BDBDBD;
}

input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder {
  color: #BDBDBD;
}

input[type=text]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder {
  color: #BDBDBD;
}

input[type=text]::placeholder, input[type=email]::placeholder {
  color: #BDBDBD;
}

input[type=text]:-moz-read-only, input[type=email]:-moz-read-only {
  color: #000;
}

input[type=text]:read-only, input[type=email]:read-only {
  color: #000;
}

input[type=text]:focus, input[type=email]:focus {
  border: 2px solid #000;
}

input[type=text].with_unit, input[type=email].with_unit {
  width: 90%;
}

input[type=radio] {
  position: absolute;
  opacity: 0;
}

input[type=radio] + label {
  padding: 0 0 0 20px;
  margin-right: 12px;
  color: #717171;
  font-size: 15px;
}

input[type=radio] + label::after {
  position: absolute;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 8px;
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  top: 2px;
  left: 0;
  background: #eee;
  border: none;
}

input[type=radio]:checked + label {
  color: #000;
  font-weight: bold;
}

input[type=radio]:checked + label::after {
  background: #00509F;
  border: 4px #B4DFFF solid;
}

select {
  /*-webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  */
  outline: none;
  width: 100%;
  background: #F7F7F7;
  border: 1px solid #BDBDBD;
  border-radius: 4px;
  height: 48px;
  font-size: 16px;
  padding: 0 16px;
  color: #000;
}
/*# sourceMappingURL=style.css.map */