@charset "UTF-8";


body {
  font-family:'Noto Serif JP', serif;
	color: #fff;
  background-color: #000;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin: 0;
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}


img {
/*imgの最大横幅を100%に設定する*/
  max-width: 100%;
}
a{
  text-decoration: none;
}
ul{
  list-style-type: none;
}

.section-inner{
  min-height: 100vh;
  position: relative;
  padding-bottom: 100px;
  box-sizing: border-box;
}

.fadeIn{
animation-name:fadeInAnime;
animation-duration:3s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

#header {
	background-color: #000;
	width: 100%;
	height: 50px;
	top: 0;
	z-index: 2;
	position: fixed;
}
#header a{
  font-size: 12px;
  margin: 0 0 0 10px;
  line-height: 50px;
  text-decoration: none;
  color: #fff;
}
/* ”お問い合わせ” */
#form {
  display: block;
	height:auto;
	width:80%;
  margin:0 auto 160px;
  flex: 1;
}
#form h1{
  font-size: 24px;
  font-weight: normal;
  text-align: center;
  margin-top: 100px;
}

#form img{
  display: block;
  width: 100%;
  max-width:300px;
  margin: 0 auto;
}
/* タイトル */
.title {
  font-size: 18px;
  margin-top: 50px;
}
/* 本文 */
#form p{
  font-size: 14px;
  margin: 0 auto 30px 10px;
}
.animation{
  animation-name:fadeUpTrigger;
  animation-duration:5s;
  animation-fill-mode:forwards;
  opacity:0;
}

@keyframes fadeUpTrigger{
from {
  opacity: 0;
  transform: translateY(100px);
}

to {
  opacity: 1;
  transform: translateY(0);
}
}
.fadeInUpTrigger{
  opacity: 0;
}
#footer{
  width: 100vw;
  height:100px;
  font-size: 11px;
  position: relative;
  background-color: #333;
  position: absolute;
  bottom: 0;
}


#footer p{
  position: absolute;
  bottom:10px;
  left:calc(50% - 72px);
}

#footer ul{
  display: flex;
  justify-content: space-between;
  width:80%;
  max-width: 500px;
  margin: 0 auto;
  padding: 20px 0;
}

#footer a{
  color: #fff;
}



/*===============================================
PC : 画面の横幅が769px以上
=================================================*/





/*ここからメディアクエリで各デバイスサイズに書き分けます
CSSは上から下に継承されるので、変化させたいところだけ書けばOK*/



/*================================================
Tablet : 画面の横幅が768pxまで
==================================================*/
@media screen and (max-width: 768px){
	.example {
		font-size: 30px;
		color: #2D81B1;
	}
}


/*================================================
Smartphone :  画面の横幅が640pxまで
=================================================*/
@media screen and (max-width:640px){
  #footer{
    height: 150px;
  }
  #footer ul{
    display: block;
  }
  #footer li{
    margin: 5px 0;
  }
}
