@charset "utf-8";

/* ------------------------------------------------
mv-section
------------------------------------------------ */
.mv-section{
	position: relative;
	background-image: url(../../assets/img/bg_mv.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.mv-inner{
	position: relative;
	display: flex;
	max-width:1024px;
	justify-content: space-around;
	align-items: center;
	padding: 280px 0 0;
}
.mv-inner .mv-heart {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}
.mv-inner .mv-heart span{
	position: absolute;
	top: 26%;
	left: 10%;
	width: 10%;
	height: 100px;
	display: flex;
	justify-content:center;
	align-items: center;
}
.mv-inner .mv-heart span:after{
	display: block;
	position: absolute;
    z-index: 1;
	content: "";
	width: 60px;
	height: 60px;
	background-image:url(../../assets/img/icon_heart.png);
	background-repeat:no-repeat;
	background-position:center center;
	background-size:100%;
	left: 0;
	right: 0;
	margin: auto;
}
.mv-inner .mv-heart span:before {
	display: block;
	position: absolute;
    z-index: 0;
	content: "";
    height: 60px;
    width: 60px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    animation: heartsize-animation 5s infinite;
	left: 0;
	right: 0;
	margin: auto;
}
.mv-inner .mv-heart span:nth-child(2){
	top: 10%;
	left: 65%;
}
.mv-inner .mv-heart span:nth-child(3){
	top: 70%;
	left: 85%;
}
.mv-inner .mv-heart span:before{
	transform: scale(1.3);
}
.mv-section .mv-txt {
	position: relative;
    margin-left: 0;
    margin-right: auto;
}
.mv-section .mv-txt .lead {
    padding-top: 20px;
    font-size: 6rem;
    margin-bottom: -70px;
}
.mv-section .mv-txt .lead span {
	display: block;
    margin-bottom: 8px;
    line-height: 1.4;
    font-weight: 600;
}
.mv-section .mv-txt .lead span span {
	position: relative;
	z-index: 1;
    display: inline-block;
    padding-left: 10px;
}
.mv-section .mv-txt .lead span span:after {
	display: block;
	position: absolute;
	z-index: -1;
	content: "";
	width: 0;
	height: 100%;
	left: 0;
	top: 0;
    background: #ffffff;
    animation: copy-line-animation .2s ease-in-out .6s forwards;
}
.mv-section .mv-txt .lead span:nth-child(2) span:after {
    animation: copy-line-animation .2s ease-in-out 1s forwards;
}
.mv-section .mv-txt .lead span:nth-child(3) span:after {
    animation: copy-line-animation .2s ease-in-out 1.4s forwards;
}
.mv-section .mv-txt .lead span:first-child span{
    padding: 0 10px;
}

@media screen and (max-width:768px) {
	.mv-section .mv-txt .lead {
	    font-size: 5rem;
   		margin-bottom: -40px;
   		letter-spacing: 0.1rem;
	}
	.mv-section .mv-txt .lead span {
	    margin-bottom: 1.2vw;
	}
	.mv-inner .mv-heart span::after{
		width: 42px;
		height: 42px;
	}
	.mv-inner .mv-heart span::before{
		width: 42px;
		height: 42px;
	}
	.mv-inner .mv-heart span:nth-child(3) {
	    top: 50%;
	    left: 80%;
	}
}
@media screen and (max-width:640px) {
	.mv-inner{
		width: 100% !important;
		padding: 42vw 5vw 0;
		margin-left: 0 !important;
	}
	.mv-section .mv-txt .lead {
	    font-size: 4.0rem;
	}
}
@media screen and (max-width:480px) {
	.mv-section .mv-txt .lead {
	    font-size: 3.0rem;
	    margin-bottom: -30px;
	}
}


/* ------------------------------------------------
about-section
 ------------------------------------------------ */
.about-lead-sec{
	width: 100%;
	max-width: 590px;
	margin:auto;
}
.about-lead-sec p{
	padding-top: 24px;
	padding-bottom: 40px;
}
.about-lead-sec > img{
	width: 100%;
}
.about-copy-sec{
	margin:auto;
	width: 90%;
	max-width: 1000px;
	padding-top: 40px;
	display: flex;
	justify-content: space-between;
	font-style:italic;
}
.about-copy-sec .about-copy-img{
	padding-top: 24px;
	width: 16%;
}
.about-copy-sec .about-copy-txt{
	width: 80%;
}
.about-copy-sec .about-copy-txt h2{
	font-weight: 500;
	font-size: 3.7rem;
	line-height: 2.2;
}
.about-copy-sec .about-copy-txt h2 > span{
	display: inline-block;
}
.about-copy-sec .about-copy-txt h2 .tx-red span{
	color: #a30000;
}
.about-copy-sec .about-copy-txt h2 .tx-underline{
	position: relative;
	display: block;
	background: #a30000;
	height: 5px;
}
.about-copy-sec .about-copy-txt h2 span:first-child .tx-underline:first-child{
	display: none;
}
.about-copy-sec .about-copy-txt h2 .tx-underline:before{
	position: absolute;
	content: "";
	display: block;
	width: 9px;
	height: 9px;
	top: -2px;
	left: -2px;
	background: #a30000;
	border-radius: 999px;
}
.about-copy-sec .about-copy-txt h2 .tx-underline:after{
	position: absolute;
	content: "";
	display: block;
	width: 9px;
	height: 9px;
	top: -2px;
	right: -2px;
	background: #a30000;
	border-radius: 999px;
}
.about-copy-sec .about-copy-txt .about-copy{
	padding-top: 24px;
	font-weight: 500;
	font-size: 2.5rem;
}

@media screen and (max-width:1100px) {
	.about-copy-sec .about-copy-txt h2{
		font-size: 3.2vw;
		letter-spacing: 0.1rem;
	}
	.about-copy-sec .about-copy-txt .about-copy {
		font-size: 2.4vw;
	}
}
@media screen and (max-width:768px) {
	.about-copy-sec{
		display: block;
	    margin: -6vw auto 0;
	    max-width: 500px;
	    text-align:center;
	}
	.about-copy-sec .about-copy-txt {
	    width: 100%;
	}
	.about-copy-sec .about-copy-txt h2 {
	    font-size: 4.8vw;
	}
	.about-copy-sec .about-copy-txt h2 .tx-red{
		display: block;
	}
	.about-copy-sec .about-copy-txt h2 span:first-child .tx-underline:first-child{
		display: block;
	}
	.about-copy-sec .about-copy-txt .about-copy {
	    font-size: 3vw;
	}
	.about-copy-sec .about-copy-img {
		margin: auto;
	}
}
@media screen and (max-width:580px) {
	.about-copy-sec .about-copy-txt h2 {
	    font-size: 6.0vw;
	}
}
@media screen and (max-width:480px) {
	.about-copy-sec .about-copy-txt .about-copy {
	    font-size: 1.6rem;
	}
}


/* ------------------------------------------------
solution-section
 ------------------------------------------------ */
#solution02 .solution-inner{
	flex-flow: row-reverse;
}


/* ------------------------------------------------
plan-section
 ------------------------------------------------ */
.plan-section {
	padding: 40px 0;
}
.plan-sec{
	margin:auto;
	width: 90%;
	max-width: 1000px;
}
.plan-table{
	display: flex;
	justify-content: space-between;
	text-align:center;
}
.plan-sec dl{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 29%;
	background: #ffffff;
}
.plan-sec dl.plan-enterprise{
	width: 42%;
}
.plan-sec dl dt {
    width: 30%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-bottom: 1px solid #aaaaaa;
}
.plan-sec dl dd{
	width: 70%;
	padding: 1.6rem 1rem;
    border-left: 1px solid #aaaaaa;
    border-bottom: 1px solid #aaaaaa;
}
.plan-sec dl dt:nth-child(1){
    background:#f0e5e5;
}
.plan-sec dl dd:nth-child(2){
    background:#f0e5e5;
}
.plan-sec dl dt:nth-last-child(2){
	border-bottom:none;
}
.plan-sec dl dt.title-price{
	color: #8b8b8b;
}
.plan-sec dl dd:last-child{
	border-bottom:none;
}
.plan-sec dl dd.plan-lead {
    height: 15rem;
}
.plan-sec dl dd.plan-lead h3{
	padding-top: 12px;
	font-size: 1.2rem;
	color: #b22425;
}
.plan-sec dl dd.plan-lead h3 span{
	display: block;
	letter-spacing: 0.1rem;
	font-size:1.8rem;
	font-weight: 500;
}
.plan-sec dl dd.plan-lead p{
	padding-top: 0;
	padding-bottom: 8px;
	font-size: 1.2rem;
}
.plan-sec dl dd.plan-price{
	display: flex;
	justify-content: center;
	align-items:center;
	height: 8rem;
	letter-spacing: 0.1rem;
	font-size: 2.4rem;
	font-weight: 500;
}
.plan-sec dl.plan-select dt,
.plan-sec dl.plan-starter dt{
	display: none;
}
.plan-sec dl.plan-select dd,
.plan-sec dl.plan-starter dd{
	width: 100%;
}
.plan-sec .annotation{
	padding-top: 16px;
	font-size: 1.4rem;
	color: #5b5b5b;
}

@media screen and (max-width:1024px) {
	.plan-table{
		display: block;
	}
	.plan-sec dl {
	    width: 100%;
	    margin-top:24px;
	}
	.plan-sec dl.plan-enterprise {
	    width: 100%;
	}
	.plan-sec dl.plan-select dt,
	.plan-sec dl.plan-starter dt{
		display: inline-flex;
	}
	.plan-sec dl.plan-select dd,
	.plan-sec dl.plan-starter dd {
	    width: 70%;
	}
	.plan-sec dl dd.plan-lead {
	    height: auto;
	}
	.plan-sec dl dd br{
		display: none;
	}
}


/* ------------------------------------------------
seminar-section
 ------------------------------------------------ */
.seminar-section{
	padding-top: 0;
}
.seminar-section h2{
	display: flex;
	justify-content:center;
	align-items: center;
	height: 360px;
	background-image:url(../../assets/img/bg_seminar.jpg);
	background-repeat:no-repeat;
	background-position:center center;
	background-size:cover;	
	font-size: 3.4rem;
	color: #ffffff;
}
.seminar-section h2:before{
	content: none;
}

@media screen and (max-width:768px) {
	.seminar-section h2{
		height: 240px;
		font-size: 2.4rem;
	}
}


/* ------------------------------------------------
side_link
 ------------------------------------------------ */
.side_link {
    padding: 10px 13px 10px;
    background-image: url(../img/bg_side_bnr.jpg);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 100% 100%;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, .2);
}
.side_link a{
	display: block;
    line-height: 1;
}
.side_link a img{
    box-shadow: none;
}
.side_link.is-active {
    transform: translateX(0);
}

@media screen and (max-width:768px) {
	.side_link {
		display: none;
	}
}

