@charset "UTF-8";
/* reset */
@import url("https://use.fontawesome.com/d00b556be3.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/pretendard/1.3.9/static/pretendard.css");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
*::after {
  box-sizing: border-box;
}
*::before {
  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,
address {
  border: 0;
  font-size: inherit;
  font-style: normal;
  vertical-align: top;
}

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

html,
body {
  height: 100%;
}

body {
  line-height: 1;
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background-color: transparent;
  border: 0;
}
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
}

a,
button {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

ul,
ol {
  list-style: none;
}

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

/* global */
:root {
  --defaultFont: AppleSDGothicNeo-Regular, Malgun Gothic, dotum, sans-serif;
  --webFont: Pretendard, AppleSDGothicNeo-Regular, Malgun Gothic, dotum, sans-serif;
  --primaryColor: #217eff;
  --black: #000;
  --red: #d9534f;
  --orange: #f77409;
  --brown: #e78d05;
  --green: #4ae61a;
  --blue: #0123b4;
  --textColor: #000;
  --primaryColorL: #217eff;
  --primaryColor: #217eff;
  --primaryColorB: #217eff;
  --secondaryColorL: #fd6fa2;
  --secondaryColor: #fd6fa2;
  --secondaryColorB: #fd6fa2;
  --tertiaryColorL: #000;
  --tertiaryColor: #000;
  --tertiaryColorB: #000;
  --gray100: #f0f0f0;
  --gray200: #e0e0e0;
  --gray300: #dfdfdf;
  --gray400: #b7b7b7;
  --gray500: #adb5bd;
  --gray600: #646464;
  --gray700: #515151;
  --gray800: #343a40;
  --gray900: #212529;
  --t1: 28px;
  --t2: 24px;
  --t3: 1.25em;
  --t4: 1.125em;
  --tBasic: 14px;
  --t6: 13px;
  --t7: 12px;
  --t8: 11px;
  --t9: 10px;
  --spaceS: 8px;
  --spaceM: 25px;
  --spaceL: 65px;
  --spaceXL: 100px;
  --btnHeight: 44px;
  --btnRadius: 8px;
  --btnPadding: 15px;
  --shadowBasic: 2px 2px 5px rgba(0, 0, 0, 0.1);
  --shadowL: 3px 3px 10px rgba(0, 0, 0, 0.06);
  --siteWidth: 1240px;
  --scrollWidth: 9px;
}

.col_scrollbar {
  width: var(--scrollWidth) !important;
  padding: 0 !important;
  border-left: 0 !important;
}

body {
  font-family: var(--webFont);
  line-height: 1.5;
  color: var(--textColor);
  font-weight: 400;
  font-size: var(--tBasic);
  background: #fff;
}

input:not([type=checkbox], [type=radio], [type=submit]),
textarea,
select {
  height: var(--btnHeight);
  line-height: var(--btnHeight);
  background: #fff;
  text-indent: 0;
  padding: 0 var(--btnPadding);
  border-radius: var(--btnRadius);
  border: 1px solid var(--gray400);
  width: 100%;
  font-size: 14px;
}

input:not([type=checkbox], [type=radio], [type=submit], :-moz-read-only):focus {
  border-color: var(--primaryColor);
}

input:not([type=checkbox], [type=radio], [type=submit], :read-only):focus,
textarea:focus {
  border-color: var(--primaryColor);
}

input:not([type=checkbox], [type=radio], [type=submit])::-moz-placeholder, textarea::-moz-placeholder {
  color: #b6b6b6;
}

input:not([type=checkbox], [type=radio], [type=submit])::placeholder,
textarea::placeholder {
  color: #b6b6b6;
}

select {
  background: #fff url(../img/arrow01.png) no-repeat right 12px center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
}

textarea {
  height: 80px;
  padding: var(--btnPadding);
  line-height: 1.4;
}

input.line {
  border-left: 0;
  border-right: 0;
  border-top: 0;
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
}
input.half {
  width: 50%;
}
input.short {
  width: 110px;
}
input#captcha {
  width: 120px;
}

label.check {
  display: inline-flex;
  gap: 5px;
  align-items: center;
}
label.check input {
  position: absolute;
  opacity: 0;
}
label.check input + i {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  border: 1px solid var(--gray400);
  background: #fff;
}
label.check input:checked + i {
  border-color: var(--primaryColor);
  background: var(--primaryColor);
  position: relative;
}
label.check input:checked + i::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 6px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(-45deg) translate(-50%, -50%);
  transform-origin: -2px -1px;
}
label.check span {
  white-space: nowrap;
}

img {
  max-width: 100%;
}

strong,
b,
th,
dt {
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  line-height: 1;
  height: var(--btnHeight);
  border: 1px solid transparent;
  border-radius: var(--btnRadius);
  padding: 0 20px;
  font-size: var(--tBasic);
  font-weight: 500;
}
.button.primary {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
  color: #fff;
}
.button.primaryL {
  background-color: var(--primaryColorL);
  border-color: var(--primaryColorL);
  color: #fff;
}
.button.primary-line {
  border-color: var(--primaryColor);
  color: var(--primaryColor);
}
.button.secondary {
  background-color: var(--secondaryColor);
  border-color: var(--secondaryColor);
  color: #fff;
}
.button.secondary-line {
  border-color: var(--secondaryColor);
  color: var(--secondaryColor);
}
.button.tertiary {
  background-color: var(--tertiaryColor);
  border-color: var(--tertiaryColor);
  color: #fff;
}
.button.tertiaryB {
  background-color: var(--tertiaryColorB);
  border-color: var(--tertiaryColorB);
  color: #fff;
}
.button.tertiary-line {
  border-color: var(--tertiaryColor);
  color: var(--tertiaryColor);
}
.button.default {
  background-color: #fff;
  border-color: #000;
  color: #000;
}
.button.red {
  background-color: var(--red);
  border-color: var(--red);
  color: #fff;
}
.button.redL {
  background-color: var(--redL);
  border-color: var(--redL);
  color: #fff;
}
.button.red-line {
  border-color: var(--red);
  color: var(--red);
}
.button.blue {
  background-color: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.button.blue-line {
  border-color: var(--blue);
  color: var(--blue);
}
.button.blueL {
  background-color: var(--blueL);
  border-color: var(--blueL);
  color: #fff;
}
.button.gray {
  background-color: #ccc;
  border-color: #ccc;
  color: #fff;
}
.button.lg {
  font-size: 16px;
  height: 55px;
  border-radius: 8px;
  padding: 0 50px;
}
.button.sm {
  font-size: 0.85em;
  padding: 0 7px;
  height: calc(var(--btnHeight) - 12px);
  line-height: calc(var(--btnHeight) - 14px);
  border-radius: 4px;
  font-weight: 400;
}
.button.xs {
  font-size: 0.85em;
}
.button.round {
  border-radius: 6px;
}
.button.full {
  width: 100% !important;
}

.flex {
  display: flex;
}
.flex.bc {
  justify-content: space-between;
  align-items: center;
}
.flex.rc {
  justify-content: space-around;
  align-items: center;
}
.flex.bs {
  justify-content: space-between;
}
.flex.cc {
  justify-content: center;
  align-items: center;
}
.flex.c {
  justify-content: center;
}

span.space {
  display: inline-block;
  width: 10px;
}

.succession {
  margin-top: var(--spaceM);
}

.successionS {
  margin-top: var(--spaceS);
}

.successionL {
  margin-top: var(--spaceL);
}

.paragraph {
  margin-bottom: var(--spaceXL) !important;
}

.txt_black {
  color: var(--textColor);
}

.txt_red {
  color: var(--red);
}

.txt_blue {
  color: var(--primaryColor);
}

.txt_gray {
  color: #ccc;
}

.txt_primary {
  color: var(--primaryColor);
}

.txt_l {
  font-size: 1.25em;
}

.txt_s {
  font-size: 0.95em;
  letter-spacing: -0.5px;
}

.btn_area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: var(--spaceL);
}
.btn_area p {
  width: 100%;
  text-align: center;
  margin-bottom: var(--spaceS);
}

.overflow_y {
  overflow-y: scroll;
}

.overflow_x {
  overflow-x: auto;
}
.overflow_x > * {
  width: -moz-max-content;
  width: max-content;
}

table.fixed {
  table-layout: fixed;
}

th,
td {
  vertical-align: middle;
}

.td50 {
  width: 50px;
}

.td60 {
  width: 60px;
}

.td70 {
  width: 70px;
}

.td80 {
  width: 80px;
}

.td90 {
  width: 90px;
}

.td100 {
  width: 100px;
}

.td110 {
  width: 110px;
}

.td120 {
  width: 120px;
}

.td130 {
  width: 130px;
}

.td150 {
  width: 150px;
}

.td170 {
  width: 170px;
}

.td180 {
  width: 180px;
}

.td200 {
  width: 200px;
}

.td250 {
  width: 250px;
}

.td280 {
  width: 280px;
}

.td300 {
  width: 300px;
}

.table_basic th,
.table_basic td {
  border-bottom: 1px solid var(--gray300);
  height: 43px;
  padding: 7px;
  text-align: left;
}
.table_basic th {
  color: var(--primaryColor);
}

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

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

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

.pc_no {
  display: none;
}

#header,
#contents,
#footer {
  min-width: var(--siteWidth);
}

.wrap {
  width: var(--siteWidth);
  margin: 0 auto;
  position: relative;
}
.wrap.full {
  width: 100%;
}

/***** Header *****/
:root {
  --headerHeight: 125px;
}

#header {
  position: fixed;
  z-index: 90;
  width: 100%;
  left: 0;
  top: 0;
  background: rgba(18, 18, 18, 0.8);
  color: #fff;
  transition: all 0.3s 0.3s;
}
#header .header_top {
  background: rgb(18, 18, 18);
  color: #858585;
}
#header .header_top .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 75px;
}
#header .header_top .top_search {
  display: flex;
  align-items: center;
  position: relative;
  width: 440px;
  gap: 5px;
}
#header .header_top .top_search input {
  width: 100%;
  height: 35px;
  line-height: 33px;
  border: 1px solid #3a3a3a;
  border-radius: 17.5px;
  color: #fff;
  background-color: transparent;
}
#header .header_top .top_search input::-moz-placeholder {
  color: #858585;
}
#header .header_top .top_search input::placeholder {
  color: #858585;
}
#header .header_top .top_search button {
  width: 20px;
  height: 20px;
  font-size: 0;
  background: url(../img/icon_search.svg) no-repeat center/contain;
  position: absolute;
  right: 15px;
}
#header .header_top .user {
  position: absolute;
  right: 0;
  display: flex;
  gap: 15px;
}
#header .header_top .user a {
  position: relative;
  padding-left: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}
#header .header_top .user a:not(:first-of-type)::before {
  content: "";
  width: 1px;
  height: 12px;
  background-color: #858585;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
#header .header_top .user a:first-of-type::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/icon_user.svg) no-repeat center/contain;
}
#header .header_nav .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  gap: 35px;
}
#header .header_nav .gnb {
  flex-grow: 1;
}
#header .header_nav .gnb .depth1 {
  display: flex;
  justify-content: flex-end;
  gap: 35px;
  font-weight: 500;
}
#header .header_nav .gnb .depth1 > li {
  position: relative;
}
#header .header_nav .gnb .depth1 > li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
}
#header .header_nav .gnb .depth1 > li.on > a {
  color: var(--primaryColor);
}
#header .header_nav .gnb .depth1 ul {
  position: absolute;
  z-index: 10;
  opacity: 0;
  transition: 0.3s all;
  width: 85px;
  max-height: 0;
  overflow: hidden;
  font-size: 12px;
  font-weight: 400;
  left: 50%;
  transform: translateX(-50%);
}
#header .header_nav .gnb .depth1 ul a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 28px;
  background: #151515;
  margin-top: 4px;
  color: #8a8a8a;
  transition: all 0.3s;
}
#header .header_nav .gnb .depth1 ul a:hover {
  color: #fff;
}
#header .header_nav .gnb .depth1 ul li.on a {
  background: var(--primaryColor);
  color: #fff;
}
#header .header_nav .gnb .depth1 > li:hover ul {
  max-height: 300px;
  overflow: visible;
  opacity: 1;
}
#header .header_nav .btn_direct {
  display: flex;
  align-items: center;
  height: 30px;
  background: var(--primaryColor);
  padding: 0 15px;
  border-radius: 15px;
  font-weight: 500;
  line-height: 0;
}
#header.contract {
  top: -75px;
  background: rgb(0, 0, 0);
}

#footer {
  background: #121212;
  color: #a4a4a4;
  padding: 80px 0;
  font-size: 13px;
}
#footer .wrap {
  display: flex;
  justify-content: space-between;
}
#footer h3 {
  font-size: 1.13em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}
#footer h3:not(:first-of-type) {
  margin-top: 30px;
}
#footer h4 {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
}
#footer h4 .btn_ir {
  display: flex;
  align-items: center;
  height: 24px;
  padding: 0 15px;
  border-radius: 12px;
  color: #000;
  background: #fff;
}
#footer h4 .btn_privacy {
  color: var(--primaryColor);
  font-weight: normal;
}
#footer li {
  margin-bottom: 5px;
}
#footer .sns {
  display: flex;
  gap: 15px;
}
#footer section:nth-of-type(2) h3:last-of-type {
  margin-top: 50px;
}

.footer_brand {
  background: #f1f1f1;
}
.footer_brand ul {
  display: flex;
  padding: 9px 0;
  flex-wrap: wrap;
  gap: 9px;
}
.footer_brand ul li {
  flex: 1 1 16%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  aspect-ratio: 232/116;
}

.swiper-pagination {
  bottom: 25px !important;
}

.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background: rgba(255, 255, 255, 0.2);
  opacity: 1;
  margin: 0 7px !important;
}

.swiper-pagination-bullet-active {
  background: var(--primaryColor);
}

#mainVisual .swiper-slide {
  background-color: #151515;
  background-position: center;
  background-size: cover;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  font-size: 16px;
  text-align: center;
}
#mainVisual .swiper-slide h2 {
  font-size: 2em;
  margin-bottom: 0.45em;
  margin-top: 100px;
}
#mainVisual .swiper-slide .button {
  height: 40px;
  line-height: 38px;
  border-radius: 20px;
  width: 150px;
  font-size: 1em;
  margin-top: 1.9em;
}
#mainVisual .slide01 {
  background-image: url(../img/main_visual01.png);
}
#mainVisual .slide02 {
  background-image: url(../img/main_visual02.png);
}
#mainVisual .slide03 {
  background-image: url(../img/main_visual03.png);
}

.main_ranking {
  padding: var(--spaceL) 0;
}
.main_ranking .wrap {
  width: 700px;
}
.main_ranking h2 {
  font-size: 24px;
  margin-bottom: 0.5em;
  font-weight: 800;
}
.main_ranking .flex {
  gap: 20px;
  justify-content: space-between;
}
.main_ranking .flex ul {
  flex: 1;
  border-top: 2px solid #4a4a4a;
}
.main_ranking .flex ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 42px;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  border-bottom: 2px solid #e0e0e0;
}
.main_ranking .flex ul li i.rank {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  color: #fff;
  background-color: #0c0b0e;
}
.main_ranking .flex ul li span {
  flex: 1;
}
.main_ranking .flex ul li i.fluct {
  font-size: 0;
  width: 40px;
  height: 40px;
  background: url(../img/icon_keep.svg) no-repeat right 10px center;
}
.main_ranking .flex ul li i.fluct.rise {
  background-image: url(../img/icon_rise.svg);
  background-position: right 5px center;
}
.main_ranking .flex ul li i.fluct.fall {
  background-image: url(../img/icon_fall.svg);
  background-position: right 5px center;
}
.main_ranking .flex ul li i.fluct.new {
  background-image: url(../img/icon_new.svg);
  background-position: right center;
}
.main_ranking .flex ul:first-of-type li:nth-of-type(1) i.rank {
  background-color: #ff3300;
}
.main_ranking .flex ul:first-of-type li:nth-of-type(2) i.rank {
  background-color: #ff6600;
}
.main_ranking .flex ul:first-of-type li:nth-of-type(3) i.rank {
  background-color: #ff9900;
}

.main_statistics {
  padding: var(--spaceL) 0 var(--spaceM) 0;
}
.main_statistics .wrap {
  width: 950px;
}
.main_statistics h2 {
  font-size: 24px;
  margin-bottom: 1.5em;
  font-weight: 800;
}
.main_statistics .flex {
  justify-content: space-between;
}
.main_statistics .flex .graph {
  align-self: flex-end;
}
.main_statistics .flex dl {
  flex: 0 0 560px;
}
.main_statistics .flex dt {
  font-size: 20px;
  margin-bottom: 0.4em;
  font-weight: 600;
}
.main_statistics .flex dd:nth-of-type(1) {
  font-size: 23px;
  color: #747474;
  font-weight: 600;
  margin-bottom: 0.8em;
  line-height: 1;
}
.main_statistics .flex dd:nth-of-type(1) strong {
  color: #e26f2e;
  font-size: 36px;
  font-weight: 700;
  vertical-align: -2px;
}
.main_statistics .main_ranking {
  padding: 0;
}

.main_con_img {
  font-size: 16px;
  background: #f1f1f1;
  padding-bottom: var(--spaceXL);
}
.main_con_img header {
  background: url(../img/main_con01_bg.png) no-repeat center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 350px;
  flex-direction: column;
  color: #fff;
}
.main_con_img header h2 {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  line-height: 1.25;
}
.main_con_img header ul {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  width: 500px;
}
.main_con_img header ul li {
  display: flex;
  align-items: center;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.3);
  padding: 0 30px;
  border-radius: 20px;
}
.main_con_img .wrap {
  margin-top: -45px;
  text-align: center;
}
.main_con_img .wrap ul {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.main_con_img .wrap ul li {
  width: 20%;
  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.main_con_img .wrap .button {
  font-size: 16px;
  margin-top: 45px;
  border-radius: 22px;
  min-width: 150px;
}
.main_con_img.nth2 header {
  background-image: url(../img/main_con02_bg.png);
}

.main_con {
  padding: var(--spaceXL) 0 0 0;
  font-size: 16px;
}
.main_con header {
  text-align: center;
  margin-bottom: 25px;
}
.main_con header h2 {
  font-size: 24px;
  font-weight: 800;
}
.main_con header p {
  margin-top: 10px;
}
.main_con.partner {
  padding: 0 0 10px;
  background-color: #f1f1f1;
}
.main_con.partner ul {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.main_con.partner ul li {
  flex: 1 1 15%;
}
.main_con.no_padding {
  padding-top: 0;
}

iframe {
  width: 100%;
  height: 500px;
}

.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  width: 100%;
}

/***** sub *****/
#subVisual {
  height: 400px;
  background-color: #242424;
  background-position: center bottom;
  background-size: cover;
}
#subVisual.sub01 {
  background-image: url(../img/sub01_top.png);
}
#subVisual.sub02 {
  background-image: url(../img/sub02_top.png);
}
#subVisual.sub03 {
  background-image: url(../img/sub03_top.png);
}
#subVisual.sub04 {
  background-image: url(../img/sub04_top.png);
}
#subVisual.sub05 {
  background-image: url(../img/sub05_top.png);
}
#subVisual.sub06 {
  background-image: url(../img/sub06_top.png);
}
#subVisual.sub08 {
  background-image: url(../img/sub03_top02.png);
}
#subVisual.sub09 {
  background-image: url(../img/sub09_top.png);
}

#contents {
  padding: 35px 0 var(--spaceXL) 0;
  font-size: 16px;
  overflow-x: hidden;
}
#contents .wrap {
  width: 710px;
}

.location {
  display: flex;
  gap: 5px;
  align-items: center;
  line-height: 1;
  margin-bottom: 40px;
}
.location .btn_home {
  font-size: 0;
  width: 20px;
  height: 20px;
  background: url(../img/icon_home.svg) no-repeat center/contain;
}
.location .space {
  width: 18px;
  height: 18px;
  background: url(../img/icon_arrow.svg) no-repeat center/contain;
  margin: 0;
}
.location .current {
  font-weight: 700;
  margin-top: 3px;
}

.snb {
  margin-bottom: 50px;
}
.snb ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #4a4a4a;
}
.snb ul li {
  flex: 1;
}
.snb ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 46px;
  color: #ccc;
  border-bottom: 8px solid transparent;
  font-size: 20px;
  font-weight: 600;
}
.snb ul li.on a {
  border-color: var(--primaryColor);
  color: var(--primaryColor);
  font-weight: 700;
}

.h2_header {
  margin-bottom: 35px;
}
.h2_header h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 25px;
}
.h2_header p strong {
  font-weight: 700;
}
.h2_header small {
  display: block;
  margin-bottom: 10px;
}

.h3_header {
  text-align: center;
  line-height: 1.3;
  margin-bottom: 25px;
}
.h3_header h3 {
  font-size: 20px;
}
.h3_header p {
  margin-top: 10px;
}

h3.title01 {
  font-size: 18px;
  line-height: 1;
  margin-bottom: 40px;
  font-weight: 700;
}

ul.list_star li {
  padding-left: 13px;
  position: relative;
}
ul.list_star li::before {
  content: "*";
  display: block;
  position: absolute;
  left: 0;
  top: 2px;
}
ul.list_star li:not(:first-of-type) {
  margin-top: 25px;
}

ol.num {
  list-style: decimal;
  padding-left: 20px;
}
ol.num li {
  margin-top: 9px;
}
ol.num li:first-of-type {
  margin-top: 0;
}

hr.hr01 {
  border: 0;
  margin: var(--spaceL) 0;
  height: 1px;
  background-color: var(--gray400);
}

fieldset {
  margin: 0 auto;
}
fieldset .label:not(:first-of-type) {
  margin-top: 25px;
}
fieldset .address input {
  margin-top: 8px;
}
fieldset .address .rows input {
  margin-top: 0;
  flex: 0 0 100px;
}
fieldset .address .rows button {
  flex: 0 0 120px;
  padding: 0;
}
fieldset .button.lg {
  width: 300px;
  margin-top: 45px;
}
fieldset .button.btn_withraw {
  margin-top: -10px;
}

.rows {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  gap: 7px;
}
.rows .label {
  font-weight: 700;
  padding: 0 0 0 35px;
  flex: 0 0 115px;
}
.rows .label:first-of-type {
  padding-left: 0;
  flex: 0 0 80px;
}
.rows .label.lg {
  flex: 0 0 175px;
}
.rows .label.lg:first-of-type {
  flex: 0 0 155px;
}
.rows .button {
  flex: 0 0 156px;
}
.rows .button.btn_pwd_modify {
  flex: 0 0 auto;
}
.rows .refer {
  flex-grow: 1;
  text-align: left;
  color: var(--red);
  font-size: 12px;
  margin-left: 5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 15px;
}
.rows .address {
  width: 100%;
}
.rows .address .rows {
  margin-bottom: 8px;
}
.rows .address .rows .short {
  width: 132px;
}
.rows.top {
  align-items: flex-start;
}
.rows.top .label {
  margin-top: 8px;
}
.rows.no_margin {
  margin-bottom: 0;
}

.full {
  margin: 25px 0;
}
.full .rows {
  margin-bottom: 5px;
}
.full .rows .label {
  flex: 0 0 auto;
}

.upload_area {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.upload_area .item,
.upload_area .btn_add,
.upload_area .btn_del {
  width: 100%;
}
.upload_area .btn_upload,
.upload_area .btn_add,
.upload_area .btn_del {
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  color: var(--gray400);
  font-size: 14px;
  border: 1px solid var(--gray400);
  border-radius: var(--btnRadius);
}
.upload_area .item {
  position: relative;
  border-radius: var(--btnRadius);
  overflow: hidden;
}
.upload_area .item .preview {
  display: none;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  aspect-ratio: 1/1;
  cursor: pointer;
  background: #fff;
}
.upload_area .item .preview img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
}
.upload_area .item .preview .btn_delete {
  position: absolute;
  top: 3px;
  right: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  color: #fff;
  background: #000;
  font-size: 14px;
  border-radius: 3px;
}
.upload_area .icon_camera {
  width: 50px;
}

.multiple_upload_area .btn_upload {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--gray400);
  border: 1px solid var(--gray400);
  border-radius: var(--btnRadius);
  width: 84px;
  height: 84px;
  font-size: 0;
  background: url(../img/icon_plus.svg) no-repeat center/20px;
}
.multiple_upload_area .preview-container {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.multiple_upload_area .preview {
  position: relative;
  border-radius: var(--btnRadius);
  overflow: hidden;
  width: 84px;
  aspect-ratio: 1/1;
}
.multiple_upload_area .preview img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
}
.multiple_upload_area .preview .btn_delete {
  position: absolute;
  top: 3px;
  right: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  color: #fff;
  background: #000;
  font-size: 14px;
  border-radius: 3px;
}

.search_list {
  width: 100%;
  padding: 0 var(--btnPadding);
  border: 1px solid var(--gray400);
  background: url(../img/arrow01.png) no-repeat right 12px center;
  border-radius: var(--btnRadius);
}
.search_list input {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: default;
}

.btn_search {
  display: block;
  width: var(--btnHeight);
  height: var(--btnHeight);
  font-size: 0;
  text-indent: -9000px;
  background: url(../img/icon_search.png) no-repeat center;
}

.require {
  color: #d9534f;
}
.require::before {
  content: "✻";
  font-weight: 600;
  display: inline-block;
  margin-right: 2px;
}

.filebox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}
.filebox .upload_hidden {
  display: none;
}
.filebox .button {
  flex-shrink: 0;
}
.filebox .upload_name {
  border: 0;
  color: #747474;
}

.ul01 li {
  background: url(../img/icon_check.png) no-repeat 0 2px;
  padding-left: 18px;
  line-height: 1.3;
}
.ul01 li:not(:first-of-type) {
  margin-top: 0.5em;
}

.accordion {
  line-height: 1.2;
  border-bottom: 2px solid #4a4a4a;
}
.accordion dt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  gap: 15px;
  min-height: 50px;
  padding: 8px 25px 8px 13px;
  border-top: 2px solid #4a4a4a;
}
.accordion dt h3 {
  font-size: 18px;
  flex: 1;
}
.accordion dt .subject {
  font-size: 16px;
  flex: 1;
  font-weight: 700;
}
.accordion dt i.item {
  flex: 0 0 33px;
  height: 33px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.accordion dt i.item img {
  max-width: 33px;
  max-height: 33px;
}
.accordion dt small {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 400;
  color: #959595;
}
.accordion dt small strong {
  font-weight: 500;
  margin-left: 15px;
}
.accordion dt small.name {
  min-width: 35px;
  font-weight: 600;
  color: #4a4a4a;
}
.accordion dt .btn_toggle {
  font-size: 0;
  width: 16px;
  height: 16px;
  background: url(../img/icon_arrow_b.svg) no-repeat center;
}
.accordion dt.on .btn_toggle {
  transform: rotate(180deg);
}
.accordion dd {
  display: none;
  font-size: 14px;
}
.accordion dd .depth1 > li {
  border-top: 2px solid #e0e0e0;
  padding: 20px;
}
.accordion dd strong {
  font-weight: 700;
}
.accordion dd .align_right {
  justify-content: right !important;
  line-height: 1.5;
}
.accordion dd .con {
  border-top: 2px solid #e0e0e0;
  padding: 25px;
  color: #4a4a4a;
  line-height: 1.7;
}
.accordion dd .con .img_area {
  margin: 25px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.accordion dd .con .img_area div {
  aspect-ratio: 1;
  width: 110px;
}
.accordion dd .con .img_area div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
}
.accordion dd .con .comment_area {
  border-top: 2px solid #e0e0e0;
  margin-top: 25px;
  padding-top: 25px;
}
.accordion dd .con .comment_area h3 {
  font-size: 15px;
  font-weight: 700;
  color: #4a4a4a;
  margin-bottom: 5px;
}
.accordion dd .con .btn_opt {
  margin-top: 25px;
  text-align: right;
}
.accordion dd .con .btn_opt .button {
  height: 30px;
  padding: 0 10px;
}

.confirm {
  width: 350px;
  margin: 0 auto;
}
.confirm .rows {
  margin-bottom: 0;
}
.confirm .rows .button {
  flex: 0 0 auto;
}
.confirm .result {
  padding: 5px;
  font-weight: 600;
  font-size: 14px;
  color: var(--red);
}

.list_header {
  margin: 35px 0;
}
.list_header p {
  text-align: center;
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 25px;
}
.list_header .search {
  display: flex;
  align-items: center;
  gap: 12px;
}
.list_header .search select {
  flex: 0 0 170px;
}
.list_header .search input:not([type=radio], [type=checkbox]) {
  width: 100%;
  flex: 1;
}
.list_header .search button {
  flex: 0 0 60px;
  padding: 0;
}

.list_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}
.list_footer .page_num {
  flex-grow: 1;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 700;
}
.list_footer .page_num span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  line-height: 1;
  padding: 0 5px;
  color: #ccc;
}
.list_footer .page_num span i {
  font-size: 24px;
}
.list_footer .page_num span.on {
  color: var(--primaryColor);
}

.table_h01 table {
  border-top: 2px solid #4a4a4a;
}
.table_h01 th,
.table_h01 td {
  font-size: var(--tBasic);
  border-bottom: 1px solid var(--gray300);
  height: 40px;
  padding: 7px 10px;
  text-align: center;
}
.table_h01 th {
  font-weight: 700;
  border-color: #4a4a4a;
  text-transform: uppercase;
}

.table_v01 table {
  table-layout: fixed;
}
.table_v01 th,
.table_v01 td {
  border-bottom: 1px solid var(--gray300);
  height: 43px;
  padding: 7px;
  text-align: left;
}
.table_v01 th {
  color: var(--primaryColor);
}
.table_v01.detail th {
  width: 12%;
}
.table_v01.detail label.check {
  margin-right: 30px;
}

td .button.sm {
  height: 30px;
  font-size: 12px;
  font-weight: 500;
}
td strong {
  font-weight: 700;
}

p.label {
  margin-bottom: 5px;
  font-weight: 700;
}

.agree_area {
  font-size: 0.98em;
}
.agree_area h4 {
  font-weight: 500;
}
.agree_area .flex {
  margin-top: 10px;
  margin-left: 5px;
  font-weight: 500;
}
.agree_area .flex a {
  font-size: 13px;
  color: var(--gray600);
  font-weight: 400;
}
.agree_area .indent {
  margin-left: 20px !important;
}
.agree_area span.space {
  width: 30px;
}

.box01 {
  background-color: #f4f4f4;
  border: 1px solid #e0e0e0;
  padding: 15px;
  font-size: 14px;
}
.box01 .rows {
  margin-bottom: 5px;
}
.box01 .rows:last-of-type {
  margin-bottom: 0;
}

#singlePage {
  padding-top: var(--headerHeight);
  padding-bottom: var(--spaceXL);
  min-height: calc(100% - 416px);
  font-size: 16px;
}
#singlePage .wrap {
  padding: var(--spaceL) 0 0 0;
}
#singlePage.dark {
  background: #242424;
  color: #fff;
}

.search_result strong {
  font-weight: 700;
}
.search_result header {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}
.search_result .box {
  width: 700px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  gap: 40px;
  color: var(--textColor);
}
.search_result .box dl {
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
}
.search_result .box dl dt {
  flex: 0 0 75px;
  font-weight: 700;
  margin-bottom: 10px;
}
.search_result .box dl dd {
  flex: 1 0 calc(100% - 75px);
  margin-bottom: 10px;
}
.search_result .box .img {
  flex: 0 0 330px;
  position: relative;
  text-align: center;
}
.search_result .box .img img {
  max-height: 230px;
}
.search_result .box .img i {
  display: block;
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 100px;
  height: 100px;
  font-size: 0;
  background: url(../img/symbol_w.png) no-repeat center/contain;
}
.search_result section {
  margin-top: 20px;
}
.search_result .genuine strong {
  color: var(--primaryColor);
}
.search_result .imitate strong {
  color: var(--red);
}
.search_result .ongoing strong {
  color: #bfbfbf;
}
.search_result .empty {
  margin-top: 60px;
}
.search_result .empty p {
  text-align: center;
  color: #989898;
  line-height: 1.8;
}

#login {
  --width: 300px;
  --btnHeight: 50px;
  --btnRadius: 6px;
  background: url(../img/login_bg.png) no-repeat center top/cover;
  min-height: 100%;
  padding-top: 200px;
}
#login .login_header {
  text-align: center;
  margin-bottom: 50px;
}
#login .login_header .logo img {
  width: 138px;
}
#login nav {
  width: var(--width);
  margin: 30px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#login nav a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 45px;
  color: #8e8e8e;
  font-weight: 500;
  position: relative;
}
#login nav a::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 1px;
  background: var(--gray400);
  top: auto;
  bottom: 0;
}
#login nav a.on {
  color: var(--primaryColor);
}
#login nav a.on::after {
  height: 4px;
  background: var(--primaryColor);
}
#login fieldset {
  width: var(--width);
  margin: 0 auto;
}
#login fieldset h3 {
  color: #fff;
  text-align: center;
  font-size: 16px;
  margin-bottom: 17px;
  font-weight: 600;
}
#login fieldset input:not([type=checkbox], [type=radio]),
#login fieldset button {
  width: 100%;
  height: var(--btnHeight);
  border-radius: var(--btnRadius);
  margin-bottom: 11px;
  padding: 0 15px;
  border-color: transparent;
}
#login fieldset button {
  margin-bottom: 15px;
}
#login fieldset .opt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #b2b2b2;
  margin-bottom: 35px;
}
#login fieldset .opt div {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 15px;
}
#login fieldset .opt div a {
  display: flex;
  align-items: center;
}
#login fieldset .sns .button {
  margin-bottom: 11px;
  width: 100%;
  height: var(--btnHeight);
  border-radius: var(--btnRadius);
  background-color: #fff;
  font-weight: 700;
  font-size: 16px;
}
#login fieldset .sns .button.kakao {
  background-color: #f7eb51;
}
#login fieldset .sns .button.naver {
  background-color: #63bb3f;
  color: #fff;
  font-weight: 600;
}
#login fieldset .sns .btn_sign {
  color: #fff;
  display: block;
  text-align: center;
  margin-top: 25px;
}

.signup fieldset {
  width: 360px;
}
.signup .box01 .link01 {
  text-decoration: underline;
  font-size: 13px;
  margin-left: 10px;
}

#member > h3 {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  margin: 20px 0 40px 0;
}
#member fieldset {
  background: #f8f8f8;
  width: 800px;
  margin: 0 auto;
  padding: 70px 150px;
  font-size: 1.125em;
}
#member fieldset > h4 {
  margin-bottom: 22px;
  line-height: 1;
  font-weight: 600;
}
#member fieldset > h4:not(:first-of-type) {
  margin-top: 42px;
}
#member fieldset .txt_s {
  font-size: 8px;
  letter-spacing: 1px;
}
#member fieldset .button {
  border-radius: 0;
}
#member fieldset .button.sm {
  font-size: 14px;
  flex: 0 0 130px;
}
#member fieldset .rows {
  background: #fff;
  border: 1px solid #d4d4d4;
  justify-content: space-between;
  gap: 0;
  height: 60px;
  margin-top: -1px;
  margin-bottom: 0;
  padding: 0 20px;
  font-weight: 500;
}
#member fieldset .rows label {
  flex: 0 0 120px;
  color: #676767;
}
#member fieldset .rows span {
  flex-grow: 1;
}
#member fieldset .rows input {
  flex-grow: 1;
}
#member fieldset .rows input:-moz-read-only {
  border: 0;
  padding: 0;
}
#member fieldset .rows input:read-only {
  border: 0;
  padding: 0;
}
#member fieldset .agree_area {
  background: #fff;
  border: 1px solid #d4d4d4;
  padding: 22px;
}
#member .btn_area {
  margin-top: 45px;
}
#member .btn_area .button.lg {
  font-size: 18px;
  height: 60px;
  width: 100%;
}
#member .btn_area .button.lg.btn_withraw {
  width: 250px;
}

#application .search_list {
  position: relative;
}
#application .page_info ol.num strong {
  font-weight: 600;
}
#application .page_info .btn_area .button.lg {
  padding: 0 20px;
}
#application .sub_section:not(:first-of-type) {
  border-top: 1px dashed var(--gray500);
  padding-top: var(--spaceL);
  margin-top: var(--spaceL);
}
#application .button.lg {
  width: 300px;
}
#application .add_check {
  text-align: right;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 14px;
}

.call_center {
  margin-top: 65px;
  text-align: center;
  font-size: 14px;
  color: #4a4a4a;
}
.call_center h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 50px 0 15px 0;
}
.call_center h3 small {
  font-weight: 400;
  font-size: 14px;
}

#partner input.short {
  width: 75px;
}
#partner .rows .label:nth-of-type(2) {
  flex: 0 0 130px;
}
#partner .rows .button {
  flex: 0 0 auto;
}
#partner .button.lg {
  width: 300px;
}

.approval_view {
  font-size: 20px;
}
.approval_view p {
  margin: 20px;
  text-align: center;
}
.approval_view p strong {
  font-size: 1.2em;
  vertical-align: 0;
}
.approval_view dl {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  width: 800px;
  margin: 0 auto;
}
.approval_view dl dt {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 40px;
  background: var(--primaryColor);
  color: #fff;
  font-weight: 400;
  border-radius: 20px;
}
.approval_view dl dd {
  width: calc(50% - 140px);
  padding-left: 15px;
  font-weight: 600;
}
.approval_view .img_area {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 60px 0;
  gap: 90px;
}
.approval_view .img_area .main_img {
  width: 320px;
  height: 320px;
}
.approval_view .img_area .main_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
}

.privacy textarea {
  height: 400px;
  line-height: 1.6;
}

.board_gallery select {
  width: auto;
  min-width: 120px;
  margin-bottom: 22px;
  height: 34px;
  line-height: 32px;
  font-weight: 500;
}
.board_gallery ul {
  margin-left: -7px;
  display: flex;
  gap: 35px 0;
  flex-wrap: wrap;
}
.board_gallery ul li {
  width: calc(33.3333333333% - 7px);
  margin-left: 7px;
  position: relative;
}
.board_gallery .href {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.board_gallery .img {
  position: relative;
  aspect-ratio: 230/166;
  background: #d9d9d9;
}
.board_gallery .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
}
.board_gallery .img i.symbol {
  position: absolute;
  z-index: 2;
  display: block;
  width: 70px;
  height: 70px;
  bottom: 10px;
  right: 10px;
  background: url(../img/symbol_w.png) no-repeat center/contain;
  font-size: 0;
}
.board_gallery .con {
  margin-top: 12px;
}
.board_gallery small {
  font-size: 12px;
  line-height: 1;
  margin-bottom: 10px;
  color: #959595;
  display: block;
}
.board_gallery .subject {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.board_gallery .result {
  margin-top: 8px;
  font-size: 14px;
  color: #959595;
}
.board_gallery.store ul {
  gap: 7px 0;
}
.board_gallery.store .img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 230/143;
}
.board_gallery.store .area {
  position: absolute;
  left: 10px;
  top: 10px;
  display: flex;
  align-items: center;
  height: 24px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  padding: 0 10px;
  z-index: 2;
  background: #fff;
  border: 1px solid #ccc;
}

.board_gallery_view header {
  position: relative;
  padding-bottom: 25px;
  border-bottom: 2px solid #e0e0e0;
}
.board_gallery_view header .btn_prev {
  width: 18px;
  height: 18px;
  font-size: 0;
  background: url(../img/icon_arrow_b.svg) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  transform: rotate(90deg);
}
.board_gallery_view header small {
  display: block;
  text-align: center;
  margin-bottom: 20px;
  font-size: 14px;
  color: #aeaeae;
  line-height: 1;
}
.board_gallery_view header .subject {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
}
.board_gallery_view .con {
  padding: var(--spaceL) 0;
}
.board_gallery_view .store {
  text-align: center;
}
.board_gallery_view .store h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
.board_gallery_view .store p {
  line-height: 1.75;
}
.board_gallery_view .store .img {
  margin: 40px 0;
}
.board_gallery_view footer {
  border-top: 2px solid #e0e0e0;
  padding-top: 40px;
  text-align: center;
}
.board_gallery_view footer .button.lg {
  width: 300px;
}

.sub_con {
  line-height: 1.75;
  word-break: keep-all;
}
.sub_con p:not(:first-of-type) {
  margin-top: var(--spaceM);
}
.sub_con .full_layer {
  margin: 0 -605px;
}
.sub_con.no_margin {
  margin-top: -52px;
}
.sub_con .button.lg {
  width: 300px;
}

.sub01_01 .flex {
  gap: 70px;
}
.sub01_01 .flex .img {
  flex: 0 0 200px;
}
.sub01_01 dl {
  background: #121212;
  color: #fff;
  padding: 25px 30px 25px 28px;
}
.sub01_01 dl dt {
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 3px;
}
.sub01_01 dl dt::before {
  content: "";
  width: 25px;
  height: 25px;
  background: #fff;
  -webkit-mask-image: url(../img/favicon.png);
          mask-image: url(../img/favicon.png);
  -webkit-mask-size: 19px;
          mask-size: 19px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.sub01_01 dl dd {
  padding-left: 30px;
}
.sub01_01 dl:not(:first-of-type) {
  margin-top: 18px;
}
.sub01_01 .full_layer {
  margin-top: var(--spaceXL);
}
.sub01_01 .sec01 {
  padding: var(--spaceXL) 0;
  background: url(../img/sub01_01_bg01.png) no-repeat center/cover;
  color: #fff;
}
.sub01_01 .sec01 .ci_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  padding: 0 40px;
}
.sub01_01 .sec01 .ci_area figure {
  text-align: center;
  margin: 30px 0 60px 0;
  flex-shrink: 0;
}
.sub01_01 .sec01 .ci_area figcaption {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 25px;
}
.sub01_01 .sec01 .ci_area img {
  height: 200px;
  width: auto;
}
.sub01_01 .sec01 .ci_area i {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: url(../img/icon_direction.svg) no-repeat center/contain;
}
.sub01_01 .sec01 .txt01 {
  color: #ccc;
}
.sub01_01 .sec02 {
  margin-top: var(--spaceL);
  margin-bottom: calc(var(--spaceXL) * -1);
}

.sub04_01 .flex01 {
  gap: 10px;
  justify-content: space-between;
}
.sub04_01 .flex01 p {
  flex: 1;
  background: #000;
  padding: 22px 25px;
  color: #fff;
  margin: 0;
  font-weight: 300;
}
.sub04_01 .flex02 {
  justify-content: space-between;
}
.sub04_01 .flex02 img {
  width: 340px;
}
.sub04_01 .img01 {
  text-align: center;
}
.sub04_01 .img01 img {
  width: 377px;
}

.sub04_02 .flex01 {
  justify-content: space-between;
}
.sub04_02 .flex01 img {
  width: 344px;
}

.sub04_03 .search_result header {
  margin-bottom: 0;
}
.sub04_03 .search_result .box {
  padding-top: 40px;
  padding-bottom: 0;
}

.sub05_01 .con01 li {
  background: #000;
  padding: 15px;
  text-align: center;
  position: relative;
  font-size: 14px;
  font-weight: 300;
  color: #fff;
}
.sub05_01 .con01 li i {
  position: absolute;
  font-size: 55px;
  font-weight: 700;
  line-height: 1;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
}
.sub05_01 .con01 li h3 {
  font-size: 20px;
}
.sub05_01 .con01 li p {
  color: #ddd;
}
.sub05_01 .con01 li:not(:last-of-type) {
  margin-bottom: 35px;
}
.sub05_01 .con01 li:not(:last-of-type)::after {
  content: "";
  width: 25px;
  height: 25px;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -30px;
  background: url(../img/icon_triangle.png) no-repeat center/contain;
}
.sub05_01 .con02 {
  text-align: center;
}
.sub05_01 .con02 dt {
  border-top: 2px solid #4a4a4a;
  border-bottom: 2px solid #4a4a4a;
  font-size: 20px;
  font-weight: 700;
}
.sub05_01 .con02 dd {
  margin-bottom: 18px;
}
.sub05_01 .con02 dd li {
  border-top: 2px solid #e0e0e0;
  color: #808080;
  padding: 5px 0;
}
.sub05_01 .con02 dd li:first-of-type {
  border: 0;
}

.procedure .flex01 {
  justify-content: center;
  gap: 40px;
  text-align: center;
}
.procedure .flex01 ul {
  display: flex;
  gap: 40px;
}
.procedure .flex01 ul li {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  font-weight: 700;
}
.procedure .flex01 ul li i {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 7px;
}
.procedure .flex01 ul li strong {
  font-size: 24px;
  font-weight: 700;
}
.procedure .flex01 hr {
  width: 164px;
  height: 20px;
  border: 2px solid #ccc;
  border-top: 0;
  margin: 12px auto 10px auto;
}
.procedure .flex01 p {
  font-size: 14px;
  color: #4a4a4a;
  font-weight: 700;
}
.procedure h3.title01 {
  margin-top: var(--spaceL);
  margin-bottom: 25px;
  height: 250px;
  background-position: center;
  background-size: cover;
  background-image: url(../img/procedure_bg01.png);
  color: #fff;
  padding: 30px 25px;
  line-height: 1.125;
  font-size: 32px;
  display: flex;
  gap: 10px;
  font-weight: 600;
}
.procedure h3.title01 i {
  font-size: 90px;
  font-weight: 700;
  line-height: 1;
  margin-top: -10px;
}
.procedure h3.title01:nth-of-type(2) {
  background-image: url(../img/procedure_bg02.png);
}
.procedure h3.title01:nth-of-type(3) {
  background-image: url(../img/procedure_bg03.png);
}
.procedure h3.title01:nth-of-type(4) {
  background-image: url(../img/procedure_bg04.png);
}
.procedure .flex02 {
  gap: 40px;
}
.procedure .flex02 dl {
  flex: 1;
  margin-top: 30px;
}
.procedure .flex02 dl dt {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}
.procedure .img01 {
  margin-top: 30px;
}

.charge .accordion dd {
  color: #4a4a4a;
}
.charge .accordion dd .depth1 > li {
  padding: 15px 15px 15px 63px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.charge .accordion dd .depth1 > li h3 {
  flex: 0 0 90px;
}
.charge .accordion dd .depth1 > li h3.expand {
  flex: 1;
}
.charge .accordion dd .depth1 > li ul {
  flex: 1;
}
.charge .accordion dd .depth1 > li ul li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.charge .accordion dd .depth1 > li ul li:not(:last-of-type) {
  margin-bottom: 8px;
}
.charge .accordion dd .depth1 > li.refer {
  padding: 5px 0;
  justify-content: center;
  font-weight: 500;
  color: var(--red);
  gap: 3px;
}
.charge .accordion dd .depth1 > li.refer::before {
  content: "*";
  margin-top: 2px;
}
.charge .accordion dd .depth1 > li.refer:not(:first-of-type) {
  border-top: 1px dashed #e0e0e0;
}
.charge .accordion dd .price {
  font-weight: 700;
  color: var(--primaryColor);
}
.charge .txt01 {
  font-weight: 700;
  font-size: 14px;
  color: var(--red);
}
.charge .button.lg {
  height: 50px;
}

.compensate .flex01 {
  gap: 50px;
  justify-content: space-between;
}
.compensate .flex01 li {
  flex: 1 1 200px;
  font-size: 14px;
  text-align: center;
  line-height: 1.3;
  font-weight: 500;
}
.compensate .flex01 li i {
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-weight: 600;
  text-align: center;
  font-size: 16px;
  margin-bottom: 17px;
  line-height: 1.75;
}
.compensate .flex01 li i .num {
  margin-bottom: 15px;
}
.compensate .txt01 {
  background: #dcdcdc;
  text-align: center;
  font-weight: 700;
  padding: 11px 20px;
  margin-top: 15px !important;
}

.notice .accordion dt {
  padding-left: 0;
  min-height: 57px;
}
.notice .accordion .con {
  padding-left: 150px;
}

.inquiry .accordion dt {
  padding-left: 0;
  min-height: 57px;
}
.inquiry .accordion .con {
  padding-left: 200px;
  padding-right: 0;
}

.faq .accordion dt {
  padding-left: 0;
  min-height: 57px;
}

/***** Modal *****/
.pop_bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
  z-index: 90;
  background: rgba(0, 0, 0, 0.1);
}
.pop_bg .pop_layer {
  width: 400px;
  background: #fff;
  border-radius: 20px;
  padding: 37px;
  padding-bottom: 40px;
  border: 1px solid var(--gray300);
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
.pop_bg .pop_layer .pop_header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.pop_bg .pop_layer .pop_header h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: -5px;
}
.pop_bg .pop_layer .pop_header .btn_close {
  width: 18px;
  height: 18px;
  display: block;
  background: url(../img/btn_close.png);
  background-size: contain;
  font-size: 0;
  position: absolute;
  right: -10px;
  top: -10px;
}
.pop_bg .pop_layer .pop_header.btn_only {
  margin: 0;
}
.pop_bg .pop_layer .pop_con {
  font-size: 16px;
}
.pop_bg .pop_layer .pop_con .succession {
  margin-top: 18px;
}
.pop_bg .pop_layer .txt_l {
  font-size: 20px;
  font-weight: 700;
}
.pop_bg .pop_layer .rows {
  margin-bottom: 0;
  margin-top: 15px;
}
.pop_bg .pop_layer .rows .button {
  flex: 0 0 65px;
  padding: 0;
}
.pop_bg .pop_layer .result {
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  padding: 8px;
  text-align: center;
}
.pop_bg .pop_layer .btn_area {
  margin-top: 25px;
}
.pop_bg .pop_layer .btn_area .button {
  height: 50px;
  border-radius: 8px;
  min-width: 130px;
  font-size: 16px;
}
.pop_bg .pop_layer .btn_area .full {
  margin: 0;
}
.pop_bg .pop_layer .btn_area .lg {
  height: 50px;
}

.pop_main {
  position: absolute;
  z-index: 80;
  border: 1px solid #000;
}
.pop_main .pop_layer {
  background: #fff;
  border-radius: 0;
  color: var(--textColor);
}
.pop_main .pop_header {
  padding: 35px;
  padding-bottom: 0;
  text-align: center;
  margin-bottom: 25px;
}
.pop_main .pop_header h2 {
  font-size: 20px;
  line-height: 1;
}
.pop_main .pop_con {
  font-size: 16px;
  padding: 35px;
  padding-top: 0;
}
.pop_main .btn_area {
  margin-top: 25px;
}
.pop_main .btn_area .full {
  margin: 0;
}
.pop_main .btn_area .lg {
  height: 50px;
}
.pop_main footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  padding: 10px;
}

.pop_list {
  position: absolute;
  left: -1px;
  top: -1px;
  width: calc(100% + 2px);
  background: #fff;
  border: 1px solid var(--gray400);
  padding: 16px;
  font-size: 14px;
  border-radius: var(--btnRadius);
}
.pop_list header {
  border-bottom: 1px dashed var(--gray400);
  padding-bottom: 10px;
}
.pop_list header .flex {
  gap: 5px;
  margin-bottom: 5px;
}
.pop_list header .button {
  max-width: 40px;
  padding: 0;
}
.pop_list header .btn_search {
  width: 40px;
  height: 32px;
  flex-shrink: 0;
}
.pop_list input {
  border: 1px solid var(--gray400);
  height: 32px;
  line-height: 30px;
  padding: 0 6px;
  cursor: auto;
  border-radius: 4px;
}
.pop_list ul {
  margin-top: 10px;
  overflow-y: scroll;
  height: 140px;
}
.pop_list ul li {
  margin: 6px 0;
  color: #4d4d4d;
}
.pop_list ul::-webkit-scrollbar {
  width: 5px;
}
.pop_list ul::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}
.pop_list ul::-webkit-scrollbar-thumb {
  background: rgba(33, 126, 255, 0.3);
  border-radius: 5px;
}
.pop_list ul::-webkit-scrollbar-thumb:hover {
  background: rgba(33, 126, 255, 0.3);
}

.pop_id_confirm .user_id {
  text-align: center;
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  padding-top: 30px;
  color: var(--primaryColor);
}

.pop_pwd_modify dl {
  font-size: 14px;
}
.pop_pwd_modify dt {
  margin-bottom: 3px;
}
.pop_pwd_modify dt:not(:first-of-type) {
  margin-top: 10px;
}

.pop_agree .agree_area {
  margin-top: 35px;
  padding: 0 40px;
}

.pop_provision textarea,
.pop_privacy textarea {
  height: 180px;
}

@media (hover: hover) {
  .button:not(#login .sns .button):hover {
    background-color: #4a4a4a;
    border-color: #4a4a4a;
    color: #fff;
  }
  #header .header_top .user a:hover {
    color: var(--primaryColor);
  }
  .btn_opt .button:hover {
    background-color: var(--primaryColor) !important;
    border-color: var(--primaryColor) !important;
    color: #fff;
  }
}
p.refer {
  font-weight: 500;
  color: var(--red);
  margin-top: 3px;
  font-size: 0.9em;
}