@charset "utf-8";
/* =============================================

all

============================================= */
* {
	font-style: normal;
}
html {
	font-size: 6.25%;
	box-sizing: border-box;
	-ms-text-size-adjust: 100%;  /* IE on Windows Phone用 */
  	-webkit-text-size-adjust: 100%;  /* iOS用 */
}
body {
	font-size: 13px;
 	font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
 	color: #121212;
	line-height:1.6;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	min-width: 350px;
	width: 100%;
	min-height: 100vh;
}
@media screen and (min-width: 751px) {
	body {
		font-size: 15px;
	}
}
img {
    max-width: 100%;
    object-fit: cover;
    vertical-align: bottom;
}
a{
	color: #121212;
	text-decoration: none;
	font-weight: 600;
}
a:hover{
	color: #8EC400;
	transition: all .3s;
}
.inner{
	margin:  0 30px;
}
@media screen and (min-width: 1001px) {
.inner{
	max-width: 1000px;
    width: 100%;
	margin:  0 auto;
}
}
.txCenter{
	text-align: center;
}
.txRight{
	text-align: right;
}
.txGreen{
	color: #8EC400;
}
.txBlue{
	color: #1A005D;
}
.txBold{
	font-weight: bold;
}
/*注釈*/
.txtCaution{
    font-size: 12rem;
	padding-left:1em;
	text-indent:-1em;
}

/* =============================================

スクロールで動かす

============================================= */
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger,
.blurTrigger,
.flipRightTrigger{
    opacity: 0;
}
/* その場で */
.fadeIn{
	animation-name:fadeInAnime;
	animation-duration:1.2s;
	animation-fill-mode:forwards;
	opacity:0;
}
@keyframes fadeInAnime{
from {
    opacity: 0;
}

to {
    opacity: 1;
}
}
/* 下から */
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration:1.2s;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes fadeUpAnime{
from {
    opacity: 0;
    transform: translateY(80px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
/* 上から */
.fadeDown{
	animation-name:fadeDownAnime;
	animation-duration:1.2s;
	animation-fill-mode:forwards;
	opacity:0;
}
@keyframes fadeDownAnime{
from {
	opacity: 0;
	transform: translateY(-80px);
}
to {
    opacity: 1;
	transform: translateY(0);
}
}
/* 左から */
.fadeLeft{
	animation-name:fadeLeftAnime;
	animation-duration:1.2s;
	animation-fill-mode:forwards;
	opacity:0;
}
@keyframes fadeLeftAnime{
from {
    opacity: 0;
	transform: translateX(-80px);
}
to {
    opacity: 1;
	transform: translateX(0);
}
}
/* 右から */
.fadeRight{
animation-name:fadeRightAnime;
animation-duration:1.2s;
animation-fill-mode:forwards;
opacity:0;
}
@keyframes fadeRightAnime{
from {
    opacity: 0;
	transform: translateX(80px);
}
to {
    opacity: 1;
	transform: translateX(0);
}
}
/* 縮小 */
.zoomOut{
	animation-name:zoomOutAnime;
	animation-duration:1.2s;
	animation-fill-mode:forwards;
}
@keyframes zoomOutAnime{
from {
	transform: scale(1.2);
	opacity: 0;
}
to {
    transform:scale(1);
	opacity: 1;
}
}
/* ぼかしから出現 */
.blur{
	animation-name:blurAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}
@keyframes blurAnime{
from {
	filter: blur(10px);
	transform: scale(1.02);
	opacity: 0;
}
to {
	filter: blur(0);
	transform: scale(1);
	opacity: 1;
}
}
/* 右へ */
.flipRight{
	animation-name:flipRightAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
	perspective-origin:right center;
	opacity:0;
}
@keyframes flipRightAnime{
from {
	transform: perspective(600px) translate3d(0, 0, 0) rotateY(-30deg);
	opacity: 0;
}
to {
	transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
	opacity: 1;
}
}

/* =============================================

header

============================================= */
header{
	position: fixed;
	width: 100%;
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
	border-bottom: 1px solid #F6F6F6;
	background-color: #FFFFFF;
	z-index: 9999;
	height: 60px;
}
@media screen and (min-width: 1001px) {
	header{
		height: 130px;
	}
}
#logo img{
    width: 100%;
    max-width: 60vw;
    margin-left: 3vw;
	padding: 20px 0;
}
@media screen and (min-width: 751px) {
	#logo img{
		max-width: 230px;
		margin-left: 20px;
		padding: 20px 0;
	}
}
@media screen and (min-width: 1001px) {
    #logo img {
        max-width: 330px;
        margin-left: 34px;
        padding: 44px 0;
    }
}
@media screen and (min-width: 1141px) {
	#logo img{
		max-width: 440px;
		margin-left: 34px;
	}
}
/* ハンバーガーメニュー
===========================*/
.spMenu {
	display: block;
}
nav {
	position: fixed;
	top: 60px;
	right: -100vw;
	width: 70%;
	height: 100vh;
	background-color: #444444;
	transition: .6s;
}
.active nav {
	display: block;
	right: 0;
}
#menu {
	display: block;
	height: 100%;
}
nav ul {
	width: 100%;
}
#menu li a {
	position: relative;
	display: inline-block;
	width: 100%;
	color: #FFFFFF;
	padding: 15px 20px;
}
#menu li a::after{
	content: '';
	width: 8px;
	height: 8px;
	border: 0px;
	border-top: solid 1.4px #fff;
	border-right: solid 1.4px #fff;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	bottom: 40%;
	right: 70px;
}
#menu li + li{
	border-top: 1px solid #5D4E85;
}
#menu li + li:last-of-type{
	border-top: none;
}
#menu li.contact{
	height: initial;
	padding: 20px;
}
#menu li.contact a{
    display: flex;
    align-items: center;
    font-size: 16px;
    width: inherit;
    height: inherit;
    margin-top: 0;
    padding: 10px 20px;
	background: #8EC400;
	color: #fff;
    border-radius: 0px;
}
#menu li.contact a::after{
	display: none;
}
#menu li.contact a small{
	font-size: 10px;
	font-weight: normal;
}
#layer.sp-layer {
	display: block;
	background-color: #000;
	opacity: 0.3;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	content: "";
	z-index: 100;
}	
.spMenu {
	display: flex;
	width: 130px;
	height: 60px;
}
.spMenuContact{
	display: flex;
    align-items: center;
    justify-content: center;
	font-size: 3vw;
	color: #fff;
	width: 70px;
	height: 100%;
    background-color: #8EC400;
    text-align: center;
    line-height: 1.2;
}
.spMenuContact:hover{
	color: #fff;
}
.spMenuContact small{
	font-size: 9px;
	font-weight: normal;
}
.menu-trigger,
.menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
}
.menu-trigger {
    position: relative;
    width: 60px;
    height: 60px;	
	background-color: #444444;
}
.menu-trigger span {
    position: absolute;
    left: 16px;
    width: 30px;
    height: 2px;
    background-color: #a1a1a1;
    border-radius: 1px;
}
.menu-trigger span:nth-of-type(1) {
	top: 16px;
}
.menu-trigger span:nth-of-type(2) {
	top: 28px;
}
.menu-trigger span:nth-of-type(3) {
	top: 40px;
}
.active .menu-trigger span:nth-of-type(1) {
  -webkit-transform: translateY(15px) rotate(-315deg);
	transform: translateY(15px) rotate(-315deg);
}
.active .menu-trigger span:nth-of-type(2) {
 	opacity: 0;
}
.active .menu-trigger span:nth-of-type(3) {
	-webkit-transform: translateY(-8px) rotate(315deg);
	transform: translateY(-8px) rotate(315deg);
}
/*幅751px~*/
@media screen and (min-width: 751px) {
	.spMenuContact{
		font-size: 12px;
	}
}
/*幅1001px~*/
@media screen and (min-width: 1001px) {
.spMenu {
	display: none;
}
.spMenuContact{
	font-size: 12px;
}
nav {
	top: 0;
	right: 0;
	height: 130px;
	background-color: transparent;
	transition: .6s;
}
#menu{
	display: flex;
	display: -webkit-flex;
	justify-content: flex-end;
	-webkit-justify-content: flex-end;
}
#menu li {
    margin-right: 20px;
}
#menu li:last-of-type {
    margin-right: 0;
}
#menu li + li {
    border-top: none;
}
#menu li a{
	display: flex;
	line-height: 1;
  	position: relative;
	color: #030303;
    height: 100%;
    padding: 0;
    flex-wrap: wrap;
    align-content: center;
}
#menu li a::after{
	content: '';
	width: 100%;
	height: 2px;
	border: 0px;
	background:#8EC400;
	border-top: none;
	border-right: none;
	transition: all .3s;
	transform: scale(0, 1);
	transform-origin: left top;
	position: absolute;
	bottom: 0;
	left: 0;
}
#menu li a:hover{
    color:#8EC400;
}	
#menu li a:hover::after {
    transform: scale(1, 1);
}
#menu li.contact{
	height: 100%;
	padding: 0;
	text-align: center;
}
#menu li.contact a{
	margin-top: 0;
	border-left: 1px solid #F6F6F6;
	border-radius: 0;
}
#menu li.contact a{
    display: flex;
    align-items: center;
    font-size: 18px;
    width: inherit;
    height: inherit;
    padding: 0 36px;
}
#menu li.contact a::after {
    display: none;
}
#menu li.contact span {
 	position: relative;
 	z-index: 3;
  	color:#ffffff;	
	transition: all .3s;
}
#menu li.contact a:hover span{
  	color:#8EC400;
}
#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;
}
#menu li.contact a:hover:before{
 	transform-origin:left top;
 	transform:scale(1, 1);
}
}
/* =============================================

main

============================================= */
main{
	margin-top: 60px;
	overflow-x: hidden;
}
@media screen and (min-width: 1001px) {
	main{
		margin-top: 130px;
	}
}
h2{ 
	position: relative;
	padding-bottom: 30px;
	text-align: center;
	color: #333333;
	font-size: 36rem;
}
h2 span{
	line-height: 1;
	display: block;
	color: #72689A;
	font-size: 16rem;
}
h3{ 
	margin: 20px 0;
	padding-top: 18px;
	position: relative;
	color: #314806;
	font-size: 20rem;
	z-index: 1;
}
h3::before{ 
	position: absolute;
    top: -4px;
    left: -10px;
    color: #D6E5A0;
    font-size: 29rem;
	z-index: -1;
	opacity: 0.5;
}
h3::after {
	content: '';
	position: absolute;
	display: inline-block;
	bottom: -6px;
	width: 130px;
	height: 2px;
	left: -20px;
	background-color: #8EC400;
	border-radius: 2px;
}
@media screen and (min-width: 1001px) {
h2{ 
	padding-bottom: 50px;
}
h3{ 
	text-align: center;
	font-size: 24rem;
}
h3::before{ 
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 42rem;
}
h3::after {
	bottom: -8px;
	width: 50px;
	height: 3px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
}
/* mainVisual
===========================*/
#mainVisual{
	position: relative;
	width: 100%;
	height: 90vw;
	border-bottom: 1px solid #F6F6F6;
	overflow: hidden;
}
#mainVisual:after{
	content: '';
	position: absolute;
	width: 96%;
	height: 95%;
	background-color: #f3f3f3;
	bottom: 0;
	left: 0;
	z-index: -1;
}
@media screen and (min-width:751px) and (max-width:1000px) {
	#mainVisual{
		height: 60vw;
	}
}
@media screen and (min-width: 1000px) {
	#mainVisual{
		height: 30vw;
	}
	#mainVisual:after{
		content: none;
	}
}
#mainVisual .textbox{
	position: relative;
	width: 92%;
	height: 100%;
	top: 0%;
	left: 0%;
	z-index: 100;
}
@media screen and (min-width: 751px) {
	#mainVisual .textbox div{
		width: 48%;
	}
}
#mainVisual .textbox div{
	position: absolute;
	width: 100%;
	top: 65%;
    left: 55%;
    transform: translate(-50%,-50%);
	color: #444;
	font-weight: bold;
	font-size: 18rem;
}
@media screen and (min-width: 751px) {
	#mainVisual .textbox div{
		position: absolute;
		width: 100%;
		top: 50%;
	    left: 55%;
	    transform: translate(-50%,-50%);
		color: #444;
		font-weight: bold;
		font-size: 18rem;
	}
}
@media screen and (min-width:751px) and (max-width:1000px){
	#mainVisual .textbox div{
		top: 65%;
	}
}
@media screen and (min-width: 1001px) {
	#mainVisual .textbox div{
	    display: flex;
	    flex-wrap: wrap;
		width: 100%;
	    left: 60%;
	}	
}
#mainVisual .catchCopy{
	font-size: 7vw;
    padding: 0px 4px;
	text-align: left;
}
#mainVisual .subcopy{
	font-size: 3.5vw;
}
@media screen and (min-width:751px) and (max-width:1000px) {
#mainVisual .catchCopy{
	font-size: 6vw;
}
#mainVisual .subcopy{
	font-size: 3.8vw;
}
}
@media screen and (min-width: 1001px) {
#mainVisual .catchCopy{
	font-size: 46rem;
	margin-bottom: 4px;
}
#mainVisual .subcopy{
	font-size: 32rem;
}
}

#mainVisual .textbox div p.catchCopy span{
	padding: 0px 10px;
    background-color: rgba(255, 255, 255, 0.9);
}
@media screen and (min-width: 1001px) {
#mainVisual .textbox div p.catchCopy{
	width: 100%;
}
}
#mainVisual .mvImg{
	position: absolute;
    top: 0;
    right: 0;
	width: 100%;
	height: 60%;
	overflow: hidden;
}
@media screen and (min-width: 1000px) {
	#mainVisual .mvImg{
		height: 100%;
	}
}
#mainVisual .mvImg figure{
	background-position: center center;
	background-size: auto 100%;
    width: 100%;
    height: 80vw;
	background-repeat: no-repeat;
	overflow: hidden;
	background-image: url('../img/mv_img01_sp.jpg');
}
@media screen and (max-width:1000px) {
#mainVisual .mvImg figure{
	background-position: center center;
    width: 100%;
	position: absolute;
	top: 50%;
    transform: translate(0%,-50%);
}
}
@media screen and (min-width: 1001px) {
#mainVisual .mvImg figure{
	width: 100%;
	height: 100%;
	background-size: cover;
	background-image: url('../img/mv_img01_pc.jpg');
}
}

/*mvBtn*/
#mainVisual .mvBtn {
	margin-top: 20px;
}
#mainVisual .mvBtn a{
    display: inline-block;
	position: relative;
	color: #fff;
  	background-color: #1A005D;
	width: 160px;
	padding: 6px 12px;
	border-radius: 40px;
	font-size: 13rem;
    text-align: center;
    line-height: 1.2;
}
#mainVisual .mvBtn a:hover{
	box-shadow: 0px 0px 10px #A19ABB;
}
#mainVisual .mvBtn a:before,
#mainVisual .mvBtn a:after {
  content: "";
  position: absolute;
  right: 10px;
  height: 2px;
  background-color: #fff;
  border-radius: 9999px;
}
#mainVisual .mvBtn a:before {
  top: 13px;
  width: 30px;
  margin-top: 8.5px;
}
#mainVisual .mvBtn a:after {
  top: calc(50% - 2px);
  width: 16px;
  transform: rotate(45deg);
  transform-origin: calc(100% - 2px) 50%;
}
@media screen and (min-width: 1001px) {
	#mainVisual .mvBtn a{
	    display: inline-block;
		position: relative;
		color: #1A005D;
		background: #fff;
		width: 160px;
		padding: 10px 40px 10px 20px;
		border-radius: 30px;
		border: 2px solid #1A005D;
		font-size: 16rem;
	    text-align: center;
	    line-height: 1.2;
	}
	#mainVisual .mvBtn a:before,
	#mainVisual .mvBtn a:after {
  		background-color: #1A005D;
	}
	#mainVisual .mvBtn a:before {
	  top: 22px;
	}
}
#mainVisual .mvBtn a span{
	font-size: 12px;
	font-weight: normal;
}

/* message
===========================*/
@media screen and (max-width: 1000px) {
.design01 .inner{
	margin:  0 0;
	padding-bottom: 80px;
}
}
.design01 {
	position: relative;
}
.design01::after{
	content: '';
	position: absolute;
	width: 96%;
	height: 100%;
	background-color: #f3f3f3;
	top: 0;
	left: 0;
	z-index: -1;
	border-radius: 0px 0px 90px 0px;
}
@media screen and (min-width: 1001px) {
.design01::after{
	width: 100%;
	height: 100%;
	border-radius: 0px 0px 140px 0px;
}
}
.design01 .messageImg{
	padding: 90px 40px 0;
	text-align: center;
}
@media screen and (min-width: 751px) {
	.design01 .messageImg{
		padding: 15px 0px 0;
	}
}
@media screen and (min-width: 1001px) {
	.design01 .messageImg{
		margin-top: 124px;
	}
}
.design01 h2{
    position: absolute;
    text-align: left;
    top: 0;
    left: 40px;
}
@media screen and (min-width: 751px) {
	.design01 h2{
	    position: relative;
	    text-align: right;
	    left: 0;
	}
}
.design01 .messageText{
	margin: 0 auto;
	padding: 20px 40px;
	width: calc(100% - 80px);
	z-index: 1;
}
@media screen and (min-width: 751px) {
	.design01 .messageText{
		margin: 0 0 0 auto;
		padding: 20px 60px 20px 20px;
		width: 64%;
	}
}
.design01 p{
	color: #737373;
}
.design01 p strong{
	font-size: 16px;
}
@media screen and (min-width: 751px) {
	.design01 p strong{
		font-size: 20px;
	}
}
.design01 p + p{
	padding-top: 30px;
}
@media screen and (min-width: 1001px) {
.design01 .messageText{
	width: 64%;
	padding-left: 60px;
}
.design01 .flexBox{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	padding-top: 50px;
	padding-bottom: 50px;
}
.design01 .messageImg img{
	box-shadow: 0 0 4px rgb(0 0 0 / 7%);
}
}
/* service
===========================*/
.design02 {
	position: relative;
    background-color: #f3f3f3;
}
.design02::before {
    content: '';
    position: absolute;
    width: 97%;
    height: 100%;
    background-color: #fff;
    bottom: 0;
    right: 0;
	border-radius: 90px 0px 0px 90px;
}
@media screen and (min-width: 751px) {
	.design02::before {
	    width: 95%;
			border-radius: 140px 0px 0px 140px;
	}
}


.design02 .inner{
	padding: 80px 0;
}
@media screen and (min-width:901px) and (max-width:1200px){
	.design02 .inner{
		max-width: 800px;
		margin: 0 auto;
	}
}
.clm3Design01 {
	display: block;
	max-width: 460px;
	margin: 0 auto;
}
@media screen and (min-width: 751px) {
	.clm3Design01 {
		display: flex;
		max-width: inherit;
		justify-content: space-between;
	}
}
.clm3Design01 > li {
    position: relative;
	width: calc((100% - 40px)/ 3);
	margin-right: 20px;
	background-color: #ffffff;
}
.clm3Design01 > li:last-child {
	margin-right: 0;
}
@media screen and (max-width: 1200px) {
	.clm3Design01 > li {
	width: calc((100% - 20px)/ 3);
	margin-right: 10px;
}
}
@media screen and (max-width: 750px) {
	.clm3Design01 > li {
	width: 100%;
	margin-right: 0;
	margin-bottom: 12px;
}
}
.clm3Design01 > li > dl {
	padding: 16px 0px;
}
.clm3Design01  li  dl dd {
	color: #737373;
}
@media screen and (min-width: 751px) {
.clm3Design01 > li > dl {
	padding: 20px 0px 0;
}
}
.clm3Design01 > li > dl > dt {
	position: relative;
	text-align: center;
	margin-bottom: 15px;
	font-weight: bold;
	font-size: 18px;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 769px) {
.clm3Design01 > li > dl > dt {
	font-size: 14px;
}
}
 
/* ラベル部分 左上に表示 */
.clm3Design01 li::before {
    content: "";
    top: 0;
    left: 0;
    border-bottom: 5em solid transparent;
    border-left: 5em solid #1A005D;
    position: absolute;
    z-index: 10;
}
.clm3Design01 li::after {
    content: "01";
    display: inline-block;
    position: absolute;
    top: 4px;
    color: #fff;
    left: 5px;
    z-index: 11;
    font-size: 1.6em;
    font-weight: bold;
}
.clm3Design01 li:nth-of-type(2)::after {
    content: "02";
}
.clm3Design01 li:nth-of-type(3)::after {
    content: "03";
}

/* about
===========================*/
.design03 {
	position: relative;
}
.design03::before {
    content: '';
    position: absolute;
    width: 97%;
    height: 100%;
    background-color: #f3f3f3;
    bottom: 0;
    left: 0;
	border-radius: 0px 90px 90px 0px ;
}
@media screen and (min-width: 751px) {
	.design03::before {
	    width: 95%;
		border-radius: 0px 140px 140px 0px ;
	}
}
.design03 h2{
	text-align: left;
}
@media screen and (min-width: 751px) {
	.design03 h2{
		text-align: center;
		padding: 80px 0;
	}
}
.design03 .inner{
	padding: 40px 0;
}
@media screen and (min-width: 751px) {
	.design03 .inner{
		padding: 80px 0;
	}
}

.clm3Design02{
	display: flex;
    justify-content: space-evenly;
}

@media screen and (max-width: 751px) {
	.clm3Design02{
		display: block;
	}
}
.design03 dl {
	margin-bottom: 20px;
}
@media screen and (min-width: 751px) {
	.design03 dl {
		margin-bottom: 0px;
	}
}
.design03 dl dt {
	width: 200px;
	padding: 10px;
	background-color: #fff;
    border-radius: 30px;
    font-weight: bold;
    font-size: 14px;
	text-align: center;
	margin: 0 auto 10px;
}
@media screen and (min-width: 751px) {
	.design03 dl dt {
		margin: 0 0 20px;
    	font-size: 18px;
	}
}
.design03 dl dd {
	opacity: 0.7;
	text-align: center;
}

.clm2Design01{
	width: 100%;
	margin: 0 auto;
	display: block;
    justify-content: space-between;
    flex-wrap: wrap;
}
@media screen and (min-width: 751px) {
	.clm2Design01{
		width: 90%;
		display: flex;
	}
}

.clm2Design01 li{
    position: relative;
	width: 100%;
	margin-bottom: 60px;
}
.clm2Design01 li:nth-of-type(2){
	margin-bottom: 0px;
}
@media screen and (min-width: 751px) {
	.clm2Design01 li{
		width: calc((100% - 40px)/ 2);
		margin-bottom: 0px;
	}
}

table {
	width: 100%;
	font-size: 13rem;
	color: #737373;
}
table th{
	text-align: left;
}
/*tableDesign01*/
.tableDesign01 tr{
	border-top: 1px solid #1A005D;
}
.tableDesign01 tr:last-child{
	border-bottom: 1px solid #1A005D;
}
.tableDesign01 th,
.tableDesign01 td{
	padding: 20px 0 20px 20px;
}
@media screen and (min-width: 751px) {
	table {
		font-size: 15rem;
}
	.tableDesign01 th,
	.tableDesign01 td{
		padding: 12px 0 12px 20px;
	}
}

.tableDesign01 th{
	padding: 12px 0 0 10px;
	border-top: 3px solid #1A005D;
	width: 90px;
}
@media screen and (min-width: 751px) {
	.tableDesign01 th{
		padding: 12px 0 0 10px;
		width: 110px;
	}
}
.tableDesign01 tr:last-child th{
	border-bottom: 3px solid #1A005D;
}

/*tableDesign02*/
.tableDesign02{
	width: 90%;
	margin-left: 10%;
}
.tableDesign02 tr{
	position: relative;
	display: block;
	padding-bottom: 24px;
}
.tableDesign02 tr:last-child{
	padding-bottom: 0px;
}
.tableDesign02 tr:before {
	content: "";
	position: absolute;
	top: 6px;
	left: -36px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #fff;
	border: 2px solid #1A005D;
	z-index: 100;
}
.tableDesign02 tr:after {
	content: "";
	position: absolute;
	top: 10px;
	left: -30px;
	width: 2px;
	height: 95%;
	background-color: #1A005D;
	z-index: 1;
}
.tableDesign02 th,
.tableDesign02 td {
	display: block;
	width: 100%;
}
@media screen and (max-width: 1000px) {
.tableDesign02 th,
.tableDesign02 td {
	display: block;
	width: 90%;
}
.tableDesign02 td:before {
	right: auto;
	left: 8px;
	top: -24px;
}
.tableDesign02 td:after {
	right: auto;
	left: 12px;
	top: -16px;
	height: 180%;
}
}
/* access
===========================*/
.design04 {
	position: relative;
    background-color: #f3f3f3;
}
.design04::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fff;
    bottom: 0;
    right: 0;
	border-radius: 140px 0px 0px 0px;
}
.design04 .inner{
	padding: 60px 0;
}
.clm2Design03{
	display: block;
}
.clm2Design03 li{
	width: 100%;
}
.clm2Design03 li dd.imgBox{
	position: relative;
}
.clm2Design03 li dd.imgBox a{
	padding: 10px 16px;
	color: #ffffff;
	background-color: #1A005D;
	border-radius: 0 0 0 20px;
	position: absolute;
	top: 0px;
	right: 0px;
	font-size: 12rem;
}
.clm2Design03 li dd.imgBox a::after{
	margin-left: 8px;
	content: "";
	display: inline-block;
	color: #ffffff;
	line-height: 1;
	width: 8px;
	height: 8px;
	border: 1.4px solid currentColor;
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	transform: translateX(-25%) rotate(45deg);
}
.clm2Design03 li dd.imgBox a:hover::after,
.clm2Design03 li dd.imgBox a:hover{
	color: #8EC400;
}
@media screen and (min-width: 769px) {
	.clm2Design03{
		display: flex;
	    justify-content: space-between;
	    flex-wrap: wrap;
	}
	.clm2Design03 li{
		width:calc(100% / 2 - 20px);
	}
}


.design04 dl{
    width: 80%;
    margin: 0 auto;
	padding: 10px 0 30px;
}
.design04 dt{
	position: relative;
	font-weight: bold;
	margin: 0 0 10px 0;
}
.design04 dt:before {
  content: '●';
  color: #72689A;
  margin-right: 8px;
}
.design04 dd{
	color: #737373;
}
.display_pc{
	display: none;
}
.design04 .mapArea{
	margin: 20px 0;
}
.design04 .mapArea iframe{
	height: 250px;
}
@media screen and (min-width: 769px) {
	.design04 dl{
	    width: 100%;
	    margin: 0;
	}
	.design04 .mapArea iframe{
		height: 400px;
	}
	.display_sp{
		display: none;
	}
	.display_pc{
		display: block;
	}
}
@media screen and (max-width: 769px) {
	.design04 h2{
	    width: 80%;
	    margin: 0 auto;
	}
}
/* recruit
===========================*/
#recruit{
	padding-top: 30px;
}
.design05{
	width: 100%;
	background-color: #F5F4F8;
  position: relative;
}
.design05::before{
	content: "";
	position: absolute;
	display: inline-block;
	top: 0;
	left: 50%;
   	transform: translateX(-50%);
	width: 280px;
	height: 140px;
	border-radius: 50% / 0 0 100% 100%;
	background: #fff;
}
@media screen and (min-width: 751px) {
	.design05 h2{
		padding-bottom: 100px;
	}
	.design05 .inner{
		padding-bottom: 40px;
	}
}

.clm2Design02{
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 10px 0;
}
.clm2Design02 li{
    position: relative;
    width: calc((100% - 200px) / 2);
    background-color: #fff;
    border-top: 6px solid #1A005D;
    display: grid;
    padding: 3% 40px;
    margin-bottom: 60px;
	box-shadow: 3px 3px 4px 1px rgba(25,25,25,.1);
}
.clm2Design02 li{
    position: relative;
    width: calc((100% - 200px) / 2);
    background-color: #fff;
    border-top: 6px solid #1A005D;
    display: grid;
    padding: 3% 40px;
    margin-bottom: 60px;
	box-shadow: 3px 3px 4px 1px rgba(25,25,25,.1);
}
.clm2Design02 li::after{
	content: "";
	display: inline-block;
	position: absolute;
	bottom: 10px;
	right: 10px;
	width: 140px;
	height: 90px;
	background: url("../img/ic_track.svg") no-repeat center center;
	opacity: 0.1;
}
.clm2Design02 li dl dt{
	font-weight: bold;
	margin-bottom: 10px;
}
@media screen and (min-width: 751px) {
	.clm2Design02 li dl dt{
		font-size: 18px;
	}
}
.clm2Design02 li dl dd{
	color: #333;
	line-height: 1.8;
}
.clm2Design02 li dl dd img{
	width: 100%;
}
.clm2Design02 li dl dd + dd{
	margin-top: 16px;
}
.clm2Design02 li dl dd div{
	font-size: 14px;
	margin-top: 10px;
}
.clm2Design02 li dl dd p.category{
	display: inline-block;
	color: #fff;
	background-color: #555555;
	padding: 2px 20px;
	border-radius: 20px;
	margin-right: 10px;
}
.clm2Design02 li dl dd p.small{
	display: inline-block;
	font-size: 14px;
	font-weight: bold;
}
@media screen and (max-width: 769px) {
	.clm2Design02{
		display: block;
		padding: 50px 0 10px;
	}
	.clm2Design02 li{
		width: calc(100% - 40px);
		padding: 40px 20px;
		margin-bottom: 30px;
	}
	.clm2Design02 li dl dd div{
		margin-top: 20px;
	}
	.clm2Design02 li dl dd p.small{
		display: block;
		font-size: 14px;
    	margin-top: 10px;
	}
}
@media screen and (min-width: 770px) {
	.clm2Design02 li.clm1{
	    width: 100%;
	}
	.clm2Design02 li.clm1 dl{
	    display: flex;
	    justify-content: space-between;
	    flex-wrap: wrap;
	}
	.clm2Design02 li.clm1 dl dt{
	    width:100%;
	}
	.clm2Design02 li.clm1 dl dd{
	    width: calc((100% - 40px) / 2);
	}
}



.design05 .contentsBox{
	padding-bottom: 80px;
	position: relative;
}
.design05 .number{
	margin: 0 -10px;
	line-height: 0.5;
	font-size: 77rem;
	color: #1A005D;
	opacity: 0.5;
	font-family: 'Teko', sans-serif;
	z-index: 2;
}
.design05 .number::first-letter{
	opacity: 0.2;
	vertical-align: 13px;
}
.design05 .contentsBox:nth-child(2n) .number{
	text-align: right;
}
.design05 .flexText dt{
	padding-top: 25px;
	font-size: 21rem;
	color: #1A005D;
	font-weight:600;
}
.design05 .flexText .textContents{
	padding: 10px 0 20px;
	color: #5B556D;
}
.design05 .flexBox.clm1{
    position: relative;
}
@media screen and (max-width: 750px) {
.design05 .flexBox .subText{
	display: none;
}
.design05 .flexImg{
	position: relative;
}
.design05 .contentsBox:nth-child(odd) .flexImg{
	margin-right: -20px;
}
.design05 .contentsBox:nth-child(even) .flexImg{
	margin-left: -20px;
}
.design05 .flexImg::before{
	content: "";
    position: absolute;
    top: -30px;
    right: 20px;
    width: 3000px;
    height: 100%;
    background-color: #f3f3f3;
    overflow: hidden;
    z-index: -1;
}
.design05 .contentsBox:nth-child(odd) .flexImg img{
	display: block;
	margin: 0 0  0 auto;
}
.design05 .contentsBox:nth-child(even) .flexImg::before{
    right: auto;
	left: 20px;
}		
.design05 .contentsBox .flexBox.clm1::before{
	content: "";
    position: absolute;
    top: -30px;
    right: 0;
    width: 3000px;
    height: 40px;
    background-color: #f3f3f3;
    z-index: -1;
}
.design05 .contentsBox:nth-child(even) .flexBox.clm1::before{
	right: auto;
	left: 0;
}
}
@media screen and (min-width: 751px) {
.design05 .number{
	font-size: 140rem;
}
.design05 .number::first-letter{
	opacity: 0.2;
	vertical-align: 30px;
}
.design05 .flexBox{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.design05 .contentsBox:nth-child(even) .flexBox.clm2{
	flex-direction:row-reverse;
}
.design05 .flexBox .subText{
	display: block;
	position: relative;
	color: #B2AEBB;
	font-size: 12rem;
}
.design05 .flexBox .subText::after{
	content: '';
	position: absolute;
	width: 60px;
	height: 2px;
	background-color: #B2AEBB;
	left: 0;
	bottom: 0;
	border-radius: 2px;
}
.design05 .flexText dt{
	padding-top: 8px;
}
/*2カラム*/
.design05 .clm2 .flexImg{
	width : calc(100% / 2) ;
}
.design05 .clm2 .flexText{
	width : calc(100% / 2 - 50px) ;
}
.design05 .flexBox.clm2 .flexText dd{
	display: block;
}
.design05 .contentsBox:nth-child(odd) .flexImg::before{
    content: "";
    position: absolute;
    top: 30px;
    right: 52%;
    width: 3000px;
    height: 70%;
    background-color: #f3f3f3;
    z-index: -1;
}
.design05 .contentsBox:nth-child(even) .flexImg::before{
    content: "";
    position: absolute;
    top: 30px;
    right: 0;
	left: 52%;
    width: 3000px;
    height: 70%;
    background-color: #f3f3f3;
    z-index: -1;
}
/*1カラム*/
.design05 .flexBox.clm1 .flexText{
	padding-top: 80px;
}
.design05 .flexBox.clm1 .flexText dd{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.design05 .flexBox.clm1 .flexText dd p{
	width : calc(100% / 2) ;
}
.design05 .flexBox.clm1 .flexText dd p.greenLabel{
	width : calc(100% / 2 - 50px) ;
}
.design05 .contentsBox:nth-child(odd) .flexBox.clm1::before{
	content: "";
    position: absolute;
    top: -30px;
    right: 50%;
    width: 3000px;
    height: 100px;
    background-color: #f3f3f3;
    z-index: -1;
}
.design05 .contentsBox:nth-child(even) .flexBox.clm1::before{
	content: "";
    position: absolute;
    top: -30px;
    right: 0;
	left: 50%;
    width: 3000px;
    height: 100px;
    background-color: #f3f3f3;
    z-index: -1;
}
}
@media screen and (min-width:751px) and ( max-width:1090px) {
.design05 .number{
	margin: 0 -22px -50px;
}	
}
@media screen and (min-width: 1091px) {
.design05 .number{
	margin: 0 -50px -50px;
}
}
/* vehicle
===========================*/
.design06{
	position: revert;
	margin: 80px 0 100px;
}
.clm3Design03{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
    margin: 0 auto;
    padding: 0;
}

.clm3Design03 li{
	margin-bottom: 30px;
	width:100%;
	border-radius: 10px;
	box-shadow: 3px 3px 4px 1px rgba(25,25,25,.2);
}
.clm3Design03 img{
	border-radius: 10px 10px 0 0;
}
.clm3Design03 dl{
	padding: 6vw;
	background-color: #f2f2f2;
	border-radius: 0 0 10px 10px;
}
.clm3Design03 dl dt{
	font-weight: bold;
	text-align: center;
	margin-bottom: 10px;
}
.clm3Design03 dl dd{
	font-size: 15px;
	color: #666;
}
@media screen and (min-width:750px) {
	.clm3Design03 li{
		width:calc(100% / 2 - 20px);
	}
}
@media screen and (min-width: 769px) {
	.clm3Design03 dl{
		padding: 2vw;
	}
}


/* contact
===========================*/
#contact{
	background-image: url(../img/contact_bg01.jpg) ;
	background-attachment: fixed;
	background-size: cover;
	background-position: bottom 20% center;
	background-repeat: no-repeat;
}
#contact .bg_rgba {
    background: rgba(69, 54, 121, 0.7);
    padding: 50px 0px;
	backdrop-filter: blur(4.4px);
	-webkit-backdrop-filter: blur(4.4px);
}
@media screen and (min-width: 1001px) {
#contact .bg_rgba{
    padding: 100px 0px;
}
}
@media screen and (min-width: 1001px) {
    #contact .inner {
        max-width: 1000px;
    }
}
#contact,
#contact a,
#contact h2,
#contact h2 span{
	color: #FFFFFF;
}
#contact h2 span{
	opacity: 0.8;
}
#contact .boxWrap .box{
	margin-bottom: 40px;
}
@media screen and (min-width: 1001px) {
	#contact .boxWrap{
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
	}
	#contact .boxWrap .box:nth-of-type(1){
		width : 36%;
		padding-right: 4%;
	}
	#contact .boxWrap .box:nth-of-type(1) p{
		font-size: 12px;
	}
	#contact .boxWrap .box:nth-of-type(2){
		width : 58%;
	}
	#contact .boxWrap .box{
		position: relative;
	}
	#contact .boxWrap .box::after{
		content: '';
		position: absolute;
		width: 1px;
		height: 100%;
		background-color: #fff;
		top: 0;
		right: 0;
	}	
	#contact .boxWrap .box:last-child::after{
		content: none;
	}
	#contact .boxWrap .box + .box{
		margin-top: 20px;
	}	
}
#contact .telArea p,
#contact .faxArea p{
	line-height: 1;
	text-align: left;
	font-size: 30rem;
	font-weight: bold;
}
@media screen and (min-width: 751px) {
	#contact .telArea p,
	#contact .faxArea p{
		text-align: center;
		font-size: 36rem;
	}
}
#contact .faxArea p{
	margin-top: 20px;
}
#contact .telArea p img,
#contact .faxArea p img{
	max-width: inherit;
	width: 30px;
	margin-right: 10px;
}
@media screen and (min-width: 751px) {
	#contact .telArea p img,
	#contact .faxArea p img{
		width: 40px;
    	vertical-align: sub;
    	margin-right: 20px;
	}
}
#contact .supplementArea{
    margin-top: 10px;
    margin-left: 40px;
}
#contact .supplementArea p.supplementTxt{
	font-size: 13px;
	letter-spacing: 0;
    font-weight: normal;
}
@media screen and (min-width: 751px) {
	#contact .supplementArea{
	    margin-left: 60px;
	}
}
@media screen and (min-width: 1200px) {
	#contact .supplementArea{
	    margin-left: 180px;
	}
	#contact .supplementArea p{
		text-align: left;
	}
}
#contact .mailArea{
	text-align: center;
	margin-top: 40px;
}
#contact .mailArea button{
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    appearance: none;
}
#contact .mailArea .mailBtn{
	line-height: 1.2;
	font-size: 18px;
	display: inline-block;
	text-align: center;
	width: 100%;
	margin-top: 20px;
	padding: 26px 0;
	background-color: #8EC400;
	box-shadow: 1px 1px 4px rgb(0 0 0 / 40%);
	border-radius: 4px;
	font-weight: bold;
	transition: all .2s;
	color: #ffffff;
}
@media screen and (min-width: 751px) {
	#contact .mailArea .mailBtn{
		font-size: 14px;
		padding: 20px 0;
	}
}
#contact .mailArea .mailBtn:hover{
	color: #8EC400;
	background-color: #FFFFFF;
}
#contact .mailArea img{
	max-width: inherit;
	width: 24px;
    margin-left: 20px;
    vertical-align: sub;
}
@media screen and (min-width: 1000px) {
	#contact .mailArea .mailBtn{
		width: 400px;
		margin-top: 7px;
		font-size: 16rem;
	}
	#contact .telArea,
	#contact .faxArea{
		font-size: 40rem;
	}	
}
/*pageTo*/
.pageTop a{
	content: "";
	display: block;
	position: fixed;
	bottom: 30px;
	right: 20px;
	width: 50px;
	height: 50px;
	background-color: #fff;
	border-radius: 100%;
	opacity: 0.85;
	z-index: 999;
}
.pageTop a:after {
	content: "";
	z-index: 500;
	position: absolute;
	top: 20px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 16px;
	height: 16px;
	border-top: 3px solid #1A005D;
	border-right: 3px solid #1A005D;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	transition: .4s;
}
.pageTop a:hover:after {
	top: 16px;
}

/* =============================================

footer

============================================= */
footer{
	width: 100%;
	margin: 0 auto;
	padding: 20px 0 16px;
	color: #FFFFFF;
	text-align: center;
	background: #1A005D;
}
footer .copyright{
	font-size: 12rem;
}
/* =============================================
============================================= */
.textalignCenter {
	text-align: center;
}
.textalignRight {
	text-align: right;
}
.textalignLeft {
	text-align: left;
}
