@charset "utf-8";

@media screen and (min-width:769px) {
	.pc {
	  display: block !important;
	}
	.sp {
	  display: none !important;
	}
  }
  
  @media screen and (max-width:768px) {
	.sp {
	  display: block !important;
	}
	.pc {
	  display: none !important;
	}
  }

html {
	height: 100%;
}

body {
	height: 100%;
	margin: 0;
	background: #E9F4F5;
}

.main {
	text-align: center;
	padding: 200px 20px;
	font-family: 'Kosugi Maru', sans-serif;
	color: #333;
}

.sorry {
	position: relative;
}


.text1 {
	margin: 20px auto;
	font-size: 80px;
	font-weight: bold;
	letter-spacing: 8px;
	display: inline-block;
}

.text1::after {
	content: '';
	background-image: url(../img/drop.svg);
	display: inline-block;
	background-size: contain;
	background-repeat: no-repeat;
	width: 75px;
	height: 75px;
	position: absolute;
	top: -43px;
	transform: rotate(10deg) skew(10deg, -5deg);
}

.text2 {
	margin: 40px 0;
	font-size: 14px;
	line-height: 1.7;
}

.top {
	color: #1AA5AA;
	font-weight: bold;
	font-size: 14px;
}

.top:hover {
	color: #44cdd2;
}


@media (max-width: 768px) {

	.text1 {
		font-size: 55px;
	}
	.text1::after {
		top: -36px;
		width: 60px;
		height: 60px;
	}
}