.hamburger-menu div {
  position:relative;
  width:13vmin;
  height:2.5vmin;
  margin:1vmin 0;
  background-color: #ffffff;
  transition: .5s;
/* アニメーションの時間を0.5秒に指定 */
}
.hamburger-menu:hover div {
  opacity:0.6;
 /* 透明度を指定 */
 }
.hamburger-menu + .sidenavs:target {
  overflow-x: visible;
/* ボックスからはみ出る箇所をそのまま表示 */
  width: 100%;
  display:block;
}
.sidenavs:target {
  overflow-x: hidden;
  
/* ボックスからはみ出る箇所を隠す */
  width: 0;
}
/* ハンバーガーメニュー表示時 */
.sidenavs {
  height: 85%;
  width: 0;
  padding-top:40px;
  padding-bottom:100%;
  margin-bottom:100%;
  position: fixed;
overflow-y: scroll;
 /* 画像の配置を指定 */
   z-index: 1;
  top: 0;
  right: 0;
  background-color: #f5fffa;
  overflow-x:hidden;
/* 横スクロールを無効にする */
  transition: 0.5s;
/* アニメーションの時間を0.5秒に指定 */
}
/* ハンバーガーメニュー表示時のリンク */
.sidenavs a {
  padding: 8px 8px 30px 10px;
  text-decoration: none;
  font-size: 30px;
  font-family: 'Cabin', sans-serif;
  color: #66ccff;
  display: block;
  width:70%;
  transition: 0s;
  font-weight:bold;
}
/* マウスオーバー後のリンク */
.sidenavs a:hover {
  color: #fcc800;
  -webkit-touch-callout:none;
  -webkit-tap-highlight-color:(0,0,0,0);
  cursor:pointer;
}
/* クローズボタン */
.sidenavs .close-btn {
  position: absolute;
/* 親要素との絶対位置を指定 */
  top: 0;
  right: 25px;
  font-size: 60px;
  margin-left: 75%;
  width:10%
}
header{
	width:100vw;
	height:15vmin;/*19vmin*/
	margin:0;
	padding:0;
	font-size:1.8rem;
	font-family: 'Cabin';
	text-align:left;
	background-color: #19448e;
	color: #ffffff;
}
header a{
	font-family:'Cabin', sans-serif;
	width:80%;
    position:relative;
    left:2%;
    top:1vmin;
	font-size:8vmin;
	font-family: 'Cabin', sans-serif;
	text-decoration:none;
	color: #ffffff;
}
header div{
	width:0;
	margin:0;
	position:relative;
	top:-65%;
	right:-84%;
}

/*↑スマホ用↑*/



header h1{									/*PC用ヘッダー*/
	background-color: #66ccff;		/*色：メイン1*/
	margin:0;						/*外の余白 削除*/
	padding-left:10px;
	padding-top:10px;
	padding-bottom:10px;
	color:#fff;
	font-size:100%;
	display:none;
}



html {
	min-height: 100%;
	position: relative;
}
body{
	font-family:'メイリオ', sans-serif;			/*フォント設定*/
	margin:0;						/*余白消し*/
	font-size:14px;
	/*margin-bottom:75px;*/
	background-color:#f5fffa;
}
.head{
	font-weight:bold;
	text-align:center;
	color:#000;
	font-size:20px;
	font-family: 'メイリオ', sans-serif;
	margin-bottom: 30px;
	margin-top: 30px;
}
nav{
	display:none;
}
footer{
	height:75px;
	padding:1em;
	text-align: center;				/*ロゴと著作を真ん中*/
	background-color:#19448e;		/*色：メイン2*/
	color:#fff;
	margin-top:0;
	font-size:13px;
	font-family: 'メイリオ', sans-serif;
	
/*	margin-bottom:0;
	position:absolute;
	bottom:0;
	width:100%;*/
}



/*↓photo.html用↓*/

main{
	background-color:#f5fffa;		/*色：ベース背景*/
	height:auto;
	padding-top:0px;
	padding-bottom:150px;
}

.area{
	width:100%;
	background:#f5fffa;
	margin:0 auto;
	flex-wrap:wrap;					/*折り返し*/
	display:flex;
}

.tabClass{							/*タブ*/
	/*width:calc(100%/4);*/
	width:20%;
	border-width: 2px 2px 0px 2px;
	border-style: solid;
	border-color: #66ccff;	
	height:50px;
	background-color:white;
	line-height:50px;
	font-size:80%;
	text-align:center;
	display:block;
	float:left;
	order:-1;
	/*transition:filter 0.5s;*/			/*0.5秒で変化*/
	transition:background 0.5s;			/*0.5秒で変化*/
}

input[name="tabName"]{
	display:none;					/*〇を非表示*/
}

input:checked + .tabClass{			/*タブON状態*/
	background-color:#fcc800;
	color:white;
	font-weight:600;
}
input:hover + .tabClass{			/*タブhover状態*/
	/*filter:brightness(120%);*/		/*明るさを1.8倍*/
	background-color:#fcc800;
}

.content h3{
	background-color:#f5fffa;
	border-left:solid 6px #66ccff;
	margin-left:25px;
	margin-right:25px;
	padding-left:4px;
	color:#19448e;
}

.content{
	background-color:white;
	border:solid 2px #66ccff;
}

.content{
	display:none;					/*一覧非表示*/
	width:100%;
}

input:checked + .tabClass + .content{
	display:block;
}


.area ul{
	display:flex;
	flex-wrap:wrap;
	padding-left:0;					/*liの〇の部分を寄せた*/
	margin-top:0;
	margin-bottom:0;
}
.area li{
	list-style-type:none;
	position:relative;
	width:33.3%;
}
.area li:before{
	content:"";
	display:block;
	padding-top:100%;
}
/*
.content img{
	width:200px;
	height:auto;
}*/
.content li img{
	position:absolute;
	width:99%;
	height:99%;
	top:0;
	right:0;
	bottom:0;
	left:0;
	margin:auto;
	object-fit:cover;
	transition-duration: 0.3s;
}
.content li a img:hover{
	transform:scale(0.95);
	transition-duration: 0.3s;
}
.title{									/*写真タイトル*/
	text-align:left;
	font-size:110%;
	line-height: 1.5;
	margin-top:0;
	margin-bottom:0;
	font-weight:bold;
}
.text{									/*写真せつめい*/
	text-align:left;
	font-size:90%;
	line-height: 1.1;
	font-weight:400;
}
.arrow{
	width:33.3%;
	height:auto;
	margin:auto 0;
	display:none;
}
/*↑photo.html用↑*/
#topBtnDiv{
	position:relative;
}
#topBtn{							/*上へ戻るボタン*/
	position:fixed;
	bottom:30px;
	right:20px;
	
	width: auto;
	height: auto;
	/*text-align: center;
	background-color: #19448e;*/
}
#topBtn img{
	width:60px;
	height:60px;
}
