@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;
}

#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: 40px;
}

.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;
}

/*ボックス全体*/
.accbox {
    margin: 2em 0;
	margin-bottom: 170px;
}

/*ラベル*/
.accbox label {
    display: block;
    margin: 30px 20px 0px 20px;
    padding : 13px 12px;
    color: white;
    background: #86D7E0;
    cursor :pointer;
    transition: all 0.5s;
	font-size: 13.5pt;
}

/*アイコンを表示*/
.accbox label:before {
    content: "\f107";
    font-family: 'Font Awesome 5 Free';
  font-weight: 900; 
    padding-right: 8px;
}

/*チェックは隠す*/
.accbox input {
    display: none;
}

/*中身を非表示にしておく*/
.accbox .accshow {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}

/*クリックで中身表示*/
.cssacc:checked + label + .accshow {
    height: auto;
    padding: 5px;
    background: white;
    opacity: 1;
	margin: 0px 20px;
}

.accbox .accshow p {
    margin: 0px 20px 0px 20px;
}

/*アイコンを入れ替える*/
.cssacc:checked + label:before {
    content: '\f106'/*切替後のアイコン*/;
}

.ab{
	font-size: 11.5pt;
	background-color: #CCCCCC;
	width:65px;
	height: 25px;
	padding-left: 5px;
}

.bc{
	font-size: 11.5pt;
	background-color: #CCCCCC;
	width:50px;
	height: 25px;
	padding-left: 5px;
}

.cd{
	font-size: 11.5pt;
	background-color: #CCCCCC;
	width:80px;
	height: 25px;
	padding-left: 5px;
}

.simekiri{
	font-size: 8.5pt;
}

.futu{
	font-size: 10.5pt;
	margin-top: 20px;
	line-height:20px;
}

.haiiro{
	margin-top: 25px;
	margin-bottom: 5px;
}



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

h3{
	font-size: 12.5pt;
	margin: 0px 20px 0px 20px;
}

.sentaku{
	margin: 0px 20px 0px 20px;
	font-size: 11pt;
	padding-top: 10px;
	color: #008698;
	text-decoration: underline;
}

.siken{
	margin-top: 40px;
	margin-bottom: 30px;
}

.kakko{font-size: 8.5pt;}

.senko{
	margin-bottom: 10px;
	margin-top: 15px;
}

.URL{
	font-size: 10pt;
	text-decoration: underline;
	margin: 10px 20px 10px 20px;
}


#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;
}
