@charset "UTF-8";
.display-b {
  display: block;
}

.display-i {
  display: inline;
}

.display-i-b {
  display: inline-block;
}

.display-f {
  display: flex;
}

.display-g {
  display: grid;
}

.justify-c {
  justify-content: center;
}

.justify-sb {
  justify-content: space-between;
}

.justify-fs {
  justify-content: flex-start;
}

.justify-fe {
  justify-content: flex-end;
}

.align-items-c {
  align-items: center;
}

.align-items-fs {
  align-items: flex-start;
}

.align-items-fe {
  align-items: flex-end;
}

.align-content-c {
  align-content: center;
}

.align-content-fs {
  align-content: flex-start;
}

.align-content-fe {
  align-content: flex-end;
}

.align-content-sb {
  align-content: space-between;
}

.flex-wrap {
  flex-wrap: wrap;
}

.text-align-c {
  text-align: center;
}

.text-align-l {
  text-align: left;
}

.text-align-r {
  text-align: right;
}

.text-align-j {
  text-align: justify;
}

.margin-c {
  margin: 0 auto;
}

.margin-l {
  margin-left: auto;
}

.margin-r {
  margin-right: auto;
}

.width94 {
  width: 90.7407%;
}

.padding16-0 {
  padding: 16rem 0;
}

html,
body {
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

/*---------- 주요 서비스 바로가기 start ----------*/
.skip a {
  position: absolute;
  top: -50px;
  left: 0;
  padding: 0 15px;
  color: #fff;
  display: inline-block;
  line-height: 50px;
  background: #222;
}
.skip a:focus,
.skip a:active {
  top: 0;
}

/*---------- 주요 서비스 바로가기 end ----------*/
/*----------  header start  ----------*/
.index_header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: transparent;
}
.index_header > .container {
  padding: 4.2rem 0 4.5rem;
}
.index_header > .container .logo_wrap {
  width: 50%;
}
.index_header > .container .logo_wrap img {
  min-width: 150px;
  width: 67%;
}
.index_header > .container .gnb {
  display: none;
}
.index_header > .container > p {
  font-weight: 500;
  font-size: 3rem;
  line-height: 1.4;
  color: #fff;
  word-break: keep-all;
}
.index_header > .container > p span {
  color: #fff84a;
}
.index_header > .container > a {
  display: none;
}
.index_header > .container > .phone_area {
	padding-left:7rem;
	position:relative;
	gap:2px;
	width:185px;
    /*
	width:370px;
	gap:5px 8px;
	*/
}
.index_header > .container > .phone_area::after {
	position:absolute;
	width:5rem;
	height:5rem;
	content:"";
	top:50%;
	transform:translateY(-50%);
	left:0;
	border-radius : 100%;
	background-repeat:no-repeat;
	background-position : left center;
	background-size : 5rem 5rem;
	background-image:url(../img/call_ico.png);
}
.index_header > .container > .phone_area .txt1 {
	font-size: 17px;
	font-weight: 700;
	color:#222;
}
.index_header > .container > .phone_area .txt2 {
	color: #222;
	font-size: 13px;
	letter-spacing:-1px; 
	font-weight: 400;
	display:none;
}
.index_header > .container > .phone_area .txt2 br {
	display:none;
}
.index_header > .container > .phone_area .txt3 {
	width:100%;
	color: #4F429D;
	/*font-size: 18px;*/
	font-size:21px;
	font-weight: 700;
	gap:16px;
}
.index_header > .container > .phone_area .txt3 a:first-child {
	position:relative;
}
.index_header > .container > .phone_area .txt3 a:first-child::after {
	position: absolute;
    width: 2px;
    height: 70%;
    content: none;
    margin: 0 7px;
    display: inline-block;
    background: #ddd;
    top: 50%;
    transform: translateY(-50%);
}
.index_header.active {
  background: #fff;
  transition: 0.5s;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.index_header.active .container .gnb ul li a {
  color: #222;
  font-weight: 500;
}
.index_header.active .container p {
  color: #222;
}
.index_header.active .container p span {
  color: #4f429d;
}
.index_header.active .phone_area .left{
	color:#222;
}
.index_header.active .phone_area .right span {
  color: #4f429d;
}


/* header fixed box */
.header_fixed_box {
  transition: 0.5s;
  position: fixed;
  z-index: 100;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  visibility : hidden;
  opacity : 0;
  transition: 0.5s;
}
.header_fixed_box.active {
  visibility : visible;
  opacity : 1;
}
.header_fixed_box .tit_box .tit {
  font-weight: 400;
  line-height: 1.62;
  margin-bottom: 1rem;
  font-size: 3.7rem;
}
.header_fixed_box .tit_box .tit .point {
  color: #d91d1d;
  font-weight: 800;
}
.header_fixed_box .tit_box .tit strong {
  font-weight: inherit;
}
.header_fixed_box .tit_box .tit br {
  display: none;
}
.header_fixed_box .list_box .example_list {
  margin: 0 auto;
  cursor: pointer;
  padding: 1rem 3% 2rem;
  background: #fff;
  flex-wrap: nowrap;
  justify-content: flex-start;
  overflow-x: scroll;
  gap: 3rem;
  transition: 0.3s;
}
.header_fixed_box .list_box .example_list::-webkit-scrollbar {
  display: none;
}
.header_fixed_box .list_box .example_list li a {
  background: #4f429d;
  color: #fff;
  border-radius: 1rem;
  word-break: keep-all;
  padding: 2rem 5rem;
  font-size: 3rem;
  transition: all 0.2s;
}
.header_fixed_box .list_box .example_list li a:hover {
  transform: translateY(-3px);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

/*----------  header end  ----------*/
/*----------  main start  ----------*/
.index_main .more_btn {
  background-color: #4f429d;
  color: #fff;
  border-radius: 2rem;
  padding: 5.5rem 0;
  font-size: 4.7rem;
  line-height: 1.1;
  font-weight: 500;
  background-repeat: no-repeat;
  background-position: 90% 50%;
  background-size: 2rem 3.2rem;
  background-image: url(../img/review_arrow.png);
}

/* sec banner */
.sec_banner {
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100% auto;
  background-image: url(../img/main_bg.jpg);
  background-attachment: fixed;
  z-index: -1;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.8) 0px 18px 36px -18px inset;
}
.sec_banner .container .tit_box {
  padding: 35rem 0 30rem;
  transition: opacity 0.5s;
}
.sec_banner .container .tit_box .tit {
  font-weight: 400;
  font-size: 6.1rem;
  line-height: 1.19;
  color: #fff;
  overflow: hidden;
  margin-bottom: 3rem;
}
.sec_banner .container .tit_box .tit1 {
	margin-bottom: 0;
}
.sec_banner .container .tit_box .tit2 {
	margin-bottom: 3rem;
}
.sec_banner .container .tit_box .tit strong {
	transition: transform 1.8s;
    transform: translateY(100%);
}
.sec_banner .container .tit_box .tit2 strong{
	transition-delay: 0.4s;
}
.sec_banner .container .swiper-slide-active .tit_box .tit strong {
    transform: translateY(0);
}
.sec_banner .container .tit_box .tit span {
  color: #c1a9ff;
  font-weight: 700;
}
.sec_banner .container .tit_box .txt {
  color: #bebebe;
  font-weight: 400;
  font-size: 4.4rem;
  line-height: 1.36;
  /*
  font-size: 3.9rem;
  line-height: 5.4rem;
  */
}
.sec_banner .container .tit_box .txt span{
	/*color:#FACF36;*/
	color:#7AF0DB;
	font-weight:700;
}
.sec_banner .container .swiper_banner .swiper-container{
	position: relative;
}
.sec_banner .container .swiper_banner .swiper-container .swiper-button-prev, .sec_banner .container .swiper_banner .swiper-container .swiper-button-next{
	top: 58%;
	transform: translateY(-58%);
}
.sec_banner .container .swiper_banner .swiper-container .swiper-button-prev{
	left: -100px;
}
.sec_banner .container .swiper_banner .swiper-container .swiper-button-prev::after, .sec_banner .container .swiper_banner .swiper-container .swiper-button-next::after{
	color: #999;
}
/* sec youtube */
.sec_youtube .container {
	background:#111;
	padding: 130px 0;
}
.sec_youtube .container .wrapper {
	max-width : 1200px;
}
.sec_youtube .container .youtube_box {
	position : relative;
	width : 100%;
	height : 0;
	padding-bottom : 56.25%;
	overflow : hidden;
}
.sec_youtube .container .youtube_box  iframe,
.sec_youtube .container .youtube_box  object,
.sec_youtube .container .youtube_box  embed {
	position : absolute;
	top : 0;
	left : 0;
	width : 100%;
	height :100%;
}

/* sec count */
.sec_count {
  border-bottom: 2px solid #eee;
  border-radius: 10rem 10rem 0 0;
  //margin-top: -10rem;
  margin-top : 0 !important;
  position: relative;
  z-index: 1;
  background: #fff;
}
.sec_count .container {
  padding: 16rem 0;
}
.sec_count .container .tit_box .txt {
  font-weight: 400;
  font-size: 4.2rem;
  line-height: 1.38;
  margin-bottom: 3rem;
}
.sec_count .container .tit_box .tit {
  font-weight: 400;
  font-size: 7.8rem;
  line-height: 1.2;
  margin-bottom: 10rem;
}
.sec_count .container .tit_box .tit .point {
  font-weight: 700;
}
.sec_count .container .example_count_list {
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.sec_count .container .example_count_list li {
  border: 3px solid #4f429d;
  color: #4f429d;
  border-radius: 2rem;
  padding: 5.8rem 0;
}
.sec_count .container .example_count_list li div {
  font-weight: 400;
  font-size: 5rem;
  margin-bottom: 1rem;
}
.sec_count .container .example_count_list li div span {
  font-weight: 900;
  font-size: 9rem;
}
.sec_count .container .example_count_list li .tit {
  font-size: 3.9rem;
  line-height: 1.2;
  color: #4f429d;
}

/* sec example */
.sec_example {
  position: relative;
  background: #fff;
  z-index:1;
}
.sec_example .container {
  padding: 16rem 0;
}
.sec_example .container .fixed_box .tit_box .tit {
  font-size: 7.8rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 10rem;
}
.sec_example .container .fixed_box .tit_box .tit .point {
  color: #d91d1d;
  font-weight: 800;
}
.sec_example .container .fixed_box .tit_box .tit strong {
  font-weight: inherit;
}
.sec_example .container .example_list {
  gap: 3rem;
  transition: 0.3s;
  padding: 0 8rem;
}
.sec_example .container .example_list li a {
  background: #4f429d;
  color: #fff;
  border-radius: 1rem;
  font-size: 4.2rem;
  line-height: 1.38;
  font-weight: 400;
  padding: 2.6rem 5rem;
  transition: all 0.2s;
}
.sec_example .container .example_list li a.active {
  background: #4f429d;
  color: #fff;
}
.sec_example .container .example_list li a:hover {
  transform: translateY(-3px);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.sec_example .container > p {
  font-size: 8.8rem;
  line-height: 1.29;
  font-weight: 400;
  padding-top: 32rem;
  margin-bottom: 10rem;
}
.sec_example .container.active .fixed_box {
  position: fixed;
  z-index: 9999;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
.sec_example .container.active .tit_box .tit {
  margin-bottom: 1rem;
  font-size: 4.2rem;
}
.sec_example .container.active .tit_box .tit br {
  display: none;
}
.sec_example .container.active .list_box .example_list {
  margin: 0 auto;
  cursor: pointer;
  padding: 1rem 3% 2rem;
  background: #fff;
  flex-wrap: nowrap;
  justify-content: flex-start;
  overflow-x: scroll;
}
.sec_example .container.active .list_box .example_list::-webkit-scrollbar {
  display: none;
}
.sec_example .container.active .list_box .example_list li a {
  word-break: keep-all;
  padding: 1rem 5rem;
  font-size: 3rem;
  transition: all 0.2s;
}
.sec_example .container.active .list_box .example_list li a:hover {
  transform: translateY(-3px);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

/* sec process*/
.sec_process {
  position: relative;
  background: #bdbdbd;
  z-index:1;
}
.sec_process .container {
  padding: 16rem 0;
}
.sec_process .container > .tit_box .tit {
  color: #4f429d;
  font-weight: 700;
  font-size: 5rem;
  line-height: 1.3;
  padding: 4.8rem 0 4.9rem 21rem;
  margin-left: 7rem;
  background: #f5f5f5;
  border-top: 0.4rem solid #4f429d;
  border-bottom: 0.4rem solid #4f429d;
  margin-bottom: 7.2rem;
  position: relative;
}
.sec_process .container > .tit_box .tit::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -8rem;
  content: "";
  width: 17rem;
  height: 17rem;
  border-radius: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../img/process_ico1.png);
}
.sec_process .container > .tit_box .txt_1 {
  font-weight: 400;
  font-size: 3.9rem;
  line-height: 1.48;
  margin-bottom: 0.4rem;
}
.sec_process .container > .tit_box .txt_1 .point {
  color: #d91d1d;
  font-weight: 700;
}
.sec_process .container > .tit_box .txt_1 strong {
  font-weight: 700;
}
.sec_process .container > .tit_box .txt_2 {
  color: #facf36;
  font-weight: 700;
  font-size: 4.2rem;
  line-height: 1.38;
  position: relative;
  z-index: 1;
  margin-bottom: 10rem;
}
.sec_process .container > .tit_box .txt_2 span {
  position: relative;
}
.sec_process .container > .tit_box .txt_2 span::before {
  position: absolute;
  /*
  bottom: 5%;
  left: 0;
  width: 100%;
  height: 40%;
  background: #A5A39B;
  */
  bottom: 0;
  left: -5%;
  width: 110%;
  height: 100%;
  background: #000;

  content: "";
  z-index: -1;

  box-shadow: rgb(57 57 57 / 40%) 0px 6px;
}
.sec_process .container .process_list {
  margin-bottom: 10.2rem;
}
.sec_process .container .process_list > li {
  border-radius: 1.4rem;
  background: #fff;
}
.sec_process .container .process_list > li:not(:last-child) {
  margin-bottom: 7.2rem;
}
.sec_process .container .process_list > li .img_box {
  position: relative;
  min-height: 22rem;
  cursor: pointer;
  padding: 3.5rem 0;
}
.sec_process .container .process_list > li .img_box img {
  width: 13%;
}
.sec_process .container .process_list > li .img_box::after {
  position: absolute;
  top: 50%;
  right: 7.2rem;
  transform: translateY(-50%);
  width: 3.2rem;
  height: 2rem;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../img/process_arrow.png);
  transition: 0.3s;
}
.sec_process .container .process_list > li .img_box.active::after {
  transform: translateY(-50%) rotate(-180deg);
}
.sec_process .container .process_list > li .wrap_box {
  border-top: 1px solid #ccc;
  padding: 10.2rem 7.2rem;
  display: none;
}
.sec_process .container .process_list > li .wrap_box .depth1 > li:not(:last-child) {
  margin-bottom: 19.2rem;
  position: relative;
}
.sec_process .container .process_list > li .wrap_box .depth1 > li:not(:last-child)::after {
  position: absolute;
  bottom: -13rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 6.9rem;
  height: 10.6rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../img/process_arrow_4.png);
}
.sec_process .container .process_list > li .wrap_box .depth1 > li:last-child h5 {
  background: linear-gradient(90deg, #dbb756 0%, #aa8e42 100%);
}
.sec_process .container .process_list > li .wrap_box .depth1 > li:last-child .depth2 {
  background: #eaeaea;
  border: none;
}
.sec_process .container .process_list > li .wrap_box .depth1 > li:last-child .depth2 > li:first-child > p {
  margin-bottom: 1.3rem;
}
.sec_process .container .process_list > li .wrap_box .depth1 > li:last-child .depth2 > li > p {
  padding-left: 0;
  font-weight: 400;
}
.sec_process .container .process_list > li .wrap_box .depth1 h5 {
  font-size: 3.8rem;
  color: #fff;
  line-height: 1.18;
  font-weight: 700;
  padding: 3.2rem 0;
  background: #4f429d;
  border-radius: 1.4rem;
}
.sec_process .container .process_list > li .wrap_box .depth1 h5 span {
  color: #fff;
}
.sec_process .container .process_list > li .wrap_box .depth1 h5 span i {
  color: #d91d1d;
}
.sec_process .container .process_list > li .wrap_box .depth1 .depth2 {
  margin: 0 3rem;
  border: 1px solid #ccc;
  border-top: none;
  padding: 5.5rem 9.2rem 4.2rem;
}
.sec_process .container .process_list > li .wrap_box .depth1 .depth2 > li > p {
  font-weight: 500;
  font-size: 3.9rem;
  line-height: 1.48;
  padding-left: 4.6rem;
  margin-bottom: 2.6rem;
  position: relative;
}
.sec_process .container .process_list > li .wrap_box .depth1 .depth2 > li > p::after {
  position: absolute;
  bottom: 45%;
  left: 0;
  content: "";
  width: 2.6rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}
.sec_process .container .process_list > li .wrap_box .depth1 .depth2 > li .basic_arrow::after {
  height: 4.2rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  background-image: url(../img/process_arrow_2.png);
}
.sec_process .container .process_list > li .wrap_box .depth1 .depth2 > li .big_arrow::after {
  height: 20.4rem;
  background-image: url(../img/process_arrow_3.png);
}
.sec_process .container .process_list > li .wrap_box .depth1 .depth2 > li .ml9 {
  margin-left: 9.2rem;
}
.sec_process .container .process_list > li .wrap_box .depth1 .depth2 > li .special_arrow::after {
  height: 8.1rem;
  background-image: url(../img/process_arrow_5.png);
}
.sec_process .container .process_list > li .wrap_box .depth1 .depth2 > li .depth3 li p {
  margin-left: 4.6rem;
  padding-left: 4.6rem;
  font-weight: 500;
  font-size: 3.9rem;
  line-height: 1.48;
  margin-bottom: 1.3rem;
  position: relative;
}
.sec_process .container .process_list > li .wrap_box .depth1 .depth2 > li .depth3 li p::after {
  position: absolute;
  bottom: auto;
  top: -9%;
  left: 0;
  content: "";
  width: 2.6rem;
  height: 4.2rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  background-image: url(../img/process_arrow_2.png);
}
.sec_process .container .process_list > li .wrap_box .depth1 .depth2 .point {
  color: #d91d1d;
  font-weight: 700 !important;
}
.sec_process .container .txt_box .txt_1 {
  font-weight: 400;
  font-size: 3.9rem;
  line-height: 1.48;
  margin-bottom: 7rem;
}
.sec_process .container .txt_box .txt_1 strong {
  font-weight: 700;
}
.sec_process .container .txt_box .txt_2 {
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.8;
  margin-bottom: 2.9rem;
  color: #786fad;
}
.sec_process .container .txt_box .txt_2 span {
  font-size: 5rem;
  position: relative;
  color: #4b37c7;
}
.sec_process .container .txt_box .txt_2 span::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #4b37c7;
  content: "";
}
.sec_process .container .txt_box .txt_3 {
  margin-top: 5.8rem;
  color: #786fad;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.66;
  background: #fff;
  padding: 3rem 0;
  border: 4px solid #4f429d;
}
.sec_process .container .txt_box .txt_3 span {
  color: #4b37c7;
  font-weight: 700;
  font-size: 6rem;
}

/* sec promise*/
.sec_promise {
  position: relative;
  background: #f3f3f3;
  z-index: 1;
}
.sec_promise .container {
  padding: 16rem 0;
}
.sec_promise .container > .tit_box {
  position: relative;
}
.sec_promise .container > .tit_box::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0%;
  content: "";
  width: 35rem;
  height: 43.6rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../img/promise_bg.png);
}
.sec_promise .container > .tit_box .tit {
  font-weight: 700;
  font-size: 7.8rem;
  line-height: 1.2;
  margin-bottom: 3rem;
}
.sec_promise .container > .tit_box .txt {
  font-weight: 400;
  font-size: 4.2rem;
  line-height: 1.38;
  margin-bottom: 10rem;
}
.sec_promise .container > .tit_box .txt strong {
  font-weight: 700;
}
.sec_promise .container .wrap_box .tit_box .tit {
  color: #4f429d;
  font-weight: 700;
  font-size: 5rem;
  line-height: 1.5;
  column-gap: 1.4rem;
}
.sec_promise .container .wrap_box .tit_box .tit span {
  border: 0.5rem solid #4f429d;
  border-radius: 100%;
  width: 6.4rem;
  height: 6.4rem;
  font-size: 4.2rem;
}
.sec_promise .container .wrap_box .tit_box .tit em {
  width: 4rem;
  height: 4rem;
  border: 0.5rem solid #4f429d;
}
.sec_promise .container .wrap_box .tit_box .txt {
  margin-left: 7.2rem;
  font-size: 3.9rem;
  line-height: 1.48;
  font-weight: 400;
  margin-bottom: 7.2rem;
  white-space: nowrap;
}
.sec_promise .container .wrap_box .tit_box .txt strong {
  font-weight: 700;
}
.sec_promise .container .wrap_box .tit_box .txt span {
  color: #d91d1d;
}
.sec_promise .container .wrap_box .talk_box {
  position: relative;
}
.sec_promise .container .wrap_box .talk_box::after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.sec_promise .container .wrap_box .talk_box p {
  padding: 6.2rem 7.2rem;
  border-radius: 7.2rem;
  width: 67.1851%;
  white-space: nowrap;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -1px;
  position: relative;
  z-index: 1;
}
.sec_promise .container .wrap_box .talk_box p::before {
  position: absolute;
  width: 11.5rem;
  height: 7.7rem;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}
.sec_promise .container .wrap_box .talk_box p strong {
  font-weight: 500;
  color: #4f429d;
}
.sec_promise .container .wrap_box .talk_box p span {
  position: relative;
  z-index: 1;
}
.sec_promise .container .wrap_box .talk_box p span::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 45%;
  background: #f0ebff;
  z-index: -1;
}
.sec_promise .container .wrap_box .talk_box_1 {
  margin-bottom: 14rem;
}
.sec_promise .container .wrap_box .talk_box_1 p {
  background: #ffffff;
}
.sec_promise .container .wrap_box .talk_box_1 p::before {
  bottom: 0;
  right: 0;
  background-image: url(../img/promise_arrow1.png);
}
.sec_promise .container .wrap_box .talk_box_1::after {
  top: 0;
  right: 0;
  width: 30.4rem;
  height: 54.6rem;
  background-image: url(../img/promise_man.png);
}
.sec_promise .container .wrap_box .talk_box_2 {
  margin-bottom: 10.9rem;
}
.sec_promise .container .wrap_box .talk_box_2 p {
  background: #ffffff;
}
.sec_promise .container .wrap_box .talk_box_2 p::before {
  bottom: 0;
  left: 0;
  background-image: url(../img/promise_arrow1.png);
  transform: scaleX(-1);
}
.sec_promise .container .wrap_box .talk_box_2::after {
  bottom: 0;
  left: 0;
  width: 23.6rem;
  height: 50.1rem;
  background-image: url(../img/promise_woman.png);
}
.sec_promise .container .wrap_box .talk_box_3 {
  margin-bottom: 3rem;
}
.sec_promise .container .wrap_box .talk_box_3 p {
  margin-left: 7.2rem;
  background: #4f429d;
  color: #fff;
}
.sec_promise .container .wrap_box .talk_box_3 p::before {
  top: 0;
  left: 0;
  background-image: url(../img/promise_arrow2.png);
}
.sec_promise .container .wrap_box .talk_box_3::after {
  bottom: -6.9rem;
  right: -5%;
  width: 40.9rem;
  height: 34.3rem;
  background-image: url(../img/promise_paper.png);
  z-index: 2;
}
.sec_promise .container .final_box p {
  padding: 0 7.2rem;
  font-weight: 400;
  font-size: 3.9rem;
  line-height: 1.48;
  margin-bottom: 7.2rem;
}
.sec_promise .container .final_box p strong {
  font-weight: 700;
}
.sec_promise .container .final_box h5 {
  font-size: 5rem;
  line-height: 1.5;
  font-weight: 400;
}
.sec_promise .container .final_box h5 span {
  color: #d91d1d;
  position: relative;
}
.sec_promise .container .final_box h5 span::after {
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 100%;
  height: 3px;
  background: #d91d1d;
}
.sec_promise .container .final_box h5 span strong {
  font-weight: 700;
}
.sec_promise .container .final_box h5 span span {
  position: relative;
}
.sec_promise .container .final_box h5 span span::after {
  position: absolute;
  width: 0.9rem;
  height: 0.9rem;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  background: #d91d1d;
  border-radius: 100%;
}

/* sec strong */
.sec_strong {
  position: relative;
  background: #4f429d;
  z-index: 1;
}
.sec_strong .container {
  padding: 16rem 0;
  color: #fff;
}
.sec_strong .container h2 {
  font-weight: 700;
  font-size: 7.8rem;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 10rem;
}
.sec_strong .container .cont_box .tit {
  font-size: 4rem;
  line-height: 1.37;
  font-weight: 400;
  padding: 1.6rem 0 1.6rem 12rem;
  margin-left: 7rem;
  margin-bottom: 7.2rem;
  background: #341f6f;
  color: #fff;
  border-top: 0.4rem solid #a58ee0;
  border-bottom: 0.4rem solid #a58ee0;
  position: relative;
}
.sec_strong .container .cont_box .tit span {
  font-weight: 400;
  font-size: 3rem;
  line-height: 1.166;
  margin-left: 8px;
}
.sec_strong .container .cont_box .tit::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -8rem;
  content: "";
  width: 17rem;
  height: 17rem;
  border-radius: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../img/strong_ico1.png);
}
.sec_strong .container .cont_box1 .txt {
  padding-left: 27.8rem;
  position: relative;
  font-size: 3.9rem;
  line-height: 1.48;
  font-weight: 400;
  margin-bottom: 7.4rem;
}
.sec_strong .container .cont_box1 .txt::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 6.4rem;
  width: 17.4rem;
  height: 19.9rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  background-image: url(../img/strong_woman.png);
  content: "";
  border-radius: 50px;
}
.sec_strong .container .cont_box1 ul {
  padding-left: 5rem;
  margin-bottom: 17rem;
}
.sec_strong .container .cont_box1 ul li {
  background: #341f6e;
  border-right: 2px solid #a58ee0;
  padding: 1.2rem 0.5rem 1.2rem 7.9rem;
  font-weight: 400;
  font-size: 3.9rem;
  line-height: 1.48;
  position: relative;
  word-break: keep-all;
}
.sec_strong .container .cont_box1 ul li:not(:last-child) {
  margin-bottom: 3.9rem;
}
.sec_strong .container .cont_box1 ul li span {
  color: #f6e6b1;
  font-weight: 500;
}
.sec_strong .container .cont_box1 ul li::before,
.sec_strong .container .cont_box1 ul li::after {
  position: absolute;
  width: 7rem;
  height: 7rem;
  top: 0;
  left: -3.5rem;
}
.sec_strong .container .cont_box1 ul li::before {
  background: #341f6e;
  border: 2px solid #a58ee0;
  transform: rotate(45deg);
  content: "";
}
.sec_strong .container .cont_box1 ul li::after {
  content: "1";
  font-weight: 400;
  font-size: 3.9rem;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec_strong .container .cont_box1 ul li:nth-child(1)::after {
  content: "1";
}
.sec_strong .container .cont_box1 ul li:nth-child(2)::after {
  content: "2";
}
.sec_strong .container .cont_box1 ul li:nth-child(3)::after {
  content: "3";
}
.sec_strong .container .cont_box1 ul li:nth-child(4)::after {
  content: "4";
}
.sec_strong .container .cont_box1 ul li:nth-child(5)::after {
  content: "5";
}
.sec_strong .container .cont_box2 .txt1 {
  font-weight: 400;
  font-size: 3.9rem;
  line-height: 1.48;
  margin-bottom: 4.5rem;
  white-space: nowrap;
}
.sec_strong .container .cont_box2 .txt1 span {
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.sec_strong .container .cont_box2 .txt1 span::after {
  position: absolute;
  content: "";
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 3rem;
  background: #341f6e;
  z-index: -1;
}
.sec_strong .container .cont_box2 .txt2 {
  font-weight: 400;
  font-size: 4.2rem;
  line-height: 1.38;
  margin-bottom: 28.9rem;
  color: #fff84a;
}
.sec_strong .container .cont_box2 .txt2 span {
  font-weight: 700;
}
.sec_strong .container .cont_box3 .img_box {
  position: relative;
  margin: 0 7.2rem 37rem 7.2rem;
}
.sec_strong .container .cont_box3 .img_box::after {
  position: absolute;
  top: calc(100% + 7.2rem);
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 8.7rem;
  height: 22.6rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../img/strong_arrow.png);
}
.sec_strong .container .cont_box3 .img_box .txt {
  width: 28rem;
  height: 28rem;
  position: absolute;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 100%;
  font-size: 3.5rem;
  line-height: 1.4;
  font-weight: 400;
}
.sec_strong .container .cont_box3 .img_box .txt strong {
  color: #a58ee0;
  font-weight: 700;
}
.sec_strong .container .cont_box3 .img_box .txt1 {
  left: -5.2rem;
  top: -9.5rem;
}
.sec_strong .container .cont_box3 .img_box .txt2 {
  top: -21.7rem;
  left: 50%;
  transform: translateX(-50%);
}
.sec_strong .container .cont_box3 .img_box .txt3 {
  top: -9.5rem;
  right: -5.2rem;
}
.sec_strong .container .cont_box3 .txt_box p {
  font-weight: 400;
  font-size: 4.2rem;
  line-height: 1.38;
  padding-left: 23.1rem;
  position: relative;
}
.sec_strong .container .cont_box3 .txt_box p::after {
  position: absolute;
  content: "";
  width: 13.8rem;
  height: 14.9rem;
  left: 5.3rem;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../img/strong_paper.png);
}
.sec_strong .container .cont_box3 .txt_box p span {
  font-weight: 700;
}

/* sec solution1 */
.sec_solution1,
.sec_solution2 {
  position: relative;
  z-index: 1;
}
.sec_solution1 {
  background: #fff;
}
.sec_solution1 .container {
  padding: 16rem 0;
}
.sec_solution1 .container .tit {
  font-weight: 700;
  font-size: 7.8rem;
  line-height: 1.2;
  margin-bottom: 10rem;
}
.sec_solution1 .container .tit span {
  border-bottom: 0.5rem solid #222;
}
.sec_solution1 .container ul {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 8rem;
}
.sec_solution1 .container ul li {
  border: 3px solid #ddd;
  min-height: 34.5rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.sec_solution1 .container ul li:nth-child(n + 1) {
  margin-left: -3px;
}
.sec_solution1 .container ul li:nth-child(n + 2) {
  margin-left: -3px;
}
.sec_solution1 .container ul li:not(:nth-child(1), :nth-child(2), :nth-child(3)) {
  margin-top: -3px;
}
.sec_solution1 .container ul li:nth-child(1) {
  border-radius: 3.4rem 0px 0px 0px;
}
.sec_solution1 .container ul li:nth-child(3) {
  border-radius: 0px 3.4rem 0px 0px;
}
.sec_solution1 .container ul li:nth-child(7) {
  border-radius: 0px 0px 0px 3.4rem;
}
.sec_solution1 .container ul li a {
  row-gap: 4.2rem;
  width: 100%;
  height: 100%;
}
.sec_solution1 .container ul li a .img_box {
  width: 8rem;
  height: 8rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
}
.sec_solution1 .container ul li a p {
  width: 100%;
  font-weight: 500;
  font-size: 3.3rem;
  line-height:1.19;
  min-height: 7.8rem;
}
.sec_solution1 .container ul li:nth-child(1) .img_box {
  background-image: url(../img/solution1_ico1.png);
}
.sec_solution1 .container ul li:nth-child(1):hover {
  background-image: url(../img/solution1_hover1.jpg);
}
.sec_solution1 .container ul li:nth-child(1):hover .img_box {
  background-image: url(../img/solution1_ico1_hover.png);
}
.sec_solution1 .container ul li:nth-child(2) .img_box {
  background-image: url(../img/solution1_ico2.png);
}
.sec_solution1 .container ul li:nth-child(2):hover {
  background-image: url(../img/solution1_hover2.jpg);
}
.sec_solution1 .container ul li:nth-child(2):hover .img_box {
  background-image: url(../img/solution1_ico2_hover.png);
}
.sec_solution1 .container ul li:nth-child(3) .img_box {
  background-image: url(../img/solution1_ico3.png);
}
.sec_solution1 .container ul li:nth-child(3):hover {
  background-image: url(../img/solution1_hover3.jpg);
}
.sec_solution1 .container ul li:nth-child(3):hover .img_box {
  background-image: url(../img/solution1_ico3_hover.png);
}
.sec_solution1 .container ul li:nth-child(4) .img_box {
  background-image: url(../img/solution1_ico4.png);
}
.sec_solution1 .container ul li:nth-child(4):hover {
  background-image: url(../img/solution1_hover4.jpg);
}
.sec_solution1 .container ul li:nth-child(4):hover .img_box {
  background-image: url(../img/solution1_ico4_hover.png);
}
.sec_solution1 .container ul li:nth-child(5) .img_box {
  background-image: url(../img/solution1_ico5.png);
}
.sec_solution1 .container ul li:nth-child(5):hover {
  background-image: url(../img/solution1_hover5.jpg);
}
.sec_solution1 .container ul li:nth-child(5):hover .img_box {
  background-image: url(../img/solution1_ico5_hover.png);
}
.sec_solution1 .container ul li:nth-child(6) .img_box {
  background-image: url(../img/solution1_ico6.png);
}
.sec_solution1 .container ul li:nth-child(6):hover {
  background-image: url(../img/solution1_hover6.jpg);
}
.sec_solution1 .container ul li:nth-child(6):hover .img_box {
  background-image: url(../img/solution1_ico6_hover.png);
}
.sec_solution1 .container ul li:nth-child(7) .img_box {
  background-image: url(../img/solution1_ico7.png);
}
.sec_solution1 .container ul li:nth-child(7):hover {
  background-image: url(../img/solution1_hover7.jpg);
}
.sec_solution1 .container ul li:nth-child(7):hover .img_box {
  background-image: url(../img/solution1_ico7_hover.png);
}
.sec_solution1 .container ul li:hover {
  color: #fff;
}
.sec_solution1 .container .notify_box {
  border: 5px solid #8e72d8;
  border-radius: 3.4rem;
  padding: 6rem 0;
}
.sec_solution1 .container .notify_box p {
  font-size: 4.5rem;
  line-height: 1.466;
  font-weight: 400;
}
.sec_solution1 .container .notify_box p span {
  font-weight: 700;
}

/* sec solution2 */
.sec_solution2 {
  background: #4f429d;
  color: #fff;
}
.sec_solution2 .container {
  padding: 16rem 0;
}
.sec_solution2 .container .tit_box .tit {
  font-size: 7.8rem;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 3rem;
  color: #fff;
}
.sec_solution2 .container .tit_box .txt {
  font-weight: 400;
  font-size: 4.2rem;
  line-height: 1.38;
}
.sec_solution2 .container .tit_box .txt span {
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.sec_solution2 .container .tit_box .txt span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #d91d1d;
  width: calc(100% + 1rem);
  height: 100%;
  content: "";
  z-index: -1;
}
.sec_solution2 .container .cont_box {
  margin-top: 10rem;
}
.sec_solution2 .container .cont_box a {
  gap: 7rem;
  padding: 4rem;
  transition: all 0.2s;
  border-radius: 3rem;
}
.sec_solution2 .container .cont_box a:hover {
  transform: translateY(-5px);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 60px 40px -7px;
}
.sec_solution2 .container .cont_box a .img_box {
  min-width: 25rem;
  width: 25rem;
  height: 25rem;
  border-radius: 100%;
  background-color: #ecedef;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 35%;
  margin-bottom: 7.2rem;
  box-shadow: 4px 10px 30px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}
.sec_solution2 .container .cont_box a .txt_box {
  width: calc(100% - 25rem);
  word-break: keep-all;
  white-space: nowrap;
}
.sec_solution2 .container .cont_box a .txt_box h4 {
  font-weight: 500;
  font-size: 5.4rem;
  line-height: 5.8rem;
  margin-bottom: 2.7rem;
  color: #fff;
}
.sec_solution2 .container .cont_box a .txt_box p {
  color: #fff;
  font-size: 3.5rem;
  line-height: 1.71;
}
.sec_solution2 .container .cont_box a .txt_box p span {
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.sec_solution2 .container .cont_box a .txt_box p span::after {
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 3rem;
  content: "";
  background: #d91d1d;
  z-index: -1;
}
.sec_solution2 .container .cont_box1 .img_box {
  background-image: url(../img/solution2_ico1.png);
}
.sec_solution2 .container .cont_box1:hover .img_box {
  background-image: url(../img/solution2_ico1_hover.png);
  background-size: 101% !important;
}
.sec_solution2 .container .cont_box2 .img_box {
  background-image: url(../img/solution2_ico2.png);
}
.sec_solution2 .container .cont_box2:hover .img_box {
  background-image: url(../img/solution2_ico2_hover.png);
  background-size: 101% !important;
}
.sec_solution2 .container .cont_box3 .img_box {
  background-image: url(../img/solution2_ico3.png);
}
.sec_solution2 .container .cont_box3:hover .img_box {
  background-image: url(../img/solution2_ico3_hover.png);
  background-size: 101% !important;
}















/* sec solution2_2 */
.sec_solution2_2 {
  background: #f8f8f8;
  position: relative;
  z-index: 1;
}
.sec_solution2_2 .container {
  padding: 25rem 0;
  max-width: 1200px !important;
}
.sec_solution2_2 .container > .tit_box .tit {
  font-size: 8.8rem;
  line-height: 1.2955;
  font-weight: 400;
  margin-bottom: 10rem;
}
.sec_solution2_2 .container > .tit_box .tit span {
  color: #4f429d;
  font-weight: 700;
}
.sec_solution2_2 .container .cont .step_area ul {
  position: relative;
  grid-template-columns: .5fr 1fr 1fr 1fr 1fr;
  margin-bottom:10rem;
}
.sec_solution2_2 .container .cont .step_area ul::after {
  position: absolute;
  /*content: "";*/
  bottom: 35%;
  right: calc(7.3rem / 2);
  width: 76%;
  height: 2px;
  border-top: 2px dashed #ccc;
}

.sec_solution2_2 .container .cont .step_area ul li {
  position: relative;
  z-index: 1;
  padding: 0 3.65rem;
}
.sec_solution2_2 .container .cont .step_area ul li:nth-child(2) .img_box img {
  width: 100%;
}
.sec_solution2_2 .container .cont .step_area ul li:nth-child(2) .circle_box::after,
.sec_solution2_2 .container .cont .step_area ul li:last-child .circle_box::before {
  display: none;
}
.sec_solution2_2 .container .cont .step_area ul li:not(:nth-child(2)) .img_box img {
  width: 70px;
}
.sec_solution2_2 .container .cont .step_area ul li.on .circle_box {
  background: #4f429d;
  width: 100%;
}
.sec_solution2_2 .container .cont .step_area ul li.on .circle_box p {
  color: #fff;
}
.sec_solution2_2 .container .cont .step_area ul li.on .circle_box p strong {
  color: #fff;
}
.sec_solution2_2 .container .cont .step_area ul li .img_box {
  margin-bottom: 3rem;
  height: 70px;
}
.sec_solution2_2 .container .cont .step_area ul li .img_box img {
  width: auto;
}
.sec_solution2_2 .container .cont .step_area ul li .circle_box {
  background: #fff;
  border-radius: 100%;
  border: 1px solid #ddd;
  aspect-ratio: 1/1;
  position: relative;
  transition: 1s;
  z-index:3;
}
.sec_solution2_2 .container .cont .step_area ul li .circle_box::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: -32px;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 100%;
  background: #888;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../img/step_icon.png);
  z-index: 1;
}
.sec_solution2_2 .container .cont .step_area ul li .circle_box::before {
  position: absolute;
  content: "";
  bottom: 50%;
  right: -76%;
  width: 76%;
  height: 2px;
  border-top: 2px dashed #ccc;
}
.sec_solution2_2 .container .cont .step_area ul li .circle_box p {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.33;
  color: #999;
  transition: .3s;
}
.sec_solution2_2 .container .cont .step_area ul li .circle_box p strong {
  color: #222;
  font-weight: 700;
  font-size: 3.2rem;
  transition: .3s;
}
.sec_solution2_2 .container .cont .detail_area .detail_list {
  grid-template-columns: .5fr 1fr 1fr 1fr 1fr;
}
.sec_solution2_2 .container .cont .detail_area .detail_list >li:not(:first-child) { 
  opacity:.4;
  transition: .3s;
}
.sec_solution2_2 .container .cont .detail_area .detail_list >li.on {
  opacity:1 !important; 
} 
.sec_solution2_2 .container .cont .detail_area .detail_list li:not(:first-child) .box .inner_list {
  border-left:none;
}
.sec_solution2_2 .container .cont .detail_area .detail_list .mo {
  display: none !important;
}
.sec_solution2_2 .container .cont .detail_area .detail_list .box {

}
.sec_solution2_2 .container .cont .detail_area .detail_list .box .sub_tit {
  border: 1px solid #ddd;
  background: #eee;
  color: #222;
  font-size: 3.9rem;
  font-weight: 400;
  line-height: 1.6154; /* 161.538% */
}
.sec_solution2_2 .container .cont .detail_area .detail_list .box1 .sub_tit {
  border-bottom :none;
}
.sec_solution2_2 .container .cont .detail_area .detail_list .box3 .sub_tit {
  background: #4F429D;
  color: #FFF;
  border-color: #4F429D;
}
.sec_solution2_2 .container .cont .detail_area .detail_list .box .inner_list {
  border: 1px solid #ddd;
  background: #fff;
}

.sec_solution2_2 .container .cont .detail_area .detail_list .box1 .inner_list{
  border-bottom :none;
}
.sec_solution2_2 .container .cont .detail_area .detail_list .box3 .inner_list {
  border: 3px solid #4F429D;
}
.sec_solution2_2 .container .cont .detail_area .detail_list .step1 .box .inner_list {
  border-left:none;
}
.sec_solution2_2 .container .cont .detail_area .detail_list .box .inner_list li {
  color: #222;
  font-size: 2.9rem;
  font-weight: 400;
  line-height: 1.61; /* 161.538% */
  width:100%;
  padding: 0 3rem;
}
.sec_solution2_2 .container .cont .detail_area .detail_list .box .inner_list li.red {
  color: #d91d1d;
}
.sec_solution2_2 .container .cont .detail_area .detail_list .box .inner_list li.point span{
	background: #FFFDD7;
}
.sec_solution2_2 .container .cont .detail_area .detail_list .box .sub_tit,
.sec_solution2_2 .container .cont .detail_area .detail_list .box .inner_list{
  	display:flex;
	align-items:center;
	flex-wrap:wrap;
}
.sec_solution2_2 .container .cont .detail_area .detail_list .box .sub_tit {
	justify-content: center;
}
.sec_solution2_2 .container .cont .detail_area .detail_list .box .inner_list {
	align-content: center;
}
.sec_solution2_2 .container .cont .detail_area .detail_list .box1 .sub_tit,
.sec_solution2_2 .container .cont .detail_area .detail_list .box1 .inner_list{
    min-height:180px;
}
.sec_solution2_2 .container .cont .detail_area .detail_list .box2 .sub_tit,
.sec_solution2_2 .container .cont .detail_area .detail_list .box2 .inner_list{
    min-height:210px;
}
.sec_solution2_2 .container .cont .detail_area .detail_list .box3 .sub_tit,
.sec_solution2_2 .container .cont .detail_area .detail_list .box3 .inner_list{
    min-height:360px;
}
.sec_solution2_2 .container .cont .detail_area .detail_list .tit_box {
  background: #4f429d;
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  padding: 47px 0;
}































/* sec text*/
/*
.sec_text {
  .container {
    padding: 20rem 0;
    p {
      font-family: "Nanum Myeongjo", serif;
      font-size: 4.5rem;
      line-height: 8rem;
      font-weight: 400;
      strong {
        font-weight: 800;
      }
    }
  }
}
*/
/*sec_introduce*/
.sec_introduce {
  position: relative;
  z-index: 1;
  border-bottom: 2px solid #eee;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../img/introduce_bg.jpg);
  background-attachment: fixed;
}
.sec_introduce .container {
  padding: 16rem 0;
}
.sec_introduce .container .cont_box {
  border-radius: 2rem;
  overflow: hidden;
}
.sec_introduce .container .cont_box:not(:last-child) {
  margin-bottom: 16rem;
}
.sec_introduce .container .cont_box .thumb_box {
  position: relative;
  background-color: #e1e1e1;
}
.sec_introduce .container .cont_box .thumb_box img {
  width: 26%;
}
.sec_introduce .container .cont_box .thumb_box .person {
  width: 100%;
}
.sec_introduce .container .cont_box .thumb_box .paper {
  position: absolute;
  right: 7.4rem;
  top: calc(100% - 10.2rem);
  z-index: 1;
}
.sec_introduce .container .cont_box .txt_box {
  background: #fafafa;
  padding: 10.2rem 7.2rem;
  position: relative;
}
.sec_introduce .container .cont_box .txt_box h4 {
  font-size: 3.9rem;
  line-height: 1.4872;
  font-weight: 400;
  margin-bottom: 7.3rem;
}
.sec_introduce .container .cont_box .txt_box h4 strong {
  font-weight: 700;
  color: #4f429d;
}
.sec_introduce .container .cont_box .txt_box .ment_tit {
  font-weight: 700;
  font-size: 5rem;
  line-height: 1.5;
  margin-bottom: 3.5rem;
}
.sec_introduce .container .cont_box .txt_box .ment_txt {
  color: #757575;
  font-size: 3.9rem;
  line-height: 1.48;
}
.sec_introduce .container .cont_box .txt_box .history_btn {
  position: absolute;
  left: 7.2rem;
  top: -5.2rem;
  min-width: 27.7rem;
  color: #fff;
  font-weight: 700;
  padding: 2.3rem 4.2rem;
  font-size: 3.9rem;
  line-height: 1.48;
  background-color: #4f429d;
  box-shadow: 0px 0px 30px rgba(47, 39, 101, 0.6);
  border-radius: 2rem;
  cursor: pointer;
}
.sec_introduce .container .cont_box .txt_box .history_btn::after {
  position: absolute;
  top: 50%;
  right: 5.2rem;
  transform: translateY(-50%);
  width: 1rem;
  height: 2rem;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../img/introduce_arrow.png);
}

/* sec review */
.sec_review {
  position: relative;
  z-index: 1;
  background: #fff;
}
.sec_review .container {
  padding: 16rem 0;
}
.sec_review .container .tit {
  font-weight: 400;
  font-size: 7.8rem;
  line-height: 1.2;
  margin-bottom: 10rem;
}
.sec_review .container .tit span {
  font-weight: 600;
}
.sec_review .container .img_box {
  //position : relative;
  //height: 0;
  //padding-bottom : 56.25%;
  margin-bottom: 7.2rem;
  max-height: 395px;
  height: 200px;
}
.sec_review .container .img_box iframe {
  //position : absolute;
  //top : 0;
  //left : 0;
  //height : 100%;
  //width: 100%;
}

/*sec form*/
.sec_form {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  background-image: url(../img/form_bg.jpg);
  background-attachment: fixed;
  position: relative;
}
.sec_form::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}
.sec_form .container {
  position: relative;
  z-index: 1;
  padding: 16rem 0;
}
.sec_form .container .tit_box .tit {
  font-weight: 400;
  font-size: 8.8rem;
  line-height: 1.29;
  color: #fff;
  margin-bottom: 3rem;
}
.sec_form .container .tit_box .txt {
  font-size: 4.2rem;
  line-height: 1.38;
  color: #fff;
  margin-bottom: 10rem;
}
.sec_form .container .tit_box .txt .point {
  font-weight: 700;
  color: #a58ee0;
}
.sec_form .container .form_box {
  background: #fff;
  border-radius: 3.4rem;
  padding: 10.2rem 7.4rem 10.2rem 7.2rem;
  margin-bottom: 8rem;
}
.sec_form .container .form_box .write_box {
  margin-bottom: 7.2rem;
}
.sec_form .container .form_box .write_box label {
  color: #111;
  font-size: 4.2rem;
  font-weight: 500;
  line-height: 1.19;
  margin-bottom: 3rem;
}
.sec_form .container .form_box .write_box label span {
  position: relative;
}
.sec_form .container .form_box .write_box label span::after {
  position: absolute;
  top: 0;
  right: -2.4rem;
  width: 1.4rem;
  height: 1.4rem;
  content: "";
  background: #a58ee0;
  border-radius: 100%;
}
.sec_form .container .form_box .write_box input,
.sec_form .container .form_box .write_box textarea {
  width: 100%;
  background: #f8f8f8;
  border-radius: 2rem;
  padding: 3.9rem 3.2rem;
  font-size: 3.8rem;
  line-height: 1.18;
  border: 0 none;
  outline: none;
}
.sec_form .container .form_box .write_box input::placeholder,
.sec_form .container .form_box .write_box textarea::placeholder {
  color: #ccc;
  word-break: keep-all;
  line-height: 5.2rem;
}
.sec_form .container .form_box .agree_box {
  margin-bottom: 7.2rem;
}
.sec_form .container .form_box .agree_box input {
  visibility: hidden;
}
.sec_form .container .form_box .agree_box label {
  padding-left: 6.7rem;
  font-size: 3.4rem;
  line-height: 1.5;
  position: relative;
  cursor: pointer;
}
.sec_form .container .form_box .agree_box label::after {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  width: 3.7rem;
  height: 3.7rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  background-image: url(../img/ico_check.svg);
}
.sec_form .container .form_box .agree_box label span {
  color: #4f429d;
}
.sec_form .container .form_box .agree_box input:checked + label::after {
  background-image: url(../img/ico_checked.svg);
}
.sec_form .container .form_box .agree_box .detail_btn {
  color: #bbb;
  margin-left: 3rem;
  font-size: 3.4rem;
  line-height: 5.2rem;
}
.sec_form .container .form_box .submit_btn {
  width: 100%;
  background: #4f429d;
  box-shadow: 0px 0px 30px rgba(47, 39, 101, 0.6);
  border-radius: 2rem;
  padding: 5.5rem 0;
  color: #fff;
  font-size: 4.7rem;
  font-weight: 500;
  line-height: 1.1;
}
.sec_form .container .notify_box {
  border: 5px solid #8e72d8;
  border-radius: 3.4rem;
  padding: 6rem 0;
}
.sec_form .container .notify_box p {
  color: #fff;
  font-size: 4.5rem;
  line-height: 1.466;
  font-weight: 400;
}
.sec_form .container .notify_box p span {
  font-weight: 700;
}

/*sec map*/
.sec_map .container {
  position: relative;
}
.sec_map .container .map_box {
  height: 152.2rem;
  overflow-y : hidden;
}
.sec_map .container .map_box iframe {
  pointer-events: none;
}
.sec_map .container .txt_box {
  position: absolute;
  top: 8.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.sec_map .container .txt_box .company_info_list {
  background: #4f429d;
  box-shadow: 0px 0px 0.3rem rgba(47, 39, 101, 0.6);
  border-radius: 3.4rem;
  padding: 7rem 7.2rem;
  position: relative;
}
.sec_map .container .txt_box .company_info_list li:nth-child(1) {
  margin-bottom: 4.8rem;
}
.sec_map .container .txt_box .company_info_list li:not(:last-child, :first-child) {
  margin-bottom: 5.2rem;
}
.sec_map .container .txt_box .company_info_list li img {
  width: 46.9387%;
  min-width: 80px;
}
.sec_map .container .txt_box .company_info_list li h5 {
  color: #fff;
  font-size: 3.9rem;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 2.4rem;
}
.sec_map .container .txt_box .company_info_list li p {
  color: #fff;
  font-size: 3.9rem;
  line-height: 1.4;
  font-weight: 400;
}
.sec_map .container .txt_box .map_btn {
  position: absolute;
  bottom: 7rem;
  right: 6rem;
  min-width: 27.7rem;
  color: #fff;
  font-weight: 700;
  padding: 2.3rem 4.2rem;
  font-size: 2.7rem;
  line-height: 2.1;
  background-color: #4f429d;
  box-shadow: 0px 0px 30px rgba(47, 39, 101, 0.6);
  border-radius: 2rem;
}
.sec_map .container .txt_box .map_btn::after {
  position: absolute;
  top: 50%;
  right: 4.5rem;
  transform: translateY(-50%);
  width: 1rem;
  height: 2rem;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../img/introduce_arrow.png);
}

/* bottom nav*/
.bottom_nav {
	transition : .5s;
}
.bottom_nav ul li {
  padding: 4rem 0;
  width: 33.3333333333%;
  z-index: 1;
}
.bottom_nav ul li:not(:last-child) {
  background: #4f429d;
}
.bottom_nav ul li:first-child {
  border-right: 1px solid #71699c;
}
.bottom_nav ul li:last-child {
  background: #000;
}
.bottom_nav ul li:nth-child(1) .ico_box {
  background-image: url(../img/nav_ico_1.png);
}
.bottom_nav ul li:nth-child(2) .ico_box {
  background-image: url(../img/nav_ico_2.png);
}
.bottom_nav ul li:nth-child(3) .ico_box {
  background-image: url(../img/nav_ico_3.png);
}
.bottom_nav ul li .ico_box {
  width: 4.5rem;
  height: 4.5rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
  margin-bottom: 1.9rem;
}
.bottom_nav ul li p {
  width: 100%;
  color: #fff;
  font-size: 3.7rem;
  font-weight: 500;
  line-height: 1.2;
}
.bottom_nav ul li p span {
  font-weight: 400;
  font-size: 3.3rem;
  line-height: 1.3;
}
.bottom_nav.active {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  box-shadow: rgba(0, 0, 0, 0.24) 0px -3px 8px;
}

/*----------  main end  ----------*/
/*----------  foot start  ----------*/
.index_footer {
  position: relative;
  background: #333;
  color: #fff;
  z-index: 1;
}
.index_footer .container {
  padding: 10rem 0;
}
.index_footer .container .top {
  padding-bottom: 6rem;
  border-bottom: 3px solid #444;
}
.index_footer .container .top .call_list {
  margin-bottom: 5rem;
}
.index_footer .container .top .call_list li:first-child p {
  background-image: url(../img/foot_ico_1.png);
}
.index_footer .container .top .call_list li:last-child p {
  background-image: url(../img/foot_ico_2.png);
}
.index_footer .container .top .call_list li p {
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 3rem;
  width: 40%;
  padding-left: 6.8rem;
  font-size: 3.7rem;
  line-height: 1.18;
  font-weight: 400;
  white-space: nowrap;
}
.index_footer .container .top .call_list li strong {
  color: #fff84a;
  font-size: 6.4rem;
  line-height: 1.43;
  font-weight: 700;
  white-space: nowrap;
}
.index_footer .container .top .link_list {
  gap: 5rem;
}
.index_footer .container .top .link_list li:not(:last-child) {
  position: relative;
}
.index_footer .container .top .link_list li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -2.5rem;
  width: 2px;
  height: 70%;
  background: #444;
  content: "";
}
.index_footer .container .top .link_list li a {
  font-size: 3.7rem;
  font-weight: 400;
  line-height: 1.18;
  color: #999;
}
.index_footer .container .bottom {
  padding-top: 6rem;
}
.index_footer .container .bottom .logo {
  margin-bottom: 6rem;
}
.index_footer .container .bottom .logo img {
  width: 33.5%;
  min-width: 110px;
}
.index_footer .container .bottom .info_list {
  column-gap: 5rem;
  margin-bottom: 5.8rem;
}
.index_footer .container .bottom .info_list li {
  color: #999;
  font-size: 3.7rem;
  line-height: 1.45;
  font-weight: 400;
}
.index_footer .container .bottom .info_list li:nth-child(even) {
  position: relative;
}
.index_footer .container .bottom .info_list li:nth-child(even)::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -2.5rem;
  content: "";
  width: 2px;
  height: 50%;
  background: #444;
}
.index_footer .container .bottom .info_list .bold {
  color: #ddd;
}
.index_footer .container .bottom .copyright {
  color: #999;
  font-weight: 400;
  font-size: 3.7rem;
  line-height: 1.45;
}

/*----------  foot end  ----------*/
@media screen and (min-width: 1350px) {
  .index_header .container .gnb {
    display: block !important;
  }
}
@media screen and (min-width: 1081px) {
  html,
  body {
    font-size: 40%;
  }
  .outer {
    /* max-width: 1080px; */
    max-width: 100%;
  }
  .index_header .container {
    padding: 2rem 0;
  }
  .index_header .container .logo_wrap {
    width: 10.08%;
  }
  .index_header .container .logo_wrap img {
    width: 100%;
  }
  .index_header .container .gnb {
    display: none;
  }
  .index_header .container .gnb ul {
    gap: 6rem;
  }
  .index_header .container .gnb ul li a {
    color: #fff;
    font-size: 2.6rem;
    line-height: 1.15;
    font-weight: 500;
    white-space: nowrap;
  }
  .index_header .container > p {
    font-size: 2.7rem;
    line-height: 1.48;
    text-align: left;
    white-space: nowrap;
    padding: 2rem 0;
  }
  .index_header .container > a {
    display: block;
    color: #fff;
    line-height: 2.3rem;
    padding: 1.7rem 2.5rem 1.7rem 6.1rem;
    white-space: nowrap;
    background: #4f429d;
    position: relative;
  }
  .index_header .container > a::after {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    left: 2.5rem;
    width: 1.6rem;
    height: 1.8rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url(../img/nav_ico_1.png);
  }
  .index_header .container > a strong {
    font-weight: 700;
    font-size: 1.8rem;
  }
  .index_header .container > a span {
    font-size: 1.6rem;
    font-weight: 400;
  }
  .index_main .width94,
  .index_footer .width94 {
    max-width: 700px;
  }
  .index_main .sec_banner {
    /* background-size: 1080px 100%; */
    background-image: url(../img/main_bg_pc_h.jpg);
    background-size: cover;
    background-position: right;
  }
  .index_main .sec_banner .container .tit_box {
    padding: 40rem 0 30rem;
  }
  .sec_count {
    border-radius: 0rem 0rem 0 0;
    margin-top: -10rem;
  }
  .index_main .sec_count .container .example_count_list {
    gap: 6rem;
  }
  .index_main .sec_introduce,
  .index_main .sec_form {
    /* background-size: 1080px auto; */
    background-size: cover;
    background-image: url(../img/form_bg_pc.jpg);
  }
  .header_fixed_box .list_box .example_list {
    justify-content: center;
  }
  .index_main .sec_promise .container .wrap_box .talk_box p {
    padding: 6.2rem 11rem;
  }
  .index_main .sec_strong .container .cont_box1 ul li {
    padding: 3rem 4rem 3rem 7.9rem;
  }
  .index_main .sec_solution2 .container .cont_box a .img_box {
    background-size: 30%;
  }
  .sec_review .container .img_box {
    max-height: 395px;
    height: 395px;
  }
}
@media screen and (max-width: 1250px) {
	.sec_solution2_2 .container .cont .detail_area .detail_list .box .sub_tit{
		font-size:3rem;
	}
	.sec_solution2_2 .container .cont .detail_area .detail_list .box .inner_list li {
		font-size: 2.5rem;
		line-height: 1.68;
		padding: 0 1.5rem;
	}
	.sec_solution2_2 .container .cont .detail_area .detail_list .box1 .sub_tit, .sec_solution2_2 .container .cont .detail_area .detail_list .box1 .inner_list {
		min-height: 140px;
	}
	.sec_solution2_2 .container .cont .detail_area .detail_list .box2 .sub_tit, .sec_solution2_2 .container .cont .detail_area .detail_list .box2 .inner_list {
		min-height: 160px;
	}
	.sec_solution2_2 .container .cont .detail_area .detail_list .box3 .sub_tit, .sec_solution2_2 .container .cont .detail_area .detail_list .box3 .inner_list {
		min-height: 280px;
	}
}
@media screen and (max-width: 1080px) {
  html,
  body {
    font-size: 40%;
  }
  .width94 {
    max-width: 700px;
  }

  /*header*/
	.index_header > .container {
		max-width:unset !important;
	}
	.index_header > .container > .phone_area{
		padding-left:13.1481vw;
		width:36vw;
	}
    .index_header > .container > .phone_area::after {
		content:none;
    }
	.index_header.active > .container > .phone_area .txt1 {
		color:#222;
	}
	.index_header > .container > .phone_area .txt1 {
		font-size:2.3148vw;
		color: #FFF;
		display:none;
	}
	.index_header > .container > .phone_area .txt2 {
		display:block;
		color: #FFF;
		font-size:2.7778vw;
		line-height:2.9630vw;
		background: #4F429D;
		padding:0.8333vw 1.2037vw;
		position: absolute;
		letter-spacing:0; 
		top: 50%;
		left: 0;
		transform: translateY(-50%);
	}
	.index_header > .container > .phone_area .txt2 br {
		display:block;
	}
	.index_header > .container > .phone_area .txt2 span {
		display:none;
	}
	.index_header > .container > .phone_area .txt3 {
		font-size:4.1667vw;
		color: #C1A9FF;
		gap:0;
	}
	.index_header > .container > .phone_area .txt3 a:first-child::after{
		content:none;
	}
	.index_header.active > .container > .phone_area .txt3 {
		color:#4F429D;
	}
  .header_fixed_box .example_list {
    max-width: 700px;
  }


	.sec_banner > .container {
		max-width:unset !important;
	}
	.sec_banner .container .tit_box .txt span {
		
	}


  .sec_youtube .container {
	padding : 100px 0;
  }
  
  /* sec_solution2_2 */
  .sec_solution2_2 .container {
	  padding:14.8vw 0 10vw;
  }
  .sec_solution2_2 .container .cont .pc {
	  display:none;
  }
  .sec_solution2_2 .container .cont .detail_area .detail_list .mo {
	  display:block !important;
  }
  .sec_solution2_2 .container .cont .step_area ul {
	  grid-template-columns:1fr 1fr 1fr 1fr;
	  gap: 6.7593vw;
	  margin-bottom:9.2vw;
  }
  .sec_solution2_2 .container .cont .step_area ul li{
	  padding:0;
  }
  .sec_solution2_2 .container .cont .step_area ul li:not(:nth-child(2)) .img_box img {
	width: 11rem;
  }
  .sec_solution2_2 .container .cont .step_area ul li .img_box {
    margin-bottom: 2.7vw;
    height: 11rem;
  }
  .sec_solution2_2 .container .cont .step_area ul li .circle_box::after {
	  left:-4vw;
  }
  .sec_solution2_2 .container .cont .step_area ul li .circle_box p {
      font-size: 2.7vw;
	  line-height: 4vw;
  }
  .sec_solution2_2 .container .cont .step_area ul li .circle_box p strong {
      font-size: 2.9vw;
  }
  .sec_solution2_2 .container .cont .detail_area .detail_list {
      grid-template-columns: 1fr;
	  position: relative;
      padding-bottom: 121vw;
  }
  .sec_solution2_2 .container .cont .detail_area .detail_list > li{
	  position: absolute;
      height: 100%;
  }
  .sec_solution2_2 .container .cont .detail_area .detail_list >li:not(:first-child) {
      opacity: 0;  
      background: #f8f8f8;
      white-space: nowrap;
  }
  .sec_solution2_2 .container .cont .detail_area .detail_list >li:not(:last-child){
	  margin-bottom:9.2vw;
  }
  .sec_solution2_2 .container .cont .detail_area .detail_list .tit_box {
    font-size: 4.6vw;
    padding: 4.3vw 0;
  }
  .sec_solution2_2 .container .cont .detail_area .detail_list .box {
      display: grid;
	  grid-template-columns: 2fr 8fr;
  }
  .sec_solution2_2 .container .cont .detail_area .detail_list .box .sub_tit, .sec_solution2_2 .container .cont .detail_area .detail_list .box .inner_list {
       min-height: unset;
	}
  .sec_solution2_2 .container .cont .detail_area .detail_list .box .sub_tit,
  .sec_solution2_2 .container .cont .detail_area .detail_list .box .inner_list li {
	font-size: 3.6vw;
    line-height: 5.8vw;
  }
  .sec_solution2_2 .container .cont .detail_area .detail_list .box .sub_tit{
	padding: 3.7vw 0;
	display: flex !important;
    align-items: center;
    justify-content: center;
  }
  .sec_solution2_2 .container .cont .detail_area .detail_list .box .inner_list{
	  padding:4.3vw;
  }
  .sec_solution2_2 .container .cont .detail_area .detail_list .box .inner_list li {
    padding: 0;
  }  
  

}
@media screen and (max-width: 800px) {
  .sec_youtube .container {
	  padding : 70px 0;
  }
}
@media screen and (max-width: 720px) {
  html,
  body {
    font-size: 38%;
  }
  .width94 {
    max-width: auto;
  }
  .header_fixed_box .list_box .example_list {
    max-width: 100%;
  }
  .sec_introduce .container .cont_box .thumb_box .paper {
    width: 32%;
  }
}
@media screen and (max-width: 620px) {
  html,
  body {
    font-size: 35%;
  }
}
@media screen and (max-width: 540px) {
  html,
  body {
    font-size: 31%;
  }
}
@media screen and (max-width: 500px) {
  html,
  body {
    font-size: 29%;
  }
  
  /* header */
  .index_header > .container .logo_wrap {
    width: 36%;
  }
  
  /**/
  .sec_youtube .container {
	  padding : 50px 0;
  }
  .sec_process .container .txt_box .txt_2 span::after {
    height: 2px;
  }
  .sec_process .container .txt_box .txt_3 {
    border-width: 3px;
  }
  .sec_solution1 .container ul li {
    border-width: 2px;
  }
  .sec_solution1 .container ul li:nth-child(n + 1) {
    margin-left: -2px;
  }
  .sec_solution1 .container ul li:nth-child(n + 2) {
    margin-left: -2px;
  }
  .sec_solution1 .container ul li:not(:nth-child(1), :nth-child(2), :nth-child(3)) {
    margin-top: -2px;
  }
  .sec_solution1 .container .notify_box {
    border-width: 3px;
  }
}
@media screen and (max-width: 470px) {
  html,
  body {
    font-size: 26%;
  }
}
@media screen and (max-width: 420px) {
  html,
  body {
    font-size: 24%;
  }
}
@media screen and (max-width: 390px) {
  html,
  body {
    font-size: 22%;
  }
}
@media screen and (max-width: 370px) {
	.index_header .phone_area div {
		font-size: 3.3vw !important;
	}
}
@media screen and (max-width: 350px) {
  html,
  body {
    font-size: 20%;
  }
}
@media screen and (max-width: 320px) {
  html,
  body {
    min-width: 320px;
    overflow-x: auto;
  }
}

/* 다크모드일 때 */
@media (prefers-color-scheme: dark) {
	html, body {
		background-color: #fff;
		color: #222;
   }
	.sec_process .container .process_list > li {
		background: #aaa !important;
	}
}