@import url("https://cdnjs.cloudflare.com/ajax/libs/pretendard/1.3.9/static/pretendard.css");
/** Reset **/
*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-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;
  vertical-align: middle;
  font-style: normal;
}

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

html,
body {
  height: 100%;
}

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

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

ul,
ol {
  list-style: none;
}

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

input,
textarea,
button {
  font-family: inherit;
}

/** Global **/
:root {
  --defaultFont: AppleSDGothicNeo-Regular, Malgun Gothic, dotum, sans-serif;
  --webFont: Pretendard, AppleSDGothicNeo-Regular, Malgun Gothic, dotum, sans-serif;
  --primaryColor: #0080c9;
  --black: #000;
  --red: #cc0011;
  --orange: #f77409;
  --brown: #e78d05;
  --green: #4ae61a;
  --textColor: #212529;
  --primaryColorL: #20a5f1;
  --primaryColor: #0080c9;
  --primaryColorB: #0068a5;
  --secondaryColorL: #ffa600;
  --secondaryColor: #ff8400;
  --secondaryColorB: #ff7800;
  --tertiaryColorL: #515658;
  --tertiaryColor: #393f42;
  --tertiaryColorB: #1a1e20;
  --background01: #ffeff0;
  --background02: rgb(248, 247, 235);
  --gray100: #f0f0f0;
  --gray200: #e0e0e0;
  --gray300: #dee2e6;
  --gray400: #ced4da;
  --gray500: #adb5bd;
  --gray600: #6c757d;
  --gray700: #495057;
  --gray800: #343a40;
  --gray900: #212529;
  --t1: 50px;
  --t2: 40px;
  --t3: 30px;
  --t4: 25px;
  --t5: 20px;
  --tBasic: 15px;
  --t6: 13px;
  --t7: 12px;
  --t8: 11px;
  --t9: 10px;
  --spaceS: 50px;
  --spaceM: 80px;
  --spaceL: 120px;
  --btnHeight: 40px;
  --btnRadius: 4px;
  --btnPadding: 9px;
  --shadowBasic: 2px 2px 5px rgba(0, 0, 0, 0.1);
  --shadowL: 3px 3px 10px rgba(0, 0, 0, 0.06);
  --siteWidth: 1200px;
  --sitePadding: 10%;
  --sitePaddingS: 5%;
  --scrollWidth: 9px;
}

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

input:not([type=checkbox], [type=radio], [type=submit]),
textarea {
  height: var(--btnHeight);
  line-height: var(--btnHeight);
  background: #f3f3f3;
  text-indent: 0;
  padding: 0 10px;
  border-radius: var(--btnRadius);
  border: 0;
}

input:not([type=checkbox], [type=radio], [type=submit]):focus,
textarea:focus {
  background-color: #f0f0f0;
}

select {
  margin: 0;
  padding-left: 10px;
  border: 1px solid #ddd;
  background: #fff url(../img/tag.svg) no-repeat right 10px center;
  background-size: 20px;
  border-radius: 4px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 0.95em;
  outline: none;
  height: var(--btnHeight);
  font-family: inherit;
}

textarea {
  height: auto;
  padding: 15px;
  line-height: 1.4;
}

label.check {
  display: inline-flex;
  gap: 5px;
  align-items: center;
}
label.check input {
  position: absolute;
  opacity: 0;
}
label.check input + i {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  border: 1px solid transparent;
  background: #e4e4e4;
}
label.check input:checked + i {
  border-color: var(--primaryColorL);
  background: var(--primaryColorL);
  padding: 2px;
  position: relative;
}
label.check input:checked + i::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 7px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(-45deg) translate(-50%, -50%);
  transform-origin: -2px -1px;
}

img {
  max-width: 100%;
}

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

label.check {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  gap: 5px;
}
label.check span {
  white-space: nowrap;
}

.button {
  display: inline-block;
  text-align: center;
  height: var(--btnHeight);
  line-height: calc(var(--btnHeight) - 2px);
  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.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 {
  border-color: var(--gray200);
  color: var(--gray800);
}
.button.red {
  background-color: var(--red);
  border-color: var(--red);
  color: #fff;
}
.button.red-line {
  border-color: var(--red);
  color: var(--red);
}
.button.lg {
  font-size: 1.05em;
  height: calc(var(--btnHeight) + 10px);
  line-height: calc(var(--btnHeight) + 8px);
  padding: 0 40px;
}
.button.sm {
  font-size: 0.9em;
  padding: 0 10px;
  height: calc(var(--btnHeight) - 4px);
  line-height: calc(var(--btnHeight) - 6px);
}
.button.xs {
  font-size: 0.85em;
}

.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);
}

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

.btn_area {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 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;
}

.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;
}

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

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

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

.link01 {
  color: var(--primaryColorL);
  font-weight: 500;
  text-decoration: underline;
}

.hr01 {
  display: block;
  border: 0;
  height: 1px;
  border-top: 1px dashed var(--gray400);
  margin: var(--spaceM) 0;
}

.pc_no {
  display: none;
}

.mobile_only {
  display: none;
}

.wrap {
  padding: 0 var(--sitePadding);
  position: relative;
}

/** Header **/
:root {
  --gnbHeight: 100px;
}

#header {
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  width: 100%;
  padding: 0 var(--sitePaddingS);
  z-index: 50;
  height: var(--gnbHeight);
  display: flex;
  justify-content: space-between;
  transition: height 0.3s;
}
#header .logo {
  line-height: var(--gnbHeight);
}
#header .logo img {
  height: 40px;
}
#header .btn_gnb {
  display: none;
}
#header .gnb {
  color: #fff;
  margin-left: 10%;
}
#header .gnb ul {
  display: flex;
}
#header .gnb ul .depth1 {
  position: relative;
}
#header .gnb ul .depth1 > a {
  font-size: 1.25em;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  height: var(--gnbHeight);
  padding: 0 3em;
  position: relative;
}
#header .gnb ul .depth1 > a::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 17px;
  width: 0;
  height: 1px;
  opacity: 0;
  background: var(--primaryColorL);
  transition: all 0.3s;
}
#header .gnb ul .depth1 ul {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
  flex-direction: column;
  transition: opacity 0.3s;
}
#header .gnb ul .depth1 ul a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1em;
  padding: 0.4em 0;
}
@media (hover: hover) {
  #header .gnb ul a {
    transition: all 0.3s;
  }
  #header .gnb ul a:hover,
  #header .gnb ul .depth1.on > a {
    color: var(--primaryColorL);
  }
  #header .gnb ul .depth1:hover > a::after {
    width: 100%;
    opacity: 1;
  }
}
#header.on .gnb .depth1 ul {
  height: auto;
  opacity: 1;
}
#header .user {
  line-height: var(--gnbHeight);
  flex-grow: 1;
  text-align: right;
}
#header .user a {
  display: inline-flex;
  align-items: center;
  height: 50px;
  color: #fff;
  border: 1px solid #fff;
  padding: 0 1.5em;
  font-size: 1.05em;
  margin-left: 3px;
  transition: all 0.3s;
}
#header .user a i {
  margin-right: 0.5em;
}
@media (hover: hover) {
  #header .user a:hover {
    background: #fff;
    color: var(--textColor);
  }
}

/** Footer **/
#footer {
  background: var(--gray300);
  padding: var(--spaceM) var(--sitePaddingS);
  display: flex;
  align-items: center;
  gap: var(--spaceM);
}
#footer h1 {
  width: 180px;
  height: 61px;
  font-size: 0;
  background-image: url(../img/ci_b.png);
  background-size: contain;
  background-repeat: no-repeat;
}
#footer address {
  margin-top: 0.5em;
}
#footer .quickmenu {
  position: fixed;
  right: 0;
  top: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 90;
  align-items: center;
  width: 70px;
  text-align: center;
  transform: translateY(-50%);
}
#footer .quickmenu .tel {
  width: 100%;
  background-color: var(--primaryColor);
  line-height: 1.2;
  padding: 12px 0;
  font-size: 1.05em;
  font-weight: 700;
}
#footer .quickmenu .tel i {
  display: block;
  margin: 0 auto 10px auto;
  width: 24px;
  height: 24px;
  background-color: #fff;
  -webkit-mask-image: url(../img/telephone.svg);
          mask-image: url(../img/telephone.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
}
#footer .quickmenu .kakao {
  background-color: #ffe800;
  width: 70px;
  height: 70px;
  line-height: 70px;
}
#footer .quickmenu .kakao img {
  width: 36px;
}
#footer .quickmenu .estimate,
#footer .quickmenu .company {
  width: 100%;
  background-color: #000;
  padding: 12px 0;
  font-size: var(--t7);
}
#footer .quickmenu .estimate i,
#footer .quickmenu .company i {
  display: block;
  margin: 0 auto 10px auto;
  width: 24px;
  height: 24px;
  background-color: #fff;
  -webkit-mask-image: url(../img/calculator.svg);
          mask-image: url(../img/calculator.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
}
#footer .quickmenu .company {
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
}
#footer .quickmenu .company i {
  -webkit-mask-image: url(../img/building.svg);
          mask-image: url(../img/building.svg);
}
#footer .quickmenu .btn_top {
  background-color: #000;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  font-size: var(--t7);
}
#footer .quickmenu .btn_top i {
  font-size: 14px;
}

/** Main **/
#mainVisual {
  height: 100%;
}
#mainVisual .swiper-slide {
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}
#mainVisual .swiper-slide h2 {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -2px;
  text-shadow: 0 0 30px rgb(255, 255, 255);
  padding-top: 32vh;
  color: var(--primaryColorL);
}
#mainVisual .swiper-slide p {
  font-size: 25px;
  font-weight: 500;
  margin-top: 30px;
  text-shadow: 5px 5px 15px rgbA(0, 0, 0, 0.5);
  word-break: keep-all;
}
#mainVisual .slide01 {
  background-image: url(../img/main_visual01_240330.jpg);
}
#mainVisual .slide02 {
  background-image: url(../img/main_visual02_240330.jpg);
}
#mainVisual .slide03 {
  background-image: url(../img/main_visual03_240404.jpg);
}
#mainVisual .swiper-pagination {
  bottom: 50px;
}
#mainVisual .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background: #fff;
  opacity: 1;
  position: relative;
  margin: 0 5px;
}
#mainVisual .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--primaryColor);
}

.btn_more {
  height: 48px;
  padding: 0 30px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  font-size: 1.2em;
  background-color: #fff;
  border: 1px solid var(--primaryColor);
  color: var(--primaryColor);
  transition: 0.3s all;
}
.btn_more i {
  margin-left: 8px;
}
@media (hover: hover) {
  .btn_more:hover {
    background-color: var(--primaryColor);
    color: #fff;
  }
}

.main_con_header {
  text-align: center;
  padding-bottom: var(--spaceS);
}
.main_con_header h2 {
  font-size: var(--t1);
  text-transform: capitalize;
  line-height: 1;
  font-weight: 800;
}
.main_con_header h2::after {
  content: "";
  display: block;
  width: 1em;
  height: 2px;
  background: var(--primaryColor);
  margin: 0.4em auto;
}
.main_con_header p {
  color: var(--gray600);
  font-size: 1.25em;
  font-weight: 300;
}
.main_con_header .btn_more {
  margin-top: 25px;
}

.main_con {
  padding-top: var(--spaceL);
}
.main_con.service ul {
  padding: 0 var(--sitePadding);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 400px 350px;
  color: #fff;
}
.main_con.service ul li {
  background-color: #000;
  background-position: center;
  background-size: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.main_con.service ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  font-size: 1.3em;
  gap: 0.5em;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  transition: all 0.2s;
}
.main_con.service ul li a i {
  width: 50px;
  height: 50px;
  background-color: var(--secondaryColorL);
  -webkit-mask-size: contain;
          mask-size: contain;
  margin-bottom: 0.5em;
}
.main_con.service ul li a h3 {
  font-size: 1.4em;
}
.main_con.service ul li a p {
  font-weight: 300;
  opacity: 0.8;
}
@media (hover: hover) {
  .main_con.service ul li a:hover {
    background-color: rgba(0, 104, 165, 0.6);
  }
}
@media (hover: hover) {
  .main_con.service ul li:hover {
    background-size: 110%;
  }
}
.main_con.service ul .item1 {
  grid-area: 1/1/2/4;
  background-image: url(../img/main_service01.jpg);
}
.main_con.service ul .item1 i {
  -webkit-mask-image: url(../img/camera-reels.svg);
          mask-image: url(../img/camera-reels.svg);
}
.main_con.service ul .item2 {
  grid-area: 1/4/2/7;
  background-image: url(../img/main_service02.jpg);
}
.main_con.service ul .item2 i {
  -webkit-mask-image: url(../img/boombox.svg);
          mask-image: url(../img/boombox.svg);
}
.main_con.service ul .item3 {
  grid-area: 2/1/3/3;
  background-image: url(../img/main_service03.jpg);
}
.main_con.service ul .item3 i {
  -webkit-mask-image: url(../img/lightbulb.svg);
          mask-image: url(../img/lightbulb.svg);
}
.main_con.service ul .item4 {
  grid-area: 2/3/3/5;
  background-image: url(../img/main_service04.jpg);
}
.main_con.service ul .item4 i {
  -webkit-mask-image: url(../img/chat-square-text.svg);
          mask-image: url(../img/chat-square-text.svg);
}
.main_con.service ul .item5 {
  grid-area: 2/5/3/7;
  background-image: url(../img/main_service05.jpg);
}
.main_con.service ul .item5 i {
  -webkit-mask-image: url(../img/basket.svg);
          mask-image: url(../img/basket.svg);
}
.main_con.portfolio {
  padding-left: 10px;
  padding-right: 10px;
}
.main_con.partner {
  margin-top: var(--spaceL);
  padding-bottom: var(--spaceL);
  background-image: url(../img/main_partner_bg.jpg);
  background-position: center;
  background-size: cover;
}
.main_con.partner .main_con_header {
  color: #fff;
}
.main_con.partner .main_con_header p {
  color: rgb(255, 255, 255);
}
.main_con.partner ul {
  display: grid;
  margin: 0 var(--sitePadding);
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(130px, auto);
  background: #fff;
  border-radius: 20px;
  align-items: center;
  justify-items: center;
  padding: 20px;
}
.main_con.partner ul img {
  max-height: 50px;
  max-width: 160px;
}
.main_con.cscenter {
  padding-top: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 300px;
}
.main_con.cscenter .sec01 {
  background-image: url(../img/main_cscenter_bg.jpg);
  background-position: center;
  background-size: cover;
  padding-left: var(--sitePadding);
  padding-top: var(--spaceM);
  color: #fff;
  font-size: 1.2em;
  font-weight: 300;
}
.main_con.cscenter .sec01 p {
  margin-bottom: 0.5em;
}
.main_con.cscenter .sec01 .txt01 {
  font-weight: 700;
  font-size: 1.6em;
  color: var(--secondaryColorL);
}
.main_con.cscenter iframe {
  width: 100%;
  height: 100%;
}

.table_h01 {
  border-top: 2px solid var(--primaryColorL);
}
.table_h01 th,
.table_h01 td {
  text-align: center;
  padding: 10px;
  height: 50px;
  line-height: 1.3;
  border-bottom: 1px solid var(--gray200);
}
.table_h01 .border th,
.table_h01 .border td {
  border: 1px solid var(--gray200);
}
.table_h01 .border th:first-child,
.table_h01 .border td:first-child {
  border-left: 0;
}
.table_h01 .border th:last-child,
.table_h01 .border td:last-child {
  border-right: 0;
}
.table_h01 thead th {
  background-color: rgba(32, 165, 241, 0.05);
}
.table_h01 tbody th {
  text-align: left;
  padding-left: 20px;
}
.table_h01 tr.accent td {
  background-color: var(--background02);
  font-weight: 600;
}

.input_div {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: var(--tBasic);
}
.input_div input:not([type=submit],
[type=image],
[type=checkbox],
[type=radio]),
.input_div textarea {
  width: 100%;
  font-size: 0.95em;
}
.input_div p {
  line-height: 1;
  margin: 0 !important;
  font-size: 0.95em;
  font-weight: 500;
}
.input_div:first-of-type {
  margin-top: 0;
}

/** Modal **/
.pop_bg {
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 90;
  background: rgba(0, 0, 0, 0.6);
}

.pop_layer {
  width: 400px;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
}
.pop_layer .btn_area {
  gap: 5px;
  margin-top: var(--spaceM);
}

.pop_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  padding-bottom: 0;
}
.pop_header h2 {
  font-size: var(--t3);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.pop_header .btn_close {
  font-size: 0;
  text-indent: -9000px;
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 0;
  background: url(../img/btn_close.png) no-repeat center/100%;
}

.pop_con {
  padding: 40px;
}

/** Contents **/
@keyframes up {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}
@keyframes line {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 2em;
    opacity: 1;
  }
}
#subVisual {
  background-color: #000;
  background-size: cover;
  background-position: center;
  color: #fff;
  height: 400px;
  text-align: center;
  padding-top: 190px;
  font-size: 3em;
}
#subVisual.sub01 {
  background-image: url(../img/sub01_visual.jpg);
}
#subVisual.sub02 {
  background-image: url(../img/sub02_visual.jpg);
}
#subVisual.sub03 {
  background-image: url(../img/sub03_visual.jpg);
}
#subVisual.sub04 {
  background-image: url(../img/sub04_visual.jpg);
}
#subVisual.sub09 {
  background-image: url(../img/sub09_visual.jpg);
}
#subVisual h2 {
  animation: up 0.5s 0.5s forwards;
  opacity: 0;
  position: relative;
}
#subVisual h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 0;
  height: 2px;
  bottom: -0.3em;
  background-color: #fff;
  animation: line 0.5s 1s forwards;
}

#contents {
  padding: 0 0 var(--spaceL) 0;
}

.snb ul {
  --height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: var(--height);
  border-bottom: 1px solid var(--gray200);
  margin-bottom: var(--spaceL);
}
.snb ul a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: var(--height);
  font-size: 1.25em;
  color: #999;
  font-weight: 500;
  transition: 0.3s all;
  min-width: 230px;
  justify-content: center;
}
@media (hover: hover) {
  .snb ul a:hover {
    color: #444;
  }
}
.snb ul a.on {
  background-color: var(--primaryColor);
  color: #fff;
}

.ul01 li {
  padding-left: 1em;
  margin-top: 0.3em;
  position: relative;
  text-align: left;
}
.ul01 li:first-of-type {
  margin-top: 0;
}
.ul01 li::before {
  position: absolute;
  top: 0.35em;
  left: 0;
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f058";
}

h3.title01 {
  font-size: 1.3em;
  font-weight: 800;
  margin-bottom: 1.2em;
}

h4.title01 {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 0.65em;
}

.service_header {
  text-align: center;
  margin-bottom: var(--spaceL);
}
.service_header h3 {
  color: var(--secondaryColorL);
  font-size: 2em;
}
.service_header p {
  font-size: 1.3em;
  color: #666;
  margin-top: 0.5em;
  font-weight: 300;
}
.service_header ul {
  display: inline-block;
  margin: 1em auto 0 auto;
  font-size: 1.05em;
}
.service_header ul li {
  padding-left: 1em;
  margin-top: 0.3em;
  position: relative;
  text-align: left;
}
.service_header ul li:first-of-type {
  margin-top: 0;
}
.service_header ul li::before {
  position: absolute;
  top: 0.35em;
  left: 0;
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f058";
}

.service_con {
  margin-bottom: var(--spaceL);
}
.service_con header {
  margin-bottom: var(--spaceM);
}
.service_con header h3 {
  font-size: 1.85em;
  font-weight: 800;
}
.service_con header h3 strong {
  font-weight: inherit;
  vertical-align: top;
  color: var(--primaryColor);
}
.service_con header p {
  font-size: 1.15em;
  margin-top: 0.8em;
  line-height: 1.3 !important;
}
.service_con header.noheader {
  margin-bottom: 20px;
}
.service_con .mobile {
  display: none;
}
.service_con h4.title01 {
  font-weight: 800;
  font-size: 1.25em;
}
.service_con h4.title01 strong {
  vertical-align: top;
  font-weight: 800;
  color: var(--primaryColor);
}
.service_con .list01 {
  flex-wrap: wrap;
}
.service_con .list01 li {
  width: 32%;
  margin-top: 30px;
}

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

#customPage {
  font-size: 1.15em;
}
#customPage p {
  line-height: 1.5;
  margin-bottom: 1.5em;
}
#customPage p:last-of-type {
  margin-bottom: 0;
}
#customPage.about01 .flex {
  gap: var(--spaceM);
}
#customPage.about01 .flex > div {
  width: 50%;
}
#customPage.about01 .flex .img {
  aspect-ratio: 4/3;
}
#customPage.about01 .flex .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
#customPage.about01 .flex .con .txt01 {
  font-weight: 700;
  font-size: 1.9em;
  margin-bottom: 0.2em;
  letter-spacing: -0.04em;
}
#customPage.about01 .flex .con .txt02 {
  font-size: 1.3em;
}
#customPage.about01 .flex .con .logo {
  margin: 3.5em 0;
}
#customPage.about01 .flex .con .txt03 {
  font-weight: 500;
}
#customPage.about01 .flex .con .txt03 strong {
  font-size: 1.5em;
  font-weight: 700;
  display: block;
}
#customPage.about02 .map {
  margin-top: var(--spaceS);
}
#customPage.about02 .map iframe {
  width: 100%;
  height: 500px;
  border: 1px solid #e0e0e0;
}
#customPage.about02 .info {
  display: grid;
  grid-template-columns: repeat(3, 140px 1fr);
  margin-left: 1px;
}
#customPage.about02 .info dt,
#customPage.about02 .info dd {
  margin-left: -1px;
  border: 1px solid #e0e0e0;
  padding: 20px;
  display: flex;
  align-items: center;
}
#customPage.about02 .info dt {
  font-weight: 700;
  font-size: 1.2em;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  padding-left: 0;
  padding-right: 0;
}
#customPage.about02 .info dd span.space {
  display: none;
}
#customPage.service {
  margin-bottom: var(--spaceS);
  text-align: center;
}
#customPage.service01 .progress {
  padding: 0 10%;
}
#customPage.service01 .progress .align_right {
  font-size: 0.85em;
  margin-bottom: 1em;
}
#customPage.service01 .progress .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
#customPage.service01 .progress .grid > li {
  text-align: left;
  background-color: var(--primaryColor);
  color: #fff;
  padding: 2em;
  padding-top: 3.5em;
  padding-left: 2.5em;
  position: relative;
}
#customPage.service01 .progress .grid > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(1em + 20px);
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
}
#customPage.service01 .progress .grid > li .date {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 10%;
  top: 1em;
  font-weight: 700;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  color: var(--primaryColor);
}
#customPage.service01 .progress .grid > li h4 {
  font-size: 1.5em;
  margin-bottom: 0.4em;
}
#customPage.service01 .progress .grid > li li {
  font-size: 0.9em;
  line-height: 1.5;
}
#customPage.service01 .progress .grid > li:nth-of-type(2) {
  background-color: var(--secondaryColor);
}
#customPage.service01 .progress .grid > li:nth-of-type(2) .date {
  color: var(--secondaryColor);
}
#customPage.service01 .progress .grid > li:nth-of-type(3) {
  background-color: var(--tertiaryColor);
}
#customPage.service01 .progress .grid > li:nth-of-type(3) .date {
  color: var(--tertiaryColor);
}
#customPage.service02 .flex {
  gap: 20px;
}
#customPage.service02 .flex > li {
  width: 380px;
  background-color: #eaebee;
  padding: 1.8em;
}
#customPage.service02 .flex > li .ul01 {
  font-size: 0.9em;
}
#customPage.service05 .list01 p {
  margin-top: 0.5em;
}
#customPage.service05 .list01:nth-last-of-type(1) li {
  width: 24%;
}
#customPage.service05 .list01:nth-last-of-type(2) li {
  width: 24%;
}
#customPage.service05 .list01:nth-last-of-type(3) li {
  width: 24%;
}
#customPage.client ul {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 120px;
  gap: 10px;
}
#customPage.client ul li {
  border: 1px solid #e0e0e0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#customPage.client ul li img {
  max-width: 160px;
  max-height: 50px;
}
#customPage.contact .flex {
  gap: var(--spaceM);
}
#customPage.contact .flex .sec01 {
  flex-shrink: 0;
  min-width: 580px;
}
#customPage.contact .flex .sec01 h3 {
  font-size: 3em;
  margin-bottom: 0.5em;
}
#customPage.contact .flex .sec01 dl {
  border-top: 2px solid #666;
  display: grid;
  grid-template-columns: 120px 1fr;
}
#customPage.contact .flex .sec01 dl dt,
#customPage.contact .flex .sec01 dl dd {
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  height: 3.5em;
}
#customPage.contact .flex .sec01 dl dt {
  padding-left: 0.5em;
  font-weight: 700;
}
#customPage.contact .flex .sec01 dl dd {
  padding-right: 1em;
}
#customPage.contact .flex .sec02 {
  flex-grow: 1;
}
#customPage.contact .flex .sec02 iframe {
  width: 100%;
  height: 100%;
  border: 1px solid #e0e0e0;
}
#customPage.estimate {
  padding: 0 20%;
}
#customPage.estimate .hr01 {
  margin: var(--spaceS) 0;
}
#customPage.estimate textarea {
  height: 210px;
  margin-bottom: 0.5em;
}
#customPage.estimate .input_div {
  font-size: 0.95em;
}

/** Customizing **/
#bo_cate {
  text-align: center;
}

#bo_cate a {
  color: var(--gray500);
  background: none;
  border: 0;
  transition: none;
}

#bo_cate #bo_cate_on,
.reg_btn_submit {
  background: none;
  box-shadow: none;
  border: 0;
  color: var(--primaryColor);
}

@media (hover: hover) {
  #bo_cate a:focus,
  #bo_cate a:hover,
  #bo_cate a:active {
    background: none;
    border-color: 0;
    color: var(--gray500);
  }
}
.mb_log_cate h2 {
  display: none;
}

.mbskin {
  margin-top: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../img/login_bg.jpg);
  background-position: center;
  background-size: cover;
}
.mbskin .mbskin_box {
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  width: 400px;
}
.mbskin .btn_submit {
  margin: 0 !important;
}

.btn_submit {
  background: var(--primaryColor);
}
@media (hover: hover) {
  .btn_submit:hover {
    background: var(--primaryColor);
  }
}

#login_info {
  display: none;
}

#login_info a.join,
#mb_confirm p strong {
  color: var(--primaryColorL);
}

#find_info {
  width: 400px;
  margin: 0 auto;
}
#find_info .win_btn {
  margin-top: 30px;
}

.fregister_agree input[type=checkbox]:checked + label span,
.chk_box input[type=checkbox]:checked + label span {
  background-color: var(--primaryColorL);
  border-color: var(--primaryColorL);
}

@media (hover: hover) {
  .fregister_agree input[type=checkbox] + label:hover {
    color: var(--primaryColorL);
  }
}
#register_form li.chk_box {
  display: flex;
  align-items: center;
}
#register_form li.chk_box label {
  margin-bottom: 0;
}
#register_form li.chk_box .tooltip_icon {
  display: none;
}
#register_form .chk_li {
  margin: 0 0 0 5px;
  padding: 0;
  display: inline-block;
}

#mb_login h1 {
  font-size: 1.7em;
  position: static;
  overflow: visible;
  margin: 0 0 25px;
  line-height: 1;
}

#mb_confirm h1 {
  display: none;
}

.register {
  width: 500px;
}

#fregister p {
  padding: 20px;
  line-height: 1.4;
  height: auto;
  word-break: keep-all;
}
#fregister p i {
  display: none;
}

.register_form_inner label {
  font-size: 13px;
  margin-bottom: 5px;
}

.form_01 li {
  margin-bottom: 15px;
}

#fregisterform .captcha legend {
  display: none;
}

#reg_result {
  padding-top: 0;
}

#reg_result .result_txt {
  word-break: keep-all;
}

.reg_result_p i,
.reg_result_p br {
  display: none;
}

#reg_mb_icon,
#reg_mb_img {
  float: none;
  width: 100%;
}

#bo_w .bo_w_tit #btn_autosave,
#bo_w .cke_sc {
  display: none;
}

.btn_bo_user .btn_b01 {
  color: #444;
}

#bo_v_share .btn {
  font-size: 0.9em;
}

#bo_v_img {
  text-align: center;
}

#bo_list .td_name {
  text-align: center;
}

.chk_label input:checked + i {
  border-color: var(--primaryColorL);
  background-color: var(--primaryColorL);
  padding: 0;
}

.chk_label input:checked + i:before {
  border: 0;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  width: 10px;
  height: 7px;
  left: 50%;
  top: 50%;
  transform: rotate(-45deg) translate(-50%, -50%);
  transform-origin: -2px -1px;
  background: none;
  border-radius: 0;
}

.bo_vc_w .btn_submit {
  background-color: var(--primaryColorL);
}

#fregister_private table {
  font-size: 0.95em;
}

.pg_page {
  font-size: 0.9em;
  margin-top: 4px;
}