@charset "utf-8";


.inner {
	position: relative;
	width: 100%;
	max-width: 1410px;	
	padding: 0 20px;
	box-sizing: border-box;
	margin:0 auto;
}

#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 5;
}
#header .inner {
	max-width: 100%;
	height: 82px;
	padding: 0 50px;
}
#header h1 {
	width: 185px;
}
#header h1 img {
	width: 100%;
}
#header .gnb ul {
	gap: 50px;
}
#header .gnb ul li a {
	font-size: 20px;
	color: var(--white);
	font-weight: 500;
	text-transform: uppercase;
}
#header .menu {
	position: relative;
	width: 40px;
	height: 40px;
}
#header .menu .menu_circle {
	display: block;
	background-color: transparent;
	width: 100%;
	height: 100%;
	position: absolute;
	border-radius: 50%;
	transform: scale(1);
	z-index: 10;
	transition: transform 0.3s ease-in-out;
}
#header .menu.on .menu_circle {
	transform: scale(200);
	background-color: var(--black);
}
#header .menu a {
	position: relative;
	display: block;
	width: 40px;
	height: 40px;
	border: 1px solid var(--white);
	border-radius: 50%;
	z-index: 11;
	box-sizing: border-box;
}
#header .menu a span {
	position: absolute;
	top: 0;
	left: 8px;
	display: block;
	width: 22px;
	height: 2px;
	background: var(--white);
	transition: all .3s;
	border-radius: 30px;
}
#header .menu a span:nth-child(1) {
	top: 10px;
}
#header .menu a span:nth-child(2) {
	top: 18px;
}
#header .menu a span:nth-child(3) {
	top: 26px;
}
#header .menu.on a span:nth-child(1) {
	top: 20px;
	transform: rotate(45deg);
}
#header .menu.on a span:nth-child(2) {
	display: none;
}
#header .menu.on a span:nth-child(3) {
	top: 20px;
	transform: rotate(-45deg);
}
#header.fixed {
	background: var(--black);
}


.side_wrap {
	opacity: 0;
	z-index: -1;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
	height: calc(100vh - 80px);
	transition: all .2s;
	margin-top: 80px;
}
.side_wrap.on {
    opacity: 1;
	z-index: 5;
}
.side_wrap .scrollFunc {
    overflow-y: auto;
    height: 100%;
}
.side_wrap .scrollFunc::-webkit-scrollbar {
	width: 5px;
	border-radius: 10px;
}
.side_wrap .scrollFunc::-webkit-scrollbar-thumb {
	background-color: var(--key-color);
}
.side_wrap .scrollFunc::-webkit-scrollbar-track {
	background-color: var(--black);
}
.side_wrap .depth {
    padding-left: 182px;
	padding-bottom: 50px;
    box-sizing: border-box;
}
.side_wrap .depth01 button {
	position: relative;
	text-transform: uppercase;
	font-size: 145px;
	font-weight: 700;
	text-align: left;
	color: var(--white);
}
.side_wrap .depth01 button:after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 0;
    display: block;
    width: 0;
    height: 20px;
    background: var(--key-color);
    transition: width .3s ease-in;
    z-index: -1;
}
.side_wrap .depth01.active button:after,
.side_wrap .depth01 button:hover:after {
	width: 100%;
}
.side_wrap .depth02 {
	max-height: 0;
	overflow: hidden;
	transition: all .3s;
}
.side_wrap .active .depth02 {
	max-height: 500px;
}
.side_wrap .depth02 li {
	margin: 10px 0;
}
.side_wrap .depth02 li a {
	font-size: 70px;
}
.side_wrap .depth02 li a:hover {
	color: var(--key-color);
}
.black_bg {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 34;
}


#container {
	width: 100%;
}



.modal {
	display: none;
}
.modal .black_bg {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 37;
}
.modal .modal_cont {
    width: 95%;
    max-width: 1320px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-height: 95vh;
    overflow: hidden;
	z-index: 38;
	background: var(--black);
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10);
}
.modal .modal_cont .scroll {
	position: relative;
	max-height: calc(95vh - 75px);
	background: var(--black);
    overflow-x: hidden;
    overflow-y: visible;
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    box-sizing: border-box;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.modal .modal_cont .scroll::-webkit-scrollbar {
    display: none;
}
.modal .close {
	position: absolute;
	top: 25px;
	right: 20px;
	width: 40px;
	height: 40px;
	background: url("../images/ic_close.svg")no-repeat 50% 50% / 100%;
	box-sizing: border-box;
}



.not_scroll {
	overflow: hidden;
}


.pagenavi {
	margin-top: 20px;
	padding-top: 20px;
}
.pagenavi ol {
	justify-content: center;
	text-align: center;
	gap: 20px;
}
.pagenavi ol li img {
	vertical-align: middle;
	margin-top: -2px;
}
.pagenavi ol li a {
	display: block;
	width: 30px;
	height: 30px;
	line-height: 32px;
	font-size: 16px;
	color: #7c7c7c;
}
.pagenavi ol li.this a {
	background: var(--key-color);
	color: var(--white);
	border-radius: 50%;
}



#footer {
	position: relative;
	padding: 100px 0;
	min-height: auto !important;
	height: auto !important;
	background: #2B2B2B;
	box-sizing: border-box;
}
#footer .inner {
	max-width: 1720px;
}
#footer .logo {
	width: 100%;
	color: #fff;
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 40px;
}
#footer .logo img {
	width: 185px;
	vertical-align: middle;
}
#footer .info {
	flex: 1;
	margin-right: 30px;
}
#footer .info .top {
	margin-bottom: 20px;
}
#footer .info .top a {
	color: #919191;
	font-size: 20px;
	margin-right: 20px;
}
#footer .info .addr {
	margin-bottom: 20px;
	font-size: 0;
	color: #919191;
}
#footer .info .addr span {
	position: relative;
	display: inline-block;
	margin-right: 20px;
	padding-right: 20px;
	font-size: 16px;
}
#footer .info .addr span:after {
	content: '';
	display: block;
	width: 1px;
	height: 10px;
	background: rgba(255, 255, 255, 0.7);
	position: absolute;
	top: 4px;
	right: 0;
}
#footer .info .addr span:last-child {
	margin-right: 0;
	padding-right: 0;
}
#footer .info .addr span:last-child:after {
	display: none;
}
#footer .info .addr span a {
	color: #919191;
}
#footer .info .icon {
	margin-bottom: 20px;
}
#footer .info .icon span {
	margin-right: 20px;
	font-size: 16px;
	color: #919191;
	padding-left: 30px;
}
#footer .info .icon span a {
	color: #919191;
}
#footer .info .icon span.tel {
	background: url("../images/ico-phone.svg")no-repeat 0 50%;
}
#footer .info .icon span.fax {
	background: url("../images/ico-fax.svg")no-repeat 0 50%;
}
#footer .info .icon span.adr {
	background: url("../images/ico-addr.svg")no-repeat 0 50%;
}
#footer .info .icon span.mail {
	background: url("../images/ico-mail.svg")no-repeat 0 50%;
}
#footer .info .copy {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.3);
}
#footer .sns a {
	margin-right: 20px;
}
#footer .sns a:last-child {
	margin-right: 0;
}


#fix_btn {
	position: fixed;
	bottom: 40px;
	right: 20px;
	z-index: 35;
}
#fix_btn a {
	display: block;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: url("../images/ft_btn.svg")no-repeat 50% 50% / 100%;
}
#fix_btn a:hover {
	background: url("../images/ft_btn_hover.svg")no-repeat 50% 50% / 100%;
}



h3.tit {
	font-size: 100px;
	text-transform: uppercase;
}

.title {
    gap: 30px;
}
.title h2 {
    font-size: 80px;
}
.title p {
    font-size: 20px;
}

.pd200 {
	padding: 150px 0 200px;
}

.fp-warning, .fp-watermark {
    display: none!important;
}
.slide_up {
    opacity: 0;
    transform: translateY(50%);
    transition-duration: 1s;
    transition-delay: .5s;
}
.active .slide_up,
.on .slide_up,
#contact.fp-completely .slide_up {
    opacity: 1;
    transform: translateY(0%);
}
.slide_down {
    opacity: 0;
    transform: translateY(-10%);
    transition-duration: 1s;
    transition-delay: .5s;
}
.active .slide_down,
.on .slide_down,
#contact.fp-completely .slide_down {
    opacity: 1;
    transform: translateY(0%);
}


#ig_pop .modal_cont {
    width: 100%;
    max-width: 100%;
    transform: none;
    top: 0;
    left: auto;
    right: -100%;
    height: 100vh;
    max-height: 100vh;
}
#ig_pop.active .modal_cont {
    animation: rightToLeft .8s ease-in-out forwards;
}
@keyframes rightToLeft {
    to {
        right: 0;
    }
    from {
        right: -100%;
    }
}
#ig_pop .form {
    display: none;
}
#ig_pop .form .thumb {
    position: relative;
    flex: 1;
    height: 100vh;
    max-width: 1000px;
}
#ig_pop .form .thumb img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#ig_pop .form .info {
    height: 100vh;
    padding: 0 100px;
    justify-content: center;
    overflow-y: auto;
    box-sizing: border-box;
}
#ig_pop .form .info .box h3 {
    margin-bottom: 60px;
}
#ig_pop .form .info .box > div {
    font-size: 24px;
    margin-top: 40px;
    gap: 5px;
}
#ig_pop .form .info .box > div ul {
    gap: 5px;
}


.agreement {
	padding: 120px 0 80px;
	box-sizing: border-box;
}
.agreement h2 {
	text-align: center;
	padding-bottom: 80px;
	font-size: 36px;
}
.agreement .conts {
	white-space: pre-line;
}
.privacy .conts {
	white-space: normal;
}
.privacy .conts > div {
	margin-bottom: 50px;
}
.privacy .conts > div p {
	margin: 10px 0;
}
.privacy .conts strong {
	display: block;
	font-size: 18px;
}
.privacy .conts > div ul {
	padding-left: 30px;
	margin: 20px 0;
	box-sizing: border-box;
}
.privacy .conts table th,
.privacy .conts table td {
	width: 16.666%;
	border: 1px solid var(--white);
	text-align: center;
	padding: 10px 5px;
}
.privacy .conts .grid {
	gap: 3px;
}
.privacy .conts .grid > div {
	position: relative;
	flex: 1;
	background: var(--white);
	color: var(--black);
	text-align: center;
	padding: 20px 0;
	font-size: 18px;
	box-sizing: border-box;
}
.privacy .conts .grid > div .img {
	position: relative;
	width: 80px;
	height: 100px;
	margin: 0 auto;
	text-align: center;
}
.privacy .conts .grid > div .img svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
}
.privacy .conts .grid > div .hover {
	display: none;
	position: absolute;
	left: 0;
	width: 380px;
	background: #f6f6f6;
	border: 1px solid #ddd;
	padding: 20px;
	margin-top: 35px;
	text-align: left;
	z-index: 5;
	box-sizing: border-box;
}
.privacy .conts .grid > div:nth-child(5) .hover,
.privacy .conts .grid > div:nth-child(6) .hover {
	left: auto;
	right: 0;
}
.privacy .conts .grid > div:hover .hover {
	display: block;
}
.privacy .conts .grid > div .hover > div {
	font-weight: 600;
	font-size: 18px;
}
.privacy .conts .grid > div .hover > p {
	font-size: 16px;
}
.privacy .conts .grid > div .hover > span {
	display: block;
	font-size: 14px;
}




@media screen and (max-width: 1600px) {
}
@media screen and (max-width: 1450px) {
	#header .inner {
		padding: 0 20px;
	}
	#header .gnb ul {
		gap: 30px;
	}
	#header .gnb ul li a {
		font-size: 18px;
	}

	.side_wrap .depth {
		padding-left: 90px;
	}
	.side_wrap .depth01 button {
		font-size: 110px;
	}
	.side_wrap .depth02 li a {
		font-size: 50px;
	}

	h3.tit {
		font-size: 80px;
	}

	.title h2 {
        font-size: 60px;
	}

	#ig_pop .form .info {
        padding: 0 65px;
    }
    #ig_pop .form .info h3.tit {
        font-size: 70px;
    }
    #ig_pop .form .info .box > div {
        font-size: 20px;
    }
}
@media screen and (max-width: 1024px) {
	#header .inner {
		height: 60px;
	}
	#header .gnb {
		display: none;
	}
	#header .menu {
		display: block;
	}

	.side_wrap .depth {
		padding-left: 20px;
	}
	.side_wrap .depth01 button {
		font-size: 86px;
	}
	.side_wrap .depth01 button:after {
		height: 10px;
	}
	.side_wrap .depth02 li a {
		font-size: 38px;
	}

	#footer {
		padding: 50px 0;
	}
	#footer .info {
		margin-right: 20px;
	}
	#footer .info .top {
		margin-bottom: 10px;
	}
	#footer .info .top a {
		font-size: 16px;
		margin-right: 10px;
	}
	#footer .info .addr {
		margin-bottom: 10px;
	}
	#footer .info .addr span {
		margin-right: 10px;
		padding-right: 10px;
		font-size: 14px;
	}
	#footer .info .icon {
		margin-bottom: 10px;
	}
	#footer .info .icon span {
		margin-right: 15px;
		font-size: 14px;
		padding-left: 20px;
		background-size: 15px!important;
		margin-bottom: 5px;
	}
	#footer .info .copy {
		font-size: 12px;
	}
	#footer .sns a {
		margin-right: 10px;
	}
	#footer .sns a img {
		width: 40px;
	}
	#fix_btn a {
		width: 55px;
		height: 55px;
	}

	.modal .close_bar {
		font-size: 18px;
	}
	.modal .close {
		top: 20px;
	}
	.modal .modal_cont .scroll {
		padding: 0 20px;
	}
	
	h3.tit {
		font-size: 54px;
	}

	.title {
        gap: 10px;
	}
	.title h2 {
        font-size: 50px;
	}
	.title p {
        font-size: 16px;
	}

	.pd200 {
		padding: 80px 0 100px;
	}

	#ig_pop .modal_cont {
        overflow-y: auto;
    }
    #ig_pop .form {
        flex-direction: column;
    }
    #ig_pop .form .thumb {
        flex: none;
        width: 100%;
        height: 45vh;
    }
    #ig_pop .form .info {
        width: 100%;
        height: auto;
        padding: 30px 20px;
    }
    #ig_pop .form .info h3.tit {
        font-size: 54px;
        margin-bottom: 45px;
    }
    #ig_pop .form .info .box > div {
        font-size: 16px;
    }


	.agreement {
    	padding: 90px 0 80px;
	}
	.agreement h2 {
		font-size: 24px;
		padding-bottom: 40px;
	}
	.agreement .conts {
		font-size: 14px;
	}
	.privacy .conts .grid > div {
		flex: none;
		width: calc(33.333% - 2px);
		font-size: 16px;
	}
	.privacy .conts .grid > div .hover {
		left: 0!important;
	}
	.privacy .conts .grid > div:nth-child(3) .hover,
	.privacy .conts .grid > div:nth-child(6) .hover {
		left: auto!important;
		right: 0!important;
	}
	.privacy .conts .grid > div .hover > div {
		font-size: 16px;
	}
	.privacy .conts .grid > div .hover > p {
		font-size: 14px;
	}
}
@media screen and (max-width: 768px) {
	.side_wrap .depth01 {
		margin: 10px 0;
	}
	.side_wrap .depth01 button {
		font-size: 60px;
	}
	.side_wrap .depth02 li a {
		font-size: 28px;
	}


	#footer {
		padding: 50px 0;
	}
	#footer .logo {
		margin-bottom: 10px;
	}
	#footer .info {
		flex: none;
		width: 100%;
		margin-top: 20px;
	}
	#footer .sns {
		margin-top: 20px;
	}

	.pagenavi ol {
		gap: 10px;
	}

	h3.tit {
        font-size: 30px;
    }

	.title h2 {
        font-size: 36px;
	}
	.title p {
        font-size: 14px;
    }


	#ig_pop .form .info h3.tit {
        font-size: 30px;
        margin-bottom: 30px;
    }
    #ig_pop .form .info .box > div {
        margin-top: 30px;
    }


	.privacy .conts .grid > div {
		width: calc(50% - 2px);
	}
	.privacy .conts .grid > div .hover {
		left: 0!important;
		width: calc(100vw - 41px);
    	margin-top: 20px;
	}
	.privacy .conts .grid > div:nth-child(3) .hover {
		right: auto!important;
		left: 0!important;
	}
	.privacy .conts .grid > div:nth-child(even) .hover {
		left: auto!important;
		right: 0!important;
	}
}
@media screen and (max-width: 480px) {
	.side_wrap .depth01 button {
		font-size: 40px;
	}
	.side_wrap .depth01 button:after {
        height: 5px;
		bottom: 5px;
    }
	.side_wrap .depth02 li a {
		font-size: 20px;
	}


	.pagenavi ol {
		gap: 3px;
	}
	.pagenavi ol li a {
		width: 25px;
		height: 25px;
		line-height: 27px;
		font-size: 14px;
	}
	.pagenavi ol li img {
		width: 55%;
	}
}
@media screen and (max-width: 380px) {
}