/* CSS Document */

/*===============================

	common

================================*/
html{
	box-sizing:border-box;
	font-size: 62.5%;
	color: #000;
	font-family: 'Noto Sans JP', sans-serif;
}
.sp{
	display: none;
}
.pc{
	display: block;
	}

.inner{
	max-width: 1280px;
	margin: 0 auto;
}
.flex{
	display: flex;
}

.overlay{
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.6);
    position:fixed;
    z-index:1000;
}
.btn_area{
    width:300px;
    height:240px;
    position:absolute;
    top:50%;
    left:50%;
    margin-top:-120px;
    margin-left:-150px;
    background-color:#fff;
    z-index:1000;
}
.btn_area p{
	font-size: 1.4rem;
    padding:20px 20px 10px;
	text-align: center;
}
.btn_area button{
    display:block;
    margin:0 auto;
	background-color: transparent;
    border: none;
	cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
	width: 200px;
	
}
#page-top {
    position: fixed;
    right: 25px;
    bottom: 20px;
    font-size: 1.8rem;
	text-align: center;
    background: #C6C6C6;
    color: #fff;
	padding: 25px 20px;
    border-radius: 100px;
	text-decoration: none;
	border: solid 1px #fff;
	z-index: 150;
}
#page-top:hover {
    background: #D15858;
}

#doc {
    position: fixed;
    right: -10px;
    top: 190px;
    background: #D15858;
    border-radius: 10px;
    text-decoration: none;
    z-index: 150;
	width: 110px;
}
#doc p{
    font-size: 2.6rem;
    text-align: center;
    color: #fff;
    margin: 60px 27px;
    z-index: 151;
    writing-mode: vertical-rl;
}
/***トップへ戻るボタンここまで***/

body {
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
/*===============================

	ヘッダー

================================*/
header{
	position: fixed;
	top:0;
	justify-content: space-between;
	width: 100%;
	padding: 30px 0 10px 0;
	background: #29A4FF;
	z-index: 100;
}
/*
header .header_back{
	background-image: url("../img/head_bg_b.svg");
	background-repeat: no-repeat;
	background-size: cover;
	height: 30px;
}
*/
header .header_inner{
	display: flex;
	max-width: 1280px;
	height: 52px;
	position: relative;
	margin: 0 auto;
}

header .header_inner img{
	height: 52px;
}

header .header_inner .h-1{
	position: absolute;
	bottom:0;
	left:0;
	height: 38px;
	width: 200px;
	margin: 0 0 0 20px;
}
header nav ul{
	position: absolute;
	bottom:0;
	right:0;
	display: flex;
	justify-content: space-between;
	list-style: none;
	margin: 0 -2px 0 0;
	width: 710px;
	
}
header nav ul li{
	margin: 0 -15px 0 0;
	
}

/*===============================

	メインビジュアル

================================*/
.mv{
	position: relative;
	max-height: 700px;
	min-height: 559px;
	height: 50vw;
	min-width: 1024px;
	overflow: hidden;
	margin: 40px 0 0 0;
}

.mv .mv-1{
	position: absolute;
	top:170px;
	left: 0;
	width: 100%;
}

.mv .mv-2{
	position: absolute;
	top:0;
	left: 60%;
}

.mv .mv-3{
	position: absolute;
	bottom:20vw;
	left: -150px;
}

.mv .mv-4{
	position: absolute;
	top:108px;
	right: 0;
	max-width: 60%;
}

.mv .mv-5{
	position: absolute;
	top:108px;
	right: 0;
	max-width: 60%;
}

.mv .mv-6{
	position: absolute;
	top:108px;
	left: -100px;
}

.mv .mv-7{
	position: absolute;
	top:240px;
	margin: 0;
	height: 56px;
}

.mv .inner{
	position: relative;
}
.mv h1{
	position: absolute;
	top:108px;
	font-size: 4.1rem;
	letter-spacing: 1rem;
	margin: 0 0 0 20px;
	font-weight: 400;
}

.mv h1 img{
	height: 4.5rem;
	display: inline;
	margin: 0 10px 5px -3px;
}

.mv h6{
	position: absolute;
	top:240px;
	font-size: 3.6rem;
	letter-spacing: 1rem;
	margin: 0 0 0 20px;
	font-weight: 400;
	color: #FFFFFF;
}

.mv p{
	position: absolute;
	top:320px;
	font-size: 1.8rem;
	letter-spacing: 0.2rem;
	margin: 0 0 0 20px;
	font-weight: 400;
	text-indent: -5px;
	line-height: 1.8em;
}


.btn-1{
	background-image: url("../img/btn-1-bg.png");
	background-size: 100% 100%;
	position: absolute;
	top:440px;
	left:0;
	text-align: center;
	width: 560px;
	overflow: hidden;
	border-radius: 2px;
	margin: 0 0 0 20px;
}
.btn-1 a:hover img {
    visibility: hidden;
}

.btn-1::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shiny-btn1 3s ease-in-out 2;
	
}
@-webkit-keyframes shiny-btn1 {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    55% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    56% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
.btn-1 a{
	color: #FFFFFF;
	text-decoration: none;
}

.an5-faderight {
    animation-name: faderight;
    animation-duration: 3s;
    animation-iteration-count: 1;
}
@keyframes faderight {
from,20% {
    opacity: 0;
    transform: translateX(-1000px);
}
20%{
	opacity: 0;
    transform: translateX(-1000px);	
	}
to {
    opacity: 1;
transform: translateX(0);
}
}

/*===============================

	コピー１

================================*/
.copy-1{
	text-align: center;
	background-image: url("../img/copy-bg.jpg");
	background-position: top center;
	background-repeat: no-repeat;
	padding: 140px 0 200px 0;
}
.copy-1 img{
	margin: 0 auto 30px;
	width: 40px;
}
.copy-1 h2{
	font-size: 4.0rem;
	font-weight: 400;
	padding: 0 0 0 0.5em;
	letter-spacing: 0.2em;
	margin: 2rem 0;
}
.copy-1 h3{
	font-size: 2.1rem;
	font-weight: 400;
	letter-spacing: 0.3em;
	margin: 0;
}
.copy-1 p{
	font-size: 1.6rem;
	line-height: 2.5em;
	margin: 50px 0;
}
.copy-1 p span{
	color: #29A6FF;
}
.copy-1 p strong{
	font-size: 2.5rem;
	line-height: 2em;
	font-weight: 400;
	letter-spacing: 0.2em;
	color: #29A6FF;
}

/*===============================

	ポイント

================================*/
.point{
	padding: 0 0 120px 0;
	background-image: url("../img/copy-1-bg.png");
	background-repeat: no-repeat;
	background-size: cover;
}
.point .h4{
	background-image: url("../img/h4-bg.png");
	background-position: right 10%;
	height: 45px;
	margin: 0;
}
.point h4{
	font-size: 2.2rem;
	line-height: 45px;
	color: #fff;
	font-weight: 400;
	max-width: 1024px;
	text-align: left;
	margin: 0 auto;
	letter-spacing: 0.2em;
}
.point .flex{
	max-width: 900px;
	justify-content: space-between;
	padding: 60px 0 0 0;
	margin: 0 auto;
}
.point .flex .pt-img{
	width: 244px;
	height: 365px;
}
/*===============================

	ボタン類

================================*/
.btn-g{
	background: #29A6FF;
	width: 100%;
	height: 324px;
}

.btn-g .btn-inner{
	width: 1024px;
	height: 324px;
	position: relative;
	margin: 0 auto;
}

.btn-g .btn-inner .btn-g-1{
	width: 1024px;
	height: 324px;
	margin-bottom: -100px;
	position: absolute;
	top:-50px;
	right:0;
}
.btn-g .btn-inner .btn-g-2{
	justify-content: space-between;
	width: 635px;
	position: absolute;
	bottom: 125px;
	left:270px;
}

.btn-g .btn-inner .btn-g-2 a{
	width: 32%;
}

/*===============================

	コピー２

================================*/
.copy-2{
	background: #fff;
	text-align: center;
	margin: -100px 0 0 0;
}
.copy-2{
	padding: 160px 0;
	background-image: url("../img/stop.png");
	background-repeat: no-repeat;
	background-size: 270px;
	background-position: center;
}
.copy-2 h2{
	font-size: 3.4rem;
	font-weight: 400;
	padding: 0 0 0 0.5em;
	letter-spacing: 0.2em;
	margin: 2rem 0;
}

.copy-2 h2 strong{
	font-size: 6.2rem;
	font-weight: 400;
	padding: 0 0 0.1em 0.5em;
	letter-spacing: 0.1em;
	margin: 2rem 0;
	background:url("../img/ul.png") bottom repeat-x;
}

.copy-2 p{
	font-size: 1.6rem;
	font-weight: 400;
	letter-spacing: 0.2em;
}
/*===============================

	真実１

================================*/
.truth1{
	margin: 0 0 180px 0;
}

.truth1 img{
	width: 1024px;
	margin: 0 auto ;
}
.truth1 .t-top{
	position: relative;
    background: linear-gradient(90deg, #C6C6C6 0%, #C6C6C6 50%, #fff 50%, #fff 100%);
    width: 100%;

}
.truth1 .t-1-title{
	position: absolute;
	left: 0;
	right: 0;
	top:-70px;
	margin: auto;
}
.truth1 .t-1-text{
	position: absolute;
	left: 0;
	right: 0;
	top:109px;
	margin: auto;
}

.truth1 .t-m{
    background: linear-gradient(90deg, #C6C6C6 0%, #C6C6C6 50%, #80C6FF 50%, #80C6FF 100%);
    width: 100%;
}
.truth1 .t-bottom{
	background: linear-gradient(90deg, #fff 0%, #fff 50%, #80C6FF 50%, #80C6FF 100%);
    width: 100%;

}



/*===============================

	真実2

================================*/
.truth2{
	margin: 0 0 80px 0;
}
.truth2 img{
	width: 1024px;
	margin: 0 auto ;
}
.truth2 .t-top{
	position: relative;
    background: linear-gradient(90deg, #fff 0%, #fff 50%, #C6C6C6 50%, #C6C6C6 100%);
    width: 100%;
	z-index: 10;

}
.truth2 .t-2-title{
	position: absolute;
	left: 0;
	right: 0;
	top:-20px;
	margin: auto;
}
.truth2 .t-2-text{
	position: absolute;
	left: 0;
	right: 0;
	top:129px;
	margin: auto;
}

.truth2 .t-m{
    background: linear-gradient(90deg, #80C6FF 0%, #80C6FF 50%, #C6C6C6 50%, #C6C6C6 100%);
    width: 100%;
}
.truth2 .t-m-inner{
	max-width: 1024px;
	margin: 0 auto ;
	position: relative;
}
.truth2 .t-m iframe{
position: absolute;
	bottom:95px;
	right: 130px;
}
.truth2 .t-bottom{
	background: linear-gradient(90deg, #80C6FF 0%, #80C6FF 50%, #fff 50%, #fff 100%);
    width: 100%;

}
/*===============================

	真実3

================================*/
.truth3{
	margin: 0 0 180px 0;
}

.truth3 img{
	width: 1024px;
	margin: 0 auto ;
}
.truth3 .t-top{
	position: relative;
    background: linear-gradient(90deg, #C6C6C6 0%, #C6C6C6 50%, #fff 50%, #fff 100%);
    width: 100%;
	height: 160px;

}
.truth3 .t-3-title{
	position: absolute;
	left: 0;
	right: 0;
	top:-70px;
	margin: auto;
}
.truth3 .t-3-text{
	position: absolute;
	left: 0;
	right: 0;
	top:109px;
	margin: -20px auto 0;
	z-index: 10;
}

.truth3 .t-m{
    background: linear-gradient(90deg, #C6C6C6 0%, #C6C6C6 50%, #80C6FF 50%, #80C6FF 100%);
    width: 100%;
}
.truth3 .t-bottom{
	background: linear-gradient(90deg, #fff 0%, #fff 50%, #80C6FF 50%, #80C6FF 100%);
    width: 100%;

}

.truth3 .t-m-inner{
	max-width: 1024px;
	margin: 0 auto ;
	position: relative;
}
.truth3 .t-m iframe{
position: absolute;
	bottom:212px;
	right: 170px;
}

/*===============================

	真実4

================================*/
.truth4{
	margin: 0 0 80px 0;
}
.truth4 img{
	width: 1024px;
	margin: 0 auto ;
}
.truth4 .t-top{
	position: relative;
    background: linear-gradient(90deg, #fff 0%, #fff 50%, #C6C6C6 50%, #C6C6C6 100%);
    width: 100%;
	z-index: 10;

}
.truth4 .t-4-title{
	position: absolute;
	left: 0;
	right: 0;
	top:-20px;
	margin: auto;
}
.truth4 .t-4-text{
	position: absolute;
	left: 0;
	right: 0;
	top:129px;
	margin: auto;
}

.truth4 .t-m{
    background: linear-gradient(90deg, #80C6FF 0%, #80C6FF 50%, #C6C6C6 50%, #C6C6C6 100%);
    width: 100%;
}
.truth4 .t-bottom{
	background: linear-gradient(90deg, #80C6FF 0%, #80C6FF 50%, #fff 50%, #fff 100%);
    width: 100%;

}
/*===============================

	真実5

================================*/
.truth5{
	margin: 0 0 180px 0;
}

.truth5 img{
	width: 1024px;
	margin: 0 auto ;
}
.truth5 .t-top{
	position: relative;
    background: linear-gradient(90deg, #C6C6C6 0%, #C6C6C6 50%, #fff 50%, #fff 100%);
    width: 100%;
}
.truth5 .t-5-title{
	position: absolute;
	left: 0;
	right: 0;
	top:-70px;
	margin: auto;
}
.truth5 .t-5-text{
	position: absolute;
	left: 0;
	right: 0;
	top:109px;
	margin: auto;
}

.truth5 .t-m{
    background: linear-gradient(90deg, #C6C6C6 0%, #C6C6C6 50%, #80C6FF 50%, #80C6FF 100%);
    width: 100%;
}
.truth5 .t-bottom{
	background: linear-gradient(90deg, #fff 0%, #fff 50%, #80C6FF 50%, #80C6FF 100%);
    width: 100%;

}

/*===============================

	真実6

================================*/
.truth6{
	margin: 0;
}

.truth6 img{
	width: 1024px;
	margin: 0 auto ;
}
.truth6 .t-top{
	position: relative;
    background: linear-gradient(90deg, #C6C6C6 0%, #C6C6C6 50%, #fff 50%, #fff 100%);
    width: 100%;

}
.truth6 .t-6-title{
	position: absolute;
	left: 0;
	right: 0;
	top:-70px;
	margin: auto;
}
.truth6 .t-6-text{
	position: absolute;
	left: 0;
	right: 0;
	top:109px;
	margin: auto;
	z-index: 10;
}

.truth6 .t-m{
    background: linear-gradient(90deg, #C6C6C6 0%, #C6C6C6 50%, #80C6FF 50%, #80C6FF 100%);
    width: 100%;
}
.truth6 .t-bottom{
	background: linear-gradient(90deg, #fff 0%, #fff 50%, #80C6FF 50%, #80C6FF 100%);
    width: 100%;
}

.truth6 .t-m-inner{
	max-width: 1024px;
	margin: 0 auto ;
	position: relative;
}
.truth6 .t-m iframe{
position: absolute;
	top:25px;
	right: 200px;
	z-index: 11;
}

/*===============================

	コピー3

================================*/
.copy-3{
	text-align: center;
	background-image: url("../img/copy-bg.jpg");
	background-position: top center;
	background-repeat: no-repeat;
	padding: 140px 0 280px 0;
}
.copy-3 img{
	margin: 0 auto;
	width: 164px;
}
.copy-3 h2{
	font-size: 4.0rem;
	font-weight: 400;
	padding: 0 0 0 0.5em;
	letter-spacing: 0.2em;
	margin: 2rem 0;
}

.copy-3 p{
	font-size: 1.8rem;
	line-height: 3rem;
}
.copy-3 p span{
	color: #29A6FF;
}

/*===============================

	vr1

================================*/

.vr-1{
	background-image: url("../img/vr-bg.png");
	background-position: top center;
	background-size: cover;
	background-repeat: no-repeat;
	text-align: center;
	padding: 80px 0 0 0;
	margin: -250px 0 0 0;
}
.vr-1 h2{
	max-width: 610px;
	margin: 80px auto;
}
.vr-1-con{
	position: relative;
	margin: -20px auto;
}
.vr-1-con-2{
	position: relative;
	margin: -20px auto;
}
.vr-1-con .ttl,.vr-1-con-2 .ttl{
	position: absolute;
	top:18%;
	right: 65%;
	height: 46px;
	width: 868px;
}
/*===============================

	vr2

================================*/
.vr-2{
	text-align: center;
	background-image: url("../img/copy-bg.jpg");
	background-position: top center;
	background-repeat: no-repeat;
	padding: 100px 0 0 0;
}

.vr-2 .flex{
	width: 75%;
	margin: 0 auto;
}

.vr-2 .vr-2-1{
	margin: 0 auto 30px;
	width: 550px;
	justify-content: space-between;
	padding-left: 20px;
	
}

.vr-2 img{
	margin: 0 auto;
	width: 230px;
	height: 320px;
}

.vr-2 .vr-2-1 img{
	margin: 0 auto;
	width: 155px;
	height: 100px;
}
.vr-2 .vr-2-2{
	margin: 15px auto;
	width: 1024px;
	height: 175px;
}

.vr-2 h2{
	font-size: 4.1rem;
	font-weight: 400;
	letter-spacing: 0.2em;
	margin: 2rem 0;
}


/*===============================

	vr3

================================*/
.vr-3{
	background-image: url("../img/vr-bg.jpg");
	background-position: top center;
	background-size: cover;
	background-repeat: no-repeat;
	text-align: center;
}



/*===============================

	vr-4

================================*/
.vr-4{
	background-image: url("../img/vr-bg.jpg");
	background-position: center right;
	background-size:cover;
	background-repeat: no-repeat;
	text-align: center;
	margin: 0 0 20px 0;
}

.vr-4-1{
	margin: -30px 0 0 0;
}

/*===============================

	vr-5

================================*/
.vr-5{
	background: #80C6FF;
}

.vr-5 .flex{
	width: 80%;
	margin: 0 auto;
	justify-content: space-between;
	padding: 50px 0;
}

.vr-5 .flex img{
	width:  12px;
}

.vr-5 .flex p{
	width: 46%;
	font-size: 1.4rem;
	font-weight: 400;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	margin: 0;
}


/*===============================

	vr-6

================================*/
.vr-6{
	text-align: center;
	background-image: url("../img/copy-bg.jpg");
	background-position: top center;
	background-repeat: no-repeat;
	padding: 80px 0 140px 0;
}
.vr-6 h3{
	font-size: 1.8rem;
	font-weight: 400;
	padding: 0 0 0 0.5em;
	letter-spacing: 0.2em;
	line-height: 2em;
}
.vr-6 h2{
	font-size: 2.7rem;
	font-weight: 400;
	padding: 0 0 0 0.5em;
	letter-spacing: 0.2em;
	margin: 30px 0 80px;
}

.vr-6 .flex{
	width: 80%;
	margin: 0 auto;
	justify-content: space-between;
}
.vr-6 .flex p{
	font-size: 1.4rem;
	line-height: 1.8em;
	width: 55%;
	text-align: left;
	margin: 0 0 auto 0;
	padding: 0 0 0 20px;
}
.vr-6 .flex img{
	width: 340px;
	height: 210px;
}
.vr-6 p span{
	color: #29A6FF;
}


/*===============================

	vr-7

================================*/
.vr-7{
	background: #80C6FF;
	padding: 100px 0;
}

.vr-7 .flex{
	max-width: 900px;
	margin: 0 auto;
	justify-content: space-around;
	padding: 30px 0 70px;
	flex-wrap: wrap;
}

.vr-7 .flex img{
	width:  254px;
	height: 260px;
}

.vr-7 h2{
	font-size: 2.7rem;
	font-weight: 400;
	padding: 0 0 0 0.5em;
	letter-spacing: 0.2em;
	text-align: center;
}


/*===============================

	vr-8

================================*/
.vr-8{
	padding: 100px 0;
}

.vr-8 h2{
	font-size: 2.7rem;
	font-weight: 400;
	padding: 0 0 0 0.5em;
	letter-spacing: 0.2em;
	text-align: center;
	margin: 0;
}

.vr-8 p{
	font-size: 1.4rem;
	font-weight: 400;
	padding: 0 0 0 0.5em;
	letter-spacing: 0.2em;
	text-align: center;
}

/*===============================

	vr-9

================================*/
.vr-9 .vr-9-bg{
	padding: 100px 0;
	background: #9FD4FF;
	position: relative;
}
.btn-2{
	position: absolute;
	top:0px;
	left:0;
	right: 0;
	color: #FFFFFF;
	padding: 10px;
	background: #29A6FF;
	text-align: center;
	width: 550px;
	margin: 0 auto;
	font-size: 1.8rem;
	letter-spacing: 0.3em;
	text-indent: 0.3em;
	transform:skewX(-28deg);
	box-shadow: 4px 4px 0 0 rgba(255, 255, 255, 1);
	overflow: hidden;
}
.btn-2:hover {
    text-decoration: none;
    color: #fff;
}
.btn-2::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shiny-btn1 2s ease-in-out infinite;
	
}
@-webkit-keyframes shiny-btn1 {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    55% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    56% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
.btn-2 a{
	color: #FFFFFF;
	text-decoration: none;
}

/*===============================

	mail-m

================================*/
.mail-m{
	background-image: url("../img/bg-dot.jpg");
	background-position: top center;
	background-repeat: no-repeat;
	padding: 100px 0 140px 0;
}

.mail-m h3{
	font-size: 2.1rem;
	font-weight: 400;
	padding: 0 0 0 0.5em;
	letter-spacing: 0.2em;
	text-align: center;
	margin: 0;
}
.mail-m h2{
	font-size: 2.7rem;
	font-weight: 400;
	padding: 0 0 0 0.5em;
	letter-spacing: 0.2em;
	line-height: 1.8em;
	text-align: center;
	margin: 0 0 20px;
}

.mail-m p{
	font-size: 1.4rem;
	font-weight: 400;
	padding: 15px 0 15px 0.5em;
	letter-spacing: 0.2em;
	line-height: 2em;
	text-align: center;
}

.mail-m .mail-m-btn{
	width: 196px;
	margin: 0 auto;
}

.mail-m-ex{
	width: 900px;
	margin: 80px auto 0;
}

.mail-m-ex .flex{
	justify-content: center;
}

.mail-m-ex .flex img{
	margin: 50px 20px;
}

/*===============================

	コピー4

================================*/
.copy-4{
	background: #fff;
	margin: -100px 0 0 0;
}
.copy-4 .inner{
	max-width: 100%;
	text-align: center;
	background-image: url("../img/copy-bg.jpg");
	background-position: top center;
	background-repeat: no-repeat;
	padding: 120px 0 60px 0;
}
.copy-4 img{
	margin: 0 auto;
	width: 55px;
}
.copy-4 h2{
	font-size: 3.8rem;
	font-weight: 400;
	padding: 0 0 0 0.5em;
	letter-spacing: 0.2em;
	margin: 60px 0;
	line-height: 1.5em;
}

.copy-4 p{
	font-size: 1.4rem;
	line-height: 3rem;
}
.copy-4 p span{
	color: #29A6FF;
}
/*===============================

	補助金

================================*/
.it{
	background: #FFFF00;
}
.it .inner{
	max-width: 100%;
	text-align: center;
	background-image: url("../img/y-bg.png");
	background-position: top center;
	background-repeat: no-repeat;
	padding: 100px 0 80px 0;
}
.it h3{
	font-size: 2.4rem;
	font-weight: 400;
	padding: 0 0 0 0.5em;
	letter-spacing: 0.2em;
	margin: 0;
	line-height: 1.5em;
}

.it img{
	max-width: 1024px;
	margin: 30px auto 0;
}

.it img:nth-child(3){
	margin: -10px auto 0;
}

.it .it-btn{
	width: 340px;
	margin: 10px auto;
}

.it p{
	font-size: 1.4rem;
	font-weight: 400;
	margin: 80px 0 0 0;
}


/*===============================

	フッター

================================*/
footer{
	background: #29A6FF;
	margin: 0;
	color: #fff;
	height: 200px;
	padding: 30px 0;
	text-align: center;
}

footer a{
	color: #fff;
	text-decoration: none;
}

footer img{
	width: 150px;
	height: 29px;
	margin: 0 auto 10px;
}

footer p{
	font-size: 1.4rem;
	margin: 0;
	font-weight: 400;
}
footer p strong{
	font-size: 2.0rem;
	margin: 0;
	font-weight: 400;
}
footer p span{
	background: #fff;
	font-size: 1.2rem;
	width: 3rem;
	text-align: center;
	display: inline-block;
	line-height: 1.2rem;
	border-radius: 2px;
	color: #29A6FF;
	margin: 0 5px 0 0;
	font-weight: 400;
}

/*===============================

	コンタクト

================================*/

#contact{
	text-align: center;
	padding: 0 0 140px;
}

#contact h3{
	font-size: 2.4rem;
	font-weight: 400;
	padding: 80px 0;
	letter-spacing: 0.2em;
	margin: 0;
	line-height: 1.5em;
	background: #29A6FF;
	color: #fff;
}
#contact p{
	font-size: 1.4rem;
	font-weight: 400;
	letter-spacing: 0.2em;
	line-height: 2em;
	margin: 50px auto 20px;
}
dl{
	width: 800px;
	margin: 80px auto 50px;
}

.must{
	background: #fd5460;
	color: #fff;
	font-size: 1.2rem;
	padding: 0px 2px;
	border-radius: 2px;
}
.red{
	color: #fd5460;
}
.small{
	font-size: 1.2rem;
}
dt{
	font-size: 1.4rem;
	font-weight: 400;
	margin-bottom: 10px;
	text-align: left;
}
dl .must{
	margin-left: 10px;
}
dd{
	margin: 0 0 30px;
		font-size: 1.8rem;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea{
	border: 1px solid #e1e1e1;
	width: 100%;
	padding: 10px 10px;
	border-radius: 4px;
}
form ::placeholder{
	color: #e1e1e1;
}
form .content_1,
form .item{
	display: flex;
	flex-wrap: wrap;
}
.content_1 label,
.item label{
	display: block;
	width: 50%;
}
textarea{
	min-height: 150px;
}

button[type="submit"]{
	display: block;
	width: 300px;
	margin: 0 auto;
	background: #29A6FF;
	color: #fff;
	border: none;
	padding: 15px 0;
	border-radius: 3px;
	font-size: 1.8rem;
}
.mfp_col5,.mfp_col10{
	margin-bottom: 10px;
}


/*===========================================================================

	スマホ

============================================================================*/


/*===============================

	COMMON

================================*/

@media screen and (max-width: 768px) {

.sp{
	display: block;
}

.pc{
	display: none;
}
.inner{
	width: 100%;
	margin: 0 auto;
}
.mfp_element_all {
    max-width: 100%;
}

/*===============================

	ヘッダー

================================*/
header{
	position: static;
	width: 100%;
	padding: 0;
	background: #fff;
}
header .header_back{
	background-image: none;
	height: auto;
}
header .header_inner{
	display: block;
	background-image: none;
	max-width: 100%;
	width: 100%;
	margin: 0;
}

header .header_inner img{
	height: auto;
}

	
header .header_inner .h-1{
	position: static;
	height: auto;
	width: 100%;
	margin: 0;
}
header nav ul{
	position: fixed;
	bottom:0;
	right:0;
	display: flex;
	justify-content: space-between;
	margin: 0;
	padding: 0;
	z-index: 999;
	width: 100%;
	
}
header nav ul li{
	margin: 0;
	
}
	
header nav{
	width:  100vw;
	}

/*===============================

	メインビジュアル

================================*/
.mv{
	position: relative;
	max-height: 170vw;
	min-height: auto;
	height: 170vw;
	min-width: 100%;
	width: 100%;
	margin: -5vw 0 0 0;
	z-index: 0;
}

.mv .mv-1{
	position: absolute;
	top:5vw;
	left: 0;
	width: 100%;
}

.mv .mv-2{
	position: absolute;
	top:0;
	left: 0;
	width: 50%;
}

.mv .mv-3{
	display: none;
}

.mv .mv-4{
	position: absolute;
	top:13vw;
	right: 0;
	max-width: 100%;
}

.mv .mv-5{
	display: none;
}

.mv .mv-6{
	display: none;
}
.mv .mv-7 {
    position: absolute;
    top: 64vw;
    margin: 0;
    height: 100px;
}

.mv .inner{
	position: relative;
	width:100%;
}
.mv h1{
	position: absolute;
	top:28vw;
	font-size: 3.0rem;
	letter-spacing: 0.18em;
	margin: 0 0 0 4vw;
	font-weight: 400;
}

.mv h1 img{
	height: 3.0rem;
	display: inline;
	margin: 0 0.7rem 1vw -0.1rem;
}

.mv h6{
	position: absolute;
	top:65vw;
	font-size: 2.8rem;
	letter-spacing: 0.18em;
	margin: 0 0 0 4vw;
	font-weight: 400;
}
.mv p{
	position: absolute;
	top:115vw;
	left:0;
	right:0;
	font-size: 1.2rem;
	letter-spacing: 0;
	margin: 0 auto;
	text-indent: 0;
	line-height: 1.9em;
	text-align: center;
}


.btn-1{
top: 138vw;
    left: 0;
    right: 0;
    /* padding: 10px; */
    /* background: #29A6FF; */
    /* text-align: center; */
    width: 80%;
    margin: 0 auto;
    /* font-size: 1.4rem; */
    /* letter-spacing: 0.1em; */
    /* text-indent: 0.3em; */
    /* transform: skewX(
-28deg
); */
    /* box-shadow: 4px 4px 0 0 rgb(255 255 255); */
    overflow: hidden;
}
/*===============================

	コピー１

================================*/
.copy-1{
	text-align: center;
	background-image: url("../img/sp-copy-bg.jpg");
	background-position: top center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 0 0 20vw;
}
.copy-1 img{
	margin: 5vw auto;
	width: 10%;
}
.copy-1 h2{
	font-size: 2.8em;
	font-weight: 400;
	padding: 0 0 0 0.5em;
	letter-spacing: 0.2em;
	margin: 3vw 0;
}
.copy-1 h3{
	font-size: 1.4rem;
	letter-spacing: 0.3em;
	line-height: 1.8em;
	margin:0;
}
.copy-1 p{
	font-size: 1.4rem;
	line-height: 2em;
	margin: 10vw 0;
}
.copy-1 p span{
	color: #29A6FF;
}
.copy-1 p strong{
	font-size: 2.2rem;
	line-height: 3.5rem;
	font-weight: 400;
	letter-spacing: 0.1em;
	color: #29A6FF;
}

/*===============================

	ポイント

================================*/
.point{
	padding: 0;
	background-image: none;
	margin: 0 0 15vw 0;
}
.point .h4{
	background-image: url("../img/sp-h4-bg.png");
	background-position: right;
	background-size: cover;
	height: auto;
	margin: 0;
}
.point h4{
	font-size: 2.0rem;
	line-height: 1.1em;
	max-width: 100%;
	letter-spacing: 0.1em;
	padding: 0.5em 0 0.5em 5vw;	
}
.point .flex{
	max-width: 100%;
	display: block;
	padding: 0;
}
.point .flex .pt-img{
	width: 100%;
	margin-bottom: 5vw;
	height: auto;
}
	
/*===============================

	ボタン類

================================*/
.btn-g{
	background: #29A6FF;
	width: 100%;
	height: 150vw;
	margin: 0;
}

.btn-g .btn-inner{
	width: 100%;
	height: auto;
	position: relative;
	margin: 0 auto;
}

.btn-g .btn-inner .btn-g-1{
	width: 100%;
	height: auto;
	margin-bottom: 0;
}
.btn-g .btn-inner .btn-g-2{
	display: block;
	width: 70%;
	position: absolute;
	top:80vw;
	right: 0;
	left: 0;
	margin: 0 auto;
	z-index: 100;
}
.btn-g .btn-inner .btn-g-2 img{
		margin: 3vw 0 0 0 ;
	}
.btn-g .btn-inner .btn-g-2 a{
	width: 100%;
}

/*===============================

	コピー２

================================*/
.copy-2{
	margin: 0;
}
.copy-2{
	padding: 20vw 0 10vw ;
	background-size: 40%;
}
.copy-2 h2{
	font-size: 2.2rem;
	padding: 0 0 0 0.5em;
	letter-spacing: 0.1em;
	margin: 2rem 0;
}

.copy-2 p{
	font-size: 1.2rem;
	letter-spacing: 0.1em;
}
.copy-2 h2 strong{
	font-size: 3.8rem;
	padding: 0 0 0.1em 0.8em;
}
/*===============================

	真実１

================================*/
.truth1{
	margin: 0;
}

.truth1 img{
	width: 100%;
	margin: 0 auto ;
}


/*===============================

	真実2

================================*/
.truth2{
	margin: 0;
}
.truth2 img{
	width: 100%;
	margin: 0 auto;
}
.truth2 .t-m{
    width: 100%;
}
.truth2 .t-m-inner{
	max-width: 100%;
	position: relative;
}
.truth2 .t-m iframe{
position: absolute;
	bottom:53vw;
	left: 5vw;
	width: 75%;
}
.truth2 .t-bottom{
	background: linear-gradient(90deg, #80C6FF 0%, #80C6FF 50%, #fff 50%, #fff 100%);
    width: 100%;

}
/*===============================

	真実3

================================*/
.truth3{
	margin: 0;
}

.truth3 img{
	width: 100%;
}

.truth3 .t-m{
    width: 100%;
}
.truth3 .t-bottom{
    width: 100%;
}

.truth3 .t-m-inner{
	max-width: 100%;
	position: relative;
}
.truth3 .t-m iframe{
position: absolute;
	bottom:65vw;
	left: 5vw;
	width: 75%;
}

/*===============================

	真実4

================================*/
.truth4{
	margin: 0;
}
.truth4 img{
	width: 100%;
}
/*===============================

	真実5

================================*/
.truth5{
	margin: 0;
}

.truth5 img{
	width: 100%;
}
/*===============================

	真実6

================================*/
.truth6{
	margin: 0;
}

.truth6 img{
	width: 100%;
}

.truth6 .t-m-inner{
	max-width: 100%;
	margin: 0 auto ;
	position: relative;
}
.truth6 .t-m iframe{
position: absolute;
	top:140vw;
	left: 5vw;
	z-index: 11;
	width: 75%;
}

/*===============================

	コピー3

================================*/
.copy-3{
	text-align: center;
	background-image: url("../img/sp-copy-bg.jpg");
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 20vw 0;
	height: 100vw;
}
.copy-3 h2{
	font-size: 2.6rem;
	padding: 0 0 0 0.5em;
	letter-spacing: 0.1em;
	margin: 0;
}

.copy-3 p{
	font-size: 1.8rem;
	line-height: 3rem;
}
.copy-3 p span{
	color: #29A6FF;
}

/*===============================

	vr1

================================*/

.vr-1{
	background-image:none;
	padding: 0;
	margin: 0;
}
.vr-1 h2{
	max-width: 100%;
	margin: 0;
}

/*===============================

	vr2

================================*/
.vr-2{
	background-image: none;
	padding: 0;
}
.vr-2 img{
	margin: 0;
	width: 	100%;
	height: auto;
}
.vr-2 .vr-2-2{
	margin: 0;
	width: 100%;
	height: auto;
}

/*===============================

	vr3

================================*/
.vr-3{
	background-image: url("../img/vr-bg.jpg");
	background-position: top center;
	background-size: cover;
	background-repeat: no-repeat;
	text-align: center;
}



/*===============================

	vr-4

================================*/
.vr-4{
	background-image: none;
	margin: 0;
}
	
.vr-4-1{
	margin: -5vw 0 5vw 0;
}


/*===============================

	vr-5

================================*/
.vr-5{
	background: #80C6FF;
}

.vr-5 .flex{
	display: block;
	width: 85%;
	margin: 0 auto;
	padding:8vw 0;
}

.vr-5 .flex p{
	width: 100%;
	font-size: 1.2rem;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.8em;
	margin: 0;
}


/*===============================

	vr-6

================================*/
.vr-6{
	text-align: center;
	background-image: url("../img/sp-copy-bg.jpg");
	background-position: top center;
	background-repeat: repeat-y;
	background-size: contain;
	padding: 20vw 0 30vw 0;
}
.vr-6 h3{
	font-size: 1.2rem;
	font-weight: 400;
	padding: 0 0 0 0.5em;
	letter-spacing: 0.2em;
	line-height: 2em;
}
.vr-6 h2{
	font-size: 2.2rem;
	font-weight: 400;
	padding: 0 0 0 0.5em;
	letter-spacing: 0.2em;
	margin: 0 0 10vw;
}

.vr-6 .flex{
	display: block;
	width: 90%;
	margin: 0 auto;
}
.vr-6 .flex p{
	font-size: 1.2rem;
	line-height: 1.8em;
	width: 100%;
	text-align: left;
	margin: 0 auto;
	padding: 5vw 0 0 0;
}
.vr-6 .flex img{
	width: 340px;
	height: 210px;
}
.vr-6 p span{
	color: #29A6FF;
}


/*===============================

	vr-7

================================*/
.vr-7{
	background: #80C6FF;
	padding: 10vw 0;
}

.vr-7 .flex{
	width: 100%;
	padding: 0;
	display: block;
}

.vr-7 .flex img{
	width:  100%;
	height: auto;
}

.vr-7 h2{
	font-size: 2.2rem;
	padding: 0;
	letter-spacing: 0.1em;
	text-align: center;
}


/*===============================

	vr-8

================================*/
.vr-8{
	padding: 10vw 0 5vw;
}

.vr-8 h2{
	font-size: 2.2rem;
	padding: 0;
	letter-spacing: 0.1em;
	margin: 0;
}

.vr-8 p{
	font-size: 1.2rem;
	padding: 0;
	letter-spacing: 0.1em;
	text-align: center;
}

/*===============================

	mail-m

================================*/
.mail-m{
	background-image: url("../img/sp-copy-bg.jpg");
	background-position: top center;
	background-repeat: repeat-y;
	background-size: contain;
	padding: 20vw 0;
	margin-bottom: -20vw;
}

.mail-m h3{
	font-size: 2.1rem;
	font-weight: 400;
	padding: 0 0 0 0.5em;
	letter-spacing: 0.2em;
	text-align: center;
	margin: 0;
}
.mail-m h2{
	font-size: 2.2rem;
	font-weight: 400;
	padding: 0;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	margin: 10vw 0;
}

.mail-m p{
	font-size: 1.2rem;
	font-weight: 400;
	padding: 0;
	letter-spacing: 0.1em;
	line-height: 1.8em;
	margin: 10vw 0;
}

.mail-m .mail-m-btn{
	width: 165px;
	margin: 0 auto;
}

.mail-m-ex{
	position: relative;
	width: 100%;
	margin: 20vw 0 0 0;
	height: 170vw;
	background: #F2F2F2;
}

.mail-m-ex .flex{
	position: absolute;
	bottom: 25vw;
	right: 0;
	left:0;
	margin: 0 auto;
	width: 85%;
}
.mail-m-ex .flex img{
	margin: 0 auto;
	padding: 0 5px;

}
/*===============================

	コピー4

================================*/
.copy-4{
	background: none;
	margin: 20vw 0;
}
.copy-4 .inner{
	max-width: 100%;
	background-image: none;
	padding: 0;
}
.copy-4 img{
	margin: 0;
	width: 100%;
}
/*===============================

	補助金

================================*/
.it{
	background: #FFFF00;
}
.it .inner{
	max-width: 100%;
	text-align: center;
	background-image: url("../img/y-bg.png");
	background-position: top center;
	background-repeat: no-repeat;
	padding: 10vw 0;
}

.it img{
	max-width: 100%;
	margin: 0;
}

.it img:nth-child(3){
	margin: 0;
}

.it .it-btn{
	width: 80%;
	margin: 5vw auto;
}

.it p{
	font-size: 1.4rem;
	font-weight: 400;
	margin: 10vw 0 0 0;
}


/*===============================

	フッター

================================*/
footer{
	background: #29A6FF;
	margin: 0;
	color: #fff;
	height: 70vw;
	padding: 30px 0;
	text-align: center;
}

footer a{
	color: #fff;
	text-decoration: none;
}

footer img{
	width: 150px;
	height: 29px;
	margin: 0 auto 10px;
}

footer p{
	font-size: 1.4rem;
	margin: 0;
	font-weight: 400;
}
footer p strong{
	font-size: 2.0rem;
	margin: 0;
	font-weight: 400;
}
footer p span{
	background: #fff;
	font-size: 1.2rem;
	width: 3rem;
	text-align: center;
	display: inline-block;
	line-height: 1.2rem;
	border-radius: 2px;
	color: #29A6FF;
	margin: 0 5px 0 0;
	font-weight: 400;
}

/*===============================

	コンタクト

================================*/

#contact{
	text-align: center;
	padding: 0 0 20vw;
}

#contact p{
	font-size: 1.4rem;
	font-weight: 400;
	letter-spacing: 0.2em;
	line-height: 2em;
	margin: 5vw auto;
}
dl{
	width: 100%;
	margin: 10vw auto;
}






}
