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

html{
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
}

header {
  padding:10px;
  background: #FFFFFF;
}

#nav-drawer {
  position: fixed;
}

/*チェックボックス等は非表示に*/
.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: #555;
  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: 90%;/*右側に隙間を作る（閉じるカバーを表示）*/
	max-width: 180px;/*最大幅*/
	height: 40%;
	background: #FFFFFF;/*背景色*/
	transition: .3s ease-in-out;/*滑らかに表示*/
	-webkit-transform: translateX(-105%);
	transform: translateX(-105%);/*左に隠しておく*/
	list-style: none;
}

/*チェックが入ったらもろもろ表示*/
#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);
}

h1{
	text-align: left;
	color:#565656;
}

p{
	color:#565656;
	
}
a{
	color: #9DD3FF;
	text-decoration: none;
}
a:hover {
	color: #4D8383;
}

.logo{
	font-size:35px;
}

.eng{
	font-size: 15px;
	margin-top: -40px;
}
.hyougen{
	text-align: right;
	font-size: 12.4px;
	float: right;
	padding-top: 15px;
	padding-bottom: 30px;
}
.center{
	text-align: center;
}

.midashi {
	font-size:30px;
	padding-top: 15px;
	padding-bottom: -200px;
	background: linear-gradient(transparent 70%, #66cccc 70%);
}

.syokai{
	text-align: center;
}

.nyushi{
	text-align: center;
}

.box1 {
    padding: 0.2em 0.5em;
    margin: 2em 0;
    color: #565656;
    background: #ffe5cc;
    box-shadow: 0px 0px 0px 10px #ffe5cc;
    border: dashed 2px #ffffff;
    border-radius: 8px;
}
.box1 p {
    margin: 0; 
    padding: 0;
}

.btn-flat-border {
  display: inline-block;
  padding: 0.3em 1em;
  text-decoration: none;
  color: #67c5ff;
  border: solid 2px #67c5ff;
  border-radius: 3px;
  transition: .4s;
}

.btn-flat-border:hover {
  background: #67c5ff;
  color: white;
}

.box2 {
    padding: 0.2em 0.5em;
    margin: 2em 0;
    color: #565656;
    background: #e5ccff;
    box-shadow: 0px 0px 0px 10px #e5ccff;
    border: dashed 2px #ffffff;
    border-radius: 8px;
}
.box2 p {
    margin: 0; 
    padding: 0;
}

.box3 {
    padding: 0.2em 0.5em;
    margin: 2em 0;
    color: #565656;
    background: #ccffcc;
    box-shadow: 0px 0px 0px 10px #ccffcc;
    border: dashed 2px #ffffff;
    border-radius: 8px;
}
.box3 p {
    margin: 0; 
    padding: 0;
}





.setsumei{
	padding-left: 30px;
	padding-right: 30px;
}

.midashi2{
	font-size: 20px;
	padding-top: 60px;
	
}

.shashin{
	text-align: center;
}

.mem{
	font-size: 25px;
}

.ao{
	padding-left: 30px;
	padding-right: 30px;
}

.suisen{
	padding-left: 30px;
	padding-right: 30px;
}

.ippan{
	padding-left: 30px;
	padding-right: 30px;
	padding-bottom: 50px;
}

.jusyo{
	font-size: 12px;
	text-align: center;
}
.name{
	padding-top: 25px;
	padding-bottom: 12.5px;
	text-align: center;
	font-size:12px;
}

.voice {
  display: inline-block;
  padding: 0.5em 1em;
  text-decoration: none;
  background: #668ad8;/*ボタン色*/
  color: #FFF;
  border-bottom: solid 4px #627295;
  border-radius: 3px;
	text-align: center
}
.voice:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(4px);
  transform: translateY(4px);/*下に動く*/
  border-bottom: none;/*線を消す*/
}