﻿

/*------------------------------------
	共通
-------------------------------------*/
/* プラグイン上書き */
.slick-arrow {
	position: absolute;
	z-index: 1;
	display: block;
	top: 46%;
	transform: translateY(-50%);
}

.slick-arrow::before {
	content: '';
	width: 18px;
	height: 18px;
	border: 0;
	position: absolute;
	top: 0;
	left: 0;
	transform: rotate(45deg);
}

@media (min-width: 48em) {
	.slick-arrow::before {
		width: 33px;
		height: 33px;
	}
}

.slick-disabled {
	display: none !important;
}

#slick-prev {
	left: 12px;
}

@media (min-width: 48em) {
	#slick-prev {
		left: 35px;
	}
}

#slick-next {
	right: 30px;
}

@media (min-width: 48em) {
	#slick-next {
		right: 70px;
	}
}

#slick-prev::before {
	border-bottom: solid 3px #298795;
	border-left: solid 3px #298795;
}

@media (min-width: 48em) {
	#slick-prev::before {
		border-bottom-width: 6px;
		border-left-width: 6px;
	}
}

#slick-next::before {
	border-top: solid 3px #298795;
	border-right: solid 3px #298795;
}

@media (min-width: 48em) {
	#slick-next::before {
		border-top-width: 6px;
		border-right-width: 6px;
	}
}

.slick-dots {
	display: flex;
	justify-content: center;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 32px;
}

.slick-dots li {
	margin: 0 8px;
	cursor: pointer;
}

.slick-dots li span {
	display: block;
	background: #d7dbde;
	border-radius: 50%;
	width: 15px;
	height: 15px;
}

.slick-dots li.slick-active span {
	background: #298796;
}

/* タイトル */
.p-secondary-heading {
	padding-bottom: 25px;
	position: relative;
}

.p-secondary-heading::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 140px;
	height: 3px;
	background-color: #00698c;
}

/* リスト */
.p-directa__list {
	margin-left: auto;
	margin-right: auto;
	max-width: 900px;
}

@media (min-width: 48em) {
	.p-directa__list {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
}

.p-directa__item {
	width: 100%;
	margin-bottom: 15px;
}

@media (min-width: 48em) {
	.p-directa__item {
		width: 48.5%;
		margin-bottom: 30px;
	}
}

/* ボタン */
.p-directa__btn,
.p-directa__btn--anc {
	background-color: #3d8c9d;
	color: #fff;
	border-radius: 40px;
	padding: 10px 30px;
	position: relative;
	text-align: center;
	box-shadow: 0 4px 1px #ccc;
	font-size: 1.7rem;
	line-height: 1.4736842105;
	transition: opacity 0.4s;
	height: 100%;
	display: flex;
    align-items: center;
    justify-content: center;
	flex-direction: column;
}

.p-directa__btn--blank {
	background-image: url("../image/icon_blank_white.png");
	background-position: right 22px center;
}

.p-directa__svg--pdf {
	width: 16px;
	position: absolute;
	right: 22px;
	top: calc(50% - 9px);
}

@media (min-width: 48em) {
	.p-directa__btn,
	.p-directa__btn--anc {
		font-size: 1.9rem;
		padding: 20px 40px;
		display: block;
	}
}


@media (min-width: 48em) {
	.p-directa__btn:hover,
	.p-directa__btn--anc:hover {
		opacity: 0.7;
	}
}

@media (min-width: 48em) {
	.p-directa__btn,
	.p-directa__btn--anc {
		font-size: 2rem;
		line-height: 1.45;
	}
}

.p-directa__btn::before {
	content: "";
	position: absolute;
	left: 18px;
	top: calc(50% - 4px);
	border-left: solid 8px #fff;
	border-top: solid 4px transparent;
	border-bottom: solid 4px transparent;
}

@media (min-width: 48em) {
	.p-directa__btn::before {
		left: 22px;
	}
}

.p-directa__btn--anc::before {
	content: "";
	position: absolute;
	left: 22px;
	top: calc(50% - 4px);
	border-top: solid 8px #fff;
	border-left: solid 4px transparent;
	border-right: solid 4px transparent;
}

.p-directa__btn--rect {
	background-color: #fff;
	border: solid 2px #0d608b;
	border-radius: 5px;
	color: #0d608b;
	font-size: 1.5rem;
	padding: 8px 30px;
	font-weight: 500;
}

@media (min-width: 48em) {
	.p-directa__btn--rect {
		font-size: 1.8rem;
		padding: 12px 50px;
		transition: background-color 0.4s, color 0.4s;
	}
	
	.p-directa__btn--rect:hover {
		color: #fff;
		background-color: #3d8c9d;
		opacity: 1;
	}
	
	.p-directa__btn--rect:hover::before {
		border-left-color: #fff;
	}
}

.p-directa__btn--rect::before {
	border-left-color: #0d608b;
}

/* inview */
.js-inview {
	opacity:0;
	transition:1.5s;
	transform:translate(0, 50px) perspective(100px);
}

.is-fade-in {
	opacity:1;
	transform:translate(0, 0) scale(1);
}

/* 開閉 */
.js-more-controller {
	position: relative;
	cursor: pointer;
	transition: opacity 0.4s;
}


@media (min-width: 48em) {
	
	.js-more-controller:hover {
		opacity: 0.7;
	}

}

.js-more-controller::before,
.js-more-controller::after {
	content: "";
	position: absolute;
	background-color: #3d8c9d;
	display: block;
	right: 20px;
	top: calc(50% - 1px);
	width: 19px;
	height: 3px;
}

.js-more-controller::before {
	transform: rotate(90deg);
	transition: transform .4s;
}

.js-more-contents {
	display: none;
}

.is-more-controller::before {
	transform: rotate(0);
}


/*------------------------------------
	冒頭
-------------------------------------*/
/* MV */
.p-mv {
	background: url("../image/mv_sp.jpg") no-repeat center top / cover;
	padding: 20px 30px;
}

@media (min-width: 48em) {
	
	.p-mv {
		background-image: url("../image/mv_pc.jpg");
		padding: 54px 30px;
	}

}

@media (min-width: 48em) {
	
	.p-mv__btn-list {
		display: flex;
		justify-content: center;
	}

}

.p-mv__item {
	max-width: 300px;
	margin: 0 auto;
}

@media (min-width: 48em) {
	
	.p-mv__item {
		width: 100%;
		margin: 0 12px;
	}

}

.p-mv__item:nth-child(n+2) {
	margin-top: 10px;
}

@media (min-width: 48em) {
	
	.p-mv__item:nth-child(n+2) {
		margin-top: 0;
	}

}

.p-mv__btn {
	display: flex;
	color: #fff;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	box-shadow: 0 5px 0 #cbd0d3;
	border-radius: 5px;
	padding: 10px;
	height: 100%;
	transition: opacity 0.4s;
	background-image: url("../image/icon_blank_white.png");
	background-position: right 12px center;
}


@media (min-width: 48em) {
	
	.p-mv__btn:hover {
		opacity: 0.7;
	}

}


.p-mv__btn--blue {
	background-color: #3d8c9d;
}

.p-mv__btn--red {
	background-color: #f8001f;
}

/* ページ内リンク */
.p-nav__list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

@media (min-width: 48em) {

	.p-nav__list {
		justify-content: center;
	}

}

.p-nav__item {
	width: 48.5%;
	font-size: 1.5rem;
	margin-bottom: 10px;
}

@media (min-width: 48em) {

	.p-nav__item {
		width: auto;
		margin: 0 10px 10px;
		min-width: 265px;
		font-size: 1.6rem;
	}

}

.p-nav__link {
	display: block;
	padding: 15px 15px 15px 8px;
	border: solid 1px #3d8c9d;
	border-radius: 5px;
	position: relative;
	text-align: center;
	transition: background-color 0.4s, color 0.4s;
}

@media (min-width: 48em) {

	.p-nav__link {
		padding: 15px 20px;
	}

}

.p-nav__link::after {
	content: "";
	display: block;
	position: absolute;
	right: 5px;
	top: calc(50% - 4px);
	transform: rotate(135deg);
	width: 8px;
	height: 8px;
	border-top: 2px solid #3d8c9d;
	border-right: 2px solid #3d8c9d;
	transition: border 0.4s;
}

@media (min-width: 48em) {

	.p-nav__link::after {
		right: 15px;
	}

	.p-nav__link:hover {
		color: #fff;
		background-color: #3d8c9d;
	}
	
	.p-nav__link:hover::after {
		border-top-color: #fff;
		border-right-color: #fff;
	}

}

.p-nav__link--blank {
	background-image: url("../image/icon_blank_blue.png");
	background-repeat: no-repeat;
	background-position: right 3px center;
}

.p-nav__link--blank::after {
	display: none;
}


@media (min-width: 48em) {

	.p-nav__link--blank {
		background-position: right 15px center;
	}
	
	.p-nav__link--blank:hover {
		background-image: url("../image/icon_blank_white.png");
	}

}


/* 注意 */
.p-attention__heading--red {
	color: #d1001a;
}

.p-attention__item {
	position: relative;
	margin-top: 15px;
	padding-left: 20px;	
	color: #3d8c9d;
}

.p-attention__item::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 6px;
	width: 15px;
	height: 15px;
	background-color: #3d8c9d;
	border-radius: 50%;
}

.p-attention__link {
	color: #3d8c9d;
	text-decoration: underline;
}

@media (min-width: 48em) {
	.p-attention__link:hover {
		color: #d1001a;
	}
}

/* アプリ紹介 */
.p-app {
	background-color: #f0f6f8;
	border-radius: 8px;
	padding: 15px 5% 20px;
	display: flex;
	align-items: center;
}

@media (min-width: 48em) {
	.p-app {
		padding: 50px 8%;
	}
}

.p-app__img {
	width: 18%;
	max-width: 143px;
}

@media (min-width: 48em) {
	.p-app__img {
		width: 15%;
	}
}


.p-app__info {
	margin-left: 4.5%;
	flex: 1;
}

.p-app__text {
	padding-bottom: 15px;
	position: relative;
	border-bottom: solid 1px #8a8786;
	font-size: 1.8rem;
}

@media (min-width: 48em) {
	.p-app__text {
		padding-bottom: 20px;
		font-size: 2.4rem;
		line-height: 1.4583333333;
		letter-spacing: 0.15em;
	}
}

.p-app__text::before,
.p-app__text::after {
	content: "";
	position: absolute;
	
}

.p-app__text::before {
	bottom: -22px;
	left: 50%;
	margin-left: -10px;
	border: 11px solid transparent;
	border-top: 16px solid #f0f6f8;
	z-index: 2;
}

.p-app__text::after {
	bottom: -21px;
	left: 50%;
	margin-left: -8px;
	border: 9px solid transparent;
	border-top: 12px solid #8a8786;
	z-index: 1;
}

.p-app__text--red {
	color: #d1001a;
}

.p-app__btn-list {
	margin-top: 20px;
	display: flex;
	justify-content: space-between;
}

@media (min-width: 48em) {
	.p-app__btn-list {
		margin-top: 30px;
	}
}

.p-app__item {
	border: solid 1px #000;
	background-color: #fff;
	padding: 8px;
	display: flex;
	justify-content: space-between;
	width: 49%;
}

@media (min-width: 48em) {
	.p-app__item {
		padding: 20px;
	}
}

.p-app__btn-area {
	flex: 1;
}

.p-app__btn {
	margin-top: 5px;
	font-size: 1.4rem;
}

@media (min-width: 48em) {
	.p-app__btn {
		margin-top: 10px;
		font-size: 1.6rem;
	}
}

.p-app__btn-dl {
	display: block;
	color: #fff;
	background-color: #000;
	border-radius: 8px;
	position: relative;
	text-align: center;
	padding: 4px 5px 7px 15px;
	transition: opacity 0.4s;
}

@media (min-width: 48em) {
	.p-app__btn-dl {
		padding: 12px;
	}
}


.p-app__btn-dl::before {
	content: "";
	position: absolute;
	left: 5px;
	top: calc(50% - 4px);
	border-left: solid 7px #fff;
	border-top: solid 5px transparent;
	border-bottom: solid 5px transparent;
}

@media (min-width: 48em) {
	.p-app__btn-dl::before {
		left: 15px;
	}
}

@media (min-width: 48em) {
	.p-app__btn-dl:hover {
		opacity: 0.7;
	}
}


.p-app__qr-area {
	display: none;
}

@media (min-width: 48em) {
	.p-app__qr-area {
		display: block;
		width: 90px;
		margin-left: 35px;
	}
}

/*------------------------------------
	主なサービス内容
-------------------------------------*/
.p-service__more-btn {
	padding: 10px;
	font-weight: 500;
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
	border: solid 1px #3d8c9d;
	border-radius: 5px;
	font-size: 1.6rem;
}

@media (min-width: 48em) {
	.p-service__more-btn {
		padding: 18px;
		font-size: 2rem;
	}
}


/*------------------------------------
	選ばれている理由
-------------------------------------*/
.p-reason {
	background-color: #f0f6f8;
	padding: 15px calc(5% - 10px);
}

@media (min-width: 48em) {
	.p-reason {
		padding: 65px 60px 55px;
	}
}

@media (min-width: 48em) {
	.p-reason__list {
		display: flex;
		flex-wrap: wrap;
	}
}


.p-reason__item {
	width: 100%;
	box-sizing: border-box;
	padding: 10px;
	position: relative;
}

@media (min-width: 48em) {
	.p-reason__item {
		width: 50%;
		padding: 20px;
	}
}

.p-reason__item:nth-child(n+2) {
	margin-top: 15px;
}

@media (min-width: 48em) {
	.p-reason__item:nth-child(n+2) {
		margin-top: 0;
	}
}

@media (min-width: 48em) {
	.p-reason__item:nth-child(n+3) {
		margin-top: 5px;
	}
}

.p-reason__num {
	position: absolute;
	left: -5px;
	top: -20px;
	font-size: 9rem;
	line-height: 1;
	font-style: italic;
	color: #00698c;
}

/*------------------------------------
	ご利用開始方法
-------------------------------------*/
.p-how__slide-area {
	background-color: #f1f7f8;
	position: relative;
	max-width: 1080px;
	margin-left: auto;
	margin-right: auto;
}

.p-how-heading {
	padding: 8px 18px;
	color: #fff;
	background-color: #008a94;
	border-radius: 0 0 10px 10px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
	text-align: center;
}

@media (min-width: 48em) {
	
	.p-how-heading {
		padding: 15px 20px;
	}
}

.p-how-heading__has-phone {
	min-width: 200px;
}

.p-how__list {
	background: url("../image/slide_bg_sp1.gif") repeat-x center top / 100%;
}

.p-how__list__by-pc {
	background-image: url("../image/slide_bg_sp2.gif");
}


@media (min-width: 48em) {
	.p-how__list,
	.p-how__slide-area__by-pc {
		background-image: url("../image/slide_bg_pc.gif");
		background-size: auto;
		background-repeat: repeat-y;
	}
}

.p-how__item {
	display: block;
	padding: 55px 0 0;
}

@media (min-width: 48em) {
	
	.p-how__item {
		display: flex;
		padding: 80px 0;
	}

}

.p-how__img {
	display: flex;
	justify-content: center;
	align-items: center;
}

@media (min-width: 48em) {
	
	.p-how__img {
		width: 50%;
	}

}

.p-how__explanation {
	padding: 50px 10% 40px;
}

@media (min-width: 48em) {
	
	.p-how__explanation {
		width: 50%;
		padding: 38px 10%;
	}

}


.p-step-heading {
	display: inline-block;
	color: #008994;
	padding: 8px 20px;
	border-radius: 8px;
	border: solid 2px #008994;
	font-size: 1.7rem;
}

.p-step__text {
	margin-top: 15px;
	line-height: 1.8;
}

.p-directa__btn-area {
	display: flex;
	justify-content: flex-end;
	max-width: 1080px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
}



/*------------------------------------
	よくあるご質問
-------------------------------------*/
.p-qa {
	background-color: #f0f6f8;
	padding: 40px 5%;
}

@media (min-width: 48em) {
	
	.p-qa {
		padding: 70px 50px;
	}

}

.p-qa__item {
	background-color: #fff;
	border-radius: 10px;
	padding: 15px;
}

@media (min-width: 48em) {
	
	.p-qa__item {
		padding: 30px;
	}

}

.p-qa__item:nth-child(n+2) {
	margin-top: 20px;
}

@media (min-width: 48em) {
	
	.p-qa__item:nth-child(n+2) {
		margin-top: 30px;
	}

}

.p-qa__q {
	font-size: 1.7rem;
	line-height: 1.4736842105;
	position: relative;
	border-bottom: solid 1px #dedede;
	padding-bottom: 10px;
	padding-left: 35px;
}

@media (min-width: 48em) {
	.p-qa__q {
		font-size: 2rem;
		line-height: 1.45;
		padding-bottom: 15px;
		padding-left: 45px;
	}
}

.p-qa__q::before {
	content: "Q.";
	position: absolute;
	top: -0.3em;
	left: 0;
	color: #cf0021;
	font-size: 2.4rem;
	line-height: 1.4583333333;
	font-weight: 500;
}

@media (min-width: 48em) {
	.p-qa__q::before {
		top: -0.4em;
		font-size: 3.2rem;
		line-height: 1.4375;
	}
}

.p-qa__a {
	margin-top: 12px;
	position: relative;
	padding-left: 35px;
}

@media (min-width: 48em) {
	.p-qa__a {
		margin-top: 18px;
		padding-left: 45px;
	}
}

.p-qa__a::before {
	content: "A.";
	position: absolute;
	top: -0.3em;
	left: 0;
	color: #3d8c9d;
	font-size: 2.4rem;
	line-height: 1.4583333333;
	font-weight: 500;
}

@media (min-width: 48em) {
	.p-qa__a::before {
		top: -0.4em;
		font-size: 3.2rem;
		line-height: 1.4375;
	}
}

.p-qa__link {
	color: #3d8c9d;
	text-decoration: underline;
}












@media (min-width: 48em) {
	
}