@charset "UTF-8";


/*---------- ページ全体の指定 ----------*/

html, body, header, section, article, nav, footer,
div, span, p, h1, h2, h3, h4,
ul, ol, li, dl, dt, dd,
table, tr, th, td, tbody, thead, tfoot {
  margin: 0;
  padding: 0;
}

img {border: 0;}

img img{
	border-radius: 10px;
	-webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}

body {
	width: 100%;
	background-color: #fff;
	line-height: normal;
	font-family: "ヒラギノ角ゴ pro W3", "Hiragino KaKu Gothic Pro", Osaka, sans-serif;
	font-size: 10px;
	-webkit-text-size-adjust: none;
}

a:link {
  color: #231815;
}

a:hover {
  color: #CEB888;
}

a:visited {
  color: #492c0a;
}


/*---------- ヘッダー ----------*/

header {
  width: 100%;
  background-color: #fff;
}

header h1 {
  padding: 2px 0 2px 8px;
  text-align: right;
  font-size: 12px;
  color: #aaaaaa;
}

header h2 {
  font-size: 12px;
  text-align: center;
  color: #ffffff;
  background-color: #ffffff;
}

header h2 a {
  color: #eeeeee !important;
  font-size: 12px;
  text-decoration: none;
}

header h2 a:hover {
  color: #999999 !important;
  font-size: 12px;
  text-decoration: underline;
}

#page_top {
  margin: 0;
  padding: 0;
}


/*---------- コンテンツ ----------*/

article {
  width: 100%;
  margin: 0 0 1px 0;
}

section {
	width: 100%;
	margin: 0 0 1px 0;
	color: #999999;
	line-height: 1.7;
}

section h1 {
	margin: 0 0 5px 0;
	padding: 3px 0 3px 20px;
	font-size: 12px;
	color: #000000;
	border-top: solid 1px;
	border-top-color: #cab586;
	border-bottom: solid 1px;
	border-bottom-color: #cab586;
  background: url(img/section.gif) repeat-x;
  background-color: #e9e4e3;
}

section h2 {
	margin: 0 0 5px 0;
	padding: 3px 0 3px 20px;
	font-size: 12px;
	color: #231815;
	border-top: solid 1px;
	border-top-color: #CEB888;
	border-bottom: solid 1px;
	border-bottom-color: #CEB888;
	background: url(img/h_icon.gif) left top no-repeat;
	background-color: #fff;
}

section p {
  padding: 2px 6px 2px 8px;
  line-height: 1.7;
  color: #000000;
}

section .gray_bg {
  margin: 5px 0 5px 0;
  padding: 2px 8px 2px 8px;
  line-height: 1.7;
  letter-spacing: 1px;
  border-top: solid 1px #dddddd;
  border-right: solid 1px #dddddd;
  border-bottom: solid 1px #dddddd;
  border-left: solid 1px #dddddd;
  background-color: #eeeeee;
}

section .gray_bg p {
  padding: 3px;
  line-height: 1.7;
  letter-spacing: 1px;
}

section img.picture {
  margin: 0 10px 10px 0;
  float: left;
}

section img.picture_r {
  margin: 0 0 10px 10px;
  float: right;
}

section span.red {
  color: #e60033;
}

section span.red_b {
  color: #e60033;
  font-weight: bold;
}

section span.blue {
  color: #007bbb;
}

section span.pink {
  color: #c53d43;
}

section span.brown {
  color: #993300;
}

section span.brown_b {
  color: #993300;
  font-weight: bold;
}

section span.green {
  color: #00ae4f;
}

section table.table_line {
  width: 100%;
  font-size: 10px;
  border-collapse: collapse;
  border: solid 1px #4c3212;
  box-sizing: border-box;
  margin : 5px 0px 5px 0px;
}

section table.table_line2 {
  width: 100%;
  font-size: 10px;
  border-collapse: collapse;
  border: solid 1px #000;
  margin : 5px 0px 5px 0px;
}

section table.table_line2 img {
  margin: 5px 0px 5px 0px;
  float: center;
}

section td.table_line {
  border-collapse: collapse;
  border: solid 1px #4c3212;
  vertical-align: top;
}

section td.table_line2 {
  border-collapse: collapse;
  border: solid 1px #000;
  padding: 3px;
  color: #000000;
}

section td.t_line01 {
  background-color: #fff;
  text-align: left;
  padding: 5px;
  font-size: 10px;
  color: #af9167;
  vertical-align: top;
}

section td.t_line02 {
  background-color: #4c3212f;
  text-align: right;
  padding: 5px;
  font-size: 10px;
  color: #af9167;
  vertical-align: top;
}

section td.t_line01 span {
  color: #000000;
}

/*---------- ギャラリー ----------*/

.g_nav ul{
    display:table;
    table-layout: fixed;
    width:100%;
}

.g_nav li{
    display:table-cell;
    text-align:center;
    color:#528e8f;
    background: #d6edee;
    background: -moz-linear-gradient(top,  #d6edee 0%, #b4d3d4 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d6edee), color-stop(100%,#b4d3d4));
    background: -webkit-linear-gradient(top,  #d6edee 0%,#b4d3d4 100%);
    background: -o-linear-gradient(top,  #d6edee 0%,#b4d3d4 100%);
    background: -ms-linear-gradient(top,  #d6edee 0%,#b4d3d4 100%);
    background: linear-gradient(to bottom,  #d6edee 0%,#b4d3d4 100%);
}

.g_nav li:not(:last-child){
    border-right:1px solid #b4d3d4;
}

.g_nav li a{
    padding:13px 0;
    display:block;
    color:#528e8f;
    text-decoration:none;
}

.g_nav li:active{
    background: #b4d3d4;
    background: -moz-linear-gradient(top,  #b4d3d4 0%, #d6edee 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d6edee), color-stop(100%,#b4d3d4));
    background: -webkit-linear-gradient(top,  #b4d3d4 0%,#d6edee 100%);
    background: -o-linear-gradient(top,  #b4d3d4 0%,#d6edee 100%);
    background: -ms-linear-gradient(top,  #b4d3d4 0%,#d6edee 100%);
    background: linear-gradient(to bottom,  #b4d3d4 0%,#d6edee 100%);
}

/*---------- ナビ ----------*/

nav {
  width: 100%;
  text-decoration: none;
  line-height: 1.7;
  background: url(img/nav_bg.gif) repeat-x;
}

nav h2 {
	padding: 4px 0 4px 16px;
	font-size: 12px;
	color: #000000;
	border-top: solid 1px;
	border-top-color: #231815;
	background: url(img/h_icon_gray.gif) left top no-repeat;
	background-color: #cab586;
}

nav ul {
  width: 100%;
  border-top: solid 1px;
  border-top-color: #231815;
}

nav li {
  width: 100%;
  list-style: none;
  text-align: center;
  background: url(img/arrow_icon.png) no-repeat scroll right center transparent;
}

nav li a {
  padding: 6px;
  display: block;
  color: #231815;
  font-weight: bold;
  text-decoration: none;
  border-bottom: solid 1px;
  border-bottom-color: #231815;
  background: url(img/nav_bg.gif) repeat-x;
}

nav li a:hover {
	color: #231815;
	display: block;
	font-weight: bold;
	text-decoration: none;
	border-bottom: solid 1px;
	border-bottom-color: #231815;
	background: url(img/nav_bg_hover.gif) repeat-x;
}

nav li1 a {
  padding: 6px;
  display: block;
  color: #231815;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-bottom: solid 1px;
  border-bottom-color: #231815;
  background: url(img/nav_bg_hover.gif) repeat-x;
}


/*---------- トップに戻る ----------*/

#page_back {
  margin: 0 0 8px 0;
  padding: 0 6px 0 0;
  text-align: right;
}


/*---------- フッター ----------*/

footer {

}
footer p {
	color: #000000;
	font-size: 8px;
	line-height: 1.5;
}

footer div.info{
	background: #e6e6e6;
	padding: 20px;
	margin: 10px 0;
}
footer nav {
	line-height: 1.5;
}
footer nav a {
	color: #666;
}
footer p.copyright {
	text-align: center;
	margin: 10px 0;
}

.center {
	text-align: center;
	padding:0px;
	margin:20px 0px;
}

.img_box {
	width: 25vw;
	height: 17.5vw;
	padding: 0 0 3px;
	margin:0px;
	float:left;
}
.img_box img {
  box-shadow: 2px 2px 1px rgba(0,0,0,0.15);
  width: calc(100% - 4px);
  height: calc(100% - 3px);
}



.sub_item_box {
	text-align:center;
	width:45%;
	padding:0px;
	margin:2%;
	float:left;
}
.clear{
	clear:both;
	margin:5px 0px;
}
