@charset "UTF-8";
/*----------------------------------------
	fonts
----------------------------------------*/
@import url(https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,800,900);
@import url(https://fonts.googleapis.com/css?family=Lato:300,400,700,900);
/*----------------------------------------
	reset
----------------------------------------*/
*{
	padding:0;
	margin:0;
}

html {
	background-color: #fafafa;
	font-size: 62.5%;
	background-image: url(../images/common/bg_html.png);
	background-repeat: repeat-y;
	background-position: center top;
}

/*----------------------------------------
	body
----------------------------------------*/
body{
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size:10px;
	font-size:1.0rem;
	margin-top: 0;
	margin-bottom: 0;
	padding: 0;
	background-image: url(../images/common/bg_body_bace_bw.png);
	background-repeat: no-repeat;
	background-position: center top;
}
a {
  color: #000;
  text-decoration: none;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
a:hover {
  color: #090;
  opacity: 1;
}
header, footer {
  display: block;
}

li {
  list-style: none;
}

ol li {
	list-style-type: none;
}

img {
  border: 0;
  vertical-align: top;
}

/*日本語に切り替え*/
a.showf span.en{ display:inline; }
a.showf:hover span.en{ display:none; }
a.showf span.jp{ display:none; }
a.showf:hover span.jp{
	display:inline;
}



/*----------------------------------------
	common
----------------------------------------*/


.clearfloat {
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
#pagetop {
	display: none;
	position: fixed;
	bottom: 10px;
	right: 10px;
	padding: 5px;
	cursor: pointer;
	background: #000;
	color: #fff;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	font-size: 10px;
}

/*----------------------------------------
	コンテンツページ用 Menu
----------------------------------------*/
#container {
	width: 1000px;
	height: auto;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	z-index: 1;
}
.container {
  width: 1000px;
  margin: 0 auto;
}
@media only screen and (max-width: 919px) {
  .container {
    width: 100%;
  }
}

/* Humbergar Menu 全体の位置とサイズ */
.hm-btn {
  width: 60px;
  height: 42px;
  position: fixed;
  top: 100px;
  right: 50px;
  z-index: 100;
  cursor: pointer;
}
@media only screen and (max-width: 919px) {
.hm-btn {
    top: 10px;
    right: 10px;
  }
}
.hm-btn:before {
  content: "MENU";
  color: #000;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
  position: absolute;
  top: 10px;
  left: -50px;
}
@media only screen and (max-width: 919px) {
.hm-btn:before {
    display: none;
  }
}
/*＝️の長さと厚み*/
.hm-btn span {
  width: 40px;
  height: 3px;
  background-color: #000;
  position: absolute;
  left: 13px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  display: block;
}
/*＝️の縦位置*/
.hm-btn span:first-child {
  top: 15px;
}
.hm-btn span:last-child {
  bottom: 16px;
}
/*×️のマウスオーバー時の中心点と角度（×の中心より左側）*/
.hm-btn.active span:first-child {
  -webkit-transform: translateY(3px) rotate(45deg);
  -moz-transform: translateY(3px) rotate(45deg);
  -ms-transform: translateY(3px) rotate(45deg);
  transform: translateY(3px) rotate(45deg);
}
/*×️のマウスオーバー時の中心点と角度（×の中心より右側）*/
.hm-btn.active span:last-child {
  -webkit-transform: translateY(-5px) rotate(-45deg);
  -moz-transform: translateY(-5px) rotate(-45deg);
  -ms-transform: translateY(-5px) rotate(-45deg);
  transform: translateY(-5px) rotate(-45deg);
}


/*ここから開く内容*/
.hamburger-menu {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 100;
}
.hamburger-menu .container {
  width: 1000px;
  height: 480px;
  margin: 0 auto;
  position: absolute;
  top: 60%;
  margin-top: -220px;
  left: 50%;
  margin-left: -500px;
}
@media only screen and (max-width: 919px) {
  .hamburger-menu .container {
    width: 100%;
    height: 165px;
    margin: 0;
    margin-top: -120px;
    left: 0;
  }
}
.hamburger-menu .container nav ul {
  text-align: center;
}
.hamburger-menu .container nav ul li {
  margin-bottom: 30px;
}
@media only screen and (max-width: 919px) {
  .hamburger-menu .container nav ul li {
    margin-bottom: 20px;
  }
}
/*メニューフォントサイズ*/
.hamburger-menu .container nav ul li a {
  font-size: 65px;
  font-size: 6.5rem;
  color: #000;
  font-family: "Lato", sans-serif;
  font-weight: bold;
  line-height: 0.6;

}
@media only screen and (max-width: 919px) {
  .hamburger-menu .container nav ul li a {
    font-size: 50px;
    font-size: 5rem;
  }
}
.hamburger-menu .container nav ul li a:hover {
	color: #090;
	font-size: 60px;
    font-size: 6rem;
	opacity: 1;
}
.hamburger-menu .sns {
  text-align: center;
  width: 100%;
  position: fixed;
  bottom: 50px;
  display: none;
}
@media only screen and (max-width: 919px) {
  .hamburger-menu .sns {
    display: block;
  }
}
.hamburger-menu .sns ul {
  font-size: 0px;
  font-size: 0rem;
  text-align: center;
}
.hamburger-menu .sns ul li {
  line-height: 1;
  margin: 0 12px;
  display: inline-block;
}
.hamburger-menu .sns ul li a {
  display: block;
}


/*----------------------------------------
	header
----------------------------------------*/
header {
  width: 100%;
  position: fixed;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 110;
}

header .logo {
	text-align: center;
	text-indent: -9999px;
	height: 112px;
	width: 278px;
	position: absolute;
	left: 50%;
	top: 75px;
	margin-left: -139px;
}
}
@media only screen and (max-width: 919px) {
  header .logo {
    padding-top: 15px;
  }
}
/*----------------------------------------
	footer
----------------------------------------*/
#footer {
	text-align: center;
	width: 900px;
	margin-right: auto;
	margin-left: auto;
	height: 60px;
	background-color: #fafafa;
	margin-bottom: 15px;
}

@media only screen and (max-width: 919px) {
#footer {
    padding: 0 0px;
  }
#footer br {
    display: none;
  }
}
#footer p {
	font-size: 10px;
	font-size: 1rem;
	letter-spacing: 1px;
	line-height: 1.8;
	padding-top: 20px;
	color: #000;
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
}

/*--------------------------
コンテンツページ
--------------------------*/

	
/*大枠*/
#scenes-wrap {
	width: 900px;
	padding-top: 237px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
	margin-right: auto;
	margin-left: auto;
	height: auto;
	text-align: left;
	margin-bottom: 15px;
}

@media only screen and (max-width: 900px; min-width: 400px;) {
#scenes-wrap {
    padding: 100px 0;
  }
}

#scenes-wrap .container {
	width: 900px;
	margin-right: auto;
	margin-left: auto;
	height: auto;
	background-color: #fafafa;
}
@media only screen and (max-width: 900px) {
#scenes-wrap .container {
    width: 100%;
	margin-right: auto;
	margin-left: auto;
  }
}


#scenes-wrap .container h3 {
	font-size: 18px;
	font-size: 1.8rem;
	letter-spacing: 0.1em;
	color: #000;
	display: block;
	margin-bottom: 20px;
  }
#scenes-wrap .container p {
	font-size: 14px;
	font-size: 1.4rem;
	letter-spacing: 1px;
	color: #000;
	line-height: 1.7em;
  }
#scenes-wrap .container #sidebar {
	width: 900px;
	margin-top: 20px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	height: auto;
}
#scenes-wrap .container #sidebar h2{
	color: #000;
	font-size: 30px;
	font-size: 3rem;
	font-weight: bold;
	-webkit-font-smoothing: antialiased;
	letter-spacing: 0em;
	display: block;
	width: 800px;
	margin-left: 50px;
	background-image: url(../images/common/title_bg.png);
	background-repeat: no-repeat;
	background-position: left top;
	height: 96px;
	padding-top: 30px;
	text-align: left;
	padding-left: 20px;
}

#scenes-wrap .container #sidebar1 {
	float: left;
	width: 490px;
	height: auto;
	margin-top: 0px;
	margin-left: 50px;
}

#scenes-wrap .container #sidebar1 p{
	padding: 10px;
}
#scenes-wrap .container #sidebar2 {
	float: right;
	width: 344px;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
	text-align: center;
	margin-top: 0px;
}
#scenes-wrap .container #sidebar2 p {
	color: #191919;
}

/*----------------------------------
会社概要、リクルートページ専用　両サイドのマージンが広い
-----------------------------------*/
#scenes-wrap .container #sidebar_about {
	width: 900px;
	margin-top: 20px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	height: auto;
}

#scenes-wrap .container #sidebar1_about {
	float: left;
	width: 350px;
	height: auto;
	height: 100%;
	padding-top: 0px;
	padding-right: 30px;
	padding-bottom: 100px;
	padding-left: 130px;
	margin-top: 0px;
}
#scenes-wrap .container #sidebar1_about p{
	line-height: 3em !important;
}
#scenes-wrap .container #sidebar2_about {
	float: right;
	width: 300px;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
	text-align: center;
	margin-top: 0px;
	margin-right: 80px;
}
#scenes-wrap .container #sidebar2_about p {
	color: #191919;
}

/*会社概要 改行*/
.about_kaigyo {
	font-size: 14px;
	font-size: 1.4rem;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	letter-spacing: 1px;
	color: #000;
	line-height: 1.7em;
}



/*-------------------------------
コンテンツタイトル
-------------------------------*/
#scenes-wrap .container #container_title {
	height: auto;
	width: 100%;
	margin-top: 70px;
	margin-bottom: 10px;
	}
	
/*リクルート用タイトル*/
#scenes-wrap .container #container_title .text_ja_recruit {
	display: block;
	margin-left: 120px;
	background-image: url(../images/common/title_recruit.png);
	background-repeat: no-repeat;
	background-position: left top;
	height: 85px;
	padding-top: 80px;
	width: 275px;
	float: left;
	text-align: center;
  }
  
/*会社概要用タイトル*/
#scenes-wrap .container #container_title .text_ja_about {
	display: block;
	margin-left: 120px;
	background-image: url(../images/common/title_about.png);
	background-repeat: no-repeat;
	background-position: center top;
	width: 275px;
	height: 85px;
	padding-top: 80px;
	text-align: center;
	padding-left: 0px;
	float: left;
  }

 /*放送事業用タイトル*/
#scenes-wrap .container #container_title .text_ja_broadcast {
	display: block;
	margin-left: 50px;
	background-image: url(../images/common/title_broadcast.png);
	background-repeat: no-repeat;
	background-position: left top;
	height: 85px;
	padding-top: 80px;
	width: 363px;
	float: left;
	text-align: center;
  }
/*レストラン用タイトル*/
#scenes-wrap .container #container_title .text_ja_restaurant {
	display: block;
	margin-left: 50px;
	background-image: url(../images/common/title_restaurant.png);
	background-repeat: no-repeat;
	background-position: left top;
	height: 85px;
	padding-top: 80px;
	width: 392px;
	float: left;
	text-align: center;
  }
  /*各タイトル H2*/
#scenes-wrap .container #container_title .text_ja_recruit h2,.text_ja_about h2,.text_ja_broadcast h2,.text_ja_restaurant h2{
	color: #000;
	font-size: 26px;
	font-size: 2.6rem;
	font-weight: bold;
	-webkit-font-smoothing: antialiased;
	letter-spacing: 0.1em;
  }

