@charset "utf-8";
/* style.css */
/* 2018.02.21 last modified */
/*-----------------------------------------------*/
/*  reset                                        */
/*-----------------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video,
input, select, submit, button  {
	margin: 0;
	padding: 0;
	border: none;
	font-size: 100%;
	font-weight: normal;
	font-style: normal;
	vertical-align: baseline;
	background: transparent;
	list-style: none;
	border-collapse: collapse;
}
body {
	line-height: 1;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { 
	display:block;
}
a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
input, select {
	vertical-align: middle;
}
/* padding、border-widthを要素のwidthに含める設定 */
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
/*-----------------------------------------------*/
/*  link                                         */
/*-----------------------------------------------*/
a:link    {color: #26499d; text-decoration: none;}
a:visited {color: #26499d; text-decoration: none;}
a:hover   {color: #d70035; text-decoration: none;}
a:active  {color: #d70035; text-decoration: none;}

/*-----------------------------------------------*/
/*  common style                                 */
/*-----------------------------------------------*/
.clear:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.floatL { float: left; margin: 0 10px 10px 0; }
.floatR { float: right; margin: 0 0 10px 10px; }
.floatC { display:block; margin: 20px auto; }

/*-----------------------------------------------*/
/*  layout(～480px)                              */
/*-----------------------------------------------*/
html {
	height: 100%;
}
body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
	font-size: 15px;
	color: #000000;
	line-height: 1.3;
	text-align: left;
	-webkit-text-size-adjust: 100%;
	background: url("/images/bg.png");
}
#container {
	position: relative;
	width: 100%;
	min-height: 100%;
	height: auto !important;
	height: 100%;
}

/* menu button */
.menu-btn {
	position: relative;
	display: block;
	width: 40px;
	height: 40px;
	background-color: rgba(255, 255, 255, 0.7);
	margin: 0;
}
.menu-btn span {
	position: absolute;
	width: 24px;
	height: 3px;
	left: 8px;
	background: #26499d;
}
.menu-btn span.line1 { top: 10px; }
.menu-btn span.line2 { top: 18px; }
.menu-btn span.line3 { top: 26px; }

.layer {
	position: fixed;
	top: 0;
	z-index: 1;
	display: none;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	background-color: #222222;
	opacity: 0.6;
}
/* sp menu */
.sidr {
	background: #a60016;
	border-right: 1px solid #ccc;
}
.sidr h2 {
	padding: 8px 10px;
	color: #26499d;
	background: #eeeaec;
	text-align: center;
	font-weight: bold;
	margin-bottom: 0;
	box-shadow: none;
	border-bottom: 1px solid #d5d5d5;
}
.sidr ul {
	border: none;
}
.sidr ul li {
	border-bottom: 1px solid #d5d5d5;
}
.sidr ul li a {
	position: relative;
	display: block;
	padding: 15px 8px;
	color: #26499d;
	text-decoration: none;
	background: #f5ecf4;
	border-top: 1px solid #f5f5f5;
	font-size: 0.9em;
	line-height: 1.3;
	font-weight: bold;
}
.sidr ul li:first-child a {
/*	border-top: none;*/
}
.sidr ul li a:hover {
	background-color: rgba(255, 240, 245, 0.7);
	box-shadow: none;
}

/*--------*/
/* header */
/*--------*/
header {
	position: relative;
	width: 100%;
	height: auto;
	text-align: center;
}
header a h1 {
	position: absolute;
	top: 0;
	left: 100px;
	padding: 40px 0 10px 20px;
	font-size: 2.4em;
	font-weight: bold;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.9);
	color: #fafdff;
}
#contents {
	width: 100%;
	margin: 30px auto;
	padding-bottom: 100px; /* フッターの高さ分確保する */
	background-color: rgba(255, 255, 255, 0.7);
}
#side {
	display: none;
}
#main {
	width: 100%;
	padding: 40px 0 40px;
}
#main .top_banner,
#main .top_banner img {
	width: 100%;
}
#main article {
	width: 95%;
	margin: 10px auto;
	padding: 20px;
	background-color: #ffffff;
	box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.1);		
}
#main article h2 {
	margin-bottom: 20px;
	font-size: 18px;
	color: #9f166a;
	font-weight: bold;
}
#main article h3 {
	margin: 15px 0 10px;
	font-size: 1.2em;
	font-weight: bold;
	color: #56256e;
}
#main article p {
	padding: 0 20px 20px 0px;
	line-height: 1.5;
}
#main article p img {
	padding: 7px;
	border: 1px solid #eeeeee;
	box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.8);
}
#main article p a {
	text-decoration: underline;
	font-weight: bold;
}
#main article ul {
	line-height: 1.5;
}
#main article ul li {
	margin-bottom: 10px;
}

#main article.deco {
	position: relative;
	background-color: #ffffff;
	box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.1);
	padding: 20px 20px 160px 20px;
}
#main article.deco::after {
	position: absolute;
	display: block;
	background: url("/images/deco.jpg");
	content: '';
	width: 200px;
	height: 157px;
	right: 20px;
	bottom: 20px;
}
#main article audio {
	display: block;
	margin: 0 auto;
}
#main article iframe {
	display: block;
	margin: 0 auto;
}

#main article p.box {
	width: 100%;
	margin: 20px auto 30px;
	border-bottom: dotted 2px #cccccc;
}
#main article p.box a,
#main article p.box a img {
	display: block;
	margin: 0 auto;
}

/* footer */
footer {
	position: relative;
	width: 100%;
	height: auto;
	background: none;
	padding: 20px 0 20px 0;
}
footer #gototop {
	width: 100%;
	margin-top: 20px;
}
footer #gototop a {
	display: block;
	position: fixed;
	content: "";
	right: 0;
	bottom: 0;
	text-align: center;
	vertical-align: middle;
	background-color: #a60016;
	color: #ffffff;
	padding: 15px;
}
footer #gototop a:hover {
	text-decoration: underline;
}

footer #copy {
	width: 100%;
	padding: 5px;
	text-align: center;
	color: #fef9fb;
}
footer #notice {
	width: 100%;
	padding: 5px 5px 50px 5px;
	text-align: center;
	color: #fef9fb;
	font-size: 0.9em;
}
.sp_none {
	display: none;
}

@media screen and (min-width: 480px) {
/*----------*/
/* contents */
/*----------*/
.sp_none {
	display: inline;
}
#contents {
	width: 980px;
	display: table;
}
.menu-btn {
	display: none;
}
header a h1 {
	position: absolute;
	top: -20px;
	left: 380px;
	padding: 40px 0 10px 20px;
	font-size: 2.8em;
}

/*------*/
/* sidemenu */
/*------*/
#side {
	display: table-cell;
	vertical-align: top;
	width: 250px;
	padding-top: 60px;
}
.sidemenu {
	width: 250px;
}
.sidemenu:last-child {
	margin-bottom: 0px;
}
.sidemenu h2 {
	padding: 10px 20px 10px;
	font-size: 1.3em;
	font-weight: bold;
	color: #26499d;
}
.sidemenu ul {
	margin-top: 3px;
}
.sidemenu ul li {
	margin-left: 20px;
	border-bottom: 1px dotted #cccccc;
}
.sidemenu ul li a {
	display: block;
	padding: 15px 20px;
	color: #26499d;
	font-weight: bold;
}
.sidemenu ul li a:hover {
	color: #a60016;
	background-color: rgba(255, 240, 245, 0.7);
}
#side img {
	display: block;
	margin: 20px auto 0;
}

/*---------*/
/* article */
/*---------*/
#main {
	display: table-cell;
	vertical-align: top;
	padding: 40px;
}

#main .top_banner {
	width: 650px;
	height: 223px;
	margin-bottom: 20px;
}
#main article {
	width: 650px;
	margin-bottom: 20px;
}
#main article p.box {
	text-align: right;
}


/*--------*/
/* footer */
/*--------*/
footer {
	width: 980px;
	margin: 0 auto;
}
footer #gototop {
	width: 980px;
}
footer #gototop a:hover {
	text-decoration: underline;
}

footer #copy {
	width: 980px;
	text-align: center;
}
footer #notice {
	width: 980px;
	padding: 5px;
	text-align: center;
}
