@charset "utf-8";
/* CSS Document */

html * {
    max-height:100%;
}
html {
 -webkit-text-size-adjust: 100%;
}

img {
	max-width: 100%;
	height: auto;
}

.contents_box {
    width: 100%;
}  

/* === テキスト装飾関係 === */
.danraku_p20 {
    margin: 20px 0;
}

/* 太文字 */
.bold_txt {
    font-weight: bold;
}
/* 大文字120 */
.fs120 {
    font-size: 120%;
}
/* 小文字90 */
.fs90 {
    font-size: 90%;
}
/* 小文字80 */
.fs80 {
    font-size: 80%;
}
/* 注意書き赤文字 */
.attention_red {
    color: red;
}

/*スイミングサブタイトル*/
p.catch.blue {
    background: none;
    color: #4099c6;
}

.pc_br {
  display: block;
}
.sp_br {
	display: none;
}
.br370 {
	display: none;
}

body {
    display: flex;
}

/*スマホ用改行*/

.br700 {
	display: none;
}
.br500 {
	display: none;
}


/* ==========================
======== スマホメニュー =======
============================= */
button.drawer-toggle.drawer-hamburger {
    display: none;
}

/* ==========================
======== スマホ用hedder =======
============================= */
.sp_menu_bg {
    display: none;
}

/* ==========================
=========== header ==========
============================= */

/* header固定用 */
/*
.header_inner {
    width: 220px;
    left: 20%;
    margin-left: -235px;
    top: 15px;
    position: fixed;
}
*/

/*
.header {
	float: left;
	width: 20%;
}

.header_inner {
	width: 220px;
	margin: 15px auto;
}
*/
.header {
    position: relative;
}
.header_inner {
	width: 220px;
	position: fixed;
    top: 15px;
    left: 15px;
	overflow-y:auto;
	padding-right: 5px;
}

.header_inner::-webkit-scrollbar{
	width: 7px;
}
.header_inner::-webkit-scrollbar-track{
	background: #fff;
	border: none;
	border-radius: 10px;
	box-shadow: inset 0 0 2px #777; 
}
.header_inner::-webkit-scrollbar-thumb{
	background: #aaa;
	border-radius: 10px;
	box-shadow: none;
}



.header_inner .head_news {
	text-align: center;
	background: #ffe2e8;
	border: 5px solid #ffc8d3;
	padding: 5px 0;
	margin: 10px 0;
}
.header_inner .head_news.bold{
	font-weight: bold;
	color: #ff6279;
	font-size: 108%;
}

.header_inner ul.link_list li {
	background: #96dede;
	border-bottom: dotted 2px #fff;
}
.header_inner ul.link_list a:last-child li {
    border-bottom: none;
}

.header_inner ul.link_list li p {
    padding: 9px 0 9px 20px;
    background: url(../img/page_icon01.png) no-repeat 180px center;
    font-size: 110%;
}

.header_inner ul.other_link li {
	margin: 10px 0;
}

	/*ホバーエフェクト*/
	.header_inner ul.link_list li {
		position: relative;
		z-index: 2;
		-webkit-transition: all .3s;
		transition: all .3s;
	}
	.header_inner ul.link_list li:hover {
		background-color: #4bbbbb;
		color: #fff;
	}
	.header_inner ul.link_list li::before,
	.header_inner ul.link_list li::after {
		-webkit-transition: all .3s;
		transition: all .3s;
		position: absolute;
		z-index: -1;
		display: block;
		content: '';
		top: 0;
		width: 50%;
		height: 100%;
	}
	.header_inner ul.link_list li::before {
		right: 0;
	}
	.header_inner ul.link_list li::after {
		left: 0;
	}
	.header_inner ul.link_list li:hover::before,
	.header_inner ul.link_list li:hover::after {
		width: 0;
		background-color: #96dede;
	}


/* ==========================
===========  main  ==========
============================= */
/*
.main {
    float: left;
    width: 80%;
    min-width: 960px;
}
*/
.main {
    min-width: 960px;
    margin-left: 250px;
	width: 100%;
	width: -webkit-fill-available;
	width: -moz-available;
}



.page_name {
	text-align: center;
	padding: 5px 0 15px;
}

.main_parts {
	width: 100%;
}

.inner_parts {
	max-width: 870px;
	margin: auto;
}

/* ==========================
=========== ぱんくず =========
============================= */

.pannkuzu {
    text-align: center;
    padding: 10px 0;
    font-size: 12px;
}

.pannkuzu ul {
    overflow: hidden;
    max-width: 1000px;
    margin: auto;
    display: inline-block;
}

.pannkuzu ul li {
    float: left;
}

.pannkuzu ul li.under_content:before {
    content: ">";
    color: #ababab;
    padding: 0px 6px;
}



/* 画像拡大css */
.other_contents .img_zoomBox {
	overflow: hidden;	/*拡大時にはみ出た部分を隠す*/
	width: 165px;	/*画像の幅*/
	height: 165px;	/*画像の高さ*/
    background: #000;
}
.other_contents .img_zoomBox img {
	display: block;
	transition-duration: 0.3s;	/*変化に掛かる時間*/
}
.other_contents .img_zoomBox:hover > a img {
	transform: scale(1.1);	/*画像の拡大率*/
	transition-duration: 0.3s;	/*変化に掛かる時間*/
    opacity: 0.8;
}

/* テキスト装飾
=========================================*/
p.catch {
    font-size: 220%;
    background: url(../../common/img/catch_bg.png) repeat-x;
    display: inline;
	padding: 0 10px;
}





/* ==========================
=========== footer ==========
============================= */

#back-top {
    position: fixed;
    right: 3%;
    bottom: 50px;
    z-index: 100;
}
#back-top span {
    display: block;
    width: 80px;
    height: 82px;
    background: url(../img/backTop.png) no-repeat scroll 0 0 rgba(0, 0, 0, 0);
}

.footer {
    background: #d9f0f0;
    overflow: hidden;
}

.footer_inner {
    max-width: 870px;
    width: 100%;
    margin: 30px auto;
	overflow: hidden;
}

.footer_L {
	float: left;
}

.footer_R {
	float: right;
}

.name_big {
	font-size: 140%;
	font-weight: bold;
}

.footer_R .sitemap_list {
	overflow: hidden;
}

.footer_R .sitemap_list ul {
	float: left;
	margin-left: 20px;
}

.footer_R .sitemap_list ul li {
    padding: 2px 0;
}
	
.footer_R .sitemap_list ul li.sitemap_1st {
	padding-left: 20px;
	background: url(../img/page_icon02.png) no-repeat 1px center;
}
		
.footer_R .sitemap_list ul li.sitemap_2nd {
	padding-left: 20px;
	margin-left: 20px;
	background: url(../img/page_icon03.png) no-repeat 1px center;
}



/* ==========================
========== copyright ========
============================= */

.copyright {
	text-align: center;
	margin: 20px 0;
}


@media print {

	nav.drawer-nav {
		display: none!important;
	}
	
	.header_inner {
		width: 17%;
    	max-width: 220px;
		position: absolute;
	    overflow-y: visible;
	}
	
	body {
		display: block;
		width: 1200px!important;
	}
	
	.main {
		width: 81%!important;
		float: right;
	}
}