header a:-webkit-any-link {			/*スマホ用ヘッダー*/
	display:none;					/*非表示*/
}
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;*/
	display:none;
}
header div{
	display:none;
}

/*↑スマホ用なので非表示↑*/

header h1{
	background-color: #19448e;		/*色：メイン1*/
	margin:0;						/*外の余白 削除*/
	padding-left:10px;
	padding-top:10px;
	padding-bottom:10px;
	color:#fff;
	font-size:20px;
}


body{
	font-family:'メイリオ', sans-serif;			/*フォント設定*/
	margin:0;						/*余白消し*/
	width:100%;
	/* min-width:1110px; */			/*小さいPCにも対応するため除外*/
	background:#f5fffa;
}
.head{								/*○○だよ。の部分*/
	font-weight:bold;
	text-align:center;
	color:#000;
	font-size:24px;
	font-family: 'メイリオ', sans-serif;
	margin-bottom: 30px;
	margin-top: 30px;
}
footer{
	background-color:#19448e;		/*色：メイン2*/
	height:75px;
	text-align: center;				/*ロゴと著作を真ん中*/
	padding:1em;
	color:#fff;
	margin-top:0;
	font-size:13px;
}



/*↓photo.html用↓*/

main{
	background-color:#f5fffa;		/*色：ベース背景*/
	height:auto;
	padding-top:0px;
	padding-bottom:150px;
}

.area{
	/* width:1000px; */
	width:60%;
	max-width:1000px;
	
	background:#f5fffa;				/*【最後変える:#f5fffa】*/
	margin:auto;
	flex-wrap:wrap;					/*折り返し*/
	display:flex;
}

.tabClass{							/*タブ*/
	width:calc(100%/5);
	cursor:pointer;
	max-width:200px;
	border-width: 3px 3px 0px 3px;
	border-style: solid;
	border-color: #66ccff;	
	height:50px;
	background-color:white;
	line-height:50px;
	font-size:13px;
	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 3px #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:25%;
}
.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:150%;
	margin-top:5px;
	line-height:1.02;
	font-weight:bold;
}
.arrow{
	margin:auto 0;
	display:none;
}

#topBtnDiv{
	position:relative;
}
#topBtn{							/*上へ戻るボタン*/
	position:fixed;
	/*bottom:100px;*/
	right:40px;

	-webkit-transform:translate(0, -50%);
	-moz-transform:translate(0, -50%);
	-ms-transform:translate(0, -50%);
	-o-transform:translate(0, -50%);
	transform:translate(0, -50%);
	top:50%;

	width: auto;
	height: auto;
	/*text-align: center;
	background-color: #19448e;*/
}
#topBtn img{
	width:80px;
	height:80px;
}

/*↑photo.html用↑*/




/*↓メニュータブ↓*/

.menuBtn{
	box-sizing: border-box;
	width:100%;
	margin:0;
}

.menuBtn li{
	box-sizing: border-box;
	display: inline-block;
	width : calc(100% / 6) ;
	float:left;
	height:100px;
}

.japanese{
	font-family: 'メイリオ', sans-serif;
	font-size:14px;
	text-align: center;
}

.Nav_Title{
	font-weight:bold;
	font-size:20px;
	text-align: center;
	font-family: 'Cabin', sans-serif;
}

.Nav_Common ul{
	width:100%;
	padding:0;
	margin:0;	
}

.menuBtn a{
	color:#ffffff;
	text-decoration:none;
}

.menuBtn a li {
	color:#ffffff;
	background-color:rgba(102,204,255,0.7);
	margin-bottom: 0px;
	margin-top: 10px;
	border: 1px solid #ffffff
}

.menuBtn a:hover{
	background-color:rgba(252,200,0,0.7);
}

.menuBtn a li:hover{
	background-color:rgba(252,200,0,0.7);
}

.menuBtn{
	position:fixed;
	bottom:0px;
}

.list .active{
	background-color:rgba(252,200,0,0.7);
}

body {
	position: relative;
}
