@charset "utf-8";



html{-ms-touch-action:manipulation;touch-action:manipulation;height:100%;}body{height:100%;margin:0 auto;font-family:Hiragino Kaku Gothic ProN,ヒラギノ角ゴ ProN;font-size:9pt;background-color:#fff;overflow:scroll;color: #444444;}:focus{outline:0}a{text-decoration:none;color:inherit}a.white:link,a.white:visited{color:#fff}a:link,a:visited{
    color: inherit
}h1,h2{font-size:inherit;font-weight:inherit;line-height:inherit;display:inline}h2 a{text-decoration:underline}ul{margin:0; padding:0; list-style:none;}li{text-decoration:none;margin:0; padding:0;}

.wrapper{
    min-height: 100%;
    width: 100%;
    position: relative;
    margin: auto;
}
/*①ヘッダーここから*/
.header{
    height:70px;
    border-bottom: 1px solid #ddd;
}
.header-top{
    position: relative;
    background:black;
}
.header_img{
    width: 100%;
    height:400px;
    background-size: 90%;
    background-repeat: no-repeat;
    background-position: 50% 100%;
    max-width:1500px;
    margin:auto;
}
.header_title{
    font-family: 'Lato', sans-serif;
    position: absolute;
    top: 10px;
    left: 10px;
    color: white;
    font-size: 28px;
    z-index:5;
}
.header_title a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent: -999px;
    z-index: 999;
}
.ht_sub{
    font-size: 10px;
    display: block;
}

/*②ハンバーガーメニューここから*/
.hamburger_menu_check{
    display: none;
}
.hamburger_wrap{
    display: inline-block;
    left: 0;
    width: 100%;
    padding: 20px 10px 10px 10px;
    box-sizing: border-box;
    z-index:4;
    position: absolute;
    max-width: 1500px;
}
.hm_btn {
	position: fixed;
	width: 30px;
	height: 27px;
	cursor: pointer;
	display: block;
    float: right;
    margin-right:20px;
    z-index: 2;
    right:10px;
}

.hm_btn::before {
	-webkit-box-shadow: #cdcdcd 0 12px 0;
	box-shadow: #cdcdcd 0 12px 0;
}
.hm_btn::after {
	bottom: 0;
}
.hm_btn::before,
.hm_btn::after {
	width: 30px;
	height: 3px;
	background: #cdcdcd;
	display: block;
	content: '';
	position: absolute;
	-webkit-transition: -webkit-box-shadow 0.2s linear, -webkit-transform 0.2s 0.2s;
	transition: box-shadow 0.2s linear, transform 0.2s 0.2s;
}
.hm_menu_wrap {
	width :100%;
	height :100vh;
	background: #fff;
	position: fixed;
	left: -100%;
	top: 0;
	-webkit-transition: left 0.4s;
    transition: left 0.4s;
    text-align: center;
    padding-top: 100px;
    opacity: 0.95;
}
/* ▽▽開閉時のアニメーション▽▽ */
.hamburger_menu_check:checked ~ .hm_btn::before {
	-webkit-box-shadow: transparent 0 0 0;
	box-shadow: transparent 0 0 0;
	-webkit-transform: rotate(45deg) translate3d(6px, 11px, 0);
    transform: rotate(45deg) translate3d(6px, 11px, 0);
    background:black;
}
.hamburger_menu_check:checked ~ .hm_btn::after {
	-webkit-transform: rotate(-45deg) translate3d(6px, -11px, 0);
    transform: rotate(-45deg) translate3d(6px, -11px, 0);
    background:black;
}
.hamburger_menu_check:checked ~ .hm_menu_wrap {
	left: 0%;
}
.hamburger_list {
    margin-top:30px;
	list-style-type: none;
    padding: 0;
    font-size:20px;
    font-family: "Arial Narrow", Arial, sans-serif;
}

.hamburger_list li a {
	color: #777;
	display: block;
	overflow: hidden;
	padding: 10px 22px;
	position: relative;
	text-decoration: none;
    z-index: 1;
    color:black;
}
.hamburger_list li a:hover::before {
	bottom: 0;
}
.hamburger_list a:hover::after {
	opacity: 0.5;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.hamburger_menu{
    text-align: center;
    color: white;
    font-size: 18px;
    top:70px;
    position: absolute;
    width: 100%;
}
.hamburger_menu_title_main{
    font-size:28px;
    color:black;
    font-family: 'Lato', sans-serif;
}
.hamburger_menu_title_main_sub{
    font-size:16px;
    color:black;
    font-family: 'Lato', sans-serif;

}
.hamburger_menu li{
    font-size:18px;
    margin: 0px 0 5px 0;
}
.breadcrumb{
    width:100%;
    margin:0;
    padding-top:8.5px;
    text-align:left;
    font-size:11px;
}
.breadcrumb ul{
    margin:0 auto;
    width:94%;
    text-align:left;
    list-style:none;
    line-height:16px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap
}
.breadcrumb a{
    font-weight:bold;
}
.breadcrumb a:hover{
    color:#000;
    text-decoration:underline
}
.breadcrumb li{
    display:contents
}
.breadcrumb li::after{
    content:" > "
}
.breadcrumb li:last-child::after{
    content:none
}

/*③センターメニューここから*/
.centermenu{
    position: absolute;
    bottom: 0;
    width: 100%;
}
.cm_list{
    display:flex;
}
.cml_button{
    font-family: 'Lato', sans-serif;
    background-color:black;
    color: white;
    width: 32%;
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
    position:relative;
    border:0.5px solid rgba(255,255,255,1);
}
.cml_button a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent: -999px;
    z-index: 3;
}
/*④INFORMATIONここから*/
section{
    width:100%;
    margin: 0 auto;
}
.h2title{
    color:#444;
    font-size: 20px;
    display:flex;
    align-items: center;
    font-weight: bold;
    margin: 40px 0 30px 0;
}
.h2title_main{
    text-align: center;
}
.h2title_sub{
    text-align: center;
    font-size: 13px;
    line-height: 1.0em;
}
.h2title::before,.h2title::after{
    content:"";
    height: 1px;
    background-color:#ccc;
    display:block;
    flex-grow: 1;
}
.h2title::before{
    margin-right:10px;
}
.h2title::after{
    margin-left:10px;
}
/*⑤NEWSここから*/
.wrap{
    margin: 10px 5px;
}
.wb_head{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #999;
    margin-bottom: 20px;
}
.wb_title{
    font-family: "Arial Narrow", Arial, sans-serif;
    font-size: 20px;
    font-weight: normal;
    margin-left:5px;
}
.wb_img{
    width: 80px;
}
.wb_all{
    font-size: 14px;
    margin-right: 10px;
    text-decoration: underline;
}
.wb_contents{
    width: 100%;
    margin: 10px auto 50px;
    z-index: 3;
    overflow: hidden;
    clear: both;
}
.wb_contents_news{
    width: 100%;
    margin: 0px auto 40px;
    z-index: 3;
    overflow: hidden;
    clear: both;
}
.wb_contents li{
    margin-top:20px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    margin-left: 5px;
}
.wb_contents_news li{
    margin-top:20px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    margin-left: 5px;
    border-bottom:0.5px solid #999999;
}
.wb_top{
    width: 80%;
    max-width: 500px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wb_top_news{
    margin: auto;
    display: flex;
    align-items: center;
}
.wb_moviename{
    font-size:14px;
}
.wb_moviedetail{
    display:flex;
    align-items: center;
    font-size:12px;
}
.wb_day{
    margin-right: 5px;
}
.wb_day_news{
    margin-right: 5px;
    font-size:16px;
}
.wb_newicon{
    color: white;
    background-color: red;
    padding: 1px 3px;
    margin-right: 5px;
}
.wb_category{
    padding: 1px 3px;
    border:0.5px solid #999999;
}
.wb_text{
    font-size: 12px;
    margin-top: 10px;
}
/*⑤tube用ここから*/
.wb_title_movie{
    text-align:center;
    font-size:22px;
    font-weight:bold;
    margin:40px 0 10px;
}
.wb_title_movie_tube{
    color:#FF0000;
}
.wb_title_movie_tube::before{
    content: '';
    display: inline-block;
    background-image: url(../img/tube.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 30px;
    height: 25px;
    vertical-align: middle;
    margin-right:5px;
}
.wb_movie{
    position:relative;
}
.wb_movie_explain{
    font-family: 'メイリオ', 'Meiryo', sans-serif;
    text-align: center;
    font-size: 14px;
}
.wme_sub{
    font-weight: bold;
}
.wb_movie_img{
    width:80%;
    max-width:500px;
    margin:5px auto;
    display: block;
}
.wb_movie a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent: -999px;
    z-index: 1;
}
.wb_contents_tubelink{
    width:80%;
    max-width:500px;
    color:white;
    margin: auto;
    text-align: center;
}
.wb_contents_tubelink_text{
    color: #444444;
    font-weight: bold;
    margin-bottom: 5px;
}
.wb_contents_tubelink_buttom_top{
    background-color: #DA1725;
    font-size:16px;
    padding: 5px;
}
.wb_contents_tubelink_buttom_bottom{
    background-color: black;
    font-size:12px;
    padding: 5px;
}
/*⑥facebookここから*/
.wb_contents_facebook{
    margin: 20px auto;
}
.facebook_inline{
    display:flex;
}
/*⑦profileここから*/
.wbcp_img{
    width:100%;
}
.wbcpw_bottom{
    margin: 10px 5px;
}
.wbcp_name{
    font-size: 16px;
    font-weight: bold;
}
.wbcp_profile{
    margin: 5px 0;
    font-size: 12px;
}
.wbcpp_text{
    margin: 10px 0px;
}
.more_text{
    text-align: right;
    margin-right: 10px;
    margin-top: 20px;
    text-decoration: underline;
    font-weight: bold;
}
/*⑦linkここから*/
.wbcw_img{
    width: 80%;
    max-width: 500px;
}
.link_wrap{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.wb_contents_hp{
    margin-top:30px;
    flex: 1;
    position: relative;
}
.wb_contents_wiiiiim{
    flex: 1;
    position: relative;
}


/*⑦footerここから*/
footer{
    width:100%;
    margin-top: 30px;
    background:black;
    color:white;
    bottom:0;
    height:110px;
}
.footer_wrap{
    max-width:1500px;
    margin:auto;
}

.footer-top{
    display: flex;
    align-items: baseline;
    margin-left: 10px;
    padding-top: 5px;
}
.footer-top-name{
    font-family: 'Lato', sans-serif;
    margin-right: 5px;
    color:white;
    font-size: 18px;
}
.footer-top-subname{
    color: white;
    font-size: 10px;
}
.foot-bottom{
    margin-top: 3px;
    font-size: 10px;
    margin-left: 10px;
}
.wb_contents_wiiiiim{
    display: flex;
    justify-content: center;
}
.wb_contents_wiiiiim a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent: -999px;
    z-index: 1;
}
.wb_contents_hp{
    display: flex;
    justify-content: center;
}
.wb_contents_hp a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent: -999px;
    z-index: 1;
}
.fb_south{
    display:flex;
    justify-content: flex-end;
    margin: 20px 5px 10px 0px;
    justify-content: center;
}
.fbs_img{
    width: 100px;
    margin-left: 5px;
}

@media screen and (min-width: 768px) {

.header {
    height: 100px;
}
        
.header_img{
    width: 100%;
    height: 550px;
    background-size: 65%;
    background-position: 50% 0;
    background-repeat: no-repeat;
}

.hamburger_menu_title_main{
    font-size:38px;
}
.hamburger_menu_title_main_sub{
    font-size:22px;
}
.hamburger_list{
    font-size:24px;
}
.header_title{
    font-size:42px;
}
.ht_sub{
    font-size:16px;
}
.cml_button{
    height: 60px;
    line-height: 60px;
    font-size: 18px;
}
.breadcrumb{
    font-size:14px;
    max-width: 1500px;
    margin: auto;
}

.h2title{
    font-size: 26px;
    margin: 40px 0 20px 0;
}
.wb_all{
    font-size: 14px;
}
.wb_title{
    font-size: 32px;
}
section{
    max-width: 1500px;
}
section .wrap {
    margin: auto;
    width: 80%;
}
.wb_moviename{
    font-size:18px;
}
.wb_day{
    font-size:14px;
}
.wb_day_news{
    font-size:14px;
}
.wb_newicon{
    font-size:14px;
}
.wb_category{
    font-size:14px;
}
.wb_text{
    font-size:16px;
}
.wb_img{
    width:100px;
}
.wb_movie_explain{
    text-align: left;
    font-size: 18px;
}
.wb_top{
    width:65%;
}
.wb_movie_img{
    width:65%;
}
.wb_title_movie_tube{
    font-size:28px;
}
.wb_title_movie_channnel{
    font-size:30px;
}
.wb_contents_tubelink_text{
    font-size:14px;
}
.wb_contents_tubelink_buttom_top{
    font-size:24px;
}
.wb_contents_tubelink_buttom_bottom{
    font-size:20px;
}
.wbcw_img{
    width: 65%;
}
footer{
    height:140px;
}
.footer-top {
    padding-top: 20px;
}
.footer-top-name{
    font-size:24px;
}
.footer-top-subname{
    font-size: 20px;
}
.foot-bottom{
    font-size:12px;
}
.fbs_text{
    font-size:12px;
}
.phone_display{
    display:none;
}
}

@media screen and (min-width: 1024px) {
.header {
    position: relative;
    max-width: 1500px;
    margin: auto;
}
.header_img{
    height:700px;
}
.header_wrap{
    width: 100%;
    max-width: 1500px;
    height: 100%;
    position: relative;
    margin: auto;
}
.header_title{
    font-size:60px;
}
.ht_sub{
    font-size:16px;
}
.hamburger_list {
    font-size: 32px;
}
.cml_button {
    font-size: 24px;
}
.wb_all {
    font-size: 16px;
}
section .wrap{
    max-width: 1080px;
    margin: 0;
    width:48%;
}
.info_wrap{
    display:flex;
    justify-content: space-between;
}
.movie_wrap{
    display:flex;
    justify-content: space-between;
}
.wb_contents_tubelink_buttom_top{
    font-size:18px;
}
.wb_contents_tubelink_buttom_bottom {
    font-size: 14px;
}
.wb_disco ul{
    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.link_wrap{
    flex-direction: row;
}
.wb_contents_hp{
    margin: 0;
}
footer .wrap{
    max-width: 1200px;
    margin: auto;
}
}
@media screen and (min-width: 1500px) {
section {
    margin:auto;
}
}
@media screen and (min-width: 1250px) {
.header_img{
    height:800px;
    background-size: 55%;
}
}