* {
	margin: 0;
	padding: 0;
	-webkit-text-size-adjust: 100%;
	word-wrap: break-word;
}

html,
body {
	color: #000000;
	font-family: "メイリオ", "Meiryo", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
	font-weight: 500;
	/*line-height: 1.5;*/
}
html {
	overflow-y: scroll;
	/* =16px */
	/*font-size: 100%;*/ 
	/* =10px */
	font-size: 62.5%;
}

body {
	font-size: 1.4rem;/* =14px */
	position: relative;
	overflow: hidden;
}

li {
	list-style: none;
}

a {
	text-decoration: none;
}

img {
	max-width: 100%;
	border: 0;
}

a img {
	border: 0;
}


/*ScrollTrigger*/


.invisible {
	transition: transform 1.2s ease, opacity 1.2s ease;
	transform: translateY(30px);
	opacity: 0.0;
}

.visible {
	transition: transform 1.2s ease, opacity 1.2s ease;
	transform: translateY(0);
	opacity: 1.0;
}

.mincho {
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}

.fade {
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.fade2 {
	-webkit-transition: .2s ease-in-out;
	-moz-transition: .2s ease-in-out;
	-o-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}

.main {
	width: 1200px;
	max-width: 95%;
	margin: 0 auto;
}
.main1000 {
	width: 1000px;
	max-width: 95%;
	margin: 0 auto;
}

.pc_none {
	display: none;
}

.d-menu {
	display: none;
}

.panel {
	display: none;
}

.sp_br {
	display: none;
}
.color_871bab{
	color: #871bab;
}
.pc_br{
	display: none;
}

/*header*/

header {
	width: 100%;
	background: #FFFFFF;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
}

header img,
header a {
	display: block;
}
.header_box{
	width: 100%;
	background: #FFFFFF;
	/*position: fixed;
	top: 0;
	left: 0;
	z-index: 99;*/
}
.header_main {
	width: 100%;
	display: table;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.logo {
	width: 292px;
	display: table-cell;
	vertical-align: middle;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.logo a {
	display: block;
}
.logo a img{
	display: block;
	width: 100%;
	max-width: 292px;
}
.logo a:hover {
	opacity: 0.8;
}

.header_btn02{
	width: 135px;
	display: table-cell;
	vertical-align: middle;
	background-color: #e60012;
	text-align: center;
	background: #006dba;
	background: -moz-linear-gradient(left, #006dba 0%, #006dba 25%, #0194d1 75%, #0194d1 100%);
	background: -webkit-gradient(linear, left top, right top, color-stop(0%,#006dba), color-stop(25%,#006dba), color-stop(75%,#0194d1), color-stop(100%,#0194d1));
	background: -webkit-linear-gradient(left, #006dba 0%, #006dba 25%, #0194d1 75%, #0194d1 100%);
	background: -o-linear-gradient(left, #006dba 0%, #006dba 25%, #0194d1 75%, #0194d1 100%);
	background: -ms-linear-gradient(left, #006dba 0%, #006dba 25%, #0194d1 75%, #0194d1 100%);
	background: linear-gradient(to right, #006dba 0%, #006dba 25%, #0194d1 75%, #0194d1 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#006dba', endColorstr='#0194d1',GradientType=0 );
	background-size: 200% 100%;
	background-position: center center;
}
:root .header_btn02 {
    filter: none;
}
.header_btn02 a{
	display: block;
	font-size: 1.6rem;
	font-weight: bold;
	color: #FFFFFF;
	text-align: center;
	padding: 30px 5px 28px;
	padding: 30px 5px 26px\0;
}
.header_btn02 a span,.header_btn02 a img{
	display: inline;
}
.header_btn02 a img{
	margin-left: 5px;
	position: relative;
	top: 0;
}
.header_btn02:hover{
	background-position: 0 center;
}
.header_btn02 img.pc_none{
	display: none;
}

/*nav*/
.nav_box{
	display: table-cell;
	vertical-align: middle;
}
nav {
	display: block;
}

.fixed {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
}

.nav_list {
	display: table;
	padding: 0 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 0 0 auto;
}

.nav_list li {
	width: auto;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	padding: 0 11px;
}

.nav_list li a {
	font-size: 1.6rem;
	color: #221815;
	font-weight: bold;
	display: block;
	padding: 3px 0px;
	position: relative;
	overflow: hidden;
}
.nav_list li a:after{
	content: "";
    position: absolute;
    bottom: 0;
    right: 100%;
    display: block;
    width: 100%;
    height: 2px;
    background: #0650cb;
    -webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.nav_list li:hover a,.nav_list li.nav_select a {
	/*color: #871bab;*/
}
.nav_list li:hover a:after,.nav_list li.nav_select a:after {
	right: 0;
}
.sp_btn{
	display: none;
}
.header_box .main1000{
	position: relative;
}
.header_language{
	width: 100px;
	position: absolute;
	right: -100px;
	top: 0;
	bottom: 0;
}
.header_lBtn{
	position: relative;
	width: 100%;
	height: 100%;
}
.header_lBtn a{
	display: block;
	width: 36px;
	height: 36px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.header_lBtn a img{
	display: block;
}
.header_lList{
	background: #ffffff;
	border: #cccccc 1px solid;
	display: none;
	font-size: 1.4rem;
	margin-top: 18px;
	position: absolute;
	top: 58px;
	left: 50%;
	transform: translate(-50%,0);
	width: 180px;
	z-index: 3;
}
.header_lList::before {
    border-color: transparent transparent #cccccc transparent;
    border-style: solid;
    border-width: 0 8.5px 14px 8.5px;
    content: "";
    display: block;
    height: 0;
    left: 50%;
    margin-left: -8.5px;
    position: absolute;
    top: -14px;
    width: 0;
}
.header_lList::after {
    border-color: transparent transparent #f1f1f1 transparent;
    border-style: solid;
    border-width: 0 7.5px 10px 7.5px;
    content: "";
    display: block;
    height: 0;
    left: 50%;
    margin-left: -7.5px;
    position: absolute;
    top: -10px;
    width: 0;
}

.header_lTitle {
    background: #f1f1f1;
    border-bottom: #cccccc 1px solid;
    color: #30438c;
    font-weight: bold;
    padding: 5px 20px 2px;
}
.header_lList>ul{
	padding-top: 10px;
	padding-bottom: 8px;
}
.header_lList>ul>li{
	padding: 5px 20px;
}
.header_lList>ul>li>a{
	color: #070731;
	display: block;
	padding-left: 20px;
	position: relative;
}
.header_lList>ul>li>a::before {
    border-right: solid 2px #30438c;
    border-top: solid 2px #30438c;
    content: "";
    display: block;
    height: 6px;
    left: 2px;
    margin-top: -5px;
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
    width: 6px;
    will-change: transform;
}
.header_lList>ul>li>a:hover{
	color: #30438c;
}

/* ----------- footer ----------- */

footer {
	
}
.footer_middle{
	background: #2e3136;
	padding: 25px 0 22px;
}
.footer_content{
	width: 100%;
	display: table;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.footer_copy{
	display: table-cell;
	vertical-align: middle;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 1.4rem;
	color: #FFFFFF;
	text-align: right;
}
.footer_link{
	display: table-cell;
	vertical-align: middle;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-align: left;
	font-size: 1.4rem;
	color: #FFFFFF;
	padding-right: 10px;
	white-space: nowrap;
	line-height: 1;
}

.footer_link a{
	color: #FFFFFF;
}
.footer_link a:hover{
	text-decoration: underline;
}
.footer_link a:last-child{
	
}
.footer_link ul{
	
}
.footer_link ul li{
	float: left;
	border-right: 1px solid #d5d5d6;
	padding-right: 20px;
}
.footer_link ul li:nth-child(2){
	padding-left: 20px;
	padding-right: 0;
	border-right: none;
}

/*pagt top*/
.pagetop {
	display: none;
	width: 46px;
	height: 46px;
	position: fixed;
	right: 100px;
	bottom: 150px;
	z-index: 999;
}

.pagetop img {
	display: block;
    -webkit-transition: .2s ease-in-out;
	-moz-transition: .2s ease-in-out;
	-o-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
	opacity: 0.8;
}
.pagetop:hover img{
	opacity: 1;
}



@media only screen and (max-width: 1100px) {
	/*header*/
	.nav_list {
	    padding: 0 10px;
	}
	.nav_list li {
	    padding: 0 10px;
	}
	
}
@media only screen and (max-width: 1200px) {
	/*header*/
	header .main1000{;
		max-width: 100%;
	}
	.header_btn02{
		width: 50px;
		height: 50px;
		border-radius: 5px;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
	}
	.header_btn02 a{
		display: block;
		position: relative;
		width: 100%;
		height: 100%;
		padding: 0 0;
	}
	.header_btn02 a::after{
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		width: 31px;
		height: 35px;
		background: url(../image/ico_mail.png) no-repeat center;
		background-size: 100% 100%;
		content: "";
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}
	.header_btn02 a span{
		display: none;
	}
	header {
		padding: 10px 10px;
		position: fixed;
		top: 0;
		z-index: 999;
		border-bottom: 2px solid #006dba;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		height: auto !important;
	}
	.header_box {
		width: 100%;
	    box-sizing: border-box;
	    position: relative !important;
	}
	.header_main {
		display: table;
	}
	.logo {
		width: auto;
		padding-right: 20px;
		padding-left: 0;
	}
	.logo a {
		width: auto;
		max-width: 247px;
	}
	
	.d-menu {
		display: table-cell;
		vertical-align: middle;
		width: 70px;
		height: 50px;
		cursor: pointer;
		position: relative;
	}
	.panel-btn {
		display: block;
		position: absolute;
		top: 0;
		/*bottom: 0;*/
		right: 0;
		margin: auto;
		width: 50px;
		height: 50px;
		background: #006dba;
		background: -moz-linear-gradient(left, #006dba 0%, #006dba 25%, #0194d1 75%, #0194d1 100%);
		background: -webkit-gradient(linear, left top, right top, color-stop(0%,#006dba), color-stop(25%,#006dba), color-stop(75%,#0194d1), color-stop(100%,#0194d1));
		background: -webkit-linear-gradient(left, #006dba 0%, #006dba 25%, #0194d1 75%, #0194d1 100%);
		background: -o-linear-gradient(left, #006dba 0%, #006dba 25%, #0194d1 75%, #0194d1 100%);
		background: -ms-linear-gradient(left, #006dba 0%, #006dba 25%, #0194d1 75%, #0194d1 100%);
		background: linear-gradient(to right, #006dba 0%, #006dba 25%, #0194d1 75%, #0194d1 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#006dba', endColorstr='#0194d1',GradientType=0 );
		border-radius: 5px;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
	}
	:root .panel-btn {
	    filter: none;
	}
	.panel-btn-icon {
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		width: 26px;
		height: 4px;
		margin: -2px 0 0 -13px;
		background: #FFF;
		transition: .2s;
	}
	.panel-btn-icon:before,
	.panel-btn-icon:after {
		display: block;
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		width: 26px;
		height: 4px;
		background: #FFF;
		transition: .3s;
	}
	.panel-btn-icon:before {
		margin-top: -11px;
	}
	.panel-btn-icon:after {
		margin-top: 7px;
	}
	.panel-btn .close {
		background: transparent;
	}
	.panel-btn .close:before,
	.panel-btn .close:after {
		margin-top: 0;
	}
	.panel-btn .close:before {
		-ms-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.panel-btn .close:after {
		-ms-transform: rotate(-135deg);
		-moz-transform: rotate(-135deg);
		-webkit-transform: rotate(-135deg);
		transform: rotate(-135deg);
	}
	/*nav*/
	nav {
		display: none;
		width: 100%;
		padding: 0;
		position: fixed;
		z-index: 999;
		bottom: 0;
		left: 0;
		
		background: #006dba;
		background: -moz-linear-gradient(left, #006dba 0%, #006dba 25%, #0194d1 75%, #0194d1 100%);
		background: -webkit-gradient(linear, left top, right top, color-stop(0%,#006dba), color-stop(25%,#006dba), color-stop(75%,#0194d1), color-stop(100%,#0194d1));
		background: -webkit-linear-gradient(left, #006dba 0%, #006dba 25%, #0194d1 75%, #0194d1 100%);
		background: -o-linear-gradient(left, #006dba 0%, #006dba 25%, #0194d1 75%, #0194d1 100%);
		background: -ms-linear-gradient(left, #006dba 0%, #006dba 25%, #0194d1 75%, #0194d1 100%);
		background: linear-gradient(to right, #006dba 0%, #006dba 25%, #0194d1 75%, #0194d1 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#006dba', endColorstr='#0194d1',GradientType=0 );
		
		overflow-y: auto;
	}
	:root nav {
	    filter: none;
	}
	.fixed {
		top: auto;
		left: auto;
	}
	.nav_list {
		width: 100%;
		display: block;
		padding: 0 0px;
	}
	.nav_list li {
		width: 100%;
		display: block;
		text-align: left;
		background: none;
		border-bottom: 1px solid #FFFFFF;
		box-sizing: border-box;
	}
	
	.nav_list li:last-of-type {
		background: none;
	}
	.nav_list li a {
		width: 100%;
		display: block;
		font-size: 18px;
		color: #FFFFFF;
		font-weight: normal;
		position: relative;
		box-sizing: border-box;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		-o-box-sizing: border-box;
		-ms-box-sizing: border-box;
		padding: 20px 0;
	}
	.nav_list li a:after {
	    display: none;
	}
	.sp_share {
	    width: 100%;
	    display: table;
	    border-collapse: collapse;
	    border-bottom: 1px solid #FFFFFF;
	}
	.sp_share li {
	    display: table-cell;
	    vertical-align: middle;
	    text-align: center;
	    border-right: 1px solid #FFFFFF;
	    border-top: 0;
	    border-left: 0;
	    width: 50%;
	}
	.sp_share li a{
		display: block;
	    padding: 20px 10px;
		
	}
	.sp_share li:nth-child(2){
		border-right: none;
	}
	.sp_share li img {
	    display: block;
	    margin: 0 auto;
	}
	.sp_btn li:nth-child(1) {
		background-color: #e60012;
	}
	.sp_btn li:nth-child(2) {
		background-color: #0650cb;
	}
	.header_language {
	    width: 50px;
	    display: table-cell;
	    vertical-align: middle;
	    position: static;
	    right: auto;
	    top: auto;
	    bottom: auto;
	    padding-right: 20px;
	}
	.header_lBtn a {
	    display: block;
	}
	
	.header_lList {
		width: 100%;
		padding: 0;
		position: fixed;
		z-index: 999;
		bottom: 0;
		left: 0;
		top: 72px;
		transform: translate(0,0);
		/* background: #30438c; */
		overflow-y: auto;
		margin-top: 0;
		border: none;
		
		font-size: 1.8rem;
		line-height: 1;
	}
	.header_lTitle {
	    background: #f1f1f1;
	    border-bottom: #cccccc 1px solid;
	    color: #30438c;
	    font-weight: normal;
		padding: 20px 10px 17px;
		box-sizing: border-box;
	}
	.header_lList>ul {
	    padding-top: 0px;
	    padding-bottom: 0px;
	}
	.header_lList>ul>li {
	    padding: 0px 0px 0px 10px;
		background-color: #FFFFFF;
		border-bottom: #cccccc 1px solid;
		box-sizing: border-box;
	}
	.header_lList>ul>li>a {
		display: block;
	    font-weight: normal;
		padding: 20px 10px 17px 20px;
	}
}
@media only screen and (max-width: 1024px) {
	.main {
		width: 95%;
	}
	.sp_none {
		display: none;
	}
	.pc_none {
		display: block;
	}
	
	
	/* ----------- footer ----------- */
	footer {
		
	}
	/*pagt top*/
	.pagetop {
		right: 10px;
	}
	
	
}

@media only screen and (max-width: 768px) {
	/* ----------- footer ----------- */
	
	/*pagt top*/
	.pagetop {
		bottom: 100px;
		width: 46px;
	}
	
	
}
@media only screen and (max-width: 680px) {
	/* ----------- footer ----------- */
	.footer_link ul li {
	    float: none;
		display: inline-block;
	    border-right: none;
	    padding-right: 15px;
	}
	.footer_link ul li:nth-child(2) {
	    padding-left: 0px;
	}
	
	
	
}

@media only screen and (max-width: 480px) {
	/*header*/
	.logo {
		padding-right: 0;
	}
	.logo a {
	    width: auto;
	    max-width: 230px;
	}
	.logo a img {
	    height: 40px;
		width: auto;
	}
	.header_btn02 {
	    width: 40px;
	    height: 40px;
	}
	.header_btn02 a::after{
		width: 23px;
		height: 29px;
		background-size: 100% auto;
	}
	.d-menu {
		width: 50px;
		height: 40px;
	}
	.panel-btn {
		width: 40px;
		height: 40px;
	}
	.panel-btn-icon {
		width: 22px;
		height: 2px;
		margin: -1px 0 0 -11px;
	}
	.panel-btn-icon:before,
	.panel-btn-icon:after {
		width: 22px;
		height: 2px;
	}
	.panel-btn-icon:before {
		margin-top: -9px;
	}
	.panel-btn-icon:after {
		margin-top: 7px;
	}
	.pc_br{
		display: block;
	}
	/*nav*/
	.nav_list li {
		
	}
	.nav_list li a {
		font-size: 16px;
		padding: 15px 0;
	}
	.sp_share li a{
	    padding: 15px 0px;
	}
	
	.header_language{
		width: 35px;
		padding-right: 6px;
	}
	.header_lBtn a{
		width: 30px;
		height: 30px;
	}
	.header_lBtn a img{
		width: 30px;
	}
	.header_lList{
		top: 62px;
	    font-size: 1.6rem;
	}
	.header_lTitle {
	    padding: 15px 10px 12px;
	}
	.header_lList>ul>li>a {
	    padding: 15px 10px 12px 20px;
	}
	/*footer*/
	.footer_copy {
	    display: block;
	    font-size: 1.4rem;
	    text-align: center;
	    padding-top: 10px;
	}
	.footer_link {
	    display: block;
	    padding-right: 0px;
	    font-size: 1.4rem;
	    text-align: center;
		white-space: nowrap;
		white-space: inherit;
	}
	.footer_link ul {
	    margin-bottom: -5px;
	}
	.footer_link ul li {
	    padding: 0px 5px 5px;
	}
	
	
	
}
@media only screen and (max-width: 320px) {
	.logo a img {
	    height: 35px;
	}
}

/*page common*/
/* ----------- common ----------- */
.part_title{
	text-align: center;
}
.part_title img{
	display: block;
	margin: 0 auto;
}
.part_title h2{
	position: relative;
	display: inline-block;
	font-size: 4.8rem;
	line-height: 1;
	letter-spacing: 5px;
	color: #FFFFFF;
	font-weight: bold;
	text-align: justify;
	background: #006dba;
	background: -moz-linear-gradient(left, #006dba 0%, #006dba 25%, #0194d1 80%, #0194d1 100%);
	background: -webkit-gradient(linear, left top, right top, color-stop(0%,#006dba), color-stop(25%,#006dba), color-stop(80%,#0194d1), color-stop(100%,#0194d1));
	background: -webkit-linear-gradient(left, #006dba 0%, #006dba 25%, #0194d1 80%, #0194d1 100%);
	background: -o-linear-gradient(left, #006dba 0%, #006dba 25%, #0194d1 80%, #0194d1 100%);
	background: -ms-linear-gradient(left, #006dba 0%, #006dba 25%, #0194d1 80%, #0194d1 100%);
	background: linear-gradient(to right, #006dba 0%, #006dba 25%, #0194d1 80%, #0194d1 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#006dba', endColorstr='#0194d1',GradientType=0 );
	
	text-align: center;
	padding: 18px 30px 10px;
	margin-top: 15px;
}
:root .header_btn02 {
    filter: none;
}
.part_title h2 span{
	color: #caf91a;
}

.part_title h2 .show_box_table {
	position: absolute;
	left: 100%;
	top: 0;
	box-sizing: border-box;
	border: 1px solid #0986cf;
	width: 80px;
	height: 100%;
	background: #FFF;
}

.part_title h2 .show_box_table::after {
	display: block;
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	border-bottom: 16px solid #255898;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	margin: -8px 0 0 -12px;
	transform: rotate(180deg);
}

.part_title h2 .show_box_table.btn_show::after {
	transform: rotate(0);
}

@media only screen and (max-width: 1024px) {
	/* ----------- common ----------- */
	.part_title h2{
		font-size: 4.0rem;
	}

	.part_title h2 .show_box_table {
		width: 68px;
	}
	
}

@media only screen and (max-width: 768px) {
	/* ----------- common ----------- */
	.module_pd{
		padding: 60px 0 !important;
	}
	.part_title img {
	    height: 35px;
	}
	.part_title h2 {
	    font-size: 4.0rem;
	}
	
}

@media only screen and (max-width: 480px) {
	/* ----------- common ----------- */
	.module_pd {
	    padding: 40px 0 !important;
	}
	.part_title h2 {
	    font-size: 2.8rem;
		letter-spacing: 0;
		padding: 15px 10px 10px;
		margin-top: 10px;
	}

	.part_title h2 .show_box_table {
		width: 53px;
	}

	.part_title img {
	    height: 30px;
	}
	
}
