/* [ 福田カメラ｜掛川福田スタジオ ] : index.css */


/*======================================================================*
 *  [ indexImg | メインスライダー ]
 *======================================================================*/

.indexImg {
	margin-bottom: 1px;
	/* animation-name: fadeInAnimeIndexImg; */
	/* transition: transform 0.8s linear; */
	/* animation-duration: 2.5s; */
	/* animation-fill-mode: both; */
	/* opacity: 0; 【メモ】BlueGriffonで編集するため記載しない */
}
.indexImg .swiper-slide {
	overflow: hidden;
}
.indexImg .swiper-slide a { display: block; }
.indexImg .swiper-slide a:hover img, 
.indexImg .swiper-slide a:active img { opacity: 1; }
.indexImg .swiper-slide img,
.indexImg .swiper-slide video {
	width: 100%;
	height: 100vh;
	/* height: calc(100vh - 100px); */
	/* height: 100vh; */
	object-fit: cover;
}

@keyframes fadeInAnimeIndexImg {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@media screen and (max-width: 767px) { /* Smartphone */
	.indexImg .swiper-slide {
		padding-top: 0;
	}
	.indexImg .swiper-slide img,
	.indexImg .swiper-slide video {
		/* height: calc(100vw * 1.33); */
		height: calc(100vh - 55px);
	}
} /* */


/*======================================================================*
 *  [ promoDesc | ディスクリプション ]
 *======================================================================*/

.siteContents { position: relative; }
.promoDesc {
	position: absolute;
	left: 50%;
	bottom: 100%;
	width: calc(100% - 40px);
	max-width: 880px;
	margin-bottom: 20px;
	padding: 0 20px;
	background: rgba(255,255,255,0.5);
	backdrop-filter: blur(60px);
	-webkit-backdrop-filter: blur(60px);
	text-align: center;
	transform: translateX(-50%);
	z-index: 1000;
}
.promoDesc.fadeUp { /* 下から */
	animation-name: promoDescfadeUpAnimePC;
	transition: transform 0.8s linear;
	/* animation-duration: 2.5s; */
	animation-duration: 1.5s;
	animation-fill-mode: both;
	opacity: 0;
}
@keyframes promoDescfadeUpAnimePC{
	from {
		opacity: 0;
		transform: translateX(-50%) translateY(3vh);
	}
	50% {
		transform: translateX(-50%) translateY(0);
	}
	to {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}
}

/* [ Catch ] */
.promoDesc .catch {
	position: absolute;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-7.5deg);
	width: 716px;
	bottom: 100%;
	filter: drop-shadow(10px 0 20px rgba(0,0,0,1));
}

/* [ Text ] */
.promoDesc h2 {
	font-size: 1.8rem;
	font-weight: 500;
}
.promoDesc h2 br { display: none; }

@media screen and (max-width: 767px) { /* Smartphone */
	.promoDesc {
		padding: 1px 5px;
		right: 20px;
		left: 20px;
		transform: translateX(0);
	}
	.promoDesc.fadeUp { /* 下から */
		animation-name: promoDescfadeUpAnimeSP;
		transition: transform 0.8s linear;
		animation-duration: 2.5s;
		animation-fill-mode: both;
		opacity: 0;
	}
	@keyframes promoDescfadeUpAnimeSP{
		from {
			opacity: 0;
			transform: translateY(3vh);
		}
		50% {
			transform: translateY(0);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}
	.promoDesc h2 { margin: 10px 0; font-size: 1.4rem; }
	.promoDesc h2 br { display: block; }
	.promoDesc h2 + p { display: none; }
} /* */



/*======================================================================*
 *  [ recoList | おすすめ ]
 *======================================================================*/

.boxWrap.bg.green {
	padding-top: 80px;
	padding-bottom: 80px;
}
.recoList {
	margin: 0 -20px;
	padding: 0 20px;
}

/* [ Prev / Next Button ] */
.swiper-button-prev, 
.swiper-button-next {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: url(../img/arrow_bd_wh.svg) center center no-repeat rgba(144, 144, 144, .8);
	background-size: 20px 20px;
}
.swiper-button-prev {
	left: 0;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
.swiper-button-next { right: 0; }

.recoList section {
	margin: 0;
	padding: 20px 20px 20px 60px;
	background: #fff;
	background:
		-moz-linear-gradient(45deg,  transparent 15px, #fff 15px),
		-moz-linear-gradient(135deg, transparent 15px, #fff 15px),
		-moz-linear-gradient(225deg, transparent 15px, #fff 15px),
		-moz-linear-gradient(315deg, transparent 15px, #fff 15px);
	background:
		-o-linear-gradient(45deg,  transparent 15px, #fff 15px),
		-o-linear-gradient(135deg, transparent 15px, #fff 15px),
		-o-linear-gradient(225deg, transparent 15px, #fff 15px),
		-o-linear-gradient(315deg, transparent 15px, #fff 15px);
	background:
		-webkit-linear-gradient(45deg,  transparent 15px, #fff 15px),
		-webkit-linear-gradient(135deg, transparent 15px, #fff 15px),
		-webkit-linear-gradient(225deg, transparent 15px, #fff 15px),
		-webkit-linear-gradient(315deg, transparent 15px, #fff 15px);
	background-position: bottom left, bottom right, top right, top left;
	-moz-background-size: 51% 51%;
	-webkit-background-size: 51% 51%;
	background-size: 51% 51%;
	background-repeat: no-repeat;
}
.recoList section::after {
	content: "";
	clear: both;
	display: block;
}

/* [ Title ] */
.recoList h2 {
	float: left;
	width: 370px;
	color: #6e6e6e;
}
.recoList h2::after {
	display: block;
	width: 50px;
	height: 1px;
	background: #6e6e6e;
	content: "";
}
.recoList h2 span, 
.recoList h2 b {
	display: block;
	margin-bottom: 10px;
}
.recoList h2 span {
	color: #ababab;
	font-size: 1.3rem;
	font-weight: 400;
}
.recoList h2 b { font-size: 3rem; }

/* [ Image / Movie / Youtube ] */
.recoList figure,
.recoList video,
.recoList .imageMovie {
	float: right;
	width: calc(100% - 400px);
	margin: 0;
	text-align: center;
}
.recoList figure a { display: block; }

/* [ Text ] */
.recoList .text {
	float: left;
	width: 370px;
}

@media screen and (max-width: 767px) { /* Smartphone */
	.boxWrap.bg.green {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.recoList {
		margin: 0;
		padding: 0 10px;
	}

	.recoList section {
		padding: 30px 20px;
	}
	
	/* [ Prev / Next Button ] */
	.swiper-button-prev, 
	.swiper-button-next {
		width: 24px;
		height: 24px;
		background-size: 12px 12px;
	}
	
	/* [ Title ] */
	.recoList h2 {
		float: none;
		width: 100%;
		margin-top: 0;
	}
	.recoList h2::after { display: none; }
	.recoList h2 span {
		margin-bottom: 5px;
		font-size: 1rem;
		font-weight: normal;
	}
	.recoList h2 b {
		margin-bottom: 0;
		font-size: 1.8rem;
	}
	
	/* [ Image ] */
	.recoList figure, 
	.recoList video, 
	.recoList .imageMovie {
		float: none;
		width: 100%;
	}
	.recoList figure img { width: 100%; }
	
	/* [ Text ] */
	.recoList .text {
		float: none;
		width: 100%;
	}
	.recoList .text p {
		font-size: 1.2rem;
		text-align: left;
	}
} /* */

/*======================================================================*
 *  [ siteInfo | お知らせ ]
 *======================================================================*/

.siteInfo {
	/* margin: 50px 0 !important; */
	/* padding: 15px 5px; */
	/* background: #fdecef; */
	/* background: #f9f9f9; */
	text-align: left;
}
.siteInfo::after {
	content: "";
	clear: both;
	display: block;
}

.siteInfo dt {
	float: left;
	width: 210px;
	padding-left: 42px;
	background: url(../img/icon_info_gy.svg) left center / 30px 30px no-repeat;
	font-size: 2.8rem;
	font-family: 'Outfit', sans-serif;
	font-weight: 400;
	line-height: 30px !important;
}
.siteInfo dd + dt { display: none; }
.siteInfo dd {
	float: right;
	width: calc(100% - 210px);
	padding: 5px 0 5px 20px;
	/* border-left: 1px solid #f9cbd4; */
	border-left: 1px solid #ccc;
	color: #000;
	font-size: 1.4rem;
}
.siteInfo dd + dd { margin-top: 15px; }
.siteInfo dd b {
	/* color: #e84566; */
	color: #666;
	font-size: 1.6rem;
}
.siteInfo p {
	margin: 5px 0 0;
	line-height: 1.6;
}

@media screen and (max-width: 767px) { /* Smartphone */
	.siteInfo {
		padding: 0 10px;
	}
	.siteInfo dt {
		float: none;
		width: 100%;
		margin-bottom: 20px;
		padding-left: 32px;
		background-size: 24px 24px;
		font-size: 2rem;
		line-height: 35px;
	}
	.siteInfo dd {
		float: none;
		width: 100%;
		padding: 0;
		border-left: none;
		font-size: 1.2rem;
	}
	.siteInfo dd b {
		font-size: 1.4rem;
	}
} /* */

/*======================================================================*
 *  [ covidInfo | 感染症予防 ]
 *======================================================================*/

.covidInfo {
	background: #f5f5f5;
	margin-top: 60px;
	padding: 10px 20px;
	color: #333;
	font-size: 1.4rem;
}
.covidInfo p { line-height: 1.6; }
.covidInfo b {
	font-size: 1.6rem;
}
.covidInfo > div {
	display: flex;
}
.covidInfo > div dl {
	width: 50%;
	margin: 0;
}
.covidInfo > div dl + dl {
	margin-left: 20px;
}
.covidInfo > div dt {
	margin-bottom: 5px;
	font-weight: bold;
}

@media screen and (max-width: 767px) { /* Smartphone */
	.covidInfo {
		margin-top: 40px;
		padding: 5px 10px;
		font-size: 1.2rem;
	}
	.covidInfo b {
		font-size: 1.4rem;
	}
	.covidInfo > div {
		display: block;
	}
	.covidInfo > div dl {
		width: 100%;
	}
	.covidInfo > div dl + dl {
		margin: 20px 0 0;
	}
	.covidInfo > div dd { padding-left: 1em; }
} /* */


/*======================================================================*
 *  [ contentMenu | 主要メニュー ]
 *======================================================================*/

.contentMenu a { width: 33.33%; }
.contentMenu a:nth-of-type(1) { order: 2; }
.contentMenu a:nth-of-type(2) { order: 1; }
.contentMenu a:nth-of-type(3) { order: 3; }

@media screen and (max-width: 767px) { /* Smartphone */
	.contentMenu a { width: 100%; }
} /* */

/*======================================================================*
 *  [ snsWrap | SNSエリア ]
 *======================================================================*/

.snsWrap {
	display: -webkit-flex;
	display: flex;
}
.snsWrap section {
	width: 50%;
	margin: 0;
	padding: 0;
}
.snsWrap section + section { margin-left: 60px; }
.snsWrap .snsTtl { margin-top: 0 !important; }

@media screen and (max-width: 767px) { /* Smartphone */
	.snsWrap { display: block; }
	.snsWrap section {
		width: 100%;
		padding: 0 10px;
	}
	.snsWrap section + section { margin: 60px 0 0; }
} /* */

/*======================================================================*
 *  [ blogList | ブログ一覧 ]
 *======================================================================*/

.blogList { margin: 35px 0 30px !important; }
.blogList article + article {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px dotted #c7c7c7;
}
.blogList a {
	display: -webkit-flex;
	display: flex;
	color: #666;
	text-decoration: none;
}
.blogList a:hover, 
.blogList a:active { text-decoration: underline; }

/* [ Image ] */
.blogList figure {
	width: 165px;
	margin: 0 15px 0 0;
	overflow: hidden;
}

/* [ Text ] */
.blogList .text {
	-webkit-flex: 1;
	flex: 1;
}
.blogList time {
	margin-top: 10px;
	color: #bf6e7e;
	font-size: 1.3rem;
	text-decoration: none;
}
.blogList p {
	margin: 5px 0 0;
	line-height: 1.4;
}

@media screen and (max-width: 767px) { /* Smartphone */
	.blogList { margin: 20px 0 !important; }
	.blogList article + article {
		margin-top: 15px;
		padding-top: 15px;
	}
	
	/* [ Image ] */
	.blogList figure {
		width: 120px;
	}
	
	/* [ Text ] */
	.blogList time {
		margin-top: 0;
		font-size: 1.1rem;
	}
} /* */

/*======================================================================*
 *  [ instaList | インスタ一覧 ]
 *======================================================================*/

