@charset "utf-8";

/*-------------------------------------
css初期化
--------------------------------------*/
* {
	margin: 0;
	/* margin: 10px 0px 25px 0px; */
	padding: 0;
}

body {
	font-family: sans-serif;
	font-size: 100%;
}

div:after {
	content: "";
	display: block;
	clear: both;
}

/*-------------------------------------
タグの基本設定
--------------------------------------*/
body {
	background-color: #e9f4ee;
	line-height: 1.6;
	font-size: 81.25%;
	color: #414141;
}

html {
	overflow-y: scroll;
}

a {
	text-decoration: none;
	outline: none;
	color: #333333;
}

a:hover{
	text-decoration: underline;
	color: #666666;
}

a:hover img{
	opacity: 0.80;
}

/*--------------------------------------------------------------------
Container
--------------------------------------------------------------------*/
div#Container {
	width: 944px;
	padding: 10px 0;
	margin: 0 auto;
	background: #e9f4ee;
	
	
}

/*--------------------------------------------------------------------
h1
--------------------------------------------------------------------*/
h1 {
	padding: 10px 0;
	text-align: center;
}

/*--------------------------------------------------------------------
Contents
--------------------------------------------------------------------*/
div#Contents {
	width: 944px;
	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: 944px;
	margin: 0 auto;
	position: relative;
}

nav ul li {
	list-style: none;
	width: 236px;
	margin: 0 0 20px 0;
	float: left;
}

nav ul li a img:nth-child(2){
	position: absolute;
	margin-left: -236px;
  transition: opacity 1s;
}

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-size: 130%;
	/* font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; */
	font-weight: bold;
	color: #504946;
	margin: 100px 0px 0 20px;
	
}

div#Main div#TopImg {
	margin: 5px auto 0 auto;
	text-align: center;
}

div#Main div#PortImg {
	margin: 20px auto 0 auto;
	text-align: center;
}




/* video{
	width: 350px;
	height: auto;
	margin-top: 5px;
} */

video {
	width: 350px;
	height: auto;
	border: 8px solid #f7f8f7;
	border-radius: 25px;
	box-sizing: border-box;
	box-shadow: 0 2px 8px rgba(80, 100, 90, 0.25);
}







div#Main p {
	color: #504946;
	margin-top: 10px;
}

div#Main table {
	/* width: 80%; */
	width: 90%;
	margin: 30px auto 20px auto;
	border-collapse: collapse;
	border: 0 none;
}

div#Main table tr{
	position: relative;
}
div#Main table tr::after{
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	border-bottom: 1px dashed #a09890;
}


div#Main table tr th {
	width: 25%;
	padding: 20px 10px;
	
	
	text-align: left;
	vertical-align: top;
	color:#414141;
	font-weight: normal;
	}

div#Main table th span {
	border-left: 2px solid #a09890;
    padding-left: 8px; 
} 

div#Main table tr td {
	width: 75%;
	padding: 20px 10px;
		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;
}

/*--------------------------------------------------------------------
pagetop
--------------------------------------------------------------------*/
p.pagetop {
	text-align: right;
	margin-bottom: 30px;
}

p.pagetop img {
	transition: 0.3s;
}

p.pagetop img:hover {
	opacity: 0.7;
	transform: scale(1.05);
}

/*--------------------------------------------------------------------
address
--------------------------------------------------------------------*/
address {
	clear: both;
	text-align: center;
	color: #504946;
}