<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* clearfix */
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}
/* flex */
.flex, .flexA, .flexB, .flexC {
	display: flex;
	flex-wrap: wrap;
}
.flexA {
	justify-content: space-around;
}
.flexB {
	justify-content: space-between;
}
.flexC {
	justify-content: center;
}
/*------------------------------------------------------------
	common
------------------------------------------------------------*/
@media all and (min-width: 768px) {
	.color01:hover {
		color: #81cac4;
	}
	.color01 p:hover {
		color: #81cac4;
		transition: all .5s cubic-bezier(.43, .05, .17, 1);
	}
	.color02:hover {
		color: #fff;
	}
	.color03:link {
		text-decoration:underline;
	}
	.color03:hover {
		color: #81cac4;
	}
	.color03 p:hover {
		color: #81cac4;
		transition: all .5s cubic-bezier(.43, .05, .17, 1);
	}
	.color04:hover {
		color: #4e4d4d;
	}
	.viewBox img {
		transition: -webkit-transform 1s cubic-bezier(.43, .05, .17, 1);
		transition: transform 1s cubic-bezier(.43, .05, .17, 1);
		transition: transform 1s cubic-bezier(.43, .05, .17, 1), -webkit-transform 1s cubic-bezier(.43, .05, .17, 1);
	}
	.viewBox a:hover img {
		-webkit-transform: rotate(270deg);
		transform: rotate(270deg);
	}
	.viewBox a:hover {
		color: #81cac4;
	}
	.sns .blueIcon {
		display: none;
	}
	.sns a:hover .blackIcon {
		display: none;
	}
	.sns a:hover .blueIcon {
		display: block;
	}
}
@media all and (min-width: 900px) {
	.cover {
		display: none !important;
	}
}
.cover.on {
	opacity: 1;
	visibility: visible;
	-webkit-transition: opacity .6s ease 0s, visibility 0s linear 0s, background-color 0s linear .9s;
	transition: opacity .6s ease 0s, visibility 0s linear 0s, background-color 0s linear .9s;
}
.cover {
	display: block;
	position: fixed;
	top: -10%;
	left: -10%;
	width: 120%;
	height: 120%;
	z-index: 7;
	background-color: rgba(0, 0, 0, .5);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity .6s ease 0s, visibility 0s linear .6s, background-color 0s linear .9s;
	transition: opacity .6s ease 0s, visibility 0s linear .6s, background-color 0s linear .9s;
}
.content {
	margin-left: auto;
	padding-right: 60px;
	box-sizing: border-box;
	width: calc(50% + 584px);
	max-width: 85%;
}
@media all and (min-width: 768px) and (max-width: 1000px) {
	.content {
		max-width: 87%;
	}
}
@media all and (max-width: 767px) {
	.content {
		padding-right: 0;
		width: 100%;
		max-width: inherit;
	}
}
.sns {
	display: flex;
}
.sns li {
	margin-left: 10px;
}
.line {
	margin: 0 60px;
	position: relative;
}
.line::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	border-top: 1px solid #bab9b9;
	background-color: #d1d0d0;
	position: absolute;
	top: 0;
	left: 0;
}
.viewBox span {
	margin-top: 8px;
	display: inline-block;
}
.viewBox img {
	margin-right: 16px;
	width: 51px;
}
@media all and (min-width: 768px) and (max-width: 900px) {
	.viewBox span {
		font-size: 1.4rem;
	}
	.viewBox img {
		width: 40px;
	}
}
@media all and (max-width: 767px) {
	.content {
		margin: 0 auto;
		width: calc(100% - 60px);
	}
	.line {
		margin: 0 25px;
		width: auto;
		border-color: #c9c8c8;
	}
	.line::after {
		height: 0;
	}
	.viewBox span {
		margin-top: 3px;
		font-size: 1rem;
	}
	.viewBox img {
		margin-right: 10px;
		width: 28px;
	}
}



.inscal {
	opacity: 0;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
	-webkit-transition: all 1.5s ease-out;
	transition: all 1.5s ease-out;
}
.inscal.fit {
	opacity: 1;
	-webkit-transform: scale(1.0);
	transform: scale(1.0);
}</pre></body></html>