@charset "utf-8";
/* CSS Document */

*{
	margin:0;
	padding:0;
}

body{
	/*font-size: 15px;*/
	font-size: 14px;
	color:#000;
    line-height: 1.5;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    background-color: #4aafe3;
}
/*ハンバーガーメニューを表示している時はスクロールさせない*/
body.scrolloff {
    width: 100%;
    height: 100%;
    position: fixed;
}

img{
	border:0;
	vertical-align:top;
	vertical-align:bottom;
}

a{
	overflow:hidden;
	outline:none;
	color:#36C;
	word-wrap:break-word;
}

.sp_hide{
	display: none;
}

.notoreg{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
}
.notomed{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}
.notobold{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}

/*----------------------------------------------------------*/
/*ヘッダー*/

#header_wrap{
	width: 100%;
	height: 71px;
	background-color: #fff;
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 10;
}
#header{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header h1{
    position: relative;
	width: calc( 100% - 71px );
    height: 100%;
	background-color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
	z-index: 2;
	padding-left: 30px;
}
#header h1 a{
	display: block;
    width: 75.26%;
	height: 100%;
	overflow: hidden;
	background-image:url(index/logo.png);
	background-repeat:no-repeat;
	background-position:left center;
	background-size: contain;
	text-indent:-9999px;
}
#header h1 a img{
    width: 100%;
    height: auto;
}
	
.header_txt, .link_privacy, .setouchilogo{
	display: none;
}

/*ここからメニュー*/
#g-nav{
    position: fixed;
    /*z-index: 999;*/
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    overscroll-behavior-y: none;
    background-color:#fff;
    top:0;
    right: -120%;
    transition: all 0.6s;
}

#g-nav.panelactive{
    right: 0;
}
#g-nav.panelactive #g-nav-list{
}
#g-nav.panelactive #g-nav-list::-webkit-scrollbar{
  display: none;
}

.openbtn4{
    position: relative;
    cursor: pointer;
    width: 71px;
    height: 100%;
    z-index: 1000;
    background-color: #4aafe3;
}
.openbtn4::before{
    content: 'MENU';
	display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
	color: #fff;
	text-align: center;
	position: absolute;
	bottom: 12px;
	left: 0;
	right: 0;
	margin: auto;
}
.openbtn4.active::before{
    content: '閉じる';
}

.openbtn4 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
	left: 0;
	right: 0;
	margin: auto;
    width: 31px;
    height: 2px;
    border-radius: 5px;
    background: #fff;
}
.openbtn4 span:nth-of-type(1) {
	top: 20px; 
}

.openbtn4 span:nth-of-type(2) {
	top: 29px;
}

/*activeクラスが付与したら線が回転して×に変更*/
.openbtn4.active span:nth-of-type(1) {
	top: 17px; 
    transform: translateY(6px) rotate(-45deg);
    width: 31px;
}
.openbtn4.active span:nth-of-type(2){
	top: 29px;
    transform: translateY(-6px) rotate(45deg);
    width: 31px;
}

/*ハンバーガーメニュー中身*/
#header_wrap #g-nav ul{
    width: 100%;
    margin: 76px auto 150px;
	list-style-type: none;
}
#header_wrap #g-nav ul li{
    position: relative;
}
#header_wrap #g-nav ul li a{
    height: 60px;
    display: flex;
	justify-content: center;
    align-items: center;
    font-size: 17px;
    color: #0084b5;
	text-decoration: none;
    position: relative;
    border-bottom: 1px solid #b9ddea;
    background-color: #fff;
}

/*----------------------------------------------------------*/
/*コンテンツ*/

#contents{
	/*
	background-image:url(common/bg_sp.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% auto;
	background-color: #45AEE6;
	*/
	/**/
	width: 100vw;
	margin: 0px auto;
	overflow-x: visible;
	position: relative;
}
#contents::before {
	content: "";
	position: fixed;
	bottom: 0;
	left: 0;
	/*
	width: 100%;
	height: 100%;
	*/
	width: 100lvw;
	height: 100lvh;
	background-image:url(common/bg_sp.jpg);
	background-size: 100% 100%;
	background-position: center;
	background-color: #4aafe3;
	z-index: -1;
}
#contents.top{
	background-image:url(common/bg_sp.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% auto;
	background-color: #45AEE6;
}
#contents.top::before{
	display: none;
}

#breadcrumb{
	display: none;
}

#left_col h2#page_title{
	width: 100%;
	height: 80px;
	background-color: #fff;
	position: relative;
	display: flex;
	align-items: center;
}
#left_col h2#page_title::before{
	content: '';
	display: block;
	width: calc( 100% - 2px );
	height: calc( 100% - 2px );
	background-color: #44A5C9;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
#left_col h2#page_title::after{
	content: '';
	display: block;
	background: url("common/icon_h2.svg") 0 0 / contain no-repeat;
	width: 9px;
	height: 19px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 25px;
	margin: auto;
}
#left_col h2#page_title p{
    font-family: 'Noto Sans JP', sans-serif;
	font-size: 20px;
    font-weight: 700;
	color: #fff;
	z-index: 2;
	padding-left: 50px;
}

/*----------------------------------------------------------*/
/*メインイメージ*/

#mainimage{
	width:1030px;
	margin:0px auto;
	overflow:hidden;
	text-align:center;
}

/*----------------------------------------------------------*/
/*左カラム*/

#left_col{
	/*padding-bottom: 40px;*/
}

/*コンテンツ*/
#page_contents_wrap{
	padding: 25px 0;
}

#page_contents_wrap #ez-toc-container{
	display: none;
}

#page_contents{
	width: 83.33%;/*600*/
	margin: 0px auto;
	position: relative;
}

#page_contents h3{
	background-color:#8FD8F4;
	background-image:url(common/icon_sub.png);
	background-repeat:no-repeat;
	background-position:11px center;
    font-family: 'Noto Sans JP', sans-serif;
	font-size:14px;
	line-height:20px;
	padding:10px 0px 10px 30px;
	margin:20px 0px;
	border:1px solid #FFF;
	box-sizing: border-box;
}

#page_contents h4{
	border-bottom:2px solid #0083B8;
	width: 100%;
	margin:15px auto;
	overflow:hidden;
	font-weight:bold;
	color:#0084B3;
	text-indent:1em;
	padding:6px 0px;
}

#page_contents h5{
	width: 100%;
	margin: 0 auto 15px;
	overflow:hidden;
	font-size: 13px;
	font-weight:bold;
	color: #0081BA;	
}

/*----------------------------------------------------------*/
/*右カラム*/

#right_col{
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	background-color: #4aafe3;
	padding: 30px 0 40px;
}

/*サブメニュー*/
#submenu_ol{
	width: calc( 83.33% - 40px );
	margin: 0 auto 25px;
	background-color: rgba(255,255,255,0.80);
	overflow:hidden;
	padding: 20px;
}
#submenu_ol dl{
	width:　100%;
	margin: 0px auto;
	overflow:hidden;
}
#submenu_ol dl dt{
	margin-bottom: 15px;
    font-family: 'Noto Sans JP', sans-serif;
	font-size:16px;
	font-weight:bold;
	color:#008BBD;
	background-image:url(common/icon_drop.png);
	background-repeat:no-repeat;
	background-position:left center;
	line-height:20px;
	padding-left:16px;
}
#submenu_ol dl dd{
	overflow:hidden;
	display:block;
	margin-top:10px;
}
#submenu_ol dl dd ul{
	overflow:hidden;
}
#submenu_ol dl dd ul li{
	list-style-type:none;
	border-bottom:1px dotted #008BBD;
	line-height:110%;
	padding:0.75em 0px;
	text-indent:0.5em;
}
#submenu_ol dl dd ul li a{
	color:#000;
	text-decoration:none;
	font-size:14px;

}

/*会員ログイン*/
#right_col .ol_login{
	display: none;
}

/*バナー*/
#right_col ul.r_bn{
	width: 55.56%;/*400*/
	margin: 0px auto;
	list-style-type:none;
	overflow:hidden;
}
#right_col ul.r_bn li:not(:first-child){
	margin-top: 10px;
}
#right_col ul.r_bn li img{
	width: 100%;
	height: auto;
}

/*アーカイブ*/
#right_col .archive-accordion{
	display: flex;
	flex-direction: column;
	gap: 10px 0;
}
#right_col .accordion-content {
  display: none;
  padding: 0.5em 1em;
}
#right_col .accordion-content.open {
  display: block;
}
#right_col .accordion-toggle {
	display: block;
	width: 100%;
	text-align: left;
	padding: 0.5em 2em 0.5em 0.5em;
	cursor: pointer;
	background: #2DBBFA;
	color: #fff;
	border: none;
	position: relative;	
	
}
#right_col .accordion-toggle.open {
}
/* デフォルトは＋ */
#right_col .accordion-toggle::after {
  content: "+";
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
  font-size: 1.2em;
  color: #fff;
}

/* 開いたときは−に変更 */
#right_col .accordion-toggle.open::after {
  content: "−";
}

/*----------------------------------------------------------*/
#footer_wrap{
	width:100%;
	margin:0px auto;
	background-color: #2196ca;
}
#footer_wrap > .inner{
	padding: 34px 0 0;
	color: #fff;
	text-align: center;
}
#footer_wrap .info .address{
	margin: 20px auto 0;
	font-size: 13px;
}
#footer_wrap .info .address > a{
	text-decoration: none;
	color: #fff;
}
#footer_wrap .links{
	margin: 25px auto 0;
}
#footer_wrap .links > a{
	color: #fff;
}

#footer_wrap .banneres{
	width: 47.36%;/*341*/
	margin: 44px auto 0;
}
#footer_wrap .banneres a img{
	width: 100%;
	height: auto;
}


#copy_wrap{
	width:100%;
	margin: 0px auto;
	background-color: #2196ca;
}
#copy{
	width: 100%;
	margin: 0px auto;
	padding: 34px 0 34px;
	font-size: 12px;
	color:#FFF;
	text-align:center;
}

/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
/*----------------------------------------------------------*/
