@charset "utf-8";
/* =====================================

	* layout 
	
====================================== */
.wrapper {
	min-width: 320px;
}
#dim{
    display: none;
	position: fixed;
	z-index: 11;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.8);
}
html,
body{
	font-size: 16px;
}
html.ovh,
body.ovh{
}

.inner-layer-wrap{
	max-width:1300px;
	position:relative;
	margin:0 auto;
	bottom:25px;
}

.inner-layer {
	max-width: 1300px;
	margin: 0 auto;
}
.ready-wrap {
	padding: 50px 0;
	text-align: center;
}

/* ================================================ list type =============================================== */
.list-type > li{
	line-height: 1.4;
	position: relative;
}
.list-type > li:before{
	display: block;
	content: '';
	clear: both;
	position: absolute;
	top: 11px;
	left: 0;
}
.list-type-dot > li{
	padding-left: 10px;
}
.list-type-dot > li:before{
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background-color: #333;
}
.list-type-bar > li{
	padding-left: 10px;
}
.list-type-bar > li:before{
	width: 4px;
	height: 1px;
	background-color: #333;
}
.list-type-bar.wh > li:before{
	background-color: #fff;
}
.list-type-decimal{
counter-reset: number 0;
}
.list-type-decimal > li {
position: relative;
padding-left: 17px;
}
.list-type-decimal > li::before {
content: counter(number) '.';
counter-increment: number 1;
position: absolute;
left: 0;
top: 0;
}
.list-type-text > li > span,
.list-type-text > li > span + div{
	display: inline-block;
	vertical-align: top;
}
.list-type-text > li > span{
	width: 20px;
}
.list-type-text > li > span + div{
	width: calc(100% - 25px);
}

/* ================================================ ellipsis =============================================== */
.ellipsis{
	display: inline-block;
	overflow: hidden;
	max-width: 100%;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.ellipsis2{
	display: block;
	display: -webkit-box;	
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.ellipsis3{
	display: block;
	display: -webkit-box;	
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.ellipsis4{
	display: block;
	display: -webkit-box;	
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}
.ellipsis5{
	display: block;
	display: -webkit-box;	
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
}

/* ================================================ header =============================================== */
.header-wrap > .inner-layer {
	display: flex;
	align-items:center;
	height: 115px;
	justify-content: space-between;
}
.util-menu-wrap {
	display: flex;
	align-items: center;
}
.dday-wrap {
	position: relative;
	padding: 15px 110px 15px 20px;
	margin-right: 20px;
	margin-left:50px;
	
}
.dday-wrap > div {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 46px;
	vertical-align: middle;
	z-index: 1;
}
.dday-wrap > div::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: skew(-15deg);
	border-radius: 3px;
	z-index: -1;
}
.dday-wrap > div > span {
	display: inline-block;
	font-weight: 500;
	text-align: center;
}
.dday-wrap > div:has(.today)::after {
	content: '';
	position: absolute;
	top: 50%;
	left: -44px;
	transform: translateY(-50%);
	width: 81px;
	height: 78px;
	background-image: url('../images/common/img_dday.png') ;
	background-repeat: no-repeat;
	background-position: 0 0;
}
.dday-wrap > div:has(.today):before {
	box-shadow: 0 0 0 1px inset #414ca1;
}
.dday-wrap .today {
	width: 170px;
	font-size: 16px;
	font-weight:bold;
}

.dday-wrap .today > p{
	font-weight:normal;
	font-size:14px;
}

.dday-wrap > div:has(.dday){
	position: absolute;
	top: 15px;
	right: 0;
}
.dday-wrap > div:has(.dday):before {
	background: linear-gradient(265deg, #2961a1, #5d9259, #6747a9)
}
.dday-wrap .dday {
	width: 150px;
	font-size: 36px;
	color: #fff;
}
.header-logo2{
	margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    align-content: flex-end;
}

.util-menu {
	display: flex;
	align-items: center;
	gap: 8px;
}
.util-menu a {
	margin-left: 5px;
	padding: 10px 15px;
	font-size: 13px;
	font-weight: 500;
	color: #fff;
	background-color: #364ea2;
	border-radius: 5px;
}

.gnb-wrap {
	position: relative;
	border-top: 1px solid #dbdee9;
	border-bottom: 1px solid #dbdee9;
}
.gnb-bg {
	z-index: 1000;
	position: absolute;
	top: 60px;
	left: 0;
	width: 100%;
	height: 0;
	background: linear-gradient(135deg, #2961a1, #5d9259, #6747a9);
	transition: 0.4s ease;
}	
.gnb-wrap .gnb {
	display: flex;
	align-items: center;
}
.gnb-wrap .gnb > li {
	position: relative;
	width: 16.66%;
}
.gnb-wrap .gnb > li > a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 60px;
	font-size: 20px;
	font-weight: bold;
	color: #111;
	cursor:pointer;
}
.gnb-wrap .gnb > li > ul {
	z-index: 1001;
	display: none;
	position: absolute;
	width: 100%;
	padding: 30px 10px 50px 10px;
}
.gnb-wrap .gnb > li > ul > li + li {
	margin-top: 10px;
}
.gnb-wrap .gnb > li > ul > li > a {
	display: inline;
	font-size: 16px;
	color: #fff;
	background-image: linear-gradient(transparent calc(100% - 1px), #fff 1px);
	background-repeat: no-repeat;
	background-size: 0 100%;
	transition: ease 0.3s;
	cursor:pointer;
}
.gnb-wrap .gnb > li > ul > li:hover > a {
	background-size: 100% 100%;
}
.btn-menu-open {
	display: none;
}
.m-gnb-header {
	display: none;
}

/* ================================================ host support =============================================== */
.host-support-wrap  {
	border-top: 1px solid #dbdee9;
}
.host-support-wrap > .inner-layer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 20px;
	padding-bottom: 20px;
}
.host-support-wrap dl {
	display: flex;
	align-items: center;
}
.host-support-wrap dl > dt {
	margin-right: 70px;
	font-size: 18px;
	font-weight: 500;
}
.host-support-wrap dd li {
	display: inline-block;
}
.host-support-wrap dd a {
	display: inline-block;
	max-width: 160px;
}

/* ================================================ footer =============================================== */
.btn-top{
	opacity: 0;
	position: fixed;
	bottom: 280px;
	right: 2%;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
  font-size: 14px;
  font-weight: 700;
	color: #e6338c;
	text-align: center;
	line-height: 1;
	background-color: #fff;
	border: 1px solid rgb(230, 51, 140);
	border-radius: 8px;
	box-shadow: 2px 2px 10px rgba(233, 21, 127, 0.2);
	-webkit-transition: 0.3s ease;
	transition: 0.3s ease;
}
.btn-top > span{
	display: block;
  margin-bottom: 5px;
	font-size: 14px;
	font-weight: 700;
}
.btn-top.on{
	opacity: 1;
}
/*.footer-wrap {
	background-color: #3d4759;
}
.footer-info {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 235px;
	padding: 45px 0;
}
.footer-info > p {
	font-size: 15px;
	color: #828b9d;
	line-height: 1.4;
}
.footer-info > p > span {
	display: block;
	font-weight: 500;
	color: #fff;
}
.footer-copy {
	padding: 20px;
	text-align: center;
	font-size: 15px;
	color: #fff;
	background-color: #191f2a;
}
*/

/* ================================================ layer popup =============================================== */
.no-scroll {
    overflow: hidden;
}
.layer-pop {
    z-index: 10001;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.8);
}
.pop-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	width: 80%;
    max-width: 650px;
	height: auto;
}
.pop-wrap .flex {
	display: flex;
}
.pop-header {
    position: relative;
}
.pop-header .pop-tit {
    font-size: 25px;
    line-height: 1.2;
    font-weight: 400;
    text-align: left;
    color: #fff;
}
.pop-body{
    width: 100%;
	height: 100%;
	min-height: 100px;
	border: 6px solid #b7d0e1;
	border-top-width: 0;
	background: #fff;
}
.pop-body .flex {
	justify-content: space-between;
}
.pop-body .cont-wrap > a {
	padding: 28px 20px 28px 36px;
}
.pop-body .flex-cont {
	display: flex;
	flex-direction: column;	
}
.pop-body .flex-cont.text-box {
	justify-content: space-between;
}
.pop-body .flex-cont.img-box {
	align-items: flex-end;
}
.pop-body .cont-tit {
	font-size: clamp(28px, 2vw, 34px);
	letter-spacing: -0.035em;
	color: #364ea2;
}
.pop-body .cont-tit > strong {
	font-weight: 900;
	background: linear-gradient(90deg, rgba(41,176,187,1) 0%, rgba(232,29,142,1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.pop-body .deadline {
	display: inline-block;
	margin-top: 12px;
	padding: 8px 16px;
	font-size: clamp(16px, 2vw, 24px);
	font-weight: 600;
	letter-spacing: -0.055em;
	line-height: 1.1;
	color: #a7e2de;
	border-radius: 4px;
	background: #27335d;
}
.pop-body .tag-box {
	padding-top: 20px;
}
.pop-body .tag-box span {
	display: inline-block;
	padding: 6px 12px;
	font-size: clamp(14px, 2vw, 18px);
	color: #27335d;
	border-radius: 50px;
	border: 1px solid #27335d;
}
.pop-body .tag-box span + span {
	margin-left: 10px;
}
.pop-body .img-box {
	text-align: right;
}
.pop-footer { 
	background: #404761;
}
.pop-footer .flex {	
	justify-content: space-between;
	align-items: center;
	padding: 10px 24px;
	height: 50px;
}
.pop-close-wrap .pop.btn-close {
	font-size: 15px;
	letter-spacing: -0.035em;
	color: #fff;
	cursor: pointer;
}
.pop-close-wrap .pop.btn-close > img {
	display: inline-block;
	margin-left: 4px;
	vertical-align: middle;
}

/* for popup */
@media screen and (max-width: 768px){
	.pop-body .cont-wrap > a {
		padding: 18px 10px 18px 16px;
	}
	.pop-body .cont-wrap {
		column-gap: 4px;
	}
	.pop-body .cont-tit {
		line-height: 1.1;
	}
	.pop-body .deadline {
		margin-top: 8px;
	}
	.pop-body .img-box > img {
		max-width: 160px;
		width: 90%;
	}
	.pop-body .tag-box {
		justify-content: unset;
		column-gap: 6px;
		text-align: center;
	}
	.pop-body .tag-box span + span {
		margin-left: 0;
	}
	.pop-close-wrap .pop.btn-close {
		font-size: 13px;
	}
	.pop-footer .flex {
		padding: 10px 14px;
		height: auto;
	}
}
@media screen and (max-width: 500px){
	.pop-body .text-box {
		width: calc(100% + 70%); 
	}
	.pop-body .tag-box {
		flex-direction: column;
		row-gap: 6px;
		text-align: center;
	}
 }