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;
}
h1 {
	font-size: 11px;
	line-height: 20px;
	height: 20px;
	color: #;
	width: 1200px;
	box-sizing: border-box;
	display: block;
	position: absolute;
	top: 0;
	left: 0%;
	transform: translateX(0%);
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
}
/* ----------------------------------------
 header
 ---------------------------------------- */
header {
	width: 100%;
	padding: 19px 0 0px;
}
.h_logo{
	text-align:center;
	padding-bottom:20px;
}
.nav-menu {
  	color: #fff;
	border-top:1px solid #000;
	border-bottom:1px solid #000;
	margin:0 auto;
}
.menu-list {
  	display: flex;
  	justify-content: center;
}
.menu-item {
  	position: relative;
	margin:0 24px 0;
}

/* メニューアイテムのホバースタイル */
.menu-item:hover .drop-menu-list {
  	opacity: 1;
  	transition: opacity .3s, visibility .3s;
  	visibility: visible;
}

.menu-item a {
  	align-items: center;
  	color: #000;
  	display: flex;
  	height: 50px;
  	justify-content: center;
  	text-decoration: none;
	font-size:15px;
}
.menu-item a:hover {
	opacity:0.6;
}

/* ドロップダウンメニュー */
.drop-menu {
  	position: relative;
}
.drop-menu-list {
  	background-color: #fff; /* ドロップダウンメニューの背景色 */
  	left: -200px;
  	opacity: 0; /* 不透明度を最小に */
  	position: absolute;
  	top: 120%;
  	transition: opacity .3s, visibility .3s; /* アニメーション設定 */
  	visibility: hidden; /* 下層メニューを非表示 */
  	width: max-content;
  	z-index: 5;
	border-radius:50px;
	display:flex;
	justify-content:center;
	padding:0 40px;
        box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
}
.drop-menu-list li a {
	padding:0 15px;
	color:#000;
	font-size:14px;
}
.drop-menu-list li a:hover {
	opacity:0.6;
}
.drop-menu a{
	position: relative;
	padding: 0 16px 0 0;
	vertical-align: middle;
	text-decoration: none;
	font-size: 15px;
}
.drop-menu>a::after{
  	content: '';
  	width: 6px;
  	height: 6px;
  	border: 0;
  	border-bottom: solid 2px #000;
  	border-right: solid 2px #000;
  	transform: rotate(45deg);
  	position: absolute;
  	top: 0;
  	right: 0;
  	bottom: 0;
  	margin: auto;
}
.drop-menu-item a{
	height:40px;
	padding:0 20px;
}
/* ----------------------------------------
 footer
 ---------------------------------------- */
.footer_wrap{
	background-color:#333;
}
.footer_in{
	width:90%;
	max-width:1250px;
	margin:0 auto;
	padding:80px 0 70px;
	display:flex;
	justify-content:flex-start;
}
.footer_logo{
	margin-right:100px;
}
.footer_nav{
	width:60%;
}
.footer_nav_box:first-child{
	margin-bottom:53px;
}
.footer_nav_box p{
	font-size:25px;
	font-weight:bold;
	margin-bottom:20px;
	color:#fff;
	position:relative;
	padding-left:18px;
}
.footer_nav_box p::before{
   	content:"";
   	display:inline-block;
   	width:5px;
   	height:24px;
   	background-color:#fff;
   	position:absolute;
   	top:0px;
   	left:0px;
}
.footer_nav_box ul{
	display:flex;
	justify-content:flex-start;
    	flex-wrap: wrap;
}
.footer_nav_box ul li{
	margin-right:50px;
	margin-bottom:10px;
}
.footer_nav_box ul li a{
	display:block;
	color:#fff;
	font-size:15px;
	padding:5px 0;
	border-bottom:1px solid #333;
	transition:0.3s;
}
.footer_nav_box ul li a:hover{
	border-bottom:1px solid #fff;
}
small{
	font-size:11px;
	color:#fff;
	text-align:center;
	display:block;
	padding:10px 0;
}
.footer_btn{
	width:22%;
}
.f_logout{
	margin-bottom:20px;
}
.f_logout a{
	display:block;
	background-color:#247d84;
	color:#fff;
	padding:20px;
	font-weight:bold;
	font-size:15px;
	transition:0.3s;
	border-radius:5px;
}
.f_logout a:hover{
	background-color:#FFF;
	color:#000;
}

/*footer end*/

/* 未ログイン時 */
.login_wrap{
 margin: 0px auto;
}
.login_logo{
 margin-bottom:140px;
	background-color: #247d84;
	padding: 20px;
}
.login_wrap p{
 text-align: center;
 font-size: 18px;
 font-weight: bold;
 margin-bottom: 30px;
 letter-spacing: 1px;
}

.login_btn.slide {
  background: #247d84;
  color: #000;
  overflow: hidden;
  position: relative;
  z-index: 1;
		width: 550px;
  margin: 0 auto;

}
.login_btn.slide a{
	display: block;
	padding: 25px 30px;
	color: #fff;
	font-weight: bold;
	font-size: 25px;
	text-align: center;
}
.login_btn.slide::after {
  background: #000;
		color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.login_btn.slide:hover a{
  color: #fff;
}
.login_btn.slide:hover::after {
  transform: scale(1, 1);
}
.login_pass_btn{
	margin: 10px auto 0;
}
.login_pass_btn a{
	display: block;
	font-size: 15px;
	font-weight: bold;
	padding: 15px;
	text-align: center;
	transition: .3s;
	text-decoration: underline;
}
.login_pass_btn a:hover{
	background-color: #fff;
	color: #000;
}

/* /未ログイン時 */


/* ----------------------------------------
 ch_program_tl
 ---------------------------------------- */
.ch_program_tl {
	height: 150px;
	background-color: #3f98d7;
	text-align: center;
	font-size: 24px;
	line-height: 150px;
	color: #ffffff;
}
/* ----------------------------------------
 pan
 ---------------------------------------- */
.pan {
	display: block;
	background: #eee;
	padding: 5px 0;
	font-size: 12px;
}
.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: #111;
}
.pan li a:hover {
	color: #999;
}
.pan li::after {
	content: ">";
	margin: 0 15px;
}
.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 {
}
.shanai_wrap h1 {
font-size: 11px;
    line-height: 20px;
    height: 20px;
    color: #fff;
    background-color: #000;
    width: 100%;
    box-sizing: border-box;
    display: block;
    position: fixed;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
				z-index: 55;
}
.shanai_wrap .h_wrap {
	width: 82%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 13px 0;
}
.shanai_wrap .h_logo {
	display: flex;
	align-items: center;
	width: 100%;
}
.shanai_wrap .h_logo a {
	display: block;
	text-align: center;
}
.shanai_wrap .h_logo a:hover {
	opacity: 0.8;
}
.shanai_wrap .h_logo img {
	padding: 0px 0 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;
}


/* 
hamburger(ハンバーガーアイコン)
=================================== */
.hamburger {
  position: absolute;
  right: 2%;
  top: 41px;
  width: 30px;
  height: 40px;
  cursor: pointer;
  z-index: 300;
}

.hamburger_line {
  position: absolute;
  width: 30px;
  height: 3.5px;
  right: 0;
  background-color: #000;
  transition: all 0.5s;
}

.hamburger_line-1 {
  top: 1px;
}

.hamburger_line-2 {
  top: 13px;
}

.hamburger_line-3 {
  top: 26px;
}

/*ハンバーガーがクリックされたら*/
.open .hamburger_line-1 {
  transform: rotate(-45deg);
  top: 11px;
  background-color: #fff;
}

.open .hamburger_line-2 {
  opacity: 0;
  background-color: #fff;
}

.open .hamburger_line-3 {
  transform: rotate(45deg);
  top: 11px;
  background-color: #fff;
}

/* 
sp-nav(ナビ)
=================================== */
.sp-nav {
  position: fixed;
  right: -100%; /*ハンバーガーがクリックされる前はWindow右側に隠す*/
  top: 0;
  width: 28%; /* 出てくるスライドメニューの幅 */
  height: 100vh;
  background-color: #000;
		background-image: url(/img/common/hum_bg.png);
		background-repeat: no-repeat;
		background-position: bottom center;
		background-size: 100%;
  transition: all 0.7s;
  z-index: 200;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
		padding: 60px 90px 60px 60px;
		box-sizing: border-box;
}

/*ハンバーガーがクリックされたら右からスライド*/
.open .sp-nav {
  right: 0;
}
.sp-nav ul{
  margin-bottom: 40px;
}
.sp-nav ul p{
 color: #fff;
	font-size: 18px;
	font-weight: bold;
	border-bottom: 1px solid #fff;
	padding-bottom: 15px;
	margin-bottom: 10px;
}
.sp_nav_tl a img{
 width: 20px;
	margin-right: 15px;
	transition: .3s;
}
.sp_nav_tl a:hover img{
	transform: translateX(10px);
}
.sp-nav ul li a{
 font-size: 14px;
	color: #fff;
	line-height: 35px;
	 display: block;
  background-color: #000;
}
.sp-nav ul li.h_menu_one a span {
 font-size:19px;
 font-weight:bold;
}

.sp-nav ul li a span {
 padding: 0 0 0 0;
 position: relative;
 display: inline-block;
 text-decoration: none;
}
.sp-nav ul li a span::after {
 position: absolute;
 bottom: -1px;
 left: 0;
 content: '';
 width: 100%;
 height: 1px;
 background: #fff;
 transform: scale(0, 1);
 transform-origin: right top;
 transition: transform .2s;
}
.sp-nav ul li a:hover span::after {
 transform-origin: left top;
 transform: scale(1, 1);
}

/* スライド */
.h_menu_logout.slide {
  background: #ffc53b;
  color: #000;
  overflow: hidden;
  position: relative;
  z-index: 1;
		width: 100%;
  margin: 15px 0 0;

}
.h_menu_logout.slide a{
	display: block;
	padding: 20px;
	color: #000;
	font-weight: bold;
	background:url(/img/top/t_main_btn_icon.png)no-repeat 90% center;
	font-size: 16px;
	border: 1px solid #ffc53b;
}
.h_menu_logout.slide::after {
  background: #000;
		color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.h_menu_logout.slide:hover a{
  color: #fff;
		border: 1px solid #fff;
}
.h_menu_logout.slide:hover::after {
  transform: scale(1, 1);
}

/* 
black-bg(ハンバーガーメニュー解除用bg)
=================================== */
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 100;
}

/*ハンバーガーメニューが開いたら表示*/
.open .black-bg {
  opacity: 0.3;
  visibility: visible;
}

/*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: #000;
	overflow: hidden;
	box-sizing: border-box;
	bottom: 0;
	padding: 50px 0 0 0;
}
.shanai_wrap .f_wrap {
	display: flex;
	align-items: center;
	justify-content:space-between;
}
.shanai_wrap .f_wrap a {
	display: block;
}

.shanai_wrap .f_wrap img {}
.f_menu{
 	display: flex;
 	justify-content: space-between;;
 	align-items: flex-start;
 	width: 900px;
}
.f_menu ul{
}
.f_menu ul li.f_menu_maintl{

}
.f_menu ul li.f_menu_maintl a{
	 font-weight: bold;
 font-size: 14px;
 margin-bottom: 10px;
 color: #fff;
}
.f_menu ul li.f_menu_maintl a span{
 padding: 0 0 0 0;
 position: relative;
 display: inline-block;
 text-decoration: none;
	margin-left: 0px;
}
.f_menu ul li.f_menu_maintl a span::after {
 position: absolute;
 bottom: -1px;
 left: 0;
 content: '';
 width: 100%;
 height: 1px;
 background: #fff;
 transform: scale(0, 1);
 transform-origin: right top;
 transition: transform .2s;
}
.f_menu ul li.f_menu_maintl a:hover span::after {
 transform-origin: left top;
 transform: scale(1, 1);
}
.f_menu ul li{
}
.f_menu ul li a{
 display: block;
 font-size: 12px;
 line-height: 25px;
 color: #fff;
}
.f_menu ul li a span {
 padding: 0 0 0 0;
 position: relative;
 display: inline-block;
 text-decoration: none;
	margin-left: 10px;
}
.f_menu ul li a span::after {
 position: absolute;
 bottom: -1px;
 left: 0;
 content: '';
 width: 100%;
 height: 1px;
 background: #fff;
 transform: scale(0, 1);
 transform-origin: right top;
 transition: transform .2s;
}
.f_menu ul li a:hover span::after {
 transform-origin: left top;
 transform: scale(1, 1);
}


.shanai_wrap footer small {
	text-align: center;
	display: block;
	border-top: 1px solid #111;
	color: #fff;
	font-size: 11px;
	line-height: 26px;
	font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
 margin-top: 50px;
}
/*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: 900px;
	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;
}


/*-----way awardボタン-----*/
.nav_award{
	margin-bottom:15px;
}
.btn_aw, a.btn_aw{
    	font-size: 18px;
    	font-weight: 700;
    	line-height: 1.5;
    	position: relative;
    	display: inline-block;
    	padding: 15px 53px;
    	cursor: pointer;
    	-webkit-user-select: none;
    	-moz-user-select: none;
    	-ms-user-select: none;
    	user-select: none;
    	-webkit-transition: all .3s;
    	transition: all .3s;
    	text-align: center;
    	vertical-align: middle;
    	text-decoration: none;
    	letter-spacing: .1em;
    	color: #212529;
    	border-radius: 0.5rem;
}
.btn_bd_aw {
  	border: 2px solid #000;
  	border-radius: 0;
  	background: #fff;
  	-webkit-transform-style: preserve-3d;
  	transform-style: preserve-3d;
}

.btn_bd_aw:before {
  	position: absolute;
  	top: 0;
  	left: 0;
  	width: 15px;
  	height: 100%;
  	content: '';
  	-webkit-transition: all .3s;
  	transition: all .3s;
  	-webkit-transform: translateX(0) translateY(0);
  	transform: translateX(0) translateY(0);
  	border-radius: 0 50% 50% 0;
  	background: #a70000;
}

.btn_bd_aw:hover:before {
  	font-family: 'Font Awesome 5 Free';
  	font-weight: bold;
  	line-height: 30px;
  	width: 30px;
  	height: 30px;
  	content: '\f061';
  	-webkit-transform: translateX(1190%) translateY(.8rem);
  	transform: translateX(1190%) translateY(.8rem);
  	color: #fff;
  	border-radius: 50%;
}

li.f_menu_maintl.f_aw_btn a{
	background-color:#a70000;
	border:2px solid #fff;
	transition:0.3s;
	padding:5px 15px;
}
li.f_menu_maintl.f_aw_btn a:hover{
	background-color:#FFF;
	color:#a70000;
}


/*------------way_award------------*/

.wayaward_main{
	margin-top:56px;
	background:url(/img/wayaward/wa_main_bg.png)repeat-x center top;
}
.wa_tl{
	text-align:center;
	padding-top:45px;
}
.wa_conts{
	width: 90%;
    	max-width: 1560px;
	margin:50px auto 70px;
}
.wa_conts_tl{
	background:url(/img/wayaward/wa_rank_tl.png)no-repeat center top;
	font-size:50px;
	font-weight:bold;
	height:40px;
	width:360px;
	padding-top:80px;
	margin-bottom:50px;
	position:absolute;
	top:0;
    	top: 0;
    	left: 50%;
    	transform: translateX(-50%);
    	-webkit-transform: translateX(-50%);
    	-ms-transform: translateX(-50%);
	text-align:center;
  	text-shadow: 8px 8px 8px #ffffff, -8px -8px 8px #ffffff,
  	-8px 8px 8px #ffffff,  8px -8px 8px #ffffff,
  	8px 0 8px #ffffff, -8px  0 8px #ffffff,
  	0 8px 8px #ffffff,  0 -8px 8px #ffffff;
}
.wa_team{
	position:relative;
}
.wa_t_no1{
	display:flex;
	justify-content:space-between;
	width:95%;
	max-width:1400px;
	background:url(/img/wayaward/wa_no1_bg.png)no-repeat 65% 10px;
	background-size:60%;
	height:500px;
	padding:200px 0 30px;
}
.wa_t_no1 .wa_medal{
	margin-right:5%;
	width:90%;
	max-width:100px;
}
.wa_box{
	max-width:1230px;
	width:95%;
	display:flex;
	justify-content:space-between;
}
.wa_t_no1 .wa_movie{
	max-width:600px;
	width:49%;
}
.movie{
}
.wa_movie a{
	display:block;
	color:#000;
	transition: all 0.3s ease 0s;
}
.wa_movie a:hover{
	 transform: translateY(-9px);
}
.wa_movie p{
	font-size:23px;
	font-weight:bold;
	margin-top:10px;
	line-height:35px;
	text-align:center;
}
.wa_t_no3{
	display:flex;
	justify-content:flex-start;
	max-width:830px;
	width:95%;
	margin:0 auto;
}
.wa_t_no3 .wa_box{
	width:600px;
}

.wa_t_no3 .wa_medal{
	margin-right:30px;
}

.wa_kojin{
	position:relative;
	margin-top:150px;
}
.wa_conts_tl{
}
.wa_kojin .wa_t_no1{
	max-width:1050px;
	width:95%;
	margin:0 auto;
	padding: 200px 0 100px;
	justify-content: flex-start;
	background:url(/img/wayaward/wa_no1_bg.png)no-repeat center 10px;
	background-size:100%;
	height:680px;
}
.wa_kojin .wa_medal{
	margin-right:30px;
}
.wa_kojin .wa_t_no1 .wa_box{
    	max-width:780px;
    	width: 100%;
}
.wa_kojin .wa_t_no1 .wa_movie{
    	max-width: 780px;
    	width: 100%;
}
.movie{
}
.wa_t_no_{
}
.wa_t_no_k{
	display: flex;
    	justify-content: flex-start;
    	max-width: 750px;
	width:49%;
}
.wa_t_no_k_wrap{
	display: flex;
	justify-content:space-between;
	margin-top:-100px;
}
.wa_t_no_k .wa_box{
	display:block;
	width:100%;
}

.award_conts{
	position:relative;
}
.award_conts ul{
	display: flex;
	justify-content: flex-start;
	flex-wrap:wrap;
 	width: 100%;
	margin-top:100px;
	padding-top:180px;
}
.award_conts ul li{
    	width: 23.5%;
    	position: relative;
    	margin: 0 2% 2% 0;
}
.award_conts ul li:nth-child(4n){
	margin-right: 0%;
}
.award_conts ul li a{
  	display: block;
  	position: absolute;
  	left: 0;
  	top: 0;
  	width: 100%;
  	height: 100%;
	color: #000;
}
.award_conts ul li a p{
  	position: absolute;
  	bottom:0px;
  	display: block;
  	font-size: 16px;
  	display: -webkit-box;
  	-webkit-box-orient: vertical;
  	-webkit-line-clamp: 2;
  	overflow: hidden;
	padding: 0 5px;
	line-height:28px;
	height:56px;
	box-sizing:border-box;
	}
.award_movie{
    	margin-bottom: 65px;
}
.award_movie img{
	width: 100%;
	object-fit:cover;
}
.award_conts ul li a:hover p{
text-decoration: underline;
}