@charset "UTF-8";
/* CSS Document */
/* ---------------
Common
Drawer
Header
Footer
Contents
--------------- */
/* Common
=================================================== */
html {
  overflow-y: scroll;
  font-size: 14px;
  width: 100%;
  scroll-behavior: smooth;
}
body {
  background-color: #FAF8F2;
  background-repeat: no-repeat;
  background-position: center top;
  letter-spacing: 0.04em;
  width: 100%;
  font-family: 'Outfit',"Zen Old Mincho", YuGothic,Noto Sans Japanese,Noto Sans JP, sans-serif;
  color: #333333;
}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,p,blockquote,table,th,td {
  line-height: 1.6;
  box-sizing: border-box;
  margin-top: 0;
}
a,
img,
fill,
stroke,
button {
  display: inline-block;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
a:link {
  color: #333333;
  text-decoration: none;
}
a:visited {
  color: #333333;
  text-decoration: none;
}
a:hover {
  color: #333333;
  text-decoration: none;
}
a:active {
  color: #333333;
  text-decoration: none;
}
a:focus {
  outline: none;
}
img {
  vertical-align: top;
  width: auto;
  max-width: 100%;
  height: auto;
}
ul {
    list-style-type: none;
    padding-left: 0;
}
span{
  letter-spacing: 1px;
}
nav ul li a{
	padding: 10px 12px;
}
.pc{
	display: block;
}
.sp{
	display: none;
}
.font-xs{
	font-size: 14px!important;
}
.center {
    text-align: center;
}

@media screen and (max-width: 480px){
	.pc{
		display: none!important;
	}
	.sp{
		display: block!important;
	}
}

/*==================================================
　HEADER - グローバルナビ・ハンバーガーメニュー・共通エリア
===================================*/

#header{
    /*はじめの高さを設定*/
	height: 50px;
	width:100%;
	position: fixed;
	padding: 0 30px;
	background: #FAF8F2;
	border-bottom: 1px solid #333333;
	top: 0;
	z-index:100;
}

/*HeightMinというクラス名がついたら高さを小さく、上部固定に*/
#header.HeightMin{
  position: fixed;
  z-index: 100;/*最前面へ*/
  height:50px;
  animation: DownAnime 0.5s forwards;
}
#header img {
    width: 200px;
}
@keyframes DownAnime{
  from {
    opacity: 0;
  transform: translateY(-170px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}

h1 {
    height: 16px;
	padding-left: 40px;
}

nav ul.g-navi{
list-style: none;
display: flex;
justify-content: center;
}

nav ul.g-navi li a{
text-decoration: none;
color: #666;
padding:2px 10px;
}

section{
padding:150px 0;
}
section#kv{
padding:0;
}


/*========
　5-2-2 2本線が×になるMENU
==========*/

/*　ボタン外側　*/
.openbtn2{
  position: fixed;/*ボタン内側の基点となるためrelativeを指定*/
  width: 50px;
  height:50px;
  cursor: pointer;
  top: 0;
  right: 0px;
  z-index: 500;
  border-left: 1px solid #333333;
	font-size: 12px;
	padding-left: 11px;
	padding-top: 22px;
}
  
/*　ボタン内側　*/
.openbtn2 span{
  display: inline-block;
  transition: all .4s;/*アニメーションの設定*/
  position: absolute;
  left: 13px;
  height: 1.2px;
  background-color: #333333;
  }

.openbtn2 span:nth-of-type(1) {
  top:15px; 
    width: 50%;
}

.openbtn2 span:nth-of-type(2) {
  top:23px;
    width:30%;
}

/*　activeクラスが付与されると線が回転して×に　*/
.openbtn2.active span:nth-of-type(1) {
    top: 18px;
    left: 16px;
    transform: translateY(6px) rotate(-45deg);
    width: 35%;
}

.openbtn2.active span:nth-of-type(2) {
    top: 30px;
    left: 16px;
    transform: translateY(-6px) rotate(45deg);
    width: 35%;
}

/*　開くメニュー　*/
.openbtn2.active{
	border-bottom: 1px solid #333333;
	color: #FAF8F2;
}
#gnav{
position:fixed;
z-index: 300;
/*ナビのスタート位置と形状*/
top:0;
right: -120%;
width:100%;
/*height: 100vh;ナビの高さ*/
height:100vh;
/*動き*/
transition: all 0.6s;
}

/*　アクティブクラスがついたら位置を0に　*/
#gnav.panelactive{
    right: 0;
}

/*　ナビゲーションの縦スクロール　*/
#gnav.panelactive #gnav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 300; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
	background:#FAF8F2;
}

/*　ナビゲーション　*/
#gnav ul {
    /*ナビゲーション天地中央揃え*/
    position: relative;
    z-index: 300;
	display: block;
    text-align: center;
    font-size: 18px;
    width: 300px;
    margin: 0 auto;
	margin-top: 40px;
}

/*　リストのレイアウト設定　*/
#gnav li{
  list-style: none;
  text-align: center;
}

#gnav li a{
  color: #080808;
  text-decoration: none;
  padding:20px;
  display: block;
  letter-spacing: 0.1em;
  line-height: 1.5;
  padding-bottom: 10px;
}

#star #g-navi li a {
    padding-right: 20px;
}

#star #gnav-list p {
    font-size: 20px;
    margin: 0 auto;
    margin-top: 40px;
    text-align: center;
    line-height: 1.5;
    color: #fff;
    width: 300px;
    padding-bottom: 20px;
    border-bottom: 3px dotted rgb(255,255,255,0.5);
}

#star #gnav ul {
    margin-top: 20px;
}

/*========= ボタンのスタイル ===============*/

/*表示するテキストが切り替わる*/
.btntextchange{
  /*テキストの基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  border: 1px solid #fff;
  background:#fff;
  border-radius:25px;
  min-width:210px;
  padding: 20px;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  color: #333;
  outline: none;
  /*アニメーションの指定*/
  transition: all .2s;
}

.box-area .btntextchange,.box-area .btntextchange:hover,.modaal-container .btntextchange,.modaal-container .btntextchange:hover{
  border: 1px solid #5da9bb;
}

/*hoverした際の変化
.btntextchange:hover{
  background:#5da9bb;
  color:#fff;
  border: 1px solid #fff;
}*/

.btntextchange span{
    /*絶対配置でテキストの位置を決める*/
  position: absolute;
  left: 50%;
  top:50%;
    transform:translate(-50%,-50%);
    /*アニメーションの指定*/
    transition: all .5s;
  /*ブロック要素にしてテキスト折り返しなし*/  
  display: block;
  white-space: nowrap;
}
.btntextchange span:nth-child(1){
  font-size: 16px;
}
.btntextchange span:nth-child(2){
  font-size: 14px;
}

/*差し替わるテキストの設定*/
.btntextchange span:nth-child(2){
  opacity:0;/*透過0に*/
}

/*hoverするとテキストが入れ替わる設定*/
.btntextchange:hover span:nth-child(1){
  opacity:0;/*透過0に*/
}

.btntextchange:hover span:nth-child(2){
  opacity:1;/*不透明に*/
}

.comsoon {
    pointer-events: none;
    border: 1px solid #ccc!important;
    color: #ccc!important;
}
.modaal-content-container ul {
    /*max-width: 720px;*/
	max-width: 500px;
    width: 100%;
    margin: 0 auto;
	overflow-wrap:break-word;
	padding-left: 1.3rem;
}

.list_dot > li {
    padding: 0 0 0 1em;
    position: relative;
}
.list_dot > li:before {
    content: "・";
    width: 1em;
    height: 1em;
    display: block;
    position: absolute;
    left: 0;
    top: center;
}
.modaal-content-container li {
    list-style: circle;
    padding-left: 2px;
    padding-bottom: 10px;
}
.modaal-content-container ul.list_star {
    padding: 0;
}
.modaal-content-container li .list_star li{
	list-style: none;
	padding-bottom: 0;
	padding-left: 0;
}
.fa-star:before {
    color: #ccc;
	padding-right: 4px;
}
.modaal-content-container ul.list_atte{
	padding-left: 0;
}
.list_atte > li {
    padding-left: 1.2em;
    position: relative;
	list-style:none;
}
.list_atte > li::before, .atte::before {
    content: "※";
    position: absolute;
    left: 0;
    top: 0;
}

/*==================================================
　HOME - トップページコンテンツ
===================================*/
section#kv {
    padding-top: 0px;
    background: none;
	position: relative;
	border-bottom: 1px solid #333333;
}
section#about, section#program, section#contact{
	border-bottom: 1px solid #333333;
}
.wide{
	width: 100%;
	background: #5DA9BB;
	color: #fff;
}
.wrapper{
	width:86%;
	max-width: 800px;
	margin: 0 auto;
}
.wrap{
	width:86%;
	max-width: 580px;
	margin: 0 auto;
}
section#kv{
	margin-bottom: 0;
}
div#about {
    margin-top: -500px;
    padding-top: 100px;
}

section:nth-child(2n) {
    background: #FAF8F2;
}
section#company {
    padding-bottom: 80px;
}
h3{
	font-size: 28px;
	margin-top: 40px;
	margin-bottom: 80px;
	font-weight: 300;
    letter-spacing: 2px;
}
.wide h3{
    -webkit-text-stroke: 0.5px #fff;
}

h4 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
	font-weight: 300;
    /* -webkit-text-stroke: 0.5px #080808;*/
    letter-spacing: 1.5px;
}

p{
	font-size: 16px;/* 14px　*/
	margin-bottom: 20px;
}
img {
    margin-bottom: 10px;
	width: 100%;
}
.kv img {
	width: 254px;
	margin: 0 auto;
	margin-top: 170px;
	margin-bottom: 200px;
}
@media screen and (max-width: 480px){
.kv img {
	margin-top: 300px;
	margin-bottom: 300px;
}
}
.font_xs{
	font-size: 14px!important;
}
.font_xxs{
	font-size: 12px!important;
}
.font_m{
	font-size: 16px!important;
}

.bnr {
	width: 60%;
    margin: 0 auto;
}

#gnav-list .bnr{
    margin-top: 50px;
}

ul.flex {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
	justify-content: center;
}

.box-area ul.flex > li {
    width: 310px;
    background: #fff;
    border-radius: 2rem;
    padding: 30px;
    margin: 10px;
    margin-bottom: 30px;
	color: #080808;
}

.tablebox {
    border-radius: 1rem;
    background: #fff;
	border: 2px solid #FAF8F2;
    box-sizing: border-box;
	margin-bottom: 50px;
}
.text {
    margin-bottom: 30px;
}
.text > h3 {
    margin-top: 30px;
}
.main {
    background: #fff;
    border-radius: 2rem;
    color: #333;
	padding: 50px;
	height: 100%;
}
.main h4 span{
	color: #5DA9BB;
	-webkit-text-stroke: 0.5px #5DA9BB;
}
.main .btntextchange {
    border: 1px solid #5da9bb;
	width: 300px;
	max-width: 100%;
	height: 70px;
    line-height: 1.6;
}
.next img{
	width: 34px;
	margin: 40px auto;
}
.main .wrap {
    width: 100%;
	max-width: 680px;
}
table {
    border-collapse: collapse;
}

th {
    width: 20%;
	border-bottom: 2px solid #FAF8F2;
    padding: 20px 0;
	font-weight: 300;
}
td {
	border-bottom: 2px solid #FAF8F2;
    padding: 20px 0;
	padding-right: 50px;
}
tr:last-child th,tr:last-child td {
	border-bottom: none;
}

.copy{
	display: grid;
	background:  #333333;
	height: 40px;
	text-align: center;
	align-content: center;
	color: #fff;
}
.bnr_area {
    display: flex;
    width: 600px;
    max-width: 70%;
    margin: 0 auto;
}
.bnr_area a {
    width: 250px;
    margin: 0 auto;
}
.bnr_area a:hover img {
	opacity: 0.8;
}

/*.modaal-outer-wrapper {
    height: auto!important;
}*/

.img {
    width: 100%;
    margin: 0 auto;
    max-width: 500px;
	margin-bottom: 20px;
}

.mb00{
	margin-bottom: 0!important;
}
.mb10{
	margin-bottom: 10px!important;
}
.mb20{
	margin-bottom: 20px!important;
}
.mb30{
	margin-bottom: 30px!important;
}
.mb40{
	margin-bottom: 40px!important;
}
.mb50{
	margin-bottom: 50px!important;
}
.mb60{
	margin-bottom: 60px!important;
}
.mb80{
	margin-bottom: 80px!important;
}
.mb100{
	margin-bottom: 100px!important;
}
@media screen and (max-width: 480px){
h1 {
	padding-left: 0px;
}
.box-area li {
    width: 100%;
}
th {
    width: 30%;
}
td {
    padding-right: 20px;
}
.bnr_area {
    flex-wrap: wrap;
}
.bnr_area a {
    width: 100%;
}

.slick-list.draggable {
    height: 380px;
}
.main{
	padding: 30px;
}
}

.contact img {
	width: 200px;
}

/*　研修　*/
.program{
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.program .text{
	width: 46%;
	padding: 10px;
}
#program .list_dot > li {
    font-size: 16px;
    line-height: 1.8;
}

@media screen and (max-width: 480px){
.program{
	display: block;
}
.program .text{
	width: 100%;
}
#program p.center{
	text-align: left;
}
}

/*　プロフィール　*/

.profile{
	width: 100%;
	display: flex;
}
.profile .img{
	width: 30%;
	margin-bottom: 0;
}
.profile .text{
	width: 60%;
	margin-bottom: 0;
}
.profile .text span{
	font-size: 14px;
}
.profile .text h4{
	text-align: left;
	font-size: 18px;
	margin-bottom: 10px;
}

nav ul li:first-child a:hover{
	color: #B23E33;
}
nav ul li:nth-child(2) a:hover{
	color: #1A3988;
}
nav ul li:nth-child(3) a:hover{
	color: #62934E;
}
nav ul li:nth-child(4) a:hover{
	color: #D56616;
}

p.top img {
    width: 42px;
    position: fixed;
    right: 20px;
    bottom: 10px;
}
.bnr_area a:first-child{
	margin-right: 20px;
}
@media screen and (max-width: 480px){
p.top img {
    width: 48px;
    right: 10px;
    bottom: 30px;
}
.bnr_area a:first-child{
	margin-right: 0;
}
iframe {
    width: 100%;
}
}

/*　↑　おわり　*/
