@charset "utf-8";
/*基本設定*/
* {
	padding: 0px;
	margin: 0px;
}
html {
	overflow-y: scroll;
}
html, body {
	height: 100%;
	width: 100%;
}
img {
	border: 0px;
	vertical-align: bottom;
}
body,input,textarea,select,pre {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: 500;
    font-size: 90%;
}
/* HTML5の新要素でブロックボックスとしてレンダリングさせる要素に「display: block」を指定する */
footer, main, header {
    display: block;
    margin: 0 auto;
}
/*リンク色指定*/
a:link,
a:visited {
	color: blue;
}
/*マウスオーバーで透過させる*/
a:hover img{
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}

address {
	font-style: normal;
}
p {
	line-height: 2.5;
}
/*白縁取り*/
.cs_shadow {
	text-shadow:
		white 2px 0px,  white -2px 0px,
		white 0px -2px, white 0px 2px,
		white 2px 2px , white -2px 2px,
		white 2px -2px, white -2px -2px,
		white 1px 2px,  white -1px 2px,
		white 1px -2px, white -1px -2px,
		white 2px 1px,  white -2px 1px,
		white 2px -1px, white -2px -1px;
}
/*白文字*/
.cs_white {
	color: white;
}
/*赤文字（太文字）*/
.cs_red_bold {
	color: red;
	font-weight:bold;
}
.cs_white a:link,
.cs_white a:visited {
	color: white;
}
/*ルビ*/
[data-ruby] {
    position: relative;
}
[data-ruby]::before {
    content: attr(data-ruby);
    position: absolute;
    top: -1.4em;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 0.2em;
}
rt {
    display: none;
}
/*-----------*/
/* offパーツ */
/*-----------*/
/*パソコンで表示（指定値以下は非表示）*/
@media (max-width:419px){.pc  {display:none;}}

/*スマホで表示（指定値以下は非表示）*/
@media (min-width:420px){.mb  {display:none;}}
/*-------*/
/*横幅960*/
/*-------*/
.cs_width {
	margin-left: auto;
	margin-right: auto;
}
@media (min-width:960px){
.cs_width {
	width: 960px;
}
}
@media (max-width:959px){
.cs_width {
	width: 95%;
}
}
/*キャラクター名*/
h1 {
	padding-top:10px;
	margin-bottom: 10px;
}
h1 span{
	font-size: medium;
}
/*各項目*/
.cs_item {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	justify-content: flex-start;
	margin-left: 10px;
	margin-bottom: 20px;
}
.cs_item h3,
.cs_item p {
	font-size: medium;
}
.cs_item p {
	margin-left: 10px;
}
.cs_item p:first-of-type {
	margin-left: 0px;
}
/*画像*/
img {
	width: 300px;
}
/*パンくずリスト*/
nav ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin-top: 5px;
}
nav ol li {
    margin-bottom: 20px;
}
nav ol li::before{
    content: '＞';
    display: inline-block;
    padding: 0 10px;
}

nav ol li:first-of-type::before{
    display: none;
}
/*ページトップへもどる*/
#id_page_top{
	position: fixed;
	bottom: 50px;
	right: 10px;
	width: 50px;
	height: 35px;
	color: white;
	font-size: x-large;
	text-align: center;
	border: solid 1px white;
	background-color: #70942C;
	cursor: pointer;
}
#id_page_top:hover{
	background-color: #80A43C;
}
/*コピーライト*/
.cs_copyright {
	margin-top: 10px;
	text-align: center;
}