@charset "utf-8";
/* CSS Document */

/*休み中のヘッダー*/
header{
position: fixed;
width: 1000px;
inset: 0;
margin: auto;
padding: 0px;
z-index: 100;
}

header:after{
content: "";
display: block;
clear: both;
}

.inner {
display: flex;
justify-content: space-between;
align-items: center;
height: 680px;
padding: 0px;
background-color: #ffffff;
}

.inner img{
text-align: center;
}

.contents{
width: 1000px;
margin: 0 auto;
margin-top: 700px;
margin-bottom: 30px;
}

/*-------------------------
横幅595以下
-------------------------*/
@media(max-width:595px){

/*ヘッダー*/
header{
width: 100%;
margin: 0 auto;
padding: 0;
}

header img{
width: 100%;
}

.inner {
height: 300px;
}

.contents{
width: 100%;
margin-top: 300px;
}

}



