@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',"游ゴシック", YuGothic,Noto Sans Japanese,Noto Sans JP, sans-serif;
  /*font-family: 'Outfit',Noto Sans Japanese,Noto Sans JP,sans-serif;*/
  /*font-family: 'Outfit',"Sawarabi Gothic",sans-serif;*/
  /*font-family: 'Outfit',"見出ゴMB31",sans-serif;*/
  color: #080808;
  font-size: 0.875;
}
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.8;
  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: #5da9bb;
  text-decoration: none;
}
a:visited {
  color: #5da9bb;
  text-decoration: none;
}
a:hover {
  color: #5da9bb;
  text-decoration: none;
}
a:active {
  color: #5da9bb;
  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{
  font-style: italic;
  letter-spacing: 1.5px;
}
.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: 100px;
	width:100%;
	/*以下はレイアウトのためのCSS*/
	display: flex;
	justify-content: space-between;
	align-items: center;
	color:#fff;
	text-align: center;
	padding: 40px;
	background: #FAF8F2;
}

/*HeightMinというクラス名がついたら高さを小さく、上部固定に*/
#header.HeightMin{
  position: fixed;
  z-index: 100;/*最前面へ*/
  height:70px;
  animation: DownAnime 0.5s forwards;
	border-bottom: 1.5px solid #5da9bb;
}

@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:300px 0;
}

/*======
　5-3-1 中心から外に線が伸びる（下部）
========*/

#g-navi li a{
    /*線の基点とするためrelativeを指定*/
  position: relative;
  padding-bottom: 4px;
  margin-bottom: 10px;
  color: #080808;
}

#g-navi li.current a,
#g-navi li a:hover{
  color:#5da9bb;
}

#g-navi li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    left: 10%;
    /*線の形状*/
    width: 80%;
    height: 2px;
    background:#5da9bb;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: center top;/*上部中央基点*/
}

/*現在地とhoverの設定*/
#g-navi li.current a::after,
#g-navi li a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}

/*========
　5-2-2 2本線が×に
==========*/

/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn2{
  position: fixed;/*ボタン内側の基点となるためrelativeを指定*/
  width: 50px;
  height:50px;
  cursor: pointer;
  background:#fff;
  top: 15px;
  right: 20px;
  z-index: 500;
  border-radius: 1rem;
}
  
/*ボタン内側*/

.openbtn2 span{
  display: inline-block;
  transition: all .4s;/*アニメーションの設定*/
  position: absolute;
  left: 13px;
  height: 2px;
  background-color: #666;
  }


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

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

/*activeクラスが付与されると線が回転して×に*/

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

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

/*========= 開くメニュー ===============*/

#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:#5DA9BB;
}

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

/*リストのレイアウト設定*/

#gnav li{
  list-style: none;
  text-align: center;
}

#gnav li a{
  color: #fff;
  text-decoration: none;
  padding:10px;
  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;
}

/*========= ページトップのためのCSS ===============*/

/*スクロールリンクの形状*/
.scroll-top {
  /*表示位置*/
  position: fixed;
  right: 20px;
  bottom: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  visibility: hidden; 
  transition: opacity .5s, visibility .5s; /*それぞれに0.5秒の変化のアニメーション*/
  /*縦書き*/
  -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  /*改行禁止*/
    white-space: nowrap;
  /*矢印の動き*/
  animation: arrowmove 1s ease-in-out infinite;
}

@keyframes arrowmove{
      0%{bottom:20px;}
      50%{bottom:25px;}
     100%{bottom:20px;}
 }


/*.scroll-viewクラスがついたら出現*/
.scroll-top.scroll-view {
  opacity: 1;
  visibility: visible;
}

/*リンク全体の aタグの形状*/
.scroll-top a {
  text-decoration: none;
  color: #333;
  text-transform: uppercase;
  font-size:0.9rem;
    display: block;
}

/*スクロールリンクの形状*/

.js-scroll a::after{
  content:"";
  position: absolute;
  top:0;
  right:-2px;
  width:1px;
  height: 50px;
  background:#333;
}

.js-scroll a::before {
    content: "";
    position: absolute;
    top: 40px;
    right: -5px;
    width: 1px;
    height: 10px;
    background: #333;
    transform: skewX(-31deg);
}

/*Edge IE11 hack*/
_:-ms-lang(x), .js-scroll a::before{
  right:-11px;
}

/*ページトップリンクの形状*/

.js-pagetop a::after{
  content:"";
  position: absolute;
  top:0;
  right:-2px;
  width:1px;
  height: 50px;
  background:#333;
}

.js-pagetop a::before {
    content: "";
    position: absolute;
    top: 0;
    right: -5px;
    width: 1px;
    height: 10px;
    background: #333;
    transform: skewX(31deg);
}

/*Edge IE11 hack*/
_:-ms-lang(x), .js-pagetop a::before{
  right:0;
}

.rotate span {
  display: inline-block;
  transform: rotate(-90deg);
  margin-bottom: 3px;
  font-style: normal;
}

.js-pagetop .rotate span:nth-child(4) {
    margin-bottom: 3px;
}

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

/*表示するテキストが切り替わる*/
.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;
}
.wide{
	width: 100%;
	background: #5DA9BB;
	color: #fff;
}
.wrapper{
	width:86%;
	max-width: 1000px;
	margin: 0 auto;
}
.wrap{
	width:86%;
	max-width: 800px;
	margin: 0 auto;
}
section#kv, section#about, section#story{
	margin-bottom: -200px;
}
section#story .wrapper, section#about .wrapper, section#service .wrapper,
section#works .wrapper, section#company .wrap {
    margin-top: -200px;
}
section#works, section#service, section#company{
	padding-bottom: 100px;
}
div#about {
    margin-top: -100px;
    padding-top: 100px;
}

#star section#about {
    margin-bottom: 0px;
    padding-bottom: 120px;
}

section:nth-child(2n) {
    background: #FAF8F2;
}
section#company {
    background: none;
}
h3{
	font-size: 32px;
	margin-bottom: 20px;
	font-weight: 300;
    letter-spacing: 2px;
    -webkit-text-stroke: 0.5px #080808;
}
.wide h3{
    -webkit-text-stroke: 0.5px #fff;
}

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

p{
	font-size: 15px;/* 14px　*/
	margin-bottom: 20px;
}
img {
    margin-bottom: 10px;
	width: 100%;
}
.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;
}

/*
.box-area ul.flex > li:first-child, .box-area ul.flex li:nth-child(4) {
    margin-left: 0px;
}
.box-area ul.flex > li:last-child, .box-area ul.flex > li:nth-child(3){
    margin-right: 0px;
}
*/

.tablebox {
    border-radius: 2rem;
    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;
}

/*========= モーダルウィンドウ ===============*/

/*全て共通：hideエリアをはじめは非表示*/
.hide-area{
	display: none;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after, 
.modaal-close:before{
	background:#ccc;	
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
	background:#666;
}
.modaal-container {
    border-radius: 2rem!important;
    height: 80vh;
	overflow-y: scroll;
}
.modaal-content-container p {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
	margin-bottom: 20px;
}
.copy{
	display: grid;
	background:  #5DA9BB;
	height: 50px;
	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;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
   width:100%;
    margin:0 auto;
}

.slider img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
    margin:0 10px;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 3px solid #173C60;/*矢印の色*/
    border-right: 3px solid #173C60;/*矢印の色*/
	border-radius: 2px;
    height: 15px;
    width: 15px;
	z-index: 100;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
  margin:20px 0 0 0;
}

.slick-dots li {
    display:inline-block;
  margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#fff;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:orange;/*ドットボタンの現在地表示の色*/
}

.slick-track > li{
	width: 310px!important;
    background: #fff;
    border-radius: 2rem;
    padding: 30px;
    margin: 0 auto;
    margin-bottom: 30px;
    color: #080808;
}

.wrapper.slide {
    width: 86%;
    max-width: 1200px;
}

.slide a {
    border: 1px solid;
}

/*==================================================
背景のキラキラ
===================================*/
#particles-js{ 
	position:fixed;/*描画固定*/
	z-index:-1;/*描画を一番下に*/
	width: 100%;
	height: 100%;
	/*background-color:#020E34;背景色*/
}
#container{
	position: relative;/*描画を#particles-jsよりも上にするためposition:relative;を指定*/
	z-index: 1;/*z-indexの数字を大きくすることで描画を#particles-jsよりも上に*/
	width:100%;
	height: 100%;
}


.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%;
}
/*
.box-area ul.flex > li:first-child, .box-area ul.flex li:nth-child(4) {
    margin-left: auto;
}
.box-area ul.flex > li:last-child, .box-area ul.flex > li:nth-child(3){
	margin-right: auto;
}
*/
.slick-list.draggable {
    height: 380px;
}
.main{
	padding: 30px;
}
}

#g-navi .comsoon {
    border: none!important;
}
#gnav-list .comsoon {
    border: none!important;
}

.contact img {
	width: 200px;
}
.blue{
	color: #5DA9BB;
}

/*　流れる文字のスタイル　*/

.loop03 {
    padding-top: 0;
	padding-bottom: 0;
	position: fixed;
    overflow: hidden;
	bottom: 0;
}
.loop03__box {
    display: flex;
    width: 100vw;
    padding-top: 2px;
    padding-bottom: 2px;
    background-color: #EBA477;
}
#home .loop03__box {
    background-color: #333;
}
.loop03__item {
    flex: 0 0 auto;
    font-size: 18px;
    white-space: nowrap;
    padding-right: 0px;
    padding-left: 10px;
    color: #fff;
	margin-bottom: 0;
}
.loop03__item a{
    color: #fff;
}

.loop03__item:nth-child(odd) {
    animation: loop 50s -25s linear infinite;
}
.loop03__item:nth-child(even) {
    animation: loop2 50s linear infinite;
}

@keyframes loop {
    0% {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

@keyframes loop2 {
    0% {
        transform: translateX(0);
    }
    to {
        transform: translateX(-200%);
    }
}

/*　↑　流れる文字のスタイル　*/

footer {
    padding-bottom: 36px;
}

.news{
	width: 720px;
	/*height: 300px;*/
	margin: 0 auto;
	background-color: #fff;
	padding: 20px 50px;
	border-radius: 3rem;
	position: relative;
	margin-top: 80px;
}
.news .scroll{
	height: 250px;
	overflow-y: scroll;
}
.news h3{
	text-align: center;
	color: #EBA477;
	-webkit-text-stroke: 0.5px #EBA477;
	margin-bottom: 0px
}
.news dt{
	color: #EBA477;
}
.news dd{
	color: #333;
	margin-bottom: 10px;
}
.news a{
	width: 100%;
	border-bottom: 1px dotted #B1CDDE;
	margin-bottom: 10px;
}
.news a:last-child{
	border-bottom: none;
}

#star section#about {
    padding-top: 390px;
}
#star section#kv {
    margin-bottom: -400px;
}

#star .flex{
	display: flex;
	align-items: center;
}
#star .flex .text{
	width: 50%;
}
#star .flex .img{
	width: 30%;
	margin-right: 40px;
}

.infotext{
	width: 720px;
	margin: 0 auto;
	margin-top: 40px;
}
#star hr {
    max-width: 720px;
    margin: 0 auto;
    opacity: 0.5;
}
@media screen and (max-width: 480px){
.infotext{
	width: 90%;
	margin: 0 auto;
}
.news{
	width: 86%;
	padding: 20px;
	margin-top: 50px;
}
#star .flex{
	display: block;
}
#star .flex .text{
	width: 100%;
}
#star .flex .img{
	text-align: center;
	width: 70%;
	margin: 0 auto;
}
#star hr {
    width: 100%;
}
}

.bnr-star {
    position: sticky;
    bottom: 40px;
    left: 65%;
    width: 480px;
}
.bnr-star:hover {
    opacity: 0.6;
	transition: all 0.25s ease-in-out;
}
#star .modaal-content-container h3{
	text-align: center;
	font-size: 18px;
}

a.third-link{
	display: inline;
	text-decoration: underline;
	color: #fff;
}
#third{
	margin-top:-120px;
	padding-top: 120px;
}
#star .pc img {
    width: 720px;
    border-radius: 2rem;
}
.program td, .program th {
    border: 1px solid #333;
	padding: 10px 12px;
    line-height: 1.6;
    font-size: 15px;
}
.program p{
	line-height: 1.6;
}
.program tr:last-child th, .program tr:last-child td {
    border-bottom: 1px solid #333;
}
#star h5{
	font-size: 16px;
}
#faq{
	padding-top: 120px;
	margin-top: -120px;
}
#star .flex li {
    width: 280px;
	padding-bottom: 0;
}
#star .flex p {
    font-size: 14px;
}
@media screen and (max-width: 480px){
	.program th{
		width: 34%;
		padding: 10px 8px;
	}
}
