@charset "UTF-8";

html {
  font-size: 100%;
}
body {
  font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
  background-color: #f0f0f0;
  color: #000;
  font-size: 87.5%;
  background-attachment: fixed;         /* 固定 */
  background-image: url(../img/haikei3.jpg);
  background-size: cover;               /* 全画面 */
  background-position: center center;   /* 縦横中央 */

}

a {
  color: #333;
  text-decoration: none;
}
img {
  max-width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
	image-rendering: -webkit-optimize-contrast;

}
li {
  list-style: none;
}
/*
コンテンツ幅を設定するための共通クラス
*/
.section-title {
  font-weight: normal;
  line-height: 1;
  margin-bottom: 50px;
}
/*
疑似要素を使って下線を引く
*/
.section-title::after {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #000;
  display: block;
}
/*
「display: inline-block;」を設定してブロック化することで、
改行されてmargin-bottomが使用できるようになる
*/
.section-title .en {
  display: block;
  font-size: 2.25rem;
  letter-spacing: 0.3em;
  margin-bottom: 10px;
}
.section-title .ja {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 36px;
}
/*
横幅を設定するための共通クラス
*/
.wrapper {
  max-width: 1032px;
  padding: 0 16px;
  margin: 0 auto;
}
.readmore {
  font-size: 0.875rem;
  text-align: center;
}
/*
疑似要素で下線を設定するために、「position: relative;」を設定
*/
.readmore a {
  padding-bottom: 1px;
  color: #333;
  position: relative;
}
/*
「position: absolute;」を設定し、left、bottomで下線の位置を調整
widthとheightで線の長さと高さを設定
疑似要素で線を表示させるためには、「content: '';」を設定すること
「transition: all 200ms ease;」でホバー時の速度などを設定
*/
.readmore a::after {
  content: '';
  position: absolute;
  height: 1px;
  width: 100%;
  left: 0;
  bottom: 0;
  background: #333;
  transition: all 200ms ease;
}
#company .text {
  background-color: #fff;
  padding: 100px 8% 100px 6%;
  position: absolute;
  top: 0;
  left: 0;
}
#company {
  height: 750px;
  display: flex;
  align-items: center;
  position: relative;
}
#company .text {
  width: 55%;
  background-color: #fff;
  padding: 80px 8% 80px 6%;
  position: absolute;
  top: 0;
  left: 0;
}
#company .img {
  position: absolute;
  right: 0;
}
#company .img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
#company .info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
#company .info dt {
  width: 20%;
  margin-top: 10px;
}
/*
1つめのdtにはmargin-topを設定しない
*/
#company .info dt:first-of-type {
  margin-top: 0;
}
#company .info dd {
  width: 80%;
  margin-top: 10px;
}
/*
1つめのddにはmargin-topを設定しない
*/
#company .info dd:first-of-type {
  margin-top: 0;
}
#company .info .add {
  margin-left: 20%;
}
/*
ホバー時の下線の設定
「opacity: 0;」下線を非表示
「transform: translateY(3px);」下に3px移動
→下に3px移動しながら下線を非表示にする
*/
.readmore a:hover::after {
  opacity: 0;
  transform: translateY(3px);
}

/*-------------------------------------------
header
-------------------------------------------*/
/*
「position: fixed;」でヘッダーを固定し、「z-index: 10;」で前面に表示
※他のコンテンツでpositionをrelative、absolute、fixedのいずれかに
設定している場合は、z-indexの数値が大きい方が前面に表示される
*/
#header {
  background-color: #fff;
   position: fixed; /* ウィンドウを基準に画面に固定 */
    top: 0; /* 上下の固定位置を上から0pxにする */
    left: 0; /* 左右の固定位置を左から0pxにする */
	 width: 100%;
  padding: 20px 40px;
  background: #eee;
  box-sizing: border-box;
}
#header .site-title {
  padding: 20px 16px;
  line-height: 1px;
}
/*
「display: inline-block;」でリンクを親要素の範囲に広げる
※blockを指定すると横幅いっぱいまで広がってしまうため、
inline-blockを設定している
*/
#header .site-title a {
  display: inline-block;
}
#navi {
  background-color: #333;
}
#navi a {
  color: #fff;
}
#navi ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#navi li {
  font-size: 0.875rem;
  padding: 10px 60px 10px 0;
}

#mainvisual {
  margin-bottom: 0px;

}
div {
	position: relative;/*親要素にrelative*/
}


/*-------------------------------------------
pickup
-------------------------------------------*/
#pickup {
  display: flex;
  justify-content: space-between;
  padding-top: 150px;
  margin-bottom: 60px;
}
#pickup article {
  width: 32%;
}
#pickup .article-title {
  font-size: 1rem;
  margin: 10px 0 15px 0;
}

/*-------------------------------------------
container
-------------------------------------------*/
#container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
main {
  width: 100%;
  text-align: center;
}

ul {
	justify-content: center;
}
li {
		list-style: none;
	    margin: 0 5px;
}	
#main2 {
	text-align: center;
}
.cast figure {
	margin: 0 0 30px 30px;
	width: 210px;
	float: left;
	margin-top: 5px;
}
.tenpo figure {
	margin: 0px 0 10px 185px;
	float: left;
	margin-top: 5px;
}
.tenpo {
	overflow: hidden;
}
div {
	position: relative;/*親要素にrelative*/
}
.menu p{
  position: absolute;/*重ねたい子要素にabsolute*/
  top:61%;
  left: 63%;
 -ms-transform: translate(-50%,-50%);/*ベンダープレフィックス*/
  -webkit-transform: translate(-50%,-50%);/*ベンダープレフィックス*/
  transform: translate(-50%,-50%);/*センター寄せの修正*/
  color: #060000;
  font-size: 20px;
  margin: 0!important;/*文字がずれている場合や*/
  padding: 0!important;/*文字が折り返される場合*/
}

/*-------------------------------------------
aside
-------------------------------------------*/
#sidebar {
  width: 33%;
  padding: 20px;
}
#sidebar .side-title {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 30px;
}
.author {
  text-align: center;
  margin-bottom: 60px;
}
.author img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin-bottom: 30px;
}
.author .profile {
  font-size: 0.875rem;
  text-align: left;
}
.ranking {
  text-align: center;
  margin-bottom: 60px;
}
.ranking article {
  margin-bottom: 30px;
}
.ranking .article-title {
  font-size: 0.875rem;
  font-weight: normal;
  text-align: left;
}
.archive {
  text-align: center;
  margin-bottom: 60px;
}
.archive ul {
  border-bottom: solid  1px #777;
}
.archive li {
  font-size: 0.875rem;
  border-top: solid  1px #777;
  padding: 20px;
  text-align: left;
}

/*-------------------------------------------
footer
-------------------------------------------*/
#footer {
  font-size: 0.875rem;
  background-color: #f7f7f7;
}
#footer .content {
  display: flex;
  justify-content: space-between;
  padding-top: 50px;
}
#footer .item {
  width: 30%;
}
#footer .footer-title {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 30px;
}
#footer ul.about-list {
  margin: 20px 0;
}
#footer ul.about-list li {
  margin-bottom: 5px;
}
#footer ul.about-list .arrow {
  position: relative;
  display: inline-block;
  padding-left: 12px;
  color: #333;
}
/*
疑似要素で三角矢印を表示
border～プロパティで三角を作り、positionで位置調整
*/
#footer ul.about-list .arrow::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #333;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -6px;
}
#footer .menu-list {
  border-bottom: solid  1px #777;
}
#footer .menu-list > li {
  border-top: solid  1px #777;
  padding: 15px;
  text-align: left;
}
#footer .copyright {
  font-size: 0.750rem;
  text-align: center;
  padding: 10px 0;
}

@media (min-width: 992px){
}
/* header（デモの参考値） */
.demobox-header{
	background: #333;
	padding: 1em;
}
.demobox-sitename{
	font-weight: 700;
	font-size: 18px;
}
/* 全体調整CSS */
.hamburger-demo-menubox li{
	font-size: 14px;
}
/* hamburgerここから */
	/* inpu非表示 */
.input-hidden{
	display: none;
}
	/* label */
.hamburger-demo-switch{
	cursor: pointer;
	position: absolute;
	right: 2%;
	top: 0;
	z-index: 9999;
}
/* メニュー展開時にハンバーガーアイコンを固定 */
#hamburger-demo5:checked ~ .hamburger-demo-switch{
	position: fixed;
}
/* メニューリスト */
.hamburger-demo-menulist{
	margin-right: 3%;
	padding-left: 5% !important; /* !importantは不要な場合あり */
	list-style: none;
}
.hamburger-demo-menulist li a{
	text-decoration: none;
	color: #333;
	display: block;
	padding: .5em 0;
}
	/* コンテンツカバー */
#hamburger-demo5:checked ~ .hamburger-demo-closelabel{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
#hamburger-demo5:checked ~ .hamburger-demo-closelabel .hamburger-demo-cover{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 9997;
	background: rgba(3,3,3,.5);
	display: block;
	cursor: pointer;
}
/* バインダーデザイン */
	/* バインダー全体共通absolute */
.hamburger-demo-switch5:before, .hamburger-demo-switch5:after, .hamburger-switch-binder:before, .hamburger-menulist-binder, .hamburger-menuwrap-binder:before, .hamburger-menuwrap-binder:after, .hamburger-menulist-binder li:before, .hamburger-menulist-binder li:after{
	content: "";
	position: absolute;
}
	/* スイッチ用バインダーボード */
.hamburger-demo-switch5{
	background: #c5955c;
	width: 3em;
	height: 3.5em;
	transform: translate(0, -70%);
	border-radius: 5px;
}
	/* メニューリスト用ボード */
.hamburger-menuwrap-binder{
	position: fixed;
	background: #c5955c;
	border-radius: 10px;
	height: 96%;
	width: 70%;
	top: 2%;
	right: 100%;
	transition: .3s;
	z-index: 9998;
}
#hamburger-demo5:checked ~ .hamburger-menuwrap-binder{
	right: 28%;
}
	/* バインダー用紙部分 */
.hamburger-demo-switch5:before, .hamburger-menulist-binder{
	width: 90%;
	height: 80%;
	background: #fff;
	left: 50%;
	transform: translateX(-50%);
}
	/* メニューリストバインダー用紙調整 */
.hamburger-menulist-binder{
	z-index: -1;
	padding-top: 2em !important; /* 通常は!important不要 */
	overflow-y: scroll;
}
	/* 留め具軸 */
.hamburger-demo-switch5:after, .hamburger-menuwrap-binder:after{
	width: 50%;
	height: 7%;
	background: #777;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
	/* 留め具 */
.hamburger-switch-binder:before, .hamburger-menuwrap-binder:before{
	width: 75%;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
}
	/* スイッチ用の留め具ボーダー */
.hamburger-switch-binder:before{
	border: 2px solid #c0c0c0;
	border-radius: 3px;
}
	/* メニューリストの留め具ボーダー */
.hamburger-menuwrap-binder:before{
	border: 5px solid #c0c0c0;
	border-radius: 5px;
}
	/* スイッチMENU文字 */
.hamburger-switch-binder:after{
	content: "MENU";
	position: absolute;
	font-size: 12px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -40%);
}
#hamburger-demo5:checked ~ .hamburger-demo-switch5 .hamburger-switch-binder:after{
	content: "CLOSE";
}
	/* バインダーメニューの下線 */
.hamburger-menulist-binder li{
	border-bottom: 1px dashed #ddd;
	padding-left: 2em;
	position: relative;
	margin-right: 5%;
}
/* メニューリストのチェックマーク */
	/* チェックボックス */
.hamburger-menulist-binder li:before{
	width: 1em;
	height: 1em;
	border: 1px solid #333;
	top: 50%;
	left: 0;
	transform: translate(30%, -50%);
}
	/* チェックマーク */
.hamburger-menulist-binder li:after{
	width: 1em;
	height: 1.5em;
	border: 3px solid;
	border-color: transparent red red transparent;
	top: 50%;
	left: 0;
	transform: rotate(45deg) translate(-65%, -75%);
}
/* PCではハンバーガーメニューを表示しない */
/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 400px) {
  /*-------------------------------------------
  header
  -------------------------------------------*/
  #header .site-title {
    padding: 20px 16px;
  }
  #navi {
    /* 横スクロールを表示 */
    overflow-x: scroll;
  }

  /*-------------------------------------------
  pickup
  -------------------------------------------*/
  #pickup {
    flex-direction: column;
    padding-top: 100px;
	text-align: center;
  }
  #pickup article {
    width: 100%;
    margin-bottom: 30px;
	text-align: center;
  }

  /*-------------------------------------------
  container
  -------------------------------------------*/
  #container {
    flex-direction: column;
  }
  main {
    width: 100%;
  }
	
	dl {
		text-align: center;
		
	}
  /*-------------------------------------------
  aside
  -------------------------------------------*/
  #sidebar {
    width: 100%;
    padding: 0;
  }
  .section-title {
    margin-bottom: 34px;
  }
  .section-title .ja {
    margin-bottom: 24px;
  }
   #company {
    height: auto;
    position: static;
  }
  /*
  「position: static;」でabsoluteを解除
  */
	#company .img {
		position: absolute;
		right: 0;
		padding-top: 100px;
	}
  #company .text {
    width: 100%;
    padding: 40px 20px;
    margin-bottom: 1000px;
    position: static;
  }
  /*
  「position: static;」でabsoluteを解除
  */
#company .info {

  align-items: center;

}
#company .info dt {
  width: 20%;
  margin-top: 10px;
}
/*
1つめのdtにはmargin-topを設定しない
*/
#company .info dt:first-of-type {
  margin-top: 0;
}
#company .info dd {
  width: 80%;
  margin-top: 10px;
}
/*
1つめのddにはmargin-topを設定しない
*/
#company .info dd:first-of-type {
  margin-top: 0;
}
#company .info .add {
  margin-left: 20%;
}
.cast figure {
	margin: 0 0 0px 85px;
	width: 210px;
	float: left;
	margin-top: 5px;
}
.tenpo figure {
	margin: 0px 0 10px 70px;
	float: left;
	margin-top: 5px;
}

  /*-------------------------------------------
  footer
  -------------------------------------------*/
  #footer .content {
    flex-direction: column;
  }
  #footer .item {
    width: 100%;
    margin-bottom: 30px;
  }
}
