body {
	width: 100%;
	margin: 0;
	padding: 0;
	color: #111;
	font-size: 14px;
	line-height: 22px;
	font-weight: normal;
	font-family: 'Noto Sans JP', "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	position: relative;
	min-height: 100vh;
}
.pc_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;
}
.century {
	font-family: "Century Gothic", Futura, "CenturyGothic", sans-serif;
}

h1 {
	font-size: 11px;
	line-height: 20px;
	height: 20px;
	color: #111;
	width: 1200px;
	box-sizing: border-box;
	display: block;
	position: absolute;
	top: 0;
	left: 1vw;
	z-index: 9999;
}
i.fa-solid.fa-arrow-up-right-from-square {
    color: #bbb;
}
/* ----------------------------------------
header
---------------------------------------- */
header>div {
	width: 100%;
	margin: 0 auto;
}
header {
	width: 100%;
	background: rgb(255 255 255 / 90%);
	padding: 0 0 0 1vw;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
	font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "HiraKakuProN-W3", sans-serif;
	height: 6vw;
	min-height: 70px;
	position: fixed;
	top: 0;
	z-index: 999;
	box-shadow: 0px -8px 15px #000;
}
header::before {
	width: 60%;
	height: 2px;
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	background: #46934b;
}

.h_logo a{
	display: flex;
	align-items: flex-end;
	width: 15vw;
}
.h_logo img:first-child {
	padding-right: .5vw;
	width: 15vw;
	min-width: 200px;
}
.h_logo img:nth-child(2) {
	padding-left: .5vw;
	border-left: 1px solid #eeeeee;
	width: 8vw;
	min-width: 100px;
}

.h_right {
	display: flex;
	justify-content: right;
	gap: clamp(180px, 10vw, 12vw);
	align-items: center;
}

.h_menu_li {
	display: flex;
	justify-content: center;
	gap: clamp(10px, 1.5vw, 2vw);
}
.h_menu_mega {
	position: relative;
	flex-shrink: 0;
}
.h_menu_li li {
	flex-shrink: 0;
}
.h_menu_li a {
	font-size: 15px;
	color: #222222;
	position: relative;
	text-decoration: none;
	display: flex; /* ★ テキストとアイコンを横並びにするため追加 */
	align-items: center; /* ★ 垂直中央揃え */
	padding: 10px 0;
}

/* 共通の下線設定 (::afterを使用) */
.h_menu_li a::after {
	content: '';
	position: absolute;
	bottom: 8px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #46934b;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.3s ease-out;
}

/* ★ 変更：a:hover ではなく li:hover > a に。メガメニュー中も下線を維持 */
.h_menu_li li:hover > a::after {
	transform: scaleX(1);
}

/* ★ 追加：メガメニュー親要素（当社について）は下線を出さない */
.h_menu_mega > a::after {
	display: none;
}

/* ----------------------------------------
	★ 変更：プラスアイコンを ::before に変更（下線との競合回避）
   ---------------------------------------- */
.h_menu_mega > a::before {
	content: "";
	order: 2; /* ★ テキストの後にアイコンを配置 */
	display: inline-block;
	width: 16px;
	height: 16px;
	background-color: #46934b;
	margin-left: 8px;
	position: relative;
	background-image: 
		linear-gradient(#fff, #fff),
		linear-gradient(#fff, #fff);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 2px 10px, 10px 2px; /* ★ 線を少し太く調整 */
	transition: transform 0.4s ease;
}

/* ★ ターゲットを before に変更 */
.h_menu_mega:hover > a::before {
	transform: rotate(90deg);
}

/* メガメニューの制御 */
.h_menu_mega:hover .h_megamenu {
	max-height: 500px;
	opacity: 1;
	visibility: visible; /* ★ 制御追加 */
}

.h_megamenu {
	max-height: 0;
	opacity: 0;
	visibility: hidden; /* ★ 制御追加 */
	overflow: hidden;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	transition: all .3s ease-in-out;
	z-index: 999;
	padding-top: 10px; /* ★ 変更：marginではなくpaddingで隙間を埋める（マウスが外れないように） */
}

.h_mega_li {
	border: 2px solid #000;
	background: #fff;
	overflow: hidden;
	display: block;
}

.h_mega_li li a {
	width: 230px;
	height: 55px;
	display: grid;
	place-content: center;
	border-bottom: 2px solid #333;
	color: #333;
	transition: all 0.3s;
	font-size: 14px;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.h_mega_li li a>i {
	margin-left: 5px;
}

/* ★ メガメニュー内の要素には下線やプラス記号を適用しない */
.h_mega_li li a::after,
.h_mega_li li a::before {
	display: none;
}

.h_mega_li li:last-child a {
	border-bottom: none;
}

.h_mega_li li a:hover {
	background: #46934b;
	color: #fff;
}

/* エントリーボタン */
.h_entry_btn {
	width: 11vw;
	min-width: 130px;
	height: 6vw;
	min-height: 70px;
font-size: 15px;
	font-weight: bold;
	letter-spacing: 3px;
	background: #46934b;
	color: #fff;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 1vw;
	overflow: hidden;
	z-index: 1;
	position: relative;
	border: 2px solid #46934b;
	box-sizing: border-box;
	text-decoration: none; /* ★ 追加 */
}

/* ★ アイコンとテキストに transition を追加（色の変化を滑らかに） */
.h_entry_btn i,
.h_entry_btn .inner-text {
	position: relative;
	z-index: 2;
	transition: color 0.7s cubic-bezier(.19, 1, .22, 1);
}

.h_entry_btn:hover .inner-text,
.h_entry_btn:hover i {
	color: #46934b;
}

.h_entry_btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .7s cubic-bezier(.19, 1, .22, 1);
	z-index: 1; 
}
.h_entry_btn:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}


/*footer start*/
footer {
	background: #fff;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Helvetica Neue", Helvetica, Arial, sans-serif;
	letter-spacing: 1px;
	width: 100%;
	overflow: hidden;
	padding: 80px 0 30px;
	border-top: 2px solid #46934b;
}
footer>div {
	width: 1200px;
	margin: 0 auto;
}
.f_inner{
	width: 1100px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.f_l_logo{
	display: flex;
	align-items: flex-end;
}
.f_l_logo img:first-child{
	padding-right: 20px;
}
.f_l_logo img:nth-child(2){
	padding-left: 20px;
	border-left: 1px solid #eeeeee;
}
.f_l ul{
	padding: 30px 0 0 10px !important;
}
.f_l ul li a{
	padding: 15px 0 15px 20px;
	box-sizing: border-box;
	background: #f6f6f6;
	font-size: 13px;
	font-weight: 600;
	color: #46934b;
	display: block;
	width: 300px;
	position: relative;
	line-height: 1;
	overflow: hidden; 
	z-index: 1;
}
.f_l ul li a:hover{
	color: #fff;
}
.f_l ul li a:hover i{
	color: #fff;
}
.f_l ul li a .inner-text {
	position: relative;
	z-index: 2; 
	display: block;
}
.f_l ul li a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #46934b;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .7s cubic-bezier(.19, 1, .22, 1);
	z-index: 1; 
}
.f_l ul li a:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}
.f_l ul li a i{
	color: #222;
	position: absolute;
	top: 15px;
	right: 20px;
	z-index: 2;
	transition: all .3s ease-in-out;
}
.f_l ul li:not(:last-of-type){
	margin-bottom: 10px;
}
.f_privacy{
	font-size: 12px;
	font-weight: 500;
	margin-top: 60px;
	letter-spacing: 1px;
	color: #222;
	display: block;
	transition: background 0.3s, color 0.3s;
}

.f_privacy:hover {
	color: #46934b; /* 少し薄いグレーに */
}
.f_r_flex{
	display: flex;
	gap: 60px;
	align-items: flex-start;
}
.f_r_sub{
	font-size: 12px;
	font-weight: bold;
}
.f_r_flex li a{
	font-size: 12px;
	color: #222;
	line-height: 1;
	position: relative;
	text-decoration: none;
}

.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);
}
.f_r_flex li:not(:last-of-type){
	margin-bottom: 15px;
}
.f_r small{
	font-size: 12px;
    padding-top: 60px;
    display: block;
}

/*footer end*/


/* ----------------------------------------
 ch_program_tl
 ---------------------------------------- */
.ch_program_tl {
	height: 150px;
	background-color: #46934b;
	text-align: center;
	font-size: 24px;
	line-height: 150px;
	color: #ffffff;
}
/* ----------------------------------------
 pan
 ---------------------------------------- */
.pan {
	display: block;
	padding: 7vw 0 0 1vw;
	font-size: 12px;
	color: #222;
	position: absolute;
	z-index: 99;
}
.pan ul {
	overflow: hidden;
	width: 1200px;
	margin: 0 auto;
}
.pan li {
	float: left;
	font-size: 12px;
	line-height: 17px;
}
.pan li p {
	display: inline-block;
}
.pan li a {
	text-decoration: none;
	color: #222;
}
.pan li a:hover {
	color: #999;
}
.pan li::after {
	content: ">";
	margin: 0 5px;
	color: #222;
}
/* .pan li:last-child {
	color: #3f98d7;
} */
.pan li:last-child::after {
	content: "";
	margin: 0 15px;
}
/* ----------------------------------------
 ch_link
 ---------------------------------------- */
.ch_link {
	width: 1100px;
	margin: 40px auto 0 auto;
	border: 1px solid #cccccc;
	box-shadow: 0px 0px 0px 5px #eeeeee inset;
	overflow: hidden;
	padding: 20px;
	display: flex;
	align-items: center;
	box-sizing: border-box;
}
.ch_link ul {
	width: 70%;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
}
.ch_link li {
	margin: 0 10px 10px 0;
}
.ch_link li:nth-child(n + 3) {
	margin: 0 10px 0 0;
}
.ch_link_tl {
	width: 30%;
	text-align: center;
}
.ch_link li a:hover {
	display: block;
	opacity: 0.6;
}
/* ----------------------------------------
 ch_grouppaging
 ---------------------------------------- */
.group_paging {
	padding: 20px 0;
	font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
}
.group_paging ul {
	display: flex;
	justify-content: center;
}
.group_paging li {
	padding: 5px;
	line-height: 30px;
}
.group_paging a,
.group_paging span {
	border-radius: 50%;
	border: 1px solid #3f98d7;
	color: #3f98d7;
	background: #fff;
	width: 40px;
	height: 40px;
	box-sizing: border-box;
	display: block;
	text-align: center;
	font-size: 23px;
	font-weight: normal;
	line-height: 37px;
}
.group_paging a {
	text-decoration: none
}
.group_paging a:hover,
.group_paging span {
	background: #3f98d7;
	color: #fff;
}
.group_paging p {
	font-size: 20px;
	font-weight: bold;
	line-height: 28px;
}
/* ----------------------------------------
	group_all_topiclinks
---------------------------------------- */
.group_all_topiclinks {
	width: 1100px;
	margin: 40px auto;
	overflow: hidden;
	padding: 20px;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	background: #eee;
}
.group_all_topiclinks ul {
	width: 70%;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
}
.group_all_topiclinks li {
	margin: 3px;
}
.group_all_topiclinks_tl {
	width: 30%;
	text-align: center;
	padding: 0 24px 0 0;
	box-sizing: border-box;
	font-size: 15px;
}
.group_all_topiclinks li a {
	display: block;
	border: 1px solid #3f98d7;
	background-color: #FFF;
	padding: 5px 10px;
	color: #3f98d7;
	font-size: 14px;
	border-radius: 5px;
}
.group_all_topiclinks li a:hover {
	background-color: #3f98d7;
	color: #fff;
}
/* ----------------------------------------
404 notfound
 ---------------------------------------- */
.notfound {
	width: 1100px;
	margin: 0 auto;
	padding-bottom: 50px;
}
.notfound_img {
	text-align: center;
}
.notfound_btn {
	width: 300px;
	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;
}
.notfound_btn a:hover {
	background: #ccc;
	color: #111;
}

/* ----------------------------------------
	社内用ch
---------------------------------------- */
.shanai_wrap {
	padding-bottom: 200px;
}
.shanai_wrap h1 {
	position: relative;
	width: auto;
	height: auto;
	top: auto;
	left: auto;
	transform: none;
}
/*header start*/
.shanai_wrap header {
	width: 100%;
	background: #103769;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
	/*mix-blend-mode: multiply;*/
	position: fixed;
	top: 0;
	z-index: 100;
	padding: 0;
}
.shanai_wrap .h_wrap {
	width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.shanai_wrap .h_logo {
	display: flex;
	align-items: center;
}
.shanai_wrap .h_logo a {
	display: block;
	width: 200px;
	height: 60px;
	background: #cadce5;
	text-align: center;
}
.shanai_wrap .h_logo a:hover {
	opacity: 0.8;
}
.shanai_wrap .h_logo img {
	padding: 14px 0;
}
.shanai_wrap .h_logo span {
	font-size: 16px;
	line-height: 26px;
	display: block;
	width: 75px;
	color: #fff;
	border: 1px solid #fff;
	text-align: center;
	margin-left: 20px;
}
.shanai_wrap .h_link {}
.shanai_wrap .h_link a {
	display: flex;
	align-items: center;
	color: #fff;
}
.shanai_wrap .h_link a:hover {
	opacity: 0.7;
}
.shanai_wrap .h_link img {
	margin-right: 8px;
	margin-bottom: 2px;
}
/*header end*/
/*side start*/
.side {
	width: 300px;
	padding-top: 60px;
	box-sizing: border-box;
	height: 100%;
	position: fixed;
	left: 0;
	z-index: 90;
	background: #fff;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}
.side_ttl {
	background: #f9f7f1;
	text-align: center;
	font-size: 17px;
	line-height: 70px;
}
#global-nav ul {
	list-style: none;
	margin-left: 0;
	border-top: 1px solid #111;
}
#global-nav>ul>li {
	position: relative;
	border-bottom: 1px solid #111;
}
#global-nav a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 26px 18px;
	color: #111;
	font-size: 17px;
	line-height: 15px;
	-moz-transition: background-color .3s linear;
	-webkit-transition: background-color .3s linear;
	transition: background-color .3s linear;
}
#global-nav .sub-menu.is-active>a,
#global-nav a:hover {
	color: #008dd0;
	background: #e6f4fb;
}
#global-nav a span {
	display: flex;
	align-items: center;
}
#global-nav a span img {
	margin-right: 10px;
}
#global-nav .sub-menu-nav a,
#global-nav .sub-menu:hover .sub-menu-nav {
	width: 230px;
}
/* sub-menu */
#global-nav .sub-menu-nav {
	position: fixed;
	background: #e6f4fb;
	color: #fff;
	top: 0;
	z-index: 1;
	padding-top: 86px;
	margin-left: 300px;
	width: 0;
	height: 100%;
	overflow: hidden;
	-moz-transition: width .2s ease-out;
	-webkit-transition: width .2s ease-out;
	transition: width .2s ease-out;
}
#global-nav .sub-menu.is-active>a:after,
#global-nav .sub-menu>a:hover:after {
	border-color: #fff;
}
#global-nav .sub-menu-nav a {
	color: #008dd0;
	font-size: 14px;
}
#global-nav .sub-menu-nav a:hover {
	color: #033560;
	background: #fff;
}
/* /sub-menu */
.side_link {
	width: 90%;
	margin: 0 auto;
	margin-top: 20px;
}
.side_link a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: 2px solid #008dd0;
	border-radius: 3px;
	background: #e6f4fb;
	color: #008dd0;
	font-size: 15px;
	line-height: 23px;
	padding: 15px;
}
.side_link a:hover {
	background: #008dd0;
	color: #fff;
}
/*side end*/
/*footer start*/
.shanai_wrap footer {
	width: 100%;
	background-color: #103769;
	overflow: hidden;
	height: 200px;
	box-sizing: border-box;
	z-index: 100;
	position: absolute;
	bottom: 0;
	padding: 0;
}
.shanai_wrap .f_wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 171px;
}
.shanai_wrap .f_wrap a {
	display: block;
}
.shanai_wrap .f_wrap a:hover {
	opacity: 0.7;
}
.shanai_wrap .f_wrap img {}
.shanai_wrap .f_wrap span {
	font-size: 16px;
	line-height: 26px;
	display: block;
	width: 75px;
	color: #fff;
	border: 1px solid #fff;
	text-align: center;
	margin-left: 20px;
}
.shanai_wrap footer small {
	text-align: center;
	display: block;
	border-top: 1px solid #111;
	color: #fff;
	font-size: 13px;
	line-height: 26px;
	font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
}
/*footer end*/
.shanai_wrap .pan {
	width: auto;
	background: transparent;
}
.shanai_wrap .pan ul {
	width: auto;
}
.shanai_wrap .ch_program_tl {
	display: flex;
	align-items: center;
	border-bottom: 1px solid #111;
	font-size: 26px;
	line-height: 30px;
	margin-top: 20px;
	margin-bottom: 20px;
	padding-bottom: 10px;
	height: auto;
	background: transparent;
	text-align: left;
	color: #111;
}
.shanai_wrap .ch_program_tl img {
	margin-right: 10px;
}
.list_search {
	background: #f9f7f1;
	padding: 30px;
	margin-bottom: 50px;
}
.list_search_box {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.list_search_box p {
	font-size: 15px;
	line-height: 24px;
}
.detail04_btm_tag {
	border-bottom: 1px solid #111;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.detail04_btm_tag span {
	font-size: 15px;
	line-height: 24px;
	display: block;
	margin-bottom: 10px;
}
.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 12px;
	position: relative;
	z-index: 10;
	color: #fff;
	font-size: 13px;
	line-height: 19px;
}
.detail04_btm_tag li:hover a {
	background: #008dd0;
}
.detail04_btm_tag p {
	display: flex;
	flex-wrap: wrap;
}
.detail04_btm_tag label {
	cursor: pointer;
	display: block;
	margin-right: 4px;
	margin-bottom: 4px;
}
.detail04_btm_tag label a {
	display: block;
	background: #103769;
	border-radius: 3px;
	padding: 4px 12px;
	position: relative;
	z-index: 10;
	color: #fff;
	font-size: 13px;
	line-height: 19px;
}
.detail04_btm_tag label:hover a {
	background: #008dd0;
}
.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: 15px;
	line-height: 49px;
	height: 50px;
	padding: 0 30px;
	width: 500px;
	box-sizing: border-box;
	font-family: "Noto Sans JP", メイリオ, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.cms_keysearch_form placeholder {
	color: #999;
}
.cms_keysearch_form button {
	width: 100px;
	background: #111;
	border-radius: 5px;
	text-align: center;
	display: block;
	padding: 11px;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
	font-size: 25px;
	line-height: 28px;
	color: #fff;
	margin-left: 10px;
}
.cms_keysearch_form button:hover {
	background: #008dd0;
}


.detail_01, .list_01{
	padding-top: 8vw;
}
.list_01 .pan{
	padding: 0;
	margin-top: -25px;
}