@media screen and (max-width: 768px) {
	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;
	}
	ul, li {
		list-style: none;
		margin: 0;
		padding: 0;
	}
	a {
		text-decoration: none;
	}
	p {
		margin: 0;
	}
	img {
		vertical-align: bottom;
	}
	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: #999;
		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
	---------------------------------------- */
	.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%;
		box-shadow: 0 2px 2px 0 #ccc;
		height: 50px;
		box-sizing: border-box;
	}
	.h_logo a {
		display: block;
		width: 50%;
		margin: 0 auto;
	}
	.h_logo img {
		max-height: 40px;
		margin: 0 auto;
	}
	/*ナビメニューのスタイルを指定*/
	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: #3f98d7;
		/*背景*/
		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 #fff;
	}
	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.9em;
		font-weight: normal;
		color: #fff;
		padding: 8px 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: 15px;
		top: 10px;
		width: 30px;
		height: 30px;
		cursor: pointer;
		z-index: 120;
	}
	.Toggle span {
		display: block;
		position: absolute;
		width: 30px;
		border-bottom: solid 2px #000;
		-webkit-transition: .35s ease-in-out;
		/*変化の速度を指定*/
		-moz-transition: .35s ease-in-out;
		/*変化の速度を指定*/
		transition: .35s ease-in-out;
		/*変化の速度を指定*/
	}
	.Toggle span:nth-child(1) {
		top: 7px;
	}
	.Toggle span:nth-child(2) {
		top: 16px;
	}
	.Toggle span:nth-child(3) {
		top: 25px;
	}
	/* 最初の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: #3f98d7;
		font-size: 15px;
		line-height: 28px;
		padding: 15px 2%;
		color: #ffffff;
		border-top: 1px solid #fff;
	}
	/* ----------------------------------------
	pan
	---------------------------------------- */
	.pan {
		display: block;
		background: #eee;
		margin-top: 22px;
	}
	.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;
	}
	.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: 15px;
		font-weight: bold;
		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;
	}
}
/* media screen fin */