@charset "utf-8";

/* CSS reset */
*,
*:before,
*:after {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  word-break: keep-all;
}

html,
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
a,
blockquote,
th,
td,
footer {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input,
textarea,
button {
  margin: 0;
  padding: 0;
  border: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
}

input[type="checkbox" i] {
  background-color: initial;
  cursor: default;
  appearance: auto;
  box-sizing: border-box;
  margin: 3px 3px 3px 4px;
  padding: initial;
  border: initial;
}

ol,
ul,
li {
  list-style: none;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

figure {
  display: inline-block;
  margin: 0;
}

a,
address {
  text-decoration: none;
  font-style: normal;
}

/* html {
  scroll-behavior: smooth;
  scroll-padding-top: 8em;
} */

body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  letter-spacing: -0.4px;
  position: relative;
  color: #000;
}


/* 공통 */
.w1920{ max-width: 1920px; width: 100%; margin: 0 auto; }
.w1720{ max-width: 1720px; width: 100%; margin: 0 auto; }
.w1600{ max-width: 1600px; width: 100%; margin: 0 auto; }
.w1555{ max-width: 1555px; width: 100%; margin: 0 auto; }
.w1500{ max-width: 1500px; width: 100%; margin: 0 auto; }

@media screen and (max-width: 1900px){
	.w1920{ padding-left: 20px; }
}

@media screen and (max-width: 1760px){
	.w1720{ padding: 0 20px; }
}

@media screen and (max-width: 1640px){
	.w1600{ padding: 0 20px; }  
}

@media screen and (max-width: 1540px){
	.w1500{ padding: 0 20px; }  
}

.__pc {
  display: block !important;
}

@media screen and (min-width: 750px) and (max-width: 1200px){
  .__pc {
    display: none !important;
}

}


.clearfix:after {
  clear: both;
  display: block;
  content: "";
}

.in{
  width: 100%;
  max-width: 1440px;
  padding: 0 20px;
  box-sizing: border-box;
  margin: 0 auto;
}

.w960{
  width: 100%;
  max-width: 960px;
  padding: 0 20px;
  box-sizing: border-box;
  margin: 0 auto;
}


.container .content .inner {
  margin-bottom: min(4.166vw, 80px)
}

.container .content .inner:last-child,.container .content .inner.last {
  margin-bottom: 0
}


@media screen and (max-width: 1023px) {
  .container .content {
      padding:0 24px
  }

  .container .content .inner {
      margin-bottom: 60px
  }
}


.blind {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  white-space: nowrap;
  overflow: hidden;
  clip: rect(0, 0, 0, 0)
}


/* 퀵메뉴 */

.floating-btn {
  position: fixed;
  top: auto;
  right: 2vw;
  bottom: 2vw;
  left: auto;
  z-index: 10;
  text-align: center;
  transition: all .3s;
}

.floating-btn > ul{
  position: relative;
  z-index: -1;
}

.floating-btn .btn, .floating-btn .toggle-btn {
  width: 90px;
  height: 90px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all .3s;
}

.floating-btn .toggle-btn {
  background-color: #b3c8e1;
  cursor: pointer;
  position: relative;
}

.floating-btn .toggle-btn:after {
  content: "OPEN";
  line-height: 1;
  font-weight: 700;
}

.floating-btn .toggle-btn:hover {
  background-color: #9cb7d1;
}

.floating-btn li a {
  background-color: #517ac5;
  margin-bottom: 10px;
  opacity: 0;
  visibility: hidden;
}

.floating-btn li a:hover {
  background-color: #365ba9;
}

.floating-btn.active .toggle-btn {
  background-color: #7f9ec7;
}

.floating-btn.active > ul{
  z-index: 0;
}

.floating-btn.active .toggle-btn:after {
  content: "";
  width: 20px;
  height: 2px;
  display: block;
  position: absolute;
  background-color: #fff;
  transform: rotate(45deg);
}

.floating-btn.active .toggle-btn:before {
  content: "";
  width: 20px;
  height: 2px;
  display: block;
  position: absolute;
  background-color: #fff;
  transform: rotate(-45deg);
}

.floating-btn.active .toggle-btn:hover {
  background-color: #627bb1;
}

.floating-btn.active a {
  opacity: 1;
  visibility: visible;
  z-index: 0;
}

.floating-btn .top-btn {
  background-color: #737fa7;
  margin-top: 10px;
  transition: all .6s;
}

.floating-btn .top-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  opacity: 1;
  visibility: visible;
  font-weight: 700;
  font-size: 16px;
}

.floating-btn .top-btn:hover {
  background-color: #587293;
}



@media screen and (max-width:1400px) {
  .floating-btn .btn {
    width: 70px;
    height: 70px;
    font-size: 14px;
  }
  .floating-btn .top-btn a {
    font-size: 14px;
  }
}

@media screen and (max-width:1024px) {
  .floating-btn .btn {
    width: 70px;
    height: 70px;
    font-size: 14px;
  }
}


@media screen and (max-width:767px) {
  .floating-btn .btn {
    width: 50px;
    height: 50px;
    font-size: 12px;
  }
  .floating-btn.active .toggle-btn:after {
    width: 16px;
  }
  .floating-btn.active .toggle-btn:before {
    width: 16px;
  }
  .floating-btn .top-btn a {
    font-size: 12px;
  }
}


@media screen and (max-width:767px) {
  .floating-btn .btn {
    width: 50px;
    height: 50px;
    font-size: 12px;
  }
  .floating-btn.active .toggle-btn:after {
    width: 16px;
  }
  .floating-btn.active .toggle-btn:before {
    width: 16px;
  }
  .floating-btn .top-btn a {
    font-size: 12px;
  }
}


@media screen and (max-width:375px) {
  .floating-btn .btn {
    width: 45px;
    height: 45px;
    font-size: 11px;
  }
  .floating-btn.active .toggle-btn:after {
    width: 12px;
  }
  .floating-btn.active .toggle-btn:before {
    width: 12px;
  }
  .floating-btn .top-btn a {
    font-size: 11px;
  }
}

#menuicon,
.ta-only,
.mo-only {
    display: none !important;
}

@media screen and (max-width:767px) {
    .ta-only {
        display: none !important;
      }
      .mo-only {
        display: block !important;
      }
}
