@charset "UTF-8";

/* GENERAL */
html {
	font-family: 'Noto Serif JP', 'Noto Sans JP', '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', 'Yu Mincho', 'Yu Gothic', 'Arial', 'Helvetica', serif;
	font-size: 16px;
}
html.loading {
	position: fixed;
}
main {
	position: relative;
	margin-top: -94px;
	overflow: hidden;
}
* {
	box-sizing: border-box;
}
.inner {
	position: relative;
	margin: 0 auto;
	max-width: 1600px;
}
.subinner {
	position: relative;
	margin: 0 auto;
	max-width: 1300px;
}
.for-pc {
	display: block;
}
.for-tablet {
	display: none;
}
.for-sp {
	display: none;
}
.text-right {
	text-align: right;
}
#overlay {
	display: none;
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.9);
}
#overlay.open {
	display: block;
}
.bg-net {
	position: absolute;
	z-index: -1;
	background: url('../img/bg-net.jpg') repeat center center;
}
@media screen and (max-width:1280px) {
	.subinner {
		max-width: 1280px;
	}
}
@media screen and (max-width:1024px) {
	.for-tablet {
		display: block;
	}
}
@media screen and (max-width:768px) {
	html {
		font-size: 16px;
	}
	.for-pc {
		display: none;
	}
	.for-tablet {
		display: none;
	}
	.for-sp {
		display: block;
	}
	.inner {
		padding: 20px;   
	}
	main {
		margin-top: -54px;
	}
	.bg-net {
		background-size: 50px 75px;
	}
}

/* 2 COLUMNS */
.col-2 {
	clear: both;
	margin: 0 auto;
	max-width: 1400px;
}
.col-2:after {
	content: '';
	display: table;
	clear: both;
}
.col-2 > div {
	position: relative;
	float: left;
	width: 50%;
}
.col-2 > div img {
	width: 100%;
}
@media screen and (max-width:1499px) {
	.col-2 {
		max-width: 100%;
	}
}

/* 3 COLUMNS */
.col-3 {
	clear: both;
	margin: 0 auto;
	max-width: 1400px;
}
.col-3:after {
	content: '';
	display: table;
	clear: both;
}
.col-3 > div {
	position: relative;
	float: left;
	width: 33.33%;
}
.col-3 > div img {
	width: 100%;
}

/* HEADER */
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	font-weight: 600;
	color: #fff;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
header.wbg {
	background: rgba(28,94,161,0.9);
}
header .logo-blue {
	display: none;
}
header .logo,
header .logo-blue {
	float: left;
	padding: 27px 40px;
	font-size: 24px;
	line-height: 1.4;
	color: #fff;
	text-decoration: none;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
header .logo img,
header .logo-blue img {
	float: left;
	margin-right: 10px;
	width: 60px;
	text-decoration: none;
}
header .logo-blue {
	color: #1c5ea1;
}
@media screen and (max-width:768px) {
	header {
		height: 54px;
	}
	header .inner {
		padding: 0;
	}
	header .logo,
	header .logo-blue {
		padding: 15px 20px;
		font-size: 17px;
		line-height: 1.4;
	}
	header .logo img,
	header .logo-blue img {
		width: 40px;
		margin-right: 10px;
	}
}

/* HEADER NAV BUTTON */
.btn-header-nav-container {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1000;
	float: right;
	width: 80px;
	padding: 30px 20px 31px;
	cursor: pointer;
	background: #1c5ea1;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
.top .btn-header-nav-container {
	cursor: default;
	opacity: 0;
}
.btn-header-nav-container.display {
	cursor: pointer;
	opacity: 1;
}
.btn-header-nav {
	display: block;
}
.btn-header-nav span {
	position: relative;
	top: 0;
	display: block;
	margin-bottom: 9px;
	width: 100%;
	height: 3px;
	background: #fff;
	transition: all ease-in-out 0.15s;
}
.btn-header-nav span:last-child {
	margin-bottom: 0;
}
.btn-header-nav.open span:nth-child(2) {
	width: 0;
	opacity: 0;
}
.btn-header-nav.open span:nth-child(3) {
	top: -12px;
	transform: rotate(45deg);
}
.btn-header-nav.open span:nth-child(1) {
	top: 12px;
	transform: rotate(-45deg);
}
@media screen and (max-width:768px) {
	.btn-header-nav-container {
		width: 56px;
		height: 54px;
		padding: 20px 15px;
	}
	.btn-header-nav span {
		height: 2px;
		margin-bottom: 6px;
	}
	.btn-header-nav.open span:nth-child(1) {
		top: 6px;
	}
	.btn-header-nav.open span:nth-child(3) {
		top: -10px;
	}
}

/* HEADER NAV */
.header-nav {
	position: fixed;
	top: 0;
	right: -40%;
	bottom: 0;
	padding-top: 80px;
	padding-left: 40px;
	padding-right: 40px;
	padding-bottom: 80px;
	width: 40%;
	z-index: 200;
	background: #1c5ea1;
	color: #fff;
	-webkit-transition: right .25s ease;
	-moz-transition: right .25s ease;
	-ms-transition: right .25s ease;
	-o-transition: right .25s ease;
	transition: right .25s ease;
	overflow-y: auto;
}
.header-nav.open {
	right: 0;
}
.header-nav ul li a {
	display: block;
	padding: 2rem;
	margin: 0 auto;
	width: 300px;
	color: #fff;
	text-decoration: none;
	font-weight: 400;
	font-size: 20px;
}
.header-nav .btn {
	display: block;
	margin: 40px auto 0;
	width: 100%;
	max-width: 400px;
}
@media screen and (max-width:768px) {
	.header-nav {
		width: 100%;
		right: -100%;
	}
}

/* SUBPAGE HEADER */
.subpage header.wbg {
	background: rgba(255,255,255,0.9);
}
.subpage .logo {
	display: none;
}
.subpage header .logo-blue {
	display: block;
}
.subpage .logo-blue {
	position: relative;
	color: #1c5ea1;
	text-shadow: 0 0 4px #fff;
}
@media screen and (max-width:768px) {
	.subpage .logo-blue:before {
		content: 'ねじめ漁業協同組合';
		position: absolute;
		top: 15px;
		right: 20px;
		z-index: -1;
		color: #fff;
		text-shadow: 0 0 4px #fff;
	}
	.subpage .logo-blue:after {
		content: 'ねじめ漁業協同組合';
		position: absolute;
		top: 15px;
		right: 20px;
		z-index: -1;
		color: #fff;
		text-shadow: 0 0 4px #fff;
	}
}

/* MAIN VISUAL */
.main-visual {
	position: relative;
	/* height: 720px; */
	background-color: #1c5ea1;
	background-position: center center;
	background-size: cover;
	z-index: 200;
}
.main-visual h1 {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	display: table;
	width: 100%;
	height: 100%;
}
.main-visual h1 span {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	font-size: 60px;
	font-weight: 600;
	color: #fff;
	line-height: 2;
	text-shadow: 0 0 10px #333;
	letter-spacing: 2px;
}
.mv-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	/* height: 720px; */
}
.mv-wrapper li {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	background-position: center center;
	background-size: 100%;
	overflow: hidden;
}
.mv-wrapper li.active {
	background-size: 100%;
	-webkit-transition: background-size 20s ease;
	-moz-transition: background-size 20s ease;
	-ms-transition: background-size 20s ease;
	-o-transition: background-size 20s ease;
	transition: background-size 20s ease;
}
.mv-wrapper li img {
	width: 100%;
	-webkit-transition: transform 20s ease;
	-moz-transition: transform 20s ease;
	-ms-transition: transform 20s ease;
	-o-transition: transform 20s ease;
	transition: transform 20s ease;
}
.mv-wrapper li.active img {
	transform: scale(1.1);
}
.mv-wrapper li:nth-child(1) {
	background-image: url('/assets/img/mv01.jpg');
}
.mv-wrapper li:nth-child(2) {
	z-index: 0;
	background-image: url('/assets/img/mv02.jpg');
}
.mv-wrapper li:nth-child(3) {
	z-index: 0;
	background-image: url('/assets/img/mv03.jpg');
}
@media screen and (max-width:900px) {
	.mv-wrapper li {
		background-size: 170%;
	}
	.mv-wrapper li.active {
		background-size: 190%;
	}
}
@media screen and (max-width:768px) {
	.main-visual h1 span {
		font-size: 34px;
	}
	.mv-wrapper li {
		background-size: 150%;
	}
	.mv-wrapper li.active {
		background-size: 170%;
	}
	.mv-wrapper li:nth-child(1) {
		background-image: url('/assets/img/mv01-sp.jpg');
	}
	.mv-wrapper li:nth-child(2) {
		z-index: 0;
		background-image: url('/assets/img/mv02-sp.jpg');
	}
	.mv-wrapper li:nth-child(3) {
		z-index: 0;
		background-image: url('/assets/img/mv03-sp.jpg');
	}
}

/* MAIN VISUAL */
.main-visual01 {
	position: relative;
	margin-top: 190px;
}
.main-visual01 img {
	position: absolute;
	top: -370px;
	right: 0;
	width: 65%;
    z-index: 5;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
	opacity: 0;
}
.main-visual01 .inner {
	position: relative;
	z-index: 5;
}
.main-visual01 .main-ttl {
	position: relative;
	padding: 200px 0;
	/* background: #1c5ea1; */
	background: #fff;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}
.main-ttl p {
	position: relative;
	margin: 0 0 35px 40px;
	color: #fff;
	font-size: 3.5rem;
	z-index: 10;
}
.section-divider-left {
	opacity: 0;
	position: relative;
	z-index: 10;
}
@media screen and (max-width:1600px) {
	.main-visual01 .main-ttl {
		padding: 12.500vw 0;
	}
	.main-visual01 {
		margin-top: 11.875vw;
	}
	.main-visual01 img {
		top: -22.375vw;
		right: 0;
		width: 65vw;
	}
	.main-ttl p {
		margin: 0 0 3.500vw 2.500vw;
		font-size: 3.500vw;
	}
}
@media screen and (max-width:768px) {
	.main-visual01 {
		margin-top: 0;
		padding-top: 130px;
		overflow: hidden;
	}
	.main-visual01 img {
		top: -230px;
		width: 80%;
	}
	.main-visual01 .main-ttl {
		padding: 140px 0 220px;
		z-index: 20;
	}
	.main-ttl p {
		margin-left: 0;
		margin-bottom: 0;
		font-size: 36px;
	}
	.section-divider-left {
		width: 80%;
	}
}

/* BTN SCROLL */
.main-visual a {
	display: block;
	position: absolute;
	left: 50%;
	bottom: 0;
	z-index: 200;
	margin-left: -50px;
	width: 100px;
	height: 80px;
	font-size: 12px;
	text-decoration: none;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
main .btn-scroll,
.main-content .btn-scroll {
	display: block;
	position: absolute;
	left: 50%;
	top: 50px;
	z-index: 200;
	margin-left: -50px;
	width: 100px;
	height: 80px;
	font-size: 12px;
	text-decoration: none;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
@media screen and (min-width:769px) {
	.main-visual a:hover {
		opacity: 0.6 !important;
	}
}
@media screen and (max-width:768px) {
	main .btn-scroll, .main-content .btn-scroll {
		top: 10px;
	}
}

/* SECTION */
.head-title {
	width: 50px;
	font-weight: 600;
	font-size: 48px;
	color: #1c5ea1;
	line-height: 1;
}
.head-title span {
	display: block;
	transform: rotate(90deg);
}
.section-title {
	margin-bottom: 20px;
	font-weight: 600;
	font-size: 50px;
	color: #000;
}
.section-subtitle {
	margin-bottom: 30px;
	font-weight: 600;
	font-size: 36px;
	color: #1c5ea1;
}
section p {
	clear: both;
	margin-bottom: 40px;
	line-height: 2;
}
.section-divider-left,
.section-divider-right {
	margin-bottom: 50px;
	width: 50%;
	height: 3px;
}
.divider-blue-1 {
	background: #88b4e0;
}
.divider-blue-2 {
	background: #1c5ea1;
}
.divider-blue-3 {
	background: #fff;
}
.section-divider-left {
	float: left;
}
.section-divider-right {
	float: right;
}
.section-01 {
	padding-top: 94px;
}
.map-area {
	position: relative;
}
.section-01 .section-title {
	color: #fff;
}
.section-01 .sectionInner {
	padding-top: 140px;
	padding-bottom: 140px;
	background: #1c5ea1;
	color: #fff;
}
@media screen and (max-width:1600px) {
	.section-divider-left,
	.section-divider-right {
		margin-bottom: 3.125vw;
	}
}
@media screen and (max-width:768px) {
	.section-subtitle {
		margin-bottom: 15px;
	}
	.section-divider-left,
	.section-divider-right {
		margin-bottom: 25px;
		width: 60%;
		height: 2px;
	}
	section p {
		font-size: 14px;
	}
}

/* SECTION */
.section-content {
	margin: 0 auto;
	max-width: 1024px;
}
.section-img {
	line-height: 0;
}
.section-img img {
	width: 100%;
}
.head-title {
	margin-left: 30%;
}
.section-03 .head-title {
	margin-right: 30%;
	margin-left: 0;
}

/*feature list*/
.feature-section {
	margin-bottom: 143px;
}
.feature_list {
	display: flex;
	justify-content: space-between;
}
.feature_list li {
	position: relative;
	width: 50%;
	height: 0;
	padding-bottom: 500px;
	overflow: hidden;
}
.feature_list li::after {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	margin: auto;
	background-color: rgba(0, 0, 0, 0.4);
	content: "";
	transition: .435s cubic-bezier(.165, .84, .44, 1);
}
.feature_list li::before {
	transform: scale(1.15);
	transition: .435s cubic-bezier(.165, .84, .44, 1);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	margin: auto;
	background-color: rgba(0, 0, 0, 0.4);
	content: "";
}
.feature_list_contents-company::before {
	background-image: url(/assets/img/feature-01.jpg);
	background-size: cover;
	background-position: center;
}

.feature_list_contents-opinion::before {
	background-image: url(/assets/img/feature-02.jpg);
	background-size: cover;
	background-position: center;
}
.feature_list_contents-portfolio::before {
	background-image: url(/assets/img/feature-02.jpg);
	background-size: cover;
	background-position: center;
}
.feature_list li a {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	display: flex;
	align-items: center;
	color: #fff;
	z-index: 10;
	text-decoration: none;
}
.feature_list_contents_text {
    position: relative;
    line-height: 1.7;
    text-align: center;
    margin: 0 auto;
}
.feature_list_contents_text_title {
	padding: 6px 80px;
	font-size: 42px;
	border: 2px solid #fff;
}
.feature_list_contents_text_en {
	font-size: 1.4rem;
	letter-spacing: 0.05em;
	opacity: 0.7;
	font-weight: 400;
}
@media screen and (min-width:769px) {
	.feature_list li:hover::before {
		transform: scale(1);
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		width: 100%;
		height: 100%;
		margin: auto;
		background-color: rgba(0, 0, 0, 0.4);
		content: "";
	}
	.feature_list li:hover {
		transition: .2s cubic-bezier(.165, .84, .44, 1);
	}
}
@media screen and (max-width: 1400px) {
	.feature_list_contents_text_title {
		font-size: 42px;
	}
}
@media screen and (max-width:1200px) {
	.feature_list_contents_text_title {
		font-size: 32px;
	}
	.feature_list li a {
		padding: 0 1rem;
	}
}
@media screen and (max-width:1024px) {
	.feature_list li {
		padding-bottom: 250px;
		width: 100%;
	}
}
@media screen and (max-width:768px) {
	.feature-section {
		margin-bottom: 90px;
	}
	.feature_list_contents_text {
		margin: 0 auto;
		width: auto;
	}
	.feature_list_contents_text_title {
		padding: 10px 80px;
		font-size: 24px;
	}
}

/* FOOTER */
footer {
	padding: 103px 0 25px;
	background: #1c5ea1;
	color: #fff;
}
footer .inner {
	padding: 0 40px;
}
footer .col-3 {
	max-width: 100%;
}
footer .motto {
	font-size: 1.2rem;
	color: #d9e3ec;
}
footer .footer-menu {
	position: relative;
	font-size: 1.3rem;
	font-weight: 700;
	color: #88b4e0;
}
footer .footer-menu span {
	display: inline-block;
	position: relative;
	z-index: 2;
	padding-right: 1rem;
	background: #1c5ea1;
}
footer .footer-menu::after {
	content: "";
    display: block;
	position: absolute;
    top: 31%;
	left: 0;
	right: 0;
    height: 2px;
    background: #88b4e0;
}
footer .footermenu-link {
	margin-top: 45px;
}
footer .footermenu-link:nth-child(2) {
	float: left;
	width: 60%;
}
footer .footermenu-link:nth-child(3) {
	float: right;
	width: 40%;
	text-align: right;
}
footer .footermenu-link li {
	margin-bottom: 35px;
	padding-left: 30px;
}
footer .footermenu-link li a {
	color: #fff;
	text-decoration: none;
	line-height: 1.5;
}
footer .coop-text {
	margin-top: 12px;
	font-weight: 600;
	font-size: 32px;
}
footer .contact {
	margin-top: 50px;
	font-size: 14px;
	color: #d9e3ec;
	line-height: 2;
}
.footer-fax {
	margin-left: 1rem;
}
footer .btn-area .footermenu-link {
	width: 100%;
}
footer .btn-area div {
	padding-left: 60px;
}
footer .btn-2 {
    width: 100%;
	margin: 60px 0 0;
    background: none;
}
footer .col-3 > div {
	text-align: left;
}
footer .col-3 > div:nth-child(2) {
	padding-right: 8%;
}
footer .col-3 > div:nth-child(3) {
	padding-left: 8%;
}
footer .copyright {
    text-align: right;
	margin: 50px 0 0;
}
@media screen and (max-width:1400px) {
	footer .col-3 > div:nth-child(2) {
		padding-right: 3%;
	}
	footer .col-3 > div:nth-child(3) {
		padding-left: 3%;
	}
}
@media screen and (max-width:1024px) {
	footer .col-3 > div:nth-child(3) {
		padding-left: 0;
	}
	footer .col-3 > div:nth-child(2) {
		padding-right: 20px;
		padding-left: 20px;
	}
	footer .footermenu-link {
		display: block;
		padding-left: 20px;
	}
	footer .footermenu-link:nth-child(2) {
		float: none;
		width: 100%;
	}
	footer .footermenu-link:nth-child(3) {
		float: none;
		width: 100%;
		text-align: left;
		margin-top: 30px;
	}
	footer .btn-area div {
		padding-left: 20px;
	}
	.footer-fax {
		margin-left: 0;
	}
}
@media screen and (max-width:768px) {
	footer {
		padding: 25px 0 5px;
	}
	footer .motto {
		font-size: 16px;
	}
	footer .coop-text {
		margin-top: 15px;
		font-size: 28px;
	}
	footer .copyright {
		margin-top: 40px;
		font-size: 12px;
	}
	footer .inner {
		padding: 20px;
	}
	footer .contact {
		font-size: 12px;
		line-height: 1.5;
	}
	footer .footermenu-link {
		margin-top: 25px;
	}
	footer .btn-2 {
		margin-top: 30px;
	}
	footer .copyright {
		text-align: left;
	}
	footer .col-3 > div:nth-child(2) {
		padding-right: 0;
	}
	.footer-fax {
		margin-left: 1rem;
	}
}

/* WIDTH */
.w-100 {
	width: 100%;
}

/* BUTTON */
.btn {
	position: relative;
	display: inline-block;
	padding: 1.5rem;
	width: 445px;
	text-align: center;
	text-decoration: none;
}
.btn.btn-1 {
	border: 1px solid #cbcbcb;
	color: #000;
}
.btn.btn-1::after {
	content: '';
	position: absolute;
	top: 22px;
	right: 40px;
	display: block;
	width: 23px;
	height: 18px;
	background: url('/assets/img/ico-arrow-right-gray.png') no-repeat center center;
}
.btn.btn-2 {
	border: 1px solid #fff;
	color: #fff;
}
.btn-hover {
	position: relative;
}
.btn-hover::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	margin: auto;
	background-color: rgba(255, 255, 255, 0.23);
	mix-blend-mode: overlay;
	content: "";
	z-index: 10;
	transition: .432s cubic-bezier(.165, .84, .44, 1);
	position: absolute;
	width: 0;
	right: 0;
	left: auto;
	bottom: 0;
}
.btn-hover.btn-hover-blue::before {
	background-color: rgba(136,180,224,0.75);
}
@media screen and (min-width:769px) {
	.btn-hover:hover::before {
		right: auto;
		left: 0;
		width: 100%;
	}
}
@media screen and (max-width:768px) {
	.btn {
		padding: 16px;
		font-size: 14px;
	}
	.btn.btn-1::after {
		top: 16px;
    	right: 15px;
		width: 15px;
		height: 12px;
		background-size: 100%;
	}
}

/* LIST */
.list-01 {
	padding: 15px 80px;
	background: #fff;
}
.list-01 > li {
	padding: 30px 0;
	overflow: hidden;
	border-bottom: 1px solid #989898;
}
.list-01 > li:last-child {
	border-bottom: 0;
}
.list-01 > li h3,
.list-01 > li p,
.list-01 > li ul {
	float: left;
}
.list-01 > li h3 {
	width: 28%;
	padding-left: 54px;
	font-weight: 600;
	line-height: 1.5;
}
.list-01 > li p {
	clear: none;
	width: 72%;
	margin-bottom: 0;
	line-height: 1.5;
}
@media screen and (max-width:768px) {
	.list-01 {
		padding: 0 20px;
	}
	.list-01 > li {
		padding: 15px 0;
	}
	.list-01 > li h3 {
		width: 100%;
		padding-left: 0;
		line-height: 1.8;
	}
	.list-01 > li p {
		width: 100%;
		line-height: 1.8;
	}
}

/* ANIMATION */
.fade-in {
	opacity: 0;
}
.slide-left,
.slide-per-letter span,
.slide-right,
.slide-up,
.slide-down,
.fade-in {
	/* -webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease; */
	/* -webkit-transition: opacity 0.5s;
	-moz-transition: opacity 0.5s;
	-ms-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	transition: opacity 0.5s; */
	-webkit-transition: opacity 0.5s, transform 0.5s;
	-moz-transition: opacity 0.5s, transform 0.5s;
	-ms-transition: opacity 0.5s, transform 0.5s;
	-o-transition: opacity 0.5s, transform 0.5s;
	transition: opacity 0.5s, transform 0.5s;
}
.animate-1s .slide-left,
.animate-1s .slide-per-letter span,
.animate-1s .slide-right,
.animate-1s .slide-up,
.animate-1s .slide-down,
.animate-1s .fade-in {
	/* -webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease; */
	/* -webkit-transition: opacity 1s;
	-moz-transition: opacity 1s;
	-ms-transition: opacity 1s;
	-o-transition: opacity 1s;
	transition: opacity 1s; */
	-webkit-transition: opacity 1s, transform 1s;
	-moz-transition: opacity 1s, transform 1s;
	-ms-transition: opacity 1s, transform 1s;
	-o-transition: opacity 1s, transform 1s;
	transition: opacity 1s, transform 1s;
}
.slide-per-letter span {
	display: inline-block;
}

/* SCROLL BUTTON */
#scroll-wrapper {
	position: relative;
	z-index: 100;
	display: table;
	width:100%;
	height:100%;
}
#scroll-wrapper-inner {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
	height: 100%;
}
#scroll-down {
	display: block;
	position: relative;
	padding-top: 5px;
	text-align:center;
}
#scroll-title {
	display: block;
	text-transform: uppercase;
	color: #fff;
	font-weight:bold;
	text-align:center;
	margin-bottom: 8px;
}
.arrow-down {
	display: block;
	margin: 0 auto;
	width: 22px;
	height: 26px;
	position:relative;
}
.arrow-down:before {
	content:'';
	width: 20px;
	height: 20px;
	display:block;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	right: -1px;
	bottom: 5px;
	box-shadow: 1px 0px 0px 0px rgba(0,0,0,0.2);
}
.arrow-down:after {
	content: '';
	display: block;
	margin: 0;
	padding: 0;
	width: 20px;
	height: 20px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	behavior: url(-ms-transform.htc);
	-moz-transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	transform: rotate(135deg);
	box-shadow: 1px 0px 0px 0px rgba(0,0,0,0.2);
}
#scroll-down::before {
	-webkit-animation: elasticus 2.9s cubic-bezier(1, 0, 0, 1) infinite;
	-moz-animation: elasticus 2.9s cubic-bezier(1, 0, 0, 1) infinite;
	-o-animation: elasticus 2.9s cubic-bezier(1, 0, 0, 1) infinite;
	animation: elasticus 2.9s cubic-bezier(1, 0, 0, 1) infinite;
	position: absolute;
	top: 0px;
	left: 50%;
	margin-left: -1px;
	width: 2px;
	height: 30px;
	background: #fff;
	content: ' ';
}
#scroll-down::after {
	content: '';
	position: absolute;
	top: 0px;
	left: 50%;
	margin-left: -1px;
	width: 2px;
	height: 30px;
	background: rgba(255,255,255,0.25);
}
main #scroll-title,
.main-content #scroll-title {
	color: #1c5ea1;
}
main .arrow-down:before,
.main-content .arrow-down:before {
	box-shadow: none;
}
main .arrow-down:after,
.main-content .arrow-down:after {
	border-top: 2px solid #1c5ea1;
	border-right: 2px solid #1c5ea1;
	box-shadow: none;
}
main #scroll-down::before,
.main-content #scroll-down::before {
	background: #1c5ea1;
}
main  #scroll-down::after,
.main-content  #scroll-down::after {
	background: rgba(85,26,139,0.25);
}
@-webkit-keyframes elasticus {
	0% {
		-webkit-transform-origin: 0% 0%;
		-ms-transform-origin: 0% 0%;
		-moz-transform-origin: 0% 0%;
		-o-transform-origin: 0% 0%;
		transform-origin: 0% 0%;
		-webkit-transform: scale(1, 0);
		-ms-transform: scale(1, 0);
		-moz-transform: scale(1, 0);
		-o-transform: scale(1, 0);
		transform: scale(1, 0);
	}
	50% {
		-webkit-transform-origin: 0% 0%;
		-ms-transform-origin: 0% 0%;
		-moz-transform-origin: 0% 0%;
		-o-transform-origin: 0% 0%;
		transform-origin: 0% 0%;
		-webkit-transform: scale(1, 1);
		-ms-transform: scale(1, 1);
		-moz-transform: scale(1, 1);
		-o-transform: scale(1, 1);
		transform: scale(1, 1);
	}
	50.1% {
		-webkit-transform-origin: 0% 100%;
		-ms-transform-origin: 0% 100%;
		-moz-transform-origin: 0% 100%;
		-o-transform-origin: 0% 100%;
		transform-origin: 0% 100%;
		-webkit-transform: scale(1, 1);
		-ms-transform: scale(1, 1);
		-moz-transform: scale(1, 1);
		-o-transform: scale(1, 1);
		transform: scale(1, 1);
	}
	100% {
		-webkit-transform-origin: 0% 100%;
		-ms-transform-origin: 0% 100%;
		-moz-transform-origin: 0% 100%;
		-o-transform-origin: 0% 100%;
		transform-origin: 0% 100%;
		-webkit-transform: scale(1, 0);
		-ms-transform: scale(1, 0);
		-moz-transform: scale(1, 0);
		-o-transform: scale(1, 0);
		transform: scale(1, 0);
	}
}
@-moz-keyframes elasticus {
	0% {
		-webkit-transform-origin: 0% 0%;
		-ms-transform-origin: 0% 0%;
		-moz-transform-origin: 0% 0%;
		-o-transform-origin: 0% 0%;
		transform-origin: 0% 0%;
		-webkit-transform: scale(1, 0);
		-ms-transform: scale(1, 0);
		-moz-transform: scale(1, 0);
		-o-transform: scale(1, 0);
		transform: scale(1, 0);
	}
	50% {
		-webkit-transform-origin: 0% 0%;
		-ms-transform-origin: 0% 0%;
		-moz-transform-origin: 0% 0%;
		-o-transform-origin: 0% 0%;
		transform-origin: 0% 0%;
		-webkit-transform: scale(1, 1);
		-ms-transform: scale(1, 1);
		-moz-transform: scale(1, 1);
		-o-transform: scale(1, 1);
		transform: scale(1, 1);
	}
	50.1% {
		-webkit-transform-origin: 0% 100%;
		-ms-transform-origin: 0% 100%;
		-moz-transform-origin: 0% 100%;
		-o-transform-origin: 0% 100%;
		transform-origin: 0% 100%;
		-webkit-transform: scale(1, 1);
		-ms-transform: scale(1, 1);
		-moz-transform: scale(1, 1);
		-o-transform: scale(1, 1);
		transform: scale(1, 1);
	}
	100% {
		-webkit-transform-origin: 0% 100%;
		-ms-transform-origin: 0% 100%;
		-moz-transform-origin: 0% 100%;
		-o-transform-origin: 0% 100%;
		transform-origin: 0% 100%;
		-webkit-transform: scale(1, 0);
		-ms-transform: scale(1, 0);
		-moz-transform: scale(1, 0);
		-o-transform: scale(1, 0);
		transform: scale(1, 0);
	}
}
@-o-keyframes elasticus {
	0% {
		-webkit-transform-origin: 0% 0%;
		-ms-transform-origin: 0% 0%;
		-moz-transform-origin: 0% 0%;
		-o-transform-origin: 0% 0%;
		transform-origin: 0% 0%;
		-webkit-transform: scale(1, 0);
		-ms-transform: scale(1, 0);
		-moz-transform: scale(1, 0);
		-o-transform: scale(1, 0);
		transform: scale(1, 0);
	}
	50% {
		-webkit-transform-origin: 0% 0%;
		-ms-transform-origin: 0% 0%;
		-moz-transform-origin: 0% 0%;
		-o-transform-origin: 0% 0%;
		transform-origin: 0% 0%;
		-webkit-transform: scale(1, 1);
		-ms-transform: scale(1, 1);
		-moz-transform: scale(1, 1);
		-o-transform: scale(1, 1);
		transform: scale(1, 1);
	}
	50.1% {
		-webkit-transform-origin: 0% 100%;
		-ms-transform-origin: 0% 100%;
		-moz-transform-origin: 0% 100%;
		-o-transform-origin: 0% 100%;
		transform-origin: 0% 100%;
		-webkit-transform: scale(1, 1);
		-ms-transform: scale(1, 1);
		-moz-transform: scale(1, 1);
		-o-transform: scale(1, 1);
		transform: scale(1, 1);
	}
	100% {
		-webkit-transform-origin: 0% 100%;
		-ms-transform-origin: 0% 100%;
		-moz-transform-origin: 0% 100%;
		-o-transform-origin: 0% 100%;
		transform-origin: 0% 100%;
		-webkit-transform: scale(1, 0);
		-ms-transform: scale(1, 0);
		-moz-transform: scale(1, 0);
		-o-transform: scale(1, 0);
		transform: scale(1, 0);
	}
}
@keyframes elasticus {
	0% {
		-webkit-transform-origin: 0% 0%;
		-ms-transform-origin: 0% 0%;
		-moz-transform-origin: 0% 0%;
		-o-transform-origin: 0% 0%;
		transform-origin: 0% 0%;
		-webkit-transform: scale(1, 0);
		-ms-transform: scale(1, 0);
		-moz-transform: scale(1, 0);
		-o-transform: scale(1, 0);
		transform: scale(1, 0);
	}
	50% {
		-webkit-transform-origin: 0% 0%;
		-ms-transform-origin: 0% 0%;
		-moz-transform-origin: 0% 0%;
		-o-transform-origin: 0% 0%;
		transform-origin: 0% 0%;
		-webkit-transform: scale(1, 1);
		-ms-transform: scale(1, 1);
		-moz-transform: scale(1, 1);
		-o-transform: scale(1, 1);
		transform: scale(1, 1);
	}
	50.1% {
		-webkit-transform-origin: 0% 100%;
		-ms-transform-origin: 0% 100%;
		-moz-transform-origin: 0% 100%;
		-o-transform-origin: 0% 100%;
		transform-origin: 0% 100%;
		-webkit-transform: scale(1, 1);
		-ms-transform: scale(1, 1);
		-moz-transform: scale(1, 1);
		-o-transform: scale(1, 1);
		transform: scale(1, 1);
	}
	100% {
		-webkit-transform-origin: 0% 100%;
		-ms-transform-origin: 0% 100%;
		-moz-transform-origin: 0% 100%;
		-o-transform-origin: 0% 100%;
		transform-origin: 0% 100%;
		-webkit-transform: scale(1, 0);
		-ms-transform: scale(1, 0);
		-moz-transform: scale(1, 0);
		-o-transform: scale(1, 0);
		transform: scale(1, 0);
	}
}


/* SP version */
@media screen and (max-width: 1024px) {
	footer .btn-area .footer-menu {
		margin-left: 0;
	}
	footer .btn-2 {
		margin-left: 0;
		width: 100%;
	}
	footer .footermenu-link li {
		padding-left: 0;
	}
	footer .contact {
		margin: 30px 0;
	}
	footer .btn-area .footer-menu::after {
		width: initial;
	}
	.feature_list {
		flex-direction: column;
	}
}
@media screen and (max-width:768px) {
	main {
		margin-top: -94px;
	}
	.section-title {
		font-size: 25px;
	}
	.section-subtitle {
		font-size: 18px;
	}
	.head-title {
		font-size: 33px;
	}
	.subinner, .map-area {
		padding: 0 5%;
	}
	.section-02 .btn , .section-06 .btn.btn-2 {
		width: 100%;
	}
	.section-05 .col-2 > div:nth-child(2) {
		float: right;
		width: 55%;
	}
	.section-05 .col-2 .sub-img img {
		margin: 0;
	}
	.section-05 .col-2 .sub-img {
		padding: 30px 5% 0 0;
	}
	.section-05 {
		margin-top: 30px;
	}
	.feature_list_contents_text_title {
		font-size: 1.2rem;
	}
	footer .col-3 > div {
		width: 100%;
	}
	footer .col-3 > div:nth-child(2) {
		padding-left: 0;
	}
}

/* ANIMATION DELAY */
.animate-delay-1 { transition-delay: 250ms !important; }
.animate-delay-2 { transition-delay: 500ms !important; }
.animate-delay-3 { transition-delay: 750ms !important; }
.animate-delay-4 { transition-delay: 1000ms !important; }
.animate-delay-5 { transition-delay: 1250ms !important; }
.animate-delay-6 { transition-delay: 1500ms !important; }
.animate-delay-7 { transition-delay: 1750ms !important; }
.animate-delay-8 { transition-delay: 2000ms !important; }
.animate-delay-9 { transition-delay: 2250ms !important; }
.animate-delay-10 { transition-delay: 2500ms !important; }
.animate-delay-11 { transition-delay: 2750ms !important; }
.animate-delay-12 { transition-delay: 3000ms !important; }
.animate-delay-13 { transition-delay: 3250ms !important; }
.animate-delay-14 { transition-delay: 3500ms !important; }
.animate-delay-15 { transition-delay: 3750ms !important; }
.animate-delay-16 { transition-delay: 4000ms !important; }

/* BACKGROUND */
.bg-white {
	position: relative;
	background: #fff;
	overflow: hidden;
}