
@charset "UTF-8";

/*common*/

html,body{
	height: 100%;
}

body
{
	color: #333;
	font-family: 'Lucida Grande','Hiragino Kaku Gothic ProN',Meiryo,sans-serif;
	font-size: clamp(10px, 16 / 1200 * 100vw, 16px);
	line-height: 1.8em;
	line-break: strict;
	word-break: break-all;
	text-align: justify;
}

a:link
{
	text-decoration: none;
	color: #f00;
	-webkit-transition: all 500ms 0s ease;
    transition: all 500ms 0s ease;
}

a:visited
{
	text-decoration: none;
	color: #f00;
}

a:hover
{
	text-decoration: underline;
	color: #fc6;
}
p
{
	margin-bottom: 1.8em;
}
p:last-child
{
	margin-bottom: 0;
}

/*PC--------------------------------------------------------------------------------------*/

.wrap{
	height: 100%;
	background: rgb(238,238,238);
background: linear-gradient(0deg, rgba(238,238,238,1) 0%, rgba(238,238,238,1) 50%, rgba(252,204,0,1) 50%, rgba(252,204,0,1) 100%);
position: relative;
}

.line{
	width: 100%;
	height: 20px;
	background: url(../images/common/line.png) repeat-x;
}


h1{
	position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 300px;
  width: 50%;
}

h1 img{
	width: 100%;
}


/*MOBIE-----------------------------------------------------------------------------------*/

@media only screen and (max-width: 767px) {
	
	
}




