@charset "utf-8";

/*-------------------------------------
css初期化
--------------------------------------*/
* {
	margin: 0;
	padding: 0;
}

body {
	font-family: sans-serif;
	font-size: 100%;
}

div:after {
	content: "";
	display: block;
	clear: both;
}

@keyframes zoomIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeup {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0px);
	}
}
/*-------------------------------------
タグの基本設定
--------------------------------------*/
body {
	background: #FFF2E2;
	background-image: url('../img/back.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
	line-height: 1.6;
	font-size: 81.25%;
	color: #1a140d;
}

html {
	overflow-y: scroll;
}

a {
	text-decoration: none;
	outline: none;
	color: #4C3922;
}

a:hover{
	text-decoration: underline;
	color: #4C3922;
}

a:hover img{
	opacity: 1.0;
	position: relative; z-index: 10;
}

/*--------------------------------------------------------------------
Container
--------------------------------------------------------------------*/
div#Container {
	width: 945px;
	padding: 10px 0;
	margin: 0 auto; 
}
 
/*--------------------------------------------------------------------
h1
--------------------------------------------------------------------*/
h1 {
	padding: 10px 0;
	text-align: center;
	animation: zoomIn 1.5s ease-out;
}
 
/*--------------------------------------------------------------------
Contents
--------------------------------------------------------------------*/
div#Contents {
	width: 945px;
	margin: 0 auto;
	padding: 10px 0;
	overflow: hidden;
}

div#Contents:after {
	display: block;
	clear: both;
	height: 0;
	line-height: 0;
	font-size: 0;
}

/*--------------------------------------------------------------------
Nav
--------------------------------------------------------------------*/
nav {
	width: 945px;
	margin: 0 auto;
	position: relative;
	animation-name: fadeup;
	animation-delay: 0.1s;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	opacity: 1; 
}

nav ul li {
	list-style: none;
	width: 189px;
	margin: 0 0 20px 0;
	float: left;
}

nav ul li a img:nth-child(2){
	position: absolute;
	margin-left: -189px;
	transition: opacity 0.5s;
	position: relative;
	z-index: 10;
}

nav ul li a:hover img:nth-child(2){
	opacity: 0;
}

/*--------------------------------------------------------------------
Main
--------------------------------------------------------------------*/
div#Main {
	width: 700px;
	margin: 0 auto;	
}

div#Main h2 {
	font-size: 150%;
	font-weight: bold;
	color: #4C3922;
	padding: 10px;
}

div#Main h2::before {
	content: "■";
	font-size: 100%;
	font-weight: bold;
	color: #5CD2D2;
	margin-right: 10px;
}

div#Main h3 {
	font-size: 120%;
	font-weight: bold;
	color: #4C3922;
	margin-bottom: 10px;
	margin-left: 35px;
}

div#Main div#TopImg {
	margin: 5px auto 0 auto;
	text-align: center;
	position: relative;
	animation-name: fadeup;
	animation-delay: 0.5s;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	opacity: 0; 
}

div#Main div#PortImg {
	margin: 5px auto 0 auto;
	text-align: center;
	position: relative;
	animation-name: fadeup;
	animation-delay: 0.5s;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	opacity: 0; 
}

div#Main .box {
	display: flex;
	margin-top: 20px;
	margin-bottom: 20px;
}

div#Main div#icon {
	font-size: 100%;
	font-weight: bold;
	color: #434343;
	margin-right: 15px;
}

div#Main div#icon::before {
	content: "■";
	font-size: 100%;
	font-weight: bold;
	color: #5CD2D2;
	margin-right: 5%;
}

div#main div#p {
	font-size: 100%;
	font-weight: bold;
	color: #434343;
	margin: 10px;
}

div#Main table {
	width: 80%;
	margin: 10px auto 20px auto;
	border-collapse: collapse;
	border: 0 none;
}

div#Main table tr th {
	width: 25%;
	padding: 5px 10px;
	background: #93aab5;
	border: 2px solid #FFF2E2;
	text-align: left;
	vertical-align: top;
	color: #fff;
}

div#Main table tr td {
	width: 75%;
	padding: 5px 10px;
	background: #ffffff;
	border: 2px solid #FFF2E2;
	text-align: left;
	vertical-align: top;
}

div#Main table tr td ul {
	padding: 0 0 0 8px;
	margin: 0 0 0 8px;
}

div#Main table tr td ol {
	padding: 0 0 0 8px;
	margin: 0 0 0 8px;
}

.movie__youtube {
    position: relative;
    aspect-ratio: 16 / 9;
	position: relative;
	animation-name: fadeup;
	animation-delay: 0.5s;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	opacity: 0;
}

/*--------------------------------------------------------------------
pagetop
--------------------------------------------------------------------*/
p.pagetop {
	text-align: right;
}

/*--------------------------------------------------------------------
address
--------------------------------------------------------------------*/
address {
	clear: both;
	text-align: center;
	color: #504946;
}