@charset "utf-8";

body {
	margin: 0;
	padding: 0;
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 100%;
}
img {
	border: 0;
}
a {
	color: #342300;
    	transition : all 0.5s;
}
a:hover {
	color: #a24100;
}
header h1 a {
	display: inline-block;
}
header h1 a img {
	vertical-align: bottom;
}
#breadcrumb ul {
	list-style-type: none;
	padding: 0;
}
#breadcrumb ul li {
	display: inline;
	margin-right: 5px;
}
#breadcrumb ul li a {
	text-decoration: none; /* 下線が不要なら */
    color: #222222; /* リンクの色 */
}
#breadcrumb ul li a:hover {
    color: #91cfb6; /* ホバー時の色 */
}
#breadcrumb ul li::after {
    content: ""; /* 文字ではなく、背景画像を表示するために空にする */
    display: inline-block;
    width: 15px; /* > 画像の幅 */
    height: 15px; /* > 画像の高さ（適宜調整） */
    margin: 0 5px; /* リンクテキストとの間に余白を設ける */
    background-image: url("images/breadcrumb_arrow.png");
    background-repeat: no-repeat;
    background-position: center center;
    vertical-align: middle; /* 上下中央寄せ */
}

/* 最後の要素には > を表示しない */
#breadcrumb ul li:last-child::after {
    content: none; /* または content: ""; */
    background-image: none;
    margin: 0;
    width: 0;
    height: 0;
}
.bnr_inner {
	margin-bottom: 30px;
}
.bnr_inner dt img{
	margin-bottom: 6px;
	vertical-align: bottom;
}
.bnr_inner a {
	text-decoration: none;
}
.bnr_inner dl, .bnr_inner dt, .bnr_inner dd, .bnr_inner p{
	margin: 0;
}
#pagetop {
	margin-top: 0;
	margin-bottom: 0;
	float: right;
}
#pagetop a {
	display: block;
	min-height: 16px;
	padding: 6px 0 6px 28px;
}
#copyright {
	clear: both;
	margin-top: 0;
	margin-bottom: 15px;
	text-align: center;
}
#copyright small {
	font-size: 100%;
}
#main h2 {
	margin-top: 0;
	padding: 13px 0 13px 24px;
	font-size: 112.5%;
}
/* --- スライドショー全体の調整 --- */
#graphic {
    width: 1000px;      /* 指定の1000pxに変更 */
    max-width: 100%;    /* 画面が1000pxより小さい時は自動で縮むように */
    margin: 0 auto 30px auto;
}

#graphic ul {
    position: relative;
    list-style: none;   /* ← これ追加 */
    margin: 0;
    padding: 0;
}

#graphic ul li {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

#graphic ul li.now {
    opacity: 1;
    position: relative; /* これが高さ確保の肝 */
}

/* 画像自体のサイズ指定：これが「縦の自動縮小」のキモです */
#graphic img {
    width: 100%;        /* 親の1000pxに合わせて横いっぱいにする */
    height: auto;       /* 横幅に合わせて比率を保ち、縦は自動で決まる */
    display: block;     /* 画像の下にできる謎の隙間を消す */
}