@charset "UTF-8";

/* ==================================================
MESSAGE LINK AREA
================================================== */
#messagelinkArea {
	padding: 60px 8% 0;
}
#messagelinkArea .linkBtn {
}

#messagelinkArea .linkBnr {
	margin-top: 70px;
}

#messagelinkArea .linkBnr a {
	display: block;
	border: 2px solid #d3884f;
	margin: 0 auto;
	max-width: 420px;
	background: #fff;
	transition: all 0.4s ease-out 0s;
}

#messagelinkArea .linkBnr a img {
	max-width: 230px;
}

#messagelinkArea .linkBnr a:hover {
	transform: scale(0.96);
}

/* ==================================================
SNS AREA
================================================== */
#snsArea.area {
}
#snsArea .areaTitle {
}
#snsArea .flexBlk {
	display: flex;
	justify-content: center;
	align-items: stretch;
	flex-wrap: wrap;
	flex-direction: row;
	max-width: 1200px;
	margin: 0 auto;
}
#snsArea .flexBlk .column {
	width: calc(50% - 10px);
	max-width: 800px;
	margin: 0 auto;
}

#snsArea .flexBlk .column:nth-child(odd) {
	margin-right: 10px;
}
#snsArea .flexBlk .column:nth-child(even) {
	margin-left: 10px;
}

@media screen and (max-width: 900px) {
	#snsArea.area {
	}
	#snsArea .areaTitle {
	}
	#snsArea .flexBlk {
		display: block;
	}
	#snsArea .flexBlk .column {
		width: 90%;
		max-width: 600px;
	}
	#snsArea .flexBlk .column:nth-child(odd) {
		margin: 0 auto;
	}
	#snsArea .flexBlk .column:nth-child(even) {
		margin: 0 auto;
	}
}

/* #twWrap
------------------------------ */
#twWrap {
	/*! padding: 10px; */
	background-color: #fff;
	min-height: 400px;
}
#twWrap .twFrame {
	overflow: hidden;
	height: 100%;
	margin: 0 auto;
	border: 1px solid #d8d8d8;
	border-radius: 6px;
}
#twWrap .twFrame a.twitter-timeline {
}

@media screen and (max-width: 900px) {
	#twWrap {
		margin-bottom: 40px !important;
	}

	#twWrap .twFrame {
		height: 60vh;
		min-height: 500px;
	}

	#twWrap .twFrame a.twitter-timeline {
	}
}

/* #instaWrap
------------------------------ */
#instaWrap {
}
#instaWrap .instaFrame {
	padding: 10px 5px 10px 10px;
	background-color: #fff;
	border: 1px solid #d8d8d8;
	border-radius: 6px;
}
#instaWrap .instaFrame ul {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	flex-direction: row;
}
#instaWrap .instaFrame ul li {
	width: calc(100% / 3 - 5px);
	margin: 5px 5px 0 0;
	overflow: hidden;
	border: 1px solid #e1e8ec;
	background: url("/original/designenergy/asset/img/insta_bg.jpg") no-repeat center center;
	background-size: 100%;
	transition: all 0.4s ease-out 0s;
}
#instaWrap .instaFrame ul li:hover {
	background-size: 108%;
}
#instaWrap .instaFrame ul li:nth-child(1),
#instaWrap .instaFrame ul li:nth-child(2),
#instaWrap .instaFrame ul li:nth-child(3) {
	margin-top: 0;
}
#instaWrap .instaFrame ul li a {
	display: block;
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: cover;
	width: 100%;
	transition: all 0.4s ease-out 0s;
}
#instaWrap .instaFrame ul li a:hover {
	transform: scale(1.06);
	filter: brightness(110%) contrast(110%) saturate(120%);
}
#instaWrap .instaFrame ul li a img {
}

@media screen and (max-width: 900px) {
	#instaWrap {
	}

	#instaWrap .instaFrame {
	}

	#instaWrap .instaFrame ul {
	}

	#instaWrap .instaFrame ul li {
	}

	#instaWrap .instaFrame ul li:nth-child(1),
	#instaWrap .instaFrame ul li:nth-child(2),
	#instaWrap .instaFrame ul li:nth-child(3) {
	}

	#instaWrap .instaFrame ul li a {
	}

	#instaWrap .instaFrame ul li a:hover {
	}

	#instaWrap .instaFrame ul li a img {
	}
}

/* ==================================================
スクロールを促すアイコンのアニメーション設定
================================================== */

/* Scroll Animation */
@media screen and (min-width: 641px) {
	.moreBtn {
		position: fixed;
		bottom: 100px;
		right: 30px;
		z-index: 100;
	}
}

@media screen and (max-width: 640px) {
	.moreBtn {
		position: fixed;
		bottom: 30px;
		left: 30px;
		z-index: 100;
	}
}

@media screen and (max-width: 900px) {
	.moreBtn {
		display: none !important;
	}
}

.moreBtn::before {
	content: "";
	display: block;
	width: 32px;
	height: 32px;
	border-radius: 30px;
	background: rgba(0, 0, 0, 0.1);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: -2;
	transform: scale(2.2);
}

.moreBtn::after {
	content: "";
	display: block;
	width: 32px;
	height: 32px;
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.6);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: -1;
	transform: scale(2.2);
	animation: linkBg 2s infinite;
}

@keyframes linkBg {
	0% {
		transform: scale(1.2);
		opacity: 0;
	}

	40% {
		opacity: 1;
	}

	80% {
		transform: scale(2.2);
		opacity: 0;
	}

	100% {
		opacity: 0;
	}
}

.moreBtn > a {
	padding-top: 45px;
	position: relative;
	font-family: urw-din-condensed, sans-serif;
	font-weight: 600;
	font-size: 1.2rem;
	letter-spacing: 0.05em;
	text-decoration: none;
	color: #555;
	display: inline-block;
	transition: color 0.4s ease-out 0s;
}

.moreBtn > a::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 24px;
	height: 40px;
	border: 2px solid #555;
	border-radius: 50px;
	box-sizing: border-box;
	transition: border-color 0.4s ease-out 0s;
}

.moreBtn > a::before {
	content: '';
	position: absolute;
	top: 10px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 6px;
	height: 6px;
	background-color: #555;
	border-radius: 100%;
	animation: mouseWheel 2s infinite;
	transition: background-color 0.4s ease-out 0s;
}

.moreBtn > a:hover {}

.moreBtn > a:hover::after {}

.moreBtn > a:hover::before {}

@keyframes mouseWheel {
	0% {
		transform: translate(0, -3px);
		opacity: 0;
	}

	40% {
		opacity: 1;
	}

	80% {
		transform: translate(0, 18px);
		opacity: 0;
	}

	100% {
		opacity: 0;
	}
}

/* --- */