html,body{
	margin:0;
	padding:0;
}
body{
	overflow-x: hidden;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	background:url("images/bg.png");
	font-size:14px;
	color:#3e3a39;
}
main{
	width:100%;
	max-width:750px;
	width:100%;
	margin:auto;
}

img{
	display:block;
	max-width:96%;
	margin:0 auto 40px auto;
	vertical-align: bottom;
}
.contact img{
	margin:0 auto 20px auto;
}
img.mainimg{
	max-width:100%;
	width:100%;
	margin:0;
}
h2 img{
	width:auto;
}
.bgtop{
	background:url("images/bgtop.png");
	background-size:cover;
	padding:20px 0;
}
.table{
	border:#0d63a1 2px solid;
	background:rgba(255,255,255,.4);
	width:100%;
	max-width:calc(96% - 20px);
	margin:40px auto;
	padding:10px;
}
	.table .border{
		border:#0d63a1 2px dashed;
		padding:1em;
	}
dl.list{
	display:flex;
	justify-content: center;
	align-items:center;
	width:100%;
}
	dl.list dt{
		text-align:left;
		width:30%;
		padding-left:1em;
	}
		dl.list dd{
			width:40%;
			margin:0;
			padding:10px 0;
		}
form dl.list{
	flex-direction: column;
	justify-content: flex-start;
}
form dl.list dt,form dl.list dd{
	width:90%;
}
form textarea{
	max-width:100%
}

footer{
	position:relative;
	background:#0d63a1;
	color:#FFF;
	font-size:14px;
	text-align:center;
	margin-top:40px;
	padding:10px 0;
}
p.text{
	text-align:center;
}

/* 桜を表示するコンテナのスタイル */
.cherry-blossom-container {
  position: relative;
  height: 100%; /* コンテナの高さ */
  width: 100%; /* コンテナの横幅 */
}

/* 桜の花びらのスタイル */
.petal {
  position: absolute;
  background-color: #ffc0cb; /* 花びらの色 */
  border-radius: 150% 0 150% 0;
  animation: animate-petal 10s linear;
}

.petal::after {
  content: "";
  position: absolute;
  top: -14%;
  left: -10%;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #ffc0cb;
  border-radius: 150% 0 150% 0;
  transform: rotate(15deg);
}

/* 花びらが降るアニメーション */
@keyframes animate-petal {
  0% {
    top: 0;
    opacity: 0;
    transform: rotate(0deg);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: 100vh;
    transform: rotate(3000deg);
  }
}