﻿@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-bottom: 30px;
	font-size: 1.5em;
	text-align: center;
}
h3 {
	margin-top: 30px;
	font-size: 1.5em;
}
.main-image {
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}
.main-image p {
	margin: 0;
	padding: 0;
	width: 30%;
	height: 30%;
}
.main-image p img {
	margin: 0;
	padding: 0;
	width: 100%;
	height: auto;
	border: 1px solid #333;
}
#main1 div {
	padding: 20px;
	background-color: #f1f1f1;
	border-radius: 16px;
}
#main1 div div {
	padding: 0;
}

#main1 ul {
	margin: 0 auto;
	text-align: left;
}
#main1 dl {
	font-size: 1rem;
	text-align: left;
}
#main1 dt {
	margin: 30px 10px 10px 0;
	font-size: 1rem;
}
#main1 dd {
	margin: 10px 10px 10px 0;
	font-size: 1rem;
}
#main1 p {
	margin: 10px 10px 10px 0;
	line-height: 1.2em;
	text-align: left;
}
.wrap-button {
	display: flex;
}
.balloon {
    position: relative;
    display: inline-block;
    background-color: #f1f1f1;
    border-bottom: solid 2px #754C24;
	 margin: 0;
    padding: 0 0 20px 0;
	 width: 100%;
    text-align: left;
}
.balloon:before,
.balloon:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.balloon:before {
    border: solid 16px transparent;
    border-top: solid 16px #754C24;
}
@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);
}