/* CSS Document */
html, body {
  overflow: hidden;
  position: absolute;
  height: 80%;
  width: 100%;
  left: 0;
  top: 0;
}

html {
  background-image: url("../img/IMG_7233.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(90%);
  filter: opacity(70%);
}

body {
  background-color: rgba(0, 0, 0, 0.1);
}

.neato-header {
  transform: translate(-50%, -50%);
  color: white;
  min-width: 65%;
  padding: 30px;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  border: 3px solid white;
  border-top: none;
}
.neato-header h1, .neato-header h2 {
  letter-spacing: 0.05em;
}
.neato-header h1 {
  font-size: 65px;
  font-family: "Open Sans Condensed";
  text-transform: uppercase;
}
.neato-header h2 {
  transform: translate(0, -50%);
  font-family: "Vollkorn";
  font-weight: italic;
  font-size: 21px;
  overflow: hidden;
  margin: -30px -33px 0 -33px;
  position: absolute;
  width: calc( 100% + 6px );
}
.neato-header h2:before, .neato-header h2:after {
  content: "";
  position: absolute;
  width: 100%;
  margin-top: -2px;
  border-top: 3px solid white;
  top: 50%;
}
.neato-header h2:before {
  transform: translate(-100%, 0);
  margin-left: -30px;
}
.neato-header h2:after {
  margin-left: 30px;
}

body{
  text-align:center;
  font-family: 'Oswald', sans-serif;
}

h1{
  color:white;
  font-weight:100;
}

.btn{
  color:#999;
  background:rgba(0, 0, 0, 0.5);
  padding:10px 20px;
  font-size:12px;
  text-decoration:none;
  letter-spacing:2px;
  text-transform:uppercase;
}

/*メニューバー*/
.menu{
	background:white;
	position:fixed;
	bottom: 0;
	width: 100%;
}
/* メニューのコンテナ */
.menu-in {
  display: flex;
  justify-content: space-between; /* ボタンを横並び */
  max-width: 900px;
  margin: 0 auto; /* 中央寄せ */
}
/* メニューのボタン */
.menu-btn {
  display: inline-block;
  text-align: center;
  color:black;
  padding: 8px 0; /* 上下パディング 8px */
  flex-grow: 1; /* ボタンを横幅いっぱいに広げる */
  text-decoration: none; /* アンダーライン除去 */
  font-weight: bold;
  font-size: 20px;
  font-family: "Times New Roman", Times, "serif";
}
/* hover時の背景色変更 */
.menu-btn:hover {
  background-color:#5E8FA7;
}
.contents{
	background:#6E86B0;
	width:640px;
	margin-left: auto;
	margin-right: auto;
	padding: 60px;
	color: #FFE0FB;
}
/*リセットCSS*/
h1,h2,h3,h4,body,
div{
	box-sizing: border-box; 
	margin: 0;
	padding: 0;
}
.bt01{
	background:#03A2B0;
	color:#CBF8F6;
	padding: 8px;
	width: 70px;
	text-align:center;
	border-radius:5px;
	transition-duration:0.3s;
}
.bt01:hover{
	background:#63BCF5;/*かざすと色が変わる*/
	cursor: pointer;
	transform: rotate(-90deg);
	transform: scale(0.2);/*後に入力したほうが上書きされる*/
}