@charset "utf-8";


/* common
-------------------------------------------------------*/
#wrapper {
	overflow: hidden;
	color: #000;
}
.sp {
	display: none;
}
.area {
	padding: 70px 20px;
	box-sizing: border-box;
}
.inner {
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
	max-width: 1200px;
}
.inner .size_l {
	max-width: 1680px;
}
.ttl01 {
	margin: 0 0 20px;
	font-size: 370%;
	font-weight: 700;
}
.ttl01 span {
	color: #004ea2;
}
.jp {
	font-size: 120%;
	font-weight: 700;
	margin: 0 0 40px;
}
@media screen and (max-width:768px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	.area {
		padding: 30px 20px;
	}
	.inner {
		max-width: 100%;
	}
	.ttl01 {
		font-size: 200%;
		margin: 0 0 10px;
	}
	.jp {
		font-size: 100%;
		margin: 0 0 30px;
	}

}


/* header
-------------------------------------------------------*/
#header {
	padding: 10px 20px;
}
#header .inner {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-end;
	justify-content: space-between;
	max-width: 1400px;
}
#header .logo img {
	max-width: 441px;
}
#header nav {
	margin: 0 0 20px;
}
#header nav ul {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-end;
}
#header nav ul li:not(:last-child) {
	margin: 0 60px 0 0;
}
#header nav ul li a {
	font-weight: 700;
}
#header nav ul li.contact {
	background: #004ea2;
}
#header nav ul li.contact a {
	color: #fff;
	width: 150px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
}
@media screen and (max-width:768px) {
	#header .logo img {
		max-width: 230px;
	}
	#header nav {
		margin: 0 0 20px;
	}
	#header nav ul {
		display: flex;
		flex-flow: row nowrap;
		align-items: center;
		justify-content: flex-end;
	}
	#header nav ul li:not(:last-child) {
		margin: 0 60px 0 0;
	}
	#header nav ul li a {
		font-weight: 700;
	}
	#header nav ul li.contact {
		background: #004ea2;
	}
	#header nav ul li.contact a {
		color: #fff;
		width: 150px;
		height: 45px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
}

/* nav
-------------------------------------------------------*/
@media screen and (max-width:768px) {
	/* toggle_menu */
	#btn_nav {
		position: fixed;
		top: 27px;
		right: 20px;
		z-index: 999;
		cursor: pointer;
		display: flex;
		flex-flow: column;
		justify-content: space-between;
		height: 18px;
	}
	#btn_nav span {
		display: inline-block;
		background: #013e98;
		width: 25px;
		height: 2px;
		transition: .5s;
		position: relative;
	}
	#btn_nav.active span {
		background: #fff;
		transform: translateY(8px) rotate(225deg);
	}
	#btn_nav.active span:nth-child(2) {
		transform: scaleX(0);
	}
	#btn_nav.active span:last-child {
		transform: translateY(-8px) rotate(-225deg);
	}
	#nav_sp nav,
	#nav_sp nav::after {
		position: fixed;
		top: 0;
		height: 100%;
		width: 100%;
		overflow: hidden;
	}
	#nav_sp nav {
		display: flex;
		flex-flow: column;
		justify-content: center;
		overflow: auto;
		text-align: center;
		background: rgba(1,62,152,0.6);
		right: -100%;
		z-index: 998;
		transition: .5s;
	}
	#nav_sp nav::after {
		content: "";
		background: rgba(1,62,152,0.9);
		left: -100%;
		z-index: -1;
		transition: .7s;
	}
	#nav_sp nav.active {
		right: 0;
	}
	#nav_sp nav.active::after {
		left: 0;
	}
	#nav_sp ul li:first-child {
		border-top: 1px solid rgba(255,255,255,0.4);
	}
	#nav_sp ul li {
		border-bottom: 1px solid rgba(255,255,255,0.4);
	}
	#nav_sp ul li a {
		display: block;
		color: #fff;
		padding: 20px;
	}/* toggle_menu end */
}

/* visual
-------------------------------------------------------*/
#visual {
	padding: 0;
	box-sizing: border-box;
	background: #dcf2ff;
}
#visual .inner {
	max-width:inherit;
}
@media screen and (max-width:768px) {

}


/* footer
-------------------------------------------------------*/
#footer {
	text-align: center;
	background: #013e98;
	color: #fff;
	font-size: 85%;
}
#footer.area {
	padding: 25px 20px;
}
#footer .txt {
    margin: 0 0 10px;
}
@media screen and (max-width:768px) {
	#footer {
		font-size: 70%;
		line-height: 1.2;
	}
}


/* product
-------------------------------------------------------*/
#product ul li {
	border: 2px solid #d2d2d2;
	padding: 40px;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
}
#product ul li:last-child {
	padding: 0 40px;
}
#product ul li:not(:last-child) {
	margin: 0 0 10px;
}
#product ul li .txt_box {
	width: 60%;
}
#product ul li .txt_box .ttl {
	text-align: center;
	color: #004ea2;
	letter-spacing: .25em;
	font-size: 170%;
	position: relative;
	padding: 0 0 20px;
	margin: 0 0 10px;
}
#product ul li .txt_box .ttl::after {
	position: absolute;
	display: block;
	content: "";
	background: #004ea2;
	width: 150px;
	height: 1px;
	bottom: 0;
	right: 50%;
	transform: translate(50%,0);
}
#product ul li .txt_box .ttl span {
	font-size: 70%;
	margin: 0 0 0 20px;
}
#product ul li .txt_box .txt {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
	margin: 0 0 20px;
}
#product ul li .txt_box .txt .txt_in {
	font-size: 120%;
}
#product ul li .txt_box .txt .icon {
	margin: 0 0 0 20px;
}
#product ul li .txt_box .txt .icon img {
	max-width: 272px;
}
#product ul li a {
	width: 80%;
	padding: 25px;
	color: #fff;
	font-size: 120%;
	font-weight: 700;
	display: block;
	border-radius: 6px;
	text-align: center;
	position: relative;
}
#product ul li a::after {
	position: absolute;
	display: block;
	content: "";
	background: url("../img/arrow.png")no-repeat center/10px 17px;
	width: 10px;
	height: 17px;
	right: 25px;
	top: 50%;
	transform: translate(0,-50%);
}
#product ul li a.mask01 {
	background: #009e96;
}
#product ul li a.mask02 {
	background: rgba(0,158,150,0.4);
	pointer-events: none;
}
#product ul li .img {
	width: 35%;
}


@media screen and (max-width:768px) {
	#product ul li {
		padding: 20px;
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	#product ul li:last-child {
		padding: 20px 20px 0 20px;
	}
	#product ul li:not(:last-child) {
		margin: 0 0 10px;
	}
	#product ul li .txt_box {
		width: 100%;
		margin: 0 0 20px;
	}
	#product ul li .txt_box .ttl {
		font-size: 130%;
		margin: 0 0 20px;
	}
	#product ul li .txt_box .ttl::after {
		width: 100px;
	}
	#product ul li .txt_box .ttl span {
		margin: 0 0 0 10px;
	}
	#product ul li .txt_box .txt {
		flex-flow: column;
		align-items: flex-start;
		justify-content: flex-start;
		margin: 0 0 20px;
	}
	#product ul li .txt_box .txt .txt_in {
		font-size: 100%;
		margin: 0 0 20px;
	}
	#product ul li .txt_box .txt .icon {
		margin: 0;
	}
	#product ul li .txt_box .txt .icon img {
		max-width: 200px;
	}
	#product ul li a {
		box-sizing: border-box;
		width: 100%;
		padding: 20px;
		font-size: 110%;
	}
	#product ul li a::after {
		background: url("../img/arrow.png")no-repeat center/6px 10px;
		width: 6px;
		height: 10px;
		right: 20px;
	}
	#product ul li .img {
		width: 100%;
	}
}


/* corporate
-------------------------------------------------------*/
#corporate {
	background: #f5f5f5;
}
#corporate .jp {
	margin: 0 0 60px;
}
#corporate .box {
	padding:  0 40px;
}
#corporate dl {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
	border-bottom: 1px solid #cccccc;
	padding: 0 20px 15px;
}
#corporate dl:not(:last-child) {
	margin: 0 0 15px;
}
#corporate dl dt {
	font-weight: 500;
	font-size: 105%;
	width: 20%;
}
#corporate dl dd {
	width: 80%;
}
#corporate dl a {
	color: #013e98;
	text-decoration: underline;
}
@media screen and (max-width:768px) {
	#corporate .jp {
		margin: 0 0 40px;
	}
	#corporate .box {
		padding:  0;
	}
	#corporate dl {
		align-items: flex-start;
		padding: 0 10px 15px;
		font-size: 90%;
	}
	#corporate dl:not(:last-child) {
		margin: 0 0 15px;
	}
	#corporate dl dt {
		width: 30%;
	}
	#corporate dl dd {
		width: 70%;
		line-height: 1.4;
	}
}


/* contact
-------------------------------------------------------*/
#contact ul {
	border: 4px solid #004ea2;
	max-width: 1100px;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
	padding: 25px 100px;
	box-sizing: border-box;
	margin: 0 auto;
}
#contact ul li.tel {
	margin: 0 30px 0 0;
}
#contact ul li.tel img {
	max-width: 318px;
}
#contact ul li.contact img {
	max-width: 440px;
}
@media screen and (max-width:768px) {
	#contact ul {
		border: 2px solid #004ea2;
		flex-flow: column;
		align-items: center;
		justify-content: center;
		padding: 20px;
	}
	#contact ul li {
		text-align: center;
	}
	#contact ul li.tel {
		margin: 0 0 20px;
	}
	#contact ul li.tel img {
		max-width: 254px;
	}
	#contact ul li.contact img {
		max-width: 352px;
	}
}

