@charset "UTF-8";

/* http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
button{
        background-color: transparent;
        border: none;
        cursor: pointer;
        outline: none;
        padding: 0;
        appearance: none;
}

/*ここまでリセット*/

body{
	width: 100%;
	margin: 0 auto;
	padding: 0;
	font-size: 14px;
}
header{
	width: 100%;
	height: 100vh;
	position: relative;
}
footer{
	width: 100%;
	text-align: center;
	background-color: #f5f5f5;
}
main{
	width: 100%;
	margin: 0 auto;
}

.toplogo{
	width: 100%;
	position: absolute;
	z-index: 99;
	background-color: rgba( 255, 255, 255, 0.8 );
	padding: 15px 0px;
}

.toplogo ul{
	display: flex;
	align-items: baseline;
}

.logo1 {
	width: 20%;
	margin-left: 5%;
}

.logo2 {
	width: 20%;
	margin-left: 50%;
}

.logo1 img,.logo2 img{
	width: 100%;
}

.bottom_p{
	padding: 15px 0px;
	font-size: 12px;
	color: #565656;
}

.main{
	width: 100%;
	margin: 0 auto;
	margin-top: 10px;
	line-height: 1.5em
}

.des_table{
	width: 90%;
	height: auto;
	margin: 0px auto;
}

.des_table table{
	width: 100%;
	height: auto;
	margin: 0px auto;
}

.des_table th{
	padding: 10px;
	text-align: left;
	color: #242424;
	font-weight: 700;
	background-color: #f5f5f5;
	border: 1px solid #ddd
}
.des_table td{
	padding: 10px;
	color: #565656;
	background-color: #fff;
	border: 1px solid #ddd
}

.map{
	width: 90%;
	margin: 30px auto;
}
.map iframe{
	width: 100%;
	height: 800px;
}

.form{
	width: 90%;
	margin: 0 auto;
	background-color: #f5f5f5;
	margin-bottom: 20px;
	border-radius: 5px;
	border: 1px solid #ddd
}

.contact{
	display: block;
	width: 100%;
	text-align: center;
	margin: 10px 0px;
	font-size: 18px;
}

.name,.email,.msg,.button{
	width: 50%;
	margin:  0 auto;
}

.form label{
	width: 100%;
	display: block;
	margin-bottom: 5px;
	margin-top: 15px;
}

.form input{
	width: 100%;
	height: 30px;
	font-size: 16px;
}

.form textarea{
	width: 100%;
	height: 150px;
	font-size: 16px;
}

.button button{
	font-size: 16px;
	width: 50%;
	height: 50px;
	display:  block;
	background-color: #009cd3;
	color: #FFFFFF;
	border-radius: 5px;
	border: 3px solid #009cd3;
	margin: 10px auto;
}

.caution{
	width: 90%;
	margin: 0 auto;
	font-size: 14px;
	margin-bottom: 15px;
}
.slider{
	width: 100%;
	height: 100vh;
	overflow: hidden;
}
.slider_box{
	width: calc(100% * 5);
}	
.slider_img{
	width: calc(100% / 5);
	display: inline-block;
	position: relative;
}
.slider_img img{
	width: 100%;
	position: absolute;
	top: 20%;
	left: 20%;
	-webkit-transform: translate(-20%, -20%);
	-ms-transform: translate(-20%, -20%);
	transform: translate(-20%, -20%);
	animation-name:slider;
	animation-duration:35s;
	animation-fill-mode: forwards; 
	animation-iteration-count: infinite;
}
@keyframes slider{
	0% {transform:translate(-20%,-20%);}
	10%  {transform:translate(-20%,-20%);}
	20%  {transform:translate(-120%,-20%);}
	30%  {transform:translate(-120%,-20%);}
	40%  {transform:translate(-220%,-20%);}
	50%  {transform:translate(-220%,-20%);}
	60%  {transform:translate(-320%,-20%);}
	70%  {transform:translate(-320%,-20%);}
	80%  {transform:translate(-420%,-20%);}
	90%  {transform:translate(-420%,-20%);}
	100% {transform:translate(-20%,-20%);}
}
/*メディアクエリ-----------------------------------------------------------------------------------*/
@media screen and (max-width : 480px ){ 

header{
		height: 40vh;
}
	
.logo1{
	width: 45%;
}

.logo2{
	width: 45%;
	margin-left: 10%;
}
	
.des_table{
	width: calc(100% - 10px - 20px);
	height: auto;
	margin: 0px;
	margin-left: 9px;
}

.des_table table{
	width: 100%;
	height: auto;
}

.des_table th{
	padding: 10px 0px 10px 10px;
	text-align: left;
	color: #242424;
	font-weight: 700;
	background-color: #f5f5f5;
	border: 1px solid #ddd
}
.des_table td{
	padding: 10px 0px 10px 10px;
	color: #565656;
	background-color: #fff;
	border: 1px solid #ddd
}
	
.des_table td,.des_table th{
	display: block;
	width: 100%;
	border-bottom: 0px;
}	
	
.des_table tr:last-of-type{
	border-bottom: 1px solid #ddd;
}
	
.map iframe{
	height: 500px;
}
	
.name,.email,.msg,.button{
	width: 90%;
	margin:  0 auto;
}
.slider{
	width: 100vw;
	height: 40vh;
	overflow: hidden;
	margin-bottom: 30px;
}
.slider_box{
	width: calc(100% * 5);
}	
.slider_img{
	width: calc(100% / 5);
	display: inline-block;
	position: relative;
}
.slider_img img{
	width: 100%;
	position: absolute;
	top: 20%;
	left: 20%;
	-webkit-transform: translate(-20%, -20%);
	-ms-transform: translate(-20%, -20%);
	transform: translate(-20%, -20%);
	animation-name:slider;
	animation-duration:35s;
	animation-fill-mode: forwards; 
	animation-iteration-count: infinite;
}
@keyframes slider{
	0% {transform:translate(-20%,-20%);}
	10%  {transform:translate(-20%,-20%);}
	20%  {transform:translate(-120%,-20%);}
	30%  {transform:translate(-120%,-20%);}
	40%  {transform:translate(-220%,-20%);}
	50%  {transform:translate(-220%,-20%);}
	60%  {transform:translate(-320%,-20%);}
	70%  {transform:translate(-320%,-20%);}
	80%  {transform:translate(-420%,-20%);}
	90%  {transform:translate(-420%,-20%);}
	100% {transform:translate(-20%,-20%);}
}
}
