@charset "UTF-8";
/* 全端末共通
-------------------------------------------------- */
body, html {
	color: #333;
	line-height: 1.7;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
}
li{
	list-style: none;
}

.subnav_pc {
	margin-right: 10px;
	text-align: center;
}
.min{
	font-family: 'Noto Serif JP', serif;
}
img{
	max-width: 100%;
	height: auto;
}
.tbl01{
	width: 100%;
	font-size: 12px;
}
.tbl01 thead th{
	background: #5050AA;
	padding: 7px 5px;
	text-align: center;
	color: #fff;
	border: 1px solid #cfcfcf;
}
.tbl01 tbody th{
	border: 1px solid #cfcfcf;
	background: #f0f0ff;
	padding: 7px 10px;
	text-align: left;
}
.tbl01 tbody td{
	border: 1px solid #cfcfcf;
	padding: 7px 10px;
}
.tbl01 tbody tr:nth-child(2n-1) td{
	background: #FAFAFA;
}

i{
	font-style: normal;
}
.disable01{
	pointer-events: none;
	opacity: .5;
	cursor: default;
}
.disable02{
	pointer-events: none;
	cursor: default;
	position: relative;
	display: block;
}
.disable02:after{
	content: "Coming Soon";
	display: -webkit-flex; /* Safari用 */
	display: flex;
	-webkit-justify-content: center; /* Safari用 */
	justify-content: center;
	-webkit-align-items: center; /* Safari用 */
	align-items: center;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0,0,0,.4);
	color: #fff;

}
.bnr_recruit .disable02:after{
	font-size: 200%;
}

.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.clearfix:after {
	content: "";
	clear: both;
	display: block;
}
.float-left {
	float: left;
}
.float-right {
	float: right;
}
/* スマフォ
-------------------------------------------------- */
@media only screen and (max-width: 767px) {
	html , body{
		font-size: 4.375vw;
	}
	#wrapper{
		width: 100vw;
		overflow: hidden;
	}
	.pc{
		display: none!important;
	}
	img{
		max-width: 100%;
		height: auto;
	}
	.gnav_pc{
		display: none;
	}
	.inner{
		padding: 0 4vw;
	}
	.fix_head{
		display: none;
	}
	header{
		height: calc(100/640*100vw);
		background: #fff;
		position: relative;
	}
	header h1{
		width: calc(276/640*100vw);
		position: absolute;
		left: calc(18/640*100vw);
		top: calc(27/640*100vw);
	}
	.icn_tel{
		position: absolute;
		width: calc(46/640*100vw);
		right: calc(200/640*100vw);
		top: calc(26/640*100vw);
	}
	.icn_tel a {
		position: relative;
	}
	.icn_tel a:after {
		position: absolute;
		content: '';
		width: calc(2/640*100vw);
		height: calc(44/640*100vw);
		background: #CECECE;
		right: calc(-14/640*100vw);
		top: 0;
	}
	.icn_mail{
		position: absolute;
		width: calc(46/640*100vw);
		right: calc(110/640*100vw);
		top: calc(25/640*100vw);
	}
	.navbar_toggle{
		z-index:9999;
		position: absolute;
		top: calc((100/640*100vw - 22px)/2);
		right: 4vw;
	}
	.navbar_toggle_icon {
		position: relative;
		display: block;
		height: 2px;
		width: 30px;
		background: #32339F;
		-webkit-transition: ease .5s;
		transition: ease .5s;
	}
	.navbar_toggle_icon:nth-child(1) {
		top: 0;
	}
	.navbar_toggle_icon:nth-child(2) {
		margin: 8px 0;
	}
	.navbar_toggle_icon:nth-child(3) {
		top: 0;
	}
	/*OPEN時の動き*/
	.navbar_toggle.open .navbar_toggle_icon:nth-child(1) {
		top: 10px;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.navbar_toggle.open .navbar_toggle_icon:nth-child(2) {
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		opacity: 0;
	}
	.navbar_toggle.open .navbar_toggle_icon:nth-child(3) {
		top: -10px;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.menu{
		position: absolute;
		top: calc(100/640*100vw);
		right: 0;
		width: calc(382/640*100vw);
		z-index:1000;
		background: #32339F;
		padding: 2vw 4vw 4vw;
	}
	.menu ul li a{
		color: #fff;
		display: block;
		padding: 3.5vw 0;
		border-bottom: 1px solid #fff;
		font-size: 3.475vw;
		padding-left: 5vw;
		position: relative;
	}
	.menu ul li a:before{
		content: "";
		/* display: inline-block; */
		display: block;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
		width: 2vw;
		height: 2vw;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		/* margin-right: 2vw; */
		/* position: relative; */
		position: absolute;
		top: 5vw;
		left: 0;
	}
	.menu ul li.dropdwn_menu_sp > a{
		border-bottom-style: dashed;
	}
	.menu ul li.dropdwn_menu_sp ul a:before{
		border-top: 1px solid #fff;
		border-right:none;
		border-left: 1px solid #fff;
		-webkit-transform: rotate(270deg);
		transform: rotate(270deg);
	}
	.foot_contact{
		background: url("../img/index/bg_contact.png") no-repeat center top;
		background-size: cover;
		color: #fff;
		padding: 12vw 0;
	}
	.catch_contact{
		color: #FFF35F;
		font-size: calc(30/640*100vw);
		margin-bottom: 5vw;
	}
	.foot_contact p{
		margin: 2vw 0 8vw;
	}
	.col_link_foot{
		display:-webkit-box;/*--- Androidブラウザ用 ---*/
		display:-ms-flexbox;/*--- IE10 ---*/
		display: -webkit-flex;/*--- safari（PC）用 ---*/
		display:flex;
		-webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
		-ms-flex-pack:justify;/*--- IE10 ---*/
		-webkit-justify-content:space-between;/*--- safari（PC）用 ---*/
		justify-content:space-between;
		padding: 10vw 0;
	}
	.col_link_foot ul{
		width: 49%;
	}
	.col_link_foot li{
		line-height: 1;
		margin-bottom: 4vw;
		padding-left: 15px;
		background: url("../img/common/icn_foot.png") no-repeat left top 3px;
	}
	.col_link_foot li a{
		color: inherit;
	}
	.col_info_foot{
		text-align: center;
		padding: 0 0 10vw;
	}
	.col_info_foot a{
		color: inherit;
	}
	.col_info_foot p{
		margin: 8vw 0;
	}
	.bnr_foot{
		display:-webkit-box;/*--- Androidブラウザ用 ---*/
		display:-ms-flexbox;/*--- IE10 ---*/
		display: -webkit-flex;/*--- safari（PC）用 ---*/
		display:flex;
		-webkit-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
	.bnr_foot span{
		display: block;
		margin-top: 2vw;

	}
	.copyright{
		text-align: center;
		padding-bottom: 2vw;
		font-size: 120%;
	}
	/* page */
	.main_sub{
		background: url("../img/page/bg_main.png") no-repeat 40% center;
		background-size: cover;
		height: 40vw;
		display: -webkit-flex; /* Safari用 */
		display: flex;
		-webkit-justify-content: center; /* Safari用 */
		justify-content: center;
		-webkit-align-items: center; /* Safari用 */
		align-items: center;
		color: #fff;
	}
	.main_sub h2{
		position: relative;
		text-align: center;
		padding-top: 6vw;
	}
	.main_sub h2:before{
		content: "";
		width: 2vw;
		height: 2vw;
		position: absolute;
		left: calc(50% - 2vw);
		top: 0;
		background: #fff;
	}
	.main_sub h2:after{
		content: "";
		width: 2vw;
		height: 2vw;
		position: absolute;
		left: 50%;
		top: 2vw;
		background: #fff;
	}
	.main_sub h2 span{
		display: block;
		font-size: 8.5vw;
		font-weight: 300;
		line-height: 1;
		letter-spacing: 0.07em;
	}
	.main_sub h2 small{
		display: block;
		font-size: 4.25vw;
		line-height: 1;
		margin-top: 2vw;
		font-weight: 300;
		letter-spacing: 0.07em;
	}
	.content_low section{
		padding: 12vw 0;
	}
	.content_low section h3{
		padding-top: 6vw;
		position: relative;
		margin-bottom: 7vw;
		text-align: center;
	}
	.content_low section h3:before{
		content: "";
		width: 2vw;
		height: 2vw;
		background: #32339F;
		position: absolute;
		top: 0;
		left: calc(50% - 2vw);
	}
	.content_low section h3:after{
		content: "";
		width: 2vw;
		height: 2vw;
		background: #32339F;
		position: absolute;
		top: 2vw;
		left: 50%;
	}
	.content_low section h3 span{
		display: block;
		font-size: 7.5vw;
		color: #32339F;
		font-weight: 300;
		line-height: 1;
	}
	.content_low section h3 small{
		color: #A7A7A7;
		display: block;
		font-size: 4.375vw;
		font-weight: 300;
		margin-top: 2vw;
		line-height: 1;
	}
	.content_low section.sec_bg{
		background: #F8F8F8;
	}
	.float-container .left,
	.float-container .right {
		width: auto;
	}
	.float-left, .float-right {
		float: none;
	}
	.hdg4{
		font-size: 160%;
		color: #32339F;
		font-weight: 400;
		padding-left: 4vw;
		margin-bottom: 4vw;
		position: relative;
		border-left: 3px solid #32339F;
		line-height: 8vw;
	}
	.tbl02,
	.tbl02 tbody,
	.tbl02 tr,
	.tbl02 th,
	.tbl02 td{
		display: block;
	}
	.tbl02 th{
		text-align: left;
		padding: 4vw 0 0;
	}
	.tbl02 td{
		border-bottom: 1px solid #cfcfcf;
		padding: 4vw 0;
	}
	.head {
		display: block;
		font-size: 7.5vw;
		color: #32339F;
		text-align: center;
		font-weight: 300;
		line-height: 1.4;
	}
	.btn-view {
		position: relative;
		border: 1px solid #32339F;
		display: block;
		text-align: center;
		width: auto;
		font-size: calc(32/640*100vw);
		padding: 5vw 10vw 5vw 5vw;
		color: #32339F;
		margin-top: 5vw;
	}
	.btn-view:after {
		position: absolute;
		content: '';
		background: url('../img/common/btn_arrow.svg') no-repeat center;
		background-size: contain;
		width: calc(30/640*100vw);
		height: calc(30/640*100vw);
		right: calc(20/640*100vw);
		top: 50%;
		transform: translateY(-50%);
	}
	.btn-w440 {
		display: block;
		text-align: center;
		width: auto;
		border: 1px solid #32339F;
		padding: 5.8vw 5vw 5.8vw 0;
		color: #32339F;
		margin: auto;
		font-size: calc(36/640*100vw);
		position: relative;
	}
	.btn-w440:after {
		position: absolute;
		content: '';
		background: url('../img/common/btn_arrow.svg') no-repeat center;
		background-size: contain;
		width: calc(30/640*100vw);
		height: calc(30/640*100vw);
		right: calc(40/640*100vw);
		top: 50%;
		transform: translateY(-50%);
	}
}
/* PC
-------------------------------------------------- */
@media only screen and (min-width: 768px) {
	html, body{
		font-size: 14px;
		height: 100%;
	}
	#wrapper{
		max-width: 1920px;
		min-width: 1280px;
		height: 100%;
		margin: 0 auto;
	}
	.inner{
		width: 940px;
		margin: 0 auto;
		position: relative;
	}
	.sp{
		display: none!important;
	}
	a:hover img{
		opacity: .75;
	}
	a.ro:hover img{
		opacity: 1;
	}
	.inner02{
		width: 1280px;
		margin: 0 auto;
	}
	header h1 img{
		width: 264px;
		height: auto;
	}
	.float-container .left,
	.float-container .right {
		width: 460px;
	}
	.row_head{
		height: 110px;
		background: #fff;
		display:-webkit-box;/*--- Androidブラウザ用 ---*/
		display:-ms-flexbox;/*--- IE10 ---*/
		display: -webkit-flex;/*--- safari（PC）用 ---*/
		display:flex;
		-webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
		-ms-flex-pack:justify;/*--- IE10 ---*/
		-webkit-justify-content:space-between;/*--- safari（PC）用 ---*/
		justify-content:space-between;
		-webkit-align-items: center; /* Safari用 */
		align-items: center;
	}
	.col_head01{
		width: 500px;
		padding-left: 40px;
		background: #fff;
		display:-webkit-box;/*--- Androidブラウザ用 ---*/
		display:-ms-flexbox;/*--- IE10 ---*/
		display: -webkit-flex;/*--- safari（PC）用 ---*/
		display:flex;
		-webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
		-ms-flex-pack:justify;/*--- IE10 ---*/
		-webkit-justify-content:space-between;/*--- safari（PC）用 ---*/
		justify-content:space-between;
		-webkit-align-items: center; /* Safari用 */
		align-items: center;
	}
	.col_head02{
		width: 680px;
		display:-webkit-box;/*--- Androidブラウザ用 ---*/
		display:-ms-flexbox;/*--- IE10 ---*/
		display: -webkit-flex;/*--- safari（PC）用 ---*/
		display:flex;
		-webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
		-ms-flex-pack:justify;/*--- IE10 ---*/
		-webkit-justify-content:space-between;/*--- safari（PC）用 ---*/
		justify-content:space-between;
		-webkit-align-items: center; /* Safari用 */
		align-items: center;
	}

	.btn_head a{
		display: block;
		background: url("../img/common/icn_mail_off.png") no-repeat center 28px #32339F;
		padding-top: 60px;
		width: 170px;
		height: 110px;
		text-align: center;
		color: #fff;
		font-weight: 500;
	}
	.btn_head a:hover{
		background: url("../img/common/icn_mail_on.png") no-repeat center 28px #E6E6E6;
		color: #32339F;
	}
	.contact_head01{
		width: 500px;
		display:-webkit-box;/*--- Androidブラウザ用 ---*/
		display:-ms-flexbox;/*--- IE10 ---*/
		display: -webkit-flex;/*--- safari（PC）用 ---*/
		display:flex;
		-webkit-justify-content: flex-end;/*--- safari（PC）用 ---*/
		justify-content: flex-end;
		-ms-flex-wrap:wrap;/*--- IE10用 ---*/
		-webkit-flex-wrap: wrap; /* Safari */
		flex-wrap:         wrap;
	}
	.contact_head01 ul{
		width: 380px;
		margin-right: 10px;
		display:-webkit-box;/*--- Androidブラウザ用 ---*/
		display:-ms-flexbox;/*--- IE10 ---*/
		display: -webkit-flex;/*--- safari（PC）用 ---*/
		display:flex;
		-webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
		-ms-flex-pack:justify;/*--- IE10 ---*/
		-webkit-justify-content:space-between;/*--- safari（PC）用 ---*/
		justify-content:space-between;
	}
	.contact_head01 ul li{
		position: relative;
	}
	.contact_head01 ul li:not(:last-child):after{
		content: "|";
		position: absolute;
		right: -20px;
		color: #333;
		top: -1px;
	}
	.contact_head01 ul li a{
		color: #32339F;
	}
	.contact_head01 ul li a:hover{
		text-decoration: underline;
	}
	.tel_fax{
		width: 600px;
		display:-webkit-box;/*--- Androidブラウザ用 ---*/
		display:-ms-flexbox;/*--- IE10 ---*/
		display: -webkit-flex;/*--- safari（PC）用 ---*/
		display:flex;
		-webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
		-ms-flex-pack:justify;/*--- IE10 ---*/
		-webkit-justify-content:space-between;/*--- safari（PC）用 ---*/
		justify-content:space-between;
		font-size: 25px;
		color: #32339F;
		font-weight: 500;
	}
	.tel_head{
		padding-left: 20px;
		width: 250px;
		background: url("../img/common/icn_tel.png") no-repeat left center;
	}
	.fax_head{
		padding-left: 25px;
		width: 231px;
		background: url("../img/common/icn_fax.png") no-repeat left center;
	}
	.gnav_pc{
		position: relative;
		z-index: 100;
	}
	.gnav_pc ul{
		position: absolute;
		width: 880px;
		top: 25px;
		left: calc(50% - 440px);
		display:-webkit-box;/*--- Androidブラウザ用 ---*/
		display:-ms-flexbox;/*--- IE10 ---*/
		display: -webkit-flex;/*--- safari（PC）用 ---*/
		display:flex;
		-webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
		-ms-flex-pack:justify;/*--- IE10 ---*/
		-webkit-justify-content:space-between;/*--- safari（PC）用 ---*/
		justify-content:space-between;
	}
	.gnav_pc ul a{
		font-size: 16px;
		line-height: 1.4;
		display: block;
		font-weight: 600;
		color: #fff;
		text-shadow: 0 0 6px #000;
	}
	.gnav_pc ul a:hover{
		color: #C7C7C7;
	}
	.foot_contact{
		background: url("../img/index/bg_contact.png") no-repeat center top;
		height: 440px;
		padding-top: 90px;
		color: #fff;
	}
	.catch_contact{
		color: #FFF35F;
		text-align: center;
		font-size: 28px;
		line-height: 42px;
	}
	.row_contact{
		display:-webkit-box;/*--- Androidブラウザ用 ---*/
		display:-ms-flexbox;/*--- IE10 ---*/
		display: -webkit-flex;/*--- safari（PC）用 ---*/
		display:flex;
		-webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
		-ms-flex-pack:justify;/*--- IE10 ---*/
		-webkit-justify-content:space-between;/*--- safari（PC）用 ---*/
		justify-content:space-between;
		margin-top: 60px;
	}
	.tel_contact{
		font-size: 53px;
		line-height: 1;
		font-weight: 500;
	}
	.tel_contact i{
		margin-right: 10px;
		position: relative;
		top: -2px;
	}
	.col_tel p{
		margin: 5px 0 0 40px;
	}
	.fax_contact{
		font-size: 32px;
		font-weight: 500;
	}
	.fax_contact i{
		margin-right: 13px;
		position: relative;
		top: -2px;
		left: 2px;
	}
	.row_foot{
		padding: 60px 0 20px;
		display:-webkit-box;/*--- Androidブラウザ用 ---*/
		display:-ms-flexbox;/*--- IE10 ---*/
		display: -webkit-flex;/*--- safari（PC）用 ---*/
		display:flex;
		-webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
		-ms-flex-pack:justify;/*--- IE10 ---*/
		-webkit-justify-content:space-between;/*--- safari（PC）用 ---*/
		justify-content:space-between;
	}
	.col_info_foot p{
		margin: 15px 0 50px;
	}
	.col_info_foot a{
		margin-left: 10px;
	}
	.col_link_foot{
		width: 420px;
		display:-webkit-box;/*--- Androidブラウザ用 ---*/
		display:-ms-flexbox;/*--- IE10 ---*/
		display: -webkit-flex;/*--- safari（PC）用 ---*/
		display:flex;
		-webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
		-ms-flex-pack:justify;/*--- IE10 ---*/
		-webkit-justify-content:space-between;/*--- safari（PC）用 ---*/
		justify-content:space-between;
	}
	.col_link_foot li{
		line-height: 1;
		margin-bottom: 20px;
		padding-left: 15px;
		background: url("../img/common/icn_foot.png") no-repeat left top 3px;
	}
	.col_link_foot li a{
		color: inherit;
	}
	.col_link_foot li a:hover{
		text-decoration: underline;
	}
	.copyright{
		width: 940px;
		margin: 0 auto;
		padding-bottom: 30px;
		text-align: right;
	}
	.copyright small{
		font-size: 14px;
	}
	.fix_head{
		position: fixed;
		z-index: 9999;
		width: 100%;
		top: 0;
		left: 0;
		height: 90px;
		background: rgba(255,255,255,.9);
	}
	.logo_fix{
		padding-left: 40px;
	}
	.logo_fix img{
		width: 200px;
	}
	.fix_head .inner02{
		display:-webkit-box;/*--- Androidブラウザ用 ---*/
		display:-ms-flexbox;/*--- IE10 ---*/
		display: -webkit-flex;/*--- safari（PC）用 ---*/
		display:flex;
		-webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
		-ms-flex-pack:justify;/*--- IE10 ---*/
		-webkit-justify-content:space-between;/*--- safari（PC）用 ---*/
		justify-content:space-between;
		-webkit-align-items: center; /* Safari用 */
		align-items: center;
	}
	.fix_head .btn_head a{
		height: 90px;
		background-position: center 22px ;
		padding-top: 50px;
	}
	.fix_head ul{
		width: 750px;
		display:-webkit-box;/*--- Androidブラウザ用 ---*/
		display:-ms-flexbox;/*--- IE10 ---*/
		display: -webkit-flex;/*--- safari（PC）用 ---*/
		display:flex;
		-webkit-box-pack:justify;/*--- Androidブラウザ用 ---*/
		-ms-flex-pack:justify;/*--- IE10 ---*/
		-webkit-justify-content:space-between;/*--- safari（PC）用 ---*/
		justify-content:space-between;
	}
	.fix_head ul li a{
		color: inherit;
		display: block;
		padding: 3px 0;
		border-bottom: 2px solid transparent;
	}
	.fix_head ul li a:hover{
		border-bottom: 2px solid #32339F;
	}
	/* page */
	.main_sub{
		background: url("../img/page/bg_main.png") no-repeat center center;
		height: 424px;
		padding-top: 156px;
		color: #fff;
	}
	.main_sub h2{
		position: relative;
		text-align: center;
		padding-top: 45px;
	}
	.main_sub h2:before{
		content: "";
		width: 12px;
		height: 12px;
		position: absolute;
		left: calc(50% - 12px);
		top: 0;
		background: #fff;
	}
	.main_sub h2:after{
		content: "";
		width: 12px;
		height: 12px;
		position: absolute;
		left: 50%;
		top: 12px;
		background: #fff;
	}
	.main_sub h2 span{
		display: block;
		font-size: 56px;
		font-weight: 300;
		line-height: 1;
	}
	.main_sub h2 small{
		display: block;
		font-size: 23px;
		line-height: 1;
		margin-top: 23px;
		font-weight: 300;
		letter-spacing: 0.07em;
	}
	.content_low section{
		padding: 90px 0 100px;
	}
	.content_low section h3{
		padding-top: 30px;
		position: relative;
		margin-bottom: 70px;
		text-align: center;
	}
	.content_low section h3:before{
		content: "";
		width: 10px;
		height: 10px;
		background: #32339F;
		position: absolute;
		top: 0;
		left: calc(50% - 10px);
	}
	.content_low section h3:after{
		content: "";
		width: 10px;
		height: 10px;
		background: #32339F;
		position: absolute;
		top: 10px;
		left: 50%;
	}
	.content_low section h3 span{
		display: block;
		font-size: 46px;
		color: #32339F;
		font-weight: 300;
		line-height: 1;
	}
	.content_low section h3 small{
		color: #A7A7A7;
		display: block;
		font-size: 20px;
		font-weight: 300;
		margin-top: 15px;
		line-height: 1;
	}
	.content_low section.sec_bg{
		background: #F8F8F8;
	}
	.hdg4{
		position: relative;
		font-size: 28px;
		color: #32339F;
		font-weight: 400;
		padding-left: 15px;
		line-height: 1;
		margin-bottom: 30px;
		border-left: 3px solid #32339F;
	}
	.tbl02{
		width: 100%;
		font-size: 16px;
		line-height: 30px;
	}
	.tbl02 th{
		padding: 20px 0;
		text-align: left;
		border-bottom: 1px solid #cfcfcf;
	}
	.tbl02 tr:last-child th{
		border-bottom: none;
	}
	.tbl02 td{
		padding: 20px 0;
		border-bottom: 1px solid #cfcfcf;
	}
	.tbl02 tr:last-child td{
		border-bottom: none;
	}
	.head {
		display: block;
		font-size: 46px;
		color: #32339F;
		text-align: center;
		font-weight: 300;
		line-height: 62px;
	}
	.btn-view {
		position: relative;
		border: 1px solid #32339F;
		display: block;
		text-align: center;
		width: 100%;
		font-size: 16px;
		padding: 17px 14px 18px 0;
		color: #32339F;
		margin-top: 35px;
	}
	.btn-view:after {
		position: absolute;
		content: '';
		background: url('../img/common/btn_arrow.svg') no-repeat center;
		background-size: contain;
		width: 14px;
		height: 14px;
		right: 10px;
		top: 50%;
		transform: translateY(-50%);
	}
	.btn-view:hover {
		background: #32339F;
		color: #fff;
	}
	.btn-view:hover:after,
	.btn-w440:hover:after {
		background: url('../img/common/arrow_hover.svg') no-repeat center;
		background-size: contain;
	}

	.btn-w440 {
		display: block;
		text-align: center;
		width: 440px;
		border: 1px solid #32339F;
		padding: 32px 0;
		color: #32339F;
		margin: auto;
		font-size: 26px;
		position: relative;
	}
	.btn-w440:after {
		position: absolute;
		content: '';
		background: url('../img/common/btn_arrow.svg') no-repeat center;
		background-size: contain;
		width: 19px;
		height: 19px;
		right: 15px;
		top: 50%;
		transform: translateY(-50%);
	}
	.btn-w440:hover {
		background: #32339F;
		color: #fff;
	}
	.dropdwn_menu {
        position: relative;
	}
	.dropdwn_menu ul{
    display: none;
    position: absolute;
   /* margin-top: 20px;*/
    padding: 0;
    width: 240px;
    left: 0;
	}
    .gnav_pc .dropdwn_menu ul{
         margin-top: 20px;
    }
	.dropdwn_menu ul li{
		width: 100%;
	}
	.dropdwn_menu ul li a{
    padding: 5px 0;
    margin: -5px 0px -5px 0px;
    display: block;
	}
	.dropdwn_menu ul li a:before{
		content: '∟ ';
	}
}
