/* Root */
:root {

	
}


/* Rest */
*, *::before, *::after {
	margin:0;
	padding:0;
	box-sizing:border-box;
}

html {
	overflow-x:hidden;
	color:#000;
	font-family:'SUIT', sans-serif;
	font-size: 62.5% !important;
	letter-spacing: -0.01em;
	word-break:keep-all;
	word-wrap:break-word;
	box-sizing:border-box;
	-webkit-overflow-scrolling:touch;
	-webkit-tap-highlight-color:transparent !important;
	animation:entry .4s ease forwards;
	scroll-behavior: initial;
  opacity: 0;
}

html::-webkit-scrollbar {
	display:none;
}

html {
	-ms-overflow-style:none;
	scrollbar-width:none;
}

body {
	font-size:1.6rem;
}

a {
	color:inherit;
	outline:none;
	text-decoration:none;
}

ol, ul {
	list-style:none;
}

b, strong {
	font-weight:700;
}

img {
	max-width:100%;
}

button {
	font-family:inherit;
	border:none;
	outline:none;
	cursor:pointer;
	color:inherit;
	-webkit-appearance:none;
	background: none;
}

select {
	outline:none;
	border:1px solid transparent;
	font-family:inherit;
	-webkit-appearance:none;
	appearance:none;
	background-color: #fff;
}

input, textarea {
	font-family:inherit;
	outline:none;
	border:1px solid transparent;
}

:focus {
	outline: none;
}

::placeholder {
	
}

em, i {
	font-style: normal;
}

@-webkit-keyframes entry {
	to{opacity: 1;}
}

@keyframes entry {
	to{opacity: 1;}
}

@media screen and (max-width:1536px) {

}
@media screen and (max-width:1366px) {

}
@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {
	html, body {
		font-size:12px;
	}
}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}


/* Br */
.md {
	display: none;
}

@media screen and (max-width:768px) {
	.md {
		display:block;
	}
}


/* Hidden */
.hidden {
	overflow: hidden;
}


/* Blind */
.blind {
	overflow: hidden;
	position: absolute;
	width: 1px;
	height: 1px;
	clip: rect(1px, 1px, 1px, 1px);
}


/* Display */
.d-inline-block {
	display: inline-block;
}

.d-block {
	display: block;
}


/* Position */
.position-relative {
	position: relative;
}

@media screen and (min-width:769px) {
	.position-md-relative {
		position: relative;
	}
}


/* Width */
.w100 {
	width: 100%;
}


/* Height */
.h100 {
	height:100%;
}


/* Background Color */
.bg-point1 {
	background-color: #6118ac;
}

.bg-point5 {
	background-color: #957cf0;
}


/* Wrap */
.wrap {
	background-color: #f5f5f5;
}

.wrap--black {
	background-color: #1b1b1b;
}


@media screen and (max-width:1200px) {
	.wrap--black {
		padding-top:68px;
	}	
}
@media screen and (max-width:768px) {
	.wrap--black {
		padding-top:64px;
	}
}


/* Main */
#main {
	min-height:calc(100vh - 530px);
	overflow:hidden;
}

.wrap--about #main,
.wrap--service #main {
	overflow: unset;
}

@media screen and (max-width:768px) {
	.wrap--about #main,
	.wrap--service #main {
		overflow: hidden;
	}

}


/* Container */
.container {
	max-width:1790px;
	width:96%;
	margin:0 auto;
}



/* Header */
#header {
	position:fixed;
	top:0;
	left:0;
	width:100%;
	z-index: 101;
	background: #fff;
	transition: all .3s ease;
}

#header .h-container {
	padding:0px 3.33vw;
}

#header .h-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position:relative;
	padding:15px 0px;
}

#header .h-inner::after {
	content: "";
	display: block;
	position:absolute;
	left:0;
	bottom:0;
	width:100%;
	height:1px;
	background-color: #737373;
}

#header .h_logo {
	width:184px;
	height:44px;
}

#header .h_logo a {
	display: block;
	width:100%;
	height:100%;
	background: url('../img/common/header_logo_b.svg') no-repeat center / cover;
}

#header .h_menu {
	display: flex;
	gap:4.1666vw;
}

#header .h_menu a {
	font-family: 'SUIT', sans-serif;
	font-size: 1.25vw;
	font-weight:800;
	transition: all .3s ease;
}

#header .h_btn {
	position:relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width:60px;
	height: 60px;
	border-radius: 50%;
	background-color: #7828ca;
}

#header .h_btn::before {
	content: "";
	display: block;
	position:absolute;
	top:50%;
	left:50%;
	transform: translate(-50%,-50%);
	width:100%;
	height:100%;
	background: url('../img/common/header_ico_w.svg') no-repeat center / auto 23px;
}

@media screen and (min-width:1201px) {
	#header[data-header-theme = "white"] {
		background-color: transparent;
	}

	#header[data-header-theme = "white"] .h_logo a {
		background-image: url('../img/common/header_logo_w.svg');
	}

	#header[data-header-theme = "white"] .h_menu a {
		color:#fff;
	}

	#header[data-header-theme = "white"] .h_btn {
		background-color: #fff;
	}

	#header[data-header-theme = "white"] .h_btn::before {
		background-image: url('../img/common/header_ico_b.svg');
	}

	#header .h_menu li:hover a {
		color:#7828ca;
	}

	#header.active {
		background-color: #fff;
	}

	#header.active .h_logo a {
		background-image: url('../img/common/header_logo_b.svg');
	}

	#header.active .h_menu a {
		color:#000;
	}

	#header.active .h_btn {
		background-color: #7828ca;
	}

	#header.active .h_btn::before {
		background-image: url('../img/common/header_ico_w.svg');
	}

}
@media screen and (max-width:1536px) {

}
@media screen and (max-width:1366px) {

}
@media screen and (max-width:1200px) {
	#header .h-inner {
		padding: 12px 0px;
	}

	#header .h_logo {
		width:158px;
		height: 38px;
	}

	#header .h_logo a {
		background-size: auto 38px;
	}

	#header .h_main {
		display: none;
	}

	#header .h_btn {
		width:44px;
		height:44px;
	}

	#header .h_btn::before {
		background-size: auto 20px;
	}
}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {
	#header .h-container {
		padding:0px 15px;
	}

	#header .h_logo {
		width:136px;
		height: 32px;
	}

	#header .h_logo a {
		background-size: auto 32px;
	}

	#header .h_btn {
		width: 40px;
		height:40px;
	}

	#header .h_btn::before {
		background-size: auto 16px;
	}
}
@media screen and (max-width:576px) {

}


/* Navigation */
#nav {
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:150;
	background-color: #191919;
	-webkit-clip-path: circle(0% at 95% 5%);
	clip-path: circle(0% at 95% 5%);
	transition: all 1s ease;
	pointer-events: none;
	visibility: hidden;
}

#nav .nav-container {
	width: 100%;
	height: 100%;
	padding: 0px 3.33vw;
}

#nav .nav-inner {
	display: flex;
	align-items: center;
	position: relative;
	gap:15.625vw;
	width:100%;
	height: 100%;
	padding:0px 7.2916vw;
}

#nav .nav_btn {
	position:absolute;
	top:15px;
	right:0;
	display: flex;
	justify-content: center;
	align-items: center;
	width:60px;
	height: 60px;
	border-radius: 50%;
	background-color: #7828ca;
}

#nav .nav_btn span {
	display: block;
	position: relative;
	width:30px;
	height:2px;
}

#nav .nav_btn span::before,
#nav .nav_btn span::after {
	content: "";
	display: block;
	position:absolute;
	width:30px;
	height: 2px;
	background-color: #fff;
}

#nav .nav_btn span::before,
#nav .nav_btn span::after {
  transition-property:transform;
	transition-duration: .4s;
	transition-delay:0s;
}

#nav .nav_menu {
	text-align: center;
	opacity: 0;
	transform: translateY(60px);
	transition: all 1s ease .3s;
}

#nav .nav_menu li:not(:last-child) {
	margin-bottom: 50px;
}

#nav .nav_menu a {
	display: block;
}

#nav .nav_menu a h2 {
	display: inline-block;
	position: relative;
	font-size: 6.25vw;
	color:#191919;
	text-shadow:-2px -2px 0 #d7d7d7, 0 -2px 0 #d7d7d7, 2px -2px 0 #d7d7d7, -2px 0 0 #d7d7d7, 2px 0 0 #d7d7d7, -2px 2px 0 #d7d7d7, 0 2px 0 #d7d7d7, 2px 2px 0 #d7d7d7;
	transition: all .4s ease;
}

#nav .nav_menu a i {
	display: inline-block;
	position: absolute;
	width: 3.0208vw;
	height: 4.4791vw;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 3.0208vw auto;
	opacity: 0;
	visibility: hidden;
	transform: translateY(30px);
	pointer-events: none;
	transition: all .6s ease-in-out;
}

#nav .nav_assist {
	opacity:0;
	transform: translateY(60px);
	transition: all 1s ease .3s;
}

#nav .nav_assist li:not(:last-child) {
	margin-bottom:80px;
}

#nav .nav_assist span {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap:10px;
	padding:8px 20px;
	background-color: #7828ca;
	border-radius:20px;
	font-size: 1vw;
}

#nav .nav_assist p {
	font-size: 1.6vw;
	margin-top: 20px;
}

#nav .nav_assist .icon {
	display: inline-block;
	width:17px;
	height:15px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

#nav .nav_assist .icon01 {
	background-image: url('../img/common/nav_ico01.svg');
}

#nav .nav_assist .icon02 {
	background-image: url('../img/common/nav_ico02.svg');
}

#nav .nav_assist .icon03 {
	background-image: url('../img/common/nav_ico03.svg');
}

#nav .nav_assist .icon04 {
	background-image: url('../img/common/nav_ico04.svg');
}

#nav[data-nav = ""] {
	-webkit-transition: all .6s ease;
	transition: all .6s ease;
}

#nav[data-nav = "on"] {
	-webkit-clip-path: circle(142% at 95% 5%);
	clip-path: circle(142% at 95% 5%);
	pointer-events: all;
	visibility: visible;
}

#nav[data-nav = "on"] .nav_menu,
#nav[data-nav = "on"] .nav_assist {
	opacity:1;
	transform: translateY(0);
}

#nav[data-nav = "on"] .nav_btn span::before {
	transform: rotate(45deg);
}

#nav[data-nav = "on"] .nav_btn span::after {
	transform: rotate(-45deg);
}

@media screen and (min-width:1025px) {
	#nav .nav_menu a:hover h2 {
		color:#d7d7d7;
	}

	#nav .nav_menu a:hover i {
		opacity: 1;
		visibility: visible;
		transform: translateY(0px);
	}
}
@media screen and (max-width:1536px) {

}
@media screen and (max-width:1366px) {
	#nav .nav-inner {
		gap:200px;
	}

	#nav .nav_assist li:not(:last-child) {
		margin-bottom: 60px;
	}
}
@media screen and (max-width:1200px) {
	#nav .nav-inner {
		flex-direction: column;
		justify-content: center;
		gap:40px;
		padding:68px 0px;
	}

	#nav .nav_btn {
		top:12px;
		width:44px;
		height: 44px;
	}

	#nav .nav_btn span {
		width:24px;
	}

	#nav .nav_btn span::before, #nav .nav_btn span::after {
		width:24px;
	}

	#nav .nav_menu li:not(:last-child) {
		margin-bottom: 20px;
	}

	#nav .nav_menu a h2 {
		text-shadow: -1px -1px 0 #d7d7d7, 0 -1px 0 #d7d7d7, 1px -1px 0 #d7d7d7, -1px 0 0 #d7d7d7, 1px 0 0 #d7d7d7, -1px 1px 0 #d7d7d7, 0 1px 0 #d7d7d7, 1px 1px 0 #d7d7d7;
	}

	#nav .nav_assist {
		text-align: center;
	}

	#nav .nav_assist li:not(:last-child) {
		margin-bottom: 20px;
	}

	#nav .nav_assist span {
		gap:6px;
		padding: 6px 16px;
	}

	#nav .nav_assist p {
		margin-top: 12px;
	}

	#nav .nav_assist .icon {
		width:13px;
		height:11px;
	}
}
@media screen and (max-width:1024px) {
	#nav .nav-inner {
		gap:30px;
	}
}
@media screen and (max-width:768px) {	
	#nav .nav-container {
		padding: 0px 15px;
	}

	#nav .nav-inner {
		padding: 60px 0px;
	}

	#nav .nav_btn {
		top:12px;
		width:40px;
		height:40px;
	}

	#nav .nav_btn span {
		width:18px;
	}

	#nav .nav_btn span::before, #nav .nav_btn span::after {
		width:18px;
	}

	#nav .nav_menu li:not(:last-child) {
		margin-bottom:20px;
	}

	#nav .nav_menu a h2 {
		font-size:3.2rem;
	}

	#nav .nav_assist span {
		gap:4px;
		padding: 4px 10px;
		font-size:1.2rem;
	}

	#nav .nav_assist .icon {
		width:11px;
		height: 9px;
	}

	#nav .nav_assist p {
		font-size:1.5rem;
		margin-top:8px;
	}
}
@media screen and (max-width:576px) {
	
}



/* Footer */
#footer {
	position: relative;
	z-index:99;
	padding:4.16667vw 0px;
	background-color: #2c2856;
	border-top-left-radius:40px;
	border-top-right-radius:40px;
}

#footer .f-container {
	padding:0px 3.33vw;
}

#footer .f-inner {
	position:relative;
}

#footer .f_top {
	position:relative;
	display:flex;
	justify-content:flex-end;
}

#footer .f_logo {
	position:absolute;
	top:0;
	left:0;
	width: 15.7291vw;
	height: 3.75vw;
	background: url('../img/common/footer_logo.svg') no-repeat center / cover;
}

#footer .f_cs {
	text-align:right;
	margin-bottom:4.16667vw;
}

#footer .f_cs dd {
	font-size:1.875vw;
	line-height:1;
}

#footer .f_cs dd:not(:last-child) {
	padding-bottom: 1.4583vw;
}

#footer .f_tag {
	display:flex;
	align-items:center;
	gap:2.08vw;
}

#footer .f_tag dd {
	font-size:2.1875vw;
}

#footer .f_info {
	display: flex;
	flex-wrap: wrap;
	max-width:1520px;
	margin:0px -0.3125vw 0.3125vw;
}

#footer .f_info li {
	font-size:0.833vw;
	line-height: .8;
	padding:0px 0.3125vw;
	margin:0.3125vw 0px;
}

#footer .f_info li:first-child {
	width:100%;
	margin-bottom: 12px;
}

#footer .f_mem {
	display: flex;
	flex-wrap: wrap;
	max-width:1520px;
	margin:0px -0.3125vw;
}

#footer .f_mem li {
	font-size:0.833vw;
	line-height: .8;
	padding:0px 0.3125vw;
	margin:0.3125vw 0px;
}

#footer .f_line {
	position: relative;
	width:100%;
	height:2px;
	margin:3.125vw 0px 1.5625vw;
	background:#ffffff;
}

#footer .f_line::before {
	content: "";
	display: block;
	position:absolute;
	top:50%;
	left:50%;
	transform: translate(-50%,-50%);
	width:1.875vw;
	height:1.875vw;
	background: url('../img/common/footer_line.svg') no-repeat center / cover;
}

#footer .f_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	position:absolute;
	top:-6.25vw;
	right:0;
	width:4.16667vw;
	height:4.16667vw;
	border-radius:50%;
	background-color: #7828ca;
	font-size:0.833vw;
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {
	#footer {
		padding:40px 0px;
		border-top-left-radius:20px;
		border-top-right-radius:20px;
	}

	#footer .f_top .rt {
		width: 100%;
	}

	#footer .f_logo {
		width: 37.75vw;
		height:9vw;
	}

	#footer .f_cs {
		margin-bottom:10vw;
	}

	#footer .f_cs dd {
		font-size: 3.5vw ;
	}

	#footer .f_cs dd:not(:last-child) {
		padding-bottom: 2.25vw;
	}

	#footer .f_tag {
		justify-content: center;
		gap:3.75vw;
		flex-wrap: wrap;
	}

	#footer .f_tag dd {
		font-size: 3.75vw;
	}

	#footer .f_line {
		height:1px;
		margin: 7.5vw 0px;
	}

	#footer .f_line::before {
		width: 4.5vw;
		height:4.5vw;
	}

	#footer .f_btn {
		display: none;
	}

	#footer .f_info {
		text-align: center;
		justify-content: center;
		margin:-0.75vw 0px;
	}

	#footer .f_info li {
		font-size:2.5vw; 
		line-height: 1;
		margin:0.75vw 0px;
	}

	#footer .f_info li:not(:nth-child(6)):not(:nth-child(7)) {
		width:100%;
	}

	#footer .f_mem {
		text-align: center;
		justify-content: center;
		margin:1vw -0.75vw -0.75vw;
	}

	#footer .f_mem li {
		font-size:2.5vw; 
		line-height: 1;
		margin:0.75vw;
	}


	#footer .f_info li:first-child {
		margin-bottom: 2.5vw;
	}
}
@media screen and (max-width:576px) {
	
}


/* Band */
#band {
	position: relative;
	border-radius:30px;
	background: url('../img/common/band_bak.png') no-repeat center / cover;
	overflow:hidden;
}

#band .band-inner {
	position:relative;
	display: flex;
	flex-direction: column;
	gap:4.16667vw;
	padding:8.33vw 10.9375vw;
}

#band .item {
	position: relative;
	z-index: 5;
}

#band .text h1 {
	font-size: 12vw;
	line-height:.7;
}

#band .link {
	position: absolute;
	bottom:0;
	text-align: center;
	z-index: 2;
}

#band .link p {
	font-size: 1vw;
	margin-bottom: 1.041vw;
} 

#band .link a {
	display: flex;
	align-items: center;
	height:3.6vw;
	padding:0px 4.6875vw;
	border-radius: 100px;
	background-color: #fff;
	font-size: 1.45vw;
	font-weight:800;
	transition: all .5s ease;
}

#band .link i {
	display: block;
	position:absolute;
	right: -3.6vw;
	bottom: 0;
	width:3.6vw;
	height:3.6vw;
	border-radius: 50%;
	background-image: url('../img/common/band_link.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 1.0416vw;
	transition: all .5s ease;
}

#band .link_btn {
	position: relative;
}

#band .img {
	display: block;
	position: absolute;
	bottom:0;
	z-index:1;
}

#band .item01 {
	padding-right: 26vw;
}

#band .item01 .link {
	right:11.8541vw;
}

#band .item01 .link a {
	color:#957cf0;
}

#band .item01 .img {
	right:2.5vw;
	width: 7.1354vw;
	height: 9.3229vw;
	animation: char-updown-ani 3s ease-in-out infinite forwards;
}

#band .item02 {
	padding-left: 26vw;
}

#band .item02 .link {
	left:6.5vw;
}

#band .item02 .link a {
	color:#6118ac;
}

#band .item02 .img {
	left:0;
	width: 5.8854vw;
	height: 8.8541vw;
	animation: char-updown-ani 3s ease-in-out 1.5s infinite forwards;
}

#band .band-ele {
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height:100%;
	pointer-events: none;
}

#band .band-ele .ele-box {
	position: absolute;
	opacity:.6;
}

#band .band-ele .ele-box01 {
	top:3.6458vw;
	left: -0.5208vw;
}

#band .band-ele .ele-box02 {
	top:21.354vw;
	left: 6.7708vw;
}

#band .band-ele .ele-box03 {
	right: 6.7708vw;
	bottom:3.6458vw;
}

#band .band-ele .ele-box01 img {
	mix-blend-mode: screen;
	width: 18.75vw;
	height: 10.1041vw;
	animation: updown-ani02 6s linear infinite forwards;
}

#band .band-ele .ele-box02 img {
	width: 3.75vw;
	height:4.53125vw;
	animation: updown-ani01 6s linear infinite forwards;
}

#band .band-ele .ele-box03 img {
	width: 10.3125vw;
	height: 9.8958vw;
	animation: rotate-ani 6s linear infinite forwards;
}

@media screen and (min-width:1201px) {
	#band .link a:hover + i {
		background-position: right 16px center;
	}

	#band .item01 .link a:hover {
		color:#fff;
		background-color: #957cf0;
	}

	#band .item02 .link a:hover {
		color:#fff;
		background-color: #6118ac;
	}
}
@media screen and (max-width:1536px) {

}
@media screen and (max-width:1366px) {

}
@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {
	#band .band-inner {
		gap:7.5vw;
		padding:12.5vw 8.75vw;
	}

	#band .item {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap:12.5vw;
	}

	#band .text {
		text-align: center;
		order: 1;
	}

	#band .text h1 {
		font-size:18.75vw;
	}

	#band .link {
		position: relative;
		bottom: unset;
		width: 86.97%;
		order: 2;
	}

	#band .link p {
		font-size:2.75vw;
		margin-bottom: 2.5vw;
	}

	#band .link a {
		justify-content: center;
		width: calc(100% - 9.5vw);
		height:9.5vw;
		font-size: 3.75vw;
	}

	#band .link i {
		right:0px;
		width: 9.5vw;
		height: 9.5vw;
		background-size: auto 2.5vw;
	}
	
	#band .item01 {
		padding-right: 0px;
	}

	#band .item01 .link {
		right: unset;
		padding-right: 15vw;
	}

	#band .item01 .img {
		right: 5vw;
		width: 18.5vw;
		height: 24.125vw;
	}

	#band .item02 {
		padding-left:0px;
	}

	#band .item02 .link {
		left: unset;
		padding-left:15vw;
	}

	#band .item02 .img {
		left: 5vw;
		width: 15.125vw;
		height: 22.875vw;
	}

	#band .band-ele .ele-box01 {
		top:6.25vw;
		left:0px;
	}

	#band .band-ele .ele-box02 {
		display: none;
	}

	#band .band-ele .ele-box03 {
		right: 3.75vw;
		bottom: 33.75vw;
	}

	#band .band-ele .ele-box01 img {
		width: 29vw;
		height: 15.625vw;
	}

	#band .band-ele .ele-box03 img {
		width: 16.625vw;
		height: 15.875vw;
	}

}
@media screen and (max-width:576px) {

}


/* Modal */
.modal {
	display: none;
	position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  place-items: center;
  z-index: 9999999;
}

.modal .modal-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap:10px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width:680px;
	max-height: none;
	width: 95%;
	height:auto;
	margin:10px auto;
}

.modal .modal-inner {
	width: 100%;
	height: 100%;
	position: relative;
}

.modal .modal-heading {
	display: flex;
	justify-content: flex-end;
	margin-bottom:20px;
}

.modal .modal-close {
	font-size:1.75vw;
	color:#fff;
}

.modal .modal-content {
	background-color: #fff;
	padding:20px;
	border-radius:1vw;
}

.modal .modal-textarea {
	height:400px;
	padding:20px;
	overflow-y: auto;
	border:1px solid #ddd;
}

.modal .modal-textarea p {
	font-size:14px;
}

.modal .modal-background {
	width:100%;
  height:100%;
	background-color: rgba(0, 0, 0, 0.6);
	cursor: pointer;
}

.modal .modal-heading {
	display: flex;
	justify-content: flex-end;
}

.modal .footer-modal-close{
	display: block;
	width:23px;
	height:23px;
	/* background: url('/child/img/bbs/btn_modal_close.png') no-repeat center;	 */
}

.modal .modal-area {
	width: 100%;
	height:100%;
	background-color: #fff;
	border-radius:10px;
	padding: 60px 50px;
	overflow: hidden;
}

.modal.open {
	display: block;
}

@media screen and (max-width:1536px) {

}
@media screen and (max-width:1366px) {

}
@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {
	.modal .modal-heading {
		margin-bottom:10px;
	}

	.modal .modal-close {
		font-size: 20px;
	}

	.modal .modal-content {
		padding: 16px;
	}

	.modal .modal-textarea {
		height:300px;
		padding: 16px;
	}
}
@media screen and (max-width:576px) {

}

