@charset "utf-8";
/* CSS Document */
@media all{
	
/* ファーストビュー */
	#firstimage{
		width: 100%;
		height:24vw;
	}
	#firstimage .text{
		position: absolute;
		width: 100%;
		top: 12vw;
		left: 0;
		transform: translateY(10%);
		-webkit-transform: translateY(10%);
		-ms-transform: translateY(10%);
		color: #fff;
		text-align: center;
		letter-spacing: .1em;
	}
	#firstimage .fvimage{
		width: 100%;
		height: 100%;
	}
	
/* gallery */
	#gallery{
		padding: 120px 0 200px;
	}
	.gallerybox{
		width: calc(100% - 20px);
		max-width: 1000px;
		margin: 0 auto;
	}
	.gallerytheme{
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		padding: 0 7px;
		margin-bottom: 40px;
	}
/*タブのスタイル*/
.gallerytheme label {
	display: block;
		width: calc(100% / 4 - 10px);
		font-size: 1.4rem;
		padding: 0.7em 0;
		line-height: 1;
		text-align: center;
	border: solid 1px #000;
	transition: .3s;
	}
.gallerytheme label:hover{
	cursor: pointer;
}
/*ラジオボタンを全て消す*/
input[name="tab_type"] {
  display: none;
}
/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
}
/*選択されているタブのコンテンツのみを表示*/
#studio:checked ~ #studio_photo,
#location:checked ~ #location_photo,
#western:checked ~ #western_photo,
#japanese:checked ~ #japanese_photo {
	display: flex; 
}
/*選択されているタブのスタイルを変える*/
#studio:checked ~ .gallerytheme label.studio_tab,
#location:checked ~ .gallerytheme label.location_tab,
#western:checked ~ .gallerytheme label.western_tab,
#japanese:checked ~ .gallerytheme label.japanese_tab{
  background: #000;
	color: #fff;
}
.tab_content{
	width: 100%;
	margin: 0 auto; 
	flex-wrap: wrap; 
	justify-content: flex-start;
}
.tab_content li{
	width: calc(100% / 5 - 14px);
	margin: 0 7px 10px;
	overflow: hidden;
	position: relative;
}
.tab_content li:before {
    content:"";
    display: block;
    padding-top: 100%;
}
.tab_content li a {
    position: absolute;
	display: block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.tab_content li img{
	height: 100%;
	object-fit: cover;
}
	
}

@media screen and (max-width: 567px){

/* ファーストビュー */
	#firstimage{
	height: 47vw;
}
	#firstimage .fvimage img{
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	#firstimage .text{
		top: 23.5vw;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
	}
	#firstimage .text h2{
		font-size: 2rem;
	}
	
/* gallery */
	#gallery{
		padding: 40px 0 80px;
	}
	.gallerytheme{
		margin-bottom: 20px;
		padding: 0 3px;
	}
/*タブのスタイル*/
.gallerytheme label {
		width: calc(100% / 2 - 5px);
		font-size: 1rem;
	margin-bottom: 10px;
	}
.tab_content li{
	width: calc(100% / 4 - 6px);
	margin: 0 3px 6px;
}
	
}

@media screen and (min-width: 568px) and (max-width: 1024px){

	#firstimage .text h2{
		font-size: 2.5rem;
	}
	
}

@media screen and (min-width: 1025px), print{

	#firstimage .text h2{
		font-size: 3rem;
	}
	
}
