body {
	position: relative;
	margin: 0;
	padding: 0;
	color: #111;
	font-size: 14px;
	line-height: 22px;
	font-weight: normal;
	font-family: 'Noto Sans JP', "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.sp_off {
	display: none !important;
}
img.of_js {
	object-fit: cover;
	font-family: 'object-fit: cover;';
}
@font-face {
	font-family: 'Noto Sans JP';
	font-style: normal;
	font-weight: 400;
	src: local("Noto Sans CJK JP Regular"),
		url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff2) format('woff2'),
		url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff) format('woff'),
		url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.otf) format('opentype');
}
/* nomal */
@font-face {
	font-family: "Century Gothic";
	src: url('/channel_setting/font/GOTHIC_0.woff2') format('woff'),
		url('/channel_setting/font/GOTHIC_0.TTF') format('truetype');
	font-weight: normal;
	font-style: normal;
}
/* bold */
@font-face {
	font-family: "Century Gothic";
	src: url('/channel_setting/font/GOTHICB_0.woff2') format('woff'),
		url('/channel_setting/font/GOTHICB_0.TTF') format('truetype');
	font-weight: bold;
	font-style: normal;
}
h1 {
	width: 100%;
	text-align: center;
	color: #fff;
	font-size: 10px;
	line-height: 16px;
	padding: 5px 2px 2px 2px;
	z-index: 11;
	background: #46934b;
	position: absolute;
	top: 23px;
	left: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
i.fa-solid.fa-arrow-up-right-from-square {
    color: #bbb;
}
/* ----------------------------------------
	header
	---------------------------------------- */
	.h_wrap {
		width: 100%;
		height: 50px;
		text-align: center;
	}
	.header {}
	.h_logo {
		padding: 5px 0;
		z-index: 100;
		background-color: #ffffff;
		position: fixed;
		width: 100%;
		height: 50px;
		box-sizing: border-box;
		top: 0;
	}
	.h_logo a {
		display: block;
		width: 95%;
		margin: 0 auto;
		display: flex;
		align-items: flex-end;
	}
	.h_logo{
		display: flex;
		align-items: center;
	}
	.h_logo img:first-child{
		padding-right: 10px;
		width: 170px;
	}
	.h_logo img:nth-child(2){
		padding-left: 10px;
		border-left: 1px solid #eeeeee;
		width: 80px;
	}
	/*ナビメニューのスタイルを指定*/
	.acd-label {
		display: block;
		padding: 8px 2%;
		font-weight: bold;
		background: #46934b;
		color: #fff;
		font-size: 12px;
		text-align: left;
	}
	nav.NavMenu {
		position: fixed;
		/*表示位置を固定*/
		z-index: 20;
		/*重ね順を変更*/
		top: 50px;
		/*表示位置を指定*/
		left: 0;
		/*表示位置を指定*/
		background: #fff;
		/*背景を白にする*/
		color: #000;
		/*文字色を黒にする*/
		text-align: center;
		/*テキストを中央揃え*/
		width: 100%;
		/*全幅表示*/
		transform: translateY(-100%);
		/*ナビを上に隠す*/
		transition: all 0.6s;
		/*アニメーションの時間を指定*/
	}
	nav.NavMenu ul.menu_list {
		background: #f5f5f5;
		width: 100%;
		margin: 0 auto;
		padding: 0;
	}
	nav.NavMenu ul.menu_list li {
		font-size: 1.1em;
		list-style-type: none;
		padding: 0;
		width: 100%;
		border-bottom: 1px solid #ddd;
	}
	nav.NavMenu ul.menu_list li:last-child {
		padding-bottom: 0;
		border-bottom: none;
		/*最後のメニュー項目のみ下線を消す*/
	}
	nav.NavMenu ul.menu_list li a {
		display: block;
		font-size: 0.8em;
		font-weight: normal;
		color: #555;
		padding: 10px 0;
		text-decoration: none;
		text-align: left;
		text-indent: 1em;
		line-height: 2em;
	}
	nav.NavMenu ul.menu_list li a::after {
		content: '\f105';
		font-family: 'Font Awesome 5 Free';
		font-weight: 900;
		float: right;
		margin: 0 2em 0 0;
	}
	nav.NavMenu.active {
		transform: translateY(0%);
		border-bottom: 1px solid #cccccc;
	}
	.Toggle {
		display: block;
		position: fixed;
		/* bodyに対しての絶対位置指定 */
		right: 10px;
		top: 10px;
		width: 30px;
		height: 30px;
		cursor: pointer;
		z-index: 120;
		background: #46934b;
	}
	.Toggle span {
		display: block;
		position: absolute;
		right: 0;
		left: 0;
		margin: auto;
		width: 14px;
		border-bottom: solid 1px #fff;
		-webkit-transition: .35s ease-in-out;
		/*変化の速度を指定*/
		-moz-transition: .35s ease-in-out;
		/*変化の速度を指定*/
		transition: .35s ease-in-out;
		/*変化の速度を指定*/
	}
	.Toggle span:nth-child(1) {
		top: 10px;
	}
	.Toggle span:nth-child(2) {
		top: 20px;
	}
	.Toggle span:nth-child(3) {
		top: 39px;
	}
	/* 最初のspanをマイナス45度に */
	.Toggle.active span:nth-child(1) {
		top: 16px;
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	/* 2番目と3番目のspanを45度に */
	.Toggle.active span:nth-child(2),
	.Toggle.active span:nth-child(3) {
		top: 16px;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		transform: rotate(45deg);
	}
.other_links {
	margin: 20px 10%;
	width: 80%;
}
.other_links li a {
	font-size: 14px;
	font-weight: bold;
	display: block;
	line-height: 24px;
	text-align: center;
	text-decoration: none;
	margin: 0 auto;
}
.other_links li.other_li_site a {
	border-radius: 4em;
	color: #111;
	background-color: #ccc;
	padding: 15px 10px;
}
.other_links li.other_li_inq {}
.other_links li.other_li_inq a {
	color: #3f98d7;
	border: 2px solid #3f98d7;
	padding: 10px;
	background: #daf0ff;
}
.other_links li:not(:last-child) {
	margin-bottom: 15px;
}
/* ----------------------------------------
	footer
	---------------------------------------- */
.f_wrap {
	width: 100%;
}
.f_wrap .foot {
	width: 100%;
	border-top: 5px solid #eee;
	border-bottom: 1px solid #eee;
	margin: 0 auto;
	overflow: hidden;
	text-align: center;
}
.f_menu {
	width: 100%;
}
.f_menu ul a {
	text-decoration: none;
	color: #111111;
	display: block;
}
.f_menu ul:first-child li a {
	font-size: 14px;
	margin-bottom: 0;
	padding: 15px 25px;
	border-bottom: none;
	border-top: 1px solid #dadada;
	position: relative;
	text-align: left;
}
.f_menu ul:first-child li a::before,
.f_menu ul:first-child li a::after {
	display: block;
	width: 18px;
	height: 18px;
	position: absolute;
	right: 15px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.f_menu ul:first-child li a::before {
	content: "";
	background: #3f98d7;
	border-radius: 100%;
}
.f_menu ul:first-child li a::after {
	content: '\f105';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	text-align: center;
	line-height: 18px;
	color: #ffffff;
}
.f_menu ul:nth-child(2) {
	display: flex;
	flex-wrap: wrap;
	border-top: 5px solid #eee;
	padding: 10px 0;
}
.f_menu ul:nth-child(2) li {
	margin: 0;
	padding: 0;
	font-size: 12px;
	border-bottom: none;
	width: 50%;
	box-sizing: border-box;
}
.f_menu ul:nth-child(2) li a {
	text-indent: 1em;
	text-align: left;
	line-height: 20px;
	padding: 8px 0;
}
.f_menu ul:nth-child(2) li a::before {
	content: "-";
	margin: 0 1em 0 0;
}
.f_wrap .f_tel {
	font-size: 2em;
	margin: 0;
}
.f_wrap .f_tel a {
	color: #000000;
	text-decoration: none
}
.f_wrap .log_wrap {
	width: 80%;
	margin: 30px auto 30px auto;
	clear: both;
	overflow: hidden;
}
.f_address {
	margin: 10px 0 0 0;
	padding: 30px 10%;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	width: 80%;
	margin: 0 auto;
	line-height: 2em;
}
.f_address p {
	margin: 20px 0 0 0;
}
.log_wrap p {
	margin: 10px 0 0 0;
	font-size: 0.8em;
}
.map_links {
	margin: 20px 0 0 0;
}
.map_links a {
	color: #3f98d7;
	font-size: 15px;
	font-weight: bold;
	border: 2px solid #3f98d7;
	display: block;
	text-decoration: none;
	text-align: center;
	line-height: 3em;
	background: #daf0ff;
}
.log_wrap .f_log {
	text-align: center;
	margin: 0 auto;
}
/* ----------------------------------------
	ch_program_tl
	---------------------------------------- */
.ch_program_tl {
	text-align: center;
	background-color: #46934b;
	font-size: 15px;
	line-height: 28px;
	padding: 15px 2%;
	color: #ffffff;
	border-top: 1px solid #fff;
	margin-top: 30px;
}
/* ----------------------------------------
	pan
	---------------------------------------- */
.pan {
	display: block;
	background: #eee;
	margin-top: 50px;
	position: relative;
}
.pan ul {
	color: #111;
	position: relative;
	padding: 3px 1%;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	white-space: nowrap;
	line-height: 17px;
	font-size: 11px;
}
.pan li {
	display: inline-block;
	font-size: 0.8em;
}
.pan li a {
	text-decoration: none;
	color: #111111;
}
.pan li::after {
	content: ">";
	margin: 0 15px;
}
.pan li:last-child {
	color: #3f98d7;
}
.pan li:last-child::after {
	content: "";
	margin: 0 15px;
}
/* ----------------------------------------
	group_all_topiclinks
	---------------------------------------- */
.group_all_topiclinks {
	width: 95%;
	margin: 40px auto 20px auto;
	overflow: hidden;
	padding: 20px;
	align-items: center;
	box-sizing: border-box;
	background: #eee;
}
.group_all_topiclinks ul {
	width: 100%;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.group_all_topiclinks li {
	margin: 3px;
}
.group_all_topiclinks li img {
	max-width: 90%;
}
.group_all_topiclinks_tl {
	text-align: center;
	margin-bottom: 10px;
	font-size: 15px;
}
.group_all_topiclinks li a {
	border: 1px solid #3f98d7;
	background-color: #fff;
	padding: 3px 10px;
	display: block;
	color: #3f98d7;
	border-radius: 5px;
}
/* ----------------------------------------
	ch_grouppaging
	---------------------------------------- */
.group_paging {
	width: 96%;
	margin: 0 auto;
	padding: 10px 0;
	font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
}
.group_paging ul {
	display: flex;
	justify-content: center;
}
.group_paging li {
	padding: 1px;
	line-height: 30px;
}
.group_paging a, .group_paging span {
	border-radius: 50%;
	border: 1px solid #3f98d7;
	color: #3f98d7;
	background: #fff;
	width: 38px;
	height: 38px;
	box-sizing: border-box;
	display: block;
	text-align: center;
	font-size: 21px;
	font-weight: normal;
	line-height: 35px;
}
.group_paging a {
	text-decoration: none;
}
.group_paging a:hover, .group_paging span {
	background: #3f98d7;
	color: #fff;
}
.group_paging p {
	font-size: 16px;
	font-weight: bold;
	line-height: 35px;
}
/* ----------------------------------------
	ch_link
	---------------------------------------- */
.ch_link {
	width: 98%;
	margin: 40px auto 20px auto;
	border: 1px solid #cccccc;
	box-shadow: 0px 0px 0px 5px #eeeeee inset;
	overflow: hidden;
	padding: 20px;
	align-items: center;
	box-sizing: border-box;
}
.ch_link ul {
	width: 80%;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
}
.ch_link li {
	margin: 0 10px 10px 0;
}
.ch_link li img {
	max-width: 90%;
}
.ch_link_tl {
	text-align: center;
	margin-bottom: 10px;
}
/* ----------------------------------------
	404 notfound
	---------------------------------------- */
.notfound {
	margin: 0 3%;
	padding-bottom: 30px;
}
.notfound_img {
	text-align: center;
}
.notfound_btn {
	width: 90%;
	margin: 0 auto;
}
.notfound_btn a {
	display: block;
	border: 2px solid #111;
	background: #111;
	color: #fff;
	text-align: center;
	font-size: 15px;
	line-height: 50px;
}
/* ----------------------------------------
	社内用ch
	---------------------------------------- */
.shanai_wrap h1 {
	width: 100%;
	text-align: center;
	color: #eee;
	font-size: 10px;
	line-height: 16px;
	padding: 5px 2px 2px 2px;
	z-index: 11;
	background: #103769;
	position: absolute;
	top: 50px;
	left: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
/*header start*/
.shanai_wrap .h_wrap {
	width: 100%;
	height: 50px;
	text-align: center;
	position: relative;
	z-index: 50;
}
.shanai_wrap .header {}
.shanai_wrap .h_logo {
	padding: 5px 0;
	z-index: 100;
	background-color: #ffffff;
	position: fixed;
	width: 100%;
	box-shadow: 0 2px 2px 0 #ccc;
	height: 50px;
	box-sizing: border-box;
}
.shanai_wrap .h_logo a {
	width: 50%;
	height: 40px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.shanai_wrap .h_logo img {
	width: 70%;
	display: block;
}
.shanai_wrap .h_logo span {
	font-size: 3vw;
	line-height: 150%;
	display: block;
	color: #103769;
	border: 1px solid #103769;
	padding: 1% 3%;
}
/*header end*/

.shanai_wrap .f_wrap .log_wrap {
	width: 100%;
	padding: 30px 0;
	clear: both;
	overflow: hidden;
	border-top: 1px solid #ccc;
	margin: 0;
}
.shanai_wrap .ch_program_tl {
	display: flex;
	align-items: center;
	border-bottom: 1px solid #111;
	font-size: 15px;
	line-height: 28px;
	margin: 0 3%;
	margin-top: 8px;
	margin-bottom: 15px;
	padding-bottom: 5px;
	text-align: left;
	background: transparent;
	color: #111;
	padding: 0;
	border-top: none;
}
.shanai_wrap .ch_program_tl img {
	margin-right: 10px;
	width: 20px;
}
.list_search {
	margin: 0 3%;
	background: #f9f7f1;
	padding: 20px 5%;
	margin-bottom: 30px;
}
.list_search_box {}
.list_search_box p {
	font-size: 14px;
	line-height: 22px;
	display: block;
	margin-bottom: 10px;
}
.detail04_btm_tag {
	border-bottom: 1px solid #111;
	padding-bottom: 10px;
	margin-bottom: 15px;
}
.detail04_btm_tag span {
	font-size: 14px;
	line-height: 22px;
	display: block;
	margin-bottom: 5px;
}
.detail04_btm_tag ul {
	display: flex;
	flex-wrap: wrap;
}
.detail04_btm_tag li {
	cursor: pointer;
	display: block;
	margin-right: 4px;
	margin-bottom: 4px;
}
.detail04_btm_tag li a {
	display: block;
	background: #103769;
	border-radius: 3px;
	padding: 4px 9px;
	position: relative;
	z-index: 10;
	color: #fff;
	font-size: 11px;
	line-height: 16px;
}
.cms_keysearch_form {
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.cms_keysearch_form input {
	border: 1px solid #111;
	background: #fff;
	border-radius: 5px;
	color: #111;
	font-size: 16px;
	line-height: 49px;
	height: 50px;
	padding: 0 4%;
	width: 80%;
	flex-shrink: 0;
	box-sizing: border-box;
	font-family: "Noto Sans JP", メイリオ, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.cms_keysearch_form placeholder {
	color: #999;
}
.cms_keysearch_form button {
	width: 30%;
	background: #111;
	border-radius: 5px;
	text-align: center;
	display: block;
	padding: 13px 2%;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
	font-size: 20px;
	line-height: 24px;
	color: #fff;
	margin-left: 2%;
}

/* footer */
footer{
	background: #fff;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Helvetica Neue", Helvetica, Arial, sans-serif;
	letter-spacing: 1px;
	border-top: 2px solid #46934b;
        margin-top: 50px;
}
.f_inner{
	width: 90%;
        margin: 0 auto;
        padding: 30px 0 10px;
}
.f_l {
	margin-bottom: 30px;
}
.f_flex{

}
.f_l_logo{
	display: flex;
        align-items: center;
        margin-bottom: 30px;
}
.f_l_logo img:first-child{
	padding-right: 10px;
	width: 170px;
}
.f_l_logo img:nth-child(2){
	padding-left: 10px;
	border-left: 1px solid #eeeeee;
	width: 80px;
}
.f_l ul li a{
	text-align: center;
        padding: 20px 0;
        box-sizing: border-box;
        background: #f5f5f5;
        font-size: 14px;
        font-weight: 600;
        color: #46934b;
        display: block;
        overflow: hidden;
        letter-spacing: 0;
}
.f_l ul li a .inner-text {
	position: relative;
	z-index: 2; 
	display: block;
}
.f_l ul li a i{
	color: #222;
    position: absolute;
    top: 9px;
    right: 7px;
    z-index: 2;
}
.f_l ul li:not(:last-of-type){
	margin-bottom: 10px;
}
.f_privacy{
	font-size: 8px;
	font-weight: 600;
	padding-top: 20px;
	letter-spacing: 1px;
	color: #222;
	display: block;
}
.f_r_flex ul{
	padding-bottom: 30px;
}
.f_r_sub{
	font-size: 14px;
	font-weight: bold;
	border-bottom: 1px solid #000;
	padding-bottom: 10px;
	margin-bottom: 10px;
}
.f_r_flex li a{
	font-size: 12px;
        color: #333;
        line-height: normal;
        position: relative;
        text-decoration: none;
        padding: 15px 4%;
        display: block;
        border-bottom: 1px solid #eee;
}
.f_r_flex li a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #46934b;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.3s ease-out;
}
.f_r_flex li a:hover::after {
	transform: scaleX(1);
}
small{
	font-size: 8px;
	padding-top: 20px;
	display: block;
	text-align: center;
}


.sp_nav_logo{
	width: 180px;
	margin: 0 auto;
	padding-bottom: 10px;
}


.detail_01{
	padding-top: 20px;
}
.acd-check{
	display: none;
}