@charset "utf-8";
/**
/* 共通 CSS
----------------------------------------------- */
/*　　アニメーション　　*/
.js-inview{
	opacity: 0;
	transition: 1.5s;
}
.js-inview.active{
	opacity: 1;
}
/*
/*　　色・フォント　　*/
.bg_white{
	background: #FFFFFF;
}
.bg_blue{
	background: linear-gradient(90deg, #009E96 0%, #2EA2CF 100%);
}
.c-green{
	color: #009E96;
}
.c-blue{
	color: #005CAB;
}
.c-yellow{
	color: #FFE93E;
}
.c-white{
	color: #FFFFFF;
}
/*　　見出し　　*/
.guide-ttl{
	position: relative;
}
.guide-ttl .roma{
	font-family: "Poppins", sans-serif;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	margin-bottom: 1rem;
}
.guide-ttl .roma::first-letter{
	color: #009E96;
}
.guide-ttl h2{
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
}
.p-text{
	position: relative;
	font-size: 1rem;
	font-weight: 400;
	line-height: 2;
}
@media only screen and (max-width: 767px) {
	.guide-ttl .roma{
		font-size: 2.5rem;
		margin-bottom: 0.75rem;
	}
	.guide-ttl h2{
		font-size: 1.0625rem;
	}
	.p-text{
		font-size: 0.9375rem;
		line-height: 1.35;
	}
}
/*　　カードレイアウト　　*/
.cards-container{
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
}
.cards-container.grid-cols-2{
	column-gap: 3.5rem;
	row-gap: 3.5rem;
}
.cards-container.grid-cols-3{
	column-gap: 1.5rem;
	row-gap: 1.5rem;
}
.cards-container .card{
	display: flex;
	flex-direction: column;
}
.cards-container.grid-cols-2 .card{
	width: calc(50% - 1.75rem);
}
.cards-container.grid-cols-3 .card{
	width: calc(33.3333% - 1rem);
}
@media only screen and (max-width: 767px) {
	.cards-container.grid-cols-2{
		column-gap: 0;
		row-gap: 1.75rem;
	}
	.cards-container.grid-cols-3{
		column-gap: 0;
		row-gap: 1.25rem;
	}
	.cards-container.grid-cols-2 .card,
	.cards-container.grid-cols-3 .card{
		width: 100%;
	}
}
/**
/* トップページ CSS
----------------------------------------------- */
/*　　FV　　*/
.fv-view{
	margin-top: 6rem;
}
.fv-view::before{
	position: absolute;
	content: "";
	background: linear-gradient(107.04deg, #D8EFF3 0%, #CCF5E7 100%);
	width: 70%;
	max-width: 1257px;
	height: 36.5rem;
	top: -6rem;
	right: 0;
	z-index: -1;
}
.fv-view .view-img{
	width: 95%;
	max-width: 1468px;
	height: 43.5rem;
}
.fv-view .view-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.fv-view .fv-container{
	position: absolute;
	width: 100%;
	top: 9.625rem;
	left: 50%;
	transform: translateX(-50%);
	padding-top: 3.375rem;
}
.fv-view .fv-container::before{
	position: absolute;
	content: "";
	background: linear-gradient(90deg, #009E96 0%, #2EA2CF 100%);
	width: 90%;
	max-width: 1220px;
	height: 90%;
	max-height: 22.5rem;
	top: 0;
	left: 0;
	opacity: 0.9;
}
.fv-view .fv-container .fv-main{
	margin-bottom: 1.25rem;
}
.fv-view .fv-container .caption{
	margin-bottom: 1rem;
}
.fv-view .fv-container .caption span{
	display: flex;
	align-items: flex-end;
	color: #FFFFFF;
	font-size: 2.125rem;
	font-weight: 700;
	line-height: 1;
}
.fv-view .fv-container .caption span::before,
.fv-view .fv-container .caption span::after {
  width: 2px;
  height: 2rem;
  content: "";
  background-color: #FFFFFF;
}
.fv-view .fv-container .caption span::before {
  margin-right: 1rem;
  transform: rotate(-30deg);
}
.fv-view .fv-container .caption span::after {
  margin-left: 1rem;
  transform: rotate(30deg);
}
.fv-view .fv-container h1{
	color: #FFFFFF;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
}
.fv-view .fv-container .text{
	color: #FFFFFF;
	font-size: 1.25rem;
	font-weight: 500;
}
.fv-view .fv-container .fv-bottom{
	align-items: flex-end;
	margin-top: -3rem;
}
.fv-view .point-list{
	width: 66%;
	column-gap: 1.5rem;
	padding-top: 3rem;
}
.fv-view .point-list .point-items{
	background: #FFFFFF;
	width: calc(25% - 1.125rem);
	border-radius: 0.5rem;
	padding: 0 1rem 1rem 1rem;
}
.fv-view .point-list .point-items .point-icon{
	text-align: center;
	margin-bottom: 0.5rem;
}
.fv-view .point-list .point-items .point-icon img{
	width: 5rem;
	margin-top: -2rem;
}
.fv-view .point-list .point-items p{
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
}
.fv-view .fv-btn{
	width: calc(34% + 1rem);
	display: flex;
	column-gap: 1.5rem;
	margin-right: -1rem;
	padding-left: 1.5rem;
}
.fv-view .fv-btn li{
	width: calc(50% - 0.75rem);
}
.fv-view .fv-btn li a{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #FFFFFF;
	text-align:center;
	border-radius: 100%;
	box-shadow: 0px 4px 14px 0px #00000073;
}
.fv-view .fv-btn li a::before{
	content: '';
	display: block;
	padding-top: 100%;
}
.fv-view .fv-btn li.search a{
	background: #009E96;
}
.fv-view .fv-btn li.entry a{
	background: linear-gradient(105.13deg, #FCBD00 0.66%, #F86300 100%);
}
.fv-view .fv-btn li.search a .icon{
	margin-bottom: 0.875rem;
}
.fv-view .fv-btn li.search a .icon img{
	width: 2.8125rem;
}
.fv-view .fv-btn li.entry a .icon{
	margin-bottom: 0.625rem;
}
.fv-view .fv-btn li.entry a .icon img{
	width: 3.75rem;
}
.fv-view .fv-btn li a .ttl{
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.25;
}
.fv-view .fv-btn li a .arrow{
	position: absolute;
	display: flex;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
	background: #FFFFFF;
	bottom: 0;
	right: 0;
	width: 3rem;
	height: 3rem;
	text-align: center;
	border-radius: 100%;
}
.fv-view .fv-btn li a .arrow img{
	width: 1.5rem;
}
@media only screen and (max-width: 1345px) {
	.fv-view .fv-container .fv-bottom{
		margin-top: -1rem;
	}
	.fv-view .point-list{
		column-gap: 0.5rem;
		padding-top: 2rem;
	}
	.fv-view .point-list .point-items{
		width: calc(25% - 0.375rem);
		padding: 0 0.5rem 1rem 0.5rem;
	}
	.fv-view .point-list .point-items p{
		font-size: 1.125rem;
	}
	.fv-view .fv-btn{
		width: calc(34% + 2rem);
		column-gap: 0.5rem;
		margin-right: -2rem;
		padding-left: 0.5rem;
	}
	.fv-view .fv-btn li{
		width: calc(50% - 0.25rem);
	}
	.fv-view .fv-btn li.search a .icon img{
		width: 2.5rem;
	}
	.fv-view .fv-btn li.entry a .icon img{
		width: 3.5rem;
	}
	.fv-view .fv-btn li a .ttl{
		font-size: 1.25rem;
	}
	.fv-view .fv-btn li a .arrow{
		width: 2.5rem;
		height: 2.5rem;
	}
	.fv-view .fv-btn li a .arrow img{
		width: 1.25rem;
	}
}
@media only screen and (max-width: 767px) {
	.fv-view{
		margin-top: 4.75rem;
		padding: 2.25rem 0 14rem 0;
	}
	.fv-view::before{
		width: 76%;
		height: 32.5rem;
		top: 0;
	}
	.fv-view .view-img{
		width: 100%;
		height: 24.0625rem;
	}
	.fv-view .view-img img{
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.fv-view .fv-container{
		position: absolute;
		width: 100%;
		top: 6.75rem;
		left: 50%;
		transform: translateX(-50%);
		padding-top: 0;
	}
	.fv-view .fv-container::before{
		content: none;
	}
	.fv-view .fv-container .inner-wrap{
		width: 100%;
	}
	.fv-view .fv-container .fv-main{
		background: linear-gradient(90deg, rgba(0,158,150,0.9) 0%, rgba(46,162,207,0.9) 100%);
		padding: 1.5rem 1rem;
		margin-bottom: 1.25rem;
	}
	.fv-view .fv-container .caption{
		margin-bottom: 0.5rem;
	}
	.fv-view .fv-container .caption span{
		-webkit-justify-content: center;
		justify-content: center;
		font-size: 1.25rem;
	}
	.fv-view .fv-container .caption span::before,
	.fv-view .fv-container .caption span::after {
	  width: 2px;
	  height: 1.375rem;
	}
	.fv-view .fv-container .caption span::before {
	  transform: rotate(-25deg);
	}
	.fv-view .fv-container .caption span::after {
	  transform: rotate(25deg);
	}
	.fv-view .fv-container h1{
		font-size: 1.75rem;
		text-align: center;
		margin-bottom: 0.875rem;
	}
	.fv-view .fv-container .text{
		font-size: 0.9375rem;
		line-height: 1.46;
		text-align: center;
	}
	.fv-view .fv-container .fv-bottom{
		padding: 0 1rem;
		margin-top: -2rem;
	}
	.fv-view .point-list{
		width: 100%;
		column-gap: 0.75rem;
		row-gap: 2rem;
		padding-top: 1.5rem;
	}
	.fv-view .point-list .point-items{
		width: calc(50% - 0.375rem);
		box-shadow: 0px 0.5rem 1.75rem 0px #2C3F3F1A;
	}
	.fv-view .point-list .point-items .point-icon img{
		width: 4.5rem;
		margin-top: -1.5rem;
	}
	.fv-view .point-list .point-items p{
		font-size: 1.25rem;
	}
	.fv-view .fv-btn{
		display: none;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.fv-view{
		margin-top: 5.75rem;
	}
	.fv-view .view-img{
		height: 43.5rem;
	}
}
/*　　お知らせ　　*/
.front-news{
	padding: 3.5rem 0 6rem 0;
}
.front-news .ttl-container{
	width: 30%;
}
.front-news .news-container{
	width: 70%;
	padding-left: 4rem;
}
.news-list .news-items a{
	position: relative;
	display: block;
	border-bottom: 1px solid #E5E5E5;
	padding: 1.5rem 2.5rem 1.5rem 0;
}
.news-list .news-items:first-child a{
	border-top: 1px solid #E5E5E5;
}
.news-list .news-items a::after{
	content: '';
	background: url(../images/new/arrow_g.svg) no-repeat center;
	background-size: cover;
	width: 2rem;
	height: 2rem;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.news-list .news-items .date{
	font-family: "Poppins", sans-serif;
	color: #A4A4A4;
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.25;
	margin-bottom: 0.5rem;
} 
.news-list .news-items .ttl{
	color: #212121;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.25;
}
@media only screen and (max-width: 767px) {
	.front-news{
		padding: 2.5rem 0 3.75rem 0;
	}
	.front-news .ttl-container{
		width: 100%;
		margin-bottom: 1.5625rem;
	}
	.front-news .news-container{
		width: 100%;
		padding-left: 0;
	}
	.news-list .news-items a{
		padding: 1.25rem 2rem 1.25rem 0;
	}
	.news-list .news-items a::after{
		width: 1.75rem;
		height: 1.75rem;
	}
	.news-list .news-items .date{
		font-size: 0.875rem;
	} 
	.news-list .news-items .ttl{
		font-size: 0.9375rem;
		line-height: 1.46;
	}
	.front-news .block_btn{
		width: 100%;
        margin-top: 2rem;
	}
}
/*　　おすすめ求人をご紹介　　*/
.front-job-openings-guide{
	padding: 5rem 0 7.5rem 0;
	margin-top: 5rem;
}
.front-job-openings-guide::before{
	position: absolute;
	content: "";
	background: url(../images/new/job_bg.jpg) no-repeat center;
	background-size: cover;
	width: 90%;
	max-width: 1260px;
	height: 30rem;
	top: 0;
	left: 0;
}
.front-job-openings-guide .guide-ttl{
	margin-bottom: 3rem;
}
.front-job-openings-guide .guide-ttl .roma::first-letter{
	color: #FFFFFF;
}
.front-job-openings-guide .job-openings-container{
	position: relative;
	background: linear-gradient(107.04deg, #E5F3F6 0%, #EAF3EC 100%);
	max-width: 1440px;
	margin: 0 auto;
	padding: 3.5rem 0 0 0;
}
.front-job-openings-guide .cards-container .card{
	position: relative;
	background: #FFFFFF;
	padding: 1.5rem;
	border-radius: 0.5rem;
	box-shadow: 0px 4px 15px 0px #2C3F3F1A;
}
.front-job-openings-guide .cards-container .card::before {
    content: "";
    top: 0;
    left: 0;
    border-bottom: 2rem solid transparent;
    border-left: 2rem solid #009E96;
    position: absolute;
    z-index: 100;
    border-radius: 0.5rem 0 0 0;
}
.front-job-openings-guide .cards-container .card .card__ttl{
	border-bottom: 1px solid #E5E5E5;
	padding-bottom: 1rem;
	margin-bottom: 1rem;
}
.front-job-openings-guide .cards-container .card .city{
	display: inline-block;
	background: #E5F3F6;
	color: #009E96;
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: 1.25;
	border-radius: 3rem;
	padding: 0.25rem 1rem;
	margin-bottom: 0.5rem;
}
.front-job-openings-guide .cards-container .card h3{
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.285;
}
.front-job-openings-guide .cards-container .card .card__body{
	column-gap: 1.125rem;
}
.front-job-openings-guide .cards-container .card .card__text{
	width: calc(65% - 1.125rem);
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: 1.285;
}
.front-job-openings-guide .cards-container .card .list li{
	display: flex;
	align-items: baseline;
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: 1.285;
}
.front-job-openings-guide .cards-container .card .list li::before{
	content: "●";
	color: #009E96;
	font-size: 0.5rem;
	margin-right: 0.5rem;
}
.front-job-openings-guide .cards-container .card .list li + li{
	margin-top: 0.5rem;
}
.front-job-openings-guide .cards-container .card .card__img{
	width: 35%;
}
.front-job-openings-guide .cards-container .card .card__img img{
	border-radius: 0.5rem;
}
.front-job-openings-guide .cards-container .card .link{
	margin-top: 1rem;
}
.front-job-openings-guide .cards-container .card .link a{
	display: flex;
	align-items: center;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	color: #212121;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.25;
}
.front-job-openings-guide .cards-container .card .link a .icon{
	width: 1rem;
	margin-left: 0.5rem;
}
.front-job-openings-guide .cards-container .card .link a .icon img{
	width: 100%;
}
.front-job-openings-guide .job-openings-container .block_btn{
	position: relative;
    margin-top: 0.5rem;
    bottom: -2rem;
}
@media only screen and (max-width: 767px) {
	.front-job-openings-guide{
		padding: 3rem 0 2.5rem 0;
		margin-top: 2.5rem;
	}
	.front-job-openings-guide::before{
		width: calc(100% - 0.75rem);
		height: 17.5rem;
	}
	.front-job-openings-guide .guide-ttl{
		margin-bottom: 3.25rem
	}
	.front-job-openings-guide .job-openings-container{
		background: transparent;
		padding: 0;
	}
	.front-job-openings-guide .cards-container.grid-cols-3{
		row-gap: 0.5rem;
	}
	.front-job-openings-guide .cards-container .card{
		padding: 1.25rem;
		box-shadow: 0px 0.375rem 1.5rem 0px #2C3F3F1A;
	}
	.front-job-openings-guide .cards-container .card::before {
	    border-bottom: 1.75rem solid transparent;
	    border-left: 1.75rem solid #009E96;
	}
	.front-job-openings-guide .cards-container .card .card__ttl{
		padding-bottom: 0.75rem;
		margin-bottom: 0.75rem;
	}
	.front-job-openings-guide .cards-container .card .city{
		font-size: 0.875rem;
	}
	.front-job-openings-guide .cards-container .card h3{
		font-size: 1.0625rem;
	}
	.front-job-openings-guide .cards-container .card .card__body{
		column-gap: 0.75rem;
	}
	.front-job-openings-guide .cards-container .card .card__text{
		width: calc(60% - 0.75rem);
		font-size: 0.875rem;
	}
	.front-job-openings-guide .cards-container .card .list li{
		font-size: 0.875rem;
	}
	.front-job-openings-guide .cards-container .card .card__img{
		width: 40%;
	}
	.front-job-openings-guide .cards-container .card .link a{
		font-size: 0.875rem;
	}
	.front-job-openings-guide .cards-container .card .link a .icon{
		width: 1.25rem;
		margin-left: 0.75rem;
	} 
	.front-job-openings-guide .job-openings-container .block_btn{
	    margin-top: 1.75rem;
	    bottom: 0;
	}
}
/*　　こんなお悩みありませんか？　　*/
.concerns-guide{
	background: #ECECEC;
	padding: 4.5rem 0;
}
.concerns-guide .guide-ttl{
	margin-bottom: 2.5rem;
}
.concerns-guide .check-list{
	column-gap: 1.5rem;
	row-gap: 1rem;
}
.concerns-guide .check-list li{
	position: relative;
	display: flex;
    align-items: center;
	background: #FFFFFF;
	width: calc(50% - 0.75rem);
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.35;
	padding: 1rem 1rem 1rem 4.5rem;
	box-shadow: 0px 0px 1.25rem 0px #0000000D;
}
.concerns-guide .check-list li::before{
	content: '';
	background: url(../images/new/check_g.svg) no-repeat center;
	background-size: cover;
	width: 2rem;
	height: 2rem;
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
	.concerns-guide{
		padding: 2.75rem 0 3rem 0;
	}
	.concerns-guide .guide-ttl{
		margin-bottom: 1.75rem;
	}
	.concerns-guide .check-list{
		column-gap: 0;
		row-gap: 0.5rem;
	}
	.concerns-guide .check-list li{
		width: 100%;
		font-size: 1.0625rem;
		line-height: 1.4;
		padding: 0.75rem 0.75rem 0.75rem 3.25rem;
		box-shadow: 0px 0px 0.625rem 0px #0000000D;
	}
	.concerns-guide .check-list li::before{
		width: 1.75rem;
		height: 1.75rem;
		left: 0.75rem;
	}
}
/*　　ドライバーズエージェントができること　　*/
.can-do-guide{
	padding-bottom: 6rem;
}
.can-do-guide .bubble{
	position: relative;
	background: #009E96;
	color: #FFFFFF;
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
	padding: 1.5rem;
}
.can-do-guide .bubble::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 2.5rem 1.25rem 0 1.25rem;
  border-color: #009e96 transparent transparent;
  translate: -50% 100%;
}
.can-do-guide .can-do-container{
	padding-top: 6.375rem;
}
.can-do-guide .guide-ttl{
	margin-bottom: 3.5rem;
}
.can-do-guide h3{
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.25;
}
.can-do-guide .cards-container{
	margin-top: 3.5rem;
}
.can-do-guide .cards-container .card{
	position: relative;
	background: #FFFFFF;
	text-align: center;
	padding: 2rem;
	border-radius: 0.25rem;
	box-shadow: 0px 0px 1.25rem 0px #0000000D;
}
.can-do-guide .cards-container .card .check{
	position: absolute;
	display: flex;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	background: #009E96;
	width: 2.5rem;
	height: 2.5rem;
	top: 0;
	left: 0;
	border-radius: 0.25rem 0 0.25rem 0;
}
.can-do-guide .cards-container .card .check img{
	width: 1.5rem;
}
.can-do-guide .cards-container .card .card__icon{
	margin-bottom: 1.5rem;
}
.can-do-guide .cards-container .card .card__icon img{
	max-width: 5.5rem;
}
.can-do-guide .cards-container .card .ttl{
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.35;
	margin-bottom: 0.5rem;
}
.can-do-guide .cards-container .card .text{
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
}
.can-do-guide .block_btn{
	margin-top: 3rem;
}
.can-do-guide .block_btn li{
	max-width: 32.5rem;
}
@media only screen and (max-width: 767px) {
	.can-do-guide{
		padding-bottom: 3.5rem;
	}
	.can-do-guide .bubble{
		font-size: 1.25rem;
		padding: 1rem;
	}
	.can-do-guide .bubble::after {
	  border-width: 1.75rem 1rem 0 1rem;
	}
	.can-do-guide .can-do-container{
		padding-top: 3.4375rem;
	}
	.can-do-guide .guide-ttl{
		margin-bottom: 1.75rem;
	}
	.can-do-guide h3{
		font-size: 1.25rem;
		line-height: 1.4;
	}
	.can-do-guide .cards-container{
		margin-top: 1.25rem;
	}
	.can-do-guide .cards-container .card{
		display: flex;
		flex-direction: unset;
		padding: 1.5rem 1.25rem 1.5rem 2.25rem;
		border-radius: 0.125rem;
		box-shadow: 0px 0px 0.625rem 0px #0000000D;
	}
	.can-do-guide .cards-container .card .check{
		width: 1.75rem;
		height: 1.75rem;
		border-radius: 0.125rem 0 0.125rem 0;
	}
	.can-do-guide .cards-container .card .check img{
		width: 1rem;
	}
	.can-do-guide .cards-container .card .card__icon{
		width: 4.875rem;
		margin-bottom: 0;
	}
	.can-do-guide .cards-container .card .card__icon img{
		max-width: 4.875rem;
	}
	.can-do-guide .cards-container .card .card__body{
		width: calc(100% - 4.875rem);
		text-align: left;
		padding-left: 1.25rem;
	}
	.can-do-guide .cards-container .card .ttl{
		font-size: 1.0625rem;
		margin-bottom: 0.5rem;
	}
	.can-do-guide .cards-container .card .text{
		font-size: 0.9375rem;
		line-height: 1.35;
	}
	.can-do-guide .block_btn{
		margin-top: 2.25rem;
	}
	.can-do-guide .block_btn li{
		max-width: 17.5rem;
	}
}
/*　　選ばれる理由　　*/
.reasons-guide{
	background: linear-gradient(107.04deg, #E5F3F6 0%, #EAF3EC 100%);
	padding: 5.5rem 0 4.5rem 0;
}
.reasons-guide .guide-ttl{
	margin-bottom: 3.5rem;
}
.reasons-guide h3{
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.25;
}
.reasons-guide .cards-container.grid-cols-2{
	column-gap: 4rem;
	row-gap: 6.875rem;
	margin-top: 3.5rem;
}
.reasons-guide .cards-container.grid-cols-2 .card{
	position: relative;
	width: calc(50% - 2rem);
}
.reasons-guide .cards-container .card .card__thumbnail{
	height: 20rem;
}
.reasons-guide .cards-container .card .card__thumbnail img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	box-shadow: 0px 0px 1.25rem 0px #0000000D;
}
.reasons-guide .cards-container .card .box{
	position: absolute;
	background: #FFFFFF;
    width: 80%;
    max-width: 28.5rem;
    right: -2.5rem;
    bottom: -4.375rem;
	min-height: 11rem;
	padding: 2.5rem;
	box-shadow: 0px 0px 1.25rem 0px #0000000D;
}
.reasons-guide .cards-container .card .box::before {
    content: "";
    top: 0;
    left: 0;
    border-bottom: 2rem solid transparent;
    border-left: 2rem solid #009E96;
    position: absolute;
    z-index: 100;
}
.reasons-guide .cards-container .card .box h3{
	font-size: 1.4375rem;
	font-weight: 700;
	line-height: 1.25;
	margin-bottom: 1.25rem;
}
.reasons-guide .cards-container .card .box h3::first-letter{
	color: #009E96;
}
.reasons-guide .cards-container .card .box .text{
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
}
.reasons-guide .block_btn{
	margin-top: 7.375rem;
}
@media only screen and (max-width: 767px) {
	.reasons-guide{
		padding: 3rem 0;
	}
	.reasons-guide .guide-ttl{
		margin-bottom: 1.75rem;
	}
	.reasons-guide h3{
		font-size: 1.25rem;
		line-height: 1.4;
	}
	.reasons-guide .cards-container.grid-cols-2{
		column-gap: 0;
		row-gap: 5.5rem;
		margin-top: 1.75rem;
	}
	.reasons-guide .cards-container.grid-cols-2 .card{
		width: 100%;
	}
	.reasons-guide .cards-container .card .card__thumbnail{
		height: 12.6875rem;
	}
	.reasons-guide .cards-container .card .card__thumbnail img{
		box-shadow: 0px 0px 0.625rem 0px #0000000D;
	}
	.reasons-guide .cards-container .card .box{
	    width: calc(100% - 2.5rem);
	    max-width: calc(100% - 2.5rem);
	    bottom: -4rem;
	    right: 50%;
		transform: translateX(50%);
		min-height: 7rem;
		padding: 1.25rem;
		box-shadow: 0px 0px 0.625rem 0px #0000000D;
	}
	.reasons-guide .cards-container .card .box::before {
	    border-bottom: 1rem solid transparent;
	    border-left: 1rem solid #009E96;
	}
	.reasons-guide .cards-container .card .box h3{
		font-size: 1.125rem;
		margin-bottom: 0.75rem;
	}
	.reasons-guide .cards-container .card .box .text{
		font-size: 0.9375rem;
		line-height: 1.35;
	}
	.reasons-guide .block_btn{
		margin-top: 5.75rem;
	}
}
/*　　ご利用の流れ　　*/
.flow-guide{
	padding: 6rem 0 5.5rem 0;
}
.flow-guide .guide-ttl{
	margin-bottom: 3.5rem;
}
.flow-guide h3{
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.25;
	margin-bottom: 3rem;
}
.flow-guide .flow-list{
	column-gap: 1.5rem;
}
.flow-guide .flow-list .flow-items{
	position: relative;
}
.flow-guide .flow-list .flow-items:not(:last-child)::after{
	position: absolute;
	content: "";
	border-top: 1px dashed #A4A4A4;
	width: 2.5rem;
	height: 1px;
	top: 5.5rem;
	right: -2.5rem;
}
.flow-guide .flow-list .flow-items .no{
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(90deg, #009E96 0%, #2EA2CF 100%);
	width: 3.5rem;
	height: 3.5rem;
	color: #FFFFFF;
	font-family: "Montserrat", sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 3.5rem;
	text-align: center;
	border-radius: 100%;
}
.flow-guide .flow-list .flow-items .flow-icon{
	background: #F5F5F5;
	display: flex;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	width: 11.5rem;
	height: 11.5rem;
	text-align: center;
	border-radius: 100%;
}
.flow-guide .flow-list .flow-items .flow-icon img{
	width: 4rem;
}
.flow-guide .flow-list .flow-items .text{
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
	margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
	.flow-guide{
		padding: 3.5rem 0 4rem 0;
	}
	.flow-guide .guide-ttl{
		margin-bottom: 1.75rem;
	}
	.flow-guide h3{
		font-size: 1.25rem;
		margin-bottom: 2.125rem;
	}
	.flow-guide .flow-list{
		column-gap: 1.625rem;
		row-gap: 2.125rem;
		padding: 0 0.625rem 0 1.625rem;
	}
	.flow-guide .flow-list .flow-items{
		width: calc(50% - 0.8125rem);
	}
	.flow-guide .flow-list .flow-items:not(:last-child)::after{
		content: none;
	}
	.flow-guide .flow-list .flow-items .no{
		top: -0.875rem;
		left: -0.875rem;
		width: 3.25rem;
		height: 3.25rem;
		font-size: 1.25rem;
		line-height: 3.25rem;
	}
	.flow-guide .flow-list .flow-items .flow-icon{
		width: 9rem;
		height: 9rem;
	}
	.flow-guide .flow-list .flow-items .flow-icon img{
		width: 4.5rem;
	}
	.flow-guide .flow-list .flow-items .text{
		font-size: 1.0625rem;
		margin-top: 0.75rem;
	}
}
/*　　お役立ち情報　　*/
.useful-guide{
	background: #F5F5F5;
	padding: 5.5rem 0 4rem 0;
}
.useful-guide .guide-ttl{
	margin-bottom: 3rem;
}
.useful-guide .cards-container .card{
	padding: 1rem 1rem 2rem 1rem;
	border-radius: 0.5rem;
	box-shadow: 0px 4px 15px 0px #2C3F3F1A;
}
.useful-guide .cards-container .card .card__thumbnail{
	display: flex;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	height: 12.625rem;
	margin-bottom: 1rem;
}
.useful-guide .cards-container .card .card__thumbnail img{
	border-radius: 0.5rem;
}
.useful-guide .cards-container .card h3{
	color: #212121;
	font-size: 1.1875rem;
	font-weight: 700;
	line-height: 1.26;
	margin-bottom: 0.5rem;
}
.useful-guide .cards-container .card .text{
	color: #212121;
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: 1.538;
	margin-bottom: 0.5rem;
}
.useful-guide .cards-container .card .date{
	font-family: "Poppins", sans-serif;
	color: #A4A4A4;
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.25;
}
@media only screen and (max-width: 767px) {
	.useful-guide{
		padding: 3rem 0;
	}
	.useful-guide .guide-ttl{
		margin-bottom: 1.5rem;
	}
	.useful-guide .cards-container .card{
		padding: 0.75rem 0.75rem 2rem 0.75rem;
		border-radius: 0.375rem;
		box-shadow: 0px 0.1875rem 0.6875rem 0px #2C3F3F1A;
		margin-right: 0.75rem;
	}
	.useful-guide .cards-container .card .card__thumbnail{
		height: 8.625rem;
		margin-bottom: 0.75rem;
	}
	.useful-guide .cards-container .card .card__thumbnail img{
		border-radius: 0.375rem;
	}
	.useful-guide .cards-container .card h3{
		font-size: 1.0625rem;
	}
	.useful-guide .cards-container .card .text{
		font-size: 0.9375rem;
	}
}
/*　　よくある質問　　*/
.faq-guide{
	padding: 6rem 0 6.5rem 0;
}
.faq-guide .guide-ttl{
	width: 11.5rem;
}
.faq-guide .faq-list{
	width: calc(100% - 11.5rem);
	max-width: 54rem;
}
.faq-list .faq-items{
	background: #FFFFFF;
	border: 1px solid #E5E5E5;
	border-radius: 0.5rem;
	padding: 1.5rem 1.5rem 1.5rem 2rem;
}
.faq-list .faq-items:not(:last-child){
	margin-bottom: 1rem;
}
.faq-list .faq-items .question{
	margin-bottom: 0.625rem;
}
.faq-list .faq-items .question dl{
	display: flex;
	align-items: baseline;
}
.faq-list .faq-items .question dl dt{
	width: 2rem;
}
.faq-list .faq-items .question dl dt span{
	display: block;
	background: linear-gradient(90deg, #009E96 0%, #2EA2CF 100%);
	width: 2rem;
	height: 2rem;
	color: #FFFFFF;
	font-family: "Montserrat", sans-serif;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 2rem;
	text-align: center;
	border-radius: 100%;
}
.faq-list .faq-items .question dl dd{
	width: calc(100% - 2rem);
	font-size: 1.1875rem;
	font-weight: 700;
	line-height: 1.35;
	padding-left: 1.5rem;
}
.faq-list .faq-items .answer{
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.35;
	padding-left: 3.5rem;
}
@media only screen and (max-width: 767px) {
	.faq-guide{
		padding: 3rem 0 2.75rem 0;
	}
	.faq-guide .guide-ttl{
		width: 100%;
		margin-bottom: 1.5rem;
	}
	.faq-guide .faq-list{
		width: 100%;
		max-width: 100%;
	}
	.faq-list .faq-items{
		padding: 0.75rem;
	}
	.faq-list .faq-items:not(:last-child){
		margin-bottom: 0.5rem;
	}
	.faq-list .faq-items .question{
		margin-bottom: 0.375rem;
	}
	.faq-list .faq-items .question dl dt{
		width: 2rem;
	}
	.faq-list .faq-items .question dl dt span{
		width: 2rem;
		height: 2rem;
		font-size: 1rem;
		line-height: 2rem;
	}
	.faq-list .faq-items .question dl dd{
		width: calc(100% - 2rem);
		font-size: 1rem;
		padding-left: 0.75rem;
	}
	.faq-list .faq-items .answer{
		font-size: 0.9375rem;
		padding-left: 2.75rem;
	}
}
/*　　お問い合わせ　　*/
.contact-us-guide{
	padding-bottom: 8.5rem;
}
.contact-us-guide .contact-us-container{
	position: relative;
	padding: 4.5rem 2.5rem 0 2.5rem;
}
.contact-us-guide .contact-us-container::before{
	position: absolute;
	content: "";
	background: linear-gradient(90deg, #009E96 0%, #2EA2CF 100%);
	width: 100%;
	height: calc(100% - 6rem);
	top: 0;
	left: 0;
}
.contact-us-guide .guide-ttl{
	position: relative;
	margin-bottom: 1.5rem;
}
.contact-us-guide .guide-ttl .roma::first-letter{
	color: #FFFFFF;
}
.contact-us-guide h3{
	position: relative;
	font-size: 2.125rem;
	font-weight: 700;
	line-height: 1.25;
	margin-bottom: 1.5rem;
}
.contact-us-guide .nav-list{
	position: relative;
	column-gap: 1.5rem;
	margin-top: 3.5rem;
}
.contact-us-guide .nav-list li{
	position: relative;
	width: calc(50% - 0.75rem);
}
.contact-us-guide .nav-list li .thumbnail{
	height: 13.9375rem;
}
.contact-us-guide .nav-list li .thumbnail img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.contact-us-guide .nav-list li .ttl{
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
    transform: translateY(-50%);
	font-size: 1.625rem;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
}
.contact-us-guide .nav-list li .arrow{
	position: absolute;
	right: 4rem;
	top: 50%;
    transform: translateY(-50%);
	width: 2rem;
	height: 2rem;
	border-radius: 100%;
}
.contact-us-guide .nav-list li .arrow img{
	position: absolute;
	width: 1rem;
	left: 50%;
	top: 50%;
    transform: translate(-50%, -50%);
}
.contact-us-guide .nav-list li .arrow.green{
	background: #009E96;
}
.contact-us-guide .nav-list li .arrow.orange{
	background: linear-gradient(105.13deg, #FCBD00 0.66%, #F86300 100%);
}
@media only screen and (max-width: 767px) {
	.contact-us-guide{
		padding-bottom: 3.25rem;
	}
	.contact-us-guide .contact-us-container{
		width: 100%;
		padding: 3rem 1.25rem 2.75rem 1.25rem;
	}
	.contact-us-guide .contact-us-container::before{
		height: 100%;
	}
	.contact-us-guide .guide-ttl{
		margin-bottom: 1.25rem;
	}
	.contact-us-guide h3{
		font-size: 1.25rem;
		line-height: 1.4;
		margin-bottom: 1rem;
	}
	.contact-us-guide .p-text{
		text-align: left;
	}
	.contact-us-guide .nav-list{
		column-gap: 0;
		row-gap: 0.75rem;
		margin-top: 1.75rem;
	}
	.contact-us-guide .nav-list li{
		width: 100%;
	}
	.contact-us-guide .nav-list li .thumbnail{
		height: 8.75rem;
	}
	.contact-us-guide .nav-list li .ttl{
		font-size: 1.0625rem;
	}
	.contact-us-guide .nav-list li .arrow{
		right: 2rem;
		width: 1.75rem;
		height: 1.75rem;
	}
	.contact-us-guide .nav-list li .arrow img{
		width: 0.875rem;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
	.contact-us-guide .nav-list li .arrow{
		right: 2rem;
	}
}