@charset "UTF-8";
@import "/resources/assets/fonts/NotoSansKr.css";
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  line-height: 100%;
}

fieldset,
img {
  max-width: 100%;
  border: 0 none;
  vertical-align: middle;
}

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

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

input,
select,
textarea,
button {
  font: 400 62.5%/1.5 "Noto Sans KR", sans-serif;
  color: #222;
  vertical-align: middle;
  border: none;
}
input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}

label {
  cursor: pointer;
}

button {
  border: 0 none;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
  outline: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  visibility: hidden;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  color: #111;
}

a {
  font-weight: 400;
  color: #222;
  text-decoration: none;
}

/*
example :
@include textEllipsis(20px,2);
*/
/*
example :
@include boxShadow(2px,2px,2px,rgba(0,0,0,.25),false);
offsetX, offsetY, spread-radius, color
*/
/*
example :
@include center(vert);
@include center(both);
*/
/*
example :
@include pagination(#fff);
*/
/*
example :
@include slideUp(1s, 5);
*/
/*
example :
@include slideDown(1s, 5);
*/
/*
example :
@include slideLeft(1s, 5);
*/
/*
example :
@include slideRight(1s, 5);
*/
/*
example :
@include fadeIn(1s, 5);
*/
/*
example :
@include bounce(1s);
*/
.input-wrap {
  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;
  gap: 1rem;
}
.input-wrap > * {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 15rem;
}
.input-wrap > span {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  min-width: 0;
}
.input-wrap--mail span {
  font-size: 1.6rem;
}

input {
  width: 100%;
  height: 4rem;
  font-size: 1.4rem;
  font-weight: 300;
  border: 1px solid #dcdcdc;
  border-radius: 0.5rem;
  padding: 0 1rem;
}
input::-webkit-input-placeholder {
  color: #aaa;
  opacity: 1;
}
input::-moz-placeholder {
  color: #aaa;
  opacity: 1;
}
input:-ms-input-placeholder {
  color: #aaa;
  opacity: 1;
}
input::-ms-input-placeholder {
  color: #aaa;
  opacity: 1;
}
input::placeholder {
  color: #aaa;
  opacity: 1;
}
input::-moz-placeholder {
  color: #aaa;
  opacity: 1;
}
input:-ms-input-placeholder {
  color: #aaa;
}
input::-webkit-input-placeholder {
  color: #aaa;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
input:-moz-read-only {
  background-color: #ccc;
}
input:disabled, input:read-only {
  background-color: #ccc;
}
input[readonly] {
  background-color: #ccc;
}

input[type=checkbox], input[type=radio] {
  width: 0;
  height: 0;
  overflow: hidden;
  border: none;
  padding: 0;
  margin: 0;
  position: absolute;
}
input[type=checkbox] + label, input[type=radio] + label {
  margin-right: 3rem;
}
input[type=checkbox] + label::before, input[type=radio] + label::before {
  display: inline-block;
  content: "";
  width: 14px;
  height: 14px;
  background-color: #f9f9f9;
  border: 1px solid #d2d2d2;
  vertical-align: top;
  margin: 1px;
}
input[type=checkbox] + label span, input[type=radio] + label span {
  display: inline-block;
  max-width: calc(100% - 18px - 3.5rem);
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 16px;
  color: #585858;
  vertical-align: middle;
  margin-left: 0.5rem;
}
input[type=checkbox]:checked + label::before, input[type=radio]:checked + label::before {
  background-color: #000;
  -webkit-box-shadow: inset 0 0 0 3px #f9f9f9;
  box-shadow: inset 0 0 0 3px #f9f9f9;
}
input[type=checkbox]:disabled + label::before, input[type=radio]:disabled + label::before {
  background-color: #e9e9e9 !important;
}
input[type=checkbox]:disabled:checked + label::before, input[type=radio]:disabled:checked + label::before {
  background-color: rgba(0, 0, 0, 0.5) !important;
  -webkit-box-shadow: inset 0 0 0 3px #e9e9e9 !important;
  box-shadow: inset 0 0 0 3px #e9e9e9 !important;
}

input[type=radio] + label::before {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin: 0;
}
input[type=radio] + label span {
  line-height: 18px;
}
input[type=radio]:checked + label::before {
  background: radial-gradient(#000 50%, #fff, #Fff);
  -webkit-box-shadow: inset 0 0 0 4px #f9f9f9;
  box-shadow: inset 0 0 0 4px #f9f9f9;
}
input[type=radio]:disabled:checked + label::before {
  -webkit-box-shadow: inset 0 0 0 4px #e9e9e9 !important;
  box-shadow: inset 0 0 0 4px #e9e9e9 !important;
}
input[type=radio].icon + label span {
  font-size: 1.8rem;
  color: #525252;
  line-height: 3.6rem;
  margin-left: 1rem;
}
input[type=radio].icon + label::before {
  width: 3.6rem;
  height: 3.6rem;
  background: url("/resources/assets/images/icon_check.png") right center/auto 100% no-repeat;
  border: none;
}
input[type=radio].icon:checked + label::before {
  background-position: left center;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.file-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 0.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.file-area * {
  vertical-align: middle;
}
.file-area input[type=file] {
  display: none;
}
.file-area p {
  display: inline-block;
  width: calc(100% - 8.5rem);
  min-height: 4rem;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.2;
  border: 1px solid #dcdcdc;
  border-radius: 0.5rem;
  padding: 1rem;
}
.file-area + .file-area {
  margin-top: 0.5rem;
}

textarea {
  resize: none;
  width: 100%;
  min-height: 10rem;
  font-size: 1.4rem;
  border: 1px solid #dcdcdc;
  border-radius: 0.5rem;
  padding: 1rem;
}
textarea:-moz-read-only {
  background-color: #ccc;
}
textarea:disabled, textarea:read-only {
  background-color: #ccc;
}
textarea[readonly] {
  background-color: #ccc;
}

select {
  width: 100%;
  height: 4rem;
  font-size: 1.4rem;
  font-weight: 300;
  background: #fff url("/resources/assets/images/icon_select.png") right 1rem center/auto 0.8rem no-repeat;
  border: 1px solid #dcdcdc;
  border-radius: 0.5rem;
  padding: 0 2.7rem 0 1rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select:disabled {
  opacity: 1;
  background-color: #ccc;
  background-blend-mode: overlay;
}

.dropdown {
  width: 100%;
  position: relative;
  z-index: 2;
}
.dropdown__select {
  width: 100%;
  height: 4rem;
  font-size: 1.4rem;
  color: #888;
  text-align: left;
  background: #fff url("/resources/assets/images/icon_select.png") right 1rem center/auto 0.8rem no-repeat;
  border: 1px solid #dcdcdc;
  border-radius: 0.5rem;
  padding: 0 2.7rem 0 1rem;
}
.dropdown__select:disabled {
  background-color: #ccc;
  background-blend-mode: overlay;
}
.dropdown__list {
  display: none;
  width: 100%;
  background-color: #fff;
  border: 1px solid #dcdcdc;
  border-top: none;
  padding: 0.5rem 0;
  overflow: auto;
  position: absolute;
  left: 0;
  top: 4rem;
  z-index: 1;
}
.dropdown__list::-webkit-scrollbar {
  width: 4px;
  height: auto;
}
.dropdown__list::-webkit-scrollbar-thumb {
  width: 4px;
  background: rgba(85, 91, 103, 0.25);
  border-radius: 2px;
}
.dropdown__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 2px;
}
.dropdown__list li {
  padding: 0 1rem;
}
.dropdown__list li .option {
  width: 100%;
  font-size: 1.4rem;
  color: #888;
  text-align: left;
  padding: 0.5rem 0;
}
.dropdown__list li .input-wrap {
  gap: 0.5rem;
}
.dropdown__list li .input-wrap input {
  min-width: 0;
  height: 3.5rem;
}
.dropdown__list li .input-wrap .btn {
  min-width: 7rem !important;
  height: 3.5rem !important;
}
.dropdown.on::before {
  display: block;
  content: "";
  background-color: #fff;
  border-left: 1px solid #dcdcdc;
  border-right: 1px solid #dcdcdc;
  position: absolute;
  z-index: -1;
  top: 0.5rem;
  bottom: 0;
  left: 0;
  right: 0;
}
.dropdown.on .dropdown__list {
  display: block;
}
.dropdown.disabled .dropdown__select {
  background-color: #ccc;
  background-blend-mode: overlay;
}
.dropdown.disabled .dropdown__list {
  display: none;
}

.search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.search__block > div {
  display: inline-block;
}
.search__block input {
  width: auto;
  min-width: 27rem;
  margin: 0.25rem 0;
}
.search__block select {
  width: auto;
  margin: 0.25rem 0;
}
.search__block .btn-search {
  min-width: 8rem;
  margin: 0.25rem 0;
}
.search .table tr th {
  font-weight: 500;
  border-left: none;
  border-right: none;
}
.search .table tr td {
  border-left: none;
}
.search .table tr td input, .search .table tr td textarea, .search .table tr td select {
  border-radius: 0;
  font-weight: 500;
}

.table {
  overflow-x: auto;
  overflow-y: hidden;
}
.table table {
  table-layout: fixed;
}
.table table tr th {
  font-weight: 500;
  line-height: 1.2;
  vertical-align: middle;
  word-break: keep-all;
  background-color: #f9f9f9;
}
.table table tr td {
  font-weight: 400;
  line-height: 1.2;
  vertical-align: middle;
  background-color: #fff;
  word-wrap: break-word;
}
.table table tr td label {
  width: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
}
.table table tr td input, .table table tr td textarea, .table table tr td select {
  font-weight: 400;
  color: #888;
}
.table table tr td input[type=checkbox] + label,
.table table tr td input[type=radio] + label {
  position: static;
}
.table table tr td input[type=checkbox] + label span,
.table table tr td input[type=radio] + label span {
  font-weight: 400;
  color: #888;
}
.table table tr td .file-area label {
  position: static;
}
.table table tr td .btn {
  height: 3rem;
  font-size: 1.25rem;
  font-weight: 500;
  background-color: #707b94;
  border-radius: 2px;
  padding: 0 1rem;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}
.table table tr td .btn span {
  line-height: 3rem;
}
.table table tr td .btn + .btn {
  margin-left: 0.5rem;
}
.table > p {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.2;
  color: #707b94;
  word-break: keep-all;
  text-align: right;
  margin-top: 1.5rem;
}
.table > p + p {
  margin-top: 2.5rem;
}
.table > p.txt {
  line-height: 1.6;
  text-align: left;
}
.table > p.emergency {
  font-weight: 500;
  line-height: 2;
  color: #3d3e3f;
}
.table--list table tr > * {
  height: 6rem;
  font-size: 1.4rem;
  text-align: center;
  border-bottom: 1px solid #dcdcdc;
  padding: 1rem;
}
.table--list table tr th {
  color: #222;
}
.table--list table tr th input[type=checkbox] + label,
.table--list table tr th input[type=radio] + label {
  margin-right: 0;
}
.table--list table tr th input[type=checkbox] + label::before,
.table--list table tr th input[type=radio] + label::before {
  background-color: #fff;
}
.table--list table tr th input[type=checkbox]:checked + label::before,
.table--list table tr th input[type=radio]:checked + label::before {
  background-color: #000;
  -webkit-box-shadow: inset 0 0 0 3px #fff;
  box-shadow: inset 0 0 0 3px #fff;
}
.table--list table tr td {
  color: #585858;
}
.table--list table tr td.left {
  padding: 1rem 2rem;
}
.table--list table tr td.left p {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 1.7rem;
  line-height: 1.7rem;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.table--list table tr td input[type=checkbox] + label, .table--list table tr td input[type=radio] + label {
  margin-right: 0;
}
.table--list table tr td a {
  color: #585858;
}
.table--list table tr td a.link {
  color: #f17650;
}
.table--list table tr td a.status {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  background-color: #fff;
  border: 0.4rem solid #d2d2d2;
}
.table--list table tr td a.status--disable {
  background-color: #dcdcdc;
  border-width: 1px;
}
.table--list table tr td a.status--enter {
  border-color: #00cc33;
}
.table--list table tr td a.status--unconfirm {
  border-color: #ff4b4b;
}
.table--list table tr td a.status--confirm {
  background: url("/resources/assets/images/icon_check_status.png") center/1.6rem 0.9rem no-repeat;
  border-color: #00cc33;
}
.table--list table tr td .btn {
  min-width: 7rem;
}
.table--list table tr.click {
  cursor: pointer;
}
.table--list table tr.click.on td {
  background-color: rgba(241, 118, 80, 0.1);
  color: #7e7e7e;
}
.table--list table tbody th {
  background-color: #fff;
  text-align: left;
}
.table--list table.sub tr > * {
  height: 5rem;
  padding: 0.5rem 1rem;
}
.table--view table tr {
  text-align: left;
}
.table--view table tr > * {
  font-size: 1.4rem;
  border: 1px solid #dcdcdc;
  height: 6rem;
}
.table--view table tr th {
  color: #222;
  padding: 0 2.5rem;
}
.table--view table tr th:first-of-type {
  border-left: none;
}
.table--view table tr th.ess {
  position: relative;
}
.table--view table tr th.ess::after {
  display: block;
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  background-color: #ff4b4b;
  border-radius: 50%;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.table--view table tr th .add {
  font-size: 0.875em;
  color: #ff4b4b;
  margin-top: 0.5rem;
}
.table--view table tr td {
  color: #888;
  padding: 1rem;
  border-right: none;
}
.table--view table tr td + td {
  border-left: none;
  padding-left: 0;
}
.table--view table tr td .btn {
  min-width: 8rem;
}
.table--view table tr td p.notice {
  font-size: 1.3rem;
  line-height: 1.2;
  color: #525252;
  word-break: keep-all;
  margin-bottom: 0.5rem;
  text-indent: -1.5rem;
  padding-left: 1.5rem;
}
.table--view table tr td dl {
  padding: 1rem;
}
.table--view table tr td dl dt {
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.table--view table tr td dl dd + dd {
  margin-top: 1rem;
}
.table--view table tr.explain td {
  background-color: #f9f5f0;
  border: none;
  padding: 2rem 4rem;
}
.table--view table tr.explain dl {
  padding: 0;
}
.table--view table tr.explain dl dt {
  font-size: 1.4rem;
  color: #222;
}
.table--view table tr.explain dl dd {
  font-size: 1.4rem;
  line-height: 1.2;
  color: #525252;
}
.table--view table tr.explain dl dd ul li {
  line-height: 1.2;
  text-indent: -0.8rem;
  padding-left: 0.8rem;
}
.table--view table tr.explain dl dd ul li + li {
  margin-top: 0.75rem;
}
.table--view table tr.explain dl dd ul li::before {
  display: inline-block;
  content: "";
  width: 2px;
  height: 2px;
  background-color: #888;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 0.5rem;
}
.table--view table tr.explain dl + dl {
  margin-top: 2rem;
}
.table--view table.sub tr th {
  height: 5rem;
  padding: 0.5rem 2.5rem;
}
.table--view table.sub tr td {
  height: 5rem;
  padding: 0.5rem 1rem;
}
.table--small > h3 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 5rem;
  background-color: #f9f9f9;
  padding: 0 2rem;
}
.table--small table tr > * {
  height: 5rem;
  padding: 0.5rem 1rem !important;
}
.table--small table tr th {
  font-size: 1.4rem;
  font-weight: 500;
  color: #222;
}
.table--small table tr td {
  font-size: 1.4rem;
  color: #888;
}
.table--small table tr td input {
  border-radius: 0;
}
.table--small table tr td textarea, .table--small table tr td select {
  border-radius: 0;
}
.table--small table tbody th {
  background-color: #fff;
}
.table--fixed {
  height: 30rem;
  overflow-y: auto;
}
.table--fixed::-webkit-scrollbar {
  width: 6px;
  height: auto;
}
.table--fixed::-webkit-scrollbar-thumb {
  width: 6px;
  background: rgba(85, 91, 103, 0.25);
  border-radius: 3px;
}
.table--fixed::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 3px;
}
.table--fixed thead {
  position: sticky;
  top: 0;
}
.table__block .tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.table__block .tr .th {
  width: 18%;
  font-size: 1.6rem;
  font-weight: 400;
  color: #525252;
  word-break: keep-all;
  letter-spacing: -0.5px;
  background-color: #f9f9f9;
  border-bottom: 1px solid #dcdcdc;
  border-right: 1px solid #dcdcdc;
  padding: 1rem 2.5rem;
  position: relative;
  display: table;
}
.table__block .tr .th:first-child {
  border-left: none;
}
.table__block .tr .th.colspan {
  display: none;
}
.table__block .tr .th label {
  display: table-cell;
  vertical-align: middle;
  word-break: keep-all;
}
.table__block .tr .th.ess::after {
  display: block;
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  background-color: #ff4b4b;
  border-radius: 50%;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.table__block .tr .td {
  width: 32%;
  vertical-align: middle;
  background-color: #fff;
  border-bottom: 1px solid #dcdcdc;
  border-right: none;
  padding: 1rem;
}
.table__block .tr .td + .th {
  border-left: 1px solid #dcdcdc;
}
.table__block .tr .td.colspan {
  width: 50%;
  padding-left: 0;
}
.table__block .tr .td label {
  width: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
}
.table__block .tr .td input[type=checkbox] + label,
.table__block .tr .td input[type=radio] + label {
  position: static;
}
.table__block .tr .td .btn {
  min-width: 8rem;
  height: 3rem;
  font-size: 1.4rem;
  font-weight: 500;
  background-color: #707b94;
  border-radius: 0;
  padding: 0 1rem;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin: 0.5rem 0;
}
.table__block .tr .td .btn + .btn {
  margin-left: 0.5rem;
}
.table + .table {
  margin-top: 4rem;
}

@media screen and (max-width: 1024px) {
  .table__block .tr .th {
    width: 30%;
  }
  .table__block .tr .th.colspan {
    display: block;
    border-top: 1px solid #f9f9f9;
    margin-top: -1px;
  }
  .table__block .tr .th.colspan.empty {
    display: none;
  }
  .table__block .tr .td {
    width: 70%;
  }
  .table__block .tr .td.colspan {
    width: 70%;
    padding: 0 1rem 1rem;
    border-top: 1px solid #fff;
    margin-top: -1px;
  }
  .table__block .tr .td.colspan.empty {
    display: none;
  }
  .table__block .tr .td .btn {
    margin: 0;
  }
  .table__block .tr .td + .th {
    border-left: none;
  }
}
@media screen and (max-width: 767px) {
  .table--view table tr th {
    padding: 0 2rem;
  }
  .table__block .tr .th {
    width: 36%;
    padding: 0 2rem;
  }
  .table__block .tr .th.ess {
    padding: 0 2.5rem 0 2rem;
  }
  .table__block .tr .td {
    width: 64%;
  }
  .table__block .tr .td.colspan {
    width: 64%;
  }
}
@media screen and (max-width: 480px) {
  .table--view table tr th {
    padding: 0 1rem;
  }
  .table--view table tr th.ess::after {
    right: 1rem;
  }
  .table--view table tr.explain td {
    padding: 1.25rem 2rem;
  }
  .table__block .tr .th {
    padding: 0 1rem;
  }
  .table__block .tr .th.ess {
    padding: 0 2rem 0 1rem;
  }
  .table__block .tr .th.ess::after {
    right: 1rem;
  }
}
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 4rem;
}
.pagination-btn {
  display: block;
  width: 3.4rem;
  height: 3.4rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 3.4rem;
  color: #828282;
  text-align: center;
}
.pagination-btn--num.on {
  background-color: #333;
  color: #fff;
}
.pagination-btn--arrow {
  background: url("/resources/assets/images/icon_pagination.png") left center/auto 100% no-repeat;
  -webkit-box-shadow: inset 0 0 0 1px #d2d2d2;
  box-shadow: inset 0 0 0 1px #d2d2d2;
}
.pagination-btn--arrow.fst {
  background-position-x: 0;
}
.pagination-btn--arrow.lst {
  background-position-x: 33.33333%;
}
.pagination-btn--arrow.prev {
  background-position-x: 66.66666%;
  margin-right: 1rem;
}
.pagination-btn--arrow.next {
  background-position-x: 100%;
  margin-left: 1rem;
}

.btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 5rem;
}
.btn-area > div {
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}
.btn-area .btn {
  margin: 0 0.5rem 0.5rem 0;
}
.btn-area .btn:last-child {
  margin-right: 0;
}

.btn {
  display: inline-block;
  min-width: 12rem;
  height: 4rem;
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  text-align: center;
  border-radius: 0.5rem;
  padding: 0 1rem;
}
.btn span {
  line-height: 4rem;
}
.btn--default {
  background-color: #f17650;
}
.btn--default.btn--border {
  font-weight: 500;
  color: #f17650;
  background-color: #fff;
  border: 1px solid;
}
.btn--gray {
  background-color: #707b94;
}
.btn--gray.btn--border {
  font-weight: 500;
  color: #707b94;
  background-color: #fff;
  border: 1px solid;
}
.btn--dark {
  background-color: #3d3e3f;
}
.btn--dark.btn--border {
  font-weight: 500;
  color: #3d3e3f;
  background-color: #fff;
  border: 1px solid;
}
.btn--sm {
  min-width: 7rem;
  height: 3.5rem;
}
.btn-edit {
  width: 2.4rem;
  height: 2.4rem;
  background: #fff url("/resources/assets/images/icon_btns.png") left center/auto 100% no-repeat;
  border: 1px solid #dcdcdc;
  border-radius: 0.3rem;
}
.btn-edit.cancel {
  background-position-x: center;
}
.btn-trail {
  width: 2.4rem;
  height: 2.4rem;
  background: #fff url("/resources/assets/images/icon_btns.png") right center/auto 100% no-repeat;
  border: 1px solid #dcdcdc;
  border-radius: 0.3rem;
}
.btn-trail.cancel {
  background-position-x: center;
}
.btn-add {
  width: 2rem;
  height: 2rem;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 0;
  color: #707b94;
}
.btn-delete {
  width: 4rem;
  height: 4rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 0;
  color: #ff4b4b;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.btn-crease {
  width: 3rem;
  height: 3rem;
  background: url("/resources/assets/images/icon_crease.png") left center/auto 100%;
}
.btn-crease.dicrease {
  background-color: #999;
  background-position-x: left;
}
.btn-crease.increase {
  background-color: #f08c6e;
  background-position-x: right;
  margin-left: 0.5rem;
}

@media screen and (max-width: 480px) {
  .btn {
    min-width: 10rem;
  }
  .btn--sm {
    min-width: 7rem;
  }
}
h2.title {
  font-size: 3.4rem;
  font-weight: 400;
  letter-spacing: -0.5px;
  margin-bottom: 3rem;
}

h3.title {
  font-size: 2.2rem;
}

.title h2 {
  font-size: 4rem;
  font-weight: 400;
}
.title h3 {
  font-size: 2.2rem;
}
.title h3.icon {
  line-height: 4.6rem;
  padding-left: 5.6rem;
}
.title h3.icon::before {
  display: inline-block;
  content: "";
  width: 4.6rem;
  height: 4.6rem;
  background: url("/resources/assets/images/main_icon_title.png") 0 center/auto 4.6rem no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.title h3.icon--notice::before {
  background-position-x: 0;
}
.title h3.icon--guide::before {
  background-position-x: -4.6rem;
}
.title h3.icon--patient::before {
  background-position-x: -9.2rem;
}
.title h3.dash::before {
  display: inline-block;
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border: 4px solid #9fa4b3;
  border-radius: 0.2rem;
  margin-right: 1rem;
}
.title h4 {
  font-size: 1.6rem;
}
.title h4::before {
  display: inline-block;
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  background-color: #9fa4b3;
  border-radius: 50%;
  margin-right: 0.75rem;
}
.title h5 {
  font-size: 1.4rem;
}
.title h6 {
  font-size: 1.2rem;
}
.title .btn-area {
  margin-top: 0;
}
.title .text-area {
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  padding-left: 2rem;
}
.title .text-area span {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  color: #333;
  margin-right: 1rem;
}
.title .text-area span::before {
  display: inline-block;
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  vertical-align: middle;
  background-color: #9fa4b3;
  border-radius: 50%;
  margin-right: 0.5rem;
}
.title + p {
  font-size: 1.2rem;
  color: #ff4b4b;
  line-height: 1.2;
  text-align: right;
}
.title + p.black {
  font-size: 1.3rem;
  color: #333;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .title .text-area {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    padding-left: 0;
    padding-top: 2rem;
  }
}
.hide-block {
  display: none !important;
  background-color: #fff;
}
.hide-block.show {
  display: block !important;
}

.auditTrail {
  min-width: 100%;
  border-bottom: 1px solid #dcdcdc;
  padding: 1.5rem 2rem;
}
.auditTrail .title {
  color: #525252;
}
.auditTrail .table {
  max-height: 21rem;
  overflow-y: auto;
  border-top: none !important;
}
.auditTrail .table table {
  border: 1px solid #dcdcdc;
}
.auditTrail .table table tr > * {
  height: 3rem;
  font-size: 1.3rem;
}

.accd {
  border-top: 2px solid #111;
}
.accd .check-area {
  width: 14rem;
  text-align: center;
}
.accd .check-area input[type=checkbox] + label:last-child,
.accd .check-area input[type=radio] + label:last-child {
  margin-right: 0;
}
.accd__head {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f9f9f9;
  border-bottom: 2px solid #111;
  padding-right: 3rem;
}
.accd__head > h5 {
  width: calc(100% - 14rem);
  font-size: 1.5rem;
  line-height: 1.2;
  word-break: keep-all;
  padding: 2rem 6rem 2rem 1rem;
}
.accd__head input[type=checkbox] + label::before {
  background-color: #fff;
}
.accd__head input[type=checkbox]:checked + label::before {
  background-color: #000;
  -webkit-box-shadow: inset 0 0 0 3px #fff;
  box-shadow: inset 0 0 0 3px #fff;
}
.accd__head input[type=radio] + label::before {
  background-color: #fff;
}
.accd__head input[type=radio]:checked + label::before {
  -webkit-box-shadow: inset 0 0 0 4px #fff;
  box-shadow: inset 0 0 0 4px #fff;
}
.accd__head .hide-block {
  margin-right: -3rem;
}
.accd__contents {
  height: 0;
  overflow: hidden;
}
.accd__contents.show {
  height: auto;
}
.accd__contents li {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #dcdcdc;
  padding: 2.5rem 3rem;
}
.accd__contents li .txt-area {
  width: calc(100% - 20rem);
}
.accd__contents li .txt-area.ess p {
  display: inline-block;
  position: relative;
}
.accd__contents li .txt-area.ess p::after {
  display: block;
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  background-color: #ff4b4b;
  border-radius: 50%;
  position: absolute;
  right: -1.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.accd__contents li .txt-area p {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #333;
}
.accd__contents li .txt-area p span {
  font-size: 1.3rem;
  color: #707b94;
}
.accd__contents li .txt-area dl {
  font-size: 1.3rem;
  color: #888;
  margin-top: 1.5rem;
}
.accd__contents li .txt-area dl dt {
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.accd__contents li .txt-area dl dd {
  font-weight: 500;
  line-height: 1.2;
  text-indent: -0.65rem;
  padding-left: 0.65rem;
}
.accd__contents li .txt-area dl dd + dd {
  margin-top: 0.5rem;
}
.accd__contents li .txt-area dl + dl {
  margin-top: 1rem;
}
.accd__contents li .txt-area dl + p {
  margin-top: 2rem;
}
.accd__contents li .txt-area.reason {
  width: 100% !important;
}
.accd__contents li .txt-area.reason label {
  width: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
}
.accd__contents li .txt-area.reason textarea {
  min-height: 5rem;
  margin-top: 1rem;
}
.accd__contents li .txt-area.reason input {
  margin-top: 1rem;
}
.accd__contents li.notice {
  border-bottom: none;
  padding: 1rem 1rem 0;
}
.accd__contents li.notice p {
  font-size: 1.4rem;
  line-height: 1.5;
}
.accd__contents li .hide-block {
  margin: 0 -3rem;
  -webkit-transform: translateY(2.5rem);
  transform: translateY(2.5rem);
}
.accd__contents li.several h5 {
  width: 100%;
  font-size: 1.4rem;
  color: #525252;
  margin-bottom: 1rem;
}
.accd__contents li.several h5.ess {
  display: inline-block;
  width: auto;
  position: relative;
}
.accd__contents li.several h5.ess::after {
  display: block;
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  background-color: #ff4b4b;
  border-radius: 50%;
  position: absolute;
  right: -1.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.accd__contents li.several .txt-area p {
  text-indent: -0.75rem;
  padding-left: 0.75rem;
}
.accd__contents li.several .txt-area p::before {
  display: inline-block;
  content: "";
  width: 0.2rem;
  height: 0.2rem;
  border-radius: 50%;
  background-color: #7e7e7e;
  vertical-align: middle;
  margin-right: 0.5rem;
}
.accd__contents li.several .txt-area.reason {
  margin-top: 1rem;
}
.accd__contents li.several .txt-area.reason p::before {
  display: none;
}
.accd__contents li.several .check-area {
  margin: 0.5rem 0;
}
.accd--small .accd__contents li {
  padding: 1.5rem 3rem;
}
.accd--small .accd__contents li .txt-area p {
  font-size: 1.4rem;
}
.accd--small .accd__contents li .hide-block {
  -webkit-transform: translateY(1.5rem);
  transform: translateY(1.5rem);
}
.accd--btns .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.accd--btns .btn-area {
  width: 60px;
  margin-top: 0;
  margin-left: 4rem;
}
.accd--btns .accd__head {
  position: relative;
}
.accd--btns .accd__head > h5 {
  width: calc(100% - 18rem - 60px);
}
.accd--btns .accd__contents li {
  position: relative;
}
.accd--btns .accd__contents li .txt-area {
  width: calc(100% - 24rem - 60px);
}
.accd .auditTrail {
  border-top: 1px solid #dcdcdc;
  border-bottom: none;
}
.accd .btn {
  display: block;
  height: 3rem;
  font-size: 1.25rem;
  font-weight: 500;
  background-color: #707b94;
  border-radius: 2px;
  padding: 0 1rem;
  margin: 10px 0 0 auto;
}
.accd .btn span {
  line-height: 3rem;
}

@media screen and (max-width: 767px) {
  .auditTrail .table table tr > * {
    padding: 0.75rem;
  }
  .accd__head {
    display: block;
    padding: 0 2rem 1rem 2rem;
  }
  .accd__head > h5 {
    width: 100% !important;
    padding: 1rem 0;
  }
  .accd__head .check-area {
    text-align: left;
  }
  .accd__head .hide-block {
    margin: 0 -2rem;
    -webkit-transform: translateY(1rem);
    transform: translateY(1rem);
  }
  .accd__contents li {
    display: block;
    padding: 1.5rem 2rem;
  }
  .accd__contents li .txt-area {
    width: 100% !important;
  }
  .accd__contents li .check-area {
    width: 100%;
    text-align: left;
    margin-top: 1rem;
  }
  .accd__contents li .hide-block {
    -webkit-transform: translateY(1.5rem);
    transform: translateY(1.5rem);
  }
  .accd--small .accd__contents li {
    padding: 1rem;
  }
}
.scroll {
  padding: 2rem 2rem 2rem 3rem;
}
.scroll .title {
  color: #525252;
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 0.75rem;
}
.scroll__block {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding-right: 1rem;
}
.scroll__block::-webkit-scrollbar {
  width: 6px;
  height: auto;
}
.scroll__block::-webkit-scrollbar-thumb {
  width: 6px;
  background: #555b67;
  border-radius: 3px;
}
.scroll__block::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 3px;
}
.scroll__block::-webkit-scrollbar-track {
  border: 1px solid #d2d2d2;
}
.scroll--text {
  background-color: #f9f9f9;
  border: 1px solid #dcdcdc;
  height: 25rem;
}
.scroll--text .scroll__block * {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #525252;
}
.scroll--text .scroll__block p + p {
  margin-top: 1rem;
}
.scroll--text .scroll__block dl {
  padding: 0;
}
.scroll--text .scroll__block dl + dl {
  margin-top: 1.5rem;
}
.scroll--text .scroll__block input[type=checkbox] + label::before {
  background-color: #fff;
  vertical-align: middle;
}
.scroll--text .scroll__block input[type=checkbox]:checked + label::before {
  background-color: #000;
  -webkit-box-shadow: inset 0 0 0 3px #fff;
  box-shadow: inset 0 0 0 3px #fff;
}
.scroll--text .scroll__block input[type=radio] + label::before {
  background-color: #fff;
  vertical-align: middle;
}
.scroll--text .scroll__block input[type=radio]:checked + label::before {
  -webkit-box-shadow: inset 0 0 0 4px #fff;
  box-shadow: inset 0 0 0 4px #fff;
}
.scroll--list {
  height: 25rem;
  background-color: #f9f5f0;
}
.scroll--list .scroll__block {
  height: calc(100% - 3rem);
}
.scroll--list .scroll__block ul li + li {
  margin-top: 1rem;
}
.scroll--list .scroll__pagination {
  text-align: center;
  margin-top: 1rem;
}
.scroll--list .scroll__pagination button {
  min-width: 1.8rem;
  font-size: 1.2rem;
  color: #777;
}
.scroll--list .scroll__pagination button.btn-num.on {
  color: #f17650;
}
.scroll--list .scroll__pagination button.btn-arrow {
  font-size: 1rem;
}

.popup {
  width: calc(100% - 60px);
  max-width: 560px;
  background: #fff;
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -99;
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.popup.w800 {
  max-width: 800px;
}
.popup.show {
  z-index: 100;
  opacity: 1;
}
.popup__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 9rem;
  padding: 0 3rem;
  background-color: #fdf7f0;
  border-bottom: 1px solid #ded5cb;
}
.popup__title h2 {
  width: calc(100% - 4rem);
  height: 9rem;
  font-size: 2.5rem;
  line-height: 1.2;
  background: url("/resources/assets/images/popup_title.png") left bottom no-repeat;
  padding: 4rem 0 0 8rem;
}
.popup__title .btn-close {
  display: block;
  width: 3rem;
  height: 3rem;
  padding: 0;
}
.popup__title .btn-close span {
  display: block;
  width: 4rem;
  height: 0.2rem;
  background-color: #000;
  border-radius: 0.1rem;
}
.popup__title .btn-close span:first-child {
  -webkit-transform: rotate(-45deg) translate(-0.4rem, -0.3rem);
  transform: rotate(-45deg) translate(-0.4rem, -0.3rem);
}
.popup__title .btn-close span:last-child {
  -webkit-transform: rotate(45deg) translate(-0.4rem, 0.3rem);
  transform: rotate(45deg) translate(-0.4rem, 0.3rem);
}
.popup__contents {
  max-height: calc(85vh - 19rem);
  overflow-y: auto;
  padding: 3rem 4rem;
}
.popup__contents .title h2 {
  font-size: 2rem;
}
.popup__contents .title h3 {
  font-size: 1.6rem;
}
.popup__contents .check-area {
  padding: 1.2rem 1rem;
}
.popup__contents .title {
  margin-bottom: 1rem;
}
.popup__contents .search {
  margin-bottom: 4rem;
}
.popup__contents .search input {
  border: 1px solid #dcdcdc;
}
.popup__contents .search .btn-area {
  margin-top: 2.5rem;
}
.popup__contents .table {
  border-top: 2px solid;
}
.popup__contents .table th {
  text-align: center;
}
.popup__contents .table th + th {
  border-left: 1px solid #dcdcdc;
}
.popup__contents .table td + td {
  border-left: 1px solid #dcdcdc;
}
.popup__contents .table--small > h3 {
  line-height: 4rem;
  color: #fff;
  background-color: #b2b5c2;
}
.popup__contents .table + .table {
  margin-top: 2rem;
}
.popup__contents .pagination-btn {
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
}
.popup__btn {
  padding: 1rem 3rem 4rem;
  text-align: center;
}
.popup__btn .btn--default {
  min-width: 15rem;
  height: 4.2rem;
  font-size: 1.6rem;
  background-color: #231f20;
  border-radius: 2.1rem;
  padding: 0 4rem;
  margin: 0 0.5rem;
}
.popup--window {
  width: 100% !important;
  min-width: 360px;
  z-index: 100;
  opacity: 1;
  position: static;
  -webkit-transform: none;
  transform: none;
}
.popup--window .popup__contents {
  max-height: none;
  overflow: initial;
}
.popup--window .notice-table th {
  background-color: #fff;
}
.popup--window .notice-table td > div {
  min-height: 25rem;
  text-align: left;
  padding: 1rem 2rem;
}

.dimmed {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -99;
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.dimmed.show {
  opacity: 1;
  z-index: 99;
}

@media screen and (max-width: 1024px) {
  .popup__contents .table.m-scroll h3 {
    min-width: 600px;
  }
  .popup__contents .table.m-scroll table {
    min-width: 600px;
  }
}
@media screen and (max-width: 560px) {
  .popup__btn .btn {
    min-width: 12rem;
  }
}
@media screen and (max-width: 480px) {
  .popup {
    width: calc(100% - 30px);
  }
  .popup__title {
    padding: 2rem;
  }
  .popup__title .btn-close {
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
  }
  .popup__contents {
    padding: 2rem;
  }
  .popup__contents .table.m-scroll h3 {
    min-width: 500px;
  }
  .popup__contents .table.m-scroll table {
    min-width: 500px;
  }
  .popup__btn {
    padding: 1rem 2rem 3rem;
  }
  .popup__btn .btn {
    min-width: 0;
    padding: 0 3rem;
  }
}
.dis-in {
  display: inline;
}
.dis-inb {
  display: inline-block;
}
.dis-bl {
  display: block;
}
.dis-fx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.dis-no {
  display: none;
}

.left {
  text-align: left !important;
}

.right {
  text-align: right !important;
}

.center {
  text-align: center !important;
}

.pos-rel {
  position: relative;
}
.pos-abs {
  position: absolute;
}
.pos-fix {
  position: fixed;
}
.pos-sta {
  position: static;
}
.pos-stk {
  position: sticky;
}

.w100 {
  width: 100%;
  min-width: 0;
  max-width: none;
}

.w90 {
  width: 90%;
  min-width: 0;
  max-width: none;
}

.w80 {
  width: 80%;
  min-width: 0;
  max-width: none;
}

.w70 {
  width: 70%;
  min-width: 0;
  max-width: none;
}

.w60 {
  width: 60%;
  min-width: 0;
  max-width: none;
}

.w50 {
  width: 50%;
  min-width: 0;
  max-width: none;
}

.w40 {
  width: 40%;
  min-width: 0;
  max-width: none;
}

.w30 {
  width: 30%;
  min-width: 0;
  max-width: none;
}

.w20 {
  width: 20%;
  min-width: 0;
  max-width: none;
}

.w10 {
  width: 10%;
  min-width: 0;
  max-width: none;
}

.mg-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0rem !important;
}
.mt-5 {
  margin-top: 0.5rem !important;
}
.mt-10 {
  margin-top: 1rem !important;
}
.mt-15 {
  margin-top: 1.5rem !important;
}
.mt-20 {
  margin-top: 2rem !important;
}
.mt-25 {
  margin-top: 2.5rem !important;
}
.mt-30 {
  margin-top: 3rem !important;
}
.mt-35 {
  margin-top: 3.5rem !important;
}
.mt-40 {
  margin-top: 4rem !important;
}
.mt-45 {
  margin-top: 4.5em !important;
}
.mt-50 {
  margin-top: 5rem !important;
}
.mt-55 {
  margin-top: 5.5rem !important;
}
.mt-60 {
  margin-top: 6rem !important;
}
.mt-65 {
  margin-top: 6.5rem !important;
}
.mt-70 {
  margin-top: 7rem !important;
}
.mt-75 {
  margin-top: 7.5rem !important;
}
.mt-80 {
  margin-top: 8rem !important;
}
.mt-85 {
  margin-top: 8.5rem !important;
}
.mt-90 {
  margin-top: 9rem !important;
}
.mt-95 {
  margin-top: 9.5rem !important;
}
.mt-100 {
  margin-top: 10rem !important;
}

.mb-0 {
  margin-bottom: 0rem !important;
}
.mb-5 {
  margin-bottom: 0.5rem !important;
}
.mb-10 {
  margin-bottom: 1rem !important;
}
.mb-15 {
  margin-bottom: 1.5rem !important;
}
.mb-20 {
  margin-bottom: 2rem !important;
}
.mb-25 {
  margin-bottom: 2.5rem !important;
}
.mb-30 {
  margin-bottom: 3rem !important;
}
.mb-35 {
  margin-bottom: 3.5rem !important;
}
.mb-40 {
  margin-bottom: 4rem !important;
}
.mb-45 {
  margin-bottom: 4.5em !important;
}
.mb-50 {
  margin-bottom: 5rem !important;
}
.mb-55 {
  margin-bottom: 5.5rem !important;
}
.mb-60 {
  margin-bottom: 6rem !important;
}
.mb-65 {
  margin-bottom: 6.5rem !important;
}
.mb-70 {
  margin-bottom: 7rem !important;
}
.mb-75 {
  margin-bottom: 7.5rem !important;
}
.mb-80 {
  margin-bottom: 8rem !important;
}
.mb-85 {
  margin-bottom: 8.5rem !important;
}
.mb-90 {
  margin-bottom: 9rem !important;
}
.mb-95 {
  margin-bottom: 9.5rem !important;
}
.mb-100 {
  margin-bottom: 10rem !important;
}

.ml-0 {
  margin-left: 0rem !important;
}
.ml-5 {
  margin-left: 0.5rem !important;
}
.ml-10 {
  margin-left: 1rem !important;
}
.ml-15 {
  margin-left: 1.5rem !important;
}
.ml-20 {
  margin-left: 2rem !important;
}
.ml-25 {
  margin-left: 2.5rem !important;
}
.ml-30 {
  margin-left: 3rem !important;
}
.ml-35 {
  margin-left: 3.5rem !important;
}
.ml-40 {
  margin-left: 4rem !important;
}
.ml-45 {
  margin-left: 4.5em !important;
}
.ml-50 {
  margin-left: 5rem !important;
}
.ml-55 {
  margin-left: 5.5rem !important;
}
.ml-60 {
  margin-left: 6rem !important;
}
.ml-65 {
  margin-left: 6.5rem !important;
}
.ml-70 {
  margin-left: 7rem !important;
}
.ml-75 {
  margin-left: 7.5rem !important;
}
.ml-80 {
  margin-left: 8rem !important;
}
.ml-85 {
  margin-left: 8.5rem !important;
}
.ml-90 {
  margin-left: 9rem !important;
}
.ml-95 {
  margin-left: 9.5rem !important;
}
.ml-100 {
  margin-left: 10rem !important;
}

.mr-0 {
  margin-right: 0rem !important;
}
.mr-5 {
  margin-right: 0.5rem !important;
}
.mr-10 {
  margin-right: 1rem !important;
}
.mr-15 {
  margin-right: 1.5rem !important;
}
.mr-20 {
  margin-right: 2rem !important;
}
.mr-25 {
  margin-right: 2.5rem !important;
}
.mr-30 {
  margin-right: 3rem !important;
}
.mr-35 {
  margin-right: 3.5rem !important;
}
.mr-40 {
  margin-right: 4rem !important;
}
.mr-45 {
  margin-right: 4.5em !important;
}
.mr-50 {
  margin-right: 5rem !important;
}
.mr-55 {
  margin-right: 5.5rem !important;
}
.mr-60 {
  margin-right: 6rem !important;
}
.mr-65 {
  margin-right: 6.5rem !important;
}
.mr-70 {
  margin-right: 7rem !important;
}
.mr-75 {
  margin-right: 7.5rem !important;
}
.mr-80 {
  margin-right: 8rem !important;
}
.mr-85 {
  margin-right: 8.5rem !important;
}
.mr-90 {
  margin-right: 9rem !important;
}
.mr-95 {
  margin-right: 9.5rem !important;
}
.mr-100 {
  margin-right: 10rem !important;
}

.pd-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0rem !important;
}
.pt-5 {
  padding-top: 0.5rem !important;
}
.pt-10 {
  padding-top: 1rem !important;
}
.pt-15 {
  padding-top: 1.5rem !important;
}
.pt-20 {
  padding-top: 2rem !important;
}
.pt-25 {
  padding-top: 2.5rem !important;
}
.pt-30 {
  padding-top: 3rem !important;
}
.pt-35 {
  padding-top: 3.5rem !important;
}
.pt-40 {
  padding-top: 4rem !important;
}
.pt-45 {
  padding-top: 4.5em !important;
}
.pt-50 {
  padding-top: 5rem !important;
}
.pt-55 {
  padding-top: 5.5rem !important;
}
.pt-60 {
  padding-top: 6rem !important;
}
.pt-65 {
  padding-top: 6.5rem !important;
}
.pt-70 {
  padding-top: 7rem !important;
}
.pt-75 {
  padding-top: 7.5rem !important;
}
.pt-80 {
  padding-top: 8rem !important;
}
.pt-85 {
  padding-top: 8.5rem !important;
}
.pt-90 {
  padding-top: 9rem !important;
}
.pt-95 {
  padding-top: 9.5rem !important;
}
.pt-100 {
  padding-top: 10rem !important;
}

.pb-0 {
  padding-bottom: 0rem !important;
}
.pb-5 {
  padding-bottom: 0.5rem !important;
}
.pb-10 {
  padding-bottom: 1rem !important;
}
.pb-15 {
  padding-bottom: 1.5rem !important;
}
.pb-20 {
  padding-bottom: 2rem !important;
}
.pb-25 {
  padding-bottom: 2.5rem !important;
}
.pb-30 {
  padding-bottom: 3rem !important;
}
.pb-35 {
  padding-bottom: 3.5rem !important;
}
.pb-40 {
  padding-bottom: 4rem !important;
}
.pb-45 {
  padding-bottom: 4.5em !important;
}
.pb-50 {
  padding-bottom: 5rem !important;
}
.pb-55 {
  padding-bottom: 5.5rem !important;
}
.pb-60 {
  padding-bottom: 6rem !important;
}
.pb-65 {
  padding-bottom: 6.5rem !important;
}
.pb-70 {
  padding-bottom: 7rem !important;
}
.pb-75 {
  padding-bottom: 7.5rem !important;
}
.pb-80 {
  padding-bottom: 8rem !important;
}
.pb-85 {
  padding-bottom: 8.5rem !important;
}
.pb-90 {
  padding-bottom: 9rem !important;
}
.pb-95 {
  padding-bottom: 9.5rem !important;
}
.pb-100 {
  padding-bottom: 10rem !important;
}

.pl-0 {
  padding-left: 0rem !important;
}
.pl-5 {
  padding-left: 0.5rem !important;
}
.pl-10 {
  padding-left: 1rem !important;
}
.pl-15 {
  padding-left: 1.5rem !important;
}
.pl-20 {
  padding-left: 2rem !important;
}
.pl-25 {
  padding-left: 2.5rem !important;
}
.pl-30 {
  padding-left: 3rem !important;
}
.pl-35 {
  padding-left: 3.5rem !important;
}
.pl-40 {
  padding-left: 4rem !important;
}
.pl-45 {
  padding-left: 4.5em !important;
}
.pl-50 {
  padding-left: 5rem !important;
}
.pl-55 {
  padding-left: 5.5rem !important;
}
.pl-60 {
  padding-left: 6rem !important;
}
.pl-65 {
  padding-left: 6.5rem !important;
}
.pl-70 {
  padding-left: 7rem !important;
}
.pl-75 {
  padding-left: 7.5rem !important;
}
.pl-80 {
  padding-left: 8rem !important;
}
.pl-85 {
  padding-left: 8.5rem !important;
}
.pl-90 {
  padding-left: 9rem !important;
}
.pl-95 {
  padding-left: 9.5rem !important;
}
.pl-100 {
  padding-left: 10rem !important;
}

.pr-0 {
  padding-right: 0rem !important;
}
.pr-5 {
  padding-right: 0.5rem !important;
}
.pr-10 {
  padding-right: 1rem !important;
}
.pr-15 {
  padding-right: 1.5rem !important;
}
.pr-20 {
  padding-right: 2rem !important;
}
.pr-25 {
  padding-right: 2.5rem !important;
}
.pr-30 {
  padding-right: 3rem !important;
}
.pr-35 {
  padding-right: 3.5rem !important;
}
.pr-40 {
  padding-right: 4rem !important;
}
.pr-45 {
  padding-right: 4.5em !important;
}
.pr-50 {
  padding-right: 5rem !important;
}
.pr-55 {
  padding-right: 5.5rem !important;
}
.pr-60 {
  padding-right: 6rem !important;
}
.pr-65 {
  padding-right: 6.5rem !important;
}
.pr-70 {
  padding-right: 7rem !important;
}
.pr-75 {
  padding-right: 7.5rem !important;
}
.pr-80 {
  padding-right: 8rem !important;
}
.pr-85 {
  padding-right: 8.5rem !important;
}
.pr-90 {
  padding-right: 9rem !important;
}
.pr-95 {
  padding-right: 9.5rem !important;
}
.pr-100 {
  padding-right: 10rem !important;
}

html,
body {
  font: 400 62.5%/1.5 "Noto Sans KR", sans-serif;
  color: #222;
}
html.hidden,
body.hidden {
  overflow: hidden;
}

#wrap {
  width: 100%;
  min-height: 100vh;
  background-color: #fff;
}
#wrap.hidden {
  height: 100vh;
  overflow: hidden;
}
#wrap.before {
  background-color: #faf8f6;
  padding-top: 2.5rem;
}
#wrap.before .container {
  max-width: 1360px;
  width: 100%;
  min-height: calc(100vh - 2.5rem);
  padding: 0 30px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#wrap.before input, #wrap.before select {
  font-size: 1.6rem;
  font-weight: 400;
  border-radius: 0;
}
#wrap.before .btn-area {
  margin-top: 0;
}
#wrap.before .btn--default {
  width: 20rem;
  height: 5rem;
  font-size: 1.8rem;
  font-weight: 300;
  background-color: #231f20;
  border-radius: 30px;
}
#wrap.before .logo {
  padding: 0 4rem;
  margin-bottom: 3rem;
}
#wrap.before .logo a {
  display: inline-block;
}
#wrap.before .logo img {
  max-height: 2.2rem;
}
#wrap.before .copy {
  text-align: center;
  padding: 5rem 0 7rem;
}
#wrap.before .copy span {
  display: block;
  font-size: 1.3rem;
  font-weight: 300;
  color: #ccc4be;
  margin-top: 2rem;
}
#wrap.before form {
  background-color: #fff;
  border-radius: 5rem;
  padding: 5rem 9rem;
}
#wrap.before form .tab__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 2px solid;
  gap: 0 0.5rem;
}
#wrap.before form .tab__btn button {
  min-width: 21rem;
  height: 4rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  background-color: #9899a8;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  padding: 0 2.5rem;
}
#wrap.before form .tab__btn button.on {
  background-color: #f08c6e;
}
#wrap.before form .tab__contents > div {
  display: none;
}
#wrap.before .login-wrap {
  padding-top: 8vmax;
}
#wrap.before .login-wrap .logo {
  padding: 0;
  margin: 0 5rem 3rem 5rem;
}
#wrap.before .login-wrap .logo img {
  max-height: 4rem;
}
#wrap.before .login-wrap .login__form {
  -webkit-box-shadow: 0 3px 50px rgba(0, 0, 0, 0.07);
  box-shadow: 0 3px 50px rgba(0, 0, 0, 0.07);
}
#wrap.before .login-wrap .login__form .explain {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  background-color: #ccc4be;
  padding: 2.5rem 5rem 2.5rem;
  border-top-left-radius: 5rem;
  border-top-right-radius: 5rem;
  position: relative;
  margin: -5rem -9rem 5rem;
}
#wrap.before .login-wrap .login__form .explain p {
  /*min-height: 5rem;*/
  /*word-break: keep-all;*/
  /*text-indent: 10.5rem;*/
  /*background: url("/resources/assets/images/login_img_text.jpg") left top/11rem auto no-repeat;*/
  /*padding: 1.25rem 30rem 0 0;*/
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  color: #fff;
  margin-left: 0.5rem;
}
/*#wrap.before .login-wrap .login__form .explain p span {*/
/*  font-size: 1.6rem;*/
/*  font-weight: 500;*/
/*  line-height: 2;*/
/*  color: #fff;*/
/*  margin-left: 0.5rem;*/
/*}*/
#wrap.before .login-wrap .login__form .explain::after {
  display: block;
  content: "";
  width: 28.4rem;
  height: 17.9rem;
  background: url("/resources/assets/images/login_img_human.png") center bottom/100% auto no-repeat;
  position: absolute;
  right: 6rem;
  bottom: 0;
}
#wrap.before .login-wrap .login__form .input-wrap {
  gap: 3vh 2.5vw;
}
#wrap.before .login-wrap .login__form .input-wrap > div:not(.btn-area) {
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}
#wrap.before .login-wrap .login__form .input-wrap label {
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  color: #f08c6e;
  text-transform: uppercase;
}
#wrap.before .login-wrap .login__form .input-wrap input {
  height: 5rem;
  font-size: 2rem;
  font-weight: 200;
  color: #000;
  border: none;
  border-bottom: 1px solid #989898;
  padding: 0;
}
#wrap.before .login-wrap .login__form .input-wrap input::-webkit-input-placeholder {
  color: #666;
  opacity: 1;
}
#wrap.before .login-wrap .login__form .input-wrap input::-moz-placeholder {
  color: #666;
  opacity: 1;
}
#wrap.before .login-wrap .login__form .input-wrap input:-ms-input-placeholder {
  color: #666;
  opacity: 1;
}
#wrap.before .login-wrap .login__form .input-wrap input::-ms-input-placeholder {
  color: #666;
  opacity: 1;
}
#wrap.before .login-wrap .login__form .input-wrap input::placeholder {
  color: #666;
  opacity: 1;
}
#wrap.before .login-wrap .login__form .input-wrap input::-moz-placeholder {
  color: #666;
  opacity: 1;
}
#wrap.before .login-wrap .login__form .input-wrap input:-ms-input-placeholder {
  color: #666;
}
#wrap.before .login-wrap .login__form .input-wrap input::-webkit-input-placeholder {
  color: #666;
}
#wrap.before .login-wrap .login__form .input-wrap .btn-area {
  display: block;
  text-align: center;
}
#wrap.before .login-wrap .login__form .input-wrap .btn-area .btn {
  width: 100%;
  height: 6rem;
  background-color: #222;
}
#wrap.before .login-wrap .login__form .txt {
  font-size: 1.4rem;
  line-height: 1.2;
  word-break: keep-all;
  color: #999;
  margin-top: 2rem;
}
#wrap.before .login-wrap .login__form .support {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4rem;
}
#wrap.before .login-wrap .login__form .support a {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 200px;
  text-align: center;
  padding: 1rem 2rem;
  background-color: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 0.6rem;
}
#wrap.before .login-wrap .login__form .support a::before {
  display: inline-block;
  content: "";
  width: 3.6rem;
  height: 3rem;
  background: url("/resources/assets/images/login_icon_btn.png") center/auto 100% no-repeat;
  vertical-align: middle;
}
#wrap.before .login-wrap .login__form .support a span {
  display: inline-block;
  width: calc(100% - 4rem);
  font-size: 1.5rem;
  font-weight: 500;
  color: #525252;
  vertical-align: middle;
}
#wrap.before .login-wrap .login__form .support a span br {
  display: none;
}
#wrap.before .login-wrap .login__form .support a:nth-child(1)::before {
  background-position: 0rem center;
}
#wrap.before .login-wrap .login__form .support a:nth-child(2)::before {
  background-position: -3.6rem center;
}
#wrap.before .login-wrap .login__form .support a:nth-child(3)::before {
  background-position: -7.2rem center;
}
#wrap.before .signup-wrap .signup h2.title {
  padding: 0 4rem;
  margin-bottom: 0;
}
#wrap.before .signup-wrap .signup__step {
  width: 100%;
  background-color: #fff;
  border: 1px solid #ccc4be;
  border-radius: 5rem;
  padding: 2.5rem 4rem;
  margin: 2rem 0;
  position: relative;
}
#wrap.before .signup-wrap .signup__step ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem 6rem;
  padding-right: 11rem;
}
#wrap.before .signup-wrap .signup__step ol li {
  padding-right: 1rem;
}
#wrap.before .signup-wrap .signup__step ol li i {
  display: inline-block;
  width: 2.8rem;
  height: 2.8rem;
  font-style: normal;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 2.8rem;
  color: #fff;
  text-align: center;
  background-color: #999;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 1rem;
}
#wrap.before .signup-wrap .signup__step ol li span {
  display: inline-block;
  max-width: calc(100% - 3.8rem);
  font-size: 1.6rem;
  font-weight: 500;
  opacity: 0.5;
  vertical-align: middle;
}
#wrap.before .signup-wrap .signup__step ol li.on i {
  background-color: #f17650;
}
#wrap.before .signup-wrap .signup__step ol li.on span {
  opacity: 1;
}
#wrap.before .signup-wrap .signup__step::after {
  display: block;
  content: "";
  width: 11rem;
  height: 16.4rem;
  background: url("/resources/assets/images/signup_img_human.png") center/100% no-repeat;
  position: absolute;
  right: 4rem;
  bottom: 0;
}
#wrap.before .signup-wrap .signup__notice {
  width: 100%;
  background-color: #fff;
  border: 1px solid #ccc4be;
  border-radius: 5rem;
  padding: 2.5rem 4rem;
  margin: 2rem 0;
  position: relative;
}
#wrap.before .signup-wrap .signup__notice p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  word-break: keep-all;
}
#wrap.before .signup-wrap .signup__notice::after {
  display: block;
  content: "";
  width: 18.6rem;
  height: 12.5rem;
  background: url("/resources/assets/images/signup_img_pc.png") center/100% no-repeat;
  position: absolute;
  right: 4rem;
  bottom: 0;
}
#wrap.before .signup-wrap .signup__form {
  padding: 5rem 9.5rem 8rem;
}
#wrap.before .signup-wrap .signup__form h3.title {
  border-bottom: 2px solid;
  padding-bottom: 1.5rem;
}
#wrap.before .signup-wrap .signup__form input[type=checkbox] + label span,
#wrap.before .signup-wrap .signup__form input[type=radio] + label span {
  font-size: 1.5rem;
}
#wrap.before .signup-wrap .signup__form > div {
  padding-top: 1rem;
  margin-bottom: 3rem;
}
#wrap.before .signup-wrap .signup__form > div.table {
  padding-top: 0;
}
#wrap.before .signup-wrap .signup__form .table > p {
  font-size: 1.5rem;
}
#wrap.before .signup-wrap .signup__form .notice {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.5;
  color: #707b94;
  word-break: keep-all;
  text-align: center;
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
  padding: 2rem 0;
  margin-bottom: 1rem;
}
#wrap.before .signup-wrap .signup__form .important {
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 5rem;
  margin: 3rem 0 2rem;
}
#wrap.before .signup-wrap .signup__form .important p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #525252;
  margin-bottom: 4rem;
}
#wrap.before .signup-wrap .signup__form .important dl > * {
  font-size: 1.5rem;
  font-weight: 400;
  color: #707b94;
}
#wrap.before .signup-wrap .signup__form .important dl dd {
  margin-top: 1.5rem;
}
#wrap.before .signup-wrap .signup__form .educate {
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 5rem;
  margin-top: 3rem;
}
#wrap.before .signup-wrap .signup__form .educate h4 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
#wrap.before .signup-wrap .signup__form .educate p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 4rem;
}
#wrap.before .signup-wrap .signup__form .educate .btn-manual {
  display: block;
  width: 100%;
  max-width: 42rem;
  height: 3.4rem;
  font-size: 1.5rem;
  background-color: #f08c6e;
  border-radius: 0.6rem;
  padding: 0.8rem 2rem 0.6rem;
  text-align: left;
}
#wrap.before .signup-wrap .signup__form .educate .btn-manual + .btn-manual {
  margin-top: 1rem;
}
#wrap.before .signup-wrap .signup__form .educate .btn-manual span {
  line-height: 1.2;
}
#wrap.before .signup-wrap .signup__form .check-area {
  margin-top: 2rem;
}
#wrap.before .signup-wrap .signup__form .btn-area {
  padding-top: 3rem;
  margin-bottom: 0;
}
#wrap.before .signup-wrap .signup__form .btn-area.hide {
  display: none;
}
#wrap.after {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #faf8f6), color-stop(50%, #fff));
  background-image: linear-gradient(to right, #faf8f6 50%, #fff 50%);
}
#wrap.after .container {
  max-width: 1620px;
  width: 100%;
  padding-left: clamp(300px, 20vw, 380px);
  margin: 0 auto;
  position: relative;
}
#wrap.after .snb {
  width: clamp(300px, 20vw, 380px);
  height: 100%;
  background-color: #faf8f6;
  padding: 3rem clamp(15px, 3vw, 60px);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
}
#wrap.after .snb .btn-menu {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 20px;
  right: 0;
  z-index: 10;
  display: none;
}
#wrap.after .snb .btn-menu span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #222;
  border-radius: 1px;
}
#wrap.after .snb .btn-menu span:nth-child(2) {
  margin: 5px 0;
}
#wrap.after .snb .logo {
  height: 2.2rem;
  padding: 0 1rem;
  margin-bottom: 3rem;
}
#wrap.after .snb .logo a {
  display: inline-block;
}
#wrap.after .snb .logo a img {
  height: 100%;
}
#wrap.after .snb .info {
  background-color: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 2rem;
}
#wrap.after .snb .info__block:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.5rem 2rem 1rem;
}
#wrap.after .snb .info__block:first-child i {
  display: block;
  width: 7rem;
  height: 7rem;
  background: url("/resources/assets/images/icon_info.jpg") 0 center/auto 100% no-repeat;
}
#wrap.after .snb .info__block:first-child.pi i {
  background-position-x: 0rem;
}
#wrap.after .snb .info__block:first-child.pharm i {
  background-position-x: -7rem;
}
#wrap.after .snb .info__block:first-child.brpv i {
  background-position-x: -14rem;
}
#wrap.after .snb .info__block:first-child p {
  padding-left: 2rem;
}
#wrap.after .snb .info__block:first-child p .name {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
}
#wrap.after .snb .info__block:first-child p .num {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  color: #999;
  margin-top: 5px;
}
#wrap.after .snb .info__block:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  border-top: 1px solid #dcdcdc;
  padding: 1.5rem 1rem;
}
#wrap.after .snb .info__block:last-child a {
  padding: 0 0.5rem;
}
#wrap.after .snb .info__block:last-child a * {
  vertical-align: middle;
}
#wrap.after .snb .info__block:last-child a span {
  font-size: 1.4rem;
  font-weight: 500;
  color: #3d3e3f;
}
#wrap.after .snb .info__block:last-child a::after {
  font-size: 1rem;
  display: inline-block;
  content: "▶";
  color: #3d3e3f;
  vertical-align: middle;
  margin-left: 0.75vw;
}
#wrap.after .snb .btn-home {
  display: block;
  width: 100%;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  background: #3d3e3f url("/resources/assets/images/icon_home.png") left calc(50% - 3rem) center/auto 1.7rem no-repeat;
  border-radius: 2rem;
  padding: 1rem 1rem 1rem 3rem;
  margin: 1rem 0;
}
#wrap.after .snb .nav {
  padding: 0 1rem;
  max-height: calc(100% - 18px - 3rem - 14.7rem - 8rem);
  overflow: auto;
}
#wrap.after .snb .nav::-webkit-scrollbar {
  width: 6px;
  height: auto;
}
#wrap.after .snb .nav::-webkit-scrollbar-thumb {
  width: 6px;
  background: rgba(85, 91, 103, 0.25);
  border-radius: 3px;
}
#wrap.after .snb .nav::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 3px;
}
#wrap.after .snb .nav li a {
  display: block;
  font-weight: 500;
}
#wrap.after .snb .nav .depth1 {
  border-top: 2px solid #3d3e3f;
  border-bottom: 2px solid #3d3e3f;
}
#wrap.after .snb .nav .depth1 > li + li {
  border-top: 1px solid #d5d5d5;
}
#wrap.after .snb .nav .depth1 > li > a {
  font-size: 1.5rem;
  padding: 2.2rem 0.5rem;
}
#wrap.after .snb .nav .depth1 > li.on > a {
  background: url("/resources/assets/images/icon_snb_on.png") right center/2.5rem no-repeat;
}
#wrap.after .snb .nav .depth1 > li.on .depth2 {
  display: block;
}
#wrap.after .snb .nav .depth2 {
  display: none;
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 1.5rem 1rem;
  margin-bottom: 1.5rem;
}
#wrap.after .snb .nav .depth2 > li + li {
  margin-top: 0.5rem;
}
#wrap.after .snb .nav .depth2 > li > a {
  font-size: 1.4rem;
  color: #585858;
  padding: 0.8rem 2rem;
}
#wrap.after .snb .nav .depth2 > li.on {
  background-color: #f08c6e;
  border-radius: 0.4rem;
}
#wrap.after .snb .nav .depth2 > li.on a {
  color: #fff;
}
#wrap.after .snb .contact {
  padding: 0 1rem;
}
#wrap.after .snb .contact p {
  min-height: 2rem;
  font-size: 14px;
  font-weight: 500;
  color: #3d3e3f;
  margin-top: 1.5rem;
}
#wrap.after .snb .contact p::before {
  display: inline-block;
  content: "";
  width: 2rem;
  height: 2rem;
  background: url("/resources/assets/images/icon_contact.png") left center/auto 100% no-repeat;
  vertical-align: middle;
  margin-right: 1rem;
}
#wrap.after .snb .contact p:first-child::before {
  background-position-x: left;
}
#wrap.after .snb .contact p:last-child::before {
  background-position-x: right;
}
#wrap.after .contents {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background-color: #fff;
  padding: 3rem clamp(15px, 3vw, 60px);
}
#wrap.after .contents__top {
  border-top: 1px solid #dcdcdc;
  padding: 4rem 0 1rem;
  margin-top: 22px;
  position: relative;
}
#wrap.after .contents__top .logo {
  background-color: #fff;
  padding-left: 1rem;
  position: absolute;
  right: 0;
  top: -1.8rem;
}
#wrap.after .contents__top .logo img {
  height: 1.8rem;
}
#wrap.after .contents__top dl {
  min-height: 12.6rem;
  word-break: keep-all;
  background: url("/resources/assets/images/main_img_top.png") right bottom/34.5rem auto no-repeat;
  padding-right: 35.5rem;
}
#wrap.after .contents__top dl dt {
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.2;
  color: #24282f;
  margin-bottom: 1rem;
}
#wrap.after .contents__top dl dd {
  font-size: 1.9rem;
  font-weight: 300;
  line-height: 1.5;
  color: #828282;
}
#wrap.after .contents__block {
  min-height: calc(100vh - 18px - 6rem - 7.3rem);
  padding-bottom: 10rem;
}
#wrap.after .contents__block .block + .block {
  margin-top: 6rem;
}
#wrap.after .contents__block .block > p {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  color: #525252;
  text-align: left;
  margin-bottom: 2rem;
}
#wrap.after .contents__block .block > p span {
  font-weight: 500;
  color: #f17650;
}
#wrap.after .contents__block .block > p.beware {
  font-weight: 500;
  color: #222;
  margin: 2rem 0 3rem;
  text-align: left;
}
#wrap.after .contents__block .block .table--view td {
  border-left: 1px solid #dcdcdc;
}
#wrap.after .contents__block .block.sec-1 {
  border-top: 1px solid #dcdcdc;
  margin-top: 4rem;
  padding-top: 4rem;
}
#wrap.after .contents__block .block.sec h3 {
  font-size: 1.8rem;
}
#wrap.after .contents__block .block.sec h3 span {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 3.2rem;
  color: #fff;
  text-transform: uppercase;
  background: #9fa4b3 url("/resources/assets/images/icon_sec_title.png") left 0.4rem center no-repeat;
  border-radius: 1.6rem;
  padding: 0 1.5rem 0 3.2rem;
  margin-right: 1rem;
}
#wrap.after .contents__block .block.dis-fx {
  gap: 4rem;
}
#wrap.after .contents__block .block.dis-fx > div {
  width: 100%;
}
#wrap.after .contents__block .block.dis-fx > div .table--list table tr > * {
  height: 5rem;
}
#wrap.after .contents__block .block.dis-fx > div.w50 {
  max-width: calc(50% - 2rem);
}
#wrap.after .contents__block .block.dis-fx > div.w50 .table table {
  min-width: 300px;
}
#wrap.after .contents__block .block.dis-fx > div .btn--default {
  min-width: 16rem;
  height: 4.6rem;
  font-size: 1.5rem;
  line-height: 4.6rem;
  color: #222;
  background-color: #fff;
  border: 1px solid #222;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
#wrap.after .contents__block .block.dis-fx > div .btn--default:hover {
  color: #fff;
  background-color: #f17650;
  border-color: #f17650;
}
#wrap.after .contents__block .block > .btn-area:last-child .btn {
  min-width: 16rem;
  height: 4.6rem;
  font-size: 1.5rem;
  line-height: 4.6rem;
  color: #222;
  background-color: #fff;
  border: 1px solid #222;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
#wrap.after .contents__block .block > .btn-area:last-child .btn span {
  line-height: 4.6rem;
}
#wrap.after .contents__block .block > .btn-area:last-child .btn:hover {
  color: #fff;
  background-color: #f17650;
  border-color: #f17650;
}
#wrap.after .contents__block .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 4rem 0 1.5rem;
  position: relative;
}
#wrap.after .contents__block .title:first-child {
  margin-top: 0;
}
#wrap.after .contents__block .title .btn-more {
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 0.5;
  color: #222;
}
#wrap.after .contents__block .viewList {
  text-align: right;
}
#wrap.after .contents__block .viewList label {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 300;
  color: #222;
  vertical-align: middle;
  cursor: default;
  margin: 0.5rem 1rem 0.5rem 0;
}
#wrap.after .contents__block .viewList select {
  width: auto;
}
#wrap.after .contents__block .table {
  border-top: 3px solid #111;
}
#wrap.after .contents__block .table--small {
  border-width: 2px;
}
#wrap.after .contents__block .tab__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
#wrap.after .contents__block .tab__btn .btn-area {
  margin-top: 0;
  gap: 0.25rem;
}
#wrap.after .contents__block .tab__btn .btn-area button {
  min-width: 16rem;
  height: 4rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  background-color: #bbb;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  padding: 0 2.5rem;
}
#wrap.after .contents__block .tab__btn .btn-area button.on {
  background-color: #111;
}
#wrap.after .contents__block .tab__btn .viewList {
  margin-bottom: 0.5rem;
}
#wrap.after .contents__block .tab__contents .scroll-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 3px solid #111;
}
#wrap.after .contents__block .tab__contents .scroll-wrap .scroll {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 20rem;
  height: 50vw;
  max-height: 50rem;
  min-height: 25rem;
  padding: 2rem 2.5rem;
}
#wrap.after .contents__block > .btn-area:last-child .btn {
  min-width: 16rem;
  height: 4.6rem;
  font-size: 1.5rem;
  line-height: 4.6rem;
  color: #222;
  background-color: #fff;
  border: 1px solid #222;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
#wrap.after .contents__block > .btn-area:last-child .btn span {
  line-height: 4.6rem;
}
#wrap.after .contents__block > .btn-area:last-child .btn:hover {
  color: #fff;
  background-color: #f17650;
  border-color: #f17650;
}
#wrap.after .contents .copy {
  font-size: 1.2rem;
  font-weight: 300;
  color: #828282;
  text-align: right;
  border-top: 1px solid #dcdcdc;
  padding-top: 2rem;
}

#popupSelect .select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  margin-top: 2rem;
}
#popupSelect .select > div {
  text-align: center;
}
#popupSelect .select > div i {
  display: block;
  width: 18rem;
  height: 18rem;
  background: #f8f8f8 url("/resources/assets/images/popup_select_human.png") left center/auto 100% no-repeat;
  border: 1px solid #e3e3e3;
  border-radius: 5rem;
}
#popupSelect .select > div h3 {
  font-size: 1.6rem;
  margin: 3rem 0 1rem;
}
#popupSelect .select > div .check-area input + label {
  margin-right: 0;
}
#popupSelect .select > div .check-area input + label::before {
  width: 3.6rem;
  height: 3.6rem;
  background: url("/resources/assets/images/icon_check.png") right center/auto 100% no-repeat;
  border: none;
}
#popupSelect .select > div .check-area input:checked + label::before {
  background-position: left center;
  -webkit-box-shadow: none;
  box-shadow: none;
}
#popupSelect .select > div:first-child i {
  background-position: left center;
}
#popupSelect .select > div:last-child i {
  background-position: right center;
}

#popupSearch .table {
  border-top: none;
}
#popupSearch .table th {
  font-size: 1.6rem;
}
#popupSearch .table td input[type=checkbox] + label span,
#popupSearch .table td input[type=radio] + label span {
  font-size: 1.6rem;
}

#popupQuest .popup__title {
  background: none;
  border: none;
}
#popupQuest .popup__title h2 {
  background: none;
}
#popupQuest .popup__contents {
  padding-top: 0;
}
#popupQuest .popup__contents .quest i {
  display: inline-block;
  width: 8rem;
  line-height: 3rem;
  font-style: normal;
  font-size: 1.5rem;
  font-weight: 500;
  color: #f17650;
  text-align: center;
  border: 2px solid #f17650;
  border-radius: 2rem;
  margin-bottom: 2rem;
}
#popupQuest .popup__contents .quest h3 {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
#popupQuest .popup__contents .quest .block {
  border-top: 2px solid #111;
}
#popupQuest .popup__contents .quest .block .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 5.4rem;
  padding: 1rem 0;
  margin: 0;
}
#popupQuest .popup__contents .quest .block .title h4 {
  font-size: 1.5rem;
  padding: 0 1rem;
}
#popupQuest .popup__contents .quest .block .title button {
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  width: 6rem;
  height: 3.4rem;
  border-radius: 0.5rem;
}
#popupQuest .popup__contents .quest .block .title button:first-child {
  background-color: #f08c6e;
}
#popupQuest .popup__contents .quest .block .title button:last-child {
  background-color: #777;
}
#popupQuest .popup__contents .quest .block .contents {
  background-color: #f9f9f9;
  border-top: 1px solid #dcdcdc;
  padding: 3rem;
}
#popupQuest .popup__contents .quest .block .contents p {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #7e7e7e;
}
#popupQuest .popup__contents .quest--confirm {
  display: none;
}
#popupQuest .popup__contents .quest--confirm .block {
  margin-top: 7.5rem;
}
#popupQuest .popup__contents .quest--confirm .block .contents {
  height: 34rem;
}
#popupQuest .popup__contents .quest--confirm .block .contents p {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 3.2rem;
  font-weight: 400;
  color: #222;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: calc(50% + 3rem);
}

#popupNotice .popup__btn {
  padding-top: 0;
}
#popupNotice .table {
  border-width: 3px;
}
#popupNotice .table th {
  height: 7rem;
  font-size: 1.8rem;
  background-color: #fff;
}
#popupNotice .table td {
  font-size: 1.6rem;
  text-align: left;
  padding: 1rem 0;
}
#popupNotice .table td * {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #525252;
  white-space: pre-wrap;
}
#popupNotice .table td > div {
  height: 25rem;
  overflow: auto;
  padding: 1rem 2rem;
}

#popupMedicine td {
  padding: 2rem;
}
#popupMedicine td input[type=radio].icon + label::before {
  width: 2.6rem;
  height: 2.6rem;
}
#popupMedicine td input[type=radio].icon + label span {
  font-size: 1.6rem;
  line-height: 2.6rem;
  font-weight: 500;
  color: #525252;
}