/*------------------------------------------------
　スカヘルネット テンプレート(SP)
　2019/04/13 作成
  copyright sukaherunet
------------------------------------------------*/
* {
	box-sizing: border-box;
}
body	{
	margin: 0;
	padding: 0;
	font: 15px "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #333;
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	display: flex;
	flex-direction: column;
}
h1,h2,h3,h4,h5,
div,p,dl,dt,dd,
ul,ol,li,
figure,form	{
	margin: 0;
	padding: 0;
	font-size: 1em;
}
ul	{
	list-style-type: none;
}
img	{
	border: 0;
	vertical-align: middle;
}
/*---------- aタグ ----------*/
a	{
	color: #06f;
/*	transition: 0.5s;*/
}
a:hover	{
	color: #f60;
	text-decoration: none;
}
/*---------- iframe ----------*/
iframe {
	width: 100%;
}


/* container
------------------------------------------------------------------------------*/
#container {
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
/*-------------------- flexリスト（ボックスを均等に横並び）--------------------*/
.flex-list {
	width: 95%;
	margin: 0 auto 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.flex-list li {
	width: 32%;
	margin-bottom: 20px;
	padding: 0;
}
.flex-list li img {
	width: 100%;
	height: auto;
}
.flex-list li.is-empty {
	height: 0;
	padding-top: 0;
	padding-bottom: 0;
	margin-top: 0;
	margin-bottom: 0;
	border: 0;
}

/*-------------------- ページ切替 --------------------*/
.page {
	width: 95%;
	margin: 30px auto;
	text-align: center;
}
.page b,
.page a {
	display: inline-block;
	border: 1px solid #75AF58;
	margin: 0 5px 5px;
	width: 40px;
	padding: 5px 0;
	text-decoration: none;
}
.page b,
.page a:hover {
	background: #ECF4E8;
}

/*-------------------- input/select --------------------*/
select {
	border: 1px solid #bbb;
	padding: 5px;
}
/*-------------------- section --------------------*/
section[id]	{
	margin-top: -15px;
	padding-top: 15px;
}


/* header
------------------------------------------------------------------------------*/
header {
	background: #64cdd3;
	background: -moz-linear-gradient(top, #64cdd3, #3ea1a6);
	background: -webkit-linear-gradient(top, #64cdd3, #3ea1a6);
	background: linear-gradient(to bottom, #64cdd3, #3ea1a6);
	border-top: 1px solid #3ea1a6;
	border-bottom: 1px solid #3ea1a6;
	color: #fff;
	position: relative;
	height: 48px;
	display: flex;
	align-items: center;
}
header h1 {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: auto;
	font-size: 1.05em;
	font-weight: bold;
	text-shadow: 0 0 2px rgba(28,71,74,1);
	line-height: 1.1;
}
header h1 span {
	font-size:0.85em;
}
header .h-back {
	width: 64px;
	margin-top: -2px;
	margin-left: 10px;
	border: 1px solid #245C60;
	border-radius: 13px;
	box-shadow: 0 0.5px 3px rgba(28,71,74,1);
	z-index: 1;
}
header .h-back a {
	display: block;
	position: relative;
	font-weight: bold;
	text-decoration: none;
	background: #64cdd3;
	background: -moz-linear-gradient(top, #64cdd3, #3ea1a6);
	background: -webkit-linear-gradient(top, #64cdd3, #3ea1a6);
	background: linear-gradient(to bottom, #64cdd3, #3ea1a6);
	border-radius: 13px;
	padding: 6px 8px;
	font-size: 0.88em;
	color: #fff;
	text-shadow: 0 0 2px rgba(28,71,74,1);
	text-align: right;
	width: 100%;
}
header .h-back a::before {
	content: "";
	position: absolute;
	top: 7px;
	left: 6px;
	background: #1C474A;
	width: 17px;
	height: 17px;
	border-radius: 50%;
	box-shadow: 0px 1px 1px rgba(255,255,255,.8);
}
header .h-back a::after	{
	content: "";
	position: absolute;
	left: 11px;
	top: 11.5px;
	width: 5px;
	height: 5px;
	border-left: 3px solid #fff;
	border-bottom: 3px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
header .h-back a:hover {
	background: #3ea1a6;
	background: -moz-linear-gradient(top, #3ea1a6, #64cdd3);
	background: -webkit-linear-gradient(top, #3ea1a6, #64cdd3);
	background: linear-gradient(to bottom, #3ea1a6, #64cdd3);
	box-shadow: 0 1px 1px rgba(98,203,209,1)inset;
}

/* contents
------------------------------------------------------------------------------*/
.contents	{
	flex: 1 1 auto;
}
h2	{
	font-size: 1.7em;
}
.com	{
	width: 98%;
	margin: auto;
	padding: 10px;
}
.com p~p	{
	margin-top: 10px;
	margin-bottom: 10px;
}

/* main
------------------------------------------------------------------------------*/
/*-------------------- dragoneye --------------------*/
.dragoneye .ttl	{
	text-align: center;
}
.dragoneye .main-image	{
	max-width: 700px;
	width: 95%;
	margin: 20px auto;
	text-align: center;
}
.dragoneye .main-image img	{
	width: 100%;
	height: auto;
}

.dragoneye .main-image .image-caption	{
	margin-top: 5px;
	font-size: 0.8em;
	color: #777;
}
.dragoneye .access	{
	width: 95%;
	margin: 20px auto;
	padding: 10px;
	border: 1px solid #70d0df;
}
.dragoneye .access .title	{
	font-weight: bold;
	margin-bottom: 5px;
	line-height: 1;
	color: #2f5262;
}
.dragoneye .access dl	{
	font-size: 0.9em;
}
.dragoneye .access dl dt	{
	border-bottom: 1px dashed #ccc;
	padding: 4px;
}
.dragoneye .access dl dd	{
	padding: 4px;
	margin-bottom: 15px;
}
/* カテゴリ切替 --------------------*/
.year-list {
	width: 98%;
	margin: 10px auto 30px;
	text-align: right;
}
/* リストタイプ */
.year-list form select {
	padding: 5px;
}
.year-list form::before {
	content: "選択：";
	font-size: 0.9rem;
}
.list-ttl	{
	width: 100%;
	margin: 10px auto 20px;
	text-align: center;
	font-size: 1.2em;
	color: #5cacc1;
	font-weight: bold;
}
.list-ttl span	{
	display: block;
	font-size: 0.8em;
}
.dragoneye .err {
	width: 100%;
	margin: 20px auto;
	text-align: center;
}
/* gallery */
.dragoneye .gallery .flex-list li .sdate {
	font-size: 0.8em;
	text-align: center;
}
.dragoneye .gallery .flex-list li .sdate::before {
	content: "（撮影日：";
}
.dragoneye .gallery .flex-list li .sdate::after {
	content: "）";
}
.dragoneye .gallery .flex-list li .caption {
	font-size: 0.8em;
}
/* データ表示 --------------------*/
.de-disp {
	padding: 10px;
}
.de-disp img {
	display: block;
	width: 100%;
	height: auto;
}
.de-disp p {
	margin-top: 3px;
	font-size: 0.75rem;
	line-height: 1.4;
}
.de-disp .sdate {
	margin-top: 3px;
	text-align: center;
	font-size: 0.75rem;
	color: #666;
}
.de-disp .sdate::before {
	content: "（撮影日：";
}
.de-disp .sdate::after {
	content: "）";
}
/* リスト表示 --------------------*/
.de-gallery {
	display: flex;
	flex-wrap: wrap;
	width: 98%;
	margin: auto;
}
.de-gallery>* {
	max-width: calc((100% - 0.01px) / 3);
	width: calc((100% - 0.01px) / 3);
	padding: 5px;
}


/* ページ切替
-------------------------------------------------*/
.de-page {
	width: 98%;
	margin: 30px auto 5px;
	text-align: center;
}
.de-page .current,
.de-page a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-width: 1px 0 1px 1px;
	border-style: solid;
	border-color: #5cacc1;
	width: 34px;
	height: 34px;
	text-align: center;
	line-height: 1;
	text-decoration: none;
}
.de-page .current,
.de-page a:hover {
	background: #5cacc1;
	color: #fff;
	text-decoration: none;
}
.de-page *:last-child {
	border-right-width: 1px;
}

/* footer
------------------------------------------------------------------------------*/
footer	{
	width: 100%;
	margin: auto;
	background: #64cdd3;
	background: -moz-linear-gradient(top, #64cdd3, #3ea1a6);
	background: -webkit-linear-gradient(top, #64cdd3, #3ea1a6);
	background: linear-gradient(to bottom, #64cdd3, #3ea1a6);
	border-top: 1px solid #3ea1a6;
}
footer .copy	{
	width: 100%;
	margin: 0 auto;
	padding: 3px;
	text-align: center;
	font-size: 0.8em;
	color: #fff;
	font-weight: bold;
	text-shadow: 0 0 2px rgba(28,71,74,1);
}

/* lightbox
--------------------------------------------------------------------------------*/
.lightboxOverlay {
	background-color: #000;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
	opacity: 0.7;
}
