﻿@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;700&display=swap');
@import url("https://use.typekit.net/tiv6ddu.css");

html, body { height:100%; }
html {
    -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
}
body {
    font-family: 'Noto Sans KR', 'Noto Sans', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.42857143;
    font-weight: 400;
    margin: 0;
    padding: 0;
    background: #171717 url('/Contents/Images/body_bg.jpg')no-repeat bottom 100px right 200px /300px;
    background-attachment: fixed;
}
@media (max-width:1680px) {
  body {
    background-image: none;
  }
}
.en { font-family: minion-pro, serif !important;  }

/* 마우스 드래그 스타일 */
::-moz-selection { /* Code for Firefox */
    color: red;
    background: yellow;
}
::selection { /* 드래그 활성화시 스타일 */
    color: red;
    background: yellow;
}

* {
  outline:0;
  padding:0;margin:0;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
article, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary { display: block; }
h1,h2,h3,h4,h5 { font-weight: normal; }
img { max-width:100%; vertical-align: bottom; border:0; }

input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
  font-family: 'Noto Sans KR', 'Noto Sans', Helvetica, Arial, sans-serif;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a { color: inherit; text-decoration: none; }
table {
    border-spacing: 0;
    border-collapse: collapse !important;
    background-color: transparent;
}

.container {
  width:100%;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  .container {
    width: 760px;
  }
}

/* button */
.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 0;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: 0;
}
.btn:hover,
.btn:focus,
.btn.focus {
  text-decoration: none;
}
.btn-default {
  color:#000;
  border:1px solid #fff000;
  background-color: #fff000;
}
.btn-border {
  color:#fff000;
  border:1px solid #fff000;
  background-color: transparent;
}
.btn-info {
  color: #fff;
  background-color: #5497a4;
  border-color: #4c8c98;
}
.btn-info:focus,
.btn-info.focus {
  color: #fff;
  background-color: #31b0d5;
  border-color: #1b6d85;
}
.btn-info:hover {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active,
.btn-info.active {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-group ul {
  list-style: none;
  display: table;
  width:100%;
  padding:0;
}
.btn-group ul li { display: table-cell; width:1%; text-align:center; vertical-align: middle; padding:0 2px; }

.input-class {
  display: block;
  width: 100%;
  height: 46px;
  padding: 6px 12px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.42857143;
  color: #661e20;
  border: 0;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.ic-sns {
  display: inline-block;
  text-indent: -999999px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  border:0;
}
.ic-facebook { background-image: url('/Contents/Images/ic-facebook.png'); }
.ic-youtube { background-image: url('/Contents/Images/ic-youtube.png'); }
.ic-insta { background-image: url('/Contents/Images/ic-insta.png'); }
.ic-link { background-image: url('/Contents/Images/ic-link.png'); }

.ic-facebook.b { background-image: url('/Contents/Images/ic-facebook_b.png'); }
.ic-youtube.b { background-image: url('/Contents/Images/ic-youtube_b.png'); }
.ic-insta.b { background-image: url('/Contents/Images/ic-insta_b.png'); }
.ic-link.b { background-image: url('/Contents/Images/ic-link_b.png'); }


.checkbox input[type="checkbox"] { display:none; }
.checkbox label { color:#fff; font-size:16px; font-weight:700; cursor:pointer; }
.checkbox label:before {
  content: "";
  position: relative;
  top:5px;
  display: inline-block;
  width:22px;
  height:22px;
  background: transparent url('/Contents/Images/ic-check.png') no-repeat 0 0 /100%;
  margin-right:10px;
}
.checkbox input[type="checkbox"]:checked + label:before {
  background-image: url('/Contents/Images/ic-check-on.png');
}