@charset "UTF-8";

html,
body {
  box-sizing: border-box;
  height: 100%;
  background-color: #fff;
  color: #000;
  font-size: 10px;
  line-height: 1.4;
  word-spacing: 1px;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  counter-reset: section;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
form,
fieldset,
th,
td,
input,
select,
textarea,
address,
button,
label,
header,
footer,
nav,
section {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "NotoSansKR-Regular", "Malgun gothic", "맑은고딕", Dotum, "돋움", arial, sans-serif;
}

img {
  border: 0;
  vertical-align: top;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: inherit;
  font-family: "NotoSansKR-Bold";
}

strong,
b,
th {
  font-weight: normal;
  font-family: "NotoSansKR-Bold";
}

em,
address {
  font-style: normal;
}

a {
  color: #222;
  text-decoration: none;
  box-sizing: border-box;
}

a:focus,
a:active,
a:hover {
  text-decoration: none;
  cursor: pointer;
}

div:focus {
  outline: none;
}

header,
hgroup,
footer,
section,
article,
aside,
nav,
figure,
figcaption,
main,
details,
menu {
  display: block;
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  border-spacing: 0;
  empty-cells: show;
}

tbody,
tfoot,
thead,
tr,
th,
td {
  word-break: keep-all;
  word-wrap: break-word;
}

caption,
legend {
  position: absolute !important;
  top: 0 !important;
  left: -999rem !important;
  display: block;
  width: 0 !important;
  height: 0 !important;
  border: 0 !important;
  font-size: 1px;
  text-indent: 999rem !important;
  overflow: hidden !important;
  line-height: 0 !important;
  white-space: nowrap !important;
}

button {
  box-sizing: border-box;
  width: auto;
  margin: 0;
  padding: 0;
  background: none;
  background: transparent;
  border: 0;
  border: none;
  cursor: pointer;
  overflow: visible;
  vertical-align: middle;
}

input,
select,
textarea,
button {
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  resize: none;
}

textarea:focus,
input:focus {
  outline: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

button:disabled {
  background-color: #d0d0d0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

i {
  font-style: normal;
}

.overflow-hidden {
  overflow: hidden !important;
}

/* placeholder */
::-webkit-input-placeholder {
  color: #dcdcdc !important;
}

::-moz-placeholder {
  color: #dcdcdc !important;
}

:-ms-input-placeholder {
  color: #dcdcdc !important;
}

:-moz-placeholder {
  color: #dcdcdc !important;
}

/** text **/
.hide {
  position: absolute;
  margin: 0;
  padding: 0 !important;
  color: transparent !important;
  font-size: 0 !important;
  white-space: nowrap;
  overflow: hidden;
  text-indent: -999rem;
  line-height: 0;
}

.break {
  display: block;
  word-break: keep-all;
  word-wrap: break-word;
}

@media (max-width: 767px) {
  .break {
    display: inline;
  }

  .break-m {
    display: block;
  }
}

/** LAYOUT **/
.wrapper {
  padding: 7rem 2rem 0;
}

.title-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  display: flex;
  align-items: center;
  width: 100%;
  height: 7rem;
  padding: 0 2rem;
  background-color: #448fff;
}

.title-wrap h1 {
  width: 99.5rem;
  margin: 0 auto;
}

.title-wrap .logo {
  display: block;
  width: 12.9rem;
  height: 4rem;
  background: url('/img/logo.svg') no-repeat 50%;
  background-size: contain;
}

.container {
  position: relative;
  width: 99.5rem;
  margin: 0 auto;
  padding-top: 8.2rem;
}

.cont-pc,
.cont-mw {
  display: block;
  width: 100%;
}

.link-mail {
  position: absolute;
  top: 33rem;
  left: calc(50% + 4.4rem);
  width: 20rem;
  height: 6rem;
}

.cont-mw {
  display: none;
}

@media (max-width: 767px) {
  .container {
    width: auto;
    max-width: 40rem;
    padding: 2rem;
  }

  .cont-pc {
    display: none;
  }

  .cont-mw {
    display: block;
  }

  .link-mail {
    top: 63%;
    left: 28%;
    width: 60%;
    height: 10%;
  }
}