@charset "utf-8";
@import url("./reset.css");

/* font */
/*@font-face {
  font-family: "NanumSquareRound";
  src: local("NanumSquareRoundR"), url("../fonts/NanumSquareRoundR.woff") format("woff"), url("../fonts/NanumSquareRoundR.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "NanumSquareRound";
  src: local("NanumSquareRoundB"), url("../fonts/NanumSquareRoundB.woff") format("woff"), url("../fonts/NanumSquareRoundB.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "NanumSquareRound";
  src: local("NanumSquareRoundEB"), url("../fonts/NanumSquareRoundEB.woff") format("woff"), url("../fonts/NanumSquareRoundEB.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "NanumSquareRound";
  src: local("NanumSquareRoundL"), url("../fonts/NanumSquareRoundL.woff") format("woff"), url("../fonts/NanumSquareRoundL.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
}
*/
:root {
  --primary: #2c7ef6;
  --secondary: #00fcff;
  --white: #fff;
  --dark: #222;
  --gray: #666;
  --black: #000;
  --full: 100%;
  --half: 50%;
}

/* common */
.sr-only {
  overflow: hidden;
  position: absolute;
  margin: -1px 0 0 -1px;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0) !important;
}

.white {
  color: var(--white) !important;
}
.black {
  color: var(--black) !important;
}
.black {
  color: var(--dark) !important;
}
.gray {
  color: var(--gray) !important;
}
.primary {
  color: var(--primary) !important;
}
.secondary {
  color: var(--secondary) !important;
}
.f-bold {
  font-weight: 700;
}
.f-bolder {
  font-weight: 900;
}
.md-block {
  display: none;
}
.sm-block {
  display: none;
}

@media (max-width: 991px) {
  .md-block {
    display: block;
  }
}
@media (max-width: 767px) {
  .sm-block {
    display: block;
  }
  .sm-hidden {
    display: none;
  }
}

/* layout */
#wrap {
  display: flex;
  flex-direction: column;
  width: var(--full);
  min-height: var(--full);
}

.inner {
  width: var(--full);
  max-width: 136rem;
  margin: 0 auto;
  /*padding: 0 4rem;*/
}

#header {
  position: absolute;
  top: 4rem;
  left: 0rem;
  right: 0rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: none;
  height: 8rem;
  z-index: 10;
  border-bottom: 1px solid #ffffff45;
}
/* #header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  animation: headerTrans 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10rem);
} */
#header .header-inner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
}
#header.fixed .header-inner {
  max-width: 192rem;
  margin: 0 auto;
}
@keyframes headerTrans {
  0% {
    transform: translateY(-80rem);
    opacity: 0;
  }
  80% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
#header .header__logo a {
  display: block;
  width: 25.3rem;
  height: 6.1rem;
  background: url(../images/logo_h.png) no-repeat center center;
  background-size: var(--full);
}
#header .btn__menu-control {
  display: none;
}

#footer {
  flex: none;
  padding: 7.5rem 0;
  background: #1f1f1f;
}
#footer .inner {
  display: flex;
  gap: 8rem;
}
#footer .footer__logo {
  width: 21.3rem;
  height: 6.1rem;
  background: url(../images/logo_f.png) no-repeat center center;
  background-size: var(--full);
}
#footer .footer__util {
  display: flex;
  margin-bottom: 2rem;
  gap: 1.8rem;
  font-size: 1.5rem;
  color: #666;
}
#footer .footer__util a:first-child {
  color: var(--dark);
}
#footer .footer__addr {
  display: flex;
  flex-direction: column;
  font-size: 1.4rem;
  color: #999;
}
#footer .footer__addr p {
  display: flex;
  gap: 1.8rem;
}
#footer .footer__addr span {
  display: inline-block;
  line-height: 1.5;
}
#footer .footer__addr span em {
  color: #fff;
}
#footer .copyright {
  margin-top: 3rem;
  font-size: 1.3rem;
  color: #999;
  font-weight: 200;
}

#container {
  flex: 1 1 auto;
}

.gnb {
  display: flex;
  gap: 3rem;
}
.gnb a {
  display: block;
  padding: 0 1.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}

.btn__top {
  position: fixed;
  bottom: 10rem;
  right: 40%;
  width: 6rem;
  height: 6rem;
  margin-right: -60rem;
  border-radius: var(--full);
  background: #000 url(../images/icon_toTop.png) no-repeat center center/1.7rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 10;
}
.btn__top.is-show {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1299px) {
  /* layout */
  #header {
    left: 4rem;
    right: 4rem;
    padding: 0 3rem;
  }
  #header .header__logo a {
    width: 18rem;
  }

  #footer {
    padding: 5rem;
  }
  #footer .footer__logo {
    width: 18rem;
  }
  #footer .footer__addr p {
    gap: 0 1.8rem;
    flex-wrap: wrap;
  }

  .gnb {
    gap: 2rem;
  }
  .gnb a {
    padding: 0 1.2rem;
  }

  .btn__top {
    bottom: 8rem;
    right: 50%;
    margin-right: calc(-50% + 4rem);
  }
}

@media (max-width: 991px) {
  /* layout */
  .inner {
    padding: 0 3rem;
  }

  #header {
    top: 2.3rem;
    left: 3rem;
    right: 3rem;
    height: 7rem;
    padding: 0 3rem;
  }
  #header .header__logo {
    position: relative;
    z-index: 2;
	margin-top:2rem;
  }
  #header .header__logo a {
    width: 14.5rem;
    height: 4rem;
  }
  #header .btn__menu-control {
    display: block;
    position: relative;
    width: 3rem;
    height: 2.4rem;
    z-index: 2;
  }
  #header .btn__menu-control:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3rem;
    height: 3px;
    background: var(--black);
    transition: all 0.3s ease;
  }
  #header .btn__menu-control:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 3rem;
    height: 3px;
    background: var(--black);
    transition: all 0.3s ease;
  }
  #header .btn__menu-control .bar {
    position: absolute;
    left: 0;
    top: calc(50% - (3px / 2));
    width: 3rem;
    height: 3px;
    background: var(--black);
    transition: all 0.3s ease;
  }
  #header .btn__menu-control.is-open:before {
    transform: rotate(45deg);
    transform-origin: top left;
    width: 3.2rem;
  }
  #header .btn__menu-control.is-open:after {
    transform: rotate(-45deg);
    transform-origin: left bottom;
    width: 3.2rem;
  }
  #header .btn__menu-control.is-open .bar {
    opacity: 0;
  }

  #footer {
    padding: 4rem 0;
  }
  #footer .inner {
    flex-direction: column;
    gap: 2.6rem;
  }
  #footer .footer__logo {
    width: 14.5rem;
    height: 4rem;
  }
  #footer .footer__util {
    margin-bottom: 1rem;
    gap: 2rem;
  }
  #footer .footer__addr {
    gap: 0;
  }
  #footer .footer__addr p {
    flex-direction: column;
    gap: 0;
  }
  #footer .copyright {
    margin-top: 1.5rem;
  }

  #nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    padding-top: 7rem;
    background: var(--white);
    border-radius: 4rem;
    overflow: hidden;
    transform: translateY(-2rem);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease;
    z-index: 1;
  }
  #nav.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
  .gnb {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.4rem 2.4rem 4rem;
    gap: 1.5rem;
  }
  .gnb a {
    font-size: 3rem;
  }

  .btn__top {
    bottom: 5rem;
    right: 2rem;
    width: 5rem;
    height: 5rem;
    margin-right: 0;
    background-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  /* layout */
  .inner {
    padding: 0 2rem;
  }

  #header {
    top: 1.8rem;
    left: 0;
    right: 0;
    height: 4.6rem;
    padding: 0 2rem;
  }
  #header .header__logo a {
    width: 14.8rem;
    height: 4rem;
  }

  #header .btn__menu-control {
    width: 2.4rem;
    height: 2rem;
  }
  #header .btn__menu-control:before {
    width: 2.4rem;
    height: 2px;
  }
  #header .btn__menu-control:after {
    width: 2.4rem;
    height: 2px;
  }
  #header .btn__menu-control .bar {
    top: calc(50% - 1px);
    width: 2.4rem;
    height: 2px;
  }
  #header .btn__menu-control.is-open:before {
    width: 2.6rem;
  }
  #header .btn__menu-control.is-open:after {
    width: 2.6rem;
  }

  #footer {
    padding: 2.6rem 0;
  }
  #footer .inner {
    gap: 1.8rem;
  }
  #footer .footer__logo {
    width: 9.8rem;
    height: 2rem;
  }
  #footer .footer__util {
    gap: 1.4rem;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
  }
  #footer .footer__addr {
    font-size: 1.2rem;
  }
  #footer .copyright {
    margin-top: 1rem;
    font-size: 1.1rem;
  }
  #nav {
    padding-top: 4.6rem;
    border-radius: 2.3rem;
  }
  .gnb {
    padding: 1.6rem 1.6rem 2.6rem;
    gap: 1rem;
  }
  .gnb a {
    font-size: 2rem;
  }
  .btn__top {
    width: 4.5rem;
    height: 4.5rem;
  }
}

/**********************************************
main contents
**********************************************/

.section__main--visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24rem 0 32rem;
  background: #3177f7 url(../images/bg_main_visual.jpg) no-repeat center bottom;
  background-size:cover;
}
.section__main--visual .msg-area {
  text-align: center;
}
.section__main--visual .m-text {
  margin-bottom: 2.5rem;
  text-align: center;
  color: var(--white);
  font-size: 3.4rem;
  line-height: 2.48;
}
.section__main--visual .m-text em {
  display: block;
  font-size: 6rem;
  font-weight: 700;
}
.section__main--visual .m-text strong {
  display: block;
  font-size: 8rem;
  font-weight: 700;
  color: #fff;
}
.section__main--visual .s-text {
  color: var(--white);
  font-weight: 200;
  font-size: 2.6rem;
  line-height: 1.48;
}
.section__main--visual small {
  display: block;
  font-size: 1.8rem;
  line-height: 1.48;
}
.section__main--visual .btn-go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 6rem;
  margin-top: 3rem;
  padding: 0 3rem;
  color: #fff;
  font-size: 2rem;
  border-radius: 0.6rem;
  background: #00cad7;
}
.section__main--visual .link-btn {
  width: 180px;
  height: 60px;
  font-size: 1.8rem;
  font-weight: 500;
  background-color: transparent; 
  border: 1px solid #fff; 
  border-radius: 30px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: #fff;
  margin-top:4rem;
  margin-left:2rem;
}
.section__main--visual .link-btn:hover {
  background-color: #fff; 
  color: #222;
}
.d-flex {
  display:flex !important;
}

@media (max-width: 1299px) {
  .section__main--visual {
    padding: 18.4% 0 32.3%;
    background-size: auto var(--full);
  }
  .section__main--visual .m-text {
    margin-bottom: 1.9vw;
    font-size: 3.6vw;
  }
  .section__main--visual .m-text em {
    font-size: 4.6vw;
  }
  .section__main--visual .m-text strong {
    font-size: 5.38vw;
  }
  .section__main--visual .s-text {
    font-size: 2vw;
  }
  .section__main--visual small {
    display: block;
    font-size: 1.38vw;
  }
  .section__main--visual .btn-go {
    height: 4.6275vw;
    margin-top: 2.3vw;
    padding: 0 2.3vw;
    font-size: 1.56vw;
  }
}
@media (max-width: 767px) {
  .section__main--visual {
    padding: 34vw 0 48vw;
    background-image: url(../images/bg_main_visual_m.jpg);
    background-size: cover;
  }
  .section__main--visual .m-text {
    margin-bottom: 4.16vw;
    font-size: 5.481vw;
	line-height: 7vw;
  }
  .section__main--visual .m-text em {
    font-size: 8.33vw;
  }
  .section__main--visual .m-text strong {
    font-size: 10.185vw;
	padding-top:3vw;
  }
  .section__main--visual .s-text {
    font-size: 4vw;
  }
  .section__main--visual small {
    font-size: 2.778vw;
  }
  .section__main--visual .btn-go {
    height: 7.2vw;
    margin-top: 4vw;
    padding: 0 4vw;
    font-size: 3.2vw;
  }
  .section__main--visual .link-btn {
	width: 160px;
    height: 50px;
    font-size: 3.8vw;
	margin-top:7vw;
    margin-left:2vw;
  }
}

/**********************************************
main_greeting
**********************************************/

.section__main--benefit {
  padding: 10rem 0 10rem;
  background: url(../images/bg_main_greeting.jpg) no-repeat center bottom;
  background-size:cover;
}
.section__main--benefit .title {
  display: flex;
  margin-bottom: 7.5rem;
/*  text-align: center;*/
  color: var(--white);
}
.section__main--benefit .title em {
  display: block;
  font-size: 5.4rem;
  font-weight: 700;
}
.section__main--benefit .title small {
  display: block;
  font-weight: 600;
  font-size: 2.2rem;
  color: #80adfa;
  width: 16%;
  padding-top:5px;
}
.section__main--benefit .text-body {
  display: flex;
  margin-left: 16%;
  color: #fff;
}
.section__main--benefit .img-box {
  margin-right: 5rem;
}
.section__main--benefit .text {
  font-size: 2rem;
  font-weight: 500;
  white-space :pre-line;
  line-height: 3rem
}
.section__main--benefit .text em {
  color: #546cff;
}
.section__main--benefit .text small {
  color: #9da5d5;
  font-size: 2rem;
}
.section__main--benefit .card-body {
  margin-left: 16%;
}
.section__main--benefit .card {
  font-size: 3rem;
  margin-top: 3rem;
  color: #fff;
  width: 100%;
  /*height: 57.5rem;
  padding: 3rem 1rem;
  border-radius: 1.6rem;*/
}
.section__main--benefit .card em {
  color: #546cff;
  line-height: 3;
}
.section__main--benefit .card .text {
 /* display: block;
     margin-top: 2rem;
  white-space: pre; */
  font-size: 2rem;
  line-height: 5rem;
  font-weight: 200;
}
.section__main--benefit .card .text em {
  color:#9da5d5;
  padding-bottom: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

@media (max-width: 1299px) {
	.section__main--benefit {
		padding:10% 4%;
	}
  .section__main--benefit .card-body {
    gap: 1.5rem;
  }
  .section__main--benefit .card {
    flex: 1;
  }
  .section__main--benefit .card .text {
    font-size: 2.2rem;
  }
}
@media (max-width: 991px) {
  .section__main--benefit {
    padding: 9rem 0;
  }
  .section__main--benefit .title {
    margin-bottom: 6.5rem;
  }
  .section__main--benefit .title em {
    font-size: 4.5rem;
    line-height: 1.4;
  }
  .section__main--benefit .title small {
    font-size: 2rem;
    line-height: 1.4;
  }
  .section__main--benefit .card-body {
    flex-direction: column;
    gap: 2.5rem;
    height: auto;
  }
  .section__main--benefit .card {
    display: block;
    width: var(--full);
    height: auto;
    min-height: 24rem;
    padding: 2rem;
    border-radius: 1.2rem;
  }
  .section__main--benefit .card .text {
    display: block;
    gap: 1.5rem;
    align-items: center;
    text-align: left;
    font-size: 2.4rem;
    line-height: 1.3;
  }
}
@media (max-width: 767px) {
  .section__main--benefit {
    padding: 6rem 0;
  }
  .section__main--benefit .title {
    margin-bottom: 4.3rem;
	display: block;
  }
  .section__main--benefit .title em {
    font-size: 2.8rem;
  }
  .section__main--benefit .title small {
    font-size: 1.7rem;
	width: 100%;
  }
  .section__main--benefit .text-body {
	margin-left: 0;	
	display: block;
  }
  .section__main--benefit .img-box {
	margin-right: 0;
	width: 20rem;
	margin-bottom: 5rem;
  }
  .section__main--benefit .text {

	font-weight: 300;
	white-space :pre-line;
	font-size: 4vw;
  }
  .section__main--benefit .text small {
	font-size: 4vw;
}
  .section__main--benefit .card-body {
    margin-left: 0;
  }
  .section__main--benefit .card {
    min-height: 22rem;
    padding: 0;
	display: block;
	font-size: 6vw;
  }
  .section__main--benefit .card .text {
    word-break: keep-all;
    padding-right: 10rem;
    font-size: 4vw;
	display: block;
  }
}

/**********************************************
main History
**********************************************/
.section__main--history {
  padding: 10rem 0 20rem;
  background: url(../images/bg_main_history.jpg) no-repeat center bottom;
  background-size:cover;
}
.section__main--history .title {
  display: flex;
  margin-bottom: 7.5rem;
/*  text-align: center;*/
  color: var(--white);
}
.section__main--history .title em {
  display: block;
  font-size: 5.4rem;
  font-weight: 700;
  word-break: keep-all;
  width: 90rem;
}
.section__main--history .title small {
  display: block;
  font-weight: 600;
  font-size: 2.2rem;
  color: #80adfa;
  width: 16%;
  padding-top:5px;
}
.section__main--history .card-body {
  display: flex;
  justify-content: center;
  gap: 13rem;
  margin-bottom:10rem;
  margin-left:-22rem;
}
.section__main--history .card {
  width: 16rem;
  height: 16rem;
  padding: 3rem 1rem;
  border-radius: 40rem;
}
.section__main--history .text {
  display: flex;
  text-align: left;
  font-size: 1.6rem;
  font-weight: 300;
  position:absolute;
  top:18rem;
  flex-direction:column;
  width:23rem;
  color: #939ca3;
}
.section__main--history .text em {
  color: #fff;
  font-weight: 400;
}
.section__main--history .text li {
  line-height: 1.6;
  list-style:disc;
}

.section__main--history .card:first-child {
  border: 1px solid #fff9f9;
  color: fff;
  font-size: 2rem;
  text-align: center;
  align-content: center;
  margin-top:22rem;
}
.section__main--history .card:nth-child(2) {
  border: 1px solid #fff9f9;
  color: fff;
  font-size: 2rem;
  text-align: center;
  align-content: center;
  margin-top:13rem;
}
.section__main--history .card:nth-child(3) {
  border: 1px solid #fff9f9;
  color: fff;
  font-size: 2rem;
  text-align: center;
  align-content: center;
  margin-top:3rem;
}
.section__main--history .card:nth-child(4) {
  border: 1px solid #fff9f9;
  color: fff;
  font-size: 2rem;
  text-align: center;
  align-content: center;
  margin-top:-3rem;
}

@media (max-width: 1299px) {
	.section__main--history {
		padding:10% 4%;
		background: url(../images/bg_main_history.jpg) no-repeat center bottom;
		background-size: cover;
		background-position-x:90%
	}
  .section__main--history .card-body {
    gap: 1.8rem;
	margin-left: 0;
	flex-direction:column;
  }
   .section__main--history .card {
    min-height: 12rem;
    padding: 1.2rem;
	width: 12rem;
    height: 12rem;
    border-radius: 40rem;
	padding:3rem 2rem;
  }
  .section__main--history .card .text {
    word-break: keep-all;
    width: 30rem;
    gap: 0.8rem;
    font-size: 1.8rem;
    top: 0;
    align-items: flex-start;
    margin-left: 13rem;
  }
  .section__main--history .card .text:before {
    flex: none;
    width: 2.3rem;
    height: 2.3rem;
  }
  .section__main--history .card:first-child {
	margin-top:0;
	margin-bottom: 3rem;
  }
  .section__main--history .card:nth-child(2) {
	margin-top: 5rem;
    margin-bottom: 20rem;
  }
  .section__main--history .card:nth-child(3) {
    margin-bottom: 18rem;
  }
  .section__main--history .card:nth-child(4){
	margin-top:0;
	margin-bottom: 10rem;
  }
}
@media (max-width: 991px) {
  .section__main--history {
    padding: 9rem 0;
	background: url(../images/bg_main_history.jpg) no-repeat center bottom;
	background-size: cover;
  }
  .section__main--history .title {
    margin-bottom: 6.5rem;
  }
  .section__main--history .title em {
    font-size: 4.5rem;
    line-height: 1.4;
  }
  .section__main--history .title small {
    font-size: 2rem;
    line-height: 1.4;
  }
  .section__main--history .card-body {
    gap: 1.8rem;
	margin-left: 0;
	flex-direction:column;
  }
   .section__main--history .card {
    min-height: 12rem;
    padding: 1.2rem;
	width: 12rem;
    height: 12rem;
    border-radius: 40rem;
	padding:3rem 2rem;
  }
  .section__main--history .card .text {
    word-break: keep-all;
    width: 30rem;
    gap: 0.8rem;
    font-size: 1.8rem;
    top: 0;
    align-items: flex-start;
    margin-left: 13rem;
  }
  .section__main--history .card .text:before {
    flex: none;
    width: 2.3rem;
    height: 2.3rem;
  }
  .section__main--history .card:first-child {
	margin-top:0;
	margin-bottom: 3rem;
  }
  .section__main--history .card:nth-child(2) {
    margin-top: 5rem;
  }
  .section__main--history .card:nth-child(3) {
    margin-bottom: 18rem;
  }
  .section__main--history .card:nth-child(4){
	margin-top:0;
	margin-bottom: 10rem;
  }
}
@media (max-width: 767px) {
  .section__main--history {
    padding: 6rem 0;
	background: url(../images/bg_main_history.jpg) no-repeat center top;
	background-size: cover;
  }
  .section__main--history .title {
    margin-bottom: 4.3rem;
	display: block;
  }
  .section__main--history .title em {
    font-size: 2.8rem;
	display: contents;
	word-break: keep-all;
  }
  .section__main--history .title small {
    font-size: 1.7rem;
	width: 100%;
  }
  .section__main--history .text-body {
	margin-left: 0;	
	display: block;
  }
  .section__main--history .img-box {
	margin-right: 0;
	width: 20rem;
  }
  .section__main--history .text {
	margin-top: 4vw;	
	font-weight: 300;
	white-space :pre-line;
	font-size: 4vw;
  }
  .section__main--history .text li {
	line-height: 1.2;
  }
  .section__main--history .card-body {
    gap: 1.8rem;
	margin-left: 0;
  }
  .section__main--history .card {
    min-height: 12rem;
    padding: 1.2rem;
	width: 12rem;
    height: 12rem;
    border-radius: 40rem;
	padding:3rem 2rem;
  }
  .section__main--history .card .text {
    word-break: keep-all;
    margin-left-right: 12rem;
    gap: 0.8rem;
    font-size: 4vw;
    top: 0;
    align-items: flex-start;
    margin-left: 13rem;
	width: 23rem;
  }
  .section__main--history .card .text:before {
    flex: none;
    width: 2.3rem;
    height: 2.3rem;
  }
  .section__main--history .card:first-child {
	margin-top:0;
	margin-bottom: 3rem;
  }
  .section__main--history .card:nth-child(2) {
    margin-bottom: 16rem;
  }
  .section__main--history .card:nth-child(3) {
    margin-bottom: 15rem;
  }
  .section__main--history .card:nth-child(4){
	margin-bottom:8rem;	
  }
}

/**** main History end ****/

/**********************************************
main organization
**********************************************/
.section__main--organization {
  padding: 10rem 0 10rem;
  background: url(../images/bg_main_organization.jpg) no-repeat center bottom;
  background-size:cover;
}
.section__main--organization .title {
  display: flex;
  margin-bottom: 7.5rem;
/*  text-align: center;*/
  color: var(--white);
}
.section__main--organization .title em {
  display: block;
  font-size: 5.4rem;
  font-weight: 700;
}
.section__main--organization .title small {
  display: block;
  font-weight: 600;
  font-size: 2.2rem;
  color: #80adfa;
  width: 16%;
  padding-top:5px;
}
.section__main--organization .img-box {
	display: block;
}
.section__main--organization .img-box_m {
	display: none;
}
.section__main--organization .card-body {
  display: flex;
  justify-content: center;
  gap: 2rem;
  height: 64rem;
}
.section__main--organization .card {
  width: 16rem;
  height: 16rem;
  padding: 3rem 1rem;
  border-radius: 40rem;
}
.section__main--organization .card .text {
  display: block;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.4;
}
.section__main--organization .card .text:before {
  content: "";
  display: block;
  width: 5.7rem;
  height: 5.7rem;
  margin: 0 auto 2.5rem;
  background: no-repeat center center;
  background-size: cover;
}
.section__main--organization .card:first-child {
  border: 1px solid #fff9f9;
  color: fff;
  font-size: 2rem;
  text-align: center;
  align-content: center;
}
.section__main--organization .card:nth-child(2) {
  align-self: flex-end;
  background: #f2f9ff url(../images/main_benefit_02.png) no-repeat center bottom 3.5rem / 21rem;
}
.section__main--organization .card:nth-child(3) {
  background: #fefae8 url(../images/main_benefit_03.png) no-repeat center bottom 1.5rem / 30rem;
}
.section__main--organization .card:first-child .text:before {
  background-image: url(../images/icon_check01.png);
}
.section__main--organization .card:nth-child(2) .text:before {
  background-image: url(../images/icon_check02.png);
}
.section__main--organization .card:nth-child(3) .text:before {
  background-image: url(../images/icon_check03.png);
}

@media (max-width: 1299px) {
 .section__main--organization {
	padding:10% 4%;	
}
  .section__main--organization .card-body {
    gap: 1.5rem;
  }
  .section__main--organization .card {
    flex: 1;
  }
  .section__main--organization .card .text {
    font-size: 2.2rem;
  }
}
@media (max-width: 991px) {
  .section__main--organization {
    padding: 9rem 0;
  }
  .section__main--organization .title {
    margin-bottom: 6.5rem;
  }
  .section__main--organization .title em {
    font-size: 4.5rem;
    line-height: 1.4;
  }
  .section__main--organization .title small {
    font-size: 2rem;
    line-height: 1.4;
  }
  .section__main--organization .card-body {
    flex-direction: column;
    gap: 2.5rem;
    height: auto;
  }
  .section__main--organization .card {
    display: flex;
    width: var(--full);
    height: auto;
    min-height: 24rem;
    padding: 2rem;
    border-radius: 1.2rem;
  }
  .section__main--organization .card .text {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    text-align: left;
    font-size: 2.4rem;
    line-height: 1.3;
  }
  .section__main--organization .card .text:before {
    width: 3.2rem;
    height: 3.2rem;
    margin: 0;
  }
  .section__main--organization .card:first-child {
    background-position: right 1rem top 1rem;
    background-size: 22rem;
  }
  .section__main--organization .card:nth-child(2) {
    align-self: flex-start;
    background-position: right 4rem center;
    background-size: auto 20rem;
  }
  .section__main--organization .card:nth-child(3) {
    background-position: right 0 top 1rem;
    background-size: auto 22rem;
  }
  .section__main--organization .card:first-child .text:before {
    background-image: url(../images/icon_check01.png);
  }
  .section__main--organization .card:nth-child(2) .text:before {
    background-image: url(../images/icon_check02.png);
  }
  .section__main--organization .card:nth-child(3) .text:before {
    background-image: url(../images/icon_check03.png);
  }
}
@media (max-width: 767px) {
  .section__main--organization {
    padding: 6rem 0;
  }
  .section__main--organization .title {
    margin-bottom: 4.3rem;
	display: block;
  }
  .section__main--organization .title em {
    font-size: 2.8rem;
  }
  .section__main--organization .title small {
    font-size: 1.7rem;
	width: 100%;
  }
  .section__main--organization .text-body {
	margin-left: 0;	
	display: block;
  }
  .section__main--organization .img-box {
	margin-right: 0;
	display: none;
  }
  .section__main--organization .img-box_m {
	margin-right: 0;
	display: block;
  }
  .section__main--organization .text {
	margin-top: 4vw;	
	font-weight: 300;
	white-space :pre-line;
	font-size: 4vw;
  }
  .section__main--organization .card-body {
    gap: 1.8rem;
  }
  .section__main--organization .card {
    min-height: 22rem;
    padding: 1.2rem;
  }
  .section__main--organization .card .text {
    word-break: keep-all;
    padding-right: 14rem;
    gap: 0.8rem;
    font-size: 2rem;
  }
  .section__main--organization .card .text:before {
    flex: none;
    width: 2.3rem;
    height: 2.3rem;
  }
  .section__main--organization .card:first-child {
    background-position: right 0.5rem top 0.5rem;
    background-size: 15rem;
  }
  .section__main--organization .card:nth-child(2) {
    background-position: right 2rem center;
    background-size: auto 17rem;
  }
  .section__main--organization .card:nth-child(3) {
    background-position: right 0 center;
    background-size: auto 18rem;
  }
  .section__main--organization .card:first-child .text:before {
    background-image: url(../images/icon_check01.png);
  }
  .section__main--organization .card:nth-child(2) .text:before {
    background-image: url(../images/icon_check02.png);
  }
  .section__main--organization .card:nth-child(3) .text:before {
    background-image: url(../images/icon_check03.png);
  }
}

/**** main organization end ****/

/**********************************************
main client
**********************************************/
.section__main--client {
  padding: 10rem 0 10rem;
  background: #192467;
  background-size:cover;
}
.section__main--client .title {
  display: flex;
  margin-bottom: 7.5rem;
/*  text-align: center;*/
  color: var(--white);
}
.section__main--client .title em {
  display: block;
  font-size: 5.4rem;
  font-weight: 700;
  word-break: keep-all;
  width: 98rem
}
.section__main--client .title small {
  display: block;
  font-weight: 600;
  font-size: 2.2rem;
  color: #80adfa;
  width: 16%;
  padding-top:5px;
}
.section__main--client .img-box {
  margin-top: 5rem;
  margin-left: 16%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:5rem;
}

.section__main--client .card:first-child {
  margin-right: 5rem;
}
.section__main--client .card:nth-child(2) {
  margin-right: 5rem;
}
.section__main--client .card:nth-child(3) {
  margin-right: 0rem;
}

@media (max-width: 1299px) {
.section__main--client {
  padding:10% 4%;
}
  .section__main--client .card-body {
    gap: 1.5rem;
  }
  .section__main--client .card {
    flex: 1;
  }
  .section__main--client .card .text {
    font-size: 2.2rem;
  }
}
@media (max-width: 991px) {
  .section__main--client {
    padding: 9rem 0;
  }
  .section__main--client .title {
    margin-bottom: 6.5rem;
  }
  .section__main--client .title em {
    font-size: 4.5rem;
    line-height: 1.4;
  }
  .section__main--client .title small {
    font-size: 2rem;
    line-height: 1.4;
  }
  .section__main--client .img-box {
	margin-left: 11%;
  }
  .section__main--client .card-body {
    flex-direction: column;
    gap: 2.5rem;
    height: auto;
  }
  .section__main--client .card {
    display: flex;
    width: var(--full);
    height: auto;
    min-height: 12rem;
    border-radius: 1.2rem;
  }
  .section__main--client .card .text {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    text-align: left;
    font-size: 2.4rem;
    line-height: 1.3;
  }
  .section__main--client .card .text:before {
    width: 3.2rem;
    height: 3.2rem;
    margin: 0;
  }
}
@media (max-width: 767px) {
  .section__main--client {
    padding: 6rem 0;
  }
  .section__main--client .title {
    margin-bottom: 4.3rem;
	display: block;
  }
  .section__main--client .title em {
    font-size: 2.8rem;
	display: contents;
  }
  .section__main--client .title small {
    font-size: 1.7rem;
	width: 100%;
  }
  .section__main--client .text-body {
	margin-left: 0;	
	display: block;
  }
  .section__main--client .img-box {
	margin: 0;
	grid-template-columns: 1fr 1fr;
	gap:2rem;
  }
  .section__main--client .text {
	margin-top: 4vw;	
	font-weight: 300;
	white-space :pre-line;
	font-size: 4vw;
  }
  .section__main--client .card-body {
    gap: 1.8rem;
  }
  .section__main--client .card {
    min-height: 6rem;
	padding: 0;
  }
  .section__main--client .card .text {
    word-break: keep-all;
    padding-right: 14rem;
    gap: 0.8rem;
    font-size: 2rem;
  }
  .section__main--client .card .text:before {
    flex: none;
    width: 2.3rem;
    height: 2.3rem;
  }
}

/**** main client end ****/

/**********************************************
main product
**********************************************/
.section__main--product {
  padding: 10rem 0 10rem;
  background: url("../images/bg_main_product.jpg") no-repeat center top;
  background-size:cover;
}
.section__main--product .title {
  display: flex;
  margin-bottom: 7.5rem;
/*  text-align: center;*/
  color: var(--white);
}
.section__main--product .title em {
  display: block;
  font-size: 5.4rem;
  font-weight: 700;
}
.section__main--product .title small {
  display: block;
  font-weight: 600;
  font-size: 2.2rem;
  color: #80adfa;
  width: 16%;
  padding-top:5px;
}
.section__main--product .c-title {
  display: flex;
  margin: 2.5rem 0;
  color: var(--white);
  font-size: 3rem;
  font-weight: 700;
}
.section__main--product .c-title em {
  color: #ff505b;
}
.section__main--product .c-title small {
  font-size: 2rem;
  line-height: 1.8;
  padding-left: 1rem;
}
.section__main--product .s-title {
  display: flex;
  font-weight: 300;
  font-size: 1.8rem;
  color: #d4d4d4;
  padding-top:5px;
  line-height: 1.4;
  word-break: break-word; overflow-wrap: break-word; hyphens: auto; 
}
.section__main--product .s-title em {
	color: #fff;
	font-weight: 400;
	display: contents;
}
.section__main--product .s-title_ct {
  margin: 2rem 0 1rem 0;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
  display: flex;
}
.section__main--product .s-title_t {
   display: flex;
  font-weight: 300;
  font-size: 1.8rem;
  color: #d4d4d4;
  padding-left: 1rem;
  line-height: 1.4;
}
.section__main--product .s-title_t em {
  color: #ff505b;
  display: contents;
}
.section__main--product .s-title:before {
  content: "";
  display: block;
  background: url("../images/img_bullet.png") no-repeat left;
  width: 0.5rem;
  height: 0.5rem;
  margin: 0.8rem 0.6rem 0 0;
}
.section__main--product .s-title_ct:before {
  content: "";
  display: block;
  background: url("../images/img_bullet.png") no-repeat left;
  width: 0.5rem;
  height: 0.5rem;
  margin: 0.8rem 0.6rem 0 0;
}
.section__main--product .product-box {
  display: grid;
  gap:8rem;
  margin-top: 5rem;
  grid-template-columns: 1fr 1fr 1fr
}
.section__main--product .product-box li {
  width: 100%;
}

.section__main--product .card:last-child {
  gap: 0rem;
}

@media (max-width: 1299px) {
  .section__main--product {
    padding:10% 4%;
  }
  .section__main--product .c-title{
	display: block;	
	font-size: 2.8rem;
  }
  .section__main--product .card-body {
    gap: 1.5rem;
  }
  .section__main--product .card {
    flex: 1;
  }
  .section__main--product .card .text {
    font-size: 2.2rem;
  }
}
@media (max-width: 991px) {
  .section__main--product {
    padding: 9rem 0;
  }
  .section__main--product .title {
    margin-bottom: 6.5rem;
  }
  .section__main--product .title em {
    font-size: 4.5rem;
    line-height: 1.4;
  }
  .section__main--product .title small {
    font-size: 2rem;
    line-height: 1.4;
  }
	.section__main--product .product-box{
		grid-template-columns:1fr 1fr;
	}
  .section__main--product .card-body {
    flex-direction: column;
    gap: 2.5rem;
    height: auto;
  }
  .section__main--product .card {
    display: flex;
    width: var(--full);
    height: auto;
    min-height: 24rem;
    padding: 2rem;
    border-radius: 1.2rem;
  }
  .section__main--product .card .text {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    text-align: left;
    font-size: 2.4rem;
    line-height: 1.3;
  }
  .section__main--product .card .text:before {
    width: 3.2rem;
    height: 3.2rem;
    margin: 0;
  }
  .section__main--product .card:first-child {
    background-position: right 1rem top 1rem;
    background-size: 22rem;
  }
  .section__main--product .card:nth-child(2) {
    align-self: flex-start;
    background-position: right 4rem center;
    background-size: auto 20rem;
  }
  .section__main--product .card:nth-child(3) {
    background-position: right 0 top 1rem;
    background-size: auto 22rem;
  }
  .section__main--product .card:first-child .text:before {
    background-image: url(../images/icon_check01.png);
  }
  .section__main--product .card:nth-child(2) .text:before {
    background-image: url(../images/icon_check02.png);
  }
  .section__main--product .card:nth-child(3) .text:before {
    background-image: url(../images/icon_check03.png);
  }
}
@media (max-width: 767px) {
  .section__main--product {
    padding: 6rem 0;
  }
  .section__main--product .title {
    margin-bottom: 4.3rem;
	display: block;
  }
  .section__main--product .title em {
    font-size: 2.8rem;
  }
  .section__main--product .title small {
    font-size: 1.7rem;
	width: 100%;
  }
  .section__main--product .product-box {
	grid-template-columns: 1fr;
	gap:5rem;
  }
  .section__main--product .text-body {
	margin-left: 0;	
	display: block;
  }
  .section__main--product .img-box {
	margin-right: 0;
	width: 20rem;
  }
  .section__main--product .text {
	margin-top: 4vw;	
	font-weight: 300;
	white-space :pre-line;
	font-size: 4vw;
  }
  .section__main--product .card-body {
    gap: 1.8rem;
  }
  .section__main--product .card {
    min-height: 22rem;
    padding: 1.2rem;
  }
  .section__main--product .card .text {
    word-break: keep-all;
    padding-right: 14rem;
    gap: 0.8rem;
    font-size: 2rem;
  }
  .section__main--product .card .text:before {
    flex: none;
    width: 2.3rem;
    height: 2.3rem;
  }
  .section__main--product .card:first-child {
    background-position: right 0.5rem top 0.5rem;
    background-size: 15rem;
  }
  .section__main--product .card:nth-child(2) {
    background-position: right 2rem center;
    background-size: auto 17rem;
  }
  .section__main--product .card:nth-child(3) {
    background-position: right 0 center;
    background-size: auto 18rem;
  }
  .section__main--product .card:first-child .text:before {
    background-image: url(../images/icon_check01.png);
  }
  .section__main--product .card:nth-child(2) .text:before {
    background-image: url(../images/icon_check02.png);
  }
  .section__main--product .card:nth-child(3) .text:before {
    background-image: url(../images/icon_check03.png);
  }
}

/**** main product end ****/

/**********************************************
main status
**********************************************/
.section__main--status {
  padding: 10rem 0 10rem;
  background: #262b48;
  background-size:cover;
}
.section__main--status .title {
  display: flex;
/*  text-align: center;*/
  color: var(--white);
  margin-bottom: 1rem;
}
.section__main--status .s-text {
  display: block;
  font-size: 2.4rem;
  font-weight: 400;
  margin-left: 16%;
  color: var(--white);
  margin-bottom: 7.5rem;
}
.section__main--status .title em {
  display: block;
  font-size: 5.4rem;
  font-weight: 700;
}
.section__main--status .title small {
  display: block;
  font-weight: 600;
  font-size: 2.2rem;
  color: #80adfa;
  width: 16%;
  padding-top:5px;
}
.section__main--status .table-body {
  overflow-x: auto;
  margin-left: 16%;
  width: 84%;
  display: block;
}
.section__main--status .table-body_m {
	display: none;
}
.section__main--status .table-body .text {
  display: grid;
  font-size: 1.8rem;
  color: #fff;;
  grid-template-columns:1fr 1fr;
  list-style: none;
  font-weight: 300;
}
.section__main--status .table-body .text li {
  display: flex;
}
.section__main--status .table-body .text li:last-child {
  text-align: right;
  display: block;
  color: #aaabb3;
}
  .section__main--status .table {
	border-collapse :collapse;
	color: var(--white);
    --bs-table-hover-color: var(--bs-body-color);
    margin-top: 2rem;
}

@media (max-width: 1299px) {
  .section__main--status {
    padding:10% 4%;
  }
  .section__main--status .card-body {
    gap: 1.5rem;
  }
  .section__main--status .card {
    flex: 1;
  }
  .section__main--status .card .text {
    font-size: 2.2rem;
  }
}
@media (max-width: 991px) {
  .section__main--status {
    padding: 9rem 0;
  }
  .section__main--status .title {
    margin-bottom: 6.5rem;
  }
  .section__main--status .title em {
    font-size: 4.5rem;
    line-height: 1.4;
  }
  .section__main--status .title small {
    font-size: 2rem;
    line-height: 1.4;
  }
  .section__main--status .card-body {
    flex-direction: column;
    gap: 2.5rem;
    height: auto;
  }
  .section__main--status .card {
    display: flex;
    width: var(--full);
    height: auto;
    min-height: 24rem;
    padding: 2rem;
    border-radius: 1.2rem;
  }
  .section__main--status .card .text {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    text-align: left;
    font-size: 2.4rem;
    line-height: 1.3;
  }
  .section__main--status .card .text:before {
    width: 3.2rem;
    height: 3.2rem;
    margin: 0;
  }
}
@media (max-width: 767px) {
  .section__main--status {
    padding: 6rem 0;
  }
  .section__main--status .title {
    margin-bottom: 4.3rem;
	display: block;
  }
  .section__main--status .title em {
    font-size: 2.8rem;
  }
  .section__main--status .title small {
    font-size: 1.7rem;
	width: 100%;
  }
  .section__main--status .s-text {
	margin-left: 0;
	font-size: 5vw;
	margin-bottom:3.5rem;
	letter-spacing: normal;
  }
  .section__main--status .card-body {
	overflow-x:auto;
  }
  .section__main--status .table-body {
	display: none;
  }
  .section__main--status .table-body_m {
	margin-left: 0;	
	width: 100%;
	display: block;
  }
  .section__main--status .table_m {
	border-collapse :collapse;
	color: var(--white);
    --bs-table-hover-color: var(--bs-body-color);
    border-color: var(--table-border-color);
    margin-top: 2rem;
}
.section__main--status .table-body_m .text {
  display: grid;
  font-size: 4vw;
  color: #fff;;
  grid-template-columns:1fr 1fr;
  list-style: none;
  font-weight: 300;
}
  .section__main--status .table-body_m .text li {
    display: flex;
}
  .section__main--status .table-body_m .text li:last-child {
    text-align: right;
    display: block;
    color: #aaabb3;
}
  .section__main--status .img-box {
	margin-right: 0;
	width: 20rem;
  }
  .section__main--status .text {
	margin-top: 4vw;	
	font-weight: 300;
	white-space :pre-line;
	font-size: 4vw;
  }
  .section__main--status .card-body {
    gap: 1.8rem;
  }
  .section__main--status .card {
    min-height: 22rem;
    padding: 1.2rem;
  }
  .section__main--status .card .text {
    word-break: keep-all;
    padding-right: 14rem;
    gap: 0.8rem;
    font-size: 2rem;
  }
  .section__main--status .card .text:before {
    flex: none;
    width: 2.3rem;
    height: 2.3rem;
  }
}

/**** main status end ****/

/**********************************************
main performance
**********************************************/
.section__main--performance {
  padding: 10rem 0 10rem;
  background: url("../images/bg_main_performance.jpg") no-repeat left;
  background-size:cover;
}
.section__main--performance .title {
  display: flex;
/*  text-align: center;*/
  color: var(--white);
  margin-bottom: 7.5rem;
}
.section__main--performance .s-text {
  display: flex;
  font-size: 1.6rem;
  font-weight: 300;
  margin-left: 16%;
  color: var(--white);
  line-height: 1.6;
}
.section__main--performance .title em {
  display: block;
  font-size: 5.4rem;
  font-weight: 700;
}
.section__main--performance .title small {
  display: block;
  font-weight: 600;
  font-size: 2.2rem;
  color: #80adfa;
  width: 16%;
  padding-top:5px;
}
  .section__main--performance .text-body {
	margin-left: 0;	
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	color: #fff;
	gap:5rem;
  }
.section__main--performance .s-text:before {
  content: "";
  display: block;
  background: url("../images/img_bullet.png") no-repeat left;
  width: 0.5rem;
  height: 0.5rem;
  margin: 0.8rem 0.6rem 0 0;
}

@media (max-width: 1299px) {
  .section__main--performance {
    padding:10% 4%;
  }
  .section__main--performance .card-body {
    gap: 1.5rem;
  }
  .section__main--performance .card {
    flex: 1;
  }
  .section__main--performance .card .text {
    font-size: 2.2rem;
  }
}
@media (max-width: 991px) {
  .section__main--performance {
    padding: 9rem 0;
  }
  .section__main--performance .title {
    margin-bottom: 6.5rem;
  }
  .section__main--performance .title em {
    font-size: 4.5rem;
    line-height: 1.4;
  }
  .section__main--performance .title small {
    font-size: 2rem;
    line-height: 1.4;
  }
}
@media (max-width: 767px) {
  .section__main--performance {
    padding: 6rem 0;
  }
  .section__main--performance .title {
    margin-bottom: 4.3rem;
	display: block;
  }
  .section__main--performance .title em {
    font-size: 2.8rem;
  }
  .section__main--performance .title small {
    font-size: 1.7rem;
	width: 100%;
  }
  .section__main--performance .text-body {
	margin-left: 0;	
	display: grid;
	grid-template-columns: 1fr;
	gap:2rem;
  }
  .section__main--performance .s-text{
	margin-left:0;
  }
}

/**** main performance end ****/

/**********************************************
main helpdesk
**********************************************/
.section__main--helpdesk {
  padding: 10rem 0 10rem;
  background: url("../images/bg_main_helpdesk.jpg") no-repeat left;
  background-size:cover;
}
.section__main--helpdesk .title {
  display: flex;
/*  text-align: center;*/
  color: var(--white);
  margin-bottom: 7.5rem;
}
.section__main--helpdesk .title em {
  display: block;
  font-size: 5.4rem;
  font-weight: 700;
}
.section__main--helpdesk .title small {
  display: block;
  font-weight: 600;
  font-size: 2.2rem;
  color: #80adfa;
  width: 16%;
  padding-top:5px;
}
.section__main--helpdesk .card-body {
  margin-left: 16%;	
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: #fff;
  gap:5rem;
}
.section__main--helpdesk .card {
  font-size: 3.4rem;
  font-weight: 700;
}
.section__main--helpdesk .img-box {
  display: block;
  margin-bottom: 2rem;
}
.section__main--helpdesk .s-text {
  display: block;
  font-size: 2rem;
  line-height: 1.6;
  padding-top: 3rem;
  font-weight: 200;
}
.section__main--helpdesk .s-text em {
  font-size: 3rem;
  font-weight: 700;
}
.section__main--helpdesk .s-text small {
  font-size: 1.7rem;
  margin-top: 3rem;
  display: block;
  line-height: 1.5;
  white-space:pre;
}
.section__main--helpdesk .card:first-child {
  border-right:1px solid #fff;
}

@media (max-width: 1299px) {
  .section__main--helpdesk {
    padding:10% 4%;
  }
  .section__main--helpdesk .card-body {
    gap: 3.5rem;
  }
  .section__main--helpdesk .card {
    flex: 1;
  }
  .section__main--helpdesk .card .text {
    font-size: 2.2rem;
  }
}
@media (max-width: 991px) {
  .section__main--helpdesk {
    padding: 9rem 0;
  }
  .section__main--helpdesk .title {
    margin-bottom: 6.5rem;
  }
  .section__main--helpdesk .title em {
    font-size: 4.5rem;
    line-height: 1.4;
  }
  .section__main--helpdesk .title small {
    font-size: 2rem;
    line-height: 1.4;
  }
  .section__main--helpdesk .card-body {
    gap: 6rem;
	grid-template-columns : 1fr;
  }
	.section__main--helpdesk .card:first-child {
		border:none;
	}
}
@media (max-width: 767px) {
  .section__main--helpdesk {
    padding: 6rem 0;
  }
  .section__main--helpdesk .title {
    margin-bottom: 2.3rem;
	display: block;
  }
  .section__main--helpdesk .title em {
    font-size: 2.8rem;
  }
  .section__main--helpdesk .title small {
    font-size: 1.7rem;
	width: 100%;
  }
  .section__main--helpdesk .card-body {
	margin-left: 0;	
	display: grid;
	grid-template-columns: 1fr;
	gap:2rem;
  }
.section__main--helpdesk .card {
  font-size: 7vw;
}
.section__main--helpdesk .img-box {
  display: block;
  margin: 2rem 0;
  width: 45px;
}
.section__main--helpdesk .s-text {
  font-size: 4vw;
}
.section__main--helpdesk .s-text em {
  font-size: 5vw;
}
.section__main--helpdesk .s-text small {
  font-size: 4vw;
  white-space: pre-line;
}
  .section__main--helpdesk .s-text{
	margin-left:0;
  }
	.section__main--helpdesk .card:first-child {
		border:none;
	}
}

/**** main helpdesk end ****/

/**********************************************
main contactus
**********************************************/
.section__main--contactus {
  padding: 0;
  background: url("../images/bg_main_contactus.jpg") no-repeat left;
  background-size:cover;
}
.section__main--contactus .inner {
  max-width: none;
}
.section__main--contactus .title {
  display: block;
/*  text-align: center;*/
  color: var(--white);
  margin-bottom: 12rem;
  margin-top: 8rem;
}
.section__main--contactus .title em {
  display: block;
  font-size: 3.5rem;
  font-weight: 700;
  margin-top: 2rem;
}
.section__main--contactus .title small {
  display: block;
  font-weight: 600;
  font-size: 2.2rem;
  color: #80adfa;
  width: 16%;
  padding-top:5px;
}
.section__main--contactus .card-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: #fff;
  gap:5rem;
}
.section__main--contactus .card {
  font-size: 3rem;
  font-weight: 500;
}
.section__main--contactus .img-box {
  display: block;
}
.section__main--contactus .s-text {
  font-size: 1.7rem;
  margin-top: 0.6rem;
  display: flex;
  line-height: 1.5;
  white-space:pre;
  font-weight: 200;
}
.section__main--contactus .ml_5 {
  margin-left: 5rem;
}
.section__main--contactus .s-text em {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 4rem 0 1rem 0;
}
.section__main--contactus .s-text small {
  font-size: 2rem;
  margin-right: 1rem;
  display: block;
  font-weight: 400;
  white-space:pre;
}

@media (max-width: 1299px) {
  .section__main--contactus .card-body {
    gap: 3.5rem;
  }
  .section__main--contactus .title {
	margin:3rem 0 5rem 0;	
  }
  .section__main--contactus .title em {
	font-size: 3rem;	
  }
 .section__main--contactus .card span {
	font-size: 2.4rem;	
  }
	.section__main--contactus .card .s-text {
		font-size: 1.6rem;
	}
	.section__main--contactus .card .s-text em {
		font-size: 2.2rem;
		margin: 1rem 0;
	}
	.section__main--contactus .card .s-text small {
		font-size: 1.8rem;
	}
  .section__main--contactus .title small {
	width: 100%;	
  }
  .section__main--contactus .card {
    flex: 1;
  }
  .section__main--contactus .card .text {
    font-size: 2.2rem;
  }
}
@media (max-width: 991px) {
  .section__main--contactus {
    padding: 9rem 0;
  }
  .section__main--contactus .title {
    margin-bottom: 6.5rem;
  }
  .section__main--contactus .title em {
    font-size: 4.5rem;
    line-height: 1.4;
  }
  .section__main--contactus .title small {
    font-size: 2rem;
    line-height: 1.4;
  }
	.section__main--contactus .card-body {
		grid-template-columns:1fr;
	}
}
@media (max-width: 767px) {
  .section__main--contactus {
    padding: 6rem 0;
  }
  .section__main--contactus .title {
    margin-bottom: 4.3rem;
	display: block;
  }
  .section__main--contactus .title em {
    font-size: 2.8rem;
  }
  .section__main--contactus .title small {
    font-size: 4vw;
	width: 100%;
  }
  .section__main--contactus span {
	font-size: 6vw;	
  }
  .section__main--contactus .card .s-text em {
	font-size:6vw;	
	display: block;
  }
  .section__main--contactus .card .s-text small{
	font-size: 4vw;	
  }
  .section__main--contactus .ml_5 {
    margin-left: 0;
  }
  .section__main--contactus .card-body {
	margin-left: 0;	
	display: grid;
	grid-template-columns: 1fr;
	gap:2rem;
  }
  .section__main--contactus .s-text{
	font-size: 4vw;
	white-space: pre-line;
	display: block;
  }
}

/**** main helpdesk end ****/

/**********************************************
main service
**********************************************/
.section__main--service {
  padding: 10rem 0 16rem;
  background-image: url(../images/bg_main_service.jpg), url(../images/bg_main_service_h.jpg);
  background-repeat: no-repeat, repeat-x;
  background-position: center top, left top;
  background-size: cover;
}
.section__main--service .inner {
  display: flex;
  /* justify-content: space-between; */
  
}
.section__main--service .img-box {
  flex: none;
}
.section__main--service .con-box {
  align-self: top;
}
.section__main--service .con-box .title {
  margin-bottom: 5rem;
  font-size: 5.4rem;
  line-height: 1;
  color: #fff;
  font-weight:700;
  margin-left: 6rem;
  margin-top: 12rem;
}
.section__main--service .con-box .title em {
  display: block;
  font-weight: 900;
}
.section__main--service .con-box .text {
  font-size: 3rem;
  line-height: 1.3;
  color: #fff;
  margin-left: 6rem;
  white-space: pre-line;
}
.section__main--service .card-box {
  display: flex;
}
.section__main--service .card {
  color: #fff;
  background: #465ad0;
  margin: 7rem 0 0 6rem;
  padding: 3rem;
  border-radius: 0.5rem;
  text-align: left;
  width: 32%;
}
.section__main--service .card p {
  font-size:2rem;
  padding-top: 3rem;
}

@media (max-width: 1299px) {
  .section__main--service {
    padding: 10% 4%;
    background-size: cover;
  }
  .section__main--service .img-box {
    width: 35%;
  }
  .section__main--service .img-box img {
   /* width: var(--full);*/
  }
  .section__main--service .con-box .title {
    margin-bottom: 6rem;
    font-size: 4.8rem;
	margin-top:11rem;
  }
  .section__main--service .card {
	width: 36%;
  }
  .section__main--service .con-box .text {
    font-size: 2.6rem;
  }
  .section__main--service .con-box .text mark {
    display: inline-block;
    position: relative;
    background: none;
  }
  .section__main--service .con-box .text mark span {
    position: relative;
    z-index: 2;
  }
  .section__main--service .con-box .text mark:before {
    content: "";
    position: absolute;
    bottom: 0.3rem;
    left: -0.1rem;
    right: -0.1rem;
    height: 0.7rem;
    background: #4fbbea;
  }
}
@media (max-width: 991px) {
  .section__main--service {
    padding: 10.5rem 0 5.5rem;
    background-image: url(../images/bg_main_service_m.jpg), url(../images/bg_main_service_h.jpg);
    background-repeat: no-repeat, repeat-x;
    background-position: center top, left top;
    background-size: cover;
  }
  .section__main--service .inner {
    flex-direction: column;
/*    max-width: 76rem;*/
    gap: 5rem;
    margin: 0 auto;
  }
  .section__main--service .con-box {
    /*align-self: flex-start;*/
  }
	.section__main--service .card {
		margin:5rem 0 0 3rem;
	}
  .section__main--service .con-box .title {
    margin-bottom: 2rem;
    font-size: 4.5rem;
    line-height: 1.3;
	margin-left: 3rem;
        margin-top: 0;
  }
  .section__main--service .con-box .text {
    font-size: 2rem;
	margin-left: 3rem;
  }
  .section__main--service .con-box .text mark:before {
    bottom: 0.2rem;
    height: 0.4rem;
  }
  .section__main--service .img-box {
    width: 90%;
    max-width: 82rem;
    /*margin: 0 auto;*/
  }
  .section__main--service .d-flex {
    display: flex;
  }
}
@media (max-width: 767px) {
  .section__main--service {
    padding: 7rem 0 10.6rem;
    background-size: auto var(--full);
  }
  .section__main--service .inner {
    gap: 3rem;
  }
  .section__main--service .con-box .title {
    margin-bottom: 1.3rem;
    font-size: 8vw;
	margin-top: 2rem;
	margin-left: 0;
  }
  .section__main--service .con-box .text {
    font-size: 5.8vw;
	margin-top: 2rem;
	margin-left: 0;
  }
  .section__main--service .card-box {
	display: block;
  }
  .section__main--service .card {
	margin:2rem 0 0 0;	
	width: 100%;
  }
}
/**** main helpdesk end ****/


/* 애니메이션 관련 */
.animation-type1 {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-3rem);
  transition-property: opacity, visibility, transform;
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition-duration: 1s;
}
.animation-type2 {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10rem);
  transition-property: opacity, visibility, transform;
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition-duration: 1s;
}
.animation-type3 {
  opacity: 0;
  visibility: hidden;
  transition-property: opacity, visibility;
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition-duration: 1.2s;
}
.animation-type4 {
  opacity: 0;
  visibility: hidden;
  transform: translateY(5rem);
  transition-property: opacity, visibility, transform;
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition-duration: 0.7s;
}
.animation-type5 {
  opacity: 0;
  visibility: hidden;
  transform: translateY(7rem);
  transition-property: opacity, visibility, transform;
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition-duration: 1s;
}
.animation-type6 {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10rem);
  transition-property: opacity, visibility, transform;
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition-duration: 1s;
}
.hasAnimation .animation-type1,
.hasAnimation .animation-type2,
.hasAnimation .animation-type4,
.hasAnimation .animation-type5 {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.hasAnimation .animation-type6 {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.hasAnimation .animation-type3 {
  opacity: 1;
  visibility: visible;
}
.animation-delay-5s {
  transition-delay: 0.5s;
}
.animation-delay-8s {
  transition-delay: 0.8s;
}
.animation-delay-10s {
  transition-delay: 1s;
}
.animation-delay-12s {
  transition-delay: 1.2s;
}
.animation-delay-16s {
  transition-delay: 1.6s;
}
.animation-delay-18s {
  transition-delay: 1.8s;
}
.animation-delay-20s {
  transition-delay: 2.0s;
}
