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

*{
margin: 0;
padding:0;
}/*最初からある余白を消す*/


body{
font-family: "凸版文久明朝 レギュラー";
margin-top: 0;
font-style: normal;
background-color: aliceblue;
}

.bg-slider {
	width: 100vw;
	height: 500px;
	background-position:center center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
}
.bg-slider__title{
	color: #fff;
	font-size: 48px;
	line-height: 1.5;
	font-weight: bold;
	text-align:center;
	text-shadow: 1px 1px 1px #000;
}

#head {
    background-color: rgba(0,0,0,0.6);
    width: 100%;
	height: 500px;
	color: white;
}


#sikaku{
	padding: 20px 0px 0px 12px;
	font-size: 25pt;
}

#visual{
 font-size: 11.5pt;
	padding-left: 20px;
	line-height:0.5em;
}

#kakehashi{
	padding:300px 0px 0px 12px;
}

/* アニメーション設定 */
.arrowWrap {
  margin-top: -50px;
}

.arrow1 {
  width: 15px;
  margin: 0 auto;
  -webkit-animation: arrow1 2s linear 0s infinite normal;
  animation: arrow1 2s linear 0s infinite normal;
}

.arrow2 {
  width: 15px;
  margin: 0 auto;
  -webkit-animation: arrow2 2s linear 0s infinite;
  animation: arrow2 2s linear 0s infinite;
}

.arrow1 span,
.arrow2 span {
  position: relative;
  display: block;
  left: 50%;
}

.arrow1 span {
  margin-top: -10px;
}

.arrow1 span:before,
.arrow2 span:before {
  content: '';
  width: 15px;
  height: 15px;
  border: 0;
  border-top: solid 2px white;
  border-right: solid 2px white;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  box-sizing: border-box;
}

@keyframes arrow1 {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  20% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  40% {
    -webkit-transform: translate3d(-50%, 10px, 0);
    transform: translate3d(-50%, 10px, 0);
  }

  60% {
    -webkit-transform: translate3d(-50%, 10px, 0);
    transform: translate3d(-50%, 10px, 0);
  }

  80% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes arrow2 {
  0% {
    -webkit-transform: translate3d(-50%, 10px, 0);
    transform: translate3d(-50%, 10px, 0);
  }

  20% {
    -webkit-transform: translate3d(-50%, 20px, 0);
    transform: translate3d(-50%, 20px, 0);
  }

  40% {
    -webkit-transform: translate3d(-50%, 20px, 0);
    transform: translate3d(-50%, 20px, 0);
  }

  60% {
    -webkit-transform: translate3d(-50%, 20px, 0);
    transform: translate3d(-50%, 20px, 0);
  }

  80% {
    -webkit-transform: translate3d(-50%, 10px, 0);
    transform: translate3d(-50%, 10px, 0);
  }

  100% {
    -webkit-transform: translate3d(-50%, 10px, 0);
    transform: translate3d(-50%, 10px, 0);
  }
}


#nav-drawer {
  position: relative;
	padding-top: 20px;
	padding-left: 20px;
	background-color: #5DC9DB;
	background-position: center;
	width: 100%;
	height:40px;
	background-image: url("image/navi.png");
	background-repeat: no-repeat;
}


/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}

/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  width: 30px;
  height: 22px;
  vertical-align: middle;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 3px;/*線の太さ*/
  width: 25px;/*長さ*/
  border-radius: 3px;
  background: black;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span:before {
  bottom: -8px;
}
#nav-open span:after {
  bottom: -16px;
}

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

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

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

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

#list{
	margin-left: 20px;
	margin-top: 30px;
	font-size: 15pt;
	color: #008698;
	
}

#menu{
	background-color: #5DC9DB;
	font-size: 19pt;
	height:40px;
	padding: 15px 0px 5px 11px;
	color: #D9FEFF;
}

.svg{
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 15px;
	margin-bottom: 15px;
}

.p5{
	padding-top:10px;
	padding-bottom: 10px;
}

.white {
	position: relative;
	padding: 4px 20px 4px 10px;
	background: #5DC9DB;
	font-size: 13pt;
	z-index:1;
	color:#ffffff;
	width: 150px;
	margin-top: 130px;
}

.white:after {
	position: absolute;
	content: '';
	right: 0px;
	top: -3px;/*ボーダーサイズ分マイナス*/
	width: 0;
	height: 0;
	border: none;
	border-left: solid 40px transparent;/*bodyのカラーと同じ色に*/
	border-bottom: solid 42px aliceblue;
	z-index: 2;
}

#taisho{
font-size: 10pt;
padding-top: 10px;
}

.p{
	font-size: 11.5pt;
	padding: 10px 12px 10px 12px;
	line-height:1.5em;
}

h4{
background-color: #D4D4D4;
font-size: 11.5pt;
width: 115px;
height: 23px;
padding-left: 5px;
}

#bunya{
	padding: 10px 10px 0px 10px;
}

h2{
	font-size: 13pt;
	padding: 30px 12px 5px 12px;
}

.h3{
	background-color: #5DC9DB;
	width: 300px;
	height:100px;
	margin: 50px 12px 50px 12px;
	color: white;
	border-radius: 5px;
	text-align: left;
	box-shadow: 5px 5px #0091A8;
}

.h3:hover{
	box-shadow: 5px 5px #0091A8;
}

#shokai{
	margin: 30px 20px 150px 20px;
}


#shita{
	background-color: #A4A4A4;
	text-align: center;
	width: 100%;
	padding-top: 15px;
	padding-bottom: 15px;
}



#p1{font-size:10pt;
    color: #282828;}
#p2{font-size:9pt;
    color: #282828;}
#p3{font-size:7.5pt;
    color: #282828;}
#p4{font-size:7pt;
    color: #444444;
	margin-top: 10px;
}



