@charset "utf-8";

/*----------------------------------------
  共通
----------------------------------------*/
body {
    overflow: hidden;
}
#contentArea {
    font-weight: 500;
    background-color: #ffffff;
}
.inner {
    width: 980px;
    height: auto;
    font-weight: 500;
    margin: 0 auto;
}
sup{
    font-size: 10px;
    font-size: 1rem;
}
/*----------------------------------------
  header
----------------------------------------*/
header {
    position: relative;
    height: 60px;
    font-weight: 500;
    background-color: #fff;
}
header .logo {
    position: absolute;
    left: 9px;
    top: 8px;
}
header .logo:after {
    content: "";
	display: block;
	clear: both;
	height: 0;
	line-height: 0;
	visibility: hidden;
}
header .logo a {
    display: block;
    float: left;
    width: 178px;
}
header .logo img {
    width: 100%;
    height: auto;
}
header .logo span {
    float: left;
    display: block;
    color: #333333;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    margin: 18px auto auto 12px;
}
header .logo span br {
    display: none;
}
header .deaderInner {
    position: relative;
    /* width: 980px; */
    height: 100%;
    margin: 0 auto;
}
header .btn {
    position: absolute;
    top: 8px;
    right: 8px;
}
header .btn a {
    display: block;
    width: 258px;
    height: 44px;
    color: #ffffff;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 44px;
    text-align: center;
    text-decoration: none;
    background: #7cb742; /* Old browsers */
    background: -webkit-linear-gradient(-90deg, #7cb742 0%,#63a925 100%); /* Chrome10-25,Safari5.1-6 */
    background: -moz-linear-gradient(-90deg, #7cb742 0%, #63a925 100%); /* FF3.6-15 */
    background: linear-gradient(90deg, #7cb742 0%,#63a925 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7cb742', endColorstr='#63a925',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    padding: 0 6px;
    margin: 0 auto;
    -webkit-transition: opacity 0.4s ease 0s;
    -moz-transition: opacity 0.4s ease 0s;
    -ms-transition: opacity 0.4s ease 0s;
    transition: opacity 0.4s ease 0s;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
header .btn a:hover {
    opacity: 0.9;
}
header .btn a .btnText {
    display: inline-block;
    position: relative;
    height: 100%;
    padding-right: 22px;
}
header .btn a .btnText::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 16px;
    height: 6px;
    background-image: url(../img/icon_arrow_white_small.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
    margin-top: -4px;
}
header .btn a:hover .btnText::before {
    -webkit-animation: sdb2 1.5s infinite;
    -moz-animation: sdb2 1.5s infinite;
    -ms-animation: sdb2 1.5s infinite;
    animation: sdb2 1.5s infinite;
}
/* ======================================
	cta-float
====================================== */
.cta-float{
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	transition: all .3s;
}
.cta-float *{
    box-sizing: border-box;
}
.cta-float.active{
	opacity: 1;
	visibility: visible;
}
.cta-float-inner{
	background: rgba(0,127,195,.9);
	padding: 12px;
	width: 100%;
	position: relative;
}
.cta-float .cta-list{
	margin-top: 0;
    display: flex;
    justify-content: center;
}
.cta-float .cta-item{
    max-width: 470px;
    width: 49%;
}
.cta-float .cta-item:first-child{
    margin-right: 2%;
}
@media screen and (max-width: 599px) {
	.cta-float-inner{
		padding: 0;
		background: #fff;
	}
    .cta-float .cta-item{
        width: 50%;
    }
	.cta-float .cta-item:first-child{
		margin: 0;
	}
	.cta-float .btn{
		border-radius: 0;
		border: none;
		line-height: 1.2;
		padding: 12px 0;
		height: 63px;
	}
	.cta-float .btn span{
		padding-right: 16px;
	}
	.cta-float .btn::after{
		right: 15px;
	}
}
@media screen and (min-width: 1024px) {

}
.cta-float .sp,
.cta-float .tb,
.cta-float .pc {
	display: none;
}
@media screen and (max-width: 599px){
	.cta-float .sp{
		display: inherit;
	}
}
@media screen and (min-width: 600px) {
	.cta-float .tb {
		display: inherit;
	}
}
@media screen and (min-width: 1024px) {
	.cta-float .tb {
		display: none;
	}
	.cta-float .pc {
		display: inherit;
	}
}

a.cta-float-btn{
	position: relative;
	display: block;
	background: linear-gradient(90deg, #7cb742 0%, #63a925 100%);
	color: #fff;
	font-weight: bold;
	font-size: 1.4rem;
	max-width: 470px;
	width: 100%;
	padding: 8px 0;
    text-decoration: none;
    box-sizing: border-box;
    text-align: center;
    transition: opacity 0.4s ease 0s;
}
a.cta-float-btn:hover {
    opacity: .9;
}
a.cta-float-btn:hover .--inner::before {
    animation: sdb 1.5s infinite;
}
a.cta-float-btn .--inner{
    padding-right: 26px;
    position: relative;
}
a.cta-float-btn .--inner::before {
    position: absolute;
    content: "";
    display: block;
    top: 50%;
    right: 0;
    width: 20px;
    height: 8px;
    background-image: url(../img/icon_arrow_white.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
    margin-top: -6px;
}
a.cta-float-btn-dl{
    color: #007fc3;
	background: #fff;
}
a.cta-float-btn-dl .--inner::before{
    background-image: url(../img/icon_arrow_blue.png);
}
@media screen and (min-width: 600px) {
    a.cta-float-btn{
        font-size: 1.6rem;
        border-radius: 10px;
	}
}
@media screen and (min-width: 1024px) {
    a.cta-float-btn{
        padding: 10px 0;
		font-size: 2rem;
        height: 48px;
	}
}
/* ======================================
	pageTop
====================================== */
#toTopBtn {
	position: absolute;
	width: 42px;
	height: 42px;
	right: 0;
    top: -42px;
	background-color: #007fc3;
	-webkit-transition: all .3s;
	transition: all .3s;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	z-index: 999;
}
#toTopBtn.active {
	opacity: 1;
	visibility: visible;
}
#toTopBtn::after{
	position: absolute;
	content: '';
	width: 18px;
	height: 18px;
	border-left: 2px solid #fff;
	border-top: 2px solid #fff;
	top: 60%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}
@media screen and (min-width: 600px) {
	#toTopBtn{
		width: 65px;
		height: 65px;
        top: -65px;
	}
}
@media screen and (min-width: 768px){
	#toTopBtn{
		bottom: 103px;
	}
}
/*----------------------------------------
  secTtl
----------------------------------------*/
.secTtl {
    background: #007fc3;
    color: #ffffff;
    font-size: 4.8rem;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 32px;
    padding: 48px 20px;
}
.secTtl .yellowText {
    display: inline-block;
    color: #fff100;
}
.t-s{
    display: inline-block;
    font-size: .8em;
}
/*----------------------------------------
  mv
----------------------------------------*/
.p-mv *{
    box-sizing: border-box;
}
.p-mv__main{
  padding: 30px 30px 45px;
  text-align: center;
}
.u-main-bg{
  background:#007FC3;
  position: relative;
  overflow: hidden;
}
/* 共通 */
.u-main-bg::before{
  content: "";
  width: 834.235px;
  height: 879.129px;
  background-image: url(../img/mv-left-bg.webp);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-55%);
  -webkit-transform: translateY(-55%);
  -ms-transform: translateY(-55%);
  right: 58%;
}
.u-main-bg::after{
  content: "";
  width: 834.235px;
  height: 879.129px;
  background-image: url(../img/mv-right-bg.webp);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-38%);
  -webkit-transform: translateY(-38%);
  -ms-transform: translateY(-38%);
  left: 60%;
}
.u-main-bg__inner{
  position: relative;
  z-index: 1;
}

.mv-ttl{
  font-size: 48px;
  color: #fff;
  font-weight: 700;
  line-height: 135%;
}
.mv-ttl span{
  font-size: 2em;
  line-height: 1;
}
.mv-list{
  display: flex;
  justify-content: center;
  margin: 32px 0 0;
}
.mv-item{
  background: #fff;
  border-radius: 10px;
  padding: 16px 10px;
  max-width: 360px;
  width: 100%;
}
.mv-item:not(:last-child){
  margin-right: 25px;
}
.mv-item-num span{
  color: #007fc3;
  background: #fff100;
  font-weight: 700;
  font-size: 16px;
  display: inline-block;
  padding: 5px 28px 4px;
  border-radius: 16px;
  position: relative;
}
.mv-item-num span::after{
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #fff100 transparent transparent transparent;
  border-width: 8px 9px 0px 9px;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.mv-item-txt{
  color: #007fc3;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  margin: 23px 0 12px;
}
.mv-item-txt .--l{
  font-size: 1.4em;
}
.mv-item-txt .--dots{
  background-image: radial-gradient(circle at center, #007fc3 20%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  padding-top: .45em;
}

@media screen and (max-width: 1100px){
  .mv-ttl{
    font-size: 44px;
  }
  .mv-item-txt{
    font-size: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .p-mv__main{
    background-position:
    center left -20%,
    center right -20%,
    center;
    padding: 20px 20px 30px;
  }
  .mv-ttl{
    font-size: 36px;
  }
  .mv-ttl span{
    font-size: 1.8em;
  }
  .mv-list{
    display: block;
  }
  .mv-item{
    margin: 15px auto;
    padding: 12px;
  }
  .mv-item:not(:last-child){
    margin: 15px auto;
  }
  .mv-item-txt{
    margin: 18px 0 7px;
  }
}

@media screen and (max-width: 900px) {
  .mv-list{
    margin: 20px 0 0;
  }
  .mv-item-num span{
    font-size: 14px;
  }
  .p-reason__wrap{
    padding-top: 50px;
  }
  .p-mv__bottom .c-cv-btn > * {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .u-main-bg::before{
    width: 200px;
    height: 200px;
    background-image: url(../img/left-bg-sp.webp);
    top: 0;
    transform: initial;
    -webkit-transform: initial;
    -ms-transform: initial;
    right: initial;
    left: 0;
  }
  .u-main-bg::after{
    width: 200px;
    height: 200px;
    background-image: url(../img/right-bg-sp.webp);
    top: initial;
    bottom: 0;
    transform: initial;
    -webkit-transform: initial;
    -ms-transform: initial;
    left: initial;
    right: 0;
  }
}
/*----------------------------------------
  freeTrialArea
----------------------------------------*/
.freeTrialArea {
    padding: 30px 0 15px;
}
.freeTrialArea .btnBox {
    position: relative;
    background-color: #ffffff;
    padding: 0 150px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
}
.freeTrialArea .btnBox .title {
    position: relative;
    color: #007fc3;
    font-size: 20px;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 12px;
}


.freeTrialArea .btnBox .caption {
    color: #007fc3;
    font-size: 40px;
    font-size: 4.0rem;
    font-weight: bold;
    line-height: 1em;
    text-align: center;
    margin-bottom: 15px;
}
.freeTrialArea .btnBox .btn {
    position: relative;
    color: #333333;
    font-size: 30px;
    font-size: 3.0rem;
    font-weight: 500;
    line-height: 1em;
    text-align: center;
    z-index: 1;
}
.freeTrialArea .btnBox .btn .speechBalloon {
    position: absolute;
    top: -12px;
    left: -10px;
    width: 120px;
    height: 50px;
    color: #333333;
    font-size: 23px;
    font-size: 2.3rem;
    font-weight: 500;
    line-height: 1em;
    text-align: center;
    background-color: #fff100;
    padding: 14px 0 13px 5px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 1;
}
.freeTrialArea .btnBox .btn .speechBalloon::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -15px;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 24px 0px 0 22px;
    border-color: #fff100 transparent transparent transparent;
}
.freeTrialArea .btnBox .btn a {
    display: block;
    width: 552px;
    height: 96px;
    color: #ffffff;
    font-size: 38px;
    font-size: 3.8rem;
    font-weight: 500;
    line-height: 96px;
    text-align: center;
    text-decoration: none;
    background: #7cb742; /* Old browsers */
    background: -webkit-linear-gradient(-90deg, #7cb742 0%,#63a925 100%); /* Chrome10-25,Safari5.1-6 */
    background: -moz-linear-gradient(-90deg, #7cb742 0%, #63a925 100%); /* FF3.6-15 */
    background: linear-gradient(90deg, #7cb742 0%,#63a925 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7cb742', endColorstr='#63a925',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
    padding: 0 6px;
    margin: 0 auto 25px;
    -webkit-transition: opacity 0.4s ease 0s;
    -moz-transition: opacity 0.4s ease 0s;
    -ms-transition: opacity 0.4s ease 0s;
    transition: opacity 0.4s ease 0s;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.freeTrialArea .btnBox .btn a:hover {
    opacity: 0.9;
}
.freeTrialArea .btnBox .btn a .btnText {
    display: inline-block;
    position: relative;
    height: 100%;
    padding-right: 35px;
}
.freeTrialArea .btnBox .btn a .btnText::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 28px;
    height: 11px;
    background-image: url(../img/icon_arrow_white.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
    margin-top: -3px;
}
.freeTrialArea .btnBox .btn a:hover .btnText::before {
    -webkit-animation: sdb 1.5s infinite;
    -moz-animation: sdb 1.5s infinite;
    -ms-animation: sdb 1.5s infinite;
    animation: sdb 1.5s infinite;
}
.freeTrialArea .btnBox .btn a .btnText span {
    font-size: 30px;
    font-size: 3.0rem;
}
.freeTrialArea .btnBox .note {
    color: #007fc3;
    font-size: 21px;
    font-size: 2.1rem;
    font-weight: 500;
    line-height: 1em;
    text-align: center;
}

.freeTrialArea-note{
}
.freeTrialArea-note li{
    text-align: right;
}

.freeTrialArea .contactUs {
    text-align: center;
}
.freeTrialArea .contactUs a {
    display: inline-block;
    position: relative;
    height: 100%;
    color: #007fc3;
    font-size: 17px;
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1em;
    padding-right: 22px;
}
.freeTrialArea .contactUs a::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 16px;
    height: 6px;
    background-image: url(../img/icon_arrow_blue.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
    margin-top: -4px;
}
@media screen and (max-width:992px){
    .freeTrialArea .btnBox .btn{
        max-width: 552px;
        margin: 0 auto;
    }
}
/*----------------------------------------
  feature
----------------------------------------*/
.feature{
    padding: 0 0 40px;
}
.feature *{
    box-sizing: border-box;
}
.feature .secTtl{
    margin-bottom: 42px;
}
.featureTtl{
    text-align: center;
    color: #007fc3;
    font-weight: 500;
    font-size: 4.8rem;
    line-height: 1.2;
    margin-bottom: .3em;
}
.featureTtl sup{
    font-size: .5em;
}
.featureSubTtl{
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2.5em;
}
.featureGraph{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}
.featureGraph li:not(:last-child){
    margin-right: 24px;
}
.featureGraph li img{
    width: 100%;
}
@media screen and (max-width: 992px){
    .feature .inner{
        width: auto;
        margin: 0 15px;
    }
    .feature .secTtl{
        margin-bottom: 24px;
    }
    .featureTtl{
        font-size: 2.6rem;
    }
    .featureSubTtl{
        font-size: 1.6rem;
    }
    .featureGraph{
        display: block;
    }
    .featureGraph li{
        margin: 0 auto 20px;
        max-width: 400px;
        width: 100%;
    }
    .featureGraph li:not(:last-child){
        margin: 0 auto 20px;
    }
    .featureGraph li:nth-child(3){
        max-width: 240px;
        width: 62%;
    }
}
/*----------------------------------------
  plan
----------------------------------------*/
.plan{
    background: #f2f2f2;
    padding: 0 0 45px;
}
.planLead{
    text-align: center;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.75;
    margin-top: 35px;
}
.planLead .cl-blue{
    color: #007fc3;
    font-weight: bold;
}
.planList{
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    margin-top: 45px;
}
.planItem{
    background: #fff;
	max-width: 470px;
	width: 49%;
    border-radius: 6px;
    position: relative;
}
.planItemSubTtl{
	position: absolute;
	left: 50%;
	top: -20px;
	transform: translateX(-50%);
	color: #fff;
	background: linear-gradient(90deg, #7cb742 0%, #63a925 100%);
	text-align: center;
	border-radius: 8px;
	width: 100%;
	font-weight: bold;
    font-size: 1.8rem;
    max-width: 350px;
    padding: 5px 6px 8px;
    box-sizing: border-box;
}
.planItemSubTtl::after{
	position: absolute;
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-color: #7bb642 transparent transparent transparent;
	border-width: 13px 10.5px 0px 10.5px;
	left: 50%;
	top: 100%;
	transform: translateX(-50%);
}
.planItemSh{
    text-align: center;
	font-size: 3rem;
	font-weight: 500;
    color: #007fc3;
    padding: 45px 0 0;
}
.planItemBody{
	padding: 20px 25px 0;
}
.planItemCont{
	padding: 24px 0;
	box-sizing: border-box;
}
.planItemBody .planItemCont:first-child{
	border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
}
.planItemBody .planItemCont:last-child{
    padding-top: 0;
}
.planItemContTtl{
	text-align: center;
	color: #007fc3;
	font-weight: 700;
	font-size: 1.8rem;
    margin-bottom: 15px;
}
.planItemContTxt{
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.5625;
    font-weight: 500;
    min-height: 50px;
}
.planItemContTxt span{
    font-weight: 700;
    background: #fff104;
}
.planItemContImg{
	text-align: center;
    height: 237px;
    margin: 5px 0 10px;
}
.planItemContImg img{
	height: 100%;
    max-width: 100%;
}
.planItemContImg1{
    padding-right: 30px;
}
.planItemWrap{
    background: #f0f7fb;
    border-radius: 16px;
    padding: 15px 25px 12px;
}
.planItemWrapTtl{
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 10px;
}
.planItemWrapList li{
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.2;
    padding: 5px 0 5px 30px;
    position: relative;
}
.planItemWrapList li::before{
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    width: 18px;
    height: 14px;
    transform: translateY(-50%);
    background: url(../img/icon_plan01.svg) no-repeat center center / 100%;
}
@media screen and (max-width: 992px){
    .plan{
        padding: 0 0 30px;
    }
    .planLead{
        font-size: 1.4rem;
        margin: 0 15px;
    }
    .planList{
        display: block;
        margin: 0 15px;
    }
    .planItem{
        width: 100%;
        margin: 50px auto 0;
    }
    .planItemSubTtl{
        font-size: 1.6rem;
        max-width: 280px;
        padding: 3px 6px 5px;
    }
    .planItemSh{
        font-size: 2rem;
    }
    .planItemBody {
        padding: 15px 15px 0;
    }
    .planItemContImg{
        margin: 25px 0 0;
    }
    .planItemContTtl{
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    .planItemContTxt{
        font-size: 1.4rem;
    }
    .planItemContImg{
        height: auto;
        width: 60%;
        margin: 0 auto;
    }
    .planItemWrap{
        padding: 15px;
    }
    .planItemWrapTtl{
        font-size: 1.5rem;
    }
    .planItemWrapList li{
        font-size: 1.5rem;
        padding: 4px 0 4px 24px;
    }
    .planItemWrapList li::before{
        width: 16px;
    }
  }
/*----------------------------------------
  offer
----------------------------------------*/
.offer{
    padding-bottom: 40px;
}
.offer * {
    box-sizing: border-box;
}
.offer-img{
    margin: 30px auto 0;
}
.offer-img img{
    width: 100%;
    max-width: 100%;
}
@media screen and (max-width: 992px){
    .offer{
        padding-bottom: 30px;
    }
    .offer .planLead{
        margin: 0;
    }
    .offer .inner{
        padding: 0 15px;
    }
    .offer-img{
        margin: 30px auto 5px;
    }
}
/*----------------------------------------
  cv
----------------------------------------*/
.cv{
    padding: 40px 0 50px;
    background: #8fbad9;
}
.cvTtl{
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: 3.4rem;
    text-shadow: 0 0 10px #0084b2;
}
.cvList{
    display: flex;
    justify-content: space-between;
    margin-top: 35px;
}
.cvItem{
    background: #fff;
    border-radius: 4px;
    max-width: 470px;
    width: 49%;
    padding: 22px 35px;
    box-sizing: border-box;
}
.cvItemImg{
    max-width: 274px;
    width: 100%;
    margin: 0 auto 12px;
}
.cvItemImg img{
    width: 100%;
}
.cvItemTxt{
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}
a.cvBtn{
    border-radius: 10px;
    color: #fff;
    background: #7cb742;
    display: block;
    text-align: center;
    font-size: 2.6rem;
    padding: 15px 5px;
    transition: opacity 0.4s ease 0s;
}
a.cvBtn:hover{
    text-decoration: none;
    opacity: .9;
}
a.cvBtn.--dl{
    background: #28aac3;
}
.cvBtnInline{
    padding-right: 26px;
    position: relative;
}
.cvBtnInline:before {
    position: absolute;
    content: "";
    display: block;
    top: 50%;
    right: 0;
    width: 21px;
    height: 8px;
    background-image: url(../img/icon_arrow_white.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
    margin-top: -3px;
}
a.cvBtn:hover .cvBtnInline:before{
    animation: sdb 1.5s infinite;
}
.cvBtnInline .small{
    font-size: .8em;
}
@media screen and (max-width: 992px){
    .cv{
        padding: 30px 0;
    }
    .cvTtl{
        font-size: 2.2rem;
        margin: 0 15px;
    }
    .cvList{
        display: block;
        margin: 0 15px;
    }
    .cvItem{
        width: 100%;
        margin: 20px auto;
        padding: 20px 25px;
    }
    .cvItemImg{
        width: 80%;
    }
    .cvItemTxt{
        font-size: 1.6rem;
    }
    a.cvBtn{
        font-size: 1.8rem;
    }
    .cvBtnInline{
        padding-right: 22px;
    }
    .cvBtnInline:before{
        width: 18px;
    }
}
/*----------------------------------------
  threeReasonsArea
----------------------------------------*/
.threeReasonsArea {
    margin-bottom: 80px;
}
.threeReasonsArea ul li {
    position: relative;
    width: 100%;
    height: auto;
}
.threeReasonsArea ul li:not(:last-child) {
    margin-bottom: 80px;
}
.threeReasonsArea ul li:nth-child(odd) {
    min-height: 397px;
}
.threeReasonsArea ul li:nth-child(even) {
    min-height: 305px;
}
.threeReasonsArea ul li .imgArea {
    position: absolute;
    top: 0;
    width: 608px;
    height: auto;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    overflow: hidden;
}
.threeReasonsArea ul li:nth-child(odd) .imgArea {
    left: 0;
}
.threeReasonsArea ul li:nth-child(even) .imgArea {
    right: 0;
    width: 490px;
}
.threeReasonsArea ul li .imgArea img {
    display: block;
    width: 100%;
    height: auto;
}
.threeReasonsArea ul li .textArea {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 1;
}
.threeReasonsArea ul li:nth-child(odd) .textArea {
    width: 392px;
    min-height: 397px;
    padding-left: 40px;
    margin: 0 0 0 auto;
}
.threeReasonsArea ul li:nth-child(even) .textArea {
    width: 490px;
    min-height: 305px;
    padding-right: 40px;
    margin: 0 auto 0 0;
}
.threeReasonsArea ul li .textArea h3 {
    color: #007fc3;
    font-size: 38px;
    font-size: 3.8rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 10px;
}
.threeReasonsArea ul li .textArea .point {
    position: relative;
    color: #007fc3;
    font-size: 19px;
    font-size: 1.9rem;
    font-weight: 500;
    line-height: 1em;
}
.threeReasonsArea ul li:nth-child(odd) .textArea .point {
    text-align: right;
    margin: 0 0 15px auto;
}
.threeReasonsArea ul li:nth-child(even) .textArea .point {
    text-align: left;
    margin: 0 auto 15px 0;
}
.threeReasonsArea ul li .textArea .point::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    height: 1px;
    background-color: #d9d9d9;
    margin-top: -1px;
    z-index: -1;
}
.threeReasonsArea ul li:nth-child(odd) .textArea .point::after {
    right: 0;
    width: 405px;
}
.threeReasonsArea ul li:nth-child(even) .textArea .point::after {
    left: 0;
    width: 555px;
}
.threeReasonsArea ul li .textArea .point p {
    width: 85px;
    background-color: #ffffff;
}
.threeReasonsArea ul li:nth-child(odd) .textArea .point p {
    text-align: right;
    margin: 0 0 20px auto;
}
.threeReasonsArea ul li:nth-child(even) .textArea .point p {
    text-align: left;
    margin: 0 auto 25px 0;
}
.threeReasonsArea ul li .textArea .point span {
    display: inline-block;
    margin-left: 5px;
}
.threeReasonsArea ul li .textArea .text {
    color: #515151;
    font-size: 17px;
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1.8;
    text-align: left;
    margin-bottom: 8px;
}
.threeReasonsArea ul li .annotation {
    color: #515151;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.4;
    text-align: left;
}
.threeReasonsArea ul li .textArea .iconImg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    font-size: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.threeReasonsArea ul li:nth-child(odd) .textArea .iconImg {
    text-align: left;
    padding-left: 40px;
}
.threeReasonsArea ul li:nth-child(even) .textArea .iconImg {
    text-align: right;
    padding-right: 60px;
}
.threeReasonsArea ul li .textArea .iconImg img {
    display: inline-block;
}
/*----------------------------------------
  yourRecruitmentArea
----------------------------------------*/
.yourRecruitmentArea {
    margin-bottom: 70px;
}
.yourRecruitmentArea ul {
    padding: 0 40px;
    opacity: 1;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
}
.yourRecruitmentArea ul::after {
    content: "";
    display: block;
    clear: both;
    height: 0;
    line-height: 0;
    visibility: hidden;
}
.yourRecruitmentArea ul li {
    /* float: left; */
    width: 420px;
    opacity: 0;
}
.yourRecruitmentArea ul li:not(:nth-last-child(-n+2)) {
    margin-bottom: 40px;
}
.yourRecruitmentArea ul li:nth-child(even) {
    margin-left: 60px;
}
.yourRecruitmentArea ul li:nth-child(1) {
    -webkit-transition: all 0.5s ease-out 0.2s;
    -moz-transition: all 0.5s ease-out 0.2s;
    -ms-transition: all 0.5s ease-out 0.2s;
    transition: all 0.5s ease-out 0.2s;
}
.yourRecruitmentArea ul li:nth-child(2) {
    -webkit-transition: all 0.5s ease-out 0.5s;
    -moz-transition: all 0.5s ease-out 0.5s;
    -ms-transition: all 0.5s ease-out 0.5s;
    transition: all 0.5s ease-out 0.5s;
}
.yourRecruitmentArea ul li:nth-child(3) {
    -webkit-transition: all 0.5s ease-out 0.8s;
    -moz-transition: all 0.5s ease-out 0.8s;
    -ms-transition: all 0.5s ease-out 0.8s;
    transition: all 0.5s ease-out 0.8s;
}
.yourRecruitmentArea ul li:nth-child(4) {
    -webkit-transition: all 0.5s ease-out 1.1s;
    -moz-transition: all 0.5s ease-out 1.1s;
    -ms-transition: all 0.5s ease-out 1.1s;
    transition: all 0.5s ease-out 1.1s;
}
.yourRecruitmentArea ul li dl.textArea {
    position: relative;
    padding-top: 156px;
}
.yourRecruitmentArea ul li dl.textArea::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 136px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 148px auto;
}
.yourRecruitmentArea ul li:nth-child(1) dl.textArea::before {
    background-image: url(../img/your_recruitment_icon04.png);
}
.yourRecruitmentArea ul li:nth-child(2) dl.textArea::before {
    background-image: url(../img/your_recruitment_icon01.png);
}
.yourRecruitmentArea ul li:nth-child(3) dl.textArea::before {
    background-image: url(../img/your_recruitment_icon03.png);
}
.yourRecruitmentArea ul li:nth-child(4) dl.textArea::before {
    background-image: url(../img/your_recruitment_icon02.png);
}
.yourRecruitmentArea ul li dl.textArea dt {
    color: #007fc3;
    font-size: 38px;
    font-size: 3.8rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 15px;
}
.yourRecruitmentArea ul li dl.textArea dd {
    color: #505050;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
}
/*----------------------------------------
  companyVoiceArea
----------------------------------------*/
.companyVoiceArea {
    background-color: #f2f2f2;
    padding: 0 0 90px;
}
.companyVoiceArea .secTtl{
    margin-bottom: 56px;
}
.companyVoiceArea ul li {
    position: relative;
    width: 100%;
    height: auto;
}
.companyVoiceArea ul li:not(:last-child) {
    margin-bottom: 70px;
}
.companyVoiceArea ul li .imgArea {
    position: absolute;
    top: 0;
    width: 490px;
    height: auto;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    overflow: hidden;
}
.companyVoiceArea ul li:nth-child(odd) .imgArea {
    left: 0;
}
.companyVoiceArea ul li:nth-child(even) .imgArea {
    right: 0;
}
.companyVoiceArea ul li .imgArea img {
    display: block;
    width: 100%;
    height: auto;
}
.companyVoiceArea ul li .textArea {
    position: relative;
    width: 490px;
    min-height: 320px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 1;
}
.companyVoiceArea ul li:nth-child(odd) .textArea {
    padding: 0 20px 0 30px;
    margin: 0 0 0 auto;
}
.companyVoiceArea ul li:nth-child(even) .textArea {
    padding: 0 30px 0 20px;
    margin: 0 auto 0 0;
}
.companyVoiceArea ul li .textArea h3 {
    color: #007fc3;
    font-size: 32px;
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 15px;
}
.companyVoiceArea ul li .textArea .case {
    position: relative;
    color: #007fc3;
    font-size: 19px;
    font-size: 1.9rem;
    font-weight: 500;
    line-height: 1em;
}
.companyVoiceArea ul li .textArea .case::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    width: 505px;
    height: 1px;
    background-color: #d0d0d0;
    margin-top: -1px;
    z-index: -1;
}
.companyVoiceArea ul li:nth-child(odd) .textArea .case::after {
    right: 0;
}
.companyVoiceArea ul li:nth-child(even) .textArea .case::after {
    left: 0;
}
.companyVoiceArea ul li .textArea .case p {
    width: 85px;
    background-color: #f2f2f2;
}
.companyVoiceArea ul li:nth-child(odd) .textArea .case p {
    text-align: right;
    margin: 0 0 20px auto;
}
.companyVoiceArea ul li:nth-child(even) .textArea .case p {
    text-align: left;
    margin: 0 auto 25px 0;
}
.companyVoiceArea ul li .textArea .case span {
    display: inline-block;
    margin-left: 5px;
}
.companyVoiceArea ul li .textArea .text {
    color: #333333;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 8px;
}
/*----------------------------------------
  faqArea
----------------------------------------*/
.faqArea {
    margin-bottom: 56px;
}
.faqArea ul li {
    border: 1px solid #d9d9d9;
    padding: 40px 70px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
}
.faqArea ul li:not(:last-child) {
    margin-bottom: 30px;
}
.faqArea ul li dl dt {
    color: #007fc3;
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.4;
    text-align: left;
    border-bottom: 1px solid #d9d9d9;
    padding: 0 0 20px 0;
    margin-bottom: 20px;
}
.faqArea ul li dl dt span {
    font-size: 46px;
    font-size: 4.6rem;
}
.faqArea ul li dl dd .answer {
    color: #c34900;
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: left;
    text-indent: -55px;
    padding-left: 55px;
    margin-bottom: 20px;
}
.faqArea ul li dl dd .answer span {
    font-size: 46px;
    font-size: 4.6rem;
}
.faqArea ul li dl dd .note {
    color: #333333;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.6;
    text-align: left;
    padding-left: 55px;
}
/*----------------------------------------
  serviceContentsArea
----------------------------------------*/
.serviceContentsArea {
    background-color: #f2f2f2;
    padding: 0 0 72px;
}
.serviceContentsArea .secTtl{
    margin-bottom: 45px;
}
.serviceContentsArea table {
    border-collapse: separate;
}
.serviceContentsArea table tr th, .serviceContentsArea table tr td {
    height: 50px;
    vertical-align: middle;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.serviceContentsArea table tr:first-child th {
    color: #333333;
    font-size: 20px;
    font-size: 2.0rem;
    font-weight: bold;
    line-height: 1em;
    text-align: center;
    background-color: #f6f6f6;
}
.serviceContentsArea table tr:first-child th:nth-child(2) {
    border-top: 1px solid #c2c2c2;
    border-left: 1px solid #c2c2c2;
    border-bottom: 1px solid #d9d9d9;
    border-right: 1px solid #d9d9d9;
    -webkit-border-radius: 5px 0 0 0;
    -moz-border-radius: 5px 0 0 0;
    -ms-border-radius: 5px 0 0 0;
    border-radius: 5px 0 0 0;
}
.serviceContentsArea table tr:first-child th:nth-child(3) {
    border-top: 1px solid #c2c2c2;
    border-right: 1px solid #c2c2c2;
    border-bottom: 1px solid #d9d9d9;
    -webkit-border-radius: 0 5px 0 0;
    -moz-border-radius: 0 5px 0 0;
    -ms-border-radius: 0 5px 0 0;
    border-radius: 0 5px 0 0;
}
.serviceContentsArea table tr:last-child th:nth-child(1) {
    -webkit-border-radius: 0 0 0 5px;
    -moz-border-radius: 0 0 0 5px;
    -ms-border-radius: 0 0 0 5px;
    border-radius: 0 0 0 5px;
}
.serviceContentsArea table tr:last-child td:nth-child(3) {
    -webkit-border-radius: 0 0 5px 0;
    -moz-border-radius: 0 0 5px 0;
    -ms-border-radius: 0 0 5px 0;
    border-radius: 0 0 5px 0;
}
.serviceContentsArea table tr:first-child th, .serviceContentsArea table tr:last-child th {
    height: 70px;
}
.serviceContentsArea table tr:first-child th:nth-child(1) {
    width: 286px;
}
.serviceContentsArea table tr:first-child th:nth-child(2), .serviceContentsArea table tr:first-child th:nth-child(3) {
    width: 347px;
}
.serviceContentsArea table tr:not(:first-child) th {
    color: #ffffff;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1em;
    text-align: center;
    letter-spacing: 1px;
    border: solid #6dacce;
    border-width: 0 0 1px 1px;
    background-color: #007fc3;
}
.serviceContentsArea table tr:nth-child(2) th {
    border-width: 1px 0 1px 1px;
    -webkit-border-radius: 5px 0 0 0;
    -moz-border-radius: 5px 0 0 0;
    -ms-border-radius: 5px 0 0 0;
    border-radius: 5px 0 0 0;
}
.serviceContentsArea table tr th.noStyle {
    border: none;
    background-color: rgba(255,255,255,0);
}
.serviceContentsArea table tr th.w60 {
    width: 60px;
}
.serviceContentsArea table tr th.textSmall {
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: left;
    padding: 0 0 0 10px; 
}
.serviceContentsArea table tr th.textSmall.textTwoRow {
    line-height: 1.4;
}
.serviceContentsArea table tr td {
    color: #333333;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    border: solid #d9d9d9;
    border-width: 0 1px 1px 0;
    background-color: #ffffff;
}
.serviceContentsArea table tr td:nth-child(2), .serviceContentsArea table tr:nth-child(4) td:nth-child(3) {
    border-width: 0 1px 1px 1px;
}
.serviceContentsArea table tr td .note {
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 500;
}
.serviceContentsArea table tr td .circle {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: #007fc3;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}
.serviceContentsArea table tr td .hyphen {
    display: inline-block;
    position: relative;
    width: 18px;
    height: 16px;
}
.serviceContentsArea table tr td .hyphen::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #666666;
    margin-top: -1px;
}
/*----------------------------------------
  applicationFlow
----------------------------------------*/
.applicationFlow {
    padding: 0 0 90px;
}
.applicationFlow .secTtl{
    margin-bottom: 72px;
}
.applicationFlow ul {
    margin-bottom: 20px;
    opacity: 1;
}
.applicationFlow ul::after {
    content: "";
	display: block;
	clear: both;
	height: 0;
	line-height: 0;
	visibility: hidden;
}
.applicationFlow ul li {
    float: left;
    position: relative;
    width: 227px;
    height: 93px;
    color: #ffffff;
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
    background-color: #007fc3;
    padding: 17px 15px 0;
    -webkit-border-radius: 5px 0 0 5px;
    -moz-border-radius: 5px 0 0 5px;
    -ms-border-radius: 5px 0 0 5px;
    border-radius: 5px 0 0 5px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    opacity: 0;
}
.applicationFlow ul li:first-child, .applicationFlow ul li:last-child {
    padding: 32px 15px 0;
}
.applicationFlow ul li:not(:first-child) {
    margin-left: 24px;
}
.applicationFlow ul li:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 0;
    right: -40px;
    width: 42px;
    height: 93px;
    background-image: url(../img/icon_flow_arrow.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
    z-index: 1;
}
.applicationFlow ul li:last-child {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
}
.applicationFlow ul li:nth-child(1) {
    -webkit-transition: all 0.5s ease-out 0.2s;
    -moz-transition: all 0.5s ease-out 0.2s;
    -ms-transition: all 0.5s ease-out 0.2s;
    transition: all 0.5s ease-out 0.2s;
    z-index: 3;
}
.applicationFlow ul li:nth-child(2) {
    -webkit-transition: all 0.5s ease-out 0.4s;
    -moz-transition: all 0.5s ease-out 0.4s;
    -ms-transition: all 0.5s ease-out 0.4s;
    transition: all 0.5s ease-out 0.4s;
    z-index: 2;
}
.applicationFlow ul li:nth-child(3) {
    -webkit-transition: all 0.5s ease-out 0.6s;
    -moz-transition: all 0.5s ease-out 0.6s;
    -ms-transition: all 0.5s ease-out 0.6s;
    transition: all 0.5s ease-out 0.6s;
    z-index: 1;
}
.applicationFlow ul li:nth-child(4) {
    -webkit-transition: all 0.5s ease-out 0.8s;
    -moz-transition: all 0.5s ease-out 0.8s;
    -ms-transition: all 0.5s ease-out 0.8s;
    transition: all 0.5s ease-out 0.8s;
    z-index: 0;
}
.applicationFlow ul li:last-child br {
    display: none;
}
.applicationFlow ul li .speechBalloon {
    position: absolute;
    top: -30px;
    left: 20px;
    width: 96px;
    height: 40px;
    color: #333333;
    font-size: 23px;
    font-size: 2.3rem;
    font-weight: 500;
    line-height: 1em;
    text-align: center;
    background-color: #fff100;
    padding: 10px 0 8px 0;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 1;
}
.applicationFlow ul li .speechBalloon::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 24px 22px 0 0;
    border-color: #fff100 transparent transparent transparent;
}
.applicationFlow .annotation {
    color: #333333;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1em;
    text-align: center;
}
/*----------------------------------------
  formArea
----------------------------------------*/
.formArea{
    padding: 0 0 62px;
}
.formArea .secTtl{
    margin-bottom: 62px;
}
.formTtl{
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.77;
    margin-bottom: 35px;
}
.formbox{
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,.1);
    padding: 40px 20px 60px;
    margin: 0 15px;
}
@media screen and (max-width: 599px){
    .formArea{
        padding: 0 0 40px;
    }
    .formArea .secTtl{
        margin-bottom: 24px;
    }
    .formbox{
        border-radius: 12px;
        padding: 30px 20px;
    }
    .formTtl{
        font-size: 14px;
        margin-bottom: 20px;
    }
}

/* --------------------- マルケトフォーム --------------------- */
    .mktoForm {
        width: 100% !important;
        max-width: 740px;
        margin: 0 auto;
    }
    .mktoForm .mktoOffset {
        height: 0 !important;
        width: 0 !important;
    }
    .mktoForm .mktoFieldDescriptor {
        margin-bottom: 30px !important;
        width: 100%;
    }
    .mktoForm .mktoFieldWrap {
        width: 100%;
    }
    .mktoForm .mktoFieldWrap select#M_Form_department {
        width: 280px !important;
    }
    .mktoForm .mktoFieldWrap select:invalid {
        color: #888;
    }
    .mktoForm .mktoLabel {
        font-size: 1.6rem;
        width: 245px !important;
        padding: 0 30px 0 15px;
        position: relative;
        font-weight: bold;
        box-sizing: border-box;
    }
    .mktoForm .mktoAsterix {
        position: absolute;
        right: 0;
        font-size: 1.4rem;
        color: #F42859 !important;
        line-height: 1;
        border: 1px solid #F42859;
        border-radius: 3px;
        padding: 1px 3px 2px !important;
        margin-right: 5px;
    }
    .mktoForm .mktoField {
        width: 100% !important;
        max-width: 380px !important;
        -webkit-box-shadow: none !important;
                box-shadow: none !important;
        border-radius: 4px !important;
        border: 1px solid #d2d2d2 !important;
        padding: .6em .6em !important;
        font-size: 1.5rem !important;
    }
    .mktoForm .mktoRequiredField input{
        background: #fef4f7;
    }
    .mktoForm input[id=LastName],
    .mktoForm input[id=FirstName],
    .mktoForm input[id=pca_surname_kana],
    .mktoForm input[id=pca_firstname_kana] {
        width: 185px !important;
    }
    .mktoForm input[type=checkbox] + label:before,
    .mktoForm input[type=radio] + label:before {
        -webkit-box-shadow: none !important;
                box-shadow: none !important;
        margin-left: -2em !important;
        top: 1.2em;
        left: 0;
    }
    .mktoForm input[type=radio] + label:before {
        width: 1.4em !important;
        height: 1.4em !important;
    }
    .mktoForm input[type=radio]:checked + label:before {
        background: none !important;
    }
    .mktoForm input[type=radio]:checked + label:after {
        position: absolute;
        content: "";
        width: 0.8em;
        height: 0.8em;
        background: #007fc3;
        left: 0.55em;
        margin-left: -2em !important;
        border-radius: 50%;
        bottom: 0.19em;
    }
    .mktoForm input[type=checkbox]{
        opacity: 0;
    }
    .mktoForm input[type=checkbox] + label:before{
        content: "";
        position: absolute;
        width: 1em;
        height: 1em;
        margin-left: -1.5em;
        line-height: 1em;
        background-color: #fff;
        box-shadow: inset 1px 1px 4px 1px #ddd;
        font-family: Arial, sans-serif;
        font-size: 1.3rem;
        border: 1px solid #BBDCF5;
        border-radius: 2px;
    }
    .mktoForm input[type=checkbox] + label:before {
        width: 1.2em !important;
        height: 1.2em !important;
    }
    .mktoForm input[type=checkbox]:checked + label:before {
        content: "" !important;
    }
    .mktoForm input[type=checkbox] + label:after {
        position: absolute;
        content: "";
        width: 1em;
        height: 0.5em;
        border-bottom: 0.2em solid #007fc3;
        border-left: 0.2em solid #007fc3;
        left: 0.34em;
        margin-left: -2.1em !important;
        top: 1.2em;
        -webkit-transform: rotate(-45deg);
                transform: rotate(-45deg);
        display: none;
    }
    .mktoForm input[type=checkbox]:checked + label:after {
        display: block;
    }
    .mktoForm .mktoRadioList > label,
    .mktoForm .mktoCheckboxList > label {
        cursor: pointer;
        position: relative;
        margin-left: 1.8em;
        font-size: 1.5rem;
    }
    .mktoForm label[id=LblFirstName],
    .mktoForm label[id=Lblpca_firstname_kana] {
        display: none;
    }
    .mktoForm #LastNameField,
    .mktoForm #FirstNameField,
    .mktoForm #pca_surname_kanaField,
    .mktoForm #pca_firstname_kanaField {
        width: auto;
    }
    .mktoForm #LblLastName,
    .mktoForm #Lblpca_surname_kana {
    }
    .mktoForm textarea[rows="3"] {
        height: 7em !important;
    }
    .mktoForm .mktoHtmlText {
        width: 100% !important;
        font-size: 1.4rem;
        margin-bottom: 15px;
        line-height: 1.5;
    }
    .mktoForm #emailNoteField .mktoHtmlText{
        margin: -28px 0 0 170px;
    }
    .mktoForm #emailNoteField .mktoHtmlText span{
        color: #f42859 !important;
    }
    .mktoForm #emailNoteField .mktoFormCol{
        min-height: auto;
    }
    .mktoForm .mktoHtmlText a{
        color: #007FC3;
        padding: 0;
    }
    .mktoForm .mktoHtmlText br{
        display: none;
    }
    .mktoForm div.mktoLogicalField {
        width: auto !important;
    }
    .mktoForm #Lblseminar_entry_terms {
        width: auto !important;
        padding-left: 0;
        cursor: pointer;
    }
    .mktoForm #Lblseminar_entry_terms::before {
        border-color: #000;
    }
    .mktoForm .mktoButtonWrap{
        text-align: center;
        height: 100%;
        display: inline-block;
        position: relative;
        margin-left: 0 !important;
        max-width: 480px;
    }
    .mktoForm .mktoButtonWrap .mktoButton {
        background: #7cb742 !important;
        border: none !important;
        -webkit-box-shadow: none !important;
                box-shadow: none !important;
        text-shadow: none !important;
        font-size: 2.2rem !important;
        padding: 14px 78px !important;
        border-radius: 8px !important;
        color: #fff;
    }
    .mktoForm .mktoButtonRow {
        display: block;
        text-align: center;
    }
    .mktoForm input.mktoField.mktoInvalid,
    .mktoForm select.mktoField.mktoInvalid,
    .mktoForm textarea.mktoField.mktoInvalid {
        border: 1px solid #ddd !important;
    }
    .mktoForm div.mktoLogicalField.mktoInvalid {
        border-color: transparent !important;
    }
    .mktoError {
        right: auto !important;
        left: 45% !important;
    }
    .mktoError .mktoErrorArrow {
        background: #F42859 !important;
        border: none !important;
    }
    .mktoError .mktoErrorMsg {
        background: #F42859 !important;
        border: none !important;
        border-radius: 0 !important;
        text-shadow: none !important;
        -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 2px 7px, inset #F42859 0 1px 0px !important;
                box-shadow: rgba(0, 0, 0, 0.4) 0 2px 7px, inset #F42859 0 1px 0px !important;
    }
    .mktoMobileShow .mktoForm input[type=url],
    .mktoMobileShow .mktoForm input[type=text],
    .mktoMobileShow .mktoForm input[type=date],
    .mktoMobileShow .mktoForm input[type=tel],
    .mktoMobileShow .mktoForm input[type=email],
    .mktoMobileShow .mktoForm input[type=number],
    .mktoMobileShow .mktoForm textarea.mktoField,
    .mktoMobileShow .mktoForm select.mktoField {
        font-size: 1.5rem !important;
        height: 40px;
    }
    .mktoMobileShow .mktoForm input[type=url].error,
    .mktoMobileShow .mktoForm input[type=text].error,
    .mktoMobileShow .mktoForm input[type=date].error,
    .mktoMobileShow .mktoForm input[type=tel].error,
    .mktoMobileShow .mktoForm input[type=email].error,
    .mktoMobileShow .mktoForm input[type=number].error,
    .mktoMobileShow .mktoForm textarea.mktoField.error,
    .mktoMobileShow .mktoForm select.mktoField.error {
        background: #ffdddd !important;
    }
    input::-webkit-input-placeholder {
        color: #888;
    }
    input::-moz-placeholder {
        color: #888;
    }
    input:-ms-input-placeholder {
        color: #888;
    }
    input::-ms-input-placeholder {
        color: #888;
    }
    input::placeholder {
        color: #888;
    }
    /* 旧Edge対応 */
    input::-ms-input-placeholder {
        color: #888;
    }
    /* IE対応 */
    input:-ms-input-placeholder {
        color: #888;
    }
    
    @media screen and (max-width: 829px) {
        .mktoForm {
        padding: 0 !important;
        }
        .mktoForm .mktoFieldDescriptor {
        margin-bottom: 15px !important;
        }
        .mktoForm .mktoFieldWrap select#M_Form_department {
        width: 100% !important;
        }
        .mktoForm .mktoLabel {
        padding: 0 30px 0 0;
        width: 100% !important;
        font-size: 1.4rem;
        line-height: 1.8em !important;
        }
        .mktoForm .mktoRequiredField .mktoLabel{
        padding: 0 0 0 34px;
        }
        .mktoForm .mktoLabel#LblInquiryDetail__c{
            padding: 0 30px 0 0;
        }
        .mktoForm .mktoLabel#Lblseminar_entry_online_kikitai {
        padding-left: 0;
        }
        .mktoForm .mktoLabel strong {
        padding: 0 !important;
        }
        .mktoForm .mktoAsterix {
        float: none;
        left: 0;
        right: auto;
        margin-top: 0;
        top: 5px;
            font-size: 1rem;
        padding: 3px 3px 1px !important;
        }
        .mktoForm .mktoGutter{
        height: .5em !important;
        }
        .mktoForm .mktoField {
        padding: 0.4em 0.4em !important;
        max-width: 100% !important;
        }
        .mktoForm label[id=LblFirstName],
        .mktoForm label[id=Lblpca_firstname_kana] {
        display: block;
        color: transparent!important;
        }
        .mktoForm label[id=LblFirstName] .mktoAsterix,
        .mktoForm label[id=Lblpca_firstname_kana] .mktoAsterix {
            display: none;
        }
        .mktoForm input[type=url],
        .mktoForm input[type=text],
        .mktoForm input[type=date],
        .mktoForm input[type=tel],
        .mktoForm input[type=email],
        .mktoForm input[type=number],
        .mktoForm textarea.mktoField,
        .mktoForm select.mktoField {
            height: auto !important;
        }
        .mktoForm #LastNameField,
        .mktoForm #FirstNameField,
        .mktoForm #pca_surname_kanaField,
        .mktoForm #pca_firstname_kanaField {
        width: 49% !important;
        }
        .mktoForm #LastNameField .mktoGutter.mktoHasWidth,
        .mktoForm #FirstNameField .mktoGutter.mktoHasWidth,
        .mktoForm #pca_surname_kanaField .mktoGutter.mktoHasWidth,
        .mktoForm #pca_firstname_kanaField .mktoGutter.mktoHasWidth {
        /* display: none; */
        }
        .mktoForm #LastNameField,
        .mktoForm #pca_surname_kanaField {
        margin-right: 5px;
        }
        .mktoForm #FirstNameField .mktoFieldWrap,
        .mktoForm #pca_firstname_kanaField .mktoFieldWrap{
        padding-top: 25px;
        }
        .mktoForm #LblLastName {
        }
        .mktoForm #FirstName,
        .mktoForm #LastName,
        .mktoForm #pca_firstname_kana,
        .mktoForm #pca_surname_kana {
        width: 100% !important;
        }
        .mktoForm #Lblseminar_entry_terms {
        padding-left: 30px;
        }
        .mktoError {
        left: 30px !important;
        }
        .mktoMobileShow .mktoForm input[type=url],
        .mktoMobileShow .mktoForm input[type=text],
        .mktoMobileShow .mktoForm input[type=date],
        .mktoMobileShow .mktoForm input[type=tel],
        .mktoMobileShow .mktoForm input[type=email],
        .mktoMobileShow .mktoForm input[type=number],
        .mktoMobileShow .mktoForm textarea.mktoField,
        .mktoMobileShow .mktoForm select.mktoField {
        height: 35px !important;
        }
        .mktoForm .mktoHtmlText{
            font-size: 1.2rem;
        }
        .mktoForm #emailNoteField .mktoHtmlText{
        margin: -10px 0 0 0;
        }
        .mktoForm .mktoButtonWrap{
        max-width: 380px;
        }
        .mktoForm .mktoButtonWrap .mktoButton{
            font-size: 1.6rem !important;
            padding: 20px 20px !important;
        }
    }
    @media only screen and (min-width: 481px) and (max-width: 829px) {
        .mktoForm label[id=LblFirstName],
        .mktoForm label[id=LblLastName],
        .mktoForm label[id=Lblpca_firstname_kana],
        .mktoForm label[id=Lblpca_surname_kana] {
        }
    }
    @media only screen and (max-width: 480px) {
        .mktoForm .mktoLabel {
        margin-bottom: 2px;
        }
        .mktoForm #LastNameField,
        .mktoForm #FirstNameField,
        .mktoForm #pca_surname_kanaField,
        .mktoForm #pca_firstname_kanaField {
        float: left !important;
        clear: none !important;
        }
    }
    @media screen and (min-width: 830px) {
        .mktoForm #Lblseminar_entry_terms .mktoAsterix {
        margin-top: 0;
        }
        #LastNameField .mktoError {
        left: 65% !important;
        }
        #FirstNameField .mktoError {
        left: 15% !important;
        }
        #mktoCheckbox_22761_3Field .mktoLogicalField{ /* お問い合わせ内容 */
            margin-top: -15px;
        }
    }
    @media print, screen and (min-width: 1100px) {
        .mktoForm .mktoField {
        max-width: 480px !important;
        }
        .mktoForm input[id=LastName],
        .mktoForm input[id=FirstName],
        .mktoForm input[id=pca_surname_kana],
        .mktoForm input[id=pca_firstname_kana] {
        width: 236px !important;
        }
    }
/*----------------------------------------
  footer
----------------------------------------*/
.footer {
	position: relative;
	background-color: #fff;
	padding: 30px 15px 0;
    border-top: solid 1px #b7b7b7;
}
.footer-left {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	margin-bottom: 30px;
}
.footer-left-link {
	width: 55px;
}
.footer-privacy {
	padding-left: 15px;
}
.footer-privacy-text {
	font-size: 1.1rem;
	font-weight: 700;
}
a.footer-privacy-link {
	display: inline-block;
	color: #202020;
	font-size: 1.1rem;
	text-decoration: underline;
}
.footer-privacy-link .sp {
	display: none;
}
.footer-int-link {
	display: block;
	width: 190px;
	margin: 0 auto;
}
.footer-copyright {
	color: #202020;
	text-align: center;
	font-size: 1rem;
	padding: 15px 0;
}
@media screen and (min-width: 600px) {
	.footer{
		padding: 30px 15px 15px;
	}
	.footer-left{
		margin-bottom: 0;
	}
	.footer-row {
		display: -webkit-box;
		display: flex;
		-webkit-box-pack: justify;
		justify-content: space-between;
	}
	.footer-col {
		width: 50%;
	}
	.footer-int-link{
		margin: 0 0 0 auto;
	}
}
/*--------------------------------------------------
  SP
--------------------------------------------------*/
@media screen and (max-width:992px){
    /*----------------------------------------
      共通
    ----------------------------------------*/
    .inner {
        width: 100%;
    }
    /*----------------------------------------
      header
    ----------------------------------------*/
    header {
        height: 70px;
    }
    header .deaderInner {
        width: 100%;
    }
    header .logo {
        top: 18px;
        left: 10px;
    }
    header .logo a {
		overflow: hidden;
   		width: 80px;
    }
    header .logo a img {
        width: auto;
    	height: 28px;
    }
    header .logo span {
        font-size: 8px;
        font-size: 0.8rem;
        line-height: 1.3;
        margin: 0 auto auto 12px;
    }
    header .logo span br {
        display: block;
    }
    header .btn {
        top: 18px;
        right: 15px;
    }
    header .btn a {
        font-size: 13px;
        font-size: 1.3rem;
        width: 180px;
        height: 32px;
        line-height: 34px;
    }
    header .btn a .btnText {
        padding-right: 18px;
    }
    header .btn a .btnText::before {
        width: 13px;
    }
    header .btn a:hover .btnText::before {
        -webkit-animation: none;
        -moz-animation: none;
        -ms-animation: none;
        animation: none;
    }
    /*----------------------------------------
      mainVisualArea
    ----------------------------------------*/
    .mainVisualArea {
        display: block;
        width: 100%;
        height: 100%;
        padding-top: 22px;
        background-color: rgba(0,116,178,1);
        background-image: url(../img/main_visual_photo_sp.png);
        background-repeat: no-repeat;
        background-position: top -105px left 0px;
        background-size: cover;
    }
    .mainVisualArea h1 {
        float: none;
        width: 100%;
        height: auto;
        padding-left: 29px;
        margin: 0 auto 18px;
    }
    .mainVisualArea h1 img:nth-child(2) {
        display: block;
        width: 214px;
        height: auto;
        margin: 0 auto;
    }
    .mainVisualArea .textBox {
        float: none;
        width: auto;
        height: auto;
        background-color: rgba(255,255,255,1);
        padding: 18px 10px 18px;
        margin: 0 30px;
    }
    .mainVisualArea .title {
        font-size: 11px;
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    .mainVisualArea .familyLogo {
        margin: 0 38px 15px;
    }
    .mainVisualArea .familyLogo img {
        width: 100%;
        height: auto;
        max-width: 366px;
    }
    .mainVisualArea ul {
        width: 100%;
    }
    .mainVisualArea ul li {
        width: 33.33%;
    }
    .mainVisualArea ul li .icon {
        width: 46px;
        height: auto;
        margin: 0 auto 5px;
    }
    .mainVisualArea ul li .icon img {
        width: 100%;
        height: auto;
    }
    .mainVisualArea ul li p {
        font-size: 12px;
        font-size: 1.2rem;
    }
    .mainVisualArea .btn {
        width: 100%;
    }
    .mainVisualArea .btn a {
        width: auto;
        height: 45px;
        font-size: 18px;
        font-size: 1.8rem;
        line-height: 45px;
        margin: 0 12px;
    }
    .mainVisualArea .btn a .btnText {
        padding-right: 22px;
        overflow: hidden;
    }
    .mainVisualArea .btn a .btnText span {
        font-size: 14px;
        font-size: 1.4rem;
    }
    .mainVisualArea .btn a .btnText::before {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        right: 0;
        width: 16px;
        height: 6px;
        background-image: url(../img/icon_arrow_white_small.png);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 100% auto;
        margin-top: -4px;
    }
    .mainVisualArea .btn a:hover .btnText::before {
        -webkit-animation: none;
        -moz-animation: none;
        -ms-animation: none;
        animation: none;
    }
    .mainVisualArea .btn .speechBalloon {
        top: -15px;
        left: -24px;
        width: 60px;
        height: 25px;
        font-size: 12px;
        font-size: 1.2rem;
        padding: 6px 0 5px 4px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        border-radius: 5px;
    }
    .mainVisualArea .btn .speechBalloon::before {
        bottom: -8px;
        border-width: 12px 0px 0 11px;
    }
    /*----------------------------------------
      freeTrialArea
    ----------------------------------------*/
    .freeTrialArea {
        padding: 30px 15px 15px;
    }
    .freeTrialArea .btnBox {
        padding: 0 18px;
    }
    .freeTrialArea .btnBox .icon {
        top: -25px;
        left: -6px;
        width: 80px;
        height: 80px;
        font-size: 18px;
        font-size: 1.8rem;
        padding: 18px 5px 0;
    }
    .freeTrialArea .btnBox .icon span {
        font-size: 22px;
        font-size: 2.2rem;
    }
    .freeTrialArea .btnBox .title {
        font-size: 17px;
        font-size: 1.7rem;
    }
    .freeTrialArea .btnBox .title::before {
        width: 100%;
    }
    .freeTrialArea .btnBox .title span {
        display: inline-block;
        position: relative;
        height: 100%;
        padding: 0 6px 0 8px;
        z-index: 1;
    }
    .freeTrialArea .btnBox .caption {
        font-size: 32px;
        font-size: 3.2rem;
    }
    .freeTrialArea .btnBox .caption span {
        display: block;
        margin-top: 5px;
    }
    .freeTrialArea .btnBox .btn a {
        width: 100%;
        height: 54px;
        font-size: 22px;
        font-size: 2.2rem;
        line-height: 54px;
        margin: 0 auto 15px;
    }
    .freeTrialArea .btnBox .btn a .btnText {
        padding-right: 22px;
        overflow: hidden;
    }
    .freeTrialArea .btnBox .btn a .btnText span {
        font-size: 18px;
        font-size: 1.8rem;
    }
    .freeTrialArea .btnBox .btn a .btnText::before {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        right: 0;
        width: 16px;
        height: 6px;
        background-image: url(../img/icon_arrow_white_small.png);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 100% auto;
        margin-top: -4px;
    }
    .freeTrialArea .btnBox .btn a:hover .btnText::before {
        -webkit-animation: none;
        -moz-animation: none;
        -ms-animation: none;
        animation: none;
    }
    .freeTrialArea .contactUs a {
        font-size: 12px;
        font-size: 1.2rem;
        padding-right: 16px;
    }
    .freeTrialArea .contactUs a::before {
        width: 11px;
        margin-top: -3px;
    }
    .freeTrialArea .btnBox .note {
        font-size: 14px;
        font-size: 1.4rem;
    }
    .freeTrialArea .btnBox .note span {
        display: block;
        margin-top: 5px;
    }
    .freeTrialArea-note{
    }
    .freeTrialArea .btnBox .btn .speechBalloon {
        top: -20px;
        left: -29px;
        width: 60px;
        height: 25px;
        font-size: 12px;
        font-size: 1.2rem;
        padding: 6px 0 5px 4px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        border-radius: 5px;
    }
    .freeTrialArea .btnBox .btn .speechBalloon::before {
        bottom: -8px;
        border-width: 12px 0px 0 11px;
    }

    /* type02, type03
    ------------------------------*/
    .freeTrialArea.type02, .freeTrialArea.type03 {
        padding: 35px 15px 25px;
    }
    /* type02
    ------------------------------*/
    .freeTrialArea.type02 {
        margin-bottom: 25px;
    }
    /*----------------------------------------
      easyForEveryoneArea
    ----------------------------------------*/
    .easyForEveryoneArea {
        padding: 30px 0 30px;
        margin-bottom: 30px;
    }
    .secTtl {
        font-size: 2.4rem;
        padding: 20px 15px;
    }
    .secTtl .yellowText {
    }
    .easyForEveryoneArea ul {
        margin: 0 15px;
    }
    .easyForEveryoneArea ul li {
        float: none;
        width: 100%;
        padding: 15px 10px 15px 15px;
    }
    .easyForEveryoneArea ul li:not(:last-child) {
        margin: 0 0 10px 0;
    }
    .easyForEveryoneArea ul li dl {
        position: relative;
        padding-left: 85px;
    }
    .easyForEveryoneArea ul li dl dt {
        font-size: 18px;
        font-size: 1.8rem;
        text-align: left;
        margin-bottom: 2px;
    }
    .easyForEveryoneArea ul li dl dd .imgArea {
        position: absolute;
        top: 50%;
        left: 0;
        width: 72px;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .easyForEveryoneArea ul li dl dd .imgArea img {
        width: 100%;
        height: auto;
    }
    .easyForEveryoneArea ul li dl dd .textArea p {
        font-size: 13px;
        font-size: 1.3rem;
        margin-right: 10px;
    }
    /*----------------------------------------
      threeReasonsArea
    ----------------------------------------*/
    .threeReasonsArea {
        margin-bottom: 25px;
    }
    .threeReasonsArea ul li:nth-child(odd),
    .threeReasonsArea ul li:nth-child(even) {
        min-height: auto;
    }
    .threeReasonsArea ul li:not(:last-child) {
        margin-bottom: 25px;
    }
    .threeReasonsArea ul li .imgArea {
        position: static;
        width: auto;
        margin: 0 15px 15px;
    }
    .threeReasonsArea ul li:nth-child(even) .imgArea {
        width: auto;
    }
    .threeReasonsArea ul li .textArea {
        width: auto;
        min-height: auto;
    }
    .threeReasonsArea ul li:nth-child(odd) .textArea,
    .threeReasonsArea ul li:nth-child(even) .textArea {
        width: auto;
        min-height: auto;
        padding: 0;
        margin: 0 15px;
    }
    .threeReasonsArea ul li .textArea h3 {
        font-size: 24px;
        font-size: 2.4rem;
    }
    .threeReasonsArea ul li .textArea .point {
        font-size: 17px;
        font-size: 1.7rem;
    }
    .threeReasonsArea ul li:nth-child(odd) .textArea .point::after,
    .threeReasonsArea ul li:nth-child(even) .textArea .point::after {
        width: 100%;
    }
    .threeReasonsArea ul li .textArea .point p {
        width: 75px;
    }
    .threeReasonsArea ul li:nth-child(odd) .textArea .point p,
    .threeReasonsArea ul li:nth-child(even) .textArea .point p {
        text-align: right;
        margin: 0 0 10px auto;
    }
    .threeReasonsArea ul li .textArea .textIconBox {
        position: relative;
        padding-left: 92px;
    }
    .threeReasonsArea ul li .textArea .text {
        font-size: 14px;
        font-size: 1.4rem;
        margin-bottom: 3px;
    }
    .threeReasonsArea ul li .annotation {
        font-size: 10px;
        font-size: 1.0rem;
        text-indent: -1em;
        padding-left: 1em;
    }
    .threeReasonsArea ul li:nth-child(1) .annotation{
        margin: 0 15px;
    }
    .threeReasonsArea ul li:nth-child(odd) .textArea .iconImg,
    .threeReasonsArea ul li:nth-child(even) .textArea .iconImg {
        width: 80px;
        text-align: center;
        padding: 0;
    }
    .threeReasonsArea ul li .textArea .iconImg {
        top: 5px;
        bottom: auto;
    }
    .threeReasonsArea ul li .textArea .iconImg img {
        width: 100%;
        height: auto;
    }
    .threeReasonsArea ul li:not(:first-child) .textArea .iconImg img {
        width: 70px;
    }
    /*----------------------------------------
      yourRecruitmentArea
    ----------------------------------------*/
    .yourRecruitmentArea {
        margin-bottom: 25px;
    }
    .yourRecruitmentArea ul {
        padding: 0;
        display: block;
    }
    .yourRecruitmentArea ul li {
        /* float: none; */
        position: relative;
        width: auto;
    }
    .yourRecruitmentArea ul li:nth-child(odd) {
        padding-right: 100px;
        margin: 0 15px 20px;
    }
    .yourRecruitmentArea ul li:nth-child(even) {
        padding-left: 100px;
        margin: 0 15px 20px;
    }
    .yourRecruitmentArea ul li dl.textArea {
        padding-top: 0;
    }
    .yourRecruitmentArea ul li dl.textArea dd {
        position: relative;
    }
    .yourRecruitmentArea ul li dl.textArea dd::before {
        content: "";
        position: absolute;
        top: -14px;
        width: 90px;
        height: 90px;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 100% auto;
    }
    .yourRecruitmentArea ul li:nth-child(1) dl.textArea dd::before {
        background-image: url(../img/your_recruitment_icon01.png);
    }
    .yourRecruitmentArea ul li:nth-child(2) dl.textArea dd::before {
        background-image: url(../img/your_recruitment_icon02.png);
    }
    .yourRecruitmentArea ul li:nth-child(3) dl.textArea dd::before {
        background-image: url(../img/your_recruitment_icon03.png);
    }
    .yourRecruitmentArea ul li:nth-child(4) dl.textArea dd::before {
        background-image: url(../img/your_recruitment_icon04.png);
    }
    .yourRecruitmentArea ul li:nth-child(odd) dl.textArea dd::before {
        right: -100px;
    }
    .yourRecruitmentArea ul li:nth-child(even) dl.textArea dd::before {
        left: -100px;
    }
    .yourRecruitmentArea ul li dl.textArea dt {
        font-size: 18px;
        font-size: 1.8rem;
    }
    .yourRecruitmentArea ul li dl.textArea dd {
        font-size: 13px;
        font-size: 1.3rem;
    }
    /*----------------------------------------
      companyVoiceArea
    ----------------------------------------*/
    .companyVoiceArea {
        padding: 0 0 25px;
        margin-bottom: 0;
    }
    .companyVoiceArea .secTtl{
        margin-bottom: 30px;
    }
    .companyVoiceArea ul li:not(:last-child) {
        margin-bottom: 30px;
    }
    .companyVoiceArea ul li .imgArea {
        position: static;
        width: auto;
        margin: 0 15px 15px;
    }
    .companyVoiceArea ul li .textArea {
        width: auto;
        min-height: auto;
    }
    .companyVoiceArea ul li:nth-child(odd) .textArea, .companyVoiceArea ul li:nth-child(even) .textArea {
        padding: 0;
        margin: 0 15px;
    }
    .companyVoiceArea ul li .textArea h3 {
        font-size: 18px;
        font-size: 1.8rem;
        margin-bottom: 5px;
    }
    .companyVoiceArea ul li .textArea .case {
        font-size: 17px;
        font-size: 1.7rem;
    }
    .companyVoiceArea ul li .textArea .case::after {
        width: 100%;
    }
    .companyVoiceArea ul li .textArea .case p {
        width: 75px;
    }
    .companyVoiceArea ul li:nth-child(odd) .textArea .case p, .companyVoiceArea ul li:nth-child(even) .textArea .case p {
        text-align: right;
        margin: 0 0 10px auto;
    }
    .companyVoiceArea ul li .textArea .text {
        margin-bottom: 0;
    }
    .companyVoiceArea ul li .textArea .text span {
        font-size: 12px;
        font-size: 1.2rem;
    }
    /*----------------------------------------
      faqArea
    ----------------------------------------*/
    .faqArea {
        margin-bottom: 30px;
    }
    .faqArea ul {
        margin: 0 15px;
    }
    .faqArea ul li {
        padding: 15px;
    }
    .faqArea ul li:not(:last-child) {
        margin-bottom: 15px;
    }
    .faqArea ul li dl dt, .faqArea ul li dl dd .answer {
        font-size: 17px;
        font-size: 1.7rem;
    }
    .faqArea ul li dl dt span, .faqArea ul li dl dd .answer span {
        font-size: 23px;
        font-size: 2.3rem;
    }
    .faqArea ul li dl dt {
        text-indent: -28px;
        padding: 0 0 10px 28px;
        margin-bottom: 10px;
    }
    .faqArea ul li dl dd .answer {
        text-indent: -28px;
        padding-left: 28px;
        margin-bottom: 10px;
    }
    .faqArea ul li dl dd .note {
        padding-left: 28px;
    }
    /*----------------------------------------
    serviceContentsArea
    ----------------------------------------*/
    .serviceContentsArea {
        padding: 0 0 30px;
    }
    .serviceContentsArea .secTtl{
        margin-bottom: 30px;
    }
    .serviceContentsArea table {
        margin: 0 15px;
    }
    .serviceContentsArea table tr:first-child th {
        font-size: 13px;
        font-size: 1.3rem;
    }
    .serviceContentsArea table tr:not(:first-child) th {
        font-size: 12px;
        font-size: 1.2rem;
    }
    .serviceContentsArea table tr th.textSmall {
        width: 16%;
        font-size: 8px;
        font-size: 0.8rem;
        line-height: 1.2;
        padding: 5px;
    }
    .serviceContentsArea table tr:first-child th:nth-child(1) {
        width: 30%;
        min-width: 110px;
    }
    .serviceContentsArea table tr:first-child th:nth-child(2), .serviceContentsArea table tr:first-child th:nth-child(3) {
        width: 35%;
    }
    .serviceContentsArea table tr:first-child th, .serviceContentsArea table tr:last-child th {
        height: auto;
        padding: 22px 5px;
    }
    .serviceContentsArea table tr th, .serviceContentsArea table tr td {
        height: auto;
        padding: 5px;
    }
    .serviceContentsArea table tr td {
        font-size: 12px;
        font-size: 1.2rem;
    }
    .serviceContentsArea table tr td .note {
        font-size: 10px;
        font-size: 1.0rem;
    }
    .serviceContentsArea table tr td .circle {
        width: 10px;
        height: 10px;
    }
    .serviceContentsArea table tr td .hyphen {
        width: 12px;
        height: 10px;
    }
    .serviceContentsArea table tr td .hyphen::before {
        height: 2px;
    }
    /*----------------------------------------
      applicationFlow
    ----------------------------------------*/
    .applicationFlow {
        padding: 0 0 25px;
    }
    .applicationFlow .secTtl{
        margin-bottom: 40px;
    }
    .applicationFlow ul {
        display: table;
        width: 100%;
        padding: 0 15px 10px;
        margin: 0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
    }
    .applicationFlow ul li {
        display: table;
        width: 26%;
        height: 100px;
        font-size: 15px;
        font-size: 1.5rem;
        vertical-align: middle;
        background-color: #ffffff;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
    }
    .applicationFlow ul li:last-child {
        width: 22%;
    }
    .applicationFlow ul li:not(:first-child),
    .applicationFlow ul li:first-child, .applicationFlow ul li:last-child {
        padding: 0;
    }
    .applicationFlow ul li:not(:first-child) {
        margin: 0;
    }
    .applicationFlow ul li:not(:last-child) {
        padding-right: 16px;
    }
    .applicationFlow ul li .bgBox {
        display: table-cell;
        position: relative;
        width: 100%;
        height: 100%;
        vertical-align: middle;
        background-color: #007fc3;
        padding: 0 4px 0 8px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
    }
    .applicationFlow ul li .bgBox {
        display: table-cell;
        position: relative;
        width: 100%;
        height: 100%;
        vertical-align: middle;
        background-color: #007fc3;
    }
    .applicationFlow ul li:not(:last-child) .bgBox {
        -webkit-border-radius: 3px 0 0 3px;
        -moz-border-radius: 3px 0 0 3px;
        -ms-border-radius: 3px 0 0 3px;
        border-radius: 3px 0 0 3px;
    }
    .applicationFlow ul li:last-child .bgBox {
        padding: 0 4px 0 4px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        border-radius: 3px;
    }
    .applicationFlow ul li:last-child br {
        display: block;
    }
    .applicationFlow ul li:not(:last-child)::before {
        display: none;
    }
    .applicationFlow ul li:not(:last-child) .bgBox::before {
        content: "";
        position: absolute;
        top: 0;
        right: -18px;
        width: 22px;
        height: 100px;
        background-image: url(../img/icon_flow_arrow_sp.png);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 100% auto;
        z-index: 1;
    }
    .applicationFlow ul li .speechBalloon {
        top: -15px;
        left: 5px;
        width: 55px;
        height: 22px;
        font-size: 12px;
        font-size: 1.2rem;
        padding: 5px 0 4px 0;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        border-radius: 5px;
    }
    .applicationFlow ul li .speechBalloon::before {
        bottom: -6px;
        border-width: 12px 11px 0 0;
    }
    .applicationFlow .annotation {
        font-size: 10px;
        font-size: 1.0rem;
        line-height: 1.2;
        text-align: left;
        text-indent: -1em;
        padding-left: 1em;
        margin: 0 15px;
    }
    /*----------------------------------------
      none
    ----------------------------------------*/
    .yourRecruitmentArea ul li:nth-child(1) dl.textArea::before,
    .yourRecruitmentArea ul li:nth-child(2) dl.textArea::before,
    .yourRecruitmentArea ul li:nth-child(3) dl.textArea::before,
    .yourRecruitmentArea ul li:nth-child(4) dl.textArea::before {
        background: none;
    }
    .freeTrialArea .btnBox .title::after,
    .easyForEveryoneArea ul li dl dt br,
    .threeReasonsArea ul li .textArea h3 br,
    .mainVisualArea h1 img:nth-child(1) {
        display: none;
    }
}

/*--------------------------------------------------
  SP（iphone5対応）
--------------------------------------------------*/
@media screen and (max-width:320px){
    header .logo {
        top: 11px;
    }
    header .logo a {
        float: none;
    }
    header .logo span {
        float: none;
        margin: 6px auto auto 0;
    }
    header .logo span br {
        display: none;
    }
    header .btn {
        right: 10px;
    }
    /*----------------------------------------
      mainVisualArea
    ----------------------------------------*/
    .mainVisualArea .btn a {
        font-size: 15px;
        font-size: 1.5rem;
    }
    .mainVisualArea .btn a .btnText span {
        font-size: 12px;
        font-size: 1.2rem;
    }
    .mainVisualArea .btn .speechBalloon {
        top: -16px;
        left: -32px;
        width: 58px;
        font-size: 11px;
        font-size: 1.1rem;
        height: 22px;
        padding: 5px 0 4px 4px;
    }
    /*----------------------------------------
      freeTrialArea
    ----------------------------------------*/
    .freeTrialArea .btnBox .caption {
        font-size: 26px;
        font-size: 2.6rem;
    }
    .freeTrialArea .btnBox .btn a {
        height: 50px;
        font-size: 18px;
        font-size: 1.8rem;
        line-height: 50px;
    }
    .freeTrialArea .btnBox .btn a .btnText span {
        font-size: 14px;
        font-size: 1.4rem;
    }
    /*----------------------------------------
      applicationFlow
    ----------------------------------------*/
    .applicationFlow ul li {
        font-size: 11px;
        font-size: 1.1rem;
    }
}

/*----------------------------------------
  fadeTarget
----------------------------------------*/
.fadeTarget {
    opacity: 0;
    -webkit-transition: all 0.5s ease-out 0.2s;
    -moz-transition: all 0.5s ease-out 0.2s;
    -ms-transition: all 0.5s ease-out 0.2s;
    transition: all 0.5s ease-out 0.2s;
}
/* active
------------------------------*/
.fadeTarget.active,
.yourRecruitmentArea ul.active li,
.applicationFlow ul.active li {
    opacity: 1.0;
    -webkit-transform: translate(0,0);
    -moz-transform: translate(0,0);
    -ms-transform: translate(0,0);
    transform: translate(0,0);
}
/* fadeInTop（フェードインしながら上へスライド）
------------------------------*/
.fadeInTop {
    -webkit-transform: translate(0,80px);
    -moz-transform: translate(0,80px);
    -ms-transform: translate(0,80px);
    transform: translate(0,80px);
}
/* fadeInBottom（フェードインしながら下へスライド）
------------------------------*/
.fadeInBottom {
    -webkit-transform: translate(0,-80px);
    -moz-transform: translate(0,-80px);
    -ms-transform: translate(0,-80px);
    transform: translate(0,-80px);
}
/* fadeInLeft（フェードインしながら左へスライド）
------------------------------*/
.fadeInLeft {
    -webkit-transform: translate(80px,0);
    -moz-transform: translate(80px,0);
    -ms-transform: translate(80px,0);
    transform: translate(80px,0);
}
/* fadeInRight（フェードインしながら右へスライド）
------------------------------*/
.fadeInRight {
    -webkit-transform: translate(-80px,0);
    -moz-transform: translate(-80px,0);
    -ms-transform: translate(-80px,0);
    transform: translate(-80px,0);
}

/*----------------------------------------
  keyframes
----------------------------------------*/
@keyframes sdb {
    0% {
        -webkit-transform: translate(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        -webkit-transform: translate(10px, 0);
        opacity: 0;
    }
}
@keyframes sdb2 {
    0% {
        -webkit-transform: translate(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        -webkit-transform: translate(5px, 0);
        opacity: 0;
    }
}
@media screen and (min-width:520px){
    br.sp520 {
    display: none;
}
}

.nopc{
    display: none;
}
.nosp{
    display: block;
}
@media screen and (max-width: 992px){
    .nopc{
        display: block;
    }
    .nosp{
        display: none;
    }
}