@charset "UTF-8";

/* ---------------------------------------
  基本情報
-----------------------------------------*/

html,body{	height:100%;}
html{
	font-size:62.5%;
    overflow-y: scroll;
}
body, h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, form, figure {
	margin: 0;
	padding: 0;
	border: none;
	line-height: 100%;
	list-style-type: none;
	font-style: normal;
	font-weight: normal;
	font-family: 'Noto Sans JP',sans-serif;
	text-align: left;
	color: #000;
}
input, button, textarea, select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-family: 'Noto Sans JP',sans-serif;
	color: #181e24;
}
p, dt, dd ,li ,th ,td,
input, button, textarea, select{
	font-size: 1.6rem;
	line-height: 1.875;
	letter-spacing: .14rem;
}
textarea{
	resize: vertical;
}
select::-ms-expand {
	display: none;
}
body{
	-webkit-text-size-adjust:100%;
}
body a {
	text-decoration: none;
	color: #181e24;
}
img{
	vertical-align: bottom;
	max-width: 100%;
}
*,*:after,*:before{
	box-sizing: border-box;
}
@media screen and (min-width: 769px) {
	body{
		min-width: 900px;
	}
}
@media screen and (max-width: 768px) {
	img{
		width: 100%;
	}
	p, dt, dd ,li ,th ,td,
	input, button, textarea, select{
		font-size: 3.7vw;
	}
}

/* responsive
--------------------------------*/
@media screen and (min-width: 769px) {
	.sp{
		display: none!important;
	}
}
@media screen and (max-width: 768px) {
	.pc{
		display: none!important;
	}
}

/* hover
--------------------------------*/
.fade:hover{
	opacity: .7;
}
.fade{
	outline: 1px solid transparent;
	transition: opacity .3s;
}

/* common
--------------------------------*/
.wrap{
	max-width: 880px;
	width: 92%;
	margin: 0 auto;
}
.aligncenter{
	display: block;
	margin: 0 auto;
}
.alignright{
	float: right;
}
.alignleft{
	float: left;
}
.flex{
	display: flex;
	justify-content: space-between;
}
.tac{
	text-align: center;
}
.tar{
	text-align: right;
}
.tal{
	text-align: left;
}
.roboto,
.roboto *{
	font-family: 'Roboto', sans-serif;
}
.white{
	color: #fff!important;
}
.wblue{
	color: #c9dbec!important;
}
.bg_white{
	background: #fff;
}
.bg_gray{
	background: #f4f7f9;
}
.bg_gray2{
	background: #eef2f5;
}
.bg_wblue{
	background: #e6ecf0;
}
.bg_grade_blue{
	background: -webkit-gradient(linear, left top, left bottom, from(#001e5e), to(#004c99));
	background: -webkit-linear-gradient(top, #001e5e, #004c99);
	background: -moz-linear-gradient(top, #001e5e, #004c99);
	background: -o-linear-gradient(top, #001e5e, #004c99);
	background: linear-gradient(#001e5e, #004c99);
}
.fixed2{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

@media screen and (max-width: 768px) {
	.wrap{
		width: 82%;
	}
	body.fixed{
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
}


/* ---------------------------------------------
  header
-----------------------------------------------*/
header{
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	min-width: 900px;
	z-index: 100;
}
header .wrap{
	width: 100%;
	height: 100px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header .logo{
	width: 124px;
}
.global_navi ul{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.global_navi ul li{
	margin-left: 35px;
}
.global_navi ul li a{
	font-size: 1.4rem;
	letter-spacing: .12rem;
	display: inline-block;
	position: relative;
	padding: 3px 0;
	transition: .3s;
}
.global_navi ul li a::before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: #2bd9c2;
	transition: .3s;
}
.global_navi ul li a:hover{
	color: #2bd9c2;
}
.global_navi ul li a:hover::before{
	width: 100%;
}
@media screen and (min-width: 769px) {
	header{
		display: block!important;
	}
}
@media screen and (max-width: 768px) {
	header{
		min-width: initial;
		min-width: 100%;
		height: 100%;
		background: #f6f6f6;
		padding: 7.5% 8%;
		display: none;
		height: 90vh;
		overflow-y: scroll;
	}
	header .wrap{
		display: block;
		height: auto;
	}
	header .logo{
		width: 25.2vw;
	}
	.global_navi{
		width: 100%;
		margin-top: 9%;
	}
	.global_navi ul{
		display: block;
	}
	.global_navi ul li{
		margin-left: 0;
		border-top: 1px solid #dddddd;
	}
	.global_navi ul li a{
		font-size: 5.1vw;
		font-weight: 700;
		padding: 4%;
		display: block;
		border-bottom: 0;
		position: relative;
	}
	.global_navi ul li a.blank::after{
		content: '';
		position: absolute;
		top: 50%;
		right: 4%;
		transform: translateY(-50%);
		width: 4.5vw;
		height: 5vw;
		background: url(../img/btn_arrow.png) no-repeat center center /contain;
		transition: .3s;
	}
	.global_navi ul li.col2 ul{
		display: flex;
		justify-content: space-between;
	}
	.global_navi ul li.col2 ul > *{
		flex: 1;
	}
	.global_navi ul li.col2 ul li{
		border-top: 0;
		position: relative;
		border-bottom: 1px solid #dddddd;
	}
	.global_navi ul li.col2 ul li:first-child:before{
		content: '';
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		width: .3vw ;
		height: 3vw;
		background: #dddddd;
	}
	.global_navi ul li.col2 ul li a{
		font-size: 3.2vw;
		padding: 12.4% 8%;
	}
	.global_navi ul li.col2 ul li a::after{
		right: 8%;
	}
}


/* ---------------------------------------------
  main
-----------------------------------------------*/
main{
	display: block;
	padding-top: 100px;
}
@media screen and (max-width: 768px) {
	main{
		padding-top: 0;
	}
	.menu-trigger{
		position: fixed;
		top: 3.8vw;
		right: 4vw;
		width: 14vw;
		height: 14vw;
		background: #fff;
		border-radius: 50%;
		z-index: 100;
		transition: .3s;
	}
	.menu-trigger span{
		position: absolute;
		left: 0;
		right: 0;
		margin: 0 auto;
		width: 4.7vw;
		height: .8vw;
		background: #00519f;
		transition: .3s;
	}
	.menu-trigger span:nth-child(1){
		top: 32%;
	}
	.menu-trigger span:nth-child(2){
		top: 50%;
		transform: translateY(-50%);
	}
	.menu-trigger span:nth-child(3){
		bottom: 32%;
	}
	.menu-trigger.active{
		background: #cccccc;
	}
	.menu-trigger.active span{
		background: #fff;
	}
	.menu-trigger.active span:nth-child(1){
		top: 50%;
		transform: translateY(-50%) rotate(135deg);
	}
	.menu-trigger.active span:nth-child(2){
		opacity: 0;
	}
	.menu-trigger.active span:nth-child(3){
		top: 50%;
		bottom: 0;
		transform: translateY(-50%) rotate(-135deg);
	}
}

/* ttl
--------------------------------*/
.ttltype1{
	font-size: 3.9rem;
	color: #333333;
	text-align: center;
	font-weight: 500;
}
.ttltype1 span{
	display: inline-block;
	padding-bottom: 17px;
	border-bottom: 1px solid #00519f;
}
.ttltype1.white{
	color: #fff;
}
.ttltype1.white span{
	border-bottom-color: #fff;
}
.ttltype2{
	font-size: 2.4rem;
	line-height: 1.42;
	color: #00519f;
	font-weight: 700;
	letter-spacing: .04em;
}
.ttltype3{
	font-size: 2rem;
	line-height: 1.3;
	color: #00519f;
	font-weight: 700;
	letter-spacing: .02em;
}
.ttltype3.gray{
	color: #333333;
}
.ttltype4{
	font-size: 2.2rem;
	line-height: 1.545;
	color: #fff;
	font-weight: 700;
	letter-spacing: .02em;
}
.ttltype5{
	font-size: 3.6rem;
	line-height: 1.55;
	color: #fff;
	font-weight: 500;
	letter-spacing: .12em;
}
@media screen and (max-width: 768px) {
	.ttltype1{
		font-size: 10.2vw;
		line-height: 1.24;
	}
	.ttltype1 span{
		padding-bottom: 3vw;
		border-bottom-width: .3vw;
	}
	.ttltype2{
		font-size: 6.4vw;
		text-align: center;
	}
	.ttltype3{
		font-size: 5.4vw;
	}
	.ttltype4{
		font-size: 5.9vw;
	}
	.ttltype5{
		font-size: 9.6vw;
		text-align: center;
		line-height: 1.2;
	}
}

/* btn
--------------------------------*/
.btntype1{
	font-size: 1.8rem;
	width: 240px;
	padding: 9px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 25px;
	transition: .3s;
	overflow: hidden;
	position: relative;
	background: #fff;
}
.btntype1::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 1px solid #cecece;
	border-radius: 25px;
	transition: .3s;
}
.btntype1::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: #2bd9c2;
	transition: .3s;
	z-index: 1;
}
.btntype1 .arrow{
	padding-right: 25px;
	display: inline-block;
	position: relative;
	z-index: 1;
}
.btntype1 .arrow::before,
.btntype1 .arrow::after{
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 16px;
	height: 12px;
	background: url(../img/btn_arrow.png) no-repeat center center /contain;
	transition: .3s;
	margin-top: 1px;
}
.btntype1 .arrow::after{
	background-image: url(../img/btn_arrow_w.png);
	opacity: 0;
}
.btntype1:hover{
	color: #fff;
}
.btntype1:hover::before{
	width: 100%;
}
.btntype1:hover .arrow::before{
	opacity: 0;
}
.btntype1:hover .arrow::after{
	opacity: 1;
}
.btntype2{
	padding: 10px 40px 10px 20px;
	display: block;
	position: relative;
	overflow: hidden;
}
.btntype2::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: #2bd9c2;
	transition: .3s;
}
.btntype2 .arrow{
	display: block;
	position: relative;
}
.btntype2 .arrow::before,
.btntype2 .arrow::after{
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 16px;
	height: 12px;
	background: url(../img/btn_arrow.png) no-repeat center center /contain;
	transition: .3s;
}
.btntype2 .arrow::after{
	background-image: url(../img/btn_arrow_w.png);
	opacity: 0;
}
.btntype2:hover::before{
	width: 100%;
}
.btntype2:hover .arrow::before{
	opacity: 0;
}
.btntype2:hover .arrow::after{
	opacity: 1;
}
@media screen and (max-width: 768px) {
	.btntype1{
		font-size: 4.8vw;
		width: 63.8vw;
		padding: 2.3vw 0;
		border-width: .3vw;
		border-radius: 10vw;
		margin: 0 auto;
	}
	.btntype1::after{
		border-radius: 10vw;
	}
	.btntype1 .arrow{
		padding-right: 5.5vw;
	}
	.btntype1 .arrow::before,
	.btntype1 .arrow::after{
		width: 4.5vw;
		height: 5vw;
	}
	.btntype2{
		padding: 6% 4%;
	}
	.btntype2 .arrow::before,
	.btntype2 .arrow::after{
		width: 4.5vw;
		height: 5vw;
	}
}

/* main_visual
--------------------------------*/
.main_visual{
	width: 100%;
	background: url(../img/mv_bg_pc.jpg) no-repeat center center /cover;
}
.main_visual .wrap{
	height: 480px;
	padding: 0 50px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.main_visual .textarea{
	max-width: 420px;
	width: 100%;
}
.main_visual .ttl{
	font-size: 2rem;
	letter-spacing: .12rem;
	font-weight: 700;
}
.main_visual .ttl_text{
	display: block;
}
.main_visual .ttl_logo{
	max-width: 346px;
	width: 100%;
	margin-top: 15px;
	display: block;
}
.main_visual .text{
	margin-top: 34px;
}
@media screen and (max-width: 768px) {
	.main_visual{
		background-image: url(../img/mv_bg_sp.jpg) ;
	}
	.main_visual .wrap{
		height: 129.5vw;
		padding: 0;
	}
	.main_visual .textarea{
		max-width: 100%;
		width: 100%;
	}
	.main_visual .ttl{
		font-size: 5vw;
		line-height: 1.52;
		text-align: center;
	}
	.main_visual .ttl_text{
		display: block;
	}
	.main_visual .ttl_logo{
		width: 60.7vw;
		max-width: 100%;
		margin: 3.6% auto 0;
	}
	.main_visual .text{
		display: flex;
		justify-content: center;
		margin-top: 10%;
	}
}

/* top_news
--------------------------------*/
.top_news{
	padding: 100px 0;
}
.top_news .list{
	margin-top: 55px;
	padding-right: 47px;
	height: 265px;
	position: relative;
	overflow-y: scroll;
}
.top_news .list li{
	padding: 0 0 25px;
	margin-top: 25px;
	border-bottom: 1px solid #d9dcdd;
}
.top_news .list li a{
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}
.top_news .list li:first-child{
	margin-top: 0;
}
.top_news .list_info{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.top_news .list_date{
	font-size: 1.2rem;
	letter-spacing: .02em;
	color: #666666;
	width: 95px;
	transition: .3s;
}
.top_news .list_category{
	font-size: 1.2rem;
	letter-spacing: .02em;
	color: #00519f;
	width: 110px;
	transition: .3s;
}
.top_news .list_text{
	width: calc(100% - 95px - 110px);
	font-size: 1.4rem;
}
.top_news .list_text .line{
	transition: .3s;
	border-bottom: 1px solid transparent;
}
.top_news .list li a:hover .list_date,
.top_news .list li a:hover .list_category,
.top_news .list li a:hover .list_text{
	color: #2bd9c2;
}
.top_news .list a:hover .list_text .line{
	border-bottom-color: #2bd9c2;
}
@media screen and (max-width: 768px) {
	.top_news{
		padding: 14.8% 0;
	}
	.top_news .list{
		margin-top: 20.2%;
		margin-right: -6vw;
		padding-right: 6vw;
		height: 108vw;
		-webkit-overflow-scrolling: touch;
	}
	.top_news .list::-webkit-scrollbar{
		width: 2.7vw;
	}
	.top_news .list::-webkit-scrollbar-track{
		background: #e5e5e5;
	}
	.top_news .list::-webkit-scrollbar-thumb{
		background: #cecece;
	}
	.top_news .list li{
		display: block;
		padding: 0 0 6.5%;
		margin-top: 6.5%;
		border-bottom-width: .3vw;
		width: 100%;
	}
	.top_news .list li a{
		display: block;
	}
	.top_news .list_date{
		font-size: 3.2vw;
		width: auto;
		margin-right: 1em;
	}
	.top_news .list_category{
		font-size: 3.2vw;
		width: auto;
	}
	.top_news .list_text{
		width: 100%;
		margin-top: 1%;
	}
	.top_news .list_text,
	.top_news .list_text a{
		font-size: 3.7vw;
	}
}

/* top_about
--------------------------------*/
.top_about{
	padding: 60px 0;
}
.top_about .wrap{
	display: flex;
	justify-content: center;
	align-items: center;
}
.top_about .logo{
	width: 138px;
	margin-right: 37px;
}
.top_about .text{
	width: 505px;
}
@media screen and (max-width: 768px) {
	.top_about{
		padding: 14% 0;
	}
	.top_about .wrap{
		display: block;
	}
	.top_about .logo{
		width: 28vw;
		margin: 0 auto;
	}
	.top_about .text{
		font-size: 4.3vw;
		width: 100%;
		margin-top: 5.9%;
	}
}

/* top_can
--------------------------------*/
.top_can{
	padding: 100px 0;
}
.top_can .box{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 70px;
}
.top_can .box_textarea{
	width: 416px;
	padding: 50px 47px;
	background: #fff;
}
.top_can .box_text{
	margin-top: 18px;
}
.top_can .box_text .small{
	display: block;
	font-size: 1.2rem;
	letter-spacing: 0.14em;
	margin-top: 5px;
}
.top_can .box.reverse{
	flex-direction: row-reverse;
}
.top_can .box:fisrt-child{
	margin-top: 60px;
}
.top_can .box01{
	align-items: center;
}
.top_can .box01 .box_textarea{
	padding-top: 57px;
	padding-bottom: 60px;
}
.top_can .box01 .box_img img{
	width: 385px;
	max-width: 100%;
}
.top_can .box02 .box_img img{
	width: 417px;
	max-width: 100%;
}
@media screen and (max-width: 768px) {
	.top_can{
		padding: 18.9% 0;
	}
	.top_can .box{
		display: block;
		width: 114%;
		margin: 24.5% 0 0 -7%;
	}
	.top_can .box_textarea{
		width: 100%;
		padding: 13% 2% 14%;
	}
	.top_can .box_text{
		font-size: 4.3vw;
		width: 77.4%;
		margin: 6.5% auto 0;
	}
	.top_can .box_text .small{
		font-size: 3.2vw;
		letter-spacing: .12em;
		margin-top: 1.5vw;
	}
	.top_can .box.reverse{
		flex-direction: row-reverse;
	}
	.top_can .box_img{
		width: 81%;
		margin: 10% auto 0;
	}
	.top_can .box01{
		align-items: center;
		margin-top: 16%;
	}
	.top_can .box01 .box_textarea{
		padding-top: 13%;
		padding-bottom: 14%;
	}
	.top_can .box01 .box_img img{
		width: 100%;
		max-width: 100%;
	}
	.top_can .box02 .box_img{
		width: 86%;
	}
	.top_can .box02 .box_img img{
		width: 100%;
		max-width: 100%;
	}
}

/* top_can2
--------------------------------*/
.top_can2{
	padding: 70px 0 96px;
}
.top_can2 .list{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.top_can2 .list li{
	width: 33.333%;
	border-right: 1px solid #cfdae2;
}
.top_can2 .list li:last-child{
	border-right: 0;
}
.top_can2 .list_inner{
	max-width: 210px;
	width: 90%;
	margin: 0 auto;
}
.top_can2 .list_img{
	text-align: center;
	height: 107px
}
.top_can2 .list_img img{
	width: 76px;
}
.top_can2 .li03 .list_img img{
	width: 67px;
}
.top_can2 .list_textarea{
	margin-top: 30px;
}
.top_can2 .list_ttl{
	text-align: center;
}
.top_can2 .list_text{
	font-size: 1.4rem;
	line-height: 1.57;
	margin-top: 10px;
}
@media screen and (max-width: 768px) {
	.top_can2{
		padding: 17.5% 0;
	}
	.top_can2 .list{
		display: block;
	}
	.top_can2 .list li{
		max-width: 100%;
		width: 100%;
		padding: 14.5% 0;
		border-right: 0;
		border-bottom: .3vw solid #cfdae2;
	}
	.top_can2 .list li:first-child{
		padding-top: 0;
	}
	.top_can2 .list li:last-child{
		padding-bottom: 0;
		border-bottom: 0;
	}
	.top_can2 .list_inner{
		max-width: 100%;
		width: 100%;
	}
	.top_can2 .list_img{
		width: 32.5%;
		height: auto;
		margin: 0 auto;
	}
	.top_can2 .list_img img{
		width: 100%;
	}
	.top_can2 .li03 .list_img img{
		width: 100%;
	}
	.top_can2 .list_textarea{
		margin: 9.2% auto 0;
		width: 84.5%;
	}
	.top_can2 .list_text{
		font-size: 3.7vw;
		margin-top: 5%;
	}
}

/* top_feature
--------------------------------*/
.top_feature{
	padding: 100px 0;
	background: url(../img/feature_bg_pc.jpg) repeat-x center center /cover;
}
.top_feature .list{
	display: flex;
	justify-content: space-around;
	margin-top: 18px;
}
.top_feature .list li{
	width: 268px;
}
.top_feature .list_img{
	width: 268px;
	height: 268px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 50%;
}
.top_feature .list_img img{
	width: 188px;
}
.top_feature .list_item01 .list_img img{
	width: 131px;
}
.top_feature .list_textarea{
	margin-top: 25px;
}
.top_feature .list_text{
	margin-top: 25px;
}
@media screen and (max-width: 768px) {
	.top_feature{
		padding: 20% 0;
		background-image: url(../img/feature_bg_sp.jpg);
	}
	.top_feature .list{
		display: block;
		margin-top: 16.5%;
	}
	.top_feature .list li{
		width: auto;
		margin-top: 14.5%;
	}
	.top_feature .list li:first-child{
		margin-top: 0;
	}
	.top_feature .list_img{
		width: 69.5vw;
		height: 69.5vw;
		margin: 0 auto;
	}
	.top_feature .list_img img{
		width: 64%;
	}
	.top_feature .list_item01 .list_img img{
		width: 48%;
	}
	.top_feature .list_textarea{
		margin-top: 10%;
	}
	.top_feature .list_text{
		font-size: 4.3vw;
		margin-top: 6.8%;
	}
}

/* top_case
--------------------------------*/
.top_case{
	padding: 100px 0;
}
.top_case .box{
	margin-top: 60px;
	box-shadow: 0px 5px 10px rgba(197,210,217,.4);
}
.top_case .box a{
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #fff;
	transition: .3s;
	position: relative;
}
.top_case .box a::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: #2bd9c2;
	transition: .3s;
}
.top_case .box_textarea{
	padding: 10px 10px 10px 60px;
}
.top_case .box_ttl{
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.36;
	padding-left: 70px;
	position: relative;
	transition: .7s;
}
.top_case .box_ttl .btn{
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 51px;
	height: 51px;
	border: 1px solid #cecece;
	border-radius: 50%;
	overflow: hidden;
	background: #fff;
}
.top_case .box_ttl .btn::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #2bd9c2;
	opacity: 0;
	transition: .3s;
}
.top_case .box_ttl .btn .arrow{
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	display: block;
}
.top_case .box_ttl .btn .arrow::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 16px;
	height: 12px;
	background: url(../img/btn_arrow.png) no-repeat center center /contain;
	transition: .3s;
}
.top_case .box_img{
	padding: 8px 0 0;
	background: #fff6f8;
	position: relative;
	z-index: 1;
}
.top_case .box a:hover .box_ttl{
	color: #fff;
	transition: .3s;
}
.top_case .box a:hover::before{
	width: 100%;
}
@media screen and (max-width: 768px) {
	.top_case{
		padding: 17.8% 0 17.8%;
	}
	.top_case .box{
		width: 114%;
		margin: 16.3% 0 0 -7%;
		box-shadow: none;
	}
	.top_case .box a{
		display: block;
	}
	.top_case .box_textarea{
		padding: 7% 3%;
		display: flex;
		justify-content: center;
	}
	.top_case .box_ttl{
		font-size: 5.9vw;
		padding-left: 17vw;
	}
	.top_case .box_ttl::before{
		width: 13.4vw;
		height: 13.4vw;
		border-width: .3vw;
		background-size: 4.5vw auto;
	}
	.top_case .box_img{
		padding: 0;
	}
}

/* modal
--------------------------------*/
.modal_layer{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.7);
	z-index: 100;
	display: none;
	overflow-y: scroll;
}
.modal_block{
	position: absolute;
	width: 880px;
	top: 0;
	right: 50%;
	padding: 65px 0;
	transform: translate(50%, 0);
	display: none;
}
.modal_inner{
	height: 100%;
	position: relative;
}
.modal_close{
	width: 80px;
	height: 80px;
	position: fixed;
	top: 50px;
	right: -800px;
	left: 0;
	margin: 0 auto;
	cursor: pointer;
	transition: .3s;
	z-index: 1;
}
.modal_close::before,
.modal_close::after{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 1px;
	background: #fff;
	transition: .3s;
}
.modal_close::before{
	transform: translate(-50%,-50%) rotate(45deg);
}
.modal_close::after{
	transform: translate(-50%,-50%) rotate(-45deg);
}
.modal_close:hover::before,
.modal_close:hover::after{
	background: #2bd9c2;
}
.top_case2 .ttltype1.white span{
	border-bottom-color: #00519f;
}
.top_case2 .box{
	padding: 65px 0 0;
	background: #fff;
	margin-top: 50px;
}
.top_case2 .box_flex{
	display: flex;
	justify-content: space-between;
	margin-top: 60px;
	padding: 0 50px 65px;
}
.top_case2 .box_img{
	max-width: 368px;
	width: 48%;
}
.top_case2 .box_textarea{
	max-width: 368px;
	width: 48%;
}
.top_case2 .box_textarea p+p{
	margin-top: 35px;
}
.top_case2 .box_textarea .btnarea{
	padding: 25px 10px;
	background: #f6f6f6;
	margin-top: 30px;
}
.top_case2 .box_textarea .btn{
	margin-top: 10px;
}
.top_case2 .box_textarea .btn a{
	font-size: 1.6rem;
	margin: 0 auto;
}
.top_case2 .box_relation{
	background: #f6f6f6;
	padding: 40px 50px 60px;
}
.top_case2 .box_btn{
	margin-top: 25px;
}
.top_case2 .box_btn li{
	border-top: 1px solid #b7b7b7;
}
.top_case2 .box_btn li:last-child{
	border-bottom: 1px solid #b7b7b7;
}
@media screen and (max-width: 768px) {
	.modal_block{
		width: 90%;
		padding: 5.5vw 0;
	}
	.modal_inner{
		margin-top: 13vw;
		max-height: calc(100% - 13vw);
		overflow-y: auto;
	}
	.modal_close{
		width: 15.6vw;
		height: 15.6vw;
		position: fixed;
		top: 5vw;
		right: -78vw;
	}
	.modal_close::before,
	.modal_close::after{
		width: 100%;
		height: .3vw;
	}
	.top_case2 .box{
		padding: 12% 0 0;
		margin-top: 13.5%;
		max-height: initial;
		overflow: visible;
	}
	.top_case2 .box_flex{
		display: block;
		margin-top: 8%;
		padding: 0 12% 12%;
	}
	.top_case2 .box_img{
		max-width: 100%;
		width: 100%;
	}
	.top_case2 .box_textarea{
		max-width: 100%;
		width: 100%;
		margin-top: 12%;
	}
	.top_case2 .box_textarea p{
		font-size: 4.3vw;
		letter-spacing: .02em;
	}
	.top_case2 .box_textarea p+p{
		margin-top: 14%;
	}
	.top_case2 .box_textarea .btn{
		margin-top: 5%;
	}
	.top_case2 .box_textarea .btn a{
		font-size: 4.3vw;
	}
	.top_case2 .box_textarea .btnarea{
		padding: 9% 3%;
		margin-top: 14%;
		width: 118%;
		margin-left: -9%;
	}
	.top_case2 .box_textarea .btn{
		margin-top: 10px;
	}
	.top_case2 .box_textarea .btn a{
		font-size: 4.2vw;
		margin: 0 auto;
	}
	.top_case2 .box_relation{
		padding: 10.5% 6% 15%;
	}
	.top_case2 .box_btn{
		margin-top: 6%;
	}
	.top_case2 .box_btn li{
		border-top-width: .3vw;
	}
	.top_case2 .box_btn li:last-child{
		border-bottom-width: .3vw;
	}
}

/* top_mission
--------------------------------*/
.top_mission{
	padding: 60px 0 60px;
	background: url(../img/mission_bg.jpg) no-repeat center center /cover;
}
.top_mission .text{
	letter-spacing: .12em;
	margin-top: 5px;
}
.top_mission .text_small{
	font-size: 1rem;
	display: block;
	margin-top: 15px;
}
@media screen and (max-width: 768px) {
	.top_mission{
		padding: 16% 0 0;
		background: #48575c;
	}
	.top_mission .textarea{
		padding-bottom: 18%;
	}
	.top_mission .text{
		font-size: 5.3vw;
		letter-spacing: .1em;
		text-align: center;
		margin-top: 5.8%;
	}
	.top_mission .text_small{
		font-size: 3.2vw;
		margin-top: 3%;
	}
}

/* top_mission
--------------------------------*/
.top_contact{
	padding: 75px 0 80px;
}
.top_contact .text{
	font-size: 2.4rem;
	color: #241815;
	text-align: center;
}
.top_contact .text_logo{
	width: 104px;
	margin: 0 5px 0 0;
	vertical-align: unset;
}
.top_contact .btnarea{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 22px;
}
.top_contact .btnarea li{
	margin: 0 10px;
}
@media screen and (max-width: 768px) {
	.top_contact{
		padding: 14% 0 21.5%;
	}
	.top_contact .text{
		font-size: 6.4vw;
	}
	.top_contact .text_logo{
		width: 25.2vw;
		margin: 0 2vw 0 0;
	}
	.top_contact .btnarea{
		display: block;
		margin-top: 12.2%;
	}
	.top_contact .btnarea li{
		margin: 0;
	}
	.top_contact .btnarea li+li{
		margin-top: 10%;
	}
}


/* ---------------------------------------------
  footer
-----------------------------------------------*/
.topbtn{
	display: none;
	position: fixed;
	width: 50px;
	height: 50px;
	right: 25px;
}
.topbtn a{
	width: 100%;
	height: 100%;
	display: block;
	background: #fff;
	border: 1px solid #b9c3ca;
	border-radius: 50%;
	position: relative;
	overflow: hidden;
	transition: .3s;
}
.topbtn a::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #2bd9c2;
	opacity: 0;
	transition: .3s;
}
.topbtn .arrow{
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
}
.topbtn .arrow::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 15px;
	height: 15px;
	margin-top: 4px;
	border-top: 2px solid #b9c3ca;
	border-left: 2px solid #b9c3ca;
	transform: translate(-50%,-50%) rotate(45deg);
	transition: .3s;
}
.topbtn a:hover{
	border-color: #2bd9c2;
}
.topbtn a:hover::before{
	opacity: 1;
}
.topbtn a:hover .arrow::before{
	border-top-color: #fff;
	border-left-color: #fff;
}
footer{
	position: relative;
	padding: 27px 0 34px;
	border-top: 1px solid #dddddd;
}
footer .wrap{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
footer .logo a{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
footer .logo_img{
	width: 116px;
}
footer .info{
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
footer .info .footer_nav ul{
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
footer .info .footer_nav li{
	line-height: 1;
	margin-left: 30px;
}
footer .info .footer_nav li a{
	font-size: 1.2rem;
	line-height: 1.35;
	display: inline-block;
	padding: 3px 0;
	transition: .3s;
	position: relative;
}
footer .info .footer_nav li a::before,
footer .info .footer_nav li a::after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: #2bd9c2;
	transition: .3s;
}
footer .info .footer_nav li a::before{
	z-index: 1;
}
footer .info .footer_nav li a::after{
	width: 100%;
	background: #a3a3a3;
}
footer .info .footer_nav li a:hover{
	color: #2bd9c2;
}
footer .info .footer_nav li a:hover::before{
	width: 100%;
}
footer .info .copyright{
	line-height: 1;
	font-size: 1.2rem;
	margin-left: 45px;
	color: #241815;
}
@media screen and (max-width: 768px) {
	.topbtn{
		right: 4vw;
		width: 13.4vw;
		height: 13.4vw;
	}
	.topbtn a{
		border-width: .3vw;
	}
	.topbtn .arrow::before{
		width: 4vw;
		height: 4vw;
		margin-top: 1vw;
		border-top-width: .5vw;
		border-left-width: .5vw;
	}
	footer{
		padding: 18% 0;
		border-top-width: .3vw;
	}
	footer .wrap{
		display: block;
	}
	footer .logo a{
		display: flex;
		justify-content: center;
		align-items: center;
	}
	footer .logo_img{
		width: 30.3vw;
	}
	footer .info{
		display: block;
	}
	footer .info .footer_nav ul{
		display: block;
		margin-top: 11.4%;
	}
	footer .info .footer_nav li{
		text-align: center;
		margin-left: 0;
	}
	footer .info .footer_nav li+li{
		margin-top: 3.8%;
	}
	footer .info .footer_nav li a{
		font-size: 3.2vw;
		border-bottom-width: .3vw;
	}
	footer .info .copyright{
		font-size: 3.2vw;
		text-align: center;
		margin: 19.7% 0 0;
	}
}

/* ---------------------------------------------
  animation
-----------------------------------------------*/

/* フェードアップ
--------------------------------*/
.animetion-fadeup{
	opacity: 0;
	transform: translate(0, 40px);
	transition-duration: 0s;
}
.animetion-fadeup.active{
	opacity: 1;
	transform: translate(0, 0);
	transition-duration: .8s;
}


/* ------------------------------
    clearfix
------------------------------ */

.cf:after{
  content: ".";
  display: block;
  height: 0;
  font-size:0;
  clear: both;
  visibility:hidden;
}

.cf {display: inline-block;}

/* Hides from IE Mac */
* html .cf {height: 1%;}
.cf {display:block;}
/* End Hack */


/* temrs */
.terms section {
  margin-top: 80px;
  margin-bottom: 100px;
}
.terms h1 {
  font-size: 3rem;
  margin-bottom: 3rem;
}
.terms h2 {
  margin-top: 1rem;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: bold;
}
.terms .clause {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.terms p {
  line-height: 1.5;
}
.terms ol {
  list-style-type: decimal;
  margin-top: 1rem;
}

.terms li {
  list-style-type: decimal;
  margin-left: 3rem;
}

@media screen and (max-width: 768px) {
	.terms h2 {
		font-size: 3.7vw;
	}
}


