@charset "utf-8";

* {
	margin: 0;
	padding: 0;
	vertical-align: top;
	font-family: "noto-sans", sans-serif;
	font-weight: 400;
	font-style: normal;
}

body {
	line-height: 1;
	-webkit-text-size-adjust: 100%;
	color: #fff;
	position: relative;
	font-family: "noto-sans", sans-serif;
	font-weight: 400;
	font-style: normal;
    word-break: break-all;
    overflow-x: hidden;
}
.red {
    color:#f16861;
}

::selection {
    background: #000;
    color: #ffffff;
}

img {
	border: none;
	max-width: 100%;
	height: auto;
    width: 100%;
}
.ph img {
	position: relative;
	z-index: 1;
}

iframe {
	border: none;
}

a {
	color: #fff;
	text-decoration: none;
}
a:hover {
	
}

ul, ol {
	list-style-type: none;
}

#main {
	display: block;
	position: relative;
	z-index: 4;
}

.coming{
    text-align: center;
    font-size: 20px;
    padding: 40px 0;
}

.delighter {
    transition: all .5s ease-out;
    transform: translatey(5%);
    opacity: 0;
   }

.delighter.started {
      transform: none;
      opacity: 1;
   }
.contents{
    padding: 0;
    position: relative;
}
.inBox {

}   
   
/* -------------------------------------------------
	dl
------------------------------------------------- */

dl.normal {
	width: 100%;
	margin: 0 auto 20px;
	display: flex;
	flex-wrap: wrap;
	font-size: 16px;
	box-sizing: border-box;
}
dl.normal dt,
dl.normal dd {
	padding: 30px 0;
	border-bottom: solid 1px rgba(255,255,255,0.2);
	line-height: 1.6;
}
dl.normal dt:last-of-type,
dl.normal dd:last-of-type {
	border-bottom: none;
}
dl.normal dt {
	width: 25%;
	box-sizing: border-box;
	padding-left: 20px;
}
dl.normal dd {
	width: 75%;
	padding-left: 3%;
	box-sizing: border-box;
}

dl.normal dd p {
	font-size: 14px;
	margin-bottom: 20px;
    line-height: 1.6;
}
dl.normal dd p:last-child { margin-bottom: 0;}
dl.normal dd p.alert {
	color: #cc0000;
	font-size: 16px;
}
dl.normal dd p.large {
	font-size: 16px;
}
dl.normal dd p span {
	font-size: 12px;
}
dl.normal dd h4 {
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 10px;
}
dl.normal dd h5 {
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 10px;
}
dl.normal dd a {
	text-decoration: underline;
}
dl.normal dd a:hover {
	text-decoration: none;
}
   
/* -------------------------------------------------
	form parts
------------------------------------------------- */

.checkbox {
	padding-left: 2em;
    font-size: 15px;
    position: relative;
    display: block;
    cursor: pointer;
    text-align: left;
    margin-bottom: 19px;
}
.checkbox:last-child { margin-bottom: 0;}
.checkbox input {
	display: none;
}
.checkbox input + span {
	width: 20px;
	height: 20px;
	box-sizing: border-box;
	border: solid 1px #ff5fa1;
	border-radius: 2px;
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: #fff;
}
.checkbox input:checked + span::before {
	content: "";
	width: 80%;
	height: 40%;
	border-bottom: solid 2px #ff5fa1;
	border-left: solid 2px #ff5fa1;
	transform: translateY(-15%) rotate(-45deg);
	display: inline-block;
	box-sizing: border-box;
}


/* -------------------------------------------------
	footer
------------------------------------------------- */

footer {
	box-sizing: border-box;
	margin: 0 auto;
	width: 100%;
	text-align: center;
	background: #262626;
	z-index: 2;
	position: relative;
}

footer .copyright {
	padding: 0 0 60px;
	margin: 0 auto;
	font-size: 14px;
	letter-spacing: 1px;
}

@media print, screen and (min-width:960px) {

	.pc{
		display: block;
	}
	.sp{
		display: none;
	}

	#header {
		width: 100%;
		position: absolute;
		z-index: 10;
		left: 0;
		top: 0;
	}
	#header .logo {
		width: 76px;
		position: absolute;
		left: 50px;
		top: 40px;
	}
	#header .main-menu {
		display: flex;
		position: fixed;
		right: 0;
		top: 40px;
		background: #fff;
		padding: 20px;
	}
	#header .main-menu li {
		margin-left: 1.5em;
	}
	#header .main-menu li a {
		font-size: 18px;
		letter-spacing: 0.08em;
		color: #000;
		transition: all 0.3s ease;
	}
	#header .main-menu li a:hover {
		opacity:0.7;
	}
}


@media screen and (max-width:960px) {
	.checkbox {
		font-size: 13px;
		line-height: 1.4;
		margin-bottom: 10px;
	}
	.checkbox input + span {
		width: 16px;
		height: 16px;
	}
	.checkbox input:checked + span::before {
    	transform: translate(10%,-95%) rotate(-45deg);
	}

	.hamBtn {
		position: fixed;
		right: 50px;
		top: 50px;
		width: 45px;
		height: 35px;
		transition: all .3s ease;
		cursor: pointer;
		z-index: 9999;
	}
	.hamBtn span {
		display: block;
		position: absolute;
		right: 0;
		width: 100%;
		height: 2px;
		background:#d3ac5e;
		transition: all .3s ease;
	}
	.hamBtn:nth-of-type(1) {

	}
	.hamBtn:nth-of-type(2) {
		top: 15px;
	}
	.hamBtn:nth-of-type(3) {
		top: 30px;
	}
	.hamBtn.open span {
		background:#d3ac5e;
	}
	.hamBtn.open span:nth-of-type(1) {
		transform: translateY(15px) rotate(-45deg);
	}
	.hamBtn.open span:nth-of-type(2) {
		opacity: 0;
	}
	.hamBtn.open span:nth-of-type(3) {
		transform: translateY(-15px) rotate(45deg);
	}


	.hamBox{
		display: none;
		min-height: 100%;
		box-sizing: border-box;
		position: fixed;
		height: auto;
		width: 100%;
		top: 0;
		left: 0;
		z-index: 999;
		overflow: auto;
		background: #000;
		outline: 3px solid #d3ac5e;
		outline-offset: -10px;
	}
	.menuList {
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
	text-align: center;    
	}
	.menuList a{
		vertical-align: -1px;
		font-size:4vh;
		font-weight: 200;
		text-decoration: none;
		margin: 2vh;
		display: inline-block;
		color: #d3ac5e;
	}
	.hamBtn {
		width: 30px;
		height: 25px;
		right: 20px;
		top: 20px;
	}
	.hamBtn :nth-of-type(2) {
		top: 10px;
	}
	.hamBtn :nth-of-type(3) {
		top: 20px;
	}
	.hamBtn.open span:nth-of-type(1) {
		transform: translateY(10px) rotate(-45deg);
	}
	.hamBtn.open span:nth-of-type(3) {
		transform: translateY(-10px) rotate(45deg);
	}
		
	footer .logo-asiana {
		width: 145px;
		margin: 0 auto 25px;
	}
	footer .logo {
		width: 100px;
		margin-bottom: 20px;
	}

	footer .links li {
		font-size: 15px;
	}
	footer .links li a {
		letter-spacing: 0;
	    line-height: 1.5;
	}
	footer .links li a::after {
		width: 0.45em;
		height: 0.45em;
		border-width: 2px;
	}
	footer .links li a .s {
		letter-spacing: 0.08em;
	}
	footer .copyright {
		font-size: 12px;
		letter-spacing: 0.08em;
	}
}

@media screen and (max-width: 767px) {
	footer .copyright {
		padding: 0 0 40px;
		margin-top: 0;
	}
}



/* -------------------------------------------------
	other
------------------------------------------------- */

/* responsive */

@media print, screen and (min-width:960px) {
	.pc-none {
		display: none !important;
	}
}

@media screen and (max-width:960px) {
	.sp-none {
		display: none !important;
	}
}

/* clearfix */

.clear {
	clear: both;
}
.clearfix::after {
	clear: both;
	content: "";
	height: 0;
	display: block;
}
