@charset "utf-8";

html,body {
	color: #000;
	font-family:  'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-weight: normal;
	font-style: normal;
	letter-spacing: 0;
}

body {
	-webkit-font-smoothing: antialiased;
	min-height: 100vh;
	position: relative;
}

body::before{
	content: "";
	width: 100vw;
	height: 100vh;
	background-image: url(../img/bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-color: #000;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
}

body::after{
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:#fff;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s ease;
}

body.transition::after{
  opacity: 1;
}

* {
	box-sizing: border-box;
}

a {
	transition: all 1s;
}

@media print, screen and (min-width: 768px){
.sp_only {
	display: none;
}
}

.pc_only {
	display: none;
}
@media print, screen and (min-width: 768px){
.pc_only {
	display: inline;
}
}

img{
	max-width:100%;
	height: auto;
	vertical-align: bottom;
}


/* ==========================================================================
   wrapper
   ========================================================================== */
.wrapper {
	position: relative;
	overflow: hidden;
}
@media print, screen and (min-width: 768px){
.wrapper {
	max-width: 900px;
	margin: 0 auto;
}
}

.main-contents {
	background: #fff;
	position: relative;
	overflow: hidden;
}
@media print, screen and (min-width: 768px){
.main-contents {
	margin-left: auto;
	padding: 0;
	width: 470px;
	min-height: 100vh;
	filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.06));
	box-sizing: border-box;
	margin-right: 5px;
}
}

.contact-area.space {
	margin: .6rem 0;
}

.contact-area.space-02 {
	margin-top: .4rem;
	padding-bottom: 3.6rem;
}

.reason-area {background: #faedf1;}

/*--nav--*/
.nav-area {
	color: #fff;
	position: fixed;
	text-align: center;
	z-index: 10;
	top: calc(50% - 380px );
	left: calc(50% - 500px);
	width: 380px;
}

.nav-area .nav-inner {
	padding: 60px 36px 25px;
	background-size: contain;
}

.nav-area .nav-inner p.n-txt {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: .18em;
	margin-bottom: 8px;
	margin-left: .18em;
}

.nav-area .nav-inner h1 {
	font-size: 32px;
	font-weight: 700;
	letter-spacing: .12em;
	font-feature-settings: "palt" 1;
	margin: 0 auto 50px;
	padding: 0 0 0 0.12em;
}

.nav-area .nav-inner nav ul {
	padding: 38px 0;
	margin: 0 6%;
	border-top: 2px solid #fff;
	border-bottom: 2px solid #fff;
}

.nav-area .nav-inner nav ul li {}
.nav-area .nav-inner nav ul li a {
	color: #fff;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.nav-area .nav-inner nav ul li + li {
	margin-top: 15.2px;
}


/* ==========================================================================
   btn
   ========================================================================== */
.btn-line-simulation{
	width: 100%;
	box-sizing: border-box;
}

.btn-wrap{
	width: 100%;
	position: relative;
}

.btn-line-simulation a.img-btn{
	width: 88%;
	height: 160px;
	display: block;
	transition: all 0.2s ease;
	overflow: hidden;
	position: relative;
	border-radius: 16px;
	-webkit-border-radius: 16px;
	background-color: #38CD01;
	margin: 0 7% 0 5%;
}
@media print, screen and (min-width: 768px){
.btn-line-simulation a.img-btn{
	height: 186px;
}
}

.btn-line-simulation a:hover{
	filter: brightness(110%);
}

.btn-wrap::before{
	content: '';
	position: absolute;
	top: 10px;
	left: 7%;
	width: 88%;
	height: 160px;
	border-radius: 16px;
	background-color: #258003;
	box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}
@media print, screen and (min-width: 768px){
.btn-wrap::before{
	height: 186px;
}
}

.btn-line-simulation a.img-btn::before{
	content: '';
	position: absolute;
	top: -50px;
	left: -100px;
	width: 60px;
	height: 60px;
	mix-blend-mode: normal;
	background-image: linear-gradient(100deg,  rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.8) 100%, rgba(255, 255, 255, 0) 0%);
	z-index: 5;
	/* アニメーション */
	animation-name: shiny;
	animation-duration: 3s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
}

@keyframes shiny {
    0% {
        transform: scale(0) rotate(25deg);
        opacity: 0;
    }

    50% {
        transform: scale(1) rotate(25deg);
        opacity: 1;
    }

    100% {
        transform: scale(50) rotate(25deg);
        opacity: 0;
    }
}

.btn-line-simulation a.icon-click{
	width: 70px;
	height: 70px;
	position: absolute;
	right: 36px;
	bottom: -42px;
	background-image: url(../img/icon-click.webp);
	background-size: cover;
	background-position: top left;
	background-repeat: no-repeat;
	z-index: 10;
}
@media print, screen and (min-width: 768px){
.btn-line-simulation a.icon-click{
	width: 80px;
	height: 80px;
	right: 38px;
	bottom: -48px;
}
}

.btn-area .btn a{
	width: 100%;
	height: auto;
	display: block;
	border-radius: 4px;
	transition: all 0.2s ease;
	z-index: 5;
	overflow: hidden;
}

.btn-area .btn a:hover{
	filter: brightness(106%);
}

.btn-area .btn-contact a{
	background: linear-gradient(#ffe264 0%, #e39d00 100%);
}

.btn-area .btn-line a{
	background: linear-gradient(#a8ff71 0%, #41d300 100%);
}


/* ==========================================================================
   main-contents
   ========================================================================== */
#main{
	position: relative;
}

#main .mv-1,
#main .mv-2,
#main .mv-3,
#main .mv-4,
#main .mv-5{
	position: absolute;
	top: 0;
	left: 0;
}

#main .mv-badge{
	width: 42vw;
	height: auto;
	position: absolute;
	top: 16px;
	left: 20px;
}
@media print, screen and (min-width: 768px){
#main .mv-badge{
	width: 180px;
}
}


#intro{
	background-image: url(../img/block-01-bg.jpg);
	background-size: cover;
	background-position: top left;
	background-repeat: no-repeat;
	position: relative;
}

#intro .mask{
	width: 320px;
	height: auto;
	position: absolute;
	top: 158vw;
	right: -200px;
}
@media print, screen and (min-width: 768px){
#intro .mask{
	width: 400px;
	height: auto;
	position: absolute;
	top: 750px;
	right: -240px;
}
}

#features{
	background-color: #BC0000;
}

#simulation{
	background-color: #1B3360;
}

#simulation .block-03-1{
	margin: -8vw 0 0 0;
}
@media print, screen and (min-width: 768px){
#simulation .block-03-1{
	margin: -42px 0 0 0;
}
}

#simulation .btn-line-simulation{
	background-color: #1B3360;
	box-sizing: border-box;
	padding: 0 0 60px;
}
@media print, screen and (min-width: 768px){
#simulation .btn-line-simulation{
	padding: 0 0 65px;
}
}

#flow .btn-area{
	width: 100%;
	padding: 0 5%;
	box-sizing: border-box;
}

#flow{
	background-color: #BC0000;
}

#flow .step1{
	position: relative;
}

#flow .step1 .btn-area{
	position: absolute;
	top: 44.5vw;
	left: 0;
	padding: 0 9%;
	box-sizing: border-box;
}
@media print, screen and (min-width: 768px){
#flow .step1 .btn-area{
	top: 212px;
	padding: 0 9%;
}
}

#job{
	background-color: #000;
}

#job-2{
	background-color: #BC0000;
}

#support{
	position: relative;
}

#support .block-06-2{
	width: 26.0vw;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: 10vw 0 0 -19vw;
}
@media print, screen and (min-width: 768px){
#support .block-06-2{
	width: 120px;
	margin: 49px 0 0 -88px;
}
}

#voice{
	background-color: #BC0000;
	z-index: 0;
}

#voice .btn-line-simulation{
	box-sizing: border-box;
	padding: 0 0 60px;
}
@media print, screen and (min-width: 768px){
#voice .btn-line-simulation{
	padding: 0 0 65px;
}
}

#closing{
	position: relative;
}

#closing .closing-1,
#closing .closing-3,
#closing .closing-4{
	position: absolute;
	top: 0;
	left: 0;
}

#closing .closing-2{
	width: 71vw;
	height: auto;
	position: absolute;
	top: 0;
	left: -1vw;
}
@media print, screen and (min-width: 768px){
#closing .closing-2{
	width: 71%;
	left: -2%;
}
}

#contact .btn-area{
	padding: 0 9%;
	box-sizing: border-box;
}
@media print, screen and (min-width: 768px){
#contact .btn-area{
	padding: 0 9%;
}
}


/* ==========================================================================
   slide
   ========================================================================== */
.slide {
	margin: 20px 0 10px 0;
	position: relative;
}

.slide .block-08-title{
	position: absolute;
	top: -24px;
	left: 0;
	z-index: 5;
}

.slide .slide-container{
	width: 100%;
	height: auto;
	position: relative;
}

.slide .swiper-wrapper{
	width: 100%;
	height: auto;
}

.slide .swiper-slide{
	height: 100%;
	padding: 0 3.0%;
	box-sizing: border-box;
}

.slide .swiper-slide img{
	width: 100%;
	height: auto;
	display: block;
}

.slide .swiper-pagination{
	bottom: -15px!important;
}

.slide .swiper-pagination-bullet{
	width: 6px;
  height: 6px;
	background-color: #fff!important;
	opacity: 1!important;
}

.slide .swiper-pagination-bullet-active{
	background-color: #FDD600!important;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
	top: 50%!important;
	width: 40px!important;
	height: 80px!important;
	margin-top: -40px!important;
	z-index: 10;
	cursor: pointer;
	background-image: url(../img/arrow-next.svg)!important;
	background-size: cover!important;
	background-position: top left;
	background-repeat: no-repeat;
}

.swiper-button-next{
	right: 0!important;
}

.swiper-button-prev{
	left: 0!important;
	transform: scaleX(-1);
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0!important;
}


/* ==========================================================================
   faq
   ========================================================================== */
#faq{
	padding: 46px 0 50px;
	background-color: #000;
}
@media print, screen and (min-width: 768px){
#faq{
	padding: 50px 0 50px;
}
}

#faq .faq-head{
	color: #fff;
	width: 100%;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-align: center;
}
@media print, screen and (min-width: 768px){
#faq .faq-head{
	font-size: 26px;
}
}

#faq .faq-list{
	padding: 0 7%;
}
@media print, screen and (min-width: 768px){
#faq .faq-list{
	padding: 0 5%;
}
}

#faq .faq-list .accordion_one{
	border-top: 1px solid #ddd;
}

#faq .faq-list .accordion_one:last-child{
	border-bottom: 1px solid #ddd;
}

#faq .faq-list .accordion_one .accordion_header{
	color: #fafafa;
	position: relative;
	z-index: +1;
	cursor: pointer;
	transition-duration: 0.2s;
	display: flex;
	flex-shrink: 0;
	flex-direction: row;
  align-items: center;
  background-color: #000;
	padding: 18px 0;
}
@media print, screen and (min-width: 768px){
#faq .faq-list .accordion_one .accordion_header{
	padding: 24px 0;
}
}

#faq .faq-list .accordion_one .accordion_header .faq-q{
	width: 28px;
	height: 28px;
	margin: 0px 14px 0 0;
}
@media (min-width: 440px){
#faq .faq-list .accordion_one .accordion_header .faq-q{
	width: 36px;
	height: 36px;
	margin: 0px 14px 0 0;
}
}

#faq .faq-list .accordion_one .accordion_header .faq-q img{
	width: 100%;
	height: auto;
	display: block;
}

#faq .faq-list .accordion_one .accordion_header .faq-title{
	color: #fafafa;
	width: 80%;
  font-size: 15px;
	line-height: 1.5;
	font-weight: 500;
}
@media print, screen and (min-width: 768px){
#faq .faq-list .accordion_one .accordion_header .faq-title{
	font-size: 18px;
}
}

#faq .faq-list .accordion_one .accordion_header .i_box{
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 0px;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  box-sizing: border-box;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
}
@media print, screen and (min-width: 768px){
#faq .faq-list .accordion_one .accordion_header .i_box{
	right: 0px;
}
}

#faq .faq-list .accordion_one .accordion_header .i_box .one_i{
  display: block;
  width: 15px;
  height: 15px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}

#faq .faq-list .accordion_one .accordion_header.open .i_box{
  -webkit-transform: rotate(-0deg);
  transform: rotate(-0deg);
}

#faq .faq-list .accordion_one .accordion_header .i_box .one_i:before,
#faq .faq-list .accordion_one .accordion_header .i_box .one_i:after{
  display: flex;
  content: '';
  background-color: #fff;
  border-radius: 0px;
  width: 15px;
  height: 1px;
  position: absolute;
  top: 7px;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transform-origin: center center;
}

#faq .faq-list .accordion_one .accordion_header .i_box .one_i:before{
  width: 1px;
  height: 15px;
  top: 0;
  left: 7px;
}

#faq .faq-list .accordion_one .accordion_header.open .i_box .one_i:before{
  content: none;
}

#faq .faq-list .accordion_one .accordion_header.open .i_box .one_i:after{
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#faq .faq-list .accordion_one .accordion_inner{
	color: #fafafa;
  display: none;
	font-size: 14px;
	line-height: 1.7;
  padding: 10px 0 20px 40px;
  box-sizing: border-box;
}
@media print, screen and (min-width: 768px){
#faq .faq-list .accordion_one .accordion_inner{
  font-size: 17px;
	padding: 10px 0 26px 50px;
}
}

#faq .faq-list .accordion_one .accordion_inner .box_one{
	width: 100%;
  display: flex;
	flex-direction: row;
	justify-content: flex-start;
}


/* ==========================================================================
   contact-form
   ========================================================================== */
#contact-form{
	background-color: #bc0000;
	margin: 0 5%;
	padding: 6.5% 6.5%;
}

#contact-form form dl{
  width: 100%;
  display: block;
  float: left;
  margin: 0;
  display: flex;
	flex-direction: column;
	padding: 8px 0;
}

#contact-form form dt{
	color: #fff;
  width: 100%;
  height: 22px;
  font-size: 15px;
  line-height: 1em;
  font-weight: 700;
	letter-spacing: 0.05em;
  display: flex;
	flex-direction: row;
  align-items: center;
	justify-content: space-between;
	margin-bottom: 6px;
}

#contact-form form dd input[type="text"],
#contact-form form dd input[type="email"],
#contact-form form dd input[type="tel"],
#contact-form form dd input[type="date"]{
	color: #000;
  width: 100%;
	height: 46px;
  resize: vertical;
	font-size: 15px;
	font-family: "Noto Sans JP", sans-serif;
	letter-spacing: 0.06em;
  border: 0;
  border-radius: 0;
  margin: 0;
	padding: 0 10px;
  outline: none;
  appearance: none;
	box-sizing: border-box;
}

.submit-block{
	width: 100%;
	overflow: hidden;
}

.submit{
	color: #fff;
  width: 96%;
  height: 56px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 17px;
  font-weight: 700;
	letter-spacing: 0.12em;
	border-radius: 100px;
  background-color: #000;
	box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: all 0.3s ease;
  margin: 30px auto 10px;
}

@media print, screen and (min-width: 768px){
.submit:hover{
  background-color: #222;
}
}

.wpcf7-spinner{
	display: none !important;
}

div.wpcf7 .ajax-loader{
  display: none !important;
}


/* ==========================================================================
   footer
   ========================================================================== */
footer {
	background-color: #fff;
	padding: 20px 0 90px;
	box-sizing: border-box;
}
@media print, screen and (min-width: 768px){
footer {
	padding: 40px 0 40px;
}
}

.copyright {
	background-color: #fff;
	font-size: 11px;
	letter-spacing: 0.02em;
	line-height: 2.2;
	text-align: center;
}
@media print, screen and (min-width: 768px){
.copyright {
	font-size: 13px;
}
}

.copyright a{
	color: #000;
	font-size: 12px;
	text-decoration: underline;
}
@media print, screen and (min-width: 768px){
.copyright a{
	font-size: 14px;
}
}


@media only screen and (max-width : 1200px){
.nav-area {
	display: none;
}
.main-contents {
	margin: 0 auto;
}
img {
	width: 100%;
}
}


/* ==========================================================================
   thanks
   ========================================================================== */
#thanks .wrap{
	color: #fff;
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

#thanks h1{
	color: #fff;
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
	text-align: center;
	letter-spacing: 0.06em;
	margin: 50px 0 0 0;
}
@media (min-width: 415px){
#thanks h1{
  font-size: 30px;
	margin: 20px 0 0 0;
}
}

#thanks p{
	color: #fff;
	font-size: 14px;
	font-weight: 400;
  line-height: 1.8;
	text-align: center;
	letter-spacing: 0.04em;
	margin: 24px 0 0 0;
	padding: 0 7vw;
}
@media (min-width: 415px){
#thanks p{
	font-size: 16px;
	margin: 30px 0 0 0;
}
}

#thanks .btn_return a{
	color: #fff;
	width: 220px;
	height: 54px;
	line-height: 52px;
	font-size: 15px;
	font-weight: 500;
	text-align: center;
	display: block;
	border-radius: 4px;
	background: linear-gradient(#a8ff71 0%, #41d300 100%);
	transition: all 0.2s ease;
	box-sizing: border-box;
	margin: 80px 0 0 0;
}
@media (min-width: 415px){
#thanks .btn_return a{
	width: 260px;
	height: 56px;
	line-height: 54px;
	font-size: 15px;
	margin: 80px 0 0 0;
}
}

#thanks .btn_return a:hover{
	filter: brightness(106%);
}

#thanks footer{
	display: none!important;
}


/* ==========================================================================
   fixed-nav
   ========================================================================== */
.fixed-nav{
	width: 100%;
	height: 66px;
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 999;
	background-color: rgba(0, 0, 0, 0.85);
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding: 0 8px;
	box-sizing: border-box;
}
@media print, screen and (min-width: 768px){
.fixed-nav{
	display: none;
}
}

.fixed-nav .btn{
	width: 49.2%;
	border-radius: 4px;
}

.fixed-nav .btn a{
	width: 100%;
	display: block;
	border-radius: 4px;
}


.fixed-nav .btn a img{
	width: 100%;
	height: auto;
	display: block;
}

.fixed-nav .btn-contact a{
	background: linear-gradient(#ffe264 0%, #e39d00 100%);
}

.fixed-nav .btn-line a{
	background: linear-gradient(#a8ff71 0%, #41d300 100%);
}



/* ==========================================================================
   mt
   ========================================================================== */
.mt0{
	margin-top: 0!important;
}
.mt5{
	margin-top: 5px!important;
}
.mt10{
	margin-top: 10px!important;
}
.mt15{
	margin-top: 15px!important;
}
.mt20{
	margin-top: 20px!important;
}
.mt21{
	margin-top: 21px!important;
}
.mt22{
	margin-top: 22px!important;
}
.mt23{
	margin-top: 23px!important;
}
.mt24{
	margin-top: 24px!important;
}
.mt25{
	margin-top: 25px!important;
}
.mt30{
	margin-top: 30px!important;
}
.mt35{
	margin-top: 35px!important;
}
.mt40{
	margin-top: 40px!important;
}
.mt45{
	margin-top: 45px!important;
}
.mt50{
	margin-top: 50px!important;
}
.mt60{
	margin-top: 60px!important;
}
.mt70{
	margin-top: 70px!important;
}
.mt80{
	margin-top: 80px!important;
}
.mt90{
	margin-top: 90px!important;
}
.mt100{
	margin-top: 100px!important;
}
.mt110{
	margin-top: 100px!important;
}
.mt120{
	margin-top: 120px!important;
}
.mt130{
	margin-top: 130px!important;
}
.mt140{
	margin-top: 140px!important;
}
.mt150{
	margin-top: 150px!important;
}


/* ==========================================================================
   mt_sp
   ========================================================================== */
@media (max-width: 959px){
.mt0_sp{
	margin-top: 0!important;
}
.mt5_sp{
	margin-top: 5px!important;
}
.mt10_sp{
	margin-top: 10px!important;
}
.mt15_sp{
	margin-top: 15px!important;
}
.mt20_sp{
	margin-top: 20px!important;
}
.mt21_sp{
	margin-top: 10px!important;
}
.mt22_sp{
	margin-top: 22px!important;
}
.mt23_sp{
	margin-top: 23px!important;
}
.mt24_sp{
	margin-top: 24px!important;
}
.mt25_sp{
	margin-top: 25px!important;
}
.mt30_sp{
	margin-top: 30px!important;
}
.mt35_sp{
	margin-top: 35px!important;
}
.mt40_sp{
	margin-top: 40px!important;
}
.mt45_sp{
	margin-top: 45px!important;
}
.mt50_sp{
	margin-top: 50px!important;
}
.mt60_sp{
	margin-top: 60px!important;
}
.mt70_sp{
	margin-top: 70px!important;
}
.mt80_sp{
	margin-top: 80px!important;
}
.mt90_sp{
	margin-top: 90px!important;
}
.mt100_sp{
	margin-top: 100px!important;
}
.mt110_sp{
	margin-top: 110px!important;
}
.mt120_sp{
	margin-top: 120px!important;
}
.mt130_sp{
	margin-top: 130px!important;
}
.mt140_sp{
	margin-top: 140px!important;
}
.mt150_sp{
	margin-top: 150px!important;
}
