@charset "UTF-8";
/* 下層ページCSS */


/* ================
header
================== */
header {
	width: 100%;
	background: url("../images/common/bg_header_pc.svg") no-repeat center top;
	background-size: 1300px;
	padding: 10px 0 0 0;
	.inner {
		display: flex;
		justify-content: flex-start;
		img {
			width: 100%;
			height: auto;
		}
		h1 {
			flex-basis: 378px;
			width: 100%;
		}
		.header_chara {
			flex-basis: 210px;
			width: 100%;
		}
	}
	
}

/* ===============
main
================*/
main {
	width: 100%;
	.bread_crumb {
		width: 1200px;
		display: flex;
		margin: 0 auto;
		font-size: 1.2rem;
		text-align: right;
		ul {
			padding: 0;
			text-align: right;
			margin: 0 0 0 auto;
			li {
				float: right;
				font-size: 1.4rem;
				padding: 0;
				text-align: right;
				a {
					display: block;
					position: relative;
					margin-right: 20px;
					margin-left: auto;
					transition: 0.2s all ease 0s;
					text-decoration: underline;
					&:after {
						text-indent: 0;
						position: absolute;
						display: block;
						content: ">";
						right: -12px;
						top: -1px;
					}
					&:hover {
						text-decoration: none;
					}
				}
			}
		}
	}

}

/* ================
.main_contents
================== */
.main_contents {
	width: 1200px;
	margin: 20px auto 60px auto;
	display: flex;
	justify-content: space-between;
}


/* ================
.right_nav
================== */
.right_nav {
	flex-basis: 330px;
	width: 100%;
	a {
		display: flex;
		padding: 0;
		color: var(--texcolor01);
		font-weight: 800;
		align-items: center;
		font-size: 1.7rem;
		line-height: 1.2;
		transition: 0.2s all ease 0s;
	}
	.menuitem_icon {
		width: 68px;
		height: 68px;
		border-radius: 80px;
		display: flex;
		text-align: center;
		align-items: center;
		margin-right: 10px;
		img {
			display: block;
			width: 40px;
			margin: 0 auto;
		}
		.img_s {
			width: 32px;
		}
	}
	.btncolor_blue {
		background-color: var(--blue_pale);
		border: 2px solid var(--blue_pale);
		border-radius: 80px;
		margin-bottom: 4px;
		.menuitem_icon {
			background-color: var(--blue);	
			border: 2px solid var(--blue);
		}
		&:hover {
			transition: 0.4s all ease 0s;
			border: 2px solid var(--blue);
			img {
				opacity: 1;
			}
		}
	}
	.btncolor_blue.current {
		border: 2px solid var(--blue);
	}
	.btncolor_pink {
		background-color: var(--pink_pale);
		border: 2px solid var(--pink_pale);
		border-radius: 80px;
		margin-bottom: 4px;
		.menuitem_icon {
			background-color: var(--pink);	
			border: 2px solid var(--pink);
		}
		&:hover {
			transition: 0.4s all ease 0s;
			border: 2px solid var(--pink);
			img {
				opacity: 1;
			}
		}
	}
	.btncolor_pink.current {
		border: 2px solid var(--pink);
	}
	.btncolor_orange {
		background-color: var(--orange_pale);
		border: 2px solid var(--orange_pale);
		border-radius: 80px;
		margin-bottom: 4px;
		.menuitem_icon {
			background-color: var(--orange);
			border: 2px solid var(--orange);	
		}
		&:hover {
			transition: 0.4s all ease 0s;
			border: 2px solid var(--orange);
			img {
				opacity: 1;
			}
		}
	}
	.btncolor_orange.current {
		border: 2px solid var(--orange);
	}
	.btncolor_green {
		background-color: var(--green_pale);
		border: 2px solid var(--green_pale);
		border-radius: 80px;
		margin-bottom: 4px;
		.menuitem_icon {
			background-color: var(--green);	
			border: 2px solid var(--green);
		}
		&:hover {
			transition: 0.4s all ease 0s;
			border: 2px solid var(--green);
			img {
				opacity: 1;
			}
		}
	}
	.btncolor_green.current {
		border: 2px solid var(--green);
	}
}

/* ================
.left_main 
================== */
.left_main {
	flex-basis: 830px;
	width: 100%;
	overflow: hidden;
	.comming {
		width: 80%;
		margin: 40px auto;
		text-align: center;
		font-size: 20px;
		color: var(--themecolor);
		border: 2px solid var(--themecolor);
		padding: 30px;
	}
	h1 {
		font-size: 3rem;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		font-weight: 800;
		margin-bottom: 30px;
		.title_icon {
			width: 100px;
			height: 100px;
			border-radius: 100px;
			display: flex;
			align-items: center;
			text-align: center;
			margin-right: 14px;
			img {
				display: block;
				width: 70px;
				margin: 0 auto;
			}
			img.img_m {
				width: 60px;
			}
			img.img_ss {
				width: 50px;
			}
			img.img_s {
				width: 55px;
			}
			img.img_ss {
				width: 50px;
			}
		}
	}
	h1.title_pink {
		color: var(--pink);
		.title_icon {
			background-color: var(--pink);
		}
	}
	h1.title_blue {
		color: var(--blue);
		.title_icon {
			background-color: var(--blue);
		}
	}
	h1.title_orange {
		color: var(--orange);
		.title_icon {
			background-color: var(--orange);
		}
	}
	h1.title_green {
		color: var(--green);
		.title_icon {
			background-color: var(--green);
		}
	}
	h2 {
		font-size: 2.2rem;
		font-weight: 700;
		border-top: 4px dotted var(--texcolor03);
		color: var(--texcolor03);
		margin-top: 30px;
		margin-bottom: 10px;
		padding-top: 0px;
	}

	h3 {
		color: var(--texcolor03);
		font-size: 2rem;
		font-weight: 600;
		margin-bottom: 20px;
		position: relative;
		display: inline-block;
		line-height: 1.3;
		&:after {
			content: "";
			dispay: block;
			right: -110px;
			top: 12px;
			width: 100px;
			height: 2px;
			background-color: var(--texcolor03);
			position: absolute;
		}
	}

	h4 {
		font-size: 1.8rem;
		font-weight: 700;
		margin-bottom: 10px;
	}
	p {
		font-size: 1.6rem;
		line-height: 2;
		a {
			color: var(--texcolor03);
			text-decoration: underline;
			&:hover {
				text-decoration: none;
			}
		}
	}
	.text_icon {
		width: 20px;
		height: auto;
		margin: 0 4px;
		img {
			width: 20px;
			height: auto;
			vertical-align: middle;
			display: inline-block;
			padding-bottom: 4px;
		}
	}

	.system_outline {
		width: 100%;
		margin: 0 auto;
		display: flex;
		flex-wrap: wrap;
		.outline_item {
			flex-basis: 100%;
			width: 100%;
			display: flex;
			justify-content: flex-start;
			margin-bottom: 10px;
			align-items: center;
			h3 {
				flex-basis: 115px;
				width: 115px;
				margin-right: 20px;
				margin-bottom: 0;
				border: 2px solid var(--texcolor03);
				border-radius: 40px;
				color: var(--texcolor03);
				font-size: 2rem;
				font-weight: 700;
				text-align: center;
				padding: 2px 0;
				&:after {
					display: none;
				}
			}
			div {
				flex-basis: auto;
				color: var(--texcolor03);
				font-size: 2rem;
				font-weight: 600;
				letter-spacing: 0.1em;
				margin-bottom: 4px;
				span {
					font-size: 4.2rem;
					font-weight: 900;
					line-height: 1;
				}
			}
		}
		.outline_item2 {
			flex-basis: 100%;
			width: 100%;
			display: flex;
			justify-content: flex-start;
			margin-bottom: 2px;
			align-items: center;
			h3 {
				flex-basis: 115px;
				width: 115px;
				margin-right: 20px;
				margin-bottom: 10px;
				border: 2px solid var(--texcolor03);
				color: var(--texcolor03);
				font-size: 2rem;
				font-weight: 700;
				text-align: center;
				border-radius: 40px;
				padding: 2px 0;
				&:after {
					display: none;
				}
			}
			div {
				flex-basis: auto;
				color: var(--texcolor03);
				font-size: 1.8rem;
				font-weight: 600;
				letter-spacing: 0.1em;
				margin-bottom: 0;
				span {
					font-size: 3rem;
					font-weight: 700;
				}
			}
		}
		.outline_item3 {
			flex-basis: 100%;
			width: 100%;
			display: flex;
			justify-content: flex-start;
			margin-bottom: 10px;
			align-items: center;
			h3 {
				flex-basis: 115px;
				width: 115px;
				margin-right: 20px;
				margin-bottom: 0;
				border: 2px solid var(--texcolor03);
				color: var(--texcolor03);
				font-size: 2rem;
				font-weight: 700;
				text-align: center;
				border-radius: 40px;
				padding: 2px 0;
				&:after {
					display: none;
				}
			}
			div {
				flex-basis: auto;
				color: var(--texcolor03);
				font-size: 1.8rem;
				font-weight: 600;
				letter-spacing: 0.02em;
				margin-bottom: 0;
				span {
					font-size: 2rem;
					font-weight: 700;
				}
			}
		}
	}

	.attention {
		width: 100%;
		margin: 20px auto;
		padding: 20px;
		font-size: 1.6rem;
		border-radius: 8px;
		border: 2px solid var(--themecolor);
		font-weight: 600;
		text-align: center;
		background-color: var(--mapbgcolor);
		color: var(--texcolor01);
	}

	.column2_area {
		width: 100%;
		display: flex;
		justify-content: flex-start;
		margin: 0 auto 30px auto;
		align-items: center;
		.left_img {
			flex-basis: 26%;
			width: 100%;
			margin-right: 3%;
			img {
				width: 100%;
				height: auto;
			}
			.img_s {
				width: 160px;
				margin: 0 auto;
				display: block;
			}
			.img_m {
				width: 160px;
				margin: 0 auto;
				display: block;
			}
		}
		.right_txt {
			flex-basis: 67%;
			width: 100%;
			p {
				font-size: 1.6rem;
				font-weight: 500;
			}
		}
	}


	.column_half {
		width: 100%;
		display: flex;
		justify-content: center;
		margin: 0 auto 30px auto;
		.half_item {
			flex-basis: 60%;
			width: 100%;
			display: flex;
			justify-content: flex-start;
			.falf_number_top { 
				display: none;
			}
			.falf_number {
				flex-basis: 50px;
				width: 50px;
				height: 50px;
				border-radius: 10px;
				margin-right: 10px;
				background-color: var(--orange);
				color: #fff;
				font-size: 2.4rem;
				font-weight: 600;
				text-align: center;
				display: inline-block;
				line-height: 45px;
			}
			.falf_main {
				flex-basis: calc(100% - 60px);
				width: 100%;
			}
			.qr_img {
				width: 120px;
				margin: 0 auto 20px auto;
				text-align: center;
				display: block;
			}
		}
		.half_fig {
			flex-basis: 40%;
		}
		.half_center {
			p {
				line-height: 45px;
			}
		}
	}
	.column_fig {
		width: 80%;
		margin: 20px auto 10px auto;
		.img_s {
			width: 100px;
			margin: 0 auto;
			display: block;
		}
		.img_m {
			width: 160px;
			margin: 0 auto;
			display: block;
		}
		.img_mileage {
			width: 200px;
			border: 1px solid var(--bordercolor);
		}
	}
	.arrow_down {
		width: 60px;
		margin: 20px auto 40px auto;
	}

	dl {
		width: 100%;
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		align-items: center;
		margin-bottom: 40px;
		dt {
			flex-basis: 92px;
			width: 100%;
			text-align: center;
			color: var(--texcolor03);
			border: 2px solid var(--texcolor03);
			padding: 4px 0;
			font-size: 1.6rem;
			font-weight: 700;
			border-radius: 40px;
			margin-right: 10px;
			margin-bottom: 10px;
		}
		dd {
			flex-basis: calc(100% - 102px);
			color: var(--texcolor02);
			font-size: 1.8rem;
			font-weight: 700;
			letter-spacing: 0.06em;
			padding-bottom: 12px;
			line-height: 1.5;
			.text_strong {
				font-weight: 600;
				font-size: 2.6rem;
			}
			.cap {
				font-size: 1.4rem;
			}
			a {
				text-decoration: underline;
				&:hover {
					text-decoration: none;
				}
			}
		}
	}
	.basic_table {
		width: 100%;
		margin: 30px auto 10px auto;
		border-collapse: collapse;
		tr {
			th {
				font-size: 1.6rem;
				background-color: var(--themecolor);
				color: #fff;
				padding: 10px 16px;
				font-weight: 500;
				text-align: center;
				line-height: 1.5;
				letter-spacing: 0.15em;
				white-space: nowrap;
			}
			th.chiku_th {
				width: 120px;
			}
			td {
				font-size: 1.6rem;
				border-top: 1px solid var(--bordercolor);
				text-align: left;
				padding: 10px 16px;
			}
		}
		tr:nth-child(2n+1) {
			background: var(--bgcolor);
		}
		tr {
			border-bottom: 1px solid var(--bordercolor);	
		}
	}
	.point_table {
		margin-bottom: 60px;
		tr {
			td {
				span {
					font-size: 2.2rem;
					font-weight: 600;
				}
				.cap {
					font-size: 1.4rem!important;
					font-weight: 400!important;
				}
			}
			td:nth-child(2) {
				text-align: right;
			}
		}
	}
	.line_table {
		tr {
			th {

			}
			td {
				border-right: 1px solid var(--bordercolor);
			}
			td:first-child {
				border-left: 1px solid var(--bordercolor);
			}
		}
	}

	.basic_list {
		position: relative;
		display: block;
		margin: 20px 0 30px 50px;
		li {
			position: relative;
			display: block;
			line-height: 2;
			font-size: 1.6rem;
			&:before {
				position: absolute;
				content: "●";
				display: block;
				font-size: 1.8rem;
				color: var(--themecolor);
				left: -26px;
				top: 0;
			}
			a {
				display: block;
				text-decoration: underline;
				&:hover {
					text-decoration: none;
				}
			}
		}
	}
	.present_list {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-items: center;
		margin-bottom: 10px;
			dt {
				flex-basis: 38%;
				background-color: transparent;
				color: var(--texcolor01);
				margin-right: 2%;
				margin-left: 30px;
				text-align: left;
				padding: 0;
				position: relative;
				border: none;
				font-size: 2rem;
				&:before {
					position: absolute;
					content: "●";
					display: block;
					font-size: 1.8rem;
					color: var(--themecolor);
					left: -26px;
					top: 2px;
				}
			}
			dd {
				flex-basis: 50%;
				.present_cap {
					font-size: 1.6rem;
					font-weight: 600;
				}
			}
			.present_number {
				display: inline-block;
				color: var(--texcolor03);
				padding: 4px 12px;
				text-align: center;
				line-height: 1;
				span {
					font-size: 2.5rem;
					font-weight: 600;
					margin: 0 4px;
				}
			}
		}

	.point_column {
		border: 1px solid var(--cautioncolor);
		color: var(--cautioncolor);
		padding: 8px 12px;
		display: inline-block;
		font-size: 1.6rem;
	}

	.app_contents {
		width: 100%;
		margin: 0 auto 30px auto;
		.screen_column {
			width: 100%;
			display: flex;
			justify-content: space-between;
				.step_img {
					flex-basis: 25%;
				}
				.step_txt {
					flex-basis: 72%;
					margin-bottom: 30px;
					.inst_btn {
						width: 250px;
						display: block;
						margin: 20px 0;
					}
					.step_caution {
						border: 3px dotted var(--themecolor);
						padding: 14px 14px 14px 14px;
						ul {
							margin-top: 0;
						}
						.gmail_screen {
							width: 100%;
							display: flex;
							justify-content: center;
							flex-wrap: wrap;
							align-items: flex-start;
							gap: 8px;
							.screen_item {
								flex-basis: 20%;
								p {
									font-size: 1.2rem;
									line-height: 1.4;
									margin: 0;
								}
							}
							.arrow_right {
								flex-basis: 12px;
								margin-top: 50px;
							}
						}
						.arrow_leftdown {
							width: 60px;
							margin: 0 auto;
						}
					}
					.special_caution {
						border: 3px dashed var(--cautioncolor);
						margin-bottom: 20px;
					}
					.step_alert {
						background-color: var(--cautioncolor);
						padding: 14px 34px 14px 34px;
						display: inline-block;
						p {
							color: #fff;
							font-size: 2rem;
							font-weight: 400;
							text-align: center;
							margin-bottom: 0;
							line-height: 1.4;
							.text_alart_strong {
								font-size: 3.4rem;
								font-weight: 700;
							}
							span {
								font-size: 1.6rem;
							}
						}
					}
				}
		}

		h4 {
			font-size: 1.8rem;
			color: var(--texcolor01);
			span {
				display: inline-block;
				width: 30px;
				border-radius: 6px;
				background-color: var(--texcolor03);
				color: #fff;
				text-align: center;
				font-size: 2rem;
				font-weight: 600;
				margin-right: 8px;
				margin-top: 30px;
				margin-bottom: 20px;
			}
			.device_title {
				width: 160px;
			}
		}
		h5 {
			font-size: 1.8rem;
			font-weight: 600;
		}
		h6 {
			font-size: 1.8rem;
			font-weight: 600;
			margin-bottom: 10px;
			color: var(--texcolor02);
		}
		.screen_img {
			border: 1px solid var(--bordercolor);
		}
	}

	.device_select {
			width: 100%;
			display: flex;
			justify-content: center;
			gap: 50px;
			flex-wrap: wrap;
			margin: 40px auto;
			.btn_dev {
				flex-basis: 40%;
				a {
					width: 100%;
					display: block;
					background-color: var(--themecolor);
					color: #fff;
					padding: 6px 10px;
					text-align: center;
					font-size: 1.6rem;
					font-weight: 600;
					border-radius: 36px;
					transition: 0.3s all ease 0s;
					&:hover {
						opacity: 0.8;
					}
				}
			}
		}

	.photo_contents {
		width: 100%;
		mairgin: 0 auto 60px auto;
		h4 {
			border: 2px solid var(--texcolor03);
			font-size: 2rem;
			border-radius: 50px;
			color: var(--texcolor03);
			padding: 0 14px;
			display: inline-block;
			margin-top: 10px;
		}
	}
	.full_img {
		margin: 40px auto;
	}
}


/* アプリ利用ガイド */
/* ================
.guide_contents
================== */
.guide_movie {
	width: 100%;
	position: relative;
	margin: 30px auto;
	aspect-ratio: 16 / 9;
	iframe {
		width: 100%;
		height: 100%;
		position: absolute;
		left: 0;
		top: 0;
	}
}
.guide_contents {
	margin-top: 40px;
	.guide_figarea {
		width: 100%;
		display: flex;
		justify-content: space-between;
		.guidefig_img {
			flex-basis: 47%;
		}
		.guidefig_txt {
			flex-basis: 50%;
			h4 {
				font-size: 1.6rem;
				font-weight: 600;
				color: var(--cautioncolor);
				margin-bottom: 6px;
				line-height: 1;
			}
			p {
				font-size: 1.4rem;
				line-height: 1.5;
				margin-top: 0;
			}
			.txt_blue {
				color: var(--texcolor04);
			}
			.txt_black {
				color: var(--texcolor03);
			}
			.guide_table {
				margin: 0;
			}
			.figtxt_column {
				background-color: #f0f0f0;
				padding: 14px;
				h4 {
					color: var(--texcolor01);
					line-height: 1;
					margin-bottom: 6px;
				}
				p {
					margin-bottom: 10px;
				}
			}
		}
		.txt_2colm {
			width: 100%;
			display: flex;
			justify-content: flex-start;
			align-items: center;
			flex-wrap: wrap;
			.mark_item {
				flex-basis: 20%;
				margin-right: 3%;
			}
			.mark_txt {
				flex-basis: 77%;
			}
		}
	}
}


/* プレゼントについて */

.present_flow {
	width: 90%;
	margin: 0 auto;
	background-color: var(--blue_pale);
	padding: 10px 20px;
	border-radius: 12px;
	p {
		margin: 0;
	}
}

.present_arrow {
	width: 40px;
	margin: 10px auto;
}


/* ポイントのしくみ */
.align_top {
	align-items: flex-start!important;
	justify-content: flex-start!important;
}
.point_img {
	width: 80%;
	margin: 10px auto;
}


/* よくある質問 */
/* ================
.faq_contents
================== */
.faq_contents {
	width: 100%;
	margin: 0 auto 30px auto;
	.faq_question {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		span {
			display: inline-block;
			width: 50px;
			background-color: var(--blue_pale);
			font-family: "Montserrat", sans-serif;
			font-weight: 600;
			font-size: 20px;
			color: var(--blue);
			border-radius: 10px;
			text-align: center;
			padding: 6px 0;
			margin-right: 20px;
		}
		p {
			flex-basis: calc( 100% - 70px);
			line-height: 1.6;
		}
	}
	.faq_answer {
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
		margin-left: 30px;
		margin-top: 10px;
		span {
			display: inline-block;
			width: 50px;
			background-color: var(--pink_pale);
			font-family: "Montserrat", sans-serif;
			font-weight: 600;
			font-size: 20px;
			color: var(--pink);
			border-radius: 10px;
			text-align: center;
			padding: 6px 0;
			margin-right: 20px;
		}
		p {
			flex-basis: calc( 100% - 70px);
		}
	}
}