@charset "utf-8";
/* CSS Document */

*{
	font-weight: 200;
	padding: 0;
	margin:0;
	-webkit-box-sizing: border-box;
			box-sizing: border-box;
  font-family: "Noto Sans JP";
  scroll-behavior: smooth;
}

.eng{
  font-family: 'GFS Didot', serif;
}

a{
	text-decoration: none;
  font-size: 15px;
  line-height: 24px;
	letter-spacing: 2px;
	transition: .2s;
/*    -webkit-transform: scale(1.001,1);
    -moz-transform: scale(1.001,1);
    -ms-transform: scale(1.001,1);
    -o-transform: scale(1.001,1);
    transform: scale(1.001,1);*/
}

a:hover{
  opacity: .7;
	transition: .2s;
}

li{
	list-style: none;
}

h1,h2,h3,h4,h5,h6,p{
	color:#5a5a5a;
/*    -webkit-transform: scale(1.001,1);
    -moz-transform: scale(1.001,1);
    -ms-transform: scale(1.001,1);
    -o-transform: scale(1.001,1);
    transform: scale(1.001,1);*/
}

h1{	
	letter-spacing: 10px;
}
h2{
  font-size: 16px;
  line-height: 16px;
	letter-spacing: 0px;
  font-weight: normal;
}
h3{	
  font-size: 16px;
  line-height: 16px;
	letter-spacing: 0px;
  font-weight: normal;
}
h4{	
  font-size: 15px;
  line-height: 24px;
	letter-spacing: 2px;
}
h5{	
}
h6{	
}
p,th,td{
  font-weight: normal;
  font-size: 15px;
  line-height: 24px;
	letter-spacing: 2px;
}
hr{
}

.clear{
	clear:both;
}

.fa{
	color: #fff;
}
body{
	overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}
.spbr{
  display: none;
}

.pc{
}

.sp{
  display: none;
}

@media screen and (max-width: 500px){
  .pc{
    display: none;
  }

  .sp{
    display: block;
  }
}

/*==============================
共通
==============================*/

.titleBox{
  margin-bottom: 30px;
}

.titleBox h2{
  font-family: 'GFS Didot', serif;
  font-size: 50px;
  line-height: 50px;
  font-weight: bold;
  margin-bottom: 0px;
  color: #14a88e;
}

.titleBox h3{
  font-size: 18px;
  color: #9c9c9c;
}

/*==============================
nav
==============================*/
nav{
  width: 100%;
  height: 80px;
  display: flex;
  position: sticky;
  top: 0;
  left: 0;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 0 0 0 20px;
  z-index: 99999;
}

nav > a{
  display: block;
  margin-right: auto;
}

nav > a img{
}

nav > ul{
  display: flex;
  align-items: center;
  height: 100%;
}

nav > ul > li{
  position: relative;
  height: 100%;
}

nav > ul > li:last-of-type{
}

nav > ul > li a{
  display: block;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  transition: .2s;
  height: 100%;
  padding: 20px;
  padding-top: 25px;
  border-bottom: 5px solid #fff;
}

nav > ul > li a:hover{
  opacity: 1;
  border-bottom: 5px solid #14a88e;
}

nav > ul > li:last-of-type a{
  background-color: #14a88e;
  border-bottom: 0px solid;
  padding-top: 20px;
}

nav > ul > li:last-of-type a:hover{
  opacity: .7;
	transition: .2s;
}
/*==============================
SPメニュー
==============================*/

.spnavBack{
  display: none;
}

.spLogo{
	display: none;
}

.nav-unshown {
  display:none;
}
@media screen and (max-width: 1000px){
.spnavBack{
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  height: 50px;
  width: 100%;
  z-index: 999998;
  background-color: rgba(255,255,255,.9)
}
  
nav{
  display: none;
  padding: 10px 0;
	margin-top: 50px;
  width: 100%;
  text-align: center;
  background-color: rgba(255,255,255,.9)
}

nav h1{
  display: inline-block;
  margin: 0 auto;
}

nav h1 > a{
  display: block;
}

#nav-drawer {
  position: relative;
}

/*チェックボックス等は非表示に*/

/*アイコンのスペース*/
#nav-open {
  position: fixed;
  top:10px;
	right: 10px;
  width: 45px;
  height: 45px;
  vertical-align: middle;
  padding:10px;
	z-index: 999999;
  background-color: #fff;
}
/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 4px;/*線の太さ*/
  width: 25px;/*長さ*/
  border-radius: 0px;
  background: #14a88e;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span:before {
  bottom: -10px;
}
#nav-open span:after {
  bottom: -20px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;/*はじめは隠しておく*/
  position: fixed;
  z-index: 999999;
  top: 0;/*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}

/*中身*/
nav {
  overflow: auto;
  position: fixed;
	display: block;
  top: 0;
  left: 0;
	margin: 0;
  z-index: 1000000;/*最前面に*/
  width: 90%;/*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 330px;/*最大幅（調整してください）*/
  height: 100%;
  background-color: rgba(20,168,142,.7);/*背景色*/
  transition: .3s ease-in-out;/*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);/*左に隠しておく*/
  padding: 50px 20px 0;
  text-align: center;
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;/*カバーを表示*/
  opacity: .5;
}

#nav-input:checked ~ nav {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);/*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

  nav > a{
    margin-bottom: 15px;
  }

  nav > ul{
    flex-wrap: wrap;
    height: auto;
  }

  nav > ul > li{
    width: 100%;
    height: auto;
    margin-right: 0;
  }

  nav > ul > li a,
  nav > ul > li label{
    color: #fff;
    padding: 10px 10px;
    border-bottom: 2px solid #fff;
    text-align: left;
  }

  nav > ul > li a:hover{
    border-bottom: 2px solid #fff;    
  }
  
  nav > ul > li:last-of-type a{
    background-color: rgba(0,0,0,0);
    padding: 25px;
    text-align: center;
  }
  
  nav > ul > li:last-of-type a img{
    margin: 0 auto;
  }
  
  nav > ul > li:last-of-type a:hover{
    border-bottom: none;
  }
}

/*==============================
ヘッダ
==============================*/
header{
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 80px);
  padding: 0 20px;
  background-image: url("../img/headBack.jpg");
  background-size: cover;
  background-position: center center;
}

header > div{
  width: 100%;
  max-width: 1000px;
}

header > div > img{
  width: 100%;
  max-width: 700px;
  display: block;
  margin: 0 auto;
  margin-bottom: 30px;
}

header > div > p{
  text-align: center;
  color: #fff;
  font-weight: bold;
}

.headscroll{
  width: 1px;
  height: 100px;
  position: absolute;
  display: block;
  margin: auto;
  right: 0;
  left: 0;
  bottom: -50px;
}

.headscroll::before{
  content: "";
  display: block;
  width: 1px;
  height: 50px;
  background-color: #fff;
}

.headscroll::after{
  content: "";
  display: block;
  width: 1px;
  height: 50px;
  background-color: #14a88e;
}

/*==============================
メインコンテンツ
==============================*/

#aboutWrap{
  position: relative;
  padding: 120px 20px 200px;
  overflow: hidden;
}

#aboutWrap::before{
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  top: -150px;
  right: 0;
  left: 0;
  width: 150%;
  height: 350px;
  background-color: rgba(20,168,142,.1);
  transform:translateX(-25%) rotate(-10deg);
}

#aboutWrap::after{
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  bottom: -250px;
  right: 0;
  left: 0;
  width: 150%;
  height: 350px;
  background-color: rgba(20,168,142,.1);
  transform:translateX(-25%) rotate(-10deg);
}

#aboutWrap > img{
  position: absolute;
  z-index: 1;
  width: 60%;
  max-width: 840px;
  top: 100px;
  right: 0;
}

#aboutWrap > div{
  position: relative;
  z-index: 2;
  margin-left: 100px;
}

#aboutWrap > div > h4{
  font-size: 27px;
  line-height: 42px;
  letter-spacing: 2px;
  color: #fff;
  background-color: #14a88e;
  display: inline-block;
  margin-bottom: 5px;
}

#aboutWrap > div > p{
  width: 30%;
  margin-top: 30px;
}

#groupWrap{
  position: relative;
  z-index: 3;
  padding: 0;
  top: -75px;
}

#groupWrap .titleBox h2{
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 42px;
  line-height: 42px;
  letter-spacing: 4px;
  text-align: center;
}

.groupBox{
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.groupBox > div{
  position: relative;
  width: 50%;
  background-size: cover;
  background-position: center center;
  text-align: center;
  padding: 100px 20px;
}

.groupBox > div > h3{
  font-size: 28px;
  font-weight: bold;
  line-height: 28px;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 20px;
}

.groupBox > div > hr{
  display: block;
  margin: 0 auto 20px;
  border: none;
  width: 60px;
  height: 2px;
  background-color: #fa7f29;
}

.groupBox > div:last-of-type > hr{
  background-color: #31b4d6;
}

.groupBox > div > p{
  color: #fff;
  margin-bottom: 20px;
}

.groupBox > div > a{
  display: flex;
  margin: 0 auto;
  width: 230px;
  justify-content: center;
  align-items: center;
  padding: 13px 20px;
  background-color: #fa7f29;
}

.groupBox > div:last-of-type > a{
  background-color: #31b4d6;
}

.groupBox > div > a p{
  color: #fff;
  font-weight: bold;
  font-family: 'GFS Didot', serif;
  margin-right: 20px;
}

.groupBox > div::before{
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  left: 20px;
  width: 180px;
  height: 180px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
}

.groupBox > div::after{
  content: "";
  display: block;
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 180px;
  height: 180px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
}

.groupBox > div:first-of-type{
  background-image: url("../img/groupImg01.png");
}

.groupBox > div:last-of-type{
  background-image: url("../img/groupImg02.png");
}

#newsWrap{
  padding: 100px 20px;
  text-align: center;
}

.newsList{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 30px;
}

.newsList li{
  display: flex;
  border-top: 1px solid #e6e6e6;
  padding: 15px 30px;
  justify-content: flex-start;
  align-items: center;
}

.newsList li:last-of-type{
  border-bottom: 1px solid #e6e6e6; 
}

.newsList li h4{
  color: #14a88e;
  margin-right: 30px;
  letter-spacing: 2px;
}

.newsList li a{
  margin-right: auto;
  color: #333333;
}

#newsWrap > a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 230px;
  padding: 15px 20px;
  margin: 0 auto;
  border-left: 1px solid #14a88e;
  border-right: 1px solid #14a88e;
}

#newsWrap > a p{
  color: #14a88e;
  font-weight: bold;
  font-family: 'GFS Didot', serif;
  margin-right: 20px;
}

#messageWrap{
  position: relative;
  padding: 100px;
  padding-bottom: calc(100px + 3.214vw);
  text-align: left;
  background-image: url("../img/messageBack.jpg");
  background-size: cover;
  background-position: center center;
}

#messageWrap div h2{
    color: #fff;
}

#messageWrap div h3{
    color: #fff;
}

#messageWrap h4{
  color: #fff;
  font-weight: bold;
  font-size: 30px;
  letter-spacing: 4px;
  line-height: 40px;
  margin-bottom: 30px;
}

#messageWrap p{
  width: 100%;
  max-width: 540px;
  color: #fff;
}

#messageWrap > img{
  user-select: none;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
}

#overviewWrap{
  padding: 100px 20px;
  text-align: center;
}

.tableBox{
  display: flex;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: space-between;
}

.tableBox table{
  width: 48%;
  border-collapse: collapse;
  border-spacing: 0;
}

.tableBox table td,
.tableBox table th{
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  padding: 20px 10px;
}
.tableBox table th{
  color: #14a88e;
  font-weight: bold;
  width: 25%;
}

.tableBox table td{
  text-align: left;
}

#contactWrap{
  padding: 100px 20px;
  text-align: center;
  background-image: url("../img/contactBack.png");
  background-size: cover;
  background-position: center center;
}

#contactWrap .titleBox h2{
  color: #fff;
}

#contactWrap .titleBox h3{
  color: #fff;
}

.contactBox{
  display: flex;
  margin: 0 auto;
  justify-content: center;
}

.contactBox > div{
  position: relative;
  padding: 20px 50px;
  background-color: #fff;
}

.contactBox > div::before{
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent #ffffff;
  margin: auto;
  top: 0;
  right: -15px;
  bottom: 0;
}

.contactBox > div h4{
  color: #13496c;
  font-weight: bold;
  font-size: 24px;
  line-height: 34px;
}

.contactBox a{
  padding: 20px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #fff;
}

.contactBox a:hover{
  opacity: 1;
}

.contactBox a img{
  transition: .3s;  
}

.contactBox a:hover img{
  opacity: .7;
  transition: .3s;
}

/*==============================
フッタ
==============================*/

footer{
  
}

.pagetop{
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 20px;
  background-color: #616f76;
}

.pagetop p{
  font-size: 13px;
  color: #fff;
  font-family: 'GFS Didot', serif;
}

.pagetop:hover{
  opacity: .9;
}

#footNav{
  padding: 50px 20px;
  text-align: center;
}

#footNav > img{
  margin-bottom: 20px;
}

#footNav > ul{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

#footNav > ul li{
  margin-right: 20px;
}

#footNav > ul li:last-of-type{
  margin-right: 0;
}

#footNav > ul li a{
  color: #000;
  font-weight: bold;
}

#footNav > a{
  max-width: 100%;
  text-align: center;
}

.footCopy{
  font-size: 13px;
  text-align: center;
  color: #fff;
  background-color: #14a88e;
  padding: 20px;
}

/*==============================
レスポンシブ
==============================*/

@media screen and (max-width: 1400px) {
}

@media screen and (max-width: 1300px) {
}

@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 1000px) {
  #aboutWrap > div{
    margin-left: 0px;
  }
  
  #aboutWrap > div > p{
    width: 35%;
  }
}

@media screen and (max-width: 900px) {
}

@media screen and (max-width: 800px) {
  header{
    height: 600px;
  }
  
  header > div > img{
    width: 80%;
  }
  
  #aboutWrap{
    padding: 100px 20px;
  }
  
  #aboutWrap > div > h4{
    font-size: 22px;
    line-height: 32px;
  }
  
  #aboutWrap > img{
    top: auto;
    bottom: 100px;
  }
  
  .groupBox{
    flex-wrap: wrap;
  }
  
  .groupBox > div{
    width: 100%;
  }
  
  #messageWrap{
    padding: 100px 20px;
  }
}

@media screen and (max-width: 600px){  
  p{
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
  }
  
  .titleBox h2{
    font-size: 40px;
    line-height: 40px;
  }
  
  header{
    height: 440px;
  }
  
  header > div > img{
    width: 100%;
  }
  
  #aboutWrap{
    padding: 100px 20px;
  }
  
  #aboutWrap > div > h4{
    font-size: 18px;
    line-height: 24px;
  }
  
  #aboutWrap > div > p{
    width: 100%;
    margin-top: 20px;
  }
  
  #aboutWrap > img{
    width: 45%;
    top: 50px;
    bottom: auto;
  }
  
  #aboutWrap::before{
    top: -300px;
  }
  
  #aboutWrap::after{
    bottom: -300px;
  }
  
  #groupWrap .titleBox h2{    
    font-size: 40px;
    line-height: 40px;
  }
  
  .groupBox > div > h3{
    font-size: 22px;
  }
  
  .groupBox > div::before,
  .groupBox > div::after{
    width: 100px;
    height: 100px;
  }
  
  .newsList li{
    flex-wrap: wrap;
  }
  
  .newsList li h4{
    margin-right: 0;
    width: 100%;
    text-align: center;
  }
  
  .newsList li a{
    width: 100%;
    text-align: center;
  }
  
  .newsList li img{
    display: none;
  }
  
  #messageWrap .titleBox{
    margin-bottom: 15px;
  }
  
  #messageWrap h4{
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 15px;
  }
  
  .tableBox{
    flex-wrap: wrap;
  }
  
  .tableBox table{
    width: 100%;
  }
  
  .contactBox{
    flex-wrap: wrap;
  }
  
  .contactBox > div{
    width: 100%;
  }
  
  .contactBox > div::before{
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 10px 0 10px;
    border-color: #ffffff transparent transparent transparent;
    top: auto;
    right: 0;
    left: 0;
    bottom: -15px;
  }
  
  .contactBox a{
    width: 100%;
    padding: 30px 20px;
  }
  
  .contactBox a img{
    max-width: 100%;
  }
  
  #footNav > ul{
    display: block;
  }
  
  #footNav > ul li{
    text-align: center;
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  #footNav > a img{
    max-width: 100%;
  }
}

@media screen and (max-width: 500px){
}

@media screen and (max-width: 414px){
}


/*==============================
ローディングアニメーション
==============================*/
