@charset "utf-8";
/* setting
===========================*/
* {
	font-style: normal;
	box-sizing: border-box;
}

html {
	font-size: 6.25%;
	/* 1rem = 1px */
}

body {
	position: relative;
	font-family: "游ゴシック", YuGothic, Yu Gothic, "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
	font-size: 16rem;
	color: #333333;
	line-height:1.6;
	min-width: 320px;
	width: 100%;
	min-height: 100vh;
	overflow: hidden;
	display:-ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
}

main {
	height: 100%;
}

@media screen and (max-width: 768px) {
	body {
		font-size: 15rem;
	}
}

img{
	max-width: 100%;
	vertical-align: bottom;
}
.innerImg {
    max-width: 1000px;
    margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.innerImg img{
		width: 100%;
	}
}

ul {
	list-style:none;
	width: 100%;
}

form {
	position: relative;
}

.inner{
	width: 86%;
	max-width: 1400px;
	margin: auto;
	display: block;
}
@media screen and (max-width:1023px){
	.inner{
		max-width: 100%;
		width: 100%;
		padding: 0 15px;
	}
}

.spOnly{
	display: none;
}
@media screen and (max-width:768px){
	.spOnly{
		display: block;
	}
	.pcOnly{
		display: none;
	}
}
.taR{
	text-align: right!important;
}
.taL{
	text-align: left!important;
}
.taC{
	text-align: center!important;
}
.bold{
	font-weight: bold!important;
}
.red{
	color: #B70B10!important;
}
.roboto{
	font-family: "Roboto", sans-serif;
}

p + p{
	margin-top: 16px;
}

/* a
===========================*/
a {
	text-decoration: none;
	display: inline-block;
}
a:link,
a:visited {
	color: #333333;
}
a:hover {
	text-decoration: none;
}
a.txtlink,
a[target="_blank"],
a[href$=".pdf"],
a[href$=".xlsx"], 
a[href$=".xls"], 
a[href$=".xlam"],
a[href$=".docx"], 
a[href$=".doc"]{
	color: #29496F;
	position: relative;
	padding-right: 20px;
}
a.txtlink:hover,
a[target="_blank"]:hover,
a[href$=".pdf"]:hover,
a[href$=".xlsx"]:hover, 
a[href$=".xls"]:hover, 
a[href$=".xlam"]:hover,
a[href$=".docx"]:hover, 
a[href$=".doc"]:hover{
	text-decoration: underline;
}
a[target="_blank"]::after{
    content: "";
	position: absolute;
	bottom: 4px;
	right: 0;
    width: 18px;
    height: 18px;
    background: url("/img/cmn/index_icoBlank.svg") no-repeat;
    background-size: 18px;
}
a[href$=".pdf"]::after {
    content: "";
	position: absolute;
	bottom: 4px;
	right: 0;
    width: 18px;
    height: 18px;
    background: url("/img/cmn/index_icoPdf.svg") no-repeat;
    background-size: 18px;
}
a[href$=".xlsx"]::after, 
a[href$=".xls"]::after, 
a[href$=".xlam"]::after {
    content: "";
	position: absolute;
	bottom: 4px;
	right: 0;
    width: 18px;
    height: 18px;
    background: url("/img/cmn/index_icoExcel.svg") no-repeat;
    background-size: 18px;
}
a[href$=".docx"]::after, 
a[href$=".doc"]::after{
    content: "";
	position: absolute;
	bottom: 4px;
	right: 0;
    width: 18px;
    height: 18px;
    background: url("/img/cmn/index_icoWord.svg") no-repeat;
    background-size: 18px;
}

/* table
===========================*/
table,
thead,
tbody,
tr,
th,
td {
	text-align: left;
	vertical-align:middle;
}

table {
	width: 100%;
	border-collapse:collapse;
}

/* google map
===========================*/

#mapCanvas,
.mapCanvas {
	width: 100%;
	height: 300px;
}

#mapCanvas dt ,
.mapCanvas dt {
	font-family: "游ゴシック", YuGothic, Yu Gothic, "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
	font-weight: 600;
	font-size: 15rem;
}
#mapCanvas dd ,
.mapCanvas dd {
	font-family: "游ゴシック", YuGothic, Yu Gothic, "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
	font-weight: 500;
	font-size: 14rem;
}
.mapContents #mapCanvas {
	width: 100%;
	height: 500px;
}
	@media screen and (max-width: 769px) {
	.mapContents #mapCanvas {
		height: 300px;
	}
}

/* header
===========================*/
header {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	width: 100%;
	height: 80px;
	padding-left: 30px;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(20px);
	z-index: 9999;
}
header #logo {
	width: 240px;
	height: auto;
	line-height:0;
}
header img{
	width: 100%;
}
header #logo a {
	display: block;
	margin-top: 6px;
}
header #nittsuGroupLogo{
	width: 180px;
}
@media screen and (max-width: 1023px) {
	header {
		height: 60px;
		padding-left: 15px;
	}	
	header #logo img{
		width: 180px;
	}
	header img#nittsuGroupLogo{
		width: 150px;
	}
}
@media screen and (min-width: 1024px) {	
header #menu {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	align-items: center;
}
header #menu li {
	font-weight: bold;
}
header #menu > li + li{
	margin-left: 30px;
}
header #menu > li > a,
header #menu > li.has-child > div > a{
	display: inline-block;
	line-height: 1;
  	position: relative;
	padding: 33px 0;
	transition: .3s;
}
header #menu > li > a::after,
header #menu > .has-child > div > a::after{
	content: '';
	width: 100%;
	height: 3px;
	border: 0px;
	background:#B70B10;
	border-top: none;
	border-right: none;
	transition: all .3s;
	transform: scale(0, 1);
	transform-origin: left top;
	position: absolute;
	bottom: 0;
	left: 0;
}
header #menu > li > a:hover,
header #menu > .has-child > div > a:hover{
    color:#B70B10;
}	
header #menu > li > a:hover::after,
header #menu > .has-child > div > a:hover::after{
    transform: scale(1, 1);
}
header #menu > .has-child{
	position: relative;
}
header #menu > li.has-child > div > a{
	padding-right: 16px;
}
header #menu > .has-child::after{
	content: "";
	position: absolute;
	top: 34px;
	right: 0;
	width: 8px;
	height: 8px;
	border-top: 1.6px solid #29496F;
	border-right: 1.6px solid #29496F;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);	
	transition: .3s;
}
header #menu > .has-child:hover::after{
	border-top: 1.6px solid #B70B10;
	border-right: 1.6px solid #B70B10;
}
header #menu > .has-child:hover  > div > a{
	color: #B70B10;
}
header #menu > li.has-child .childNav{
	position: relative;
	opacity: 0;
	visibility: hidden;
    transform: scaleY(0);
	transform-origin: center top;
	transition: all .3s;
	width: 100%;
	height: 100%;
	z-index: 99;
}
header #menu > li.has-child:hover .childNav,
header #menu > li.hover .childNav{
	visibility: visible;
    opacity: 1;
    transform: scaleY(1);
}
header #menu > li .childNav ul{
	position: absolute;	
	top: -6px;
	left: 50%;
	transform: translate(-50%,0%); 
	width: 100%;
	min-width: 320px;
	border-radius: 6px;
	padding: 20px;
	background-color: #FFFFFF;
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15) ;
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15) ;
	-moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15) ;
	-o-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15) ;
	-ms-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15) ;
}
header #menu > li .childNav ul::before{
	content: "";
    position: absolute;
	width: 0;
	height: 0;
	top: -12px;
	left: 50%;
	transform: translate(-50%,0%); 
	border-style: solid;
	border-right: 20px solid transparent;
  	border-left: 20px solid transparent;
  	border-bottom: 12px solid #FFFFFF;
	border-top: 0;
}
header #menu > li .childNav ul li{

}
header #menu > li.has-child .childNav ul li a{
	position: relative;
	width: 100%;
	transition: .2s;
	padding: 4px 20px 4px 0;
}
header #menu > li.has-child .childNav li a:hover{
	color: #B70B10;
}
header #menu > li.has-child .childNav ul li a::before{
	content: '';
    position: absolute;
    bottom: 16px;
    right: 0px;
    width:20px;
    height: 1px;
    background: #29496F;
    transition: all .3s;
}
header #menu > li.has-child .childNav ul li a::after{
	content: '';
    position: absolute;
    bottom: 19px;
    right: -2px;
    width: 8px;
    height: 1px;
    background: #29496F;
    transform: rotate(45deg);
    transition: all .3s;
}
header #menu > li.has-child .childNav ul li a:hover::before,
header #menu > li.has-child .childNav ul li a:hover::after{
    background: #B70B10;
}
header #menu > li.has-child .childNav ul li a:hover::before{
	right: -4px;
}
header #menu > li.has-child .childNav ul li a:hover::after{
	right: -6px;
}

header #menu li.contact a{
	background: #B70B10;
	height: 80px;
	padding: 28px 30px;
	margin-top: 0;
	border-left: 1px solid #F6F6F6;
	border-radius: 0;
}
header #menu li.contact a::after {
    display: none;
}
header #menu li.contact span {
 	position: relative;
 	z-index: 3;
  	color:#ffffff;	
	transition: all .3s;
}
header #menu li.contact a:hover{
	text-decoration: none;
}
header #menu li.contact a[target="_blank"]::after{
    display: none;
}
header #menu li.contact a:hover span{
  	color:#B70B10;
}
header #menu li.contact a:before {
  	content: '';
 	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background:#ffffff;
 	width: 100%;
	height: 100%;
	transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
	transform: scale(0, 1);
 	transform-origin: right top;
}
header #menu li.contact a:hover:before{
 	transform-origin:left top;
 	transform:scale(1, 1);
}
.spMenu {
	display: none;
}
}

@media screen and (max-width: 1023px) {	
	.spMenu {
		display: block;
		width: 60px;
		height: 60px;
		background-color: #B70B10;
	}
	nav {
		position: fixed;
		top: -100vh;
		left: 0;
		width: 100%;
		height: 100vh;
		transition: .7s;
		z-index: -1;
		opacity: 0;
		background: rgba(255, 255, 255, 0.9);
		backdrop-filter: blur(4px);
		-webkit-backdrop-filter: blur(4px);
	}
	.active nav {
		display: block;
		top: 0;
		opacity: 1;
	}
	#menu {
		height: 100vh;
		opacity: 0;
		transition: .7s;
		width: 88%;
		margin: 90px auto 0;
		pointer-events: none;
	}
	.active #menu {
		opacity: 1;
		pointer-events: auto;
	}
	#menu > li + li{
		border-top: 1px solid #9DAFBE;	
	}
	#menu > li > a,
	#menu > li > div a.accordion_header{
		padding: 16px 0;
		font-size: 20rem;
		font-weight: bold;
		transition: .3s;
	}
	#menu > li > a{
		width: 100%;
		display: inline-block;
	}
	#menu  li  a:hover{
		color: #B70B10;
	}
	#menu > li .childNav li{
		
	}
	#menu > li .childNav li a{
		display: inline-block;
		width: 100%;
		position: relative;
		padding: 8px 0 8px 17px;
		font-size: 15rem;
		font-weight: bold;
	}
	#menu > li .childNav li:last-child{
		margin-bottom: 20px;
	}
	#menu > li .childNav li a::before{
		content: "";
		position: absolute;
		top: 20px;
		left: 0;
		width: 8px;
		height: 2px;
		background-color: #333333;
	}
	#menu > li .childNav li a:hover::before{
		background-color: #B70B10;
	}
	.menu-trigger,
	.menu-trigger span {
		display: inline-block;
		transition: all .4s;
		box-sizing: border-box;
	}
	.menu-trigger {
		position: relative;
		width: 60px;
		height: 60px;
		border-radius: 50%;
	}
	.menu-trigger span {
		position: absolute;
		left: 14px;
		width: 30px;
		height: 2px;
		background-color: #FFFFFF;
		border-radius: 1px;
		border-radius: 10px;
	}
	.menu-trigger span:nth-of-type(1) {
		top: 18px;
	}
	.menu-trigger span:nth-of-type(2) {
		top: 29px;
	}
	.menu-trigger span:nth-of-type(3) {
		bottom: 18px;
	}

	.active .menu-trigger span:nth-of-type(1) {
		-webkit-transform: translateY(12px) rotate(-315deg);
		transform: translateY(12px) rotate(-315deg);
	}
	.active .menu-trigger span:nth-of-type(2) {
		opacity: 0;
	}
	.active .menu-trigger span:nth-of-type(3) {
		-webkit-transform: translateY(-10px) rotate(315deg);
		transform: translateY(-10px) rotate(315deg);
	}
	header .spOnly {
		display: block;
	}
	header .pcOnly{
		display: none;
	}
	header .btn a {
        max-width: 100%;
        margin-top: 34px;
    }
}

/*accordion*/
@media screen and  (max-width:1023px){
.accordion_one .accordion_header {
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition-duration: 0.2s;
}
.accordion_one .accordion_header .i_box {
  display: -webkit-flex;
  display: flex;
  justify-content: -webkit-center;
  justify-content: center;
  align-items: -webkit-center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 0;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  box-sizing: border-box;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition-duration: 0.2s;
}
.accordion_one .accordion_header .i_box .one_i {
  display: block;
  width: 20px;
  height: 20px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}
.accordion_one .accordion_header.open .i_box {
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}
.accordion_one .accordion_header .i_box .one_i:before, .accordion_one .accordion_header .i_box .one_i:after {
  display: -webkit-flex;
  display: flex;
  content: '';
  background-color: #333333;
  width: 18px;
  height: 2px;
  position: absolute;
  top: 7px;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transform-origin: center center;
}
.accordion_one .accordion_header .i_box .one_i:before {
  width: 2px;
  height: 18px;
  top: 0;
  left: 7px;
}
.accordion_one .accordion_header.open .i_box .one_i:before {
  content: none;
}
.accordion_one .accordion_header.open .i_box .one_i:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.accordion_one .accordion_inner {
  display: none;
}
}

/* main
===========================*/
main {
	margin-top: 80px;
}
@media screen and (max-width: 1023px) {
	main {
		margin-top: 60px;
	}
}

/*
clm2,
clm3,
clm4*/
.clm2,
.clm3,
.clm4{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	grid-row-gap: 48px;
}
.clm2 > li{
	width:calc(100% / 2 - 20px);
}
.clm3 > li{
	width:calc(100% / 3 - 20px);
}
.clm4 > li{
	width:calc(100% / 4 - 20px);
}
.clm2::after{
	content: "";
	display: inline-block;
	width:calc(100% / 2 - 20px);
}
.clm3::after{
	content: "";
	display: inline-block;
	width:calc(100% / 3 - 20px);
}
.clm4::after{
	content: "";
	display: inline-block;
	width:calc(100% / 4 - 20px);
}
@media screen and (max-width: 768px) {
	.clm2,
	.clm3,
	.clm4{
		grid-row-gap: 24px;
	}
	.clm2 > li,
	.clm3 > li,
	.clm4 > li{
		width:100%;
	}
}

/*パンくず*/
.breadcrumbList {
	position: relative;
	margin: auto;
	width: 86%;
	max-width: 1400px;
	padding: 20px 0;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	font-size: 13rem;
	z-index: 90;
}
@media screen and (max-width:1023px){
	.breadcrumbList {
		width: 100%;
		padding: 12px 15px;
	}
}
.breadcrumbList li {
	line-height: 1;
	padding: 8px 0;
	padding-right: 20px;
	position: relative;
}
.breadcrumbList li:before {
	content: "";
	position: absolute;
	top: 10px;
	right: 8px;
	width: 8px;
	height: 8px;
	border-top: 1.2px solid #333333;
	border-right: 1.2px solid #333333;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.breadcrumbList li:last-child:before {
	display: none;
}
.breadcrumbList li a {
	font-weight: bold;
}
.breadcrumbList li a:hover {
	text-decoration: underline;
}

section{
	padding: 120px 0;
}
#sub section +section{
	padding-top: 0;
}
@media screen and (max-width: 768px) {
	section{
		padding: 70px 0;
	}
}
h1{
	position: relative;
	display: block;
	margin: 0 auto;
	width: 86%;
	max-width: 1400px;
	line-height: 1.2;
	font-size: 56rem;
	font-weight: bold;
	z-index: 2;
}
h1 span{
	display: block;
	padding-top: 6px;
	font-size: 14rem;
	font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 768px) {
	h1{
		width: 100%;
		padding: 0 15px;
		font-size: 40rem;
	}
	h1 span{
		font-size: 12rem;
	}
}
.ttlBg{
    user-select: none; 
    -webkit-user-select: none;
    -moz-user-select: none; 
    -ms-user-select: none; 
	display: block;
	position: absolute;
	top: 80px;
	right: 0;
	height: auto;
	line-height: 0.9;
	text-align: right;
	color: rgba(26, 88, 134, 0.04);
	font-size: clamp(9rem, calc(10vw + 20rem), 186rem);
	font-weight: bold;
	font-family: "Roboto", sans-serif;
	z-index: -1;
}
@media screen and (max-width: 1023px) {
	.ttlBg{
		top: 60px;
	}
}
.ttlArea01{
	margin-bottom: 50px;
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 400px;
}
.ttlArea01 .ttl{
	display: -webkit-flex;
	display: flex;
	align-items: -webkit-center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-height: 400px;
	z-index: 3;
}
.ttlArea01 .ttlBg{
	top: 0;
}
@media screen and (max-width: 1023px) {
	.ttlArea01 .ttl{
		display: block;
		padding: 80px 0;
	}
}
.ttlArea01 .ttlImg{
	contents:"";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #213552;
}
.ttlArea01 .ttlImg img{
	height: 100vh;
	margin: auto;
	max-height: 100%;
	max-width: 100%;
	object-fit: cover;
	width: 100%;
	opacity: 0.4;
	filter: blur(2px);
}
.ttlArea01 .breadcrumbList li,
.ttlArea01 .breadcrumbList li a{
	color: #FFFFFF;
}
.ttlArea01 .breadcrumbList li:before {
	border-top: 1.2px solid #FFFFFF;
	border-right: 1.2px solid #FFFFFF;
}
.ttlArea01 .ttl h1{
	color: #FFFFFF;
}
.ttlArea01 .ttl .ttlBg{
	color: rgba(255, 255, 255, 0.1);
}
.ttlArea01 .lead{
	position: relative;
	max-width: 1400px;
	width: 86%;
	margin: 0 auto;
	bottom: -150px;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}
.ttlArea01 .lead .leadWrap{
	width: 61%;
	min-height: 230px;
	height: 100%;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-items: center;
	align-items: center;
}
.ttlArea01 .leadWrap::after {
    content: "";
    position: absolute;
    top: 0;
    left: 30%;
    width: 200vw;
	height: 100%;
    min-height: 230px;
	transform: translate(-50%,-50%); 
	transform: skewX(-25deg);
	background: rgba(80, 101, 122, 0.6);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	z-index: 10;
}
.ttlArea01 .leadTxt {
	position: relative;
	padding: 20px 0;
	width: 100%;
	z-index: 12;
}
@media screen and (max-width: 1023px) {
    .ttlArea01 .lead{
        max-width: 100%;
        width: 100%;
        padding: 0 15px;
    }
	.ttlArea01 .lead .leadWrap{
		width: 90%;
	}
	.ttlArea01 .leadWrap::after {
		left: 12%;
		transform: skewX(-15deg);
	}
	.ttlArea01 .leadTxt {
		padding-left: 12%;
	}
}
@media screen and (max-width: 768px) {
	.ttlArea01{
		margin-bottom: 40px;
		min-height: 450px;
	}
    .ttlArea01 .lead{
        bottom: -190px;
    }
}
.ttlArea01 .leadTxt p{
	width: 100%;
	color: #FFFFFF;
	font-size: 18rem;
}
.ttlArea01 .leadTxt p + p{
	margin-top: 30px;
}
@media screen and (max-width:768px){
	.ttlArea01 .leadTxt p{
		font-size: 15rem;
	}
	.ttlArea01 .leadTxt p + p{
		margin-top: 18px;
	}
}
.h2DesignA{
	position: relative;
}
.h2DesignA::before{
	content: "";
	position: absolute;
	top: 44%;
	left: -100vw;
	width: 100vw;
	height: 1px;
	background-color: #C8C8C8;
	transform: translate(0%,-50%); 
}
.h2DesignA h2{
	line-height: 1.2;
	color: #B70B10;
	margin-bottom: 40px;
	font-size: 18rem;
	font-weight: bold;
}
.h2DesignA h2 span{
	font-size: 64rem;
	display: block;
	font-family: "Roboto", sans-serif;
	color: #333333;
}
@media screen and (max-width: 768px) {
	.h2DesignA h2{
		margin-bottom: 20px;
		font-size: 10rem;
	}
	.h2DesignA h2 span{
		font-size: 36rem;
	}
}
h2.h2DesignB{
	position: relative;
	margin-bottom: 40px;
	font-size: 36rem;
}
h2.h2DesignB:first-letter{
  color: #B70B10;
 }
h2.h2DesignB::before{
	content: "";
	position: absolute;
	top: 44%;
	left: -100vw;
	width: 100vw;
	height: 1px;
	background-color: #C8C8C8;
	transform: translate(0%,-50%); 
}
@media screen and (max-width: 768px) {
	h2.h2DesignB{
		margin-bottom: 24px;
		font-size: 32rem;
	}
}
h3{
	height: auto;
	margin-bottom: 24px;
	font-size: 24rem;
}
h3 span{
	display: inline-block;
	font-size: 18rem;
}
@media screen and (max-width: 768px) {
	h3{
		font-size: 20rem;
	}
	h3 span{
		font-size: 16rem;
	}
}
p + h3{
	margin-top: 20px;
}

h3{
	font-weight: bold;
}
p + h4{
	margin-top: 16px;
}

/*strengthList*/
ul.strengthList li dl{
	height: 100%;
	padding: 24px;
	background-color: #EEF1F4;
	color: #29496F;
}
ul.strengthList li dl dt{
	text-align: center;
}
ul.strengthList li dl dt span.img{
	position: relative;
	display: inline-block;
	width: 170px;
	height: 170px;
	background-color: #FFFFFF;
	border-radius: 100px;
}
ul.strengthList li dl dt span.img img{
	position: absolute;
	width: 110px;
	height: 100%;
	top:50%;
	left: 50%;
	transform: translate(-50%,-50%); 
}
ul.strengthList li dl dt span.txt{
	margin: 16px 0;
	font-size: 24rem;
	font-weight: bold;
	display: block;
}

/*numbers*/
ul.numbersWrap{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
ul.numbersWrap > li{
	width: 100%;
	margin-bottom: 8px;
	padding: 28px 20px 40px;
	background-color: #f6f8fa;
}
ul.numbersWrap li.clm2num{
	width:calc(100% / 2 - 4px);
}
ul.numbersWrap li.clm3num{
	width:calc(100% / 3 - 4px);
}
ul.numbersWrap li .title{
	display: flex;
	justify-content: center;
	
}
ul.numbersWrap li .title h3{
	display: inline-block;
	text-align: center;
	margin-bottom: 40px;
	padding: 4px 42px;
	color: #29496F;
	border-radius: 4px;
	background-color: #FFFFFF;
}
ul.numbersWrap li .dataBox{
	height: auto;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content:center;
	justify-content:center;
	align-items: center;
}
ul.numbersWrap li .dataBox ul{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content:center;
	justify-content:center;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
ul.numbersWrap li .dataBox ul li{
	width: 100%;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content:center;
	justify-content:center;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
ul.numbersWrap li.clm2num .dataBox ul li{
	width:calc(100% / 2 - 10px);
}
ul.numbersWrap li.clm2num .dataBox ul li:first-child{
	padding-right: 20px;
}
ul.numbersWrap li .dataBox .icon{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content:center;
	justify-content:center;
	-webkit-align-items: center;
	align-items: center;
}
ul.numbersWrap li.clm2num .dataBox .icon{
	width: 170px;
	height: 170px;
}
ul.numbersWrap li.clm3num .dataBox .icon{
	margin-bottom:  30px;
	width: 126px;
	height: 130px;
}
ul.numbersWrap li .dataBox .icon img{
	height: 100%;
}
ul.numbersWrap li .dataBox .data{
	text-align: center;
	width: 100%;
	color: #29496F;
	font-weight: bold;
	font-size: 32rem;
	word-break: break-word;
}
ul.numbersWrap li .dataBox .data span.subTtl{
	display: block;
	font-size: 48rem;
}
ul.numbersWrap li .dataBox .data span.number{
	line-height: 0.8;
	padding: 0 6px;
	color: #B70B10;
	font-family: "Roboto", sans-serif;
}
ul.numbersWrap li.clm2num .dataBox .data span.number{
	font-size: 96rem;
}
ul.numbersWrap li.clm3num .dataBox .data span.number{
	font-size: 64rem;
}
ul.numbersWrap li .dataBox p.notes{
	margin-top: 20px;
	color: #29496F;
}
@media screen and (min-width:769px) and (max-width:1400px){
	ul.numbersWrap li.clm2num .dataBox .data span.number{
		font-size: 7vw;
	}
	ul.numbersWrap li.clm3num .dataBox .data span.number{
		font-size: 4vw;
	}
}
@media screen and (max-width:768px){
	ul.numbersWrap{
		display: block;
	}
	ul.numbersWrap li.clm2num,
	ul.numbersWrap li.clm3num{
		width: 100%;
	}
	ul.numbersWrap li.clm2num .dataBox ul li{
		width : 100%;
	}
	ul.numbersWrap li.clm2num .dataBox ul li:first-child{
		padding-right: 0;
	}
	ul.numbersWrap li.clm2num .dataBox .icon{
		margin-bottom:  30px;
		width: 126px;
		height: 130px;
	}
	ul.numbersWrap li .dataBox .data{
		font-size: 24rem;
	}
	ul.numbersWrap li .dataBox .data span.subTtl{
		font-size: 32rem;
	}
	ul.numbersWrap li.clm2num .dataBox .data span.number,
	ul.numbersWrap li.clm3num .dataBox .data span.number{
		font-size: 56rem;
		padding: 0 2px;
	}
}

/*imgLink*/
.imgLink li a{
	width:100%;
}
.imgLink li a + p{
	margin-top: 10px;
}
.imgLink li a p.linkTxt{
	position: relative;
	line-height: 1.2;
	display: inline;
	margin-right: 30px;
	color: #29496F;
	font-size: 24rem;
	font-weight: bold;
	text-decoration: none;
	background-image: linear-gradient(90deg, #29496F, #29496F); 
	background-repeat: no-repeat;
	background-position: left bottom; 
	background-size: 0 1px; 
	transition: background-size 0.3s; 
}
.imgLink li a:hover p.linkTxt{
	background-size: 100% 1px; 
	color: #B70B10;
}
.imgLink li a p.linkTxt::before{
	content: "";
	position: absolute;
	bottom: 3px;
	right: -30px;
	width: 24px;
	height: 24px;
	border-radius: 30px;
	transition: .3s;
	border: 1px solid #29496F;
}
.imgLink li a p.linkTxt::after {
	content: "";
	position: absolute;
	bottom :11px;
	right: -20px;
	width: 8px;
	height: 8px;
	border-top: 1.2px solid #29496F;
	border-right: 1.2px solid #29496F;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);	
	transition: .3s;
}
.imgLink li a:hover p.linkTxt::before{
	background-color: #29496F;
}
.imgLink li a:hover p.linkTxt::after {
	border-top: 1.2px solid #FFFFFF;
	border-right: 1.2px solid #FFFFFF;
}
@media screen and (max-width:768px){
	.imgLink li a p.linkTxt{
		margin-right: 30px;
		font-size: 20rem;
	}
	.imgLink li a p.linkTxt::before{
		bottom: 1px;
	}
	.imgLink li a p.linkTxt::after {
		bottom :9px;
	}
}
.imgLink li a .linkImg{
	margin-bottom: 20px;
	overflow: hidden;
	height: 100%;
	max-height: 230px;
}
@media screen and (max-width:768px){
	.imgLink li a .linkImg{
		margin-bottom: 8px;
	}
}
.imgLink li a .linkImg img{
	transition: transform .3s ease;
	height: 100%;
	margin: auto;
	max-width: 100%;
	max-height: 100vh;
	object-fit: cover;
	width: 100%;
}
.imgLink li a:hover .linkImg img{
	transform: scale(1.2);
}

/*tableDesignA*/
.tableDesignA{
}
.tableDesignA tr:nth-child(odd){
	background-color: #f6f8fa;
}
.tableDesignA  th{
	width: 20%;
}
.tableDesignA  th,
.tableDesignA  td{
	padding: 16px 10px;
}
.tableDesignA  td dl{
	width: 100%;
	display: -webkit-flex;
	display: flex;
}
.tableDesignA  td dl dt{
	width: 25%;
	max-width: 100px;
	font-weight: bold;
	color: #29496F;
}
.tableDesignA  td dl dd{
	width: 100%;
	padding-left: 10px;
}
@media screen and (max-width: 750px) {
	.tableDesignA  th{
		width: 100%;
		padding: 12px 0 0 10px;
	}
	.tableDesignA  th,
	.tableDesignA  td{
		display: block;
	}
}
/*tableDesignB*/
.tableDesignB{
	position: relative;
	max-width: 1000px;
	margin: auto;
}
.tableDesignB tbody{
	position: relative;
	height: 100%;
}
.tableDesignB th,
.tableDesignB td {
	padding: 16px 0;
	vertical-align: top;
}
.tableDesignB th {
	width: 100px;
	padding-right: 20px;
	color: #29496F;
	position: relative;
	font-size: 20rem;
}
.tableDesignB td {
	padding-left: 32px;
	width: auto;
	position: relative;
}
.tableDesignB  td dl{
	width: 100%;
	display: -webkit-flex;
	display: flex;
}
.tableDesignB  td dl dt{
	width: 50px;
	font-weight: bold;
	color: #29496F;
}
.tableDesignB  td dl dd{
	width: 100%;
	padding-left: 10px;
}
.tableDesignB th::before {
	content: "";
	position: absolute;
	top: 22px;
	right: -6px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #29496F;
	z-index: 100;
}
.tableDesignB tbody::before {
	content: "";
	position: absolute;
	top: 22px;
	left: 98px;
	width: 4px;
	height:calc(100% - 22px);
	background-color: #C8C8C8;
	border-radius: 20px;
	z-index: 1;
}
.tableDesignB tbody::after {
	line-height: 0;
	content: "…";
	position: absolute;
	bottom: -32px;
	left: 99px;
	color: #C8C8C8;
	writing-mode: vertical-rl;
	font-size: 28rem;
	font-weight: bold;
}
@media screen and (max-width: 768px) {
	.tableDesignB th,
	.tableDesignB td {
		display: block;
	}
	.tableDesignB th {
		width: 80%;	
		padding: 10px 0 0 40px;
		font-size: 18rem;
	}
	.tableDesignB td {
		padding: 0 0 0 40px;
	}
	.tableDesignB th::before {
		top: 16px;
		right: auto;
		left: 8px;
	}
	.tableDesignB tbody::before {
		left: 12px;
		top: 26px;
	}
	.tableDesignB tbody::after {
		bottom: -36px;
		left: 14px;
	}
}
/*tableDesignC*/
.tableDesignC{
	max-width: 1000px;
	border: 1px solid #D8D8D8
}
.tableDesignC tr + tr{
	border-top: 1px solid #D8D8D8
}
.tableDesignC  th{
	width: 20%;
	background-color: #f6f8fa;
}
.tableDesignC  th,
.tableDesignC  td{
	padding: 16px 10px;
}
@media screen and (max-width: 750px) {
	.tableDesignC  th{
		width: 100%;
	}
	.tableDesignC  th,
	.tableDesignC  td{
		display: block;
		padding: 10px;
	}
}

ol > li + li{
	margin-top: 16px;
}
ol > li{
	margin-left: 20px; 
}
ol > li::marker{
	color: #B70B10;
	font-weight: bold;
}
ol.numList01{
	list-style-type: decimal;
}
ol.numList02{
	list-style-type: decimal-leading-zero;
}
ol.numList02 > li{
	margin-left: 24px;
}
ol.alphaList01{
	list-style-type: lower-latin;
}
ol.alphaList01 > li{
	margin-left: 18px; 
}
ol.alphaList02{
	list-style-type: upper-latin;
}
ol.discList01,
ol.discList02{
	list-style-type: disc;
}
ol.discList01 > li,
ol.discList02 > li{
	margin-left: 16px; 
}
ol.discList02 > li::marker{
	color: #333333;
}

/*tab*/
.tabArea {
	position: relative;
	width: 100%;
	height: 100%;
}
.tabArea::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: #29496F;
	z-index: -1;
}
.tabBox {
	width: 80%;
	margin: auto;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	cursor: pointer;
}
.tab {
	width: 100%;
	padding: 16px 8px;
	text-align: center;
	color: #FFFFFF;
	border-radius: 4px 4px 0 0;
	background-color: #29496F;
	border-top: 2px solid #29496F;
	border-right: 2px solid #29496F;
	border-left: 2px solid #29496F;
	display: -webkit-flex;
	display: flex;
	align-items: -webkit-center;
	align-items: center;
	justify-content: -webkit-center;
	justify-content: center;
	transition: .3s;
}
.tab:hover{
	background-color: #69809a;
}
.tab + .tab{
	margin-left: 20px;
}
@media screen and (max-width:768px){
	.tabBox {
		width: 100%;
	}
	.tab + .tab{
		margin-left: 10px;
	}
	.tab{
		font-size: 14rem;
	}
}
.tab.active {
	background-color: #FFFFFF;
	color: #B70B10;
	font-weight: bold;
  }
.contentArea {
}
.content {
	display: none;
}
.content.show {
	margin-top: 40px;
	display: block;
}

/*flowImg*/
.flowImg{
	position: relative;
	max-width: 750px;
	height: 100%;
	margin: auto;
}
.flowImg .pcOnly{
	display: block;
}
.flowImg .spOnly{
	display: none;
}
.flowImg::after{
	content: "";
	position: absolute;
	top: 48%;
	left: 50%;
	transform: translate(-50%,-50%); 
	width: 100vw;
	height: 56%;
	background-color: #F6F8FA;
	z-index: -1;
}
@media screen and (max-width:499px){
	.flowImg .pcOnly{
		display: none;
	}
	.flowImg .spOnly{
		display: block;
	}
	.flowImg::after{
		top: 50%;
		height:86%
	}
}

/*markerBlue*/
.markerBlue{
	line-height: 2;
	color: #29496F;
	font-size: 20rem;
	font-weight: bold;
}
.markerBlue span {
  background: linear-gradient(transparent 50%, #eef1f4 0%);
  display: inline;
  padding: 0 1px 2px;
}
@media screen and (max-width:768px){
	.markerBlue{
		font-size:15rem;
	}
}
/*blueLabel*/
.blueLabel{
	margin-bottom: 16px;
	display: inline-block;
	padding: 4px 24px;
	border-radius: 2px;
	background-color: #29496F;
	color: #FFFFFF;
	font-size: 20rem;
	font-weight: bold;
}
@media screen and (max-width:768px){
	.blueLabel{
		font-size:16rem;
		padding: 2px 16px;
	}
}
/*txtCaution*/
.txtCaution {
	display: block;
    font-size: 13rem;
    text-indent: -1em;
    padding-left: 1em;
}
.txtCaution + .txtCaution{
    margin-top: 0;
}

/*border*/
.border{
	margin-top: 16px;
	padding: 16px;
	border: 2px solid #333333;
	border-radius: 6px;
}

/*pageLink*/
.pageLink{
	padding: 70px 0 63px;
	width: 100%;
	background-color: #f6f8fa;
}
.pageLink .linkList{
	width: 100%;
}
.pageLink .linkList ul{
	width: 100%;
	font-weight: bold;
}
.pageLink .linkList ul li a{
	color: #29496F;
}
.pageLink .linkList ul.lv1 li a{
	font-size: 24rem;
}
.pageLink .linkList ul.lv1 li a{
	position: relative;
	line-height: 1.2;
	display: inline;
	margin-right: 30px;
	color: #29496F;
	text-decoration: none;
	background-image: linear-gradient(90deg, #29496F, #29496F); 
	background-repeat: no-repeat;
	background-position: left bottom; 
	background-size: 0 1px; 
	transition: background-size 0.3s; 
	font-size: 24rem;
	font-weight: bold;
}
@media screen and (max-width:768px){
	.pageLink .linkList ul.lv1 li a{
		font-size: 20rem;
	}
}
.pageLink .linkList ul.lv1 li a:hover{
	background-size: 100% 1px; 
}
.pageLink .linkList ul.lv1 li a::before{
	content: "";
	position: absolute;
	bottom: 3px;
	right: -30px;
	width: 24px;
	height: 24px;
	border-radius: 30px;
	transition: .3s;
	border: 1px solid #29496F;
}
.pageLink .linkList ul.lv1 li a::after {
	content: "";
	position: absolute;
	bottom :11px;
	right: -20px;
	width: 8px;
	height: 8px;
	border-top: 1.2px solid #29496F;
	border-right: 1.2px solid #29496F;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);	
	transition: .3s;
}
.pageLink .linkList ul.lv1 li a:hover::before{
	background-color: #29496F;
}
.pageLink .linkList ul.lv1 li a:hover::after {
	border-top: 1.2px solid #FFFFFF;
	border-right: 1.2px solid #FFFFFF;
}
.pageLink .linkList ul.lv2{
	margin-top: 24px;
	padding: 0 18px;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	column-gap:24px;
	row-gap :20px;
}
.pageLink .linkList ul.lv2::after{
	content: "";
	display: block;
}
.pageLink .linkList ul.lv2 li{
	width:calc(100% / 4 - 18px);
	position: relative;
	border-bottom: 2px solid #ccdce8;
	display: -webkit-flex;
	display: flex;
	align-items: -webkit-center;
	align-items: center;
}
.pageLink .linkList ul.lv2 li::before{
	content: "";
    height: 2px;
    position: absolute;
    width: 100%;
    background-color: #204483;
    transition: .6s;
    left: 0;
    bottom: -2px;
    transform: scaleX(0);
    transform-origin: left center;
}
.pageLink .linkList ul.lv2 li:hover::before{
    transform: scaleX(1)
}
@media screen and (min-width:500px) and (max-width:769px){
	.pageLink .linkList ul.lv2 li{
		width:calc(100% / 2 - 18px);
	}
}
@media screen and (max-width:499px){
	.pageLink .linkList ul.lv2 li{
		width:100%;
	}
}
.pageLink .linkList ul.lv2 li a{
	width:100%;
	position: relative;
	padding-bottom: 4px;
	padding-right: 24px;
}
.pageLink .linkList ul.lv2 li a::before{
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 24px;
	height: 24px;
	border-radius: 30px;
	transition: .3s;
	transform: translate(0%,-50%); 
	border: 1px solid #29496F;
}
.pageLink .linkList ul.lv2 li a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 10px;
	width: 8px;
	height: 8px;
	border-top: 1.2px solid #29496F;
	border-right: 1.2px solid #29496F;
	-webkit-transform: translate(0%,-50%)rotate(45deg);
	transform: translate(0%,-50%)rotate(45deg);
	transition: .3s;
}
.pageLink .linkList ul.lv2 li a:hover::before{
	background-color: #29496F;
}
.pageLink .linkList ul.lv2 li a:hover::after {
	border-top: 1.2px solid #FFFFFF;
	border-right: 1.2px solid #FFFFFF;
}

.pageLink .linkList ul.lv2 li.current {
	padding-bottom: 4px;
	color: #B70B10;
	border-bottom: 2px solid #e5dbdd;
}
.pageLink .linkList ul.lv2 li.current::before{
	display: none;
}
.pageLink .linkList ul.lv1 li a:hover,
.pageLink .linkList ul.lv2 li a:hover{
	color: #B70B10;
}

/*contact*/
#contact {
    background-image: url("/img/cmn/contact_img01.jpg");
    background-attachment: fixed;
    background-size: cover;
    background-position: bottom 20% center;
    background-repeat: no-repeat;
	color: #FFFFFF;
}
#contact .bg_rgba{
	padding: 120px 0;
    background: rgba(36, 53, 72, 0.8);
    backdrop-filter: blur(4.4px);
    -webkit-backdrop-filter: blur(4.4px);
}
#contact .flexBox{
    display: -webkit-flex;
    display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
@media screen and (max-width:767px){
	#contact .bg_rgba{
		padding: 50px 0;
	}
	#contact .flexBox{
		display: block;
	}
}
#contact .flexBox li{
	padding: 0 20px;
    width:calc(100% / 2 - 10px);
	text-align: center;
}
#contact .flexBox li + li{
	position: relative;
}
#contact .flexBox li + li::before {
	content: '';
	position: absolute;
	width: 1px;
	height: 100%;
	background-color: #fff;
	left: 0;
	top: 0;
}
@media screen and (max-width:767px){
	#contact .flexBox li{
		padding: 0;
		width: 100%;
	}
	#contact .flexBox li + li::before {
		display: none;
	}
}
#contact h2,
#contact h2 span{
	text-align: center;
	color: #FFFFFF;
}
#contact .h2DesignA::before{
	display: none;
}
#contact h3{
	font-size: 26rem;
	margin-bottom: 22px;
}
@media screen and (min-width:768px) and (max-width:1023px){
	#contact h3{
		font-size: 2.6vw;
	}
}
@media screen and (max-width:767px){
	#contact h3{
		display: none;
	}
}
#contact .tel{
	line-height: 1;
}
#contact .tel span{
	position: relative;
	padding-left: 30px;
	font-weight: bold;
	font-size: 5vw;
}
#contact .tel span::before{
	content: "";
    position: absolute;
    background: url("/img/cmn/contact_ico01.svg") no-repeat center center;
    top: 50%;
    left: 0px;
    width: 34px;
    height: 100%;
    transform: translate(-50%, -50%);
}
#contact .tel small{
	display: block;
	font-size: 13rem;
	margin-top: 12px;
}
@media screen and (min-width:1024px){
	#contact .tel span{
		font-size: 52rem;
	}
}
@media screen and (max-width:767px){
	#contact .tel span{
		font-size: 36rem;
	}
	#contact .tel small{
		font-size: 12rem;
	}
	#contact .formBtn{
		margin-top: 30px;
	}
}

/*pagetop*/
.pagetop {
	content: "";
	display: block;
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 42px;
	height: 42px;
	border: 1px solid #29496F;
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.6);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	z-index: 99;
}
.pagetop span {
	position: relative;
}
.pagetop span:before {
	content: "";
	position: absolute;
	top: 17px;
	left: 14px;
	width: 12px;
	height: 12px;
	border-top: 1.6px solid #29496F;
	border-right: 1.6px solid #29496F;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);	
	transition: .3s;
}
.pagetop:hover span:before {
	top: 13px;
	border-top: 1.6px solid #B70B10;
	border-right: 1.6px solid #B70B10;
}

/* footer
===========================*/
footer {
	height: 86px;
	padding: 15px;
	background-color: #fff;
	text-align: right;
}
footer img {
	width: 200px;
}
footer small {
	display: block;
	margin-top: 4px;
	color: #A2A2A2;
}
@media screen and (max-width:768px){
	footer small {
		font-size: 10rem;
	}
}

/*arrow*/
.arrow{
	position: relative;
	display: inline-block;
	width: 100%;
}
.arrow::before{
	content: '';
    position: absolute;
    bottom: 27px;
    right: 20px;
    width: 42px;
    height: 1.2px;
    background: #29496F;
    transition: all .3s;
}
.arrow::after{
	content: '';
    position: absolute;
    bottom: 32px;
    right: 20px;
    width: 15px;
    height: 1px;
    background: #29496F;
    transform: rotate(35deg);
    transition: all .3s;
}
a:hover .arrow::before,
a:hover .arrow::after{
    background: #B70B10;
	right: 16px;
}

/*btn*/
.btn{
	margin-top: 0;
}
.btn a{
	max-width: 440px;
	width: 100%;
	height: 60px;
	display: inline-block;
	text-align: center;
	margin-top: 60px;
	padding: 16px 0;
	border: 2px solid #29496F;
	background-color: #FFFFFF;
	color: #29496F;
	border-radius: 50px;
	font-weight: bold;
	font-size: 16rem;
	transition: .3s;
}
@media screen and (max-width:768px){
	.btn a{
		max-width: 100%;
		margin-top: 34px;
	}
}
.btn a:hover{
	border: 2px solid #B70B10;
	color: #B70B10;
}
.formBtn a{
	position: relative;
	max-width: 340px;
	margin-top: 0;
	border: 2px solid #B70B10;
	background-color: #B70B10;
	color: #FFFFFF;
}
.formBtn a:hover{
	color: #B70B10;
	background-color: #FFFFFF;
}
.formBtn a::before{
	content: "";
    position: absolute;
    background: url("/img/cmn/contact_ico02.svg") no-repeat center center;
    top: 50%;
    left: 14%;
    width: 34px;
    height: 100%;
    transform: translate(-50%, -50%);
}
.formBtn a:hover::before{
	filter: brightness(0) saturate(100%) invert(10%) sepia(97%) saturate(5612%) hue-rotate(353deg) brightness(84%) contrast(98%);
}
.formBtn a .arrow::before{
    background: #FFFFFF;
}
.formBtn a .arrow::after{
    background: #FFFFFF;
}
.formBtn a:hover .arrow::before,
.formBtn a:hover .arrow::after{
    background: #B70B10;
}
.backBtn a .arrow::before{
    right: auto;
	left: 20px;
}
.backBtn a .arrow::after{
    right: auto;
	left: 20px;
    transform: rotate(-35deg);
}
.backBtn a:hover .arrow::before,
.backBtn a:hover .arrow::after{
    background: #B70B10;
	left: 16px;
}
.mapBtn a{
	position: relative;
}
.mapBtn a::before{
	content: "";
    position: absolute;
    background: url("/img/cmn/index_icoMap.svg") no-repeat center center;
    top: 50%;
    left: 14%;
    width: 20px;
    height: 100%;
    transform: translate(-50%, -50%);
}
.mapBtn a:hover::before{
	filter: brightness(0) saturate(100%) invert(10%) sepia(97%) saturate(5612%) hue-rotate(353deg) brightness(84%) contrast(98%);
}
@media screen and (min-width:769px) {
	.mapBtn a{
		padding-left: 20px;
		max-width: 240px;
	}
}
.btn a[target="_blank"]:hover{
	text-decoration: none!important;
}
.btn a[target="_blank"]::after{
    display: none!important;
}

/*fadein*/
.anim-box {
	opacity: 0;
	transform: translateX(0);
}
.anim-box.fadein.is-animated {
	animation: fadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes fadeIn {
  0% {
	opacity: 0;
  }
  100% {
	opacity: 1;
  }
}
/*fadeup*/
.anim-box.fadeup.is-animated {
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes fadeup {
  0% {
	transform: translateY(30px);
	opacity: 0;
  }
  80% {
	opacity: 1;
  }
  100% {
	opacity: 1;
	transform: translateY(0);
  }
}
/*fadedown*/
.anim-box.fadedown.is-animated {
  animation: fadedown 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes fadedown {
  0% {
	transform: translateY(-30px);
	opacity: 0;
  }
  80% {
	opacity: 1;
  }
  100% {
	opacity: 1;
	transform: translateY(0);
  }
}
/*faderight*/
.anim-box.faderight.is-animated {
  animation: faderight 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes faderight {
  0% {
	transform: translateX(-30px);
	opacity: 0;
  }
  80% {
	opacity: 1;
  }
  100% {
	opacity: 1;
	transform: translateX(0);
  }
}
/*fadeleft*/
.anim-box.fadeleft.is-animated {
  animation: fadeleft 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes fadeleft {
  0% {
	transform: translateX(30px);
	opacity: 0;
  }
  80% {
	opacity: 1;
  }
  100% {
	opacity: 1;
	transform: translateX(0);
  }
}

.matrix .bg-wrap,
.matrix .bg-wrap .inn {
  display: block;
}
.matrix .bg-wrap {
  overflow: hidden;
  opacity: 0;
}
.matrix .bg-wrap + .bg-wrap {
  margin-top: 10px;
}
.matrix .bg-wrap .inn.large {
  color: #A6A2D9;
  font-size: 36px;
  font-weight: bold;
}
.matrix .bg-wrap .inn.small {
  color: #6661A4;
  font-size: 15px;
}
.matrix .bg-wrap .inn {
  opacity: 0;
  transform: matrix(1, 0, 0, 1, 0, 100);
  transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.matrix.is-animated .bg-wrap {
  opacity: 1;
}
.matrix.is-animated .bg-wrap .inn {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, 0);
}

/*margin-bottom*/
.mb0{
	margin-bottom: 0!important;
}
.mb10{
	margin-bottom: 0px!important;
}
.mb16{
	margin-bottom: 16px!important;
}
.mb20{
	margin-bottom: 20px!important;
}
.mb24{
	margin-bottom: 24px!important;
}
.mb32{
	margin-bottom: 32px!important;
}
.mb40{
	margin-bottom: 40px!important;
}
.mb48{
	margin-bottom: 48px!important;
}
.mb56{
	margin-bottom: 56px!important;
}
.mb64{
	margin-bottom: 64px!important;
}
.mb72{
	margin-bottom: 72px!important;
}
.mb80{
	margin-bottom: 80px!important;
}
.mb100{
	margin-bottom: 100px!important;
}
.mb120{
	margin-bottom: 120px!important;
}
/*margin-top*/
.mt0{
	margin-top: 0!important;
}
.mt10{
	margin-top: 0px!important;
}
.mt16{
	margin-top: 16px!important;
}
.mt20{
	margin-top: 20px!important;
}
.mt24{
	margin-top: 24px!important;
}
.mt32{
	margin-top: 32px!important;
}
.mt40{
	margin-top: 40px!important;
}
.mt48{
	margin-top: 48px!important;
}
.mt56{
	margin-top: 56px!important;
}
.mt64{
	margin-top: 64px!important;
}
.mt72{
	margin-top: 72px!important;
}
.mt80{
	margin-top: 80px!important;
}
.mt100{
	margin-top: 100px!important;
}
.mt120{
	margin-top: 120px!important;
}
/*padding-top*/
.pt0{
	padding-top: 0!important;
}
.pt10{
	padding-top: 0px!important;
}
.pt16{
	padding-top: 16px!important;
}
.pt20{
	padding-top: 20px!important;
}
.pt24{
	padding-top: 24px!important;
}
.pt32{
	padding-top: 32px!important;
}
.pt40{
	padding-top: 40px!important;
}
/*padding-left*/
.pl0{
	padding-left: 0!important;
}
.pl10{
	padding-left: 0px!important;
}
.pl16{
	padding-left: 16px!important;
}
.pl20{
	padding-left: 20px!important;
}
.pl24{
	padding-left: 24px!important;
}
.pl32{
	padding-left: 32px!important;
}
.pl40{
	padding-left: 40px!important;
}

/*width*/
.clm{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.clm > * img{
	display: block;
	margin: auto;
}
.w100{
	width: 100%;
}
.w90{
	width: calc(90% - 20px);
}

.w80{
	width: calc(80% - 20px);
}
.w70{
	width: calc(70% - 20px);
}
.w60{
	width: calc(60% - 20px);
}
.w50{
	width: calc(50% - 20px);
}
.w40{
	width: calc(40% - 20px);
}
.w30{
	width: calc(30% - 20px);
}
.w20{
	width: calc(20% - 20px);
}
.w10{
	width: calc(10% - 20px);
}

@media screen and (max-width:768px){
	.w100,.w90,.w80,.w70,.w60,.w50,.w40,.w30,.w20,.w10{
		width: 100%;
	}
	.clm > * {
		margin: 0 0 16px;
	}
}

/*doubleSliderBox*/
.doubleSliderBox .slick-dots{
	bottom: -40px;
}
.doubleSliderBox .slick-dots li {
	margin: 0;
}
.doubleSliderBox .slick-dots li button {
	position: relative;
}
.doubleSliderBox .slick-dots li.slick-active button:before {
	font-size: 8px;
	color: #B70B10;
}
.doubleSliderBox .slick-dots li button:before {
	font-size: 6px;
	position: absolute;
	bottom: 100px;
	left: 0;
	width: 20px;
	height: 20px;
	color: #D9D9D9;
	opacity: 1;
}
.doubleSliderBox .slick-arrow{
	z-index: 2; 
}
.doubleSliderBox .slick-next,
.doubleSliderBox .slick-prev{
	width: 27px;
	height: 27px;
	border: 1px solid #29496F;
	border-radius: 100px;
}

.slick-prev, .slick-next {
    top: auto;
	bottom: -56px;
    width: 27px;
    height: 27px;
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}
.doubleSliderBox .slick-prev{
	left: calc(50% - 90px); 
} 
.doubleSliderBox .slick-next{
	left: auto; 
	right: calc(50% - 90px); 
}

.slick-next:before{
	content: "";
	position: absolute;
	top: 8px;
	left: 5px;
	width: 10px;
	height: 10px;
	border-top: 1.6px solid #29496F;
	border-right: 1.6px solid #29496F;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);	
}
.slick-prev:before{
	content: "";
	position: absolute;
	top: 8px;
	left: 9px;
	width: 10px;
	height: 10px;
	border-top: 1.6px solid #29496F;
	border-right: 1.6px solid #29496F;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);	
}
.slick-prev:hover::before, 
.slick-next:hover::before {
    border-top: 1.6px solid #B70B10;
	border-right: 1.6px solid #B70B10;
}
.doubleSliderBox .textSlider{
	margin-top: 60px;
}