* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
	text-align: center;
}

body {
	position: relative;
}

li {
	list-style: none;
}

.navi_item a {
	text-decoration: none;
	color: #fff;
	transition: .6s;
}

a {
	color: #000;
	text-decoration: underline;
}

a:hover {
	opacity: 0.8;
}

img {
	width: inherit;
	vertical-align: middle;
}

html {
	overflow-x: hidden;
}

html,
body {
	height: 100%;
}

:focus {
	outline: none;
}

input,
textarea {
	-webkit-appearance: none;
	border-radius: 0;
}

.link {
	width: 18px;
	vertical-align: text-top;
	margin-bottom: 0!important;
}


.main {
	background-image: url('./images/top_back.png');
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
}

.main_logo {
	padding: 50px;
	height: 100%;
}

.main_img {
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, 0.3);
	border: white solid 5px;
	position: relative;
}

.down_img {
	position: absolute;
	padding-bottom: 10px;
	bottom: 0;
	width: 40px;
}

.down_img a {
	width: inherit;
}

.down_img img {
	animation: animate_down 2s ease 2.5s infinite;
	-webkit-animation: animate_down 2s ease 2.5s infinite;
	-o-animation: animate_down 2s ease 2.5s infinite;
	opacity: 0;
}

@keyframes animate_down {
	from {
		opacity: 0;
		margin-bottom: 20px;
	}
	to {
		opacity: 1;
		margin-bottom: 10px;
	}
}

.main_img>img {
	width: 200px;
}

.main_img>img {
	animation: animate_opacity 2s ease-in 500ms forwards;
	-webkit-animation: animate_opacity 2s ease-in 500ms forwards;
	-o-animation: animate_opacity 2s ease-in 500ms forwards;
	opacity: 0;
}

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

.wrapper {
	overflow: hidden;
}


/*.cls-2{
	stroke:#fff;
	fill:none;
	stroke-width:3;
	stroke-dasharray: 3000;
	stroke-dashoffset:3000;
	animation: DASH 3s ease-in alternate forwards;
	-webkit-animation:DASH 3s ease-in 0s forwards;
	-o-animation:DASH 3s ease-in 0s forwards;
	animation:DASH 3s ease-in 0s forwards;
}

@keyframes DASH{
	0%{
		stroke-dashoffset:3000;
		fill: none;
}
	100%{
		stroke-dashoffset:0;
		stroke-width:0;
		fill: #fff;
	}
}*/

h1 {
	font-family: 'Lato', sans-serif;
	font-size: 40px;
	letter-spacing: 0.05em;
}

th {
	font-family: 'Lato', sans-serif;
	letter-spacing: 0.05em;
}

h2 {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 18px;
	margin-bottom: 28px;
}

h3 {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	margin-bottom: 15px;
}

p {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 14px;
	line-height: 2em;
	letter-spacing: 0.2em;
}

footer p {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 10px;
	line-height: 2em;
	letter-spacing: 0.2em;
}

.tittle::after {
	content: "";
	width: 2px;
	height: 30px;
	display: block;
	background-color: #000;
	margin: 20px auto 40px;
}

.message .tittle::after,
.company .tittle::after {
	background-color: #fff;
}

.container {
	max-width: 830px;
	margin: 0 auto;
	padding: 125px 0;
}

.el_humburger {
	position: absolute;
	top: 45px;
	left: 45px;
	width: 46px;
	height: 25px;
	padding-top: 1px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding-top: 0px;
	z-index: 9999;
	cursor: pointer;
	pointer-events: auto;
	color: #fff;
	text-align: center;
}

.el_humburger.fixed {
	position: fixed;
}

.el_humburger_wrapper {
	margin: 10px 0;
	width: 30px;
	display: inline-block;
}

.js_humburgerOpen .el_humburger_text.el_humburger_text__menu {
	display: none;
}

.el_humburger_text.el_humburger_text__close {
	display: none;
}

.js_humburgerOpen .el_humburger_text.el_humburger_text__close {
	display: block;
}

.el_humburger span.el_humburger_bar {
	display: block;
	width: 100%;
	margin: 0 auto 9px;
	height: 1px;
	background: #000;
	-webkit-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.el_humburger span.el_humburger_bar:last-child {
	margin-bottom: 0;
}

.js_humburgerOpen .el_humburger span.el_humburger_bar {
	background: #fff;
}

.js_humburgerOpen .el_humburger span.el_humburger_bar.top {
	-webkit-transform: translateY(10px) rotate(-45deg);
	-ms-transform: translateY(10px) rotate(-45deg);
	transform: translateY(10px) rotate(-45deg);
}

.js_humburgerOpen .el_humburger span.el_humburger_bar.middle {
	opacity: 0;
}

.js_humburgerOpen .el_humburger span.el_humburger_bar.bottom {
	-webkit-transform: translateY(0) rotate(45deg);
	-ms-transform: translateY(0) rotate(45deg);
	transform: translateY(0) rotate(45deg);
}

.el_humburgerButton.el_humburgerButton__close {
	top: 2%;
	right: 2%;
}

.el_humburgerButton__close span.el_humburger_bar {
	display: block;
	width: 35px;
	margin: 0 auto;
	height: 4px;
	background: #000;
}

.el_humburgerButton__close span.el_humburger_bar.top {
	-webkit-transform: translateY(5px) rotate(-45deg);
	-ms-transform: translateY(5px) rotate(-45deg);
	transform: translateY(5px) rotate(-45deg);
}

.el_humburgerButton__close span.el_humburger_bar.bottom {
	-webkit-transform: translateY(-6px) rotate(45deg);
	-ms-transform: translateY(-6px) rotate(45deg);
	transform: translateY(-6px) rotate(45deg);
}

.navi {
	position: fixed;
	top: 0;
	left: -20px;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	width: 0;
	z-index: 3;
	padding-top: 125px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 150ms ease-out;
	-o-transition: all 150ms ease-out;
	transition: all 150ms ease-out;
	overflow: hidden;
}

.js_humburgerOpen .navi {
	width: 450px;
	z-index: 999;
}

.navi_item {
	text-align: left;
	margin-bottom: 28px;
	font-family: nimbus-sans, sans-serif;
	letter-spacing: .15em;
	white-space: nowrap;
	margin-left: 125px;
}

.navi_item.op_innerLink {
	cursor: pointer;
}

.navi_item a {
	font-size: 18px;
	font-weight: 700;
}

.news {
	background-color: #FCFCFC;
	position: relative;
}

.news .container {}

.about {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.about_content {
	width: 100%;
	padding: 125px 0;
}

.about_img {
	background-image: url("./images/logo_bg.jpg");
	background-size: cover;
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	align-items: center;
}

.about_img img {
	width: 150px;
}

.message,
.company {
	background-color: #79838D;
	color: #fff;
}

.message .container {
	padding-bottom: 0;
}

.message_img {
	padding: 80px 80px 125px;
}

.message_img img {
	width: 100%;
}

.business_intro h2,
.business_intro h1,
.business_intro p,
.member_intro p {
	text-align: left;
}

.business_intro h1 {
	margin-bottom: 40px;
}

.business_contents {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	overflow-x: scroll;
	margin-bottom: 80px;
}

.business_intro::after {
	display: block;
	content: "";
	width: 100%;
	height: 1px;
	background-color: #000;
	margin-bottom: 80px;
}

.business_intro:last-child::after {
	margin-bottom: 0;
}

.business_contents div {
	margin-right: 40px;
	width: 240px;
}

.business_contents a {
	width: inherit;
}

.sns_icons a {
	width: initial;
}

.business_contents img {
	margin-bottom: 40px;
}
.business_contents.bz img {
	max-width: 200px;
	width: 100%;
	margin: 0 auto;
}
.business_contents.bz img {
	margin-bottom: 40px;
}

.member {
	background-color: #FCFCFC;
}

.adviser {
	background-color: #ffffff;
}

.history {
	background-color: #FCFCFC;
}

.contact {
	background-color: #ffffff;
}

.member_intro {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	overflow-x: scroll;
}

.member_intro div {
	margin-right: 40px;
	width: 240px;
}

.member_intro img {
	margin-bottom: 40px;
}

.sns_icons {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin: 20px 0 0 !important;
}

.sns_icons img {
	width: 35px;
	height: 35px;
	margin: 5px 10px;
}

.timeline {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 60px;
	align-items: center;
	height: 40px;
}

.history h2 {
	margin: 40px 0 0;
	opacity: 0;
}

.timeline h1 {
	text-align: right;
	font-size: 32px;
}

.timeline p {
	text-align: left;
	margin: 0;
}

.timeline div:nth-child(1) {
	position: relative;
	padding-right: 37px;
	width: 100%;
}

.timeline div:nth-child(2) {
	padding-left: 34px;
	width: 100%;
}

.circle {
	display: block;
	width: 12px;
	height: 12px;
	background-color: #000;
	border-radius: 50%;
	position: absolute;
	right: -6px;
	top: 19px;
}

.circle::after{
 content:"";
 display: block;
 width: 2px;
 height:104px; 
 background-color: #000;
 top: 6px;
  right: -5px;
  position: relative;
}

.last .circle::after{
 height: 0;
}

.history_below:hover .last .circle::after{
 animation:history_hov 2s ease 1s forwards;
}

.history_below:hover .history h2 {
	animation: animate_opacity 2s ease 3s forwards;
}

@keyframes history_hov {
	0% {
		height: 0px;
	}
	100% {
		height: 60px;
	}
}

.timeline:last-child {
	margin-bottom: 0;
}

/*.timeline:last-child .circle::after {
	display: none;
}*/

.form_input {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 40px;
	align-items: center;
}

.form_title {
	width: 40%;
}

.form_input p {
	text-align: left;
	margin: 0;
}

.form_blank {
	width: 60%;
}

.form_submit input {
	text-align: center;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	letter-spacing: 0.2em;
	background-color: #fff;
	transition: 1s;
}

.form_submit input:hover {
	background-color: #000;
	color: #fff;
}

input {
	height: 60px;
	width: 100%;
	text-align: left;
	border: 2px solid #000;
	padding: 5px;
}

textarea {
	height: 180px;
	width: 100%;
	text-align: left;
	border: 2px solid #000;
	padding: 5px;
}

#success,
#error {
	display: none;
	margin-top: 50px;
}

#success {
	color: #419873;
}

#error {
	color: red;
}

footer {
	background-color: #222222;
	color: #fff;
	padding-bottom: 11px;
}

.footer_logo {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 85px 0;
	align-items: center;
}

footer img {
	width: 150px;
	height: auto;
}

.align-top {
	vertical-align: top !important;
}

tr {
	width: 100%;
}

th {
	text-align: left;
	width: 30%;
}

td {
	text-align: left;
	width: 70%;
	font-family: 'Noto Sans JP', sans-serif;
}

.sp_br {
	display: none;
}
.sns_icons {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}
@media screen and (max-width: 860px) {
	.container {
		padding-right: 80px;
		padding-left: 80px;
	}
}

@media screen and (max-width: 760px) {
	.container {
		padding-right: 40px;
		padding-left: 40px;
	}
	.about {
		flex-direction: column;
	}
	.about_img {
		padding: 125px 0;
	}
	.form_input {
		flex-direction: column;
	}
	.main_img>img {
		width: 140px;
	}
}

@media screen and (max-width: 480px) {
	.main_logo {
		padding: 20px;
		height: 100%;
	}
	.container,
	.about_content {
		padding: 85px 20px;
	}
	.message_img {
		padding: 40px 20px 85px;
	}
	.el_humburger {
		top: 20px;
		left: 20px;
	}
	.js_humburgerOpen .navi {
		width: 95%;
	}
	.navi {
		padding-top: 85px;
	}
	.navi_item {
		margin-left: 100px;
		margin-bottom: 20px;
	}
	.about_img img {
		width: 150px;
	}
	.about_img {
		padding: 85px 0;
	}
	.center>div {
		margin: 0 auto !important;
	}
	.business_contents {
		margin-bottom: 60px;
	}
	.business_intro::after {
		margin-bottom: 60px;
	}
	.business_contents div,
	.member_intro div {
		margin-right: 20px;
	}	
	.history_timeline h1 {
		font-size: 18px;
	}
	.history h2 {
		opacity: 1;
	}
	.last .circle::after{
		height: 60px;
	}
	.form_title,
	.form_blank {
		width: 100%;
	}
	input {
		height: 40px;
	}
	.form_input {
		margin-bottom: 20px;
	}
	.footer_logo {
		padding: 45px 0;
	}
	footer img {
		width: 120px
	}
	h1 {
		font-family: 'Lato', sans-serif;
		font-size: 22px;
		letter-spacing: 0.05em;
	}
	h2 {
		font-family: 'Noto Sans JP', sans-serif;
		font-size: 14px;
		margin-bottom: 28px;
	}
	h3 {
		font-family: 'Noto Sans JP', sans-serif;
		font-size: 12px;
		margin-bottom: 15px;
	}
	p {
		font-family: 'Noto Sans JP', sans-serif;
		font-size: 10px;
		line-height: 2em;
		letter-spacing: 0.2em;
	}
	.sp_br {
		display: block;
	}
	.circle {
		display: block;
		width: 12px;
		height: 12px;
		background-color: #000;
		border-radius: 50%;
		position: absolute;
		right: -6px;
		top: 5px;
	}
	td {
		text-align: left;
		width: 70%;
		font-family: 'Noto Sans JP', sans-serif;
		font-size: 10px;
	}
	.about_img img {
		width: 120px;
	}
	.link {
		width: 14px;
		vertical-align: text-top;
		margin-bottom: 0!important;
	}
	th {
		font-size: 12px;;
	}
	.business_contents.bz img {
		width: 200px;
		margin: 0 auto;
	}
	.business_contents.bz img {
		margin-bottom: 40px;
	}
}