/*
	リセット
---------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
	background: transparent;
	font-weight: inherit;
	font-size: inherit;
	font-style: inherit;
	-webkit-tap-highlight-color: transparent;
}
article,
aside,
details,
figcaption,
figure,
main,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}
ul,
ol {
	list-style: none;
}
blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
}

/* Normal style */
sub,
sup {
	position: relative;
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline;
}
sub {
	bottom: -0.25em;
}

sup {
	top: 0.3em;
}

em,
strong {
	font-weight: 700;
}


/*
	基本設定
---------------------------------------------- */
:root {
	--primary-color-gr: #28AC6C;
	--primary-color-bk: #333333;
	--primary-color-wh: #ffffff;
	--font-color: #333;
	--font-color-sub: #666;
	--bg-color: #EDFDF5;
}

@media only screen and (min-width: 768px) {
}

/* basics */
html {
	font-size: 62.5%;
	background-color: #fff;
}

body {
	/* font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic Pro', 'Meiryo', sans-serif; */
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-size: 1.6rem;
	line-height: 1.6;
	color: var(--font-color);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
	overflow-wrap: break-word;
	word-wrap: break-word;
}

a {
	text-decoration: none;
	outline: none;
	line-height: inherit;
}

@media only screen and (min-width: 768px) {
	a[href^="tel"] {
		pointer-events: none;
	}
}

img {
	width: 100%;
	vertical-align: top;
}

sup {
	top: -1.9em;
	font-size: 0.9rem;
}

iframe {
	border: 0;
}

@media only screen and (max-width: 767px) {
	sup {
		top: -1em;
	}
}

/*
	ページレイアウト
---------------------------------------------- */

@media only screen and (max-width: 767px) {
	.pc-v {
		display: none;
	}

	.section {
		padding: 0 20px;
	}
}

@media only screen and (min-width: 768px) {
	.sp-v {
		display: none;
	}

	.section {
		width: 100%;
		max-width: 1240px;
		padding: 0 20px;
		margin: 0 auto;
	}
}

.font-poppins {
	font-family: 'Poppins', sans-serif;
}

.lp-container em {
	color: var(--primary-color-gr);
}

@media only screen and (min-width: 768px) {
	.column_items {
		display: flex;
		flex-wrap: wrap;
	}

	/* column2 */
	.column_items.column2 {
		gap: 0 80px;
	}

	.column_items.column2 .column_item {
		flex: 1 1 auto;
		width: calc(100% / 2 - 80px);
	}

	/* column3 */
	.column_items.column3 {
		gap: 0 48px;
	}

	.column_items.column3 .column_item {
		flex: 1 1 auto;
		width: calc(100% / 3 - 48px);
	}

	/* column4 */
	.column_items.column4 {
		gap: 24px;
	}

	.column_items.column4 .column_item {
		flex: 1 1 auto;
		width: calc(100% / 2 - 24px);
	}
}

.mod_h2 {
	position: relative;
	margin-bottom: 40px;
	font-size: 2.4rem;
	font-weight: 700;
	text-align: center;
}

.mod_h2::before {
	content: '';
	display: block;
	width: 30px;
	height: 30px;
	margin: 0 auto 10px;
	background: url(/lp/avant_cruise/img/icon_flag.png) no-repeat 0 0;
	background-size: cover;
}

.mod_h2.white {
	color: var(--primary-color-wh);
}

.mod_h2.white::before {
	background: url(/lp/avant_cruise/img/icon_flag_wh.png) no-repeat 0 0;
	background-size: cover;
}

.mod_h2 .font-poppins {
	font-weight: 500;
}

@media only screen and (min-width: 768px) {
	.mod_h2 {
		margin-bottom: 80px;
		font-size: 4.8rem;
	}

	.mod_h2::before {
		width: 40px;
		height: 40px;
	}
}

.mod_h3 {
	position: relative;
	padding-left: 23px;
	margin-bottom: 30px;
	font-size: 2rem;
	font-weight: 700;
}

.mod_h3::before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 8px;
	height: 19px;
	margin-right: 15px;
	background: url(/lp/avant_cruise/img/bg_h3.png) no-repeat 0 0;
	background-size: cover;
}

@media only screen and (min-width: 768px) {
	.mod_h3 {
		padding-left: 32px;
		margin-bottom: 40px;
		font-size: 3.6rem;
	}

	.mod_h3::before {
		width: 12px;
		height: 28px;
	}
}

.btn_cv .btn_cv_inner {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 64px;
	background-color: var(--primary-color-gr);
	border: 1px solid var(--primary-color-gr);
	border-radius: 100px;
	color: var(--primary-color-wh);
	font-size: 1.6rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.2;
	transition: .3s all;
}

.btn_cv2 .btn_cv_inner {
	background-color: var(--primary-color-wh);
	border: 1px solid var(--primary-color-gr);
	color: var(--primary-color-gr);
	opacity: 1;
	transition: .3s all linear;
}

.btn_cv3 .btn_cv_inner {
	opacity: 1;
	transition: .3s all linear;
}

@media only screen and (min-width: 768px) {
	.btn_cv .btn_cv_inner:hover {
		color: var(--primary-color-gr);
		background-color: var(--primary-color-wh);
	}

	.btn_cv2 .btn_cv_inner:hover {
		background-color: var(--primary-color-wh);
		color: var(--primary-color-gr);
		opacity: .8;
	}

	.btn_cv3 .btn_cv_inner:hover {
		background-color: var(--primary-color-gr);
		color: var(--primary-color-wh);
		opacity: .8;
	}
}

.anchor .anchor_inner {
	position: relative;
	display: block;
	height: 56px;
	border: 1px solid var(--primary-color-gr);
	border-radius: 8px;
	color: var(--primary-color-gr);
	text-align: center;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 56px;
	transition: all .3s;
}

.anchor .anchor_inner::before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	right: 16px;
	transform: translateY(-50%);
	width: 10px;
	height: 7px;
	background: url(/lp/avant_cruise/img/arrow_b_gr.png) no-repeat 0 0;
	background-size: cover;
	transition: all .3s;
}

@media only screen and (min-width: 768px) {
	.anchor .anchor_inner {
		height: 64px;
		font-size: 1.8rem;
		line-height: 64px;
	}

	.anchor .anchor_inner:hover {
		background-color: var(--primary-color-gr);
		color: var(--primary-color-wh);
	}

	.anchor .anchor_inner:hover::before {
		background: url(/lp/avant_cruise/img/arrow_b_wh.png) no-repeat 0 0;
		background-size: cover;
	}
}

/* mainvis */
.mainvis {
	position: relative;
	background-color: #0D8B4E;
}

.mainvis_inner {
	position: relative;
	background-color: var(--primary-color-wh);
	padding-top: 40px;
	padding-bottom: 69px;
}

.mainvis_inner::after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding-top: 23.6338%;
	background: url(/lp/avant_cruise/img/wave.png) no-repeat center 0;
	background-size: cover;
}
.mainvis_lblinner {
	position: relative;
	width: 100%;
	max-width: 335px;
	margin: 0 auto;
	padding-top: 147px;
	z-index: 2;
}
.mainvis_label {
    min-height: 57px;
    position: relative;
    display: inline-block;
    background-color: #A3D126;
	width: calc(245 / 375 *100%);
	max-width: 245px;
}
.mainvis_label:before,
.mainvis_label:after {
	content: '';
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    content: '';
    border: 28px solid transparent;
    border-right: 17px solid transparent;
    border-left: 17px solid transparent;
}
.mainvis_label:before {
    right: 100%;
    border-right-color: #A3D126;
}
.mainvis_label:after {
    left: 100%;
    border-left-color: #A3D126;
}

.mainvis_label.label1 {
	position: absolute;
	top: 12px;
	left: 20px;
}

.mainvis_label.label2 {
	position: absolute;
	bottom: 0;
	right: 20px;
}

.mainvis_label p {
	position: relative;
	margin: 14px 21px;
	color: #fff;
	font-size: 1.2rem;
	font-weight: bold;
	line-height: 1.1;
}

.mainvis_label.label1 p::after,
.mainvis_label.label2 p::after {
	position: absolute;
	content: '';
	top: -25px;
	right: -30px;
	width: 90px;
	height: 77px;
	z-index: 1;
}

.mainvis_label.label1 p::after {
	background: url(/lp/avant_cruise/img/icon_label_1.png) no-repeat center 0;
	background-size: cover;
}

.mainvis_label.label2 p::after {
	background: url(/lp/avant_cruise/img/icon_label_2.png) no-repeat center 0;
	background-size: cover;
}

.mainvis_label p > span {
	font-size: 1rem;
}

.mainvis_cts {
	position: relative;
	z-index: 1;
}

.mainvis h1 {
	max-width: 260px;
	margin-bottom: 30px;
}

.mainvis_lead {
	margin-bottom: 32px;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.625;
}

.mainvis_cv {
	width: 100%;
	max-width: 300px;
	margin: 0 auto;
	padding: 40px 0 0;
}

.mainvis_image {
	margin-top: -32px;
}

@media only screen and (min-width: 768px) {
	.mainvis_inner {
		padding-top: 180px;
		padding-bottom: 168px;
	}

	.mainvis_cts {
		display: flex;
		justify-content: space-between;
		max-width: 1340px;
	}

	.mainvis_lblinner {
		position: absolute;
		top: -136px;
		right: 90px;
		padding-top: 157px;
		max-width: 387px;
	}

	.mainvis_label {
		font-size: 1.6rem;
		min-height: 66px;
		max-width: 282px;
	}

	.mainvis_label:before,
	.mainvis_label:after {
		content: '';
		position: absolute;
		top: 0;
		width: 0;
		height: 0;
		content: '';
		border: 33px solid transparent;
		border-right: 19px solid transparent;
		border-left: 19px solid transparent;
	}

	.mainvis_label:before {
		right: 100%;
		border-right-color: #A3D126;
	}

	.mainvis_label:after {
		left: 100%;
		border-left-color: #A3D126;
	}

	.mainvis_label p {
		font-size: 1.6rem;
	}
	
	.mainvis_label.label1 p::after,
	.mainvis_label.label2 p::after {
		top: -20px;
	}
	
	.mainvis_label p > span {
		font-size: 1.2rem;
	}


	.mainvis_detail {
		flex: 1 1 auto;
		min-width: 300px;
		max-width: 480px;
	}

	.mainvis h1 {
		max-width: 472px;
		margin-bottom: 50px;
	}

	.mainvis_lead {
		margin-bottom: 60px;
		font-size: 2.1rem;
		line-height: 1.58;
	}

	.mainvis_cv {
		max-width: 480px;
		padding-top: 0;
	}

	.mainvis_image {
		flex: 1 1 auto;
		min-width: 300px;
		max-width: 760px;
	}
}

/* promotion */
.promotion {
	background-color: #0D8B4E;
}

.promotion_lead {
	padding-top: 40px;
	margin-bottom: 20px;
	font-size: 2.4rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.58;
	color: #fff;
}

.promotion_lead > .green {
	color: #B2F400;
}

.promotion_text {
	margin-bottom: 24px;
	font-size: 1.6rem;
	font-weight: 500;
	text-align: left;
	line-height: 1.58;
	color: #fff;
}

.promotion_column .column_item {
	position: relative;
	background-color: #fff;
	padding: 20px 20px 5px;
	border-radius: 10px;
	overflow: hidden;
}


.promotion_column .column_item::before {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	border-bottom: 70px solid #B2F400;  /* 好みで高さ色を変えてください */ 
	border-left: 100px solid transparent;
	z-index: -1;
}

.promotion_column .column_item .item_image {
	max-width: 125px;
	height: 107px;
	margin: 0 auto;
}

.promotion_column .column_item .item_image img {
	max-width: 100%;
}

.promotion_column .column_item .item_title {
	min-height: 1.1em;
	margin-bottom: 10px;
	text-align: center;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1;
}

.promotion_column .column_item .item_title span {
	font-size: 1.2rem;
}

.promotion_image {
	width: 100%;
	margin: 0 auto;
	border-radius: 4px;
	overflow: hidden;
}

.promotion_uiux {
	position: relative;
	width: 100%;
	height: 100%;
	padding-bottom: 110px;
}

.promotion_uiux::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 100%;
	background-image: url(/lp/avant_cruise/img/bg_promotion_sp.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
}

.promotion_uiux .promotion_lead {
	padding-top: 107px;
}

@media only screen and (min-width: 768px) {
	.promotion_lead {
		font-size: 4.6rem;
	}

	.promotion_text {
		font-size: 2.4rem;
		text-align: center;
		margin-bottom: 60px;
	}

	.promotion_column.column_items.column2 {
		gap: 0 40px;
		margin-left: 60px;
		margin-right: 60px;
	}

	.promotion_column .column_item {
		padding: 30px 30px 20px;
	}

	.promotion_column .column_item:first-of-type .item_image {
		max-width: 197px;
	}

	.promotion_column .column_item:last-of-type .item_image {
		max-width: 266px;
	}

	.promotion_column .column_item .item_title {
		min-height: 2em;
		font-size: 2.8rem;
		margin-bottom: 25px;
	}

	.promotion_column .column_item .item_title span {
		font-size: 2rem;
	}

	.promotion_uiux {
		position: relative;
		width: 100%;
		height: 100%;
		padding-bottom: 160px;
	}

	.promotion_uiux::before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 100%;
		height: 100%;
		background-image: url(/lp/avant_cruise/img/bg_promotion_pc.png);
		background-size: 100% 100%;
		background-repeat: no-repeat;
	}

	.promotion_uiux .promotion_lead {
		padding-top: 67px;
	}

	.promotion_image {
		max-width: 756px;
		margin-top: 42px;
	}
}

/* case */
.case {
	padding-top: 76px;
	padding-bottom: 60px;
	background-color: var(--bg-color);
}

.case_lead {
	margin-bottom: 20px;
	font-size: 2.4rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.58;
}

.case_lead strong {
	display: inline-block;
	background: linear-gradient(transparent 80%, #B2F400 80%);
	line-height: 1;
}

.case_lead .font-poppins {
	font-weight: 500;
}

.case_image {
	width: calc(200 / 335 * 100%);
	margin: 0 auto 40px;
}

.case_item {
	position: relative;
	padding: 24px 20px 20px;
	background: var(--primary-color-wh);
	border-radius: 10px;
	box-sizing: border-box;
}

.case_item + .case_item {
	margin-top: 10px;
}

.case_item .item_tag {
	position: absolute;
	top: -3px;
	left: -3px;
	padding: 4px 11px 2px 9px;
	background-color: var(--primary-color-gr);
	border-radius: 10px 0 0 0;
	color: var(--primary-color-wh);
	font-size: 1.3rem;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	text-align: center;
	z-index: 1;
}

.case_item .item_text {
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
}

/* before */
.case_before .case_item {
	border: 3px solid #DDDDDD;
	text-align: center;
}

/* after */
.case_after .case_item {
	border: 3px solid var(--primary-color-gr);
}

/* next */
.next {
	position: relative;
	width: 120px;
	height: 30px;
	margin: 20px auto;
}

.next::after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 60px solid transparent;
	border-left: 60px solid transparent;
	border-top: 30px solid var(--primary-color-gr);
	border-bottom: 0;
}


@media only screen and (min-width: 768px) {
	.case {
		padding-top: 80px;
		padding-bottom: 120px;
	}

	.case_lead {
		margin-bottom: 40px;
		font-size: 4.8rem;
		line-height: 1.5;
	}

	.case_image {
		width: calc(300 / 1200 * 100%);
	}

	.case_item {
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 40px 20px 30px;
	}

	.case_item + .case_item {
		margin-top: 0;
	}

	.case_item .item_tag {
		top: -6px;
		left: -6px;
		height: 30px;
		padding: 0 24px;
		font-size: 1.8rem;
		line-height: 30px;
		background-color: var(--primary-color-gr);
		border-radius: 10px 0 0 0;
	}

	.case_item .item_text {
		align-self: center;
		font-size: 2.5rem;
		font-weight: 700;
	}

	/* before */
	.case_before .case_item {
		border: 6px solid #DDDDDD;
	}

	/* after */
	.case_after .case_item {
		border: 6px solid var(--primary-color-gr);
	}

	/* next */
	.next {
		width: 200px;
		height: 50px;
		margin: 40px auto 30px;
	}

	.next::after {
		border-right: 100px solid transparent;
		border-left: 100px solid transparent;
		border-top: 50px solid var(--primary-color-gr);
		border-bottom: 0;
	}
}

/* about */
.about {
	padding-top: 60px;
	padding-bottom: 60px;
}

.about .mod_h2 {
	margin-bottom: 30px;
}

.about_lead {
	margin-bottom: 20px;
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
}

.about_text {
	margin-bottom: 30px;
	line-height: 1.8;
}

@media only screen and (min-width: 768px) {
	.about {
		padding-top: 120px;
		padding-bottom: 120px;
	}

	.about .mod_h2 {
		margin-bottom: 80px;
	}

	.about_lead {
		margin-bottom: 30px;
		font-size: 2.4rem;
	}

	.about_text {
		margin-bottom: 50px;
		font-size: 1.6rem;
	}
}

/* point */
.point {
	padding-top: 60px;
	padding-bottom: 60px;
	background-color: var(--bg-color);
}

.point_item + .point_item {
	margin-top: 40px;
}

.point_item .item_header {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.point_item .item_icon {
	flex: 0 0 56px;
	width: 56px;
	height: 56px;
	margin-right: 19px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background-color: var(--primary-color-gr);
	border-radius: 100%;
	color: var(--primary-color-wh);
	font-family: 'Poppins', sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
}

.point_item .item_icon span {
	display: block;
	font-size: 1.8rem;
	line-height: 1;
}

.point_item .item_title {
	flex: 1 1 auto;
	font-size: 1.8rem;
	font-weight: 700;
}

.point_item .item_title .sup {
	display: block;
	font-size: 1rem;
}

.point_item .item_title em {
	color: var(--primary-color-gr);
}

.point_item .item_text {
	margin-bottom: 20px;
	font-size: 1.6rem;
	line-height: 1.8;
}

.point_item .item_image {
	margin: 0 20px;
	border-radius: 10px;
	overflow: hidden;
}

.point_cv {
	margin: 60px 18px 0 17px;
}

@media only screen and (min-width: 768px) {
	.point {
		padding-top: 120px;
		padding-bottom: 120px;
	}

	.point_item + .point_item {
		margin-top: 80px;
	}

	.point_item {
		display: flex;
		justify-content: space-between;
	}

	.point_item.reverse {
		flex-direction: row-reverse;
	}

	.point_item .item_detail {
		flex: 1 1 auto;
		max-width: 640px;
	}

	.point_item .item_icon {
		flex: 0 0 100px;
		width: 100px;
		height: 100px;
		margin-right: 30px;
		font-size: 1.8rem;
	}

	.point_item .item_icon span {
		font-size: 3rem;
	}

	.point_item .item_title {
		font-size: 3rem;
	}

	.point_item .item_text {
		margin-bottom: 0;
	}

	.point_item .item_image {
		flex: 1 1 auto;
		max-width: 472px;
		margin: 0;
	}

	.point_cv {
		max-width: 600px;
		margin: 80px auto 0;
	}
}

/* feature */
.feature {
	padding-top: 60px;
	padding-bottom: 60px;
}

.feature_header {
	margin-bottom: 60px;
}

.feature_cts + .feature_cts {
	margin-top: 80px;
}

.anchor_items .column_item + .column_item {
	margin-top: 16px;
}

.feature_body {
	padding: 40px 20px;
	background-color: var(--bg-color);
	border-radius: 15px;
}

.feature_items .column_item + .column_item {
	margin-top: 40px;
}

.feature_items .item_image {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px;
	margin-bottom: 20px;
	background-color: var(--primary-color-wh);
	border-radius: 10px;
}

.feature_items .item_image img {
	width: calc(112 / 295 * 100%);
}

.feature_items .item_title {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	font-size: 1.8rem;
	font-weight: 700;
}

.feature_items .item_title span {
	display: inline-block;
	width: 28px;
	height: 28px;
	margin-right: 15px;
	background-color: var(--primary-color-gr);
	border-radius: 100%;
	color: var(--primary-color-wh);
	text-align: center;
	font-size: 1.8rem;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	line-height: 28px;
}

.feature_items .item_text {
	line-height: 1.8;
}

.type03 .type03_text {
	margin-top: 40px;
}

.type04 .type04_lead {
	margin-bottom: 40px;
	font-size: 1.8rem;
	font-weight: 700;
}

.type04 .type04_text {
	margin-bottom: 40px;
	line-height: 1.8;
}

.type04_items .column_item + .column_item {
	margin-top: 40px;
}

.type04 figcaption {
	margin-top: 20px;
	font-size: 1.6rem;
}

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

	.feature_header {
		margin-bottom: 80px;
	}

	.feature_cts + .feature_cts {
		margin-top: 100px;
	}

	.feature_body {
		padding: 80px;
		border-radius: 30px;
	}

	.feature_items.column2 {
		gap: 90px 80px;
	}

	.feature .column_item + .column_item {
		margin-top: 0;
	}

	.feature_items .column_item + .column_item {
		margin-top: 0;
	}

	.feature_items .item_image {
		padding: 30px;
		margin-bottom: 30px;
		border-radius: 20px;
	}

	.feature_items .item_image img {
		width: calc(180 / 420 * 100%);
	}

	.feature_items .item_title {
		display: flex;
		align-items: center;
		margin-bottom: 20px;
		font-size: 2.5rem;
		font-weight: 700;
	}

	.feature_items .item_title span {
		width: 40px;
		height: 40px;
		margin-right: 20px;
		font-size: 2.5rem;
		line-height: 40px;
	}

	.type03 .type03_text {
		margin-top: 30px;
	}

	.type04 .type04_lead {
		margin-bottom: 30px;
		font-size: 2.5rem;
	}

	.type04 .type04_text {
		margin-bottom: 60px;
	}

	.type04_items .column_item + .column_item {
		margin-top: 0;
	}

	.type04 figcaption {
		margin-top: 30px;
	}
}

/* select */
.select {
	padding-top: 60px;
	padding-bottom: 60px;
	background-color: var(--primary-color-gr);
	color: #fff;
}

.select_items .column_item + .column_item {
	margin-top: 40px;
}

.select_items .item_image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 180px;
	height: 180px;
	margin: 0 auto 30px;
	background-color: var(--primary-color-wh);
	border-radius: 100%;
}

.select_items .item_image img {
	max-width: 80px;
}

.select_items .item_title {
	min-height: 3.2em;
	margin-bottom: 20px;
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
}

.select_items .item_text {
	font-size: 1.6rem;
}

@media only screen and (min-width: 768px) {
	.select {
		padding-top: 120px;
		padding-bottom: 120px;
	}

	.select_items .column_item + .column_item {
		margin-top: 0;
	}

	.select_items .item_image {
		width: 210px;
		height: 210px;
		margin: 0 auto 40px;
	}

	.select_items .item_image img {
		max-width: 100px;
	}

	.select_items .item_title {
		margin-bottom: 20px;
		font-size: 2.4rem;
	}
}


/* contact */
.contact {
	padding-top: 60px;
	padding-bottom: 60px;
}

.contact .mod_h2 {
	margin-bottom: 30px;
}

.contact .contact_lead {
	font-size: 1.6rem;
}

.contact .contact_header {
	margin-bottom: 30px;
}

@media only screen and (min-width: 768px) {
	.contact {
		padding-top: 120px;
		padding-bottom: 120px;
	}

	.contact .mod_h2 {
		margin-bottom: 50px;
	}

	.contact .contact_lead {
		text-align: center;
	}

	.contact .contact_header {
		margin-bottom: 50px;
	}
}

/* float-footer */
.float-footer {
	position: relative;
	background-color: #2B2B2B;
	width: 100%;
	position: fixed;
	opacity: 0;
	transition: 0.5s;
	z-index: 2;
}

.float-footer.is-show {
	bottom: 0;
	opacity: 1;
}

.float-footer_inner {
	padding: 20px 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.float-footer_cv {
	width: 100%;
	max-width: 300px;
}

.float-footer_cv .btn_cv_inner {
	height: 50px;
}

.float-footer_cv + .float-footer_cv {
	margin-left: 5px;
}

@media only screen and (min-width: 768px) {
	.float-footer_inner {
		padding: 20px;
	}

	.float-footer_cv {
		max-width: 480px;
	}

	.float-footer_cv .btn_cv_inner {
		height: 64px;
	}

	.float-footer_cv + .float-footer_cv {
		margin-left: 20px;
	}
}

/* footer */
.footer {
	position: relative;
	background-color: #2B2B2B;
}

.footer_inner {
	padding: 50px 30px 20px;
}

.footer_logo {
	max-width: 180px;
	margin-bottom: 10px;
}

.footer_address {
	color: #fff;
	font-size: 1.2rem;
	line-height: 1.5;
	margin-bottom: 50px;
}

.footer_address a {
	color: #fff;
}

.footer_copyright {
	color: #fff;
	font-size: 1.2rem;
}

@media only screen and (min-width: 768px) {
	.footer_inner {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 77px 20px;
	}

	.footer_info {
		display: flex;
		align-items: center;
	}

	.footer_logo {
		max-width: 240px;
		margin-bottom: 0;
		transform: translateX(-26px);
	}

	.footer_address {
		margin-bottom: 0;
		color: #fff;
		font-size: 1.2rem;
		line-height: 1.5;
	}

	.footer_address a {
		color: #fff;
	}

	.footer_address a:hover {
		text-decoration: underline;
	}
}


/* pagetop */
.pagetop {
	position: fixed;
	width: 40px;
	height: 40px;
	top: -20px;
	right: 20px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s;
	z-index: 5;
}

.pagetop.is-visible {
	position: fixed;
	top: auto;
	bottom: 100px;
	right: 20px;
	opacity: 1;
	pointer-events: auto;
}

.pagetop.is-stop {
	position: absolute;
	top: -20px;
	bottom: auto;
}

.pagetop a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	background-color: #888;
	border-radius: 100%;
	text-indent: -9999px;
	transition: .3s all;
}

.pagetop a::before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 21px;
	height: 14px;
	transform: translate(-50%,-50%);
	background: url(/lp/avant_cruise/img/arrow_pagetop.png) no-repeat 0 0;
	background-size: 21px auto;
}

@media only screen and (min-width: 768px) {
	.pagetop {
		width: 56px;
		height: 56px;
		top: -28px;
		right: 38px;
	}

	.pagetop.is-visible {
		bottom: 124px;
		right: 38px;
	}

	.pagetop.is-stop {
		position: absolute;
		top: -28px;
		bottom: auto;
	}

	.pagetop a:hover {
		background-color: #ccc;
	}
}

/* フェードイン */
.js-mv-fadeinitem,
.js-fadeinitem,
.js-fade {
	opacity: 0;
}

.is-fadein {
	opacity: 1;
	transition: opacity .3s;
}

.is-fadeUp {
	animation: fadeUpItem 1s forwards;
}

@keyframes fadeUpItem {
	from {
		opacity: 0;
		transform: translateY(50px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.is-fadeUpAndIn {
	animation: fadeUpAndInItem 1s forwards;
}

	@keyframes fadeUpAndInItem {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}


