@charset "utf-8";
/******************************************************************************
******************************************************************************
**
** sp.cssにおいて ( var.3.1.3 )
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/

/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** style
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html, body {
	overflow-x: hidden;
}
body{
	border-top: 2px solid #A13B42;
}
.cmn_ttl {
	background: url(../images/icon_leaf01.png) no-repeat left center;
	background-size: 18px;
	border-bottom: 3px solid #aaa;
	font-size: 18px;
	padding:  0 0 0 20px;
	position: relative;
}
.cmn_ttl:first-letter {
	color: #A13B42;
}
.cmn_ttl::after {
	position: absolute;
	content: "";
	border-bottom: 3px solid #A13B42;
	left: 0;
	bottom: -3px;
	width: 150px;
}
.single_date {
	margin: 5px 0 10px;
	text-align: right;
}
/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
	background: url(../images/hd_bg_bg.png) repeat-x top left
}
.hd {
	padding: 10px 60px 10px 10px;
}
.hd_logo img {
	height: auto;
	width: 360px;
	max-width: 100%;
}
.hd_nav_list{
	display: none;
}
/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav {
	background: #A13B42;
	color: #fff;
	height: calc(100% + 500px);
	padding-bottom: 500px;
	z-index: 100;
	width: 70%;
	overflow-x: none;
	overflow-y: auto;
	top: 0px;
	right: -70%;
	position: fixed;
	transition: All 0.5s ease
}
.nav_list>li>a {
	border-bottom: 1px solid rgba(0, 0, 0, 0.15);
	font-size: 13px;
	color: #fff;
	font-weight: bold;
	display: block;
	padding: 1em 1em 1em 1.5em;
	text-decoration: none;
	position: relative
}
.nav_list>li>a:hover,
.nav_list>li.current-menu-parent>a,
.nav_list>li.current-menu-item>a{
	background: #E1AEB3;
	color: #A13B42;
}
.sub-menu>li>a {
	display: block;
	padding: 1em 1em 1em 2em;
	background: #68272b;
	color: #fff;
	font-size: 13px;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.sub-menu>li>a:hover, .sub-menu>li>a.current {
	background: #E1AEB3;
	color: #A13B42;
	box-shadow: 0 0 4px rgba(255, 0, 0, 0.2)
}
/*
.nav_glist>li>a {
	background-color: rgba(0, 0, 0, 0.7);
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
	color: #fff;
	display: block;
	font-size: 11px;
	padding: 1em 1em 1em 3em;
	text-decoration: none
}
.nav_glist>li>a:hover, .nav_glist>li>a.current {
	background-color: #000;
	box-shadow: 0 0 4px rgba(255, 0, 0, 0.2)
}
*/
.sp_nav_open {
	right: 0 !important
}
.sp_nav_trigger {
	cursor: pointer;
	z-index: 1000;
	position: fixed !important;
	top: 25px;
	right: 15px;
	margin-top: -5px;
	width: 36px;
	height: 24px
}
.sp_nav_trigger span {
	display: inline-block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #000;
	border-radius: 4px;
	transition: all .4s;
	box-sizing: border-box
}
.sp_nav_trigger span:nth-of-type(1) {
	top: 0
}
.sp_nav_trigger span:nth-of-type(2) {
	top: 10px
}
.sp_nav_trigger span:nth-of-type(3) {
	bottom: 0
}
.sp_nav_trigger::after {
	position: absolute;
	left: 0;
	bottom: -20px;
	content: 'MENU';
	display: block;
	width: 100%;
	padding-top: 20px;
	color: #000;
	font-size: 10px;
	text-decoration: none;
	text-align: center;
	transition: all 0.4s
}
.sp_nav_trigger.sp_active::after {
	content: 'CLOSE';
	bottom: -25px;
	color: #fff
}
.sp_nav_trigger.sp_active span:nth-of-type(1) {
	transform: translateY(10px) rotate(-45deg);
	background: #fff
}
.sp_nav_trigger.sp_active span:nth-of-type(2) {
	opacity: 0;
	background: #fff
}
.sp_nav_trigger.sp_active span:nth-of-type(3) {
	transform: translateY(-10px) rotate(45deg);
	background: #fff
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con {
	padding: 20px 10px 30px
}
.main {
	margin-bottom: 30px
}
.side_head {
	background-color: #EEE;
	color: #111;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 6px;
	padding: 10px;
	text-align: center
}
.side .cmn_ttl:nth-child(3){
	background-image: none;
	font-size: 14px;
	padding-left: 5px;
	margin-top: 20px;
}
.side_nav_list li a {
	background: url(../images/icon_arrow_gray.png) no-repeat left center;
	border-bottom: 1px solid #CCC;
	color: #111;
	display: block;
	font-size: 14px;
	padding: 12px 10px;
	text-decoration: none
}
.side_nav_list li a:hover {
	text-decoration: underline
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft {
	background-color: #CCC;
	padding: 2rem 0;
}
.ft_nav_list{
	display: flex;
	margin-bottom: 10px;
	justify-content: center;
}
.ft_nav_list li{
	margin: 0 5px;
}
.ft_nav_list a:hover{
	opacity: 0.8;
}
.ft_copy {
	font-size: 0.8rem;
	text-align: center
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
	border-radius: 50%;
	background-color: #A13B42;
	bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	right: 10px;
	position: fixed;
	width: 40px;
	z-index: 100;
}
.pt:hover {
	opacity: 0.6;
}
.pt_btn {
	cursor: pointer;
	display: block;
	width: 14px;
	height: 14px;
	margin-top: 5px;
	transform: rotate(45deg);
	position: relative;
}
.pt_btn::before,
.pt_btn::after{
	background-color: #FFF;
	content: "";
	display: block;
	top: 0;
	left: 0;
	position: absolute;
}
.pt_btn::before{
	width: 5px;
	bottom: 0;
}
.pt_btn::after{
	height: 5px;
	right: 0;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_news_scrl {
	max-height: 50vh;
	overflow:auto
}
.index_slide {
	margin-bottom: 20px
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.archive_item {
	border-bottom: 1px dotted #999;
	padding: 10px 0;
}
.archive_item_date {
	width: 130px;
}
.archive_item_date:before {
	content: url(../images/icon_arrow_red01.png);
	vertical-align: bottm;
	margin-right: 0.2em;
}
.archive_item_ttl {
	/*width: calc(100% - 140px);*/
}
.archive_item_icon_new {
	display: inline-block;
	color: #C00;
	font-size: 0.9em;
	font-weight: bold;
	margin-left: 0.3em
}
.archive_item_icon_new:before {
	content: "NEW"
}

.access_map{
    position:relative;
    width:100%;
    height:0;
    padding-top:75%;
}
.access_map iframe{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}
/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
	line-height: 1.6;
	word-wrap: break-word
}
.mcon a img:hover {
	opacity: 0.8;
	transition: all 0.3s ease
}
.mcon h2{
	background-color: #A13B42;
	border-radius: 8px;
	color: #FFF;
    font-size: 18px;
    margin: 20px 0 10px;
    padding: 10px 15px;
}
.mcon h3{
	border-bottom: 1px dotted #999;
	border-left: 5px solid #A13B42;
    font-size: 17px;
    margin: 20px 0 10px;
    padding: 10px;
}
.mcon h4{
    border-left: 5px solid #A13B42;
    font-size: 16px;
    margin: 20px 0 10px;
	padding: 2px 10px;
}
.mcon h5, .mcon h6 {
	margin-bottom: 2px;
	margin-top: 5px;
}
.mcon hr {
	border: none;
	border-top: 1px dotted #000
}
.mcon iframe {
	max-width: 100%
}
.mcon img {
	max-width: 100%;
	height: auto
}
.mcon ol {
	margin-top: 1em;
	margin-bottom: 0.5em
}
.mcon ol li {
	margin-left: 2em;
	margin-bottom: 0.5em
}
.mcon p {
	margin-bottom: 1em
}
.mcon ul {
	margin-top: 1em;
	margin-bottom: 0.5em
}
.mcon ul li {
	list-style-type: disc;
	margin-left: 1.5em;
	margin-bottom: 0.5em
}

