@charset "utf-8";
/*
------------
home.css
------------
*/
.ani_trigger {}

/* main */
#main {}
#main {
	background: url("../../images/content/home/main_bg.jpg") no-repeat center bottom;
	background-size: cover;
	height: 447px;
	overflow: hidden;
}
#main::after {
	content: "";
	background: #000;
	width: 100%;
	height: 447px;
	position: absolute;
	top: 70px;
	left: 0;
	z-index: 1;
	animation-name: first_main;
	animation-timing-function: ease;
	animation-duration: .5s;
	animation-delay: .5s;
	animation-fill-mode: forwards;
	transform-origin: right top;
}
@keyframes first_main {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
#main figure {
	width: 425px;
	opacity: 0;
	animation-name: main_logo;
	animation-timing-function: ease-in-out;
	animation-duration: .5s;
	animation-delay: 1.5s;
	animation-fill-mode: forwards;
	position: relative;
}
@keyframes main_logo {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@media only screen and (max-width: 767px) {
#main {
	height: 200px;
}
#main::after {
	height: 200px;
	top: 60px;
}
#main figure {
	width: 240px;
}
}
/* work */
#works {
	position: relative;
	margin: 100px 0 0 0;
}
#works .sc_anime {
	font-family: century-gothic;
	transform: rotate(-90deg);
	position: absolute;
	top: -30px;
	left: 24px;
	display: block;
}
#works .sc_anime::before {
	content: "";
	background-color: #000;
	width: 120px;
	height: 1px;
	position: absolute;
    top: 6px;
	left: -135px;
	animation-name: scroll_anime;
	animation-timing-function: ease-in-out;
	animation-duration: 3.5s;
	animation-delay: .2s;
	animation-iteration-count: infinite;
	transform-origin: right top;
}
@keyframes scroll_anime {
	0% {
		transform: scale(0.2, 1);
	}
	50% {
		transform: scale(1, 1);
	}
	100% {
		transform: scale(0.2, 1);
	}
}
#works .works_nav {
	width: 80%;
	margin: 70px auto 0 auto;
	font-family: century-gothic;
}
#works .works_nav ul {
}
#works .works_nav ul li {
	opacity: 0;
	transform-origin: center;
	transform: translateY(30px) scale(1.1);
}
#works .works_nav ul.active li:nth-child(1) {
	opacity: 1;
	transform: translateY(0) scale(1);
	transition: opacity 1.4s linear 0s, transform 1.4s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
}
#works .works_nav ul.active li:nth-child(2) {
	opacity: 1;
	transform: translateY(0) scale(1);
	transition: opacity 1.4s linear .1s, transform 1.4s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
}
#works .works_nav ul.active li:nth-child(3) {
	opacity: 1;
	transform: translateY(0) scale(1);
	transition: opacity 1.4s linear .2s, transform 1.4s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
}
#works .works_nav ul.active li:nth-child(4) {
	opacity: 1;
	transform: translateY(0) scale(1);
	transition: opacity 1.4s linear .3s, transform 1.4s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
}
#works .works_nav ul.active li:nth-child(5) {
	opacity: 1;
	transform: translateY(0) scale(1);
	transition: opacity 1.4s linear .4s, transform 1.4s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
}
#works .works_nav ul.active li:nth-child(6) {
	opacity: 1;
	transform: translateY(0) scale(1);
	transition: opacity 1.4s linear .5s, transform 1.4s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
}
#works .works_nav ul.active li:nth-child(7) {
	opacity: 1;
	transform: translateY(0) scale(1);
	transition: opacity 1.4s linear .6s, transform 1.4s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
}
#works .works_nav ul.active li:nth-child(8) {
	opacity: 1;
	transform: translateY(0) scale(1);
	transition: opacity 1.4s linear .7s, transform 1.4s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
}
#works .works_nav ul.active li:nth-child(9) {
	opacity: 1;
	transform: translateY(0) scale(1);
	transition: opacity 1.4s linear .8s, transform 1.4s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
}
#works .works_nav li:not(:first-child) {
	margin: 0 0 0 35px;
}
#works .works_nav li a {
	padding: 0;
	transition: all .25s ease;
}
#works .works_nav li a:hover {
	opacity: 0.5;
}
#works .works_nav li a.active {
	/*
	background: #000;
	color: #fff;
	border-radius: 20px;
	*/
	position: relative;
}
#works .works_nav li a.active::after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000;
}
#works .works_tmb {
	width: 80%;
	margin: 70px auto 0 auto;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	align-items: flex-start;
}
#works .works_tmb {
	opacity: 0;
	transform-origin: center;
	transform: translateY(30px) scale(1.1);
}
#works .works_tmb.active {
	opacity: 1;
	transform: translateY(0) scale(1);
	transition: opacity 1.4s linear 0s, transform 1.4s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
}
#works .works_tmb a {
	width: 22%;
	margin: 0 3% 3% 0;
	display: block;
	overflow: hidden;
}
#works .works_tmb .tmb_img {
	transition: all .25s ease;
}
#works .works_tmb .tmb_img:hover {
	transform: scale(1.1);
}
#works .works_tmb::after {
	display: block;
	content:"";
	width: 22%;
}
@media only screen and (max-width: 767px) {
#works {
	margin: 55px 0 0 0;
}
#works .sc_anime {
	display: none;
}
#works .works_nav {
	width: 90%;
	margin: 45px auto 0 auto;
}
#works .works_nav ul {
}
#works .works_nav ul li {
	width: 49%;
	text-align: center;
	background: #f0f0f0;
	margin: 0 2% 2% 0 !important;
	font-size: 0.8rem;
}
#works .works_nav ul li:nth-child(2n) {
	margin: 0 0 2% 0 !important;
}	
#works .works_nav li:not(:first-child) {
	margin: 0 0 0 0;
}
#works .works_nav li a {
	width: 100%;
	display: inline-block;
	padding: 10px 0;
	transition: all .25s ease;
}
#works .works_nav li a:hover {
	background: #000;
	color: #fff;
	opacity: 1;
}
#works .works_nav li a.active {
	background: #000;
	color: #fff;
	border-radius: 0;
}
#works .works_nav li a.active::after {
	content: none;
}
#works .works_tmb {
	width: 90%;
	margin: 30px auto 0 auto;
	justify-content: space-between;
}
#works .works_tmb a {
	width: 32%;
	margin: 0 0% 2% 0;
}
#works .works_tmb::after {
	display: block;
	content:"";
	width: 32%;
}
}
/* steatment */
#steatment {
	position: relative;
	margin: 150px 0 0 0;
}
h2.content_tit {
	text-align: center;
	opacity: 0;
	transition: all .25s ease;
}
h2.content_tit.active {
	opacity: 1;
}
h2.content_tit.active span {
	position: relative;
}
h2.content_tit.active span::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 100%;
	height: 3px;
	background: #231815;
	animation-name: tit_line;
	animation-timing-function: ease;
	animation-duration: .25s;
	animation-delay: .25s;
	animation-fill-mode: forwards;
	transform-origin: left top;
	transform: scale(0, 0);
}
@keyframes tit_line {
	0% {
		transform: scale(0, 1);
	}
	100% {
		transform: scale(1, 1);
	}
}
#steatment article {
	margin: 75px auto 0 auto;
	display: table;
}
#steatment article p:not(:first-child) {
	margin: 30px 0 0 0;
}
#steatment article p {
	opacity: 0;
	transform-origin: center;
	transform: translateY(30px) scale(1.1);
}
#steatment article p.active {
	opacity: 1;
	transform: translateY(0) scale(1);
	transition: opacity 1.4s linear 0s, transform 1.4s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
}
@media only screen and (max-width: 767px) {
#steatment {
	margin: 70px 0 0 0;
}
h2.content_tit {
	font-size: 1.2rem;
}
h2.content_tit.active span::after {
	bottom: -5px;
}
#steatment article {
	margin: 50px auto 0 auto;
	width: 90%;
}
#steatment article p:not(:first-child) {
	margin: 20px 0 0 0;
}
#steatment article p {
	font-size: 0.9rem;
}
}
/* service */
#service {
	margin: 150px 0 0 0;
}
#service p.lead_copy {
	margin: 75px auto 0 auto;
	display: table;
	opacity: 0;
	transform-origin: center;
	transform: translateY(30px) scale(1.1);
}
#service p.lead_copy.active {
	opacity: 1;
	transform: translateY(0) scale(1);
	transition: opacity 1.4s linear 0s, transform 1.4s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
}
#service .flex_sb {
	margin: 75px auto 0 auto;
	width: 90%;
}
#service .flex_sb article {
	width: 30%;
	opacity: 0;
	transform-origin: center;
	transform: translateY(30px) scale(1.1);
}
#service .flex_sb.active article {
	opacity: 1;
	transform: translateY(0) scale(1);
}
#service .flex_sb.active article:nth-child(1) {
	transition: opacity 1.4s linear 0s, transform 1.4s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
}
#service .flex_sb.active article:nth-child(2) {
	transition: opacity 1.4s linear .25s, transform 1.4s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
}
#service .flex_sb.active article:nth-child(3) {
	transition: opacity 1.4s linear .5s, transform 1.4s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
}
#service .flex_sb article h3 {
	font-size: 1.2rem;
	font-weight: 500;
	letter-spacing: 0.1em;
}
#service .flex_sb article p {
	letter-spacing: 0.1em;
	margin: 15px 0 0 0;
	line-height: 1.7;
}
@media only screen and (max-width: 767px) {
#service {
	margin: 70px 0 0 0;
}
#service p.lead_copy {
	width: 90%;
	margin: 50px auto 0 auto;
	font-size: 0.9rem;
}
#service .flex_sb {
	margin: 50px auto 0 auto;
	display: block;
}
#service .flex_sb article {
	width: 100%;
}
#service .flex_sb.active article:not(:first-child) {
	margin: 40px 0 0 0;
}
#service .flex_sb article h3 {
	font-size: 1rem;
}
#service .flex_sb article p {
	font-size: 0.9rem;
}
}
/* member */
#member {
	margin: 150px 0 0 0;
}
#member .flex_sb {
	margin: 75px auto 0 auto;
	align-items: flex-start !important;
	width: 90%;
}
#member .flex_sb article {
	width:  48%;
	letter-spacing: 0.1em;
	line-height: 1.7;
	opacity: 0;
	transform-origin: center;
	transform: translateY(30px) scale(1.1);
}
#member .flex_sb.active article {
	opacity: 1;
	transform: translateY(0) scale(1);
}
#member .flex_sb.active article:nth-child(1) {
	transition: opacity 1.4s linear 0s, transform 1.4s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
}
#member .flex_sb.active article:nth-child(2) {
	transition: opacity 1.4s linear .25s, transform 1.4s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
}
#member .flex_sb article h3 {
	font-size: 1.4rem;
	font-weight: 500;
}
#member .flex_sb article h3 span {
	display: block;
	font-size: 1rem;
	padding: 0 0 5px 0;
	font-weight: normal;
}
#member .flex_sb article p {
	margin: 20px 0;
}
@media only screen and (max-width: 767px) {
#member {
	margin: 70px 0 0 0;
}
#member .flex_sb {
	margin: 50px auto 0 auto;
	display: block;
}
#member .flex_sb article {
	width:  100%;
}
#member .flex_sb.active article:not(:first-child) {
	margin: 40px 0 0 0;
}
#member .flex_sb article h3 {
	font-size: 1.2rem;
}
#member .flex_sb article h3 span {
	font-size: 0.9rem;
}
#member .flex_sb article p,
#member .flex_sb article dl {
	font-size: 0.9rem;
}
}
/* award */
#award {
	margin: 150px 0 0 0;
}
#award article {
	margin: 75px auto 0 auto;
	align-items: flex-start !important;
	width: 90%;
	letter-spacing: 0.1em;
	opacity: 0;
	transform-origin: center;
	transform: translateY(30px) scale(1.1);
}
#award article.active {
	opacity: 1;
	transform: translateY(0) scale(1);
	transition: opacity 1.4s linear 0s, transform 1.4s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
}
#award article p {
	width: 10%;
	line-height: 1.4;
}
#award article ul {
	width: 90%;
	line-height: 1.4;
}
#award article li {
	position: relative;
	padding: 0 0 0 20px;
}
#award article li::before {
	content: "";
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #000;
	position: absolute;
	top: 6px;
	left: 0;
}
#award article li:not(:first-child) {
	margin: 20px 0 0 0;
}
@media only screen and (max-width: 767px) {
#award {
	margin: 70px 0 0 0;
}
#award article {
	margin: 50px auto 0 auto;
	display: block;
}
#award article p {
	width: 100%;
	margin: 0 0 10px 0;
}
#award article ul {
	width: 100%;
}
}

/* company */
#company {
	margin: 150px 0 0 0;
}
#company dl {
	width: 70%;
	margin: 75px auto 0 auto;
	flex-wrap: wrap;
	line-height: 2;
	letter-spacing: 0.1em;
	opacity: 0;
	transform-origin: center;
	transform: translateY(30px) scale(1.1);
	align-items: flex-start;
}
#company dl.active {
	opacity: 1;
	transform: translateY(0) scale(1);
	transition: opacity 1.4s linear 0s, transform 1.4s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
}
#company dt {
	width: 10%;
	margin: 0 5% 25px 0;
	text-align-last: justify;
	text-justify: inter-ideograph;
}
#company dd span {
	font-size: 1.2rem;
}
#company dd {
	width: 85%;
	margin: 0 0 25px 0;
}
@media only screen and (max-width: 767px) {
#company {
	margin: 70px 0 0 0;
}
#company dl {
	width: 90%;
	margin: 50px auto 0 auto;
	display: block;
	line-height: 1.7;
}
#company dt {
	width: 100%;
	margin: 20px 0 0 0;
	text-align-last: left;
	font-weight: 500;
	background: #f1f1f1;
	padding: 10px;
	font-size: 0.9rem;
}
#company dd {
	width: 100%;
	margin: 0 0 0 0;
	padding: 10px;
	font-size: 0.9rem;
}
#company dd span {
	font-size: 1rem;
}
}
/* access */
#access {
	margin: 150px 0 0 0;
}
#access .lead_copy {
	width: 80%;
	margin: 75px auto 0 auto;
	line-height: 1.7;
	opacity: 0;
	transform-origin: center;
	transform: translateY(30px) scale(1.1);
}
#access .lead_copy.active {
	opacity: 1;
	transform: translateY(0) scale(1);
	transition: opacity 1.4s linear 0s, transform 1.4s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
}
#access #map {
	width: 80%;
	height: 600px;
	margin: 35px auto 0 auto;
	background-color: #c0c0c0;
	opacity: 0;
	transform-origin: center;
	transform: translateY(30px) scale(1.1);
}
#access #map.active {
	opacity: 1;
	transform: translateY(0) scale(1);
	transition: opacity 1.4s linear 0s, transform 1.4s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
}
@media only screen and (max-width: 767px) {
#access {
	margin: 70px 0 0 0;
}
#access .lead_copy {
	width: 90%;
	margin: 50px auto 0 auto;
	font-size: 0.9rem;
}
#access #map {
	width: 90%;
	height: 300px;
}
#access .map_app {
	width:  90%;
	font-size: 0.9rem;
	letter-spacing: 0.1em;
	margin: 20px auto 0 auto;
	text-align: center;
}
#access .map_app a {
	width: 100%;
	border-radius: 50px;
	color: #fff;
	background: #000000;
	display: inline-block;
	padding: 25px 0;
}
}
/* contact */
#contact {
	margin: 150px 0 0 0;
	padding: 0 0 100px 0;
}
#contact p.lead_copy {
	margin: 75px auto 0 auto;
	display: table;
	opacity: 0;
	transform-origin: center;
	transform: translateY(30px) scale(1.1);
}
#contact p.lead_copy.active {
	opacity: 1;
	transform: translateY(0) scale(1);
	transition: opacity 1.4s linear 0s, transform 1.4s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
}
#contact .form_box {
	width: 80%;
	margin: 75px auto 0 auto;
	opacity: 0;
	transform-origin: center;
	transform: translateY(30px) scale(1.1);
}
#contact .form_box.active {
	opacity: 1;
	transform: translateY(0) scale(1);
	transition: opacity 1.4s linear 0s, transform 1.4s cubic-bezier(0.075, 0.82, 0.165, 1) 0s;
}
#contact .form_box dl {
	align-items: flex-start;
}
#contact .form_box dt {
	width: 30%;
	position: relative;
	padding: 12px 75px 0 0;
	line-height: 1.4;
}
#contact .form_box dd {
	width: 70%;
	padding: 0;
}
#contact .form_box dt:not(:last-child),
#contact .form_box dd:not(:last-child) {
	margin: 0 0 20px 0;
}
#contact .form_box dt span {
	background-color: #000;
	font-size: 0.8em;
	line-height: 1;
	letter-spacing: 0.2em;
	color: #fff;
	padding: 8px 15px;
	position: absolute;
	top: 9px;
	right: 15px;
}
#contact .form_box dd .size01 {
	width: 100%;
	height: 50px;
	font-size: 0.9rem;
	padding: 0 2%;
	box-sizing: border-box;
}
#contact .form_box dd .size02 {
	width: 100% !important;
	height: 250px !important;
	font-size: 0.9rem;
	padding: 2% 2%;
	box-sizing: border-box;
}
#contact .form_box dd ul {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	line-height: 2.5;
}
#contact .form_box dd li {
	margin: 0 30px 0 0;
}
#contact .form_box dd label {
	margin: 0 0 0 5px;
}
#contact .form_box dd input[type="text"],
#contact .form_box dd input[type="email"],
#contact .form_box dd input[type="tel"],
#contact .form_box dd textarea {
	border: 1px solid #898989;
	background-color: #efefef;
}
#contact .form_box dd input[type="text"]:focus,
#contact .form_box dd input[type="email"]:focus,
#contact .form_box dd input[type="tel"]:focus,
#contact .form_box dd textarea:focus {
	border: 1px solid #000;
	background-color: #fff;
	outline: 0;
}
#contact .form_box .send_area {
	display: table;
	margin:  75px auto 0 auto;
}
#contact .form_box .send_area p {
	margin: 0 0 25px 0;
}
#contact .form_box .send_area span {
	padding: 0 0 0 5px;
}
#contact .form_box .send_area .sbm {
	padding: 20px 60px;
	border: 1px solid #959595;
	background-color: #959595;
	color: #fff;
	font-size: 1rem;
	letter-spacing: 0.1em;
	cursor: pointer;
	transition: all 0.2s ease;
	margin: 20px 0 0 0;
}
#contact .form_box .send_area .sbm:hover {
	background-color: #fff;
	color: #000;
	border: 1px solid #000;
	box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
#contact {
	margin: 70px 0 0 0;
}
#contact p.lead_copy {
	width: 90%;
	margin: 50px auto 0 auto;
	font-size: 0.9rem;
}
#contact .form_box {
	width: 90%;
	margin: 50px auto 0 auto;
}
#contact .form_box dl {
	display: block;
}
#contact .form_box dt {
	width: 100%;
	padding: 0;
	margin: 0 0 10px 0 !important;
}
#contact .form_box dd {
	width: 100%;
	padding: 0;
	margin: 0 0 30px 0 !important;
}
#contact .form_box dt:not(:last-child),
#contact .form_box dd:not(:last-child) {
	margin: 0;
}
#contact .form_box dt span {
	font-size: 0.7rem;
	line-height: 1;
	padding: 2px 10px;
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 0 0 10px;
	border-radius: 30px;
}
#contact .form_box .send_area {
	display: block;
	margin:  45px auto 0 auto;
	width: 100%;
}
#contact .form_box .send_area p {
	line-height: 1.4;
}
#contact .form_box .send_area .sbm {
	width: 100%;
	padding: 20px 0;
}
}