﻿@charset "utf-8";
header {
	position: relative;
}
.midashi{
	position: absolute;
	margin: auto 30px;
	top: 200px;
	left: 0;
	right: 0;
	padding: 0;
	color: #fff;
	font-size: 3em;
	font-weight: bold;
	text-align:center;
	text-shadow: 2px 2px 3px #333,
             -2px 2px 3px #333,
             2px -2px 3px #333,
             -2px -2px 3px #333;
}
#logo1 img {
	width: 60%;
	max-width: 460px;
	height: auto;
	position: absolute;
	top: 100px;
	left: 0;
	right: 0;
	margin: auto;
}
#main1 div {
	margin: 0 auto;
	max-width: 980px;
}
h1 {
	padding: 30px 0 30px 0;
	text-align: center;
	font-size: 1.8em;
	color: #754C24;
}
h2 {
	margin: 30px 0 20px 0;
	font-size: 1.5em;
}
#main1 div iframe {
	margin-top: 30px;
}
@media screen and (min-width:768px){
	#logo1 img {
		width: 460px;
		height: auto;
	}
}
.button:link {
	color: #393;
	text-decoration: none;
	font-weight: bold;
}
.button:hover {
	text-decoration: none;
}
.button {
	margin-top: 30px;
	position: relative;
	display: inline-block;
	padding: .5em 4em;
	border: 2px solid #393;
	color: #393;
	text-align: center;
	text-decoration: none;
	transition: .3s;
	font-size: 1.2em;
}
.button:hover {
  color: #fff;
}
.button::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: '';
  background: #393;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.button:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}