@charset "utf-8";
/* CSS Document */

*{	
	margin: 0;
	padding: 0;
} 
body {
	font-family: 'Anton', sans-serif, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size:18px;
	word-wrap: break-word;
	overflow-wrap: break-word;
	color:#333;
}
img{
	vertical-align:bottom;
}
h1,h2,h3,h4,h5{
	font-size:100%;
}
ul{
	list-style-type: none;
}
a{
	text-decoration: none;
}
#wrap{
	width:100%;
	margin:0 auto;
	max-width: 800px;
}
.text {
	display: inline-block;
}

/*その他*/
.clearfix:after{
	content:".";
	visibility:hidden;
	display:block;
	height:0;
	clear:both;
}
.hide {
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}

body {
	background: url(../images/bg.jpg) center center / cover no-repeat;
	background-attachment: fixed;
	min-height: 100vh;
	height: 100%;
	position: relative;
}
header {
	position: absolute;
	top: 25%;
	left: 50%;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
h1 i {
	font-size: 100px;
	color:#fff;
	text-shadow: 3px 3px 3px #333;
}
main {
	padding: 20px;
	box-sizing: border-box;
}
main .box {
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	background: rgba(255,255,255,0.30);
	padding: 30px;
	box-shadow: 3px 3px 3px #333;
	border:3px solid #fff;
}
main h2 {
	text-align: center;
	font-size: 32px;
	letter-spacing: 2px;
}
main h3 {
	text-align: center;
	line-height: 1.8;
	margin-top: 40px;
	font-weight: 500;
	font-size: 24px;
	background: #333;
	color:#fff;
	padding: 10px;
	border-top: 4px double #fff;
	border-bottom: 4px double #fff;
}
main p {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
	margin: 5px;
	text-align: center;
}
.text {
	display: inline-block;
}

/*ここからタブレット用（～768px）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (max-width:768px){
main .box {
	width:80%;
}
}

/*ここからスマホ用（～667px）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (max-width:667px){
	h1 {margin-bottom: 50px;}
h1 i {
	font-size: 80px;
}
main h2 {
	font-size: 24px;
}
main h3 {
	font-size: 18px;
}
main p {
	font-size: 14px;
}
}