@charset "utf-8";
/* ==============================================

	body

================================================= */
body {
	color: #000;
	font-size: 1.6rem;
	font-family: "Hiragino Sans", "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
	-webkit-text-size-adjust: 100%;
	letter-spacing: 0.05em;
	font-weight: 400;
}
/*---------
	font-family: "hiragino-kaku-gothic-pron", sans-serif;
	font-weight: 300;
	font-weight: 600;
	font-style: normal;
---*/
@media screen and (max-width: 480px) {
	body {
		font-size: 1.5rem;
		font-weight: 400;
		letter-spacing: 0.025em;
	}
}

/* ==============================================

	header

================================================= */
header {
	width: 100%;
	height: 90px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	padding: 0 35px 0 20px;
	position: fixed;
	z-index: 100;
	top: 0;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}
header:hover {
	background: #005064;
	filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.5));
}
.h_logo {
	padding-bottom: 33.5px;
}
.h_logo img {
	filter: drop-shadow(1px 1px 0.5px rgba(0, 0, 0, 0.5));
	height: 23px;
}
.h_link {
	display: flex;
	flex-flow: column;
	align-items: flex-end;
	color: #fff;
	gap: 20px;
}
.h_link a {
	color: #fff;
}
.h_naviLink {
	display: flex;
	align-items: center;
	gap: 20px;
	font-size: 1.3rem;
}
.h_naviLink ul {
	display: flex;
}
.h_naviLink ul li {
	display: flex;
	align-items: center;
}
.h_naviLink ul li:not(:last-child)::after {
	content: "|";
	margin: 0 10px;
}
.h_lang {
	margin-left: 20px;
}
.h_search {
	cursor: pointer;
}
.h_search:hover {
	opacity: 0.7;
}
.h_search img {
	width: 20px;
	height: 20px;
}
.h_naviLink a {
	position: relative;
}
.h_naviLink a::before {
	background: #fff;
	content: '';
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: -5px;
	transform-origin: right top;
	transform: scale(0, 1);
	transition: transform .3s;
}
.h_naviLink a:hover::before {
	transform-origin: left top;
	transform: scale(1, 1);
}
.h_lang a::before {
	bottom: 0;
}
@media screen and (max-width:1600px){
	.h_naviLink,
	#gnav > ul > li > a, #gnav > ul > li > span {
		filter: drop-shadow(1px 1px 0.5px rgba(0, 0, 0, 0.5));
	}
}
@media screen and (max-width: 1366px) {
	header {
		padding: 0 20px;
	}
}
@media screen and (max-width: 1024px) {
	header {
		padding: 0 20px;
		align-items: center;
	}
	.h_logo {
		padding-bottom: 0;
	}
	.h_link {
		filter: none;
		flex-flow: row;
		align-items: flex-end;
	}
	.h_linkBtn {
		display: flex;
		align-items: flex-end;
		gap: 25px;
		font-family: "Hiragino Sans", "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
	}
	.h_linkBtn img {
		zoom: 0.6;
	}
}
@media screen and (max-width:768px){
	header {
		height: 60px;
		background: #005064;
		filter: drop-shadow(1px 1px 0.5px rgba(0, 0, 0, 0.5));
		padding: 0 10px 0 20px;
	}
	.h_logo img {
		filter: drop-shadow(1px 1px 0.5px rgba(0, 0, 0, 0.5));
		height: 20px;
	}
	.h_linkBtn {
		gap: 20px;
	}
	.h_linkBtn img {
		zoom: 0.5;
	}
}
@media screen and (max-width:640px){
	header {
		padding-left: 10px;
	}
	.h_link {
		gap: 8px;
		align-items: center;
	}
	.h_linkBtn {
		gap: 15px;
	}
}
@media screen and (max-width:480px){
	header {
		padding: 0 4px 0 10px;
	}
	.h_logo img {
		zoom: 0.75;
	}
	.h_link {
		gap: 0;
		align-items: flex-end;
	}
	.h_linkBtn {
		gap: 8px;
	}
	.h_linkBtn img {
		zoom: 0.4;
	}
}


/* ==============================================

	h_search_boxArea

================================================= */
.h_search_boxArea {
	display: none;
	position: absolute;
	top: 90px;
	left: 0;
	width: 100%;
	z-index: 3;
}
.serch_bg {
	background-color: rgba(0, 0, 0, 0.4);
	position: fixed;
	top: 90px;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 0;
}
.h_search_box {
	background: #fff;
	padding: 45px 5%;
	position: relative;
}
.h_search_box_inner {
	max-width: 600px;
	margin: 0 auto;
}
.search_box {
	display: flex;
}
.search_box input[type="search"] {
	-webkit-appearance: none;
	margin-right: 0;
	padding: 10px 20px;
	width: 100%;
	height: 60px;
	font-size: 100%;
	box-sizing: border-box;
	border-radius: 5px 0 0 5px;
	border: 1px solid #ccc;
	border-right: none;
	flex: 1;
	font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
	background: #fff;
}
.search_box input[type="search"]:focus {
	outline: none;
}
.search_box button[type="submit"] {
	-webkit-appearance: none;
	padding: 0 10px;
	color: #fff;
	width: 65px;
	height: 60px;
	font-size: 100%;
	border: none;
	border-radius: 0 5px 5px 0;
	background:#005064;
	cursor: pointer;
	background-size: 35%;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;	
}
.search_box button[type="submit"] img {
	width: 20px;
	height: 20px;
}
.search_box button[type="submit"]:hover {
	background: #afe6e6;
}
.search_box button[type="submit"]:hover img {
	filter: brightness(0) saturate(100%) invert(17%) sepia(73%) saturate(2710%) hue-rotate(172deg) brightness(90%) contrast(104%);
}
.h_search_header {
	background: #005064;
	filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.5));
}
@media screen and (max-width: 480px) {
	.search_box input[type="search"] {
		height: 50px;
	}
	.search_box button[type="submit"] {
		height: 50px;
		width: 50px;
	}
	.search_box button[type="submit"] img {
		width: 18px;
		height: 18px;
	}
}


/* ==============================================

	gnav

================================================= */
#gnav > ul {
	display: flex;
	gap: 35px;
}
#gnav > ul > li {
	position: relative;
	cursor: pointer;
	padding-bottom: 17px;
}
#gnav > ul > li::before {
	background: #fff;
	content: '';
	width: 100%;
	height: 2px;
	position: absolute;
	left: 0;
	bottom: 9px;
	transform-origin: right top;
	transform: scale(0, 1);
	transition: transform .3s;
}
#gnav > ul > li:hover::before {
	transform-origin: left top;
	transform: scale(1, 1);
}
/*
@media screen and (max-width: 1280px) {
	#gnav ul {
		gap: 25px;
	}
}
@media screen and (max-width: 1194px) {
	#gnav ul {
		gap: 15px;
		font-size: 1.5rem;
	}
}
@media screen and (max-width: 1112px) {
	#gnav ul {
		gap: 10px;
		font-size: 1.4rem;
	}
}
@media screen and (max-width:768px){
}
*/

/* ==============================================

	gnav_list

================================================= */
.gnav_list ul {
	display: none;
	position: absolute;
	z-index: 4;
	top: 33px;
	left: -80px;
	width: 200px;
	filter: none;
	background: #005064;
	border-radius: 0 0 10px 10px;
	box-shadow: 0 4px 3px -3px rgba(0, 0, 0, 0.3) inset;
}
.gnav_list ul li:not(:last-child) {
	border-bottom: 1px solid #2a6776;
}
.gnav_list ul li:last-child a {
	border-radius: 0 0 10px 10px;
}
.gnav_list ul li a {
	padding: 22px 0 22px 38px;
	display: flex;
	align-items: center;
	color: #fff;
	font-size: 1.5rem;
	position: relative;
}
.gnav_list ul li a::before {
	content: "";
	position: absolute;
	left: 20px;
	top: 0px;
	bottom: 0px;
	width: 7px;
	height: 7px;
	transform: rotate(45deg);
	margin: auto;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}
.gnav_list ul li a:hover {
	background: #AFE6E6;
	color: #005064;
}
.gnav_list ul li a:hover::before {
	border-top: 1px solid #005064;
	border-right: 1px solid #005064;
}
.gnav_list ul.open {
	display: block!important;
}
header:hover .gnav_list ul {
	filter: none;
}

/* ==============================================

	nav_toggle

================================================= */
.h_tglBtn a {
	padding: 10px 10px 14px;
	cursor: pointer;
	display: block;
	position: relative;
}

.nav_toggle{
	width: 30px;
	height: 24px;
}
.nav_toggle div {
	position: relative;
}
.nav_toggle span {
	display: block;
	height: 1px;
	background: #fff;
	position:absolute;
	width: 100%;
	left: 0;
	-webkit-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}
.nav_toggle span:nth-child(1){
	top: 0px;
}
.nav_toggle span:nth-child(2){
	top: 10px;
}
.nav_toggle span:nth-child(3){
	top: 20px;
}
.nav_toggle span::before{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 0;
	display: block;
	background: #afe6e6;
	-webkit-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
}
.nav_toggle:hover span::before {
	width: 100%;
}
.nav_toggle p {
	font-size: 1.0rem;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	text-align: center;
}
@media screen and (max-width: 768px) {
}


@media screen and (min-width: 1025px) {
	#sp_gnav {
		display: none!important;
	}
}
@media screen and (max-width: 1024px) {
	#gnav ul li:not(:last-child) a {
		padding: 0;
	}
}
@media screen and (max-width:1024px){
	.nav_toggle.open span:nth-child(1) {
		top: 12px;
		-webkit-transform: rotate(135deg);
		-moz-transform: rotate(135deg);
		transform: rotate(135deg);
	}
	.nav_toggle.open span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	.nav_toggle.open span:nth-child(3) {
		top: 12px;
		-webkit-transform: rotate(-135deg);
		-moz-transform: rotate(-135deg);
		transform: rotate(-135deg);
	}
	#sp_gnav {
		position: fixed;
		background: #fff!important;
		width: 100%;
		height: 100vh;
		display: none;
		top: 90px;
		left: 0;
		z-index: 3;
		text-align: center;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
	}
	#sp_gnavInfo {
		padding: 45px 5%;
	}
	.sp_gnavBtn {
		display: flex;
		justify-content: center;
		gap: 4%;
		max-width: 600px;
		margin: 0 auto;
	}
	.sp_gnavBtn li {
		flex: 1;
	}
	.sp_gnavBtn li a {
		width: 100%;
	}
	#sp_gnavList {
		display: block;
		/*
		height: 100%;
		*/
	}
	#sp_gnavList li {
		border-top: 1px solid #005064;
		font-weight: 500;
		font-style: normal;
		letter-spacing: 0.1em;
		padding: 0!important;
		background: #fff;
		color: #005064;
		font-size: 1.6rem;
	}
	#sp_gnavList > li:last-child {
		border-bottom: 1px solid #005064;
	}
	#sp_gnavList > li a {
		height: 65px;
		display: block;
		display: flex;
		align-items: center;
		padding: 0 5%;
	}
	#sp_gnavList li a {
		position: relative;
		color: #005064;
	}
	#sp_gnavList li a:hover,
	#sp_gnavList li dt:hover {
		background: rgba(175, 230, 230, 0.15);
	}
	#sp_gnavList li a::after {
		content: "";
		background: url("images/menu_arrow.svg") center no-repeat;
		width: 14px;
		height: 27px;
		position: absolute;
		right: 50px;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		zoom: 0.6;
	}
	
	#sp_gnavList li dt {
		height: 65px;
		display: flex;
		align-items: center;
		padding: 0 5%;
		position: relative;
		cursor: pointer;
	}
	#sp_gnavList li dt::after {
		content: "";
		background: url("images/list-open.svg") center no-repeat;
		width: 21px;
		height: 21px;
		position: absolute;
		right: 34px;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		zoom: 0.8;
		filter: brightness(0) saturate(100%) invert(22%) sepia(21%) saturate(3727%) hue-rotate(158deg) brightness(98%) contrast(101%);
	}
	#sp_gnavList li dt.open::after {
		content: "";
		background: url("images/list-close.svg") center no-repeat;
		width: 21px;
		height: 1px;
		position: absolute;
		right: 34px;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		zoom: 0.8;
		filter: brightness(0) saturate(100%) invert(22%) sepia(21%) saturate(3727%) hue-rotate(158deg) brightness(98%) contrast(101%);
	}
	#sp_gnavList li dd {
		padding: 0 4%;
		display: none;
	}
	#sp_gnavList li dd li a {
		height: 55px;
	}
	#sp_gnavList li dd > ul > li > a {
		font-size: 1.5rem;
	}
	#sp_gnavList li dd > ul ul li > a {
		font-size: 1.4rem;
		padding-left: calc(5% + 20px);
	}
	.sp_gnavLink {
		padding: 0 5%;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-flow: row wrap;
		gap: 10px;
		margin-top: 40px;
	}
	.sp_gnavLink li {
		display: flex;
		align-items: center;
		gap: 10px;
		font-size: 1.2rem;
	}
	.sp_gnavLink li:not(:last-child)::after {
		content: "";
		width: 1px;
		height: 10px;
		background: #005064;
		display: block;
		margin-right: 10px;
	}
	.sp_gnavLink li a {
		color: #005064;
	}
	.sp_gnavLink li a:hover {
		text-decoration: underline;
	}
}
@media screen and (max-width: 768px) {
	#sp_gnav {
		top: 60px;
	}
}
@media screen and (max-width: 640px) {
	.sp_gnavBtn .cmn_btn {
		display: flex;
		align-items: center;
	}
	.sp_gnavBtn .cmn_btn a {
		font-size: 1.5rem;
		line-height: 125%;
	}
	.sp_gnavBtn .cmn_btn a::before {
		order: 1;
    margin-left: 10px;
    position: relative;
    right: inherit;
    top: inherit;
		font-size: 1.1rem;
	}
	.sp_gnavBtn .cmn_btn a::after {
		order: 2;
    margin-left: -16px;
    position: relative;
    right: inherit;
    top: inherit;
    transform: translateY(0%);
		width: 20px;
		height: 20px;
	}
}
@media screen and (max-width: 480px) {
	#sp_gnav {
		padding-bottom: 100px;
	}
	#sp_gnavList > li a,
	#sp_gnavList li dt {
		height: 55px;
		padding: 0 8%;
	}
	#sp_gnavList li dd li a {
		height: 50px;
	}
	#sp_gnavList li {
		font-size: 1.5rem;
	}
	#sp_gnavList li dd > ul > li > a {
		font-size: 1.4rem;
	}
	#sp_gnavList li dd > ul ul li > a {
		font-size: 1.3rem;
	}
	#sp_gnavInfo {
		padding: 25px 4%;
	}
	.sp_gnavBtn .cmn_btn a {
		font-size: 1.4rem;
		font-weight: 500;
	}
	.h_tglBtn a {
		padding: 10px 10px 10px;
	}
	.nav_toggle {
		width: 26px;
	}
	.nav_toggle p {
		font-size: 0.8rem;
	}
	.nav_toggle span:nth-child(2) {
		top: 9px;
	}
	.nav_toggle span:nth-child(3) {
		top: 18px;
	}

}






/* ==============================================

	h_fixed

================================================= */
header.h_fixed {
	background: #005064;
	filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.5));
}


/* ==============================================

	remodal

================================================= */
.remodal_h {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	padding: 0 45px;
	height: 80px;
	position: relative;
}
.remodal_logo {
	opacity: 0;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	margin-top: 95px;
}
.remodal-is-opened .remodal_logo {
	opacity: 1;
}
.remodal_logo img {
	height: 66px;
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}
.nav_toggle_close {
	width: 40px!important;
	height: 32px!important;
	cursor: pointer;
	display: block;
}
.remodal_h .nav_toggle_close {
	position: absolute;
	right: 40px
}
.nav_toggle_close:hover span {
	background: #a7955c;
}
.nav_toggle_close div {
	position: relative;
	width: 46px!important;
	height: 32px!important;
}
.nav_toggle_close span{
	display: block;
	height: 1px;
	background: #fff;
	position:absolute;
	width: 100%;
	left: 0;
	-webkit-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;	
}
.nav_toggle_close span:nth-child(1){
	top: 12px;
	-webkit-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	    transform: rotate(135deg);
}
.nav_toggle_close span:nth-child(2){
	width: 0;
	left: 50%;
}
.nav_toggle_close span:nth-child(3){
	top: 12px;
	-webkit-transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
	    transform: rotate(-135deg);
}

@media screen and (max-width: 768px) {
	.nav_toggle {
		padding: 0;
	}
	.remodal_h .nav_toggle_close {
		right: 15px;
	}
	.remodal_logo {
		margin-top: 50px;
	}
	/*
	.remodal_logo img {
		height: 35px;
	}
	.remodal_h {
		height: 60px;
		padding: 0 20px;
	}
	*/
}
@media screen and (max-width: 480px) {
	.remodal_logo {
		margin-top: 20px;
	}
	.remodal_logo img {
		height: 54px;
	}
}


/*---------------------------------------------
	remodal_contents
---------------------------------------------*/
.remodal_contents {
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	    transform: translateY(-50%);
	padding: 60px 0 150px;
	position: relative;
}
.remodal_contents a {
	color: #eeece8;
}
/*---------------------------------------------
	remodal_nav
---------------------------------------------*/
.remodal_nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	text-align: left;
	margin-bottom: 65px;
}
.remodal_nav ul:not(:last-child) {
	margin-right: 100px;
}
.remodal_nav li {
	font-size: 1.5rem;
}
.remodal_nav li:not(:last-child) {
	margin-bottom: 22px;
}
.remodal_nav li a:hover {
	opacity: 0.6;
}
/*---------------------------------------------
	remodal_sns
---------------------------------------------*/
.remodal_sns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin-bottom: 30px;
}
.remodal_sns li:not(:last-child) {
	margin-right: 40px;
}
.remodal_sns li img {
	width: 24px;
	height: auto;
}
.remodal_sns a:hover {
	opacity: 0.6;
}
/*---------------------------------------------
	remodal_btn
---------------------------------------------*/
.remodal_btn {
	max-width: 560px;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

/*---------------------------------------------
	remodal_mainBtn
---------------------------------------------*/
.remodal_mainBtn {
	max-width: 700px;
	margin: 0 auto 65px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

/*---------------------------------------------
	remodal_memberLink
---------------------------------------------*/
.remodal_memberLink.f_memberLink {
	margin: 30px 0;
}

/*---------------------------------------------
	remodal_sitemap
---------------------------------------------*/
.remodal_sitemap {
	font-size: 1.3rem;
	margin-bottom: 25px;
}
@media screen and (max-width:768px){
	.remodal_mainBtn {
		margin-bottom: 10px;
	}
	.remodal_nav {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-flow: column;
		        flex-flow: column;
		text-align: center;
		margin-bottom: 20px;
	}
	.remodal_nav ul:not(:last-child), .remodal_nav li:not(:last-child) {
		margin: 0;
	}
	.remodal_nav ul {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-flow: row wrap;
		        flex-flow: row wrap;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
	}
	.remodal_nav ul li {
		width: 47%;
	}
	.remodal_contents {
		padding: 0 5% 5%;
		top: inherit;
		-webkit-transform: inherit;
		-ms-transform: inherit;
		    transform: inherit;
		margin-top: 50px;
	}
	.remodal_nav a {
		display: block;
		padding: 15px 0;
	}
	.remodal-wrapper {
		overflow: auto;
	}
	.remodal_sns {
		margin-bottom: 30px;
	}
}
@media screen and (max-width: 480px) {
	.remodal_contents {
		margin-top: 20px;
	}
	.remodal_nav ul li, .remodal_mainBtn, .remodal_btn {
		font-size: 1.3rem;
	}
	.remodal_nav a {
		padding: 12px 0;
	}
	.remodal_memberLink.f_memberLink {
		margin: 25px 0 20px;
	}
	.remodal_sitemap {
		font-size: 1.2rem;
	}
}


/* ==============================================

	mv

================================================= */
#mv {
	background: #005064;
	/*
	padding-left: 6.3%;
	*/
	padding-left: 120px;
	height: 100vh;
	height: calc(var(--vh, 1vh) * 100);
	/*
	position: fixed;
	*/
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
}
.mv_txt {
	position: absolute;
	left: 210px;
	bottom: 30%;
}
.mv_txt h1 {
	font-size: 8rem;
	font-weight: 500;
	color: #005064;
}
.mv_txt span {
	background: rgba(255,255,255,0.95);
	padding: 15px 5px 25px 35px;
	display: block;
	width: max-content;
}
.mv_txt span:not(:last-child){
	margin-bottom: 22px;
}
.mv_img {
	width: 100%;
}
.mv_img img {
	border-radius: 0 0 0 50px;
	width: 100%;
	height: 100vh;
	height: calc(var(--vh, 1vh) * 100);
	object-fit: cover;
	font-family: 'object-fit: none; object-position: right;';
}

.mv_scroll {
	position: absolute;
	bottom: 20px;
	left: 60px;
	padding-top: 85px;
}
.mv_scroll p {
	writing-mode: vertical-rl;
	font-size: 1.0rem;
	letter-spacing: 0.15em;
	color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	font-family: "hiragino-kaku-gothic-pron", sans-serif;
}
.mv_arrow {
	width: 7px;
	height: 80px;
	transform: translate(-50%, -50%);
	animation: scroll_01 3s infinite;
}
.mv_arrow::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	height: 100%;
	width: 1px;
	background-color: #fff;
	transform: translateX(-50%);
}
.mv_arrow::after {
	content: "";
	position: absolute;
	bottom: 5px;
	left: 50%;
	width: 22px;
	height: 12px;
	border-bottom: 1px solid #fff;
	transform: translateX(-50%) rotate(-60deg);
}
@keyframes scroll_01 {
	0% {
		transform: translate(-50%, -50%) translateY(10px);
		opacity: 0;
	}
	30% {
		opacity: 1;
	}
	100% {
		transform: translate(-50%, -50%) translateY(30px);
		opacity: 0;
	}
}
@media screen and (max-width: 1366px) {
	#mv {
		padding-left: 90px;
	}
	.mv_scroll {
		left: 45px;
	}
	.mv_txt {
		left: 12%;
	}
}
@media screen and (max-width:1024px){
	#mv {
		padding-left: 70px;
	}
	.mv_scroll {
		left: 35px;
	}
	.mv_txt {
		left: 11%;
	}
	.mv_txt h1 {
		font-size: 7rem;
	}
	.mv_img img {
		object-position: 60%;
	}
}
@media screen and (max-width:896px){
	.mv_txt h1 {
		font-size: 6rem;
	}
}
@media screen and (max-width:768px){
	.mv_txt span {
		padding: 15px 0 20px 30px;
	}
	.mv_img img {
		object-position: 66%;
	}
}
@media screen and (max-width:640px){
	.mv_txt h1 {
		font-size: 5rem;
	}
}
@media screen and (max-width:480px){
	#mv {
		padding-left: 35px;
	}
	.mv_txt {
		left: 6%;
		bottom: 25%;
	}
	.mv_txt h1 {
		font-size: 3.2rem;
		font-weight: 600;
	}
	.mv_txt span {
		padding: 12px 0 15px 20px;
	}
	.mv_txt span:not(:last-child) {
		margin-bottom: 12px;
	}
	.mv_scroll {
		left: 15px;
		padding-top: 60px;
	}
	.mv_scroll p {
		font-size: 0.8rem;
	}
	.mv_arrow {
		height: 50px;
	}
	.mv_arrow::after {
		width: 12px;
		height: 8px;
		bottom: 4px;
	}
}


/* ==============================================

	top_ttl

================================================= */
.top_ttl h2 {
	font-size: 3rem;
	font-weight: 600;
	margin-bottom: 15px;
}
.top_ttl p {
	font-size: 1.2rem;
	letter-spacing: 0.15em;
	font-weight: 700;
	font-family: "hiragino-kaku-gothic-pron", sans-serif;
}
#main_feature .top_ttl,
#main_aerosol .top_ttl {
	padding: 8px 0 8px 30px;
	position: relative;
}
#main_feature .top_ttl::before,
#main_aerosol .top_ttl::before {
	content: "";
	display: block;
	background: #ff6455;
	width: 1px;
	height: 100%;
	margin: 0 auto;
	position: absolute;
	top: 0;
	left: 0;
}
#main_product .top_ttl {
	color: #fff;
}
@media screen and (max-width: 768px) {
	.top_ttl h2 {
		font-size: 2.6rem;
	}
}
@media screen and (max-width: 480px) {
	.top_ttl h2 {
		font-size: 2.2rem;
	}
	#main_feature .top_ttl, #main_aerosol .top_ttl {
		padding-left: 20px;
	}
}

/* ==============================================

	cmn_btn

================================================= */
.cmn_btn a, .cmn_btn span,
.product_search_cat a,
.product_btn a,
.office_btn a {
	font-size: 1.6rem;
	letter-spacing: 0.1em;
	font-weight: 500;
	height: 54px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	background: #005064;
	color: #fff;
	border: none;
		-webkit-appearance: none;
	cursor: pointer;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
	border-radius: 50vh;
	max-width: 300px;
	margin: 0 auto;
	position: relative;
}

/*-------------------------------------------
	cmn_arrow
-------------------------------------------*/
.cmn_arrow a::before,
.cmn_arrow span::before,
.product_btn a::before,
.office_btn a::before,
.service_flow_btn p::before,
.aerosolDtl_08_btn span::before {
	content: "→";
	position: absolute;
	right: 14px;
	z-index: 1;
	font-size: 1.3rem;
	line-height: 0;
	color: #fff;
	font-weight: 300;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.cmn_arrow a::after,
.cmn_arrow span::after,
.product_btn a::after,
.office_btn a::after,
.service_flow_btn p::after,
.aerosolDtl_08_btn span::after {
	content: "";
	position: absolute;
	right: 10px;
	width: 24px;
	height: 24px;
	border-radius: 50vh;
	border: 1px solid #fff;
	box-sizing: border-box;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

/*-------------------------------------------
	cmn_arrow_s
-------------------------------------------*/
.cmn_arrow_s a::before,
.cmn_arrow_s span::before,
.product_search_cat a::before,
.profile_box .profile_link span::before,
.profile_link p::before {
	content: "→";
	position: absolute;
	right: 13px;
	z-index: 1;
	font-size: 1.2rem;
	line-height: 0;
	color: #fff;
	font-weight: 300;
}
.cmn_arrow_s a::after,
.cmn_arrow_s span::after,
.product_search_cat a::after,
.profile_box .profile_link span::after,
.profile_link p::after {
	content: "";
	position: absolute;
	right: 10px;
	width: 20px;
	height: 20px;
	border-radius: 50vh;
	border: 1px solid #fff;
	box-sizing: border-box;
}

/*-------------------------------------------
	cmn_arrow_back
-------------------------------------------*/
.cmn_arrow_back a::before,
.cmn_arrow_back span::before {
	content: "←";
	position: absolute;
	left: 17px;
	z-index: 1;
	font-size: 1.3rem;
	line-height: 0;
	color: #fff;
	font-weight: 300;
}
.cmn_arrow_back a::after,
.cmn_arrow_back span::after {
	content: "";
	position: absolute;
	left: 10px;
	width: 24px;
	height: 24px;
	border-radius: 50vh;
	border: 1px solid #fff;
}


/*-------------------------------------------
	cmn_btnBdr_blu
-------------------------------------------*/
.cmn_btnBdr_blu a,
.product_btn a {
	background: transparent;
	border: 1px solid #005064;
	color: #005064;
}
.cmn_btnBdr_blu a:hover,
.product_btn a:hover {
	background: #005064;
	color: #fff;
}
.cmn_btnBdr_blu a::before,
.product_btn a::before,
.profile_box .profile_link span::before,
.profile_link p::before {
	color: #005064;
}
.cmn_btnBdr_blu a:hover::before,
.product_btn a:hover::before {
	color: #fff;
}
.cmn_btnBdr_blu a::after,
.product_btn a::after,
.profile_box .profile_link span::after,
.profile_link p::after {
	border: 1px solid #005064;
}
.cmn_btnBdr_blu a:hover::after,
.product_btn a:hover::after {
	border: 1px solid #fff;
}

/*-------------------------------------------
	cmn_btnBg_blu
-------------------------------------------*/
.cmn_btnBg_blu a,
.office_btn a,
.aerosolDtl_08_btn a {
	background: #005064;
	color: #fff;
}
.cmn_btnBg_blu a:hover,
.office_btn a:hover {
	background: #fff;
	color: #005064;
	border: 1px solid #005064;
}
.cmn_btnBg_blu a::before,
.office_btn a::before,
.aerosolDtl_08_btn span::before {
	color: #fff;
}
.cmn_btnBg_blu a:hover::before,
.office_btn a:hover::before,
.aerosolDtl_08_btn a:hover span::before {
	color: #005064;
}
.cmn_btnBg_blu a::after,
.office_btn a::after,
.aerosolDtl_08_btn span::after {
	border: 1px solid #fff;
}
.cmn_btnBg_blu a:hover::after,
.office_btn a:hover::after,
.aerosolDtl_08_btn a:hover span::after {
	border: 1px solid #005064;
}

/*-------------------------------------------
	cmn_btnBg_Lblu
-------------------------------------------*/
.cmn_btnBg_Lblu a {
	background: #AFE6E6;
	color: #005064;
}
.cmn_btnBg_Lblu a:hover {
	background: #005064;
	color: #AFE6E6;
}
.cmn_btnBg_Lblu a::before {
	color: #005064;
}
.cmn_btnBg_Lblu a:hover::before {
	color: #AFE6E6;
}
.cmn_btnBg_Lblu a::after {
	background: transparent;
	border: 1px solid #005064;
}
.cmn_btnBg_Lblu a:hover::after {
	background: transparent;
	border: 1px solid #AFE6E6;
}

/*-------------------------------------------
	cmn_btnBg_gry
-------------------------------------------*/
.cmn_btnBg_gry a {
	background: #6D889D;
	color: #fff;
}
.cmn_btnBg_gry a:hover {
	background: #fff;
	color: #384e5f;
	border: 1px solid #384e5f;
}
.cmn_btnBg_gry a::before {
	color: #fff;
}
.cmn_btnBg_gry a:hover::before {
	color: #384e5f;
}
.cmn_btnBg_gry a::after {
	background: transparent;
	border: 1px solid #fff;
}
.cmn_btnBg_gry a:hover::after {
	background: transparent;
	border: 1px solid #384e5f;
}

/*-------------------------------------------
	cmn_btnBg_red
-------------------------------------------*/
.cmn_btnBg_red a {
	background: #ff6455;
	color: #fff;
}
.cmn_btnBg_red a:hover {
	background: #fff;
	color: #ff6455;
	border: 1px solid #ff6455;
}
.cmn_btnBg_red a::before {
	color: #fff;
}
.cmn_btnBg_red a:hover::before {
	color: #ff6455;
}
.cmn_btnBg_red a::after {
	background: transparent;
	border: 1px solid #fff;
}
.cmn_btnBg_red a:hover::after {
	background: transparent;
	border: 1px solid #ff6455;
}

/*-------------------------------------------
	cmn_btnBg_wht
-------------------------------------------*/
.active .cmn_btnBg_wht a:hover,
.cmn_btnBg_wht a {
	background: #fff;
	color: #005064;
}
.active .cmn_btnBg_wht a,
.cmn_btnBg_wht a:hover {
	background: #AFE6E6;
	color: #005064;
}
.cmn_btnBg_wht a::before {
	color: #005064;
}
.cmn_btnBg_wht a:hover::before {
	color: #005064;
}
.cmn_btnBg_wht a::after {
	background: transparent;
	border: 1px solid #005064;
}
.cmn_btnBg_wht a:hover::after {
	background: transparent;
	border: 1px solid #005064;
}


/*-------------------------------------------
	product_search_cat
-------------------------------------------*/
.product_search_cat a {
	background: #f0f0f0;
	color: #005064;
}
.product_search_cat a:hover {
	background: #afe6e6;
}
.product_search_cat a::before {
	color: #ff6455;
}
.product_search_cat a:hover::before {
	color: #005064;
}
.product_search_cat a::after {
	background: transparent;
	border: 1px solid #ff6455;
}
.product_search_cat a:hover::after {
	background: transparent;
	border: 1px solid #005064;
}




@media screen and (max-width: 480px) {
	.cmn_btn a, .cmn_btn input, .cmn_btn_two input, .cmn_btn_two input[type="button"]:hover,
	.product_search_cat a {
		font-size: 1.5rem;
		letter-spacing: 0.025em;
	}
}


/* ==============================================

	cmn_link

================================================= */
.cmn_link {
	color: #005064;
	display: flex;
	align-items: center;
}
.cmn_link a, .cmn_link span {
	display: flex;
	align-items: center;
	position: relative;
	color: #005064;
	padding: 0 40px 0 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #005064;
	font-size: 1.4rem;
	font-weight: 500;
}
.cmn_link a:hover, a:hover .cmn_link span {
	border-bottom: 1px solid transparent;
}
.cmn_link a::before, .cmn_link span::before {
	color: #005064;
	right: 3px;
}
.cmn_link a::after, .cmn_link span::after {
	border: 1px solid #005064;
	right: 0;
}


/* ==============================================

	link_pdf

================================================= */
.link_pdf a {
	padding-right: 35px;
}
.link_pdf a::after {
	content: "";
	background: url("images/icon_pdf.svg") center no-repeat;
	width: 15px;
	height: 20px;
	background-size: contain;
	position: absolute;
	right: 0;
	border: none;
}






/* ==============================================

	contents

================================================= */
#contents {

}


@media screen and (max-width:768px){

}


/* ==============================================

	main

================================================= */
.main_txt {
	line-height: 225%;
}

/* ==============================================

	main_statement

================================================= */
#main_statement {
	background: #005064;
	padding: 140px 5%;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
#main_statement::before {
	content: "";
	background: url("images/logo_icon.png") center no-repeat;
	width: 594px;
	height: 583px;
	position: absolute;
	right: 30px;
	bottom: 20px;
}
#main_statement p {
	font-size: 2.5rem;
	line-height: 192%;
	position: relative;
	font-weight: 500;
}

@media screen and (max-width:1024px){
	#main_statement {
		padding: 100px 10%;
	}
	#main_statement p {
		font-size: 2.3rem;
	}
}
@media screen and (max-width:768px){
	#main_statement p {
		font-size: 2.1rem;
	}
	#main_statement::before {
		zoom: 0.8;
	}
}
@media screen and (max-width:640px){
	#main_statement p {
		font-size: 1.8rem;
	}
	#main_statement::before {
		zoom: 0.7;
	}
}
@media screen and (max-width:480px){
	#main_statement {
		padding: 60px 10%;
	}
	#main_statement p {
		font-size: 1.6rem;
	}
	#main_statement::before {
		zoom: 0.5;
	}
}


/* ==============================================

	main_feature

================================================= */
#main_feature {
	background: #005064;
	padding: 0 0 0 5%;
}
.main_feature_inner {
	max-width: 1600px;
	margin: 0 0 0 auto;
	background: #fff;
	padding: 100px 0 100px 100px;
	border-radius: 50px 0 0 0;
	display: flex;
	align-items: flex-start;
	position: relative;
}
.main_feature_txt {
	width: 65%;
	max-width: 620px;
	position: relative;
	z-index: 1;
	margin-top: 90px;
}
.main_feature_box {
	background: #fff;
	padding: 60px  65px 0 30px;
	border-radius: 0 15px 0 0;
}
.main_feature_box .main_txt {
	margin-bottom: 60px;
}
.main_feature_inner figure {
	width: 62.5%;
	max-width: 1000px;
	position: absolute;
	right: 0;
}
.main_feature_inner figure img {
	width: 100%;
	height: 550px;
	object-fit: cover;
	font-family: 'object-fit: none; object-position: right;';
	border-radius: 50px 0 0 0;
}

@media screen and (max-width:1600px){
	.main_feature_inner figure {
		width: 58%;
	}
}
@media screen and (max-width:1366px){
	.main_feature_inner figure {
		width: 50%;
	}
}
@media screen and (max-width:1194px){
	.main_feature_inner {
		padding: 80px 0 80px 50px;
	}
}
@media screen and (max-width:1024px){
	.main_feature_inner {
		flex-flow: column-reverse;
		padding: 0;
	}
	.main_feature_txt {
		margin: 0 auto;
		width: auto;
		padding: 70px 0;
	}
	.main_feature_box {
		padding: 60px  0 0 30px;
	}
	.main_feature_inner figure {
		position: relative;
		width: 100%;
	}
	.main_feature_inner figure img {
		height: 400px;
		object-position: 50% 80%;
	}
}
@media screen and (max-width: 896px) {
	.main_feature_txt {
		max-width: inherit;
		padding: 70px 8%;
	}
}
@media screen and (max-width:768px){
	.main_feature_inner figure img {
		height: 300px;
	}
}
@media screen and (max-width: 480px) {
	.main_feature_txt {
		padding: 50px 6% 60px;
	}
	.main_feature_box {
		padding: 40px 0 0 5%;
	}
	.main_feature_box .main_txt {
		margin-bottom: 30px;
	}
	.main_feature_inner figure img {
		height: 250px;
	}
}

/* ==============================================

	main_product

================================================= */
.main_product_ttl {
	background: url("images/product_bg.jpg") center no-repeat;
	height: 230px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.main_product_ttl::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0,80,100,0.8);
	width: 100%;
	height: 100%;
}
.main_product_ttl > * {
	position: relative;
}

.main_productArea {
	background: #005064;
	padding: 70px 5%;
	position: relative;
}
.product_search {
	max-width: 800px;
	margin: 0 auto;
}
.product_search_box:not(:last-child) {
	margin-bottom: 45px;
}
.product_search h2, .product_search h3 {
	font-size: 1.6rem;
	font-weight: 500;
	color: #c0f5f5;
	margin-bottom: 10px;
}

/*--------------------------------------------
	product_search search_box
--------------------------------------------*/
.product_search .search_box input[type="search"] {
	border: none;
}
.product_search .search_box button[type="submit"] {
	background: #f0f0f0;
}
.product_search .search_box button[type="submit"] img {
	filter: brightness(0) saturate(100%) invert(68%) sepia(69%) saturate(4568%) hue-rotate(325deg) brightness(100%) contrast(102%);
}

.product_search .search_box button[type="submit"]:hover {
	background: #afe6e6;
}
.product_search .search_box button[type="submit"]:hover img {
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}

/*--------------------------------------------
	product_search_tag
--------------------------------------------*/
.product_search_tag {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	position: relative;
	padding-right: 30px;
}
.product_search_tag ul {
	flex: 1;
	display: flex;
	gap: 10px;
	flex-flow: row wrap;
}
.product_search_tag ul li a {
	background: #f0f0f0;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 18px;
	color: #005064;
	border-radius: 50vh;
	font-size: 1.4rem;
	font-weight: 600;
}
.product_search_tag ul li a:hover {
	background: #afe6e6;
}
.product_search_tag ul li a::before {
	content: "#";
	color: #ff6455;
}
.product_search_tag ul li a:hover::before {
	color: #005064;
}
.aerosol_icon {
	width: 98px;
	position: absolute;
	right: -70px;
}

/*--------------------------------------------
	product_search_cat
--------------------------------------------*/
.product_search_cat ul {
	flex: 1;
	display: flex;
	gap: 13px;
}
.product_search_cat ul li {
	width: calc((100% - 39px) / 4);
}
.product_search_cat ul li a {
	background: #f0f0f0;
	height: 55px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 30px;
	color: #005064;
	border-radius: 50vh;
	font-weight: 600;
}

@media screen and (max-width:1024px){
	.aerosol_icon {
		right: 5%;
		top: -5%;
	}
	.product_search_tag {
		padding-right: 0;
	}
}
@media screen and (max-width: 896px) {
	.product_search_cat ul {
		flex-flow: row wrap;
	}
	.product_search_cat ul li {
		width: calc((100% - 13px) / 2);
	}
	.product_search_cat ul li a {
		max-width: inherit;
	}
}
@media screen and (max-width:768px){
	.main_product_ttl {
		background-position: 65%;
	}
}
@media screen and (max-width: 480px) {
	.main_product_ttl {
		height: 170px;
	}
	.aerosol_icon {
		/*
		top: -3%;
		*/
		top: -8%;
		right: 3%;
	}
	.product_search_cat ul li a {
		letter-spacing: 0;
	}
	.product_search_box:not(:last-child) {
		margin-bottom: 35px;
	}
	.product_search_cat ul li a p {
		margin-left: -20px;
	}
}


/* ==============================================

	main_nonAerosol

================================================= */
#main_nonAerosol {
	max-width: 1400px;
	margin: 0 0 80px auto;
	width: 90%;
	background: url("images/filling_bg.jpg") center no-repeat;
	padding: 65px 75px;
	border-radius: 0 0 0 50px;
	position: relative;
	background-size: cover;
}
#main_nonAerosol::before {
	content: "";
	background: rgba(255,255,255,0.85);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.main_nonAerosol_box {
	position: relative;
	max-width: 860px;
}
.main_nonAerosol_box a {
	display: flex;
	align-items: center;
	background: #738796;
	padding: 20px 70px 20px 0;
	border-radius: 15px;
	color: #fff;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}
.main_nonAerosol_box a:hover {
	background: #afe6e6;
	color: #005064;
}
#main_nonAerosol .top_ttl {
	padding: 0 50px;
}
#main_nonAerosol .top_ttl h2 {
	font-size: 2.2rem;
	font-weight: 500;
}
#main_nonAerosol .top_ttl p {
	font-size: 1.2rem;
}
.main_nonAerosol_txt {
	flex: 1;
	font-size: 1.4rem;
	max-width: 450px;
	padding: 12px 0;
	position: relative;
	padding-left: 50px;
	line-height: 185%;
}
.main_nonAerosol_txt::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 100%;
	background: #5b6f7e;
}
#main_nonAerosol .cmn_arrow a::before {
	right: 25px;
}
#main_nonAerosol .cmn_arrow a:hover::before {
	color: #005064;
}
#main_nonAerosol .cmn_arrow a::after {
	right: 20px;
}
#main_nonAerosol .cmn_arrow a:hover::after {
	border: 1px solid #005064;
}
@media screen and (max-width:1024px){
	#main_nonAerosol {
		padding: 65px;
		width: 94%;
	}
}
@media screen and (max-width:896px){
	#main_nonAerosol {
		padding: 50px;
	}
	#main_nonAerosol .top_ttl {
		padding: 0px;
	}
	.main_nonAerosol_txt {
		padding-left: 30px;
		padding: 30px 0 0;
		max-width: inherit;
	}
	.main_nonAerosol_box a {
		flex-flow: column;
		align-items: flex-start;
		gap: 30px;
		padding: 40px 70px 40px 50px;
	}
	.main_nonAerosol_txt::before {
		width: 100%;
		height: 1px;
	}
}
@media screen and (max-width:768px){

}
@media screen and (max-width:640px){
	#main_nonAerosol {
		padding: 40px;
	}
}
@media screen and (max-width:480px){
	#main_nonAerosol {
		padding: 30px;
		width: 100%;
	}
	.main_nonAerosol_box a {
		padding: 30px 60px 30px 30px;
		gap: 20px;
	}
	#main_nonAerosol .top_ttl h2 {
		font-size: 1.8rem;
		font-weight: 600;
	}
	#main_nonAerosol .top_ttl p {
		font-size: 1.1rem;
	}
	.main_nonAerosol_txt {
		padding-top: 20px;
	}
}


/* ==============================================

	main_service

================================================= */
#main_service {
	max-width: 1470px;
	margin: 0 auto 80px;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	position: relative;
}
#main_service::after {
	content: "";
	position: absolute;
	width: 90%;
	height: 100%;
	top: 80px;
	right: 0;
	background: #e5eef5;
	border-radius: 40px;
}
#main_service > * {
	position: relative;
	z-index: 1;
}
.main_service_img {
	max-width: 880px;
	width: 59.8%;
}
.main_service_img ul {
	display: flex;
	gap: 20px;
}
.main_service_img ul li:first-child {
	margin-top: 50px;
}
.main_service_img ul li img {
	border-radius: 10px;
}
.main_service_txt {
	max-width: 410px;
	width: 27.9%;
	margin: 0 6%;
}
.main_service_txt .top_ttl {
	margin-bottom: 60px;
}
.main_service_txt > p {
	line-height: 225%;
}
.main_service_txt .cmn_btn a {
	margin: 50px auto 0 0;
}

@media screen and (max-width: 1536px) {
	#main_service {
		max-width: inherit;
		padding: 0 5%;
	}
	#main_service::after {
		right: 5%;
		width: 80%;
	}
}
@media screen and (max-width: 1366px) {
	#main_service {
		padding: 80px 5%;
		margin-bottom: 0;
	}
	#main_service::after {
		top: 0;
	}
	.main_service_img {
		position: absolute!important;
		left: 5%;
		top: 8%;
		width: 50%;
	}
	.main_service_txt {
		width: 30%;
	}
}
@media screen and (max-width: 1024px) {
	#main_service::after {
		width: 100%;
		border-radius: 0 50px 50px 0;
	}
	#main_service {
		flex-flow: column;
		align-items: flex-start;
		gap: 60px;
	}
	.main_service_img {
		position: relative!important;
		width: 85%;
	}
	.main_service_txt {
		width: auto;
		margin: 0 auto;
	}
}
@media screen and (max-width:480px){
	#main_service {
		padding: 40px 5%;
		gap: 40px;
	}
	.main_service_img {
		left: inherit;
		width: 95%;
	}
	.main_service_img ul {
		gap: 10px;
	}
	.main_service_img ul li:first-child {
		margin-top: 10%;
	}
	.main_service_txt {
		width: 95%;
		margin: 0 auto 0 0;
	}
	.main_service_txt .top_ttl {
		margin-bottom: 30px;
	}
	.main_service_txt .cmn_btn a {
		margin-top: 40px;
	}
}


/* ==============================================

	main_case

================================================= */
#main_case {
	padding: 100px 5%;
}
#main_case .top_ttl {
	margin-bottom: 60px;
}
#main_case .cmn_btn a {
	margin: 50px auto 0;
}

@media screen and (max-width:480px){
	#main_case {
		padding: 60px 5%;
	}
	#main_case .top_ttl {
		margin-bottom: 40px;
	}
	#main_case .cmn_btn a {
		margin-top: 40px;
	}
}


/* ==============================================

	main_faq

================================================= */
#main_faq {
	background: #f7f7f7;
	padding: 100px 5%;
	display: flex;
	justify-content: center;
	gap: 60px 8.5%
}
.faq_area {
	max-width: 900px;
	flex: 1;
}
.faq_area section {
	border-bottom: 1px solid #000;
}
.faq_area section:hover {
	background: rgba(175, 230, 230, 0.15);
}
.faq_area section:first-child {
	border-top: 1px solid #000;
}
.faq_area h3 {
	padding: 25px 70px 25px 20px;
	font-size: 1.6rem;
	font-weight: 500;
	display: flex;
	align-items: center;
	line-height: 160%;
	position: relative;
	cursor: pointer;
}
.faq_area h3::before {
	content: "";
	position: absolute;
	right: 10px;
	width: 40px;
	height: 40px;
	border-radius: 50vh;
	box-sizing: border-box;
	border: 1px solid #888888;
}
.faq_area h3::after {
	content: "";
	position: absolute;
	right: 15px;
	background: url(images/list-open.svg) center no-repeat;
	filter: brightness(0) saturate(100%) invert(57%) sepia(7%) saturate(0%) hue-rotate(260deg) brightness(93%) contrast(86%);
	width: 30px;
	height: 30px;
	background-size: 50%;
}
.faq_area h3.open::after {
	background: url(images/list-close.svg) center no-repeat;
	filter: brightness(0) saturate(100%) invert(57%) sepia(7%) saturate(0%) hue-rotate(260deg) brightness(93%) contrast(86%);
	background-size: 50%;
}
.faq_area h3 span {
	display: flex;
	position: relative;
}
.faq_area h3 span::before {
	content: "Q.";
	font-size: 2.2rem;
	margin-right: 15px;
	color: #005166;
	font-family: "hiragino-kaku-gothic-pron", sans-serif;
	font-weight: 700;
}

.faq_a {
	background: #fff;
	padding: 30px;
	display: none;
	border-radius: 20px;
	width: calc(100% - 40px);
	margin: 0 auto 15px;
}
.faq_a > div {
	display: flex;
}
.faq_a > div::before {
	content: "A.";
	font-size: 2.2rem;
	margin-right: 15px;
	color: #005166;
	font-family: "hiragino-kaku-gothic-pron", sans-serif;
	font-weight: 700;
}
.faq_a > div > div {
	flex: 1;
}
.faq_a span {
	text-align: center;
	color: #653f1b;
	background: linear-gradient(transparent 60%, #ece8df 0%);
	padding: 0 18px 2px;
	font-size: 2.0rem;
	font-weight: 500!important;
	letter-spacing: 0.3rem;
	text-indent: 0.3rem;
	display: table;
	margin: 0 auto 12px;
}
.faq_a div p {
	line-height: 157%;
}
.faq_a div figure {
	text-align: center;
	max-width: 400px;
	margin: 20px auto 0;
}
.faq_a div figure img {
	max-height: 300px;
}


.faq_a .cmn_btn a {
	max-width: 350px;
	margin: 30px auto 0;
	font-size: 1.5rem;
	height: 50px;
	letter-spacing: 0.05em;
}
.faq_a .cmn_btn a::before {
	order: 1;
	margin-left: 15px;
	position: relative;
	right: inherit;
	top: inherit;
}
.faq_a .cmn_btn a::after {
	order: 2;
	margin-left: -19px;
	position: relative;
	right: inherit;
	top: inherit;
	transform: translateY(0%);
}

@media screen and (max-width: 1024px) {
	#main_faq {
		flex-flow: column;
	}
	#main_faq .top_ttl {
		text-align: center;
	}
}
@media screen and (max-width: 480px) {
	#main_faq {
		padding: 60px 5%;
		gap: 40px;
	}
	.faq_area h3 {
		font-size: 1.4rem;
		padding: 15px 40px 15px 0;
	}
	.faq_area h3::before {
		width: 30px;
		height: 30px;
	}
	.faq_area h3::after {
		width: 22px;
		height: 22px;
		right: 14px;
	}
	.faq_a {
		padding: 20px;
		font-size: 1.3rem;
		width: 100%;
	}
	.faq_a .cmn_btn {
		font-size: 1.2rem;
		margin: 15px auto 0;
	}
	.faq_a .cmn_btn a {
		height: 40px;
		font-size: 1.3rem;
		letter-spacing: 0.025em;
	}
	.faq_a div figure img {
		max-height: 240px;
	}
	.faq_a > div::before {
		margin-right: 10px;
	}
	.faq_a .cmn_btn a::before {
		margin-left: 5px;
		font-size: 1.1rem;
	}
	.faq_a .cmn_btn a::after {
		width: 19px;
		height: 19px;
		margin-left: -15px;
	}
}


/* ==============================================

	main_info

================================================= */
#main_info {
	padding: 100px 5%;
}
#main_info .top_ttl {
	margin-bottom: 60px;
}
.info_area {
	margin-bottom: 50px;
}

/*--------------------------------------------
	info_catLink
--------------------------------------------*/
.info_catLink {
	display: flex;
	gap: 2px;
	margin-bottom: 35px;
}
.info_catLink li {
	flex: 1;
	text-align: center;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f0f0f0;
	color: #8b8b8b;
	font-weight: 600;
	font-size: 1.8rem;
	cursor: pointer;
	position: relative;
}
.info_catLink li.active,
.info_catLink li:hover {
	background: none;
}
.info_catLink li.active::after,
.info_catLink li:hover::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: #000;
}

/*--------------------------------------------
	info_list
--------------------------------------------*/
.panel {
	display: none;
}
.panel.active {
	display: block;
}

.info_list article a {
	display: flex;
	align-items: center;
	padding: 20px 0;
	gap: 15px 20px;
	border-bottom: 1px solid #b1b3b5;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}
.info_list article a:hover {
	background: rgba(175,230,230,0.15);
}
.info_list article a time {
	font-size: 1.4rem;
	letter-spacing: 0;
	font-family: "hiragino-kaku-gothic-pron", sans-serif;
}
.info_list article a span {
	width: 120px;
	padding: 10px;
	color: #fff;
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50vh;
	height: 24px;
}
.infoCat_news {
	background: #59b6b6;
}
.infoCat_event {
	background: #005064;
}
.infoCat_dev {
	background: #ff6455;
}

.info_list article h3 {
	font-size: 1.4rem;
	font-weight: 500;
	flex: 1;
	line-height: 130%;
}

@media screen and (max-width:768px){
	.info_catLink li {
		font-size: 1.6rem;
	}
	.info_list article a {
		flex-flow: row wrap;
	}
	.info_list article h3 {
		flex: none;
		width: 100%;
	}
}
@media screen and (max-width: 480px) {
	.info_area {
		margin-bottom: 40px;
	}
	#main_info {
		padding: 60px 5%;
	}
	.info_catLink {
		margin-bottom: 10px;
	}
	.info_catLink li {
		font-size: 1.4rem;
	}
	#main_info .top_ttl {
		margin-bottom: 40px;
	}
}


/* ==============================================

	main_aerosol

================================================= */
#main_aerosol {
	background: #005064;
	padding: 100px 0 100px 5%;
}
.main_aerosolArea {
	background: #fff;
	padding: 90px 5%;
	border-radius: 50px 0 0 50px;
}
#main_aerosol .top_ttl {
	margin-bottom: 40px;
}
#main_aerosol .cmn_ImgList_inner h3 {
	margin-top: 15px;
}
.aerosol_info {
	display: flex;
	align-items: center;
	flex-flow: row wrap;
	gap: 10px;
}
.aerosol_info time {
	font-size: 1.4rem;
	letter-spacing: 0;
	font-family: "hiragino-kaku-gothic-pron", sans-serif;
}
.aerosol_info ul {
	display: flex;
	gap: 5px;
}
.aerosol_info ul li a,
.aerosol_info ul li span {
	padding: 6px 10px;
	color: #fff;
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50vh;
}
.aerosolcat_01 a,
.aerosolcat_01 span {
	background: #005064;
}
.aerosolcat_02 a,
.aerosolcat_02 span {
	background: #59b6b6;
}
.aerosolcat_03 a,
.aerosolcat_03 span {
	background: #ff6455;
}
.aerosolcat_04 a,
.aerosolcat_04 span {
	background: #738796;
}
.aerosolcat_05 a,
.aerosolcat_05 span {
	background: #2da5c3;
}
.aerosolcat_06 a,
.aerosolcat_06 span {
	background: #607fb9;
}
.aerosolcat_07 a,
.aerosolcat_07 span {
	background: #d56493;
}
.aerosolcat_08 a,
.aerosolcat_08 span {
	background: #d5a364;
}
.aerosolcat_09 a,
.aerosolcat_09 span {
	background: #8b69b1;
}
#main_aerosol .cmn_btn  a {
	margin: 50px auto 0;
}

@media screen and (max-width:480px){
	#main_aerosol {
		padding: 60px 0 60px 5%;
	}
	.main_aerosolArea {
		padding: 60px 5%;
		border-radius: 30px 0 0 30px;
	}
	#main_aerosol .top_ttl {
		margin-bottom: 20px;
	}
	#main_aerosol .cmn_btn a {
		margin-top: 40px;
	}
}


/* ==============================================

	contact_btnArea

================================================= */
.contact_btnArea {
	position: relative;
	background: url("images/f_contact_bg.jpg") center no-repeat;
	background-size: cover;
	height: 350px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 5%;
}
.contact_btnArea::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0,42,52,0.45);
	width: 100%;
	height: 100%;
}
.contact_btnArea::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0,80,100,0.55);
	width: 100%;
	height: 100%;
	mix-blend-mode: multiply;
}
.contact_btnArea ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 80px;
	position: relative;
	z-index: 1;
	width: 100%;
}
.contact_btnArea ul li {
	width: 400px;
}
.contact_btnArea ul li a {
	width: 100%;
	max-width: inherit;
	height: 70px;
	font-size: 1.8rem;
}

@media screen and (max-width:1024px){
	.contact_btnArea ul {
		gap: 6%;
	}
	.contact_btnArea ul li {
		width: 47%;
	}
}
@media screen and (max-width:768px){
	.contact_btnArea ul li a {
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 640px) {
	.contact_btnArea ul {
		flex-flow: column;
		gap: 30px;
	}
	.contact_btnArea ul li {
		width: 80%;
	}
}
@media screen and (max-width: 480px) {
	.contact_btnArea {
		height: 250px;
	}
	.contact_btnArea ul {
		gap: 25px;
	}
	.contact_btnArea ul li {
		width: 90%;
	}
	.contact_btnArea ul li a {
		height: 60px;
		font-size: 1.5rem;
	}
}

/* ==============================================

	cmn_ImgList

================================================= */
.cmn_ImgList {
	max-width: 1410px;
	margin: 0 auto;
}
.cmn_ImgList_inner {
	display: flex;
	gap: 60px;
}
.cmn_ImgList article {
	width: calc((100% - 120px) / 3);
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}
.cmn_ImgList article a {
	display: block;
}
.cmn_ImgList article a:hover {
	opacity: 0.7;
}
.cmn_ImgList article figure {
	aspect-ratio: 43 / 35;
	overflow: hidden;
	border-radius: 10px;
	margin-bottom: 20px;
}
.cmn_ImgList article figure img{
	-webkit-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}
.cmn_ImgList article a:hover figure img{
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}
.cmn_ImgList article h2,
.cmn_ImgList article h3 {
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 150%;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin-bottom: 30px;
}
.cmn_ImgList article .cmn_link {
	justify-content: flex-end;
}
@media screen and (max-width: 1366px) {
	.cmn_ImgList_inner {
		gap: 45px;
	}
	.cmn_ImgList article {
		width: calc((100% - 90px) / 3);
	}
}
@media screen and (max-width:1024px){
	.cmn_ImgList_inner {
		gap: 30px;
	}
	.cmn_ImgList article {
		width: calc((100% - 60px) / 3);
	}
}
@media screen and (max-width:896px){
	.cmn_ImgList_inner {
		flex-flow: column;
		gap: 0;
	}
	.cmn_ImgList article {
		width: 100%;
	}
	.cmn_ImgList article a {
		display: flex;
		gap: 40px;
		border-bottom: 1px solid #dddddd;
		padding: 30px 0;
		align-items: flex-start;
	}
	.cmn_ImgList article figure {
		width: 30%;
		margin-bottom: 0;
	}
	.cmn_ImgList article a > div {
		flex: 1;
	}
}
@media screen and (max-width: 480px) {
	.cmn_ImgList article a {
		padding: 20px 0;
		gap: 20px;
	}
	.cmn_ImgList article h2,
	.cmn_ImgList article h3 {
		font-size: 1.4rem;
	}
}



/* ==============================================

	XXXXXXXXXXXXXX

================================================= */


@media screen and (max-width:768px){

}


/* ==============================================

	footer

================================================= */
/*--------------------------------------------
	footer_01
--------------------------------------------*/
.footer_01 {
	background: #f0f0f0;
	padding: 120px 5%;
}
.footer01_Area {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 60px 10%;
}
.f_info {
	font-family: "hiragino-kaku-gothic-pron", "Hiragino Sans", sans-serif;
}
.f_logo {
	margin-bottom: 40px;
}
.f_logo img {
	webkit-filter: brightness(1) invert(1);
	filter: brightness(1) invert(1);
	height: 20px;
}
.f_info {
	font-size: 1.4rem;
}
.f_address {
	margin-bottom: 40px;
}
.f_address address {
	font-style: normal;
	line-height: 160%;
	word-break: keep-all;
}
.f_address a {
	text-decoration: underline;
}
.f_address a:hover {
	text-decoration: none;
}
.f_tel {
	display: flex;
	flex-flow: column;
	gap: 5px;
}

.f_link ul {
	display: flex;
	flex-flow: row wrap;
	gap: 18px;
	max-width: 600px;
	font-size: 1.5rem;
	color: #005064;
	font-weight: 500;
}
.f_link ul li:not(:last-child)::after {
	content: "/";
	margin-left: 18px;
}
.f_link ul li a {
	color: #005064;
}
.f_link ul li a:hover {
	text-decoration: underline;
}


/*--------------------------------------------
	footer_02
--------------------------------------------*/
.footer_02 {
	background: #005064;
	padding: 24px 5%;
	color: #fff;
}
.footer02_Area {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.footer02_Area ul {
	display: flex;
}
.footer02_Area ul li {
	display: flex;
	align-items: center;
}
.footer02_Area ul li:not(:last-child)::after {
	content: "";
	display: block;
	width: 1px;
	height: 12px;
	background: #fff;
	margin: 0 10px;
}
.footer02_Area ul li a {
	color: #fff;
	font-size: 1.1rem;
}
.footer02_Area ul li a:hover {
	text-decoration: underline;
}
.f_02_r {
	display: flex;
	flex-flow: column;
	align-self: flex-end;
	justify-content: flex-end;
	gap: 24px;
}
.logo_toyoseikan {
	margin: 0 0 0 auto;
}
.logo_toyoseikan a {
	width: 130px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 10px;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}
.logo_toyoseikan a:hover {
	opacity: 0.7;
}
.logo_toyoseikan img {
	height: 40px;
}
@media screen and (max-width: 896px) {
	.footer01_Area {
		gap: 60px 8%;
		flex-flow: column;
	}
	.footer02_Area {
		flex-flow: column;
		gap: 20px;
	}
	.footer02_Area ul {
		flex-flow: row wrap;
		gap: 10px 0;
	}
}
@media screen and (max-width: 480px) {
	.footer_01 {
		padding: 60px 10%;
	}
	.footer01_Area {
		gap: 40px;
	}
	.f_logo {
		text-align: center;
	}
	.f_logo img {
		zoom: 0.8;
	}
	.f_address {
		margin-bottom: 30px;
	}
	.f_link ul {
		font-size: 1.3rem;
		gap: 15px;
	}
	.f_link ul li:not(:last-child)::after {
		margin-left: 15px;
	}
	.footer02_Area {
		gap: 25px;
	}
	.footer02_Area ul {
		justify-content: center;
	}
	.f_02_r {
		align-self: center;
	}
	.logo_toyoseikan {
		margin: 0 auto;
	}
}

/* ==============================================

	copyright

================================================= */
#copyright {
	font-size: 1.0rem;
	font-family: "hiragino-kaku-gothic-pron", "Hiragino Sans", sans-serif;
}

@media screen and (max-width: 408px) {
	#copyright {
		font-size: 0.8rem;
	}
}



/* =======================================

	#pageTop

========================================== */
#pageTop{
	position:fixed;
	background-color:rgba(233,139,101,0.9);
	-moz-border-radius:7px ;
	-webkit-border-radius:7px ;
	border-radius:7px ;
	color:#fff;
	bottom:40px;
	right:30px;
	padding: 18px 14px;
	z-index: 100;}

#pageTop:hover{
	background-color:rgba(233,139,101,0.5);
}

@media screen and (max-width: 768px) {
	#pageTop {
		padding: 15px 10px;}
}


/* =======================================

	#pageTop

========================================== */
.f_privacyArea {
	display: none;
}
.f_privacy {
	background: rgba(0,0,0,0.65);
	position: fixed;
	width: 100%;
	height: 75px;
	bottom: 0;
	left: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 3%;
}
.f_privacy * {
	font-size: 1.4rem;
}
.f_privacy div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 4%;
	width: 100%;
}
.f_privacy div p {
	max-width: 690px;
	color: #fff;
	line-height: 140%;
	font-weight: 600;
}
.f_privacy div p a {
	color: #fff;
	text-decoration: underline;
}
.f_privacy div p a:hover {
	text-decoration: none;
}

.f_privacy div ul {
	display: flex;
	gap: 20px;
}
.f_privacy div ul li {
	width: max-content;
}
.f_privacy div ul li button {
	background: #afe6e6;
	border-radius: 50vh;
	border: none;
	font-weight: 600;
	padding: 10px;
	cursor: pointer;
	width: 120px;
	color: #005064;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}
.f_privacy div ul li button:hover {
	background: #005064;
	color: #afe6e6;
	border: 1px solid #afe6e6;
}

@media screen and (max-width: 1024px) {
	.f_privacy * {
		font-size: 1.3rem;
	}
}
@media screen and (max-width: 768px) {
	.f_privacy {
		height: auto;
		padding: 2% 3%;
	}
	.f_privacy div {
		gap: 2%;
	}
	.f_privacy div ul {
		gap: 12px;
	}
}
@media screen and (max-width: 640px) {
	.f_privacy * {
		font-size: 1.2rem;
	}
	.f_privacy div ul {
		flex-flow: column;
		gap: 10px;
	}
	.f_privacy div ul li button {
		width: 100px;
	}
}
@media screen and (max-width: 480px) {
	.f_privacy div p {
		font-size: 1.0rem;
		line-height: 120%;
		font-weight: 500;
	}
	.f_privacy div p a {
		font-size: 1.0rem;
	}
	.f_privacy div ul li button {
		font-size: 1.1rem;
		width: 90px;
	}
}






