﻿/* CSS レイアウト */
@charset "utf-8";
body {
	max-width: 1200px;
	background-image: url(../common/back1.jpg);
	font-family: 　"メイリオ", meiryo, "ヒラギノ角ゴシック", sans-serif;
	font-size: 16px;
	color: #222222;
}
/* ロゴ、区切り、ニュース表示 */
.logo {
	margin: 0px;
	text-align: left;
	font-size: 16px;
	color: #222222;
}
.kugiri {
	margin-top: 20px;
	margin-bottom: 20px;
	text-align: center;
	font-size: 11px;
	font-weight: bold;
	color: black;
}
/* ロゴ、区切り、ニュース表示終わり */
#topbutton {position: fixed; bottom: 18px; right: 18px; display: none;
   background-color: #ff00cc; opacity: 0.75; border-radius: 16px; text-align: center; 
      font-size: 120%;  font-weight: bold; margin: 0px;  padding: 2px;  width: 4em; }
#topbutton a { color: white;  text-decoration: none; }
#topbutton a:hover {color: #000000; text-decoration: underline; 
}

/* 本文 */

.jamp1 {
		margin-left: auto;
	margin-right: auto;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	color: black;
}

.box1 {
	width: 100%;
}
table {
	width: 50%;		  /* ※隣り合う写真館の広がりを抑える */
	margin-left: auto;
	margin-right: auto;
	font-size: 16px;
	text-align: left;
	font-weight: normal;
	color: #222222;
	border-collapse: collapse;  /* ※隣り合う2本の罫線を1本にまとめる */
}
table img {
	width: 150px;
	height: auto;
	vertical-align: middle;
}
th, td {
	border: 0px black solid;  /* ※罫線を引くためのコード */
}

@media (min-width: 900px) {
.box1:after {
	content: "";
	display: block;
	clear: both;
}
.box2 {
	float: left;
	width: 50%;
}
.box3 {
	float: left;
	width: 49%;
}
}

@media (max-width: 599px) {

table img {
	width: 110px;
	height: auto;
	vertical-align: middle;
}

}























