﻿@charset "UTF-8";
@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url('//fonts.googleapis.com/css?family=Quicksand:300,400,500,700');
@import url('//fonts.googleapis.com/css?family=Muli:200,300,400,600,700,800,900');


/*-------------------------
ヘッダー
--------------------------*/
header {
  width: 100%;
  margin: 0;
  padding: 15px 25px;
}
.headwrap{
  width:100%;
  margin: auto;
  padding:0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: flex-start;
  align-items: center;
}
.headlogo {
  width:100%;
  max-width:300px;
  margin:0 15px 0 0;
}
.headlogo img {
  max-width: 240px;
}
.headinfo {
  box-sizing: border-box;
  max-width: 100%;
  flex: 1;
  text-align: right;
}
@media screen and (max-width: 960px) {
.headlogo img {
  max-width: 200px;
  }
}
@media screen and (max-width: 767px) {
header {
  padding: 15px 20px;
  }
.headlogo {
  width:100%;
  max-width:100%;
  margin:0 auto;
  }
.headlogo img {
  max-width: 160px;
  }
.headinfo {
  display: none;
  }
}

/*h1タグ*/
.headtitle {
  font-size: 0.9em;
  color: #A8A8B7;
  font-family: "Noto Sans Japanese", sans-serif;
  line-height:1.6;
  font-weight: 600;
  margin: 10px 0 0;
}
@media screen and (max-width: 960px) {
.headtitle {
  font-size: 0.85em;
  }
}
@media screen and (max-width: 640px) {
.headtitle {
  margin: 5px 0 0;
  }
}

/*ヘッダーイメージ*/
.headimg {
  width: 100%;
  height: 600px;
  position: relative;
  background-position:center center;
  background-repeat:no-repeat;
  -moz-background-size:cover;
  background-size:cover;
  background-image: url(../img/header_bg.png);
}
.headimg img {
  position: absolute;
  width: 100%;
  max-width: 880px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  padding: 15px;
}
@media(max-width:840px){
.headimg {
  height: 460px;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-image: url(../img/header_bg.png);
	}
}
@media(max-width:640px){
.headimg {
  height: 340px;
	}
}
@media(max-width:460px){
.headimg {
  height: 240px;
	}
}

/*-------------------------
ヘッダーキャッチ部
--------------------------*/
.headcatch {
  width:100%;
  height: auto;
  margin: auto;
  padding:0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 20px;
}
.headcatch1 {
  width: 20%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  background-image: url(../img/headimg1.png);
}
.headcatch2 {
  width: 60%;
  padding: 40px 20px 20px;
  text-align: center;
  background: -moz-linear-gradient(top, #FFE9A8, #FFF);
  background: -webkit-linear-gradient(top, #FFE9A8, #FFF);
  background: linear-gradient(to bottom, #FFE9A8, #FFF);
  line-height: 2;
}
.headcatch h2{
  font-size: 1.2em;
  font-weight: bold;
  color: #D2592F;
}
.headcatch3 {
  width: 20%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
  background-image: url(../img/headimg2.png);
}

@media screen and (max-width: 960px) {
.headcatch1,
.headcatch3 {
  display: none;
  }
.headcatch2 {
  width: 100%;
  }
}
@media screen and (max-width: 767px) {
.headcatch {
  margin-bottom: 0;
  }
.headcatch2 {
  text-align: left;
  padding: 30px 20px 15px;
  line-height: 1.8;
  }
.headcatch h2{
  font-size: 1em;
  }
}






/*-------------------------
ナビゲーション
--------------------------*/
nav {
  width: 100%;
  padding: 20px 20px;
  margin: 0 0 20px;
}
@media screen and (max-width: 640px) {
nav {
  margin: 0 0 0;
  }
}
.anchorlink {
  width:100%;
  margin: auto;
  padding:0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: center;
  align-items:flex-start;
  flex-wrap: wrap;
}
.anchorlink li {
  padding:0 25px 0 0;
  box-sizing: border-box;
}
@media screen and (max-width: 1120px) {
.anchorlink {
  justify-content: flex-start;
  }
.anchorlink li {
  padding:0 20px 5px 0;
  font-size: 0.9em;
  }
}
@media screen and (max-width: 640px) {
.anchorlink {
  flex-direction: column;
  display:block;
  }
.anchorlink li {
  width: 100%;
  max-width:100%;
  padding:0 0 8px 0;
  }
}
.anchorbtn {
	position:relative;
	line-height:1.4;
	padding-left:1.3em;
  font-weight: bold;
  font-size: 1em;
  text-decoration: none !important;
  color: #333 !important;
  font-weight: bold;
}
.anchorbtn:before{
	position:absolute;
	left:0;
	content:"";
	display:inline-block;
	width:1em;
	height:1em;
	background:url(../img/icon_anchor.png) no-repeat;
	background-size:contain;
  margin: 6px 0 0;
}
@media screen and (max-width: 640px) {
.anchorbtn:before{
  margin: 3px 0 0;
  }
}

/*-------------------------
フッター
--------------------------*/
footer {
  width: 100%;
  margin: 60px 0 0;
  padding: 30px 20px 20px;
  text-align: center;
  background: #EEE;
}
.footlogo{
  width:100%;
  max-width:200px;
}
.copyright {
  font-family: 'Quicksand', sans-serif;
  line-height: 100%;
  color: #79796A;
  font-size: 0.75em;
  margin-top: 20px;
  }
@media screen and (max-width: 640px) {
footer {
  margin: 40px 0 0;
  padding: 20px 20px 15px;
  }
.footlogo{
  max-width:160px;
  }
}

/*h1タグ*/
.foottitle {
  font-size: 0.85em;
  color: #D2592F;
  font-family: "Noto Sans Japanese", sans-serif;
  line-height:1.6;
  font-weight: 600;
  margin: 10px 0 0;
  margin-bottom: 15px;
}

/*-------------------------
サブタイトル
--------------------------*/
.subtitle {
  position: relative;
  padding: 30px 20px;
  background-color: #F2AF3B;
  color: #FFF;
  margin-bottom: 50px;
  text-align: center;
}
.subtitle::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 0;
  right: 0;
  bottom: -20px;
  margin: 0 auto;
  border-top: 20px solid #F2AF3B;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
}
.subtitle img {
  width: 100%;
  max-width: 240px;
  margin-bottom: 15px;
}
.subtitle h3 {
  font-family: "Noto Sans Japanese", sans-serif;
  line-height:1.6;
  font-size: 1.6em;
  font-weight: 600;
}

@media screen and (max-width: 640px) {
.subtitle {
  padding: 20px 20px;
  margin-bottom: 40px;
  }
.subtitle img {
  max-width: 180px;
  margin-bottom: 10px;
  }
.subtitle h3 {
  font-size: 1.3em;
  }
}

/*-------------------------
アイコン付きTELリンク
--------------------------*/
.tel {
  font-size:2em;
  line-height:100%;
  padding:0;
  font-weight:normal;
  font-family: 'Quicksand', sans-serif;
}
.tel :before {
  content:"";
  display:inline-block;
  width:0.9em;
  height:0.9em;
  background:url(../img/icon_tel.png) no-repeat;
  background-size:contain;
  padding-left:1.1em;
  vertical-align:bottom;
}
.tel a{
  text-decoration:none;
  color:#333;
  font-weight:normal;
}

/*-------------------------
グレー角丸背景
--------------------------*/
.graybox {
  width: 100%;
  padding: 20px;
  background: #EEE;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}
@media screen and (max-width: 640px) {
.graybox {
  padding: 15px;
  }
}

/*-------------------------
文頭黄色丸付き見出し
--------------------------*/
.iconchap {
  background: url(../img/icon_star.png) no-repeat;
  background-position:0 2px;
  background-size: 1.3em;
  padding:0 0 0 1.7em;
  font-weight: bold;
  font-size: 1.1em;
}

/*-------------------------
導入枠
--------------------------*/
.advantagepc {
  display:block;
}
.advantagesp {
  display:none;
}
@media(max-width:540px){
.advantagepc {
  display:none;
  }
.advantagesp {
  display:block;
  }
}

/*-------------------------
4つの特徴
--------------------------*/
.pointcolumn {
  width:100%;
  margin: auto;
  padding:0 0 15px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: center;
  align-items: center;
}
.pointcolumn_img {
  max-width: 160px;
  margin:0 30px 0 0;
}
.pointcolumn_text {
  flex: 1;
}
@media screen and (max-width: 840px) {
.pointcolumn {
  align-items: flex-start;
  }
}
@media screen and (max-width: 640px) {
.pointcolumn {
  flex-direction: column;
  display:block;
  }
.pointcolumn_img {
  max-width: 100%;
  margin:0 0 12px 0;
  }
.pointcolumn_img img {
  max-width: 80px;
  }
}

/*-------------------------
スケジュール＆プログラム内容
--------------------------*/
.scheduletable {
  width: 100%;
  border-collapse: collapse;
  line-height: 1.6;
  table-layout: fixed;
}
.scheduletable th{
  padding: 3px 8px;
  text-align: center;
  vertical-align: middle;
  background-color: #F5F5F5;
  border: 1px solid #666;
  font-weight:bold;
  font-size: 0.85em;
  color: #666;
}
.scheduletable td{
  padding: 8px 12px;
  background-color: #FFF;
  vertical-align: middle;
  border: 1px solid #666;
  font-size: 0.9em;
}
summary {
  cursor: pointer;
  outline: none;
  margin: 3px 0;
  font-weight: bold;
}
.cell_pgm {
  width: 54%;
}
.cell_cat {
  width: 20%;
}
.cell_time {
  width: 15%;
}
@media screen and (max-width: 840px) {
.cell_pgm {
  width: 40%;
  }
.cell_cat {
  width: auto;
  }
.cell_time {
  width: auto;
  }
}
@media screen and (max-width: 640px) {
summary {
  font-weight: normal;
}
}

/* セル背景色 */
.cat0{
  background: #EEE !important;
}
.cat1{
  background: #FFD9B2 !important;
}
.cat2{
  background: #B2E3F4 !important;
}
.cat3{
  background: #FFD9EC !important;
}
.cat4{
  background: #CDE8B2 !important;
}

@media screen and (max-width: 640px) {
.scheduletable {
  font-size: 0.9em;
  }
.scheduletable th{
  padding: 2px 5px;
  }
.scheduletable td{
  padding: 5px 8px;
  }
}

/*-------------------------
株式会社ライズについて
--------------------------*/
.riselogo{
  width:100%;
  max-width:240px;
  margin-bottom: 15px;
}
@media screen and (max-width: 640px) {
.riselogo{
  max-width:160px;
  }
}

/*-------------------------
フォーム
--------------------------*/
.scheduletable2 {
  width: 100%;
  border-collapse: collapse;
  line-height: 1.6;
}
.scheduletable2 th{
  padding: 3px 8px;
  text-align: center;
  vertical-align: middle;
  background-color: #999;
  font-weight:bold;
  font-size: 0.85em;
  color: #FFF;
}
.scheduletable2 td{
  padding: 8px 12px;
  background-color: #FFF;
  vertical-align: middle;
  font-size: 0.9em;
  border-bottom: 1px solid #999;
}

.scheduletable2 td {
	background: #FFF;
}
.scheduletable2 tr:nth-child(odd) td {
	background: #F5F5F5;
}

@media screen and (max-width: 640px) {
.scheduletable2 {
  font-size: 1em;
  }
.scheduletable2 th{
  padding: 2px 5px;
  }
.scheduletable2 td{
  padding: 5px 8px;
  }
.st2cat{
  font-size: 0.8em !important;
  }
}

/*-------------------------
オンライン新入社員研修について 
--------------------------*/
.notetable {
  width: 100%;
  border-collapse: collapse;
}
.notetable tr{
  border: 1px solid #A7A2A1;
}
.notetable th{
  width: 35%;
  padding: 15px 20px;
  text-align:left;
  vertical-align: middle;
  background-color: #EAE9E8;
  font-weight:bold;
  line-height: 1.6;
}
.notetable td{
  width: 65%;
  padding: 15px 20px;
  background-color: #FFF;
  text-align:left;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
.notetable th,
.notetable td {
  display:block;
  width:100%;
  }
.notetable th{
  padding: 6px 12px;
  }
.notetable td{
  padding: 6px 12px;
  }
}



