/************************** section-1 **************************/
#section-1 {
	position: relative;
    width: 100%;
    min-height: 100vh;
}
.section-1-in {
	position: absolute;
    left: 50%;
    width: 100%;
    height: 100%;
	background: url("../img/main/main-bg.jpg") no-repeat center / cover;
    transform: translateX(-50%);
	transition: all .4s ease-in-out;
}
#section-1.active .section-1-in {
	position: fixed;
	top: 100px;
    bottom: 0;
    left: 50%;
    width: 90%;
    height: 80vh;
    transform: translateX(-50%);
}
#section-1 .section-in {
	height: 100%;
}
.mv-txt-wrap {
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.mv-tit {
    max-width: 900px;
    font-size: 0;
}
.mv-tit strong {
    position: relative;
    display: block;
    vertical-align: top;
    padding-right: 10px;
    overflow: hidden;
}
.mv-tit strong:nth-child(2) {
	margin: 12px 0 8px;
}
.mv-tit span {
    position: relative;
    display: block;
    font-weight: 700;
    font-size: var(--font-mvtit);
    letter-spacing: -0.05em;
    color: var(--white-color);
    transform: translateY(100%);
	animation: txt-show .6s forwards ease-in-out;
}
.mv-tit strong:last-child span {
	font-weight: 400;
}
@keyframes txt-show {
	0% {
		transform: translateY(100%);
	}
	100% {
		transform: translateY(0);
	}
}
@keyframes txt-show2 {
	0% {
		transform: translateY(100%);
	}
	100% {
		transform: translateY(0);
	}
}
.mv-btn {
	/*width: 299px;*/
	margin-top: 35px;
	cursor: pointer;
	overflow: hidden;
}
.mv-btn div {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 22px 18px;
	font-size: var(--font-smaller);
	font-weight: 500;
	color: var(--white-color);
	border-radius: 16px;
	background: rgba(0, 0, 0, 0.35);
	border: 1px solid var(--white-color);
    transform: translateY(110%);
	transition: all .3s;
	animation: txt-show .6s .5s forwards ease-in-out;
	box-sizing: border-box;
}
.mv-btn:hover div {
	background: rgba(0, 0, 0, 0.5);
	border-color: rgba(255, 255, 255, 0.8);
}
.mv-btn:focus div,
.mv-btn:active div{
	background: rgba(0, 0, 0, 0.7);
	border-color: rgba(255, 255, 255, 0.6);
}
#section-1 .name {
	position: absolute;
	left: 50px;
	bottom: 70px;
}
/************************** section-1 **************************/

.sec-tit {
	display: block;
	font-size: var(--font-large);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.005em;
	color: var(--black-color);
    transform: translateY(100%);
	opacity: 0;
}
.sec-tit.on {
	animation: txt-show2 .6s .6s forwards ease-in-out;
}
.sec-txt {
	font-size: var(--font-regular);
	font-weight: 400;
	line-height: 1.6;
	color: var(--white-color);
    transform: translateY(100%);
	opacity: 0;
}
.sec-txt.on {
	animation: txt-show2 .6s .9s forwards ease-in-out;
}
.sec-tit.mobile,
.sec-txt.mobile {
	display: none;
}
@keyframes txt-show2 {
	0% {
		transform: translateY(100%);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

/************************** section-2 **************************/
#section-2 {
	padding: 0;
    width: 100%;
    min-height: 100vh;
	background: url("../img/main/sec02-bg.jpg") no-repeat center / cover;
	z-index: 3;
	overflow: hidden;
}
#section-2 .section-in {
	position: relative;
    min-height: 100vh;
}
#section-2 .left {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
#section-2 .left small {
	display: block;
	margin-bottom: 12px;
	font-size: var(--font-small);
	font-weight: 700;
	color: rgba(255, 255, 255, 0.8);
    transform: translateY(100%);
	opacity: 0;
}
#section-2 .left small.on {
	animation: txt-show2 .6s .3s forwards ease-in-out;
}
#section-2 .left strong {
	display: block;
	margin-bottom: 35px;
	font-size: var(--font-large);
	font-weight: 700;
	color: var(--white-color);
	line-height: 1.1;
	letter-spacing: -0.005em;
}
#section-2 .left small.on {
	animation: txt-show2 .6s .6s forwards ease-in-out;
}
#section-2 .left strong span {
	font-weight: 700;
}
#section-2 .left ul {
    transform: translateY(100%);
	opacity: 0;
}
#section-2 .left ul.on {
	animation: txt-show2 .6s .9s forwards ease-in-out;
}
#section-2 .left li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: var(--font-basic);
	color: var(--white-color);
}
#section-2 .left li:not(:last-child) {
	margin-bottom: 15px;
}
#section-2 .right {
	position: absolute;
    right: 0;
    bottom: 0;
}
#section-2 .right > .js-diagnosis-content {
	position: relative;
}
#section-2 .right .step {
	display: flex;
	align-items: center;
}
#section-2 .right .step li {
	width: 20%;
	height: 2px;
	background: var(--border-color);
}
#section-2 .right .step li.active {
	background: var(--primary-color);
}
#section-2 .right .txt-wrap {
	position: absolute;
	width: 90%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}
#section-2 .right .txt-wrap > div {
	width: 160px;
	margin: 0 auto 50px;
}
#section-2 .right .txt-wrap > p {
	margin-bottom: 80px;
	font-size: var(--font-basic);
	line-height: 1.4;
	color: var(--white-color);
}
#section-2 .right .txt-wrap > p span {
	color: var(--primary-color);
}
#section-2 .right .txt-wrap > a {
	display: inline-block;
	width: 230px;
	height: 64px;
	line-height: 64px;
	font-size: var(--font-regular);
	font-weight: 700;
	color: var(--white-color);
	text-align: center;
	background: var(--primary-color);
	border-radius: 50px;
	cursor: pointer;
}
#section-2 .right .txt-wrap > a:hover {
	background: var(--main-h-color);
}
#section-2 .ph-img.tablet,
#section-2 .ph-img.mobile {
	display: none;
}
#section-2 .right .diagnosis-content {
	width: 100%;
	height: 100%;
	padding: 118px 77px 42px;
	position: absolute;
	top: 0;
	left: 0;
}
#section-2 .right .diagnosis-content > div {
	height: 100%;
	position: relative;
}
#section-2 .right .step {
	margin-bottom: 28px;
	font-size: var(--font-regular);
	font-weight: 700;
	text-align: center;
	color: var(--border-color);
}
#section-2 .right .tit {
	display: block;
	font-size: var(--font-medium);
	font-weight: 700;
	color: var(--black-color);
}
#section-2 .right .tit span {
	color: var(--primary-color);
}
#section-2 .right .con {
	margin-top: 34px;
}
#section-2 .custom-radio-wrap li {
	position: relative;
}
#section-2 .custom-radio-wrap li:not(last-child) {
	margin-bottom: 10px;
}
#section-2 .custom-radio-wrap input[type="radio"] + label span, #section-2 .custom-radio-wrap input[type="checkbox"] + label span {
    display: inline-block;
	padding-left: 50px;
    margin-top: -18px;
    width: 100%;
    height: 74px;
    line-height: 74px;
    font-size: var(--font-small);
	font-weight: 400;
    color: var(--black-color);
    text-align: left;
    background: var(--light-gray-color);
	border-radius: 8px;
    box-sizing: border-box;
    cursor: pointer;
}
#section-2 .custom-radio-wrap input[type="radio"]:checked + label span, #section-2 .custom-radio-wrap input[type="checkbox"]:checked + label span {
    border: 1px solid #8f1921;
    background: #fffbfc;
    font-weight: 600;
}
#section-2 .custom-radio-wrap li img {
	position: absolute;
	top: 50%;
	left: 14px;
	transform: translateY(-50%);
}
#section-2 .custom-radio-wrap li img.on,
#section-2 .custom-radio-wrap li.on img.off {
	display: none;
}
#section-2 .custom-radio-wrap li.on img.on {
	display: block;
}
#section-2 .input-wrap span {
	display: inline-block;
	margin-left: 15px;
	font-size: var(--font-small);
	color: #707070;
}
#section-2 input[type="text"],
#section-2 input[type="number"] {
	width: calc(100% - 70px);
	padding: 0 15px;
    height: 74px;
    line-height: 74px;
	font-size: var(--font-small);
	text-align: right;
	background: #f0f0f0;
	border-radius: 16px;
	border: none;
}
#section-2 .d5 input[type="text"],
#section-2 .d5 input[type="number"] {
	width: calc(100% - 90px);
	text-align: left;
}
#section-2 .d5 .input-wrap span {
	width: 82px;
	margin-left: 0;
}
#section-2 .right .btn-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	position: absolute;
	bottom: 0px;
}
#section-2 .right .d2 .btn-wrap, #section-2 .right .d7 .btn-wrap {
	justify-content: center;
}
#section-2 .right .btn-wrap button {
	width: 212px;
	height: 64px;
	line-height: 64px;
	font-size: var(--font-small);
	font-weight: 600;
	border-radius: 15px;
	color: var(--white-color);
	transition: all .3s ease;
}
#section-2 .right .btn-wrap button.prev {
	background: #8e8e8e;
}
#section-2 .right .btn-wrap button.next {
	background: var(--primary-color);
}
#section-2 .right .btn-wrap button.prev:hover {
	background: #737373;
}
#section-2 .right .btn-wrap button.next:hover {
	background: #75171d;
}
#section-2 .right .d1 .btn-wrap button.prev,
#section-2 .right .d5 .btn-wrap button.prev {
	display: none;
}
#section-2 .section-in:after,
#section-3 .section-in:after{
	content: "";
	display: block;
	clear: both;
}
/************************** section-2 **************************/


/************************** section-3 **************************/
#section-3 {
    position: relative;
    width: 100%;
    background: #0c0c0d;
    z-index: 2;
	/*overflow: hidden;*/
}
#section-3 .section-in {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#section-3 .left {
    margin-right: 50px;
}
#section-3 .sec-tit {
	display: block;
	margin-bottom: 24px;
	color: var(--white-color);
	letter-spacing: -0.05em;
}
#section-3 .sec-tit.mobile {
	display: none;
}
#section-3 .mv-btn {
    width: inherit;
    margin-top: 35px;
    cursor: pointer;
    overflow: hidden;
}
#section-3 .mv-btn div {
	animation: txt-show .6s 1.1s forwards ease-in-out;
}
#section-3 .mySwiper {
	position: relative;
	width: 750px;
	/*overflow: hidden;*/
}
#section-3 .swiper {
    overflow: visible;
}
#section-3 .swiper-slide {
    padding: 50px 30px;
	width: 600px;
    height: 490px;
	background: url("../../img/main/floder-bg.svg") no-repeat center / contain;
	transform-origin: top center;
}
#section-3 .folder_inner {
	position: relative;
	padding: 10px 70px;
}
#section-3 .swiper-3d .swiper-slide-shadow {
	background: none;
}
#section-3 .swiper-button-prev,
#section-3 .swiper-button-next {
	width: 50px;
	height: 50px;
}
#section-3 .swiper-button-prev {
	left: 0 !important;
}
#section-3 .swiper-button-prev:after {
	content: '';
	width: 50px;
	height: 50px;
	background: url("../../img/main/ico_s_left.png") no-repeat center / contain;
}
#section-3 .swiper-button-next {
	right: 0 !important;
}
#section-3 .swiper-button-next:after {
	content: '';
	width: 50px;
	height: 50px;
	background: url("../../img/main/ico_s_right.png") no-repeat center / contain;
}
#section-3 .mySwiper .category {
	display: inline-block;
	margin-bottom: 50px;
	padding: 8px 17px;
	font-size: var(--font-smaller);
	color: var(--white-color);
	text-align: center;
	border-radius: 6px;
	background: #861c23;
}
#section-3 .mySwiper .content strong {
	margin-bottom: 20px;
	font-size: var(--font-medium);
	font-weight: 600;
	color: var(--white-color);
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
#section-3 .mySwiper .content p {
	font-size: var(--font-small);
	font-weight: 400;
	line-height: 1.5;
	color: #cecece;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
#section-3 .mySwiper .bottom {
	margin-top: 110px;
}
#section-3 .mySwiper .bottom ul {
	display: flex;
	align-items: center;
	gap: 40px;
}
#section-3 .mySwiper .bottom {
	display: flex;
	align-items: end;
	justify-content: space-between;
}
#section-3 .mySwiper .bottom li small {
	display: block;
	margin: 5px 0;
	font-size: var(--font-footer);
	font-weight: 400;
	color: #cecece;
}
#section-3 .mySwiper .bottom li div {
	font-size: var(--font-smaller);
	font-weight: 700;
	color: var(--secondary-color);
}
#section-3 .mySwiper .btn-more {
	display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 15px;
    font-size: var(--font-footer);
    font-weight: 500;
    color: var(--white-color);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--white-color);
    transition: all .3s;
    box-sizing: border-box;
}
#section-3 .mySwiper .btn-more:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.8);
}
#section-3 .mySwiper .btn-more:focus {
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.6);
}
#section-3 .step-card-list {
	width: 90%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin: 120px auto 0;
	padding-top: 160px;
}
#section-3 .step-card-list li {
	position: sticky;
	padding: 60px 0;
	background: var(--white-color);
	-webkit-box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1);
	border-radius: 50px
}
#section-3 .step-card-list li:nth-child(1) {
	z-index: 3;
	bottom: 15.25rem;
	margin-bottom: 6.5rem;
	margin-top: -10rem;
}
#section-3 .step-card-list li:nth-child(2) {
	z-index: 2;
	/*bottom: 9rem;*/
	bottom: 0rem;
	margin-bottom: 1.5rem;
	margin-top: -5rem;
}
#section-3 .step-card-list li:nth-child(3) {
	z-index: 1;
	/*bottom: 4rem;*/
	bottom: -2rem;
	margin-bottom: 5rem;
}
#section-3 .step-card-list li:nth-child(4) {
	/*bottom: 4rem;*/
	bottom: -3rem;
	margin-bottom: 5rem;
}
#section-3 .step-card-list .reactive .contents {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
#section-3 .step-card-list .reactive .contents.test {
	align-items: center;
}
#section-3 .step-card-list .reactive::after {
	content: "";
	display: block;
	padding-bottom: 40.1785714286%
}
#section-3 .about-lawyer .section-in {
	display: block;
}
#section-3 .about-lawyer .left {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
#section-3 .about-lawyer .right {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
#section-3 .about-lawyer .sec-tit,
#section-3 .about-lawyer .sec-txt,
#section-3 .about-lawyer .mv-btn {
	transform: translateY(0);
	opacity: 1;
}
#section-3 .about-lawyer .sec-tit2 {
	margin-bottom: 25px;
	font-size: var(--font-medium);
	font-weight: 700;
	/*
	transform: translateY(100%);
    opacity: 0;
	*/
}
#section-3 .about-lawyer .sec-tit2.mobile {
	display: none;
}
#section-3 .about-lawyer .mv-btn div {
	animation: none;
	transform: translateY(0);
	opacity: 1;
}
#section-3 .about-lawyer .sec-tit2.on {
	animation: txt-show2 .6s .6s forwards ease-in-out;
}
#section-3 .about-lawyer .sec-tit2 span {
	color: var(--primary-color);
}
#section-3 .about-lawyer .sec-tit {
	color: var(--black-color);
}
#section-3 .about-lawyer .sec-tit.on {
	animation: txt-show2 .6s .8s forwards ease-in-out;
}
#section-3 .about-lawyer .sec-txt {
	color: #707070;
}
#section-3 .about-lawyer .sec-txt.on {
	animation: txt-show2 .6s 1s forwards ease-in-out;
}
#section-3 .about-lawyer .mv-btn div {
	background: var(--primary-color);
}
#section-3 .about-lawyer .mv-btn:hover div {
	background: #75171d;
}
#section-3 .about-lawyer .right {
	width: 550px;
	height: calc(100% - 100px);
	border-radius: 20px;
	overflow: hidden;
}
#section-3 .about-lawyer .watermark {
	position: absolute;
	left: 30px;
	bottom: 30px;
}
#section-3 .al-mobile {
	display: none;
}
/************************** section-3 **************************/

/************************** section-4 **************************/
#section-4 {
	position: relative;
	padding: 160px 0;
	background: url("../img/main/sec04-bg.jpg") no-repeat center / cover;
	z-index: 3;
	overflow: hidden;
}
#section-4 .section-in {
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#section-4 .text,
#section-4 .line {
    position: relative;
    display: inline-block;
    margin: 0;
    font-size: var(--font-large);
    font-weight: 300;
    line-height: 100%;
    text-align: center;
	color: var(--white-color);
    background-clip: text;
    background-size: 0%;
    word-break: keep-all;
}
#section-4 .text:first-child {
    margin-bottom: 14px;
}
#section-4 .line {
	display: flex;
	gap: 14px;
	font-weight: 800;
}
#section-4 .line div {
	display: inline-block;
}
#section-4 .line .word div {
	display: inline-block;
    translate: none;
    rotate: none;
    scale: none;
    opacity: 1;
    visibility: inherit;
    transform: translate(0px, 50px);
	opacity: 0;
	visibility: hidden;
}
#section-4 .line.on .word div {
    transform: translate(0px, 0px);
	opacity: 1;
	visibility: inherit;
}
#section-4 .line .word {
	display: flex;
}
#section-4 .line .word:nth-child(1) div:nth-child(1) {
	transition: all .3s .3s;
}
#section-4 .line .word:nth-child(1) div:nth-child(2) {
	transition: all .3s .4s;
}
#section-4 .line .word:nth-child(2) div:nth-child(1) {
	transition: all .3s .6s;
}
#section-4 .line .word:nth-child(3) div:nth-child(1) {
	transition: all .3s .8s;
}
#section-4 .line .word:nth-child(3) div:nth-child(2) {
	transition: all .3s .9s;
}
#section-4 .line .word:nth-child(4) div:nth-child(1) {
	transition: all .3s 1s;
}
#section-4 .line .word:nth-child(4) div:nth-child(2) {
	transition: all .3s 1.1s;
}
#section-4 .line .word:nth-child(4) div:nth-child(3) {
	transition: all .3s 1.2s;
}
#section-4 .line .word:nth-child(4) div:nth-child(4) {
	transition: all .3s 1.3s;
}
#section-4 .line .word:nth-child(5) div:nth-child(1) {
	transition: all .3s 1.5s;
}
#section-4 .line .word:nth-child(5) div:nth-child(2) {
	transition: all .3s 1.6s;
}
#section-4 .line .word:nth-child(5) div:nth-child(3) {
	transition: all .3s 1.7s;
}
#section-4 .line .word:nth-child(5) div:nth-child(4) {
	transition: all .3s 1.8s;
}
#section-4 .line .word:nth-child(5) div:nth-child(5) {
	transition: all .3s 1.9s;
}
#section-4 .line .word:nth-child(5) div:nth-child(6) {
	transition: all .3s 2s;
}
#section-4 .line .word:nth-child(5) div:nth-child(7) {
	transition: all .3s 2.1s;
}
/************************** section-4 **************************/

/************************** section-5 **************************/
#section-5 {
	position: relative;
	background: url("../img/main/sec05-bg.jpg") no-repeat center / cover;
	z-index: 3;
	overflow: hidden;
}
#section-5 .section-in {
	position: relative;
	height: 100%;
	min-height: 100vh;
}
#section-5 .left {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
#section-5 .left small.on {
	animation: txt-show2 .6s .3s forwards ease-in-out;
}
#section-5 .left > strong {
	display: block;
	margin-bottom: 35px;
	color: var(--white-color);
}
#section-5 .left > strong.mobile {
	display: none;
}
#section-5 .left p strong {
	display: block;
}
#section-5 .left p.on {
	animation: txt-show2 .6s .9s forwards ease-in-out;
}
#section-5 .swiper {
	padding-top: 30px;
}
#section-5 .con {
	width: 55%;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	overflow: hidden;
}
#section-5 .swiper-slide {
	position: relative;
	padding: 60px 40px;
	width: 400px;
	height: 580px;
	background: var(--white-color);
	border-radius: 30px;
}
#section-5 .swiper-slide .txt-wrap {
	position: absolute;
    left: 40px;
    bottom: 60px;
    word-break: keep-all;
}
#section-5 .swiper-slide .number {
	display: block;
	font-size: var(--font-medium);
	font-weight: 700;
	color: var(--black-color);
}
#section-5 .swiper-slide strong {
	display: block;
	margin: 0 0 10px;
	font-size: var(--font-medium);
	font-weight: 700;
	color: var(--black-color);
	letter-spacing: -0.005em;
}
#section-5 .swiper-slide p {
	font-size: var(--font-small);
	letter-spacing: -0.005em;
	line-height: 1.4;
	color: #707070;
}
#section-5 .swiper-slide p.mobile {
	display: none;
}
#section-5 .swiper-slide p span {
	text-decoration: underline;
}
#section-5 .swiper-slide-active {
	margin-top: -30px;
	background: var(--primary-color);
}
#section-5 .swiper-slide-active .number, 
#section-5 .swiper-slide-active strong {
	color: var(--white-color);
}
#section-5 .swiper-slide-active p {
	color: #cecece;
}
/************************** section-5 **************************/

/************************** section-6 **************************/
#section-6 {
	position: relative;
	background: #f7f7f7;
	z-index: 3;
	overflow: hidden;
}
#section-6 .top {
	display: flex;
	align-items: end;
	justify-content: space-between;
	margin-bottom: 45px;
}
#section-6 .sec-tit {
	display: block;
	margin-bottom: 10px;
}
#section-6 .sec-txt {
	color: #707070;
}
#section-6 .mv-btn {
    transform: translateY(100%);
	opacity: 0;
}
#section-6 .mv-btn.on {
	animation: txt-show2 .6s .9s forwards ease-in-out;
}
#section-6 .mv-btn div {
	background: #232323;
}
#section-6 .mv-btn:hover div {
	background: #111;
}
#section-6 .mv-btn:active div,
#section-6 .mv-btn:focus div {
	background: #000;
}
#section-6 .right {
	width: 860px;
}
#section-6 .n-list li {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px 30px;
	border-bottom: 1px solid var(--border-color);
}
#section-6 .n-list li .badge {
	display: inline-block;
	min-width: 100px;
	padding: 12px;
	font-size: 15px;
	font-weight: 600;
	text-align: center;
	color: var(--white-color);
	border-radius: 50px;
}
#section-6 .n-list li .badge.column {
	background: var(--secondary-color);
}
#section-6 .n-list li .badge.news {
	background: var(--primary-color);
}
#section-6 .n-list li .badge.notice {
	background: var(--white-color);
	border: 1px solid var(--primary-color);
	color: var(--primary-color);
}
#section-6 .n-list li div {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	word-break: break-all;
	font-size: var(--font-regular);
}
#section-6 .section-in:after {
	content: "";
	display: block;
	clear: both;
}
/************************** section-6 **************************/

/************************** section-7 **************************/
#section-7 {
	position: relative;
	background: var(--white-color);
	z-index: 3;
	overflow: hidden;
}
#section-7 .top {
	text-align: center;
}
#section-7 .top .sec-txt {
	color: #707070;
}
#section-7 .search {
    position: relative;
	padding-left: 65px;
    width: 100%;
    margin: 35px auto;
    border: 2px solid var(--primary-color);
	border-radius: 50px;
    text-align: left;
}
#section-7 .search input[type="text"] {
    width: 580px;
    height: 66px;
    font-size: 25px;
    color: var(--black-color);
    font-weight: 400;
    padding-left: 20px;
    border: none;
    background-color: transparent;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
#section-7 .search input[type="text"]::placeholder {
	color: var(--primary-color);
}
#section-7 .search .search-button {
    position: absolute;
    background: url("../img/main/ico_search.png");
    background-color: transparent;
    width: 44px;
    height: 44px;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
}
#section-7 .key-tab {
	max-width: 1000px;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 15px 25px;
}
#section-7 .key-tab li {
	display: inline-block;
	font-size: var(--font-basic);
	font-weight: 500;
	text-align: center;
	color: var(--gray-color);
	transition: all .3s;
	cursor: pointer;
}
#section-7 .key-tab li a {
	display: block;
}
#section-7 .key-tab li:hover a {
	color: var(--primary-color);
}
/************************** section-7 **************************/

/************************** section-8 **************************/
#section-8 {
	position: relative;
	background: url("../img/main/sec08-bg.jpg") no-repeat center / cover;
	z-index: 3;
	overflow: hidden;
}
#section-8 .bg-img {
	position: absolute;
	top: 0;
	left: -60px;
	pointer-events : none;
}
#section-8 .sec-tit {
	margin-bottom: 10px;
	color: var(--white-color);
}
#section-8 .right {
	width: 700px;
}
#section-8 .form-wrap li {
	display: flex;
	align-items: center;
}
#section-8 .form-wrap li.block {
	display: block;
}
#section-8 .form > li:not(:last-child) {
	margin-bottom: 25px;
}
#section-8 .form-wrap li > span {
	display: block;
	width: 130px;
	margin-bottom: 5px;
	font-size: var(--font-regular);
	color: var(--white-color);
}
#section-8 .form-wrap li.block > span {
	width: auto;
}
#section-8 .form-wrap li > div {
	display: flex;
	align-items: center;
	gap: 15px;
    width: calc(100% - 130px);
}
#section-8 .form-wrap li > div span {
	display: block;
	min-width: 50px;
	font-size: var(--font-regular);
	font-weight: 500;
	color: var(--white-color);
}
#section-8 .form-wrap li input[type='text'] {
    width: calc(100% - 130px);
    height: 74px;
    padding: 10px;
    font-size: var(--font-small);
	color: var(--white-color);
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-sizing: border-box;
}
#section-8 .form-wrap li .else input[type='text'] {
	width: calc(100% - 50px);
	text-align: right;
}
#section-8 .form-wrap li .radio-wrap {
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 15px;
}

#section-8 .form-wrap li input[type="checkbox"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

#section-8 .form-wrap li input[type="radio"] + label span,
#section-8 .form-wrap li input[type="checkbox"] + label span {
    display: inline-block;
	padding: 15px 20px;
    font-size: 16px;
    color: var(--white-color);
	text-align: center;
    background: transparent;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    cursor: pointer;
}
#section-8 .form-wrap li input[type="radio"] + label span img,
#section-8 .form-wrap li input[type="checkbox"] + label span img {
	display: inline-block;
	margin-right: 5px;
}
#section-8 .form-wrap li input[type="radio"]:checked + label span,
#section-8 .form-wrap li input[type="checkbox"]:checked + label span {
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    color: var(--white-color);
}
#section-8 .section-in:after {
	content: "";
	display: block;
	clear: both;
}
#section-8 .check {
	margin-top: 20px;
}
#section-8 .check input[type="checkbox"] {
    -webkit-appearance: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    margin-right: 5px;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.6);
	border-radius: 4px;
    outline: none;
    vertical-align: middle;
    cursor: pointer;
}
#section-8 .check input[type="checkbox"]:checked {
    background: rgba(255, 255, 255, 1);
}
#section-8 .check input[type="checkbox"]:checked::before {
    content: "\2713";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: scale(1) translate(-50%, -50%);
	color: var(--primary-color);
}
#section-8 .check label {
	font-size: var(--font-footer);
	color: var(--white-color);
}
#section-8 .form-wrap .submit {
	display: block;
	padding: 25px 0;
	margin: 60px auto 0;
	width: 100%;
	font-size: var(--font-regular);
	color: var(--white-color);
	letter-spacing: -0.005em;
	text-align: center;
	background: rgba(0, 0, 0, 0.35);
	border: 1px solid #969696;
	border-radius: 16px;
	transition: all .3s ease-in;
}
#section-8 .form-wrap .submit:hover {
	background: var(--primary-color);
	border-color: var(--primary-color);
}
#section-8 .form-wrap .submit button {
	width: 100%;
	height: 100%;
	background: transparent;
}
/************************** section-8 **************************/


@media all and (max-width:1921px) {
	.ph-img {max-height: 750px;}
	#section-2 .right .step {margin-bottom: 20px;}
	#section-2 .right .diagnosis-content {padding: 104px 50px 35px;}
	#section-2 .right .con {margin-top: 24px;}
	#section-2 .custom-radio-wrap input[type="radio"] + label span, #section-2 .custom-radio-wrap input[type="checkbox"] + label span, #section-2 input[type="text"], #section-2 input[type="number"] {height: 68px; line-height: 68px;}
}

@media all and (max-width:1441px){
	#section-3 .about-lawyer .left {top: 48%;}
	#section-3 .about-lawyer .watermark {left: 5%;}
	#section-3 .about-lawyer .sec-tit2, #section-3 .sec-tit, #section-2 .left strong, #section-5 .left > strong {margin-bottom: 15px;}
	#section-3 .about-lawyer .right {width: 450px;}
	#section-5 .swiper-slide {height: 550px;}
}

@media all and (max-width:1281px){
	.mv-txt {height: 20px;}
	.sec-tit strong {margin-bottom: 30px;}
	.mv-btn div {padding: 18px 15px;}
}

@media all and (max-width:1201px){
	#section-1 .name {width: 800px; left: 25px;}
	#section-3 .mySwiper {width: clamp(382px, 42.92vw, 824px);}
	#section-3 .folder_inner {padding: 20px 0px;}
	#section-3 .mySwiper .bottom {margin-top: 88px;}
	#section-3 .swiper-button-prev {left: -60px !important;}
	#section-3 .swiper-button-next {right: -60px !important;}
	#section-3 .al-pc {display: none !important;}
	#section-3 .al-mobile {display: block; margin-top: 80px;}
	#section-3 .al-mobile .contents {display: block; position: relative; width: 90%; height: 700px; margin: auto; padding: 0; background: var(--white-color); border-radius: 30px; box-shadow: 0 5px 30px 0px rgba(0, 0, 0, 0.1); overflow: hidden;}
	#section-3 .al-mobile .contents:not(:last-child) {margin-bottom: 20px;}
	#section-3 .about-lawyer .right {width: 450px; height: 550px;}
	#section-5 .swiper-slide {height: 500px;}
	#section-8 .right {width: 600px;}
}

@media all and (max-width:1025px){
	.section-1-in {background: url("../img/main/main-bg-m.jpg") no-repeat center / cover;}
	#section-1 .name {width: 600px;}
	#section-2 .ph-img {display: none; max-height: 780px;}
	#section-2 .ph-img.tablet {display: block;}
	#section-3 .section-in {display: block;}
	#section-3 .left, #section-3 .right {float: none;}
	#section-3 .left {margin-right: 0; margin-bottom: 50px;}
	#section-3 .mySwiper {width: 640px;}
	#section-3 .swiper-slide {padding: 50px 60px;}
	#section-3 .about-lawyer .right {width: 380px; height: 500px;}
	#section-4, #section-5 {padding: 120px 0;}
	#section-5 .left, #section-5 .right {position: relative; float: none; top: inherit; transform: inherit;}
	#section-5 .section-in {min-height: inherit;}
	#section-5 .con {position: relative; width: 90%; top: inherit; transform: inherit; margin-top: 50px; float: right;}
	#section-5:after {content: ""; display: block; clear: both;}
	#section-6 .n-list li {padding: 20px 15px;}
	#section-6 .n-list li .badge {min-width: 95px; padding: 10px 12px;}
	#section-8 .left, #section-8 .right {float: none;}
	#section-8 .right {width: 100%; margin-top: 50px;}
	#section-8 .form-wrap li input[type='text'] {height: 68px;}
}

@media all and (max-width:987px){
	#section-2 {padding: 120px 0 0;}
	#section-2 .left {position: relative; top: inherit; transform: inherit; float: none; margin-bottom: 50px;}
	#section-2 .right {position: relative; right: inherit; bottom: inherit; float: none;}
	#section-2 .ph-img.tablet {display: none;}
	#section-2 .ph-img {display: block; margin: auto;}
	#section-2 .right .diagnosis-content {max-width: 550px; left: 50%; transform: translateX(-50%);}
	#section-3 .mySwiper {width: 500px;}
	#section-3 .swiper-slide {padding: 50px 30px;}
	#section-3 .about-lawyer .right {width: 330px; height: 480px;}
	#section-8 .bg-img {width: 420px;}
}

@media all and (max-width:877px){
	.mv-btn {margin-top: 30px;}
	.mv-btn div {padding: 15px 12px;}
	#section-1 .name {width: 80%;}
	#section-2 {padding: 100px 0 0;}
	#section-3 .left {margin-bottom: 30px;}
	#section-3 .about-lawyer .section-in {display: flex; flex-direction: column; align-items: baseline; justify-content: center;}
	#section-3 .about-lawyer .left {top: 50px; transform: inherit;}
	#section-3 .about-lawyer .right {left: 50%; transform: translateX(-50%);}
	#section-3 .about-lawyer .sec-tit, #section-3 .sec-tit, #section-3 .left > .sec-txt, #section-3 .about-lawyer .sec-txt, #section-5 .left > strong, #section-5 .sec-txt {display: none;}
	#section-3 .about-lawyer .sec-tit.mobile, #section-3 .sec-tit.mobile, #section-3 .left > .sec-txt.mobile, #section-3 .about-lawyer .sec-txt.mobile, #section-5 .left > strong.mobile, #section-5 .sec-txt.mobile {display: block;}
	#section-3 .al-mobile .contents {/*height: 846px;*/ height: 865px;}
	#section-3 .about-lawyer .right {top: inherit; bottom: 110px; left: 0; transform: inherit; width: 60%; height: 390px; background-position: center top -15px !important;}
	#section-3 .about-lawyer .watermark {bottom: 50px;}
	#section-3 .mv-btn {margin-top: 25px;}
	#section-4 .text:first-child {margin-bottom: 10px;}
	#section-4, #section-5 {padding: 100px 0;}
	#section-5 .swiper-slide {height: 430px; padding: 40px 25px;}
	#section-5 .swiper-slide .txt-wrap {left: 25px; width: 100%;}
	#section-6 .top {flex-direction: column; align-items: baseline;}
	#section-7 .search {padding-left: 34px;}
	#section-7 .search input[type="text"] {height: 60px; font-size: 20px;}
	#section-7 .search .search-button {width: 38px; height: 38px; left: 12px; background-size: 100%;}
	#section-8 .bg-img {width: 380px;}
}

@media all and (max-width:641px){
	.mv-btn {margin-top: 20px;}
	#section-2 {min-height: inherit; background: url("../img/main/sec02-bg.jpg") no-repeat left -300px center / cover;}
	#section-2 .section-in {height: 720px; min-height: inherit;}
	#section-2 .right {position: absolute; width: 100%; max-height: 550px; left: 50%; bottom: 0; transform: translateX(-50%);}
	#section-2 .right .con {margin-top: 15px;}
    #section-2 .right .diagnosis-content {padding: 80px 40px 15px; max-width: 360px;}
	#section-2 .custom-radio-wrap li:not(last-child) {margin-bottom: 8px;}
	#section-2 .custom-radio-wrap input[type="radio"] + label span, #section-2 .custom-radio-wrap input[type="checkbox"] + label span, #section-2 input[type="text"], #section-2 input[type="number"] {height: 56px; line-height: 56px;}
	#section-2 .right .btn-wrap button {height: 56px; line-height: 56px;}
	#section-2 .ph-img {display: none; height: 630px;}
	#section-2 .ph-img.mobile {display: block;}
	#section-3 {overflow: hidden;}
	#section-3 .al-mobile .contents {height: 720px;}
	#section-3 .about-lawyer .left {top: 40px;}
	#section-3 .about-lawyer .right {bottom: 95px;}
	#section-3 .about-lawyer .watermark {bottom: 40px;}
	#section-3 .about-lawyer .sec-tit2, #section-3 .sec-tit, #section-2 .left strong, #section-5 .left > strong {margin-bottom: 10px;}
	#section-3 .about-lawyer .right {height: 265px;}
	#section-3 .about-lawyer:nth-child(3) .right {background-position: center bottom -25px !important;}
	#section-3 .mySwiper {max-width: 400px; width: calc(100% + 22px);}
	#section-3 .mySwiper .content strong {margin-bottom: 10px;}
	#section-3 .mySwiper .category {margin-bottom: 15px;}
	#section-3 .mySwiper .bottom {flex-direction: column; align-items: baseline; gap: 20px; margin-top: 50px;}
	#section-3 .swiper-slide {padding: 42px 38px; height: 420px; background: url("../img/main/folder-bg-m.svg") no-repeat center / contain;}
	#section-3 .swiper-button-prev {left: 100px !important; bottom: -60px !important; top: inherit;}
	#section-3 .swiper-button-next {right: 100px !important; bottom: -60px !important; top: inherit;}
	#section-4 .line {justify-content: center; gap: 10px 14px; flex-wrap: wrap; max-width: 360px; font-weight: 800;}
	#section-4, #section-5 {padding: 90px 0;}
	#section-5 .swiper-slide {height: 400px;}
	#section-6 .n-list li {gap: 10px; padding: 15px 5px;}
	#section-6 .n-list li .badge {min-width: 74px; padding: 8px 8px; font-size: 13px;}
	#section-7 .search {margin: 25px auto;}
	#section-7 .search input[type="text"] {height: 54px; font-size: 18px;}
	#section-7 .search .search-button {width: 34px; height: 34px; left: 12px; background-size: 100%;}
	#section-8 .form > li:not(:last-child) {margin-bottom: 15px;}
	#section-8 .form-wrap li input[type='text'] {height: 56px;}
	#section-8 .form-wrap li > span {width: 100px;}
	#section-8 .form-wrap li input[type='text'], #section-8 .form-wrap li > div {width: calc(100% - 100px);}
	#section-8 .form-wrap .submit {padding: 20px 0;}
}

@media all and (max-width:481px){
    #section-2 .section-in {height: 720px;}
	#section-2 .ph-img {height: 600px;}
	#section-2 .right .diagnosis-content {padding: 70px 30px 15px;}
	#section-2 .custom-radio-wrap input[type="radio"] + label span, #section-2 .custom-radio-wrap input[type="checkbox"] + label span {padding-left: 40px;}
	#section-2 .custom-radio-wrap li img {width: 22px; left: 10px;}
	#section-3 .mySwiper {max-width: 310px; width: calc(100% + 22px);}
	#section-3 .swiper-slide {padding: 50px 18px; height: 450px;}
	#section-3 .swiper-button-prev {bottom: -20px !important}
	#section-3 .swiper-button-next {bottom: -20px !important;}
	#section-3 .about-lawyer .right {width: 100%; height: 240px; background-position: center top -25px !important;}
	#section-3 .about-lawyer:nth-child(3) .right {background-position: center bottom -25px !important;}
	#section-8 .form-wrap li .radio-wrap {gap: 8px 8px; align-items: baseline;}
	#section-8 .form-wrap li input[type="radio"] + label span, #section-8 .form-wrap li input[type="checkbox"] + label span  {padding: 14px 16px; font-size: 14px; border-radius: 12px;}
	#section-8 .bg-img {width: 250px;}
}