@charset "UTF-8";

/* reset */
html,
body {
  height: 100%;
}

body,
div,
p,
dl,
dt,
dd,
ul,
ol,
li,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
button,
input {
  margin: 0;
  padding: 0;
  color: var(--color-black);
  letter-spacing: -0.03rem;
  background-repeat: no-repeat;
  border: none;
}

h2,
h3,
h4 {
  font-size: 30px;
}

h7 {
  font-size: 100%;
}

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

img,
fieldset,
iframe {
  border: 0;
}

img {
  vertical-align: top;
}

table {
  border-collapse: collapse;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  background-color: transparent;
  cursor: pointer;
  appearance: none;
}

hr {
  border: 0;
  margin: 0;
  border-bottom: 1px solid #333;
}

/* ==== */
h2 {
  font-size: 2.5rem;
  letter-spacing: -0.08rem;
  font-weight: 700;
}

/* base */
html {
  overflow-x: hidden
}

body {
  font-family: 'Noto Sans KR';
  font-size: 1rem;
  overflow-x: hidden
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');

:root {
  --color-white: #ffffff;
  --color-white-02: #fafaf9;
  --color-brown-01: #e1d8c7;
  --color-brown-01-5: #d0c7b6;
  --color-brown-02: #a2856e;
  --color-brown-03: #6e5442;
  --color-black: #1f1f10;

  --color-orange: #fb941d;
  --color-blue: #024886;
  --color-green: #0d5e58;
}

/* class */

.hidden-text {
  width: 0px;
  height: 0px;
  overflow: hidden;
  display: block;
}

/* module css */

/* header */
#header {
  background-color: #fff;
  text-decoration: center;
  width: 100vw;
  height: 100px;
  position: relative;
  display: flex;
  justify-content: center;
}

#header .inner {
  display: block;
  margin: auto;
  background-color: var(--color-brown-03);
  height: 50px;
  padding-top: 20px;
}

#header .inner:after {
  content: "";
  display: block;
  clear: both;
}

.inner_1 {
  display: flex;
  margin: auto;
  height: 100%;
  align-items: center;
  justify-content: space-around;
}

#header .h1 {
  position: absolute;
  top: 20px;
  right: 50%;
  margin-right: -660px;
}

#header .h1:after {
  content: "";
  display: block;
  clear: both;
}

#header .h1 div {
  float: left;
  display: block;
  /*margin-left:500px;   border:1px dashed white; */
}

#header .h1 div:last-child {
  margin-right: 0;
}

#header .header-call>p {
  font-size: 1.5rem;
  text-align: right;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-blue);
}

#header .header-call>p:last-child {
  font-weight: 800;
  color: var(--color-orange);
}

.header-mobile {
  padding: 30px 0 0;
}

.header-mobile>.inner_1>div>a>img {
  height: 48px;
}

/* nav */
.nav-ul {
  position: absolute;
  bottom: 1%;
  z-index: 1000;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
}

.nav-li {
  width: 8%;
  height: 8vw;
  margin: 1%;
}

.nav-li>a {
  width: 100%;
  height: 100%;
  display: block;
}

/* ===== */
.nav-mobile {
  width: 100%;
  padding-top: 30px;
  height: auto;
}

.nav-ul-mobile {
  width: 100%;
  height: 60px;
  background-color: #024886;
  display: flex;
  justify-content: center;
  text-align: center;
}

.nav-ul-mobile>.nav-li {
  width: 19.5%;
  height: 100%;
  margin: 0;
  line-height: 3.5;
  color: #fff;
}

/* ===== */
.sub-nav {
  width: 100%;
  height: auto;
  background-color: #024886;
}

.sub-nav-ul {
  display: flex;
  width: 900px;
  justify-content: center;
  margin: auto;
  align-items: center;
  height: 60px;
}

.sub-nav-ul>li {
  position: relative;
  /* padding: 0 50px; */
  height: 100%;
  width: 20%;
  color: #fff;
  text-align: center;
}

.sub-nav-ul>li>a {
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding-top: 16px;
}

.nav-li-select {
  background-color: var(--color-orange);
}

.sub-nav .nav-li-select>a:after {
  content: "";
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background-color: #fff;
}

/* ============================= */
.gnb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
}

.gnb li {
  float: left;
  /*가로배열*/
  font-size: 20px;
}

.gnb li a {
  padding: 0 70px;
  font-weight: 500;
  color: var(--color-white);
}

.gnb li:after {
  content: "|";
  float: right;
  display: block;
  color: #fff;
}

.gnb li:last-child::after {
  content: "";
}

/* footer */
#footer {
  background-color: var(--color-blue);
  padding: 1.5rem 0;
  width: 100%;
}

#footer .inner {
  margin: 0 auto;
  padding: 0;
  border: 0;
  text-align: center;
  width: 80%;
  height: auto;
  font-size: 0.875rem;

}

#footer .inner .copyright {
  font-weight: 300;
  color: var(--color-white-02);
  line-height: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

/* sidebar */

#sidebar {
  position: fixed;
  bottom: 9%;
  right: 3%;
  z-index: 1500;
  width: 62px;
  height: auto;
}

.side_icon {
  position: relative;
  display: flex;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  margin: 30px 0;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(2px 2px 1px rgba(31, 31, 16, 0.1));
  border: 2px solid #fff;
}


.side_icon:nth-child(1) {
  margin-top: 0;
  background-image: url('../images/sideicon_list.png');
  background-size: 68%;
  background-color: var(--color-orange);
}


.side_icon:nth-child(2) {
  margin-top: 0;
  background-image: url('../images/location_icon.png');
  background-size: 68%;
  background-color: var(--color-blue);
}

.side_icon:nth-child(3) {
  background-image: url('../images/sideicon_blog.png');
  background-color: #19ce60;
}

.side_icon:nth-child(4) {
  background-image: url('../images/call_icon.png');
  background-size: 64%;
  background-color: var(--color-blue);
}

.side_icon:nth-child(5) {
  background-image: url('../images/sideicon_up.png');
  background-color: var(--color-orange);
}

.side_icon a {
  position: absolute;
  width: 62px;
  height: 62px;
  top: 0;
}

.side_icon span {
  position: absolute;
  width: 80px;
  height: auto;
  bottom: -24px;
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: -0.03rem;
}


/* ==== */
#modal {
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
}

.modal-con {
  display: none;
  top: 50%;
  left: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  background: #fff;
}

.modal-con .close {
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #1a1a26;
  text-align: center;
  line-height: 30px;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  right: 20px;
  top: 20px;
  z-index: 500;
}

.list-detail {
  width: 100%;
  height: 75vh;
  overflow-y: scroll;
}

.list-detail-title {
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
  padding: 20px;
  line-height: 1.3;
  text-align: center;
  font-size: 2.2rem;
  background-color: #fff;
  z-index: 1000;
  width: 100%;
  box-sizing: border-box;
}

.list-detail-title>p.title {
  font-weight: 800;
}

.list-detail-title>p.title>span {
  color: var(--color-blue);
}

.list-detail-title>p.vat {
  font-size: 1.25rem;
  font-size: 400 !important;
}

.list-detail-point {
  /* padding: 10px 30px; */
  justify-content: flex-start;
}

.list-dt>p {
  padding: 16px 0 6px;
  font-weight: 700;
  font-size: 1.75rem;
  width: 100%;
  position: relative;
  color: var(--color-blue);
}

.list-dt>p:after {
  position: absolute;
  content: "";
  display: block;
  bottom: -10px;
  left: -20px;
  width: 114%;
  height: 2px;
  background-color: #aaa;
}

.list-ul {
  display: flex;
  flex-direction: column;
  width: 580px;
}

.list-li {
  display: flex;
  flex-direction: row;
  padding: 5px 0;
  font-size: 1.2rem;
  border-bottom: 1px solid #ddd;
  padding: 8px 20px;
  font-weight:600;
}

.list-dt {
  width: 60%;
}

.list-dd {
  text-align: right;
  width: 40%;
  color: var(--color-green);
}