@charset "UTF-8";

/* ==================================================
   01. カラー・共通変数
================================================== */
:root {
	--lp-content-width: 850px;
	--lp-blue: #1769a6;
	--lp-blue-dark: #0d4772;
	--lp-light-blue: #eef8ff;
	--lp-border: #d4e4ef;
	--lp-text: #263640;
	--lp-heading-blue: #4f79bd;
	--lp-footer-blue: #567dc0;
	--lp-focus: #ffd900;
}

/* ==================================================
   02. 基本設定
================================================== */
html {
	scroll-behavior: smooth;
}

body {
	min-width: 960px;
	margin: 0;
	color: var(--lp-text);
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, Meiryo, sans-serif;
	line-height: 1.7;
	background-color: #f5fbff;
	background-image: url("../../images/point_plus/PC-bg.webp");
	background-repeat: repeat-y;
	background-position: center top;
	background-size: max(1920px, 100vw) auto;
}

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

button,
a {
	-webkit-tap-highlight-color: transparent;
}

/* ==================================================
   03. メインビジュアル
================================================== */
.lp-hero {
	width: 100%;
	margin: 0;
	overflow: hidden;
	background: #fff;
}

.lp-hero-image {
	display: block;
	width: 100%;
	max-width: none;
	height: auto;
	margin: 0;
}

/* ==================================================
   04. LP本体・共通レイアウト
================================================== */
.lp-main {
	width: 100%;
	max-width: var(--lp-content-width);
	margin: 0 auto;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 0 18px rgba(29, 70, 98, 0.28);
}

.image-section {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 2%;
	box-sizing: border-box;
}

.white-section {
	background: #fff;
}

.image-bg-section {
	padding: 4%;
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% 100%;
}

.lp-image {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
	border: 0;
}

/* 最初の説明～「5つの特典」見出しを含むセクション */
.benefits-title-section {
	width: 100%;
	padding: 18px 0;
	box-sizing: border-box;
	background-image: url("../../images/point_plus/c2-title-bg.webp");
	background-repeat: repeat;
	background-position: center;
}

/* タイトル画像を中央に少し小さく配置 */
.benefits-title-section>img.lp-image.full-width-image {
	display: block;
	width: 74%;
	max-width: 620px;
	height: auto;
	margin: 0 auto;
	padding: 0;
}


/* 通常の本文画像：少し小さくして中央配置 */
.image-section:not(.related-section)>img.lp-image:not(.full-width-image) {
	display: block;
	width: calc(100% - 100px);
	max-width: 690px;
	height: auto;
	margin-right: auto;
	margin-left: auto;
	padding: 4% 0 0;
	box-sizing: border-box;
}

/* c2-title.webpなど、横幅いっぱいにする画像 */
.image-section>img.lp-image.full-width-image {
	display: block;
	width: 100%;
	max-width: none;
	height: auto;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* 「会員になるには」見出し画像 */
.registration-title-section>img.lp-image {
	display: block;
	width: 100%;
	max-width: none;
	height: auto;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* ==================================================
   5つの特典タイトル 最終上書き
================================================== */
.image-section.benefits-title-section {
	width: 100%;
	padding: 22px 0;
	box-sizing: border-box;
	background-image: url("../../images/point_plus/c2-title-bg.webp");
	background-repeat: repeat;
	background-position: center;
}

.image-section.benefits-title-section>img.lp-image.full-width-image {
	display: block;
	width: 65% !important;
	max-width: 620px !important;
	height: auto;
	margin: 0 auto !important;
	padding: 0 !important;
}

/* ==================================================
   特典5から「会費以上のお得」への余白調整
================================================== */

/* 特典5セクション下の白い余白をなくす */
.bonus-5-section {
	padding-bottom: 0;
}

/* 特典5のCTA下余白をなくす */
.bonus-5-section>.cta-link {
	margin-bottom: 0;
}



/* ==================================================
   会費以上のお得：専用レイアウト
================================================== */

/* 一番上のCTAだけ上余白をなくす */
.image-section>.first-cta-link {
	margin-top: 0;
}

.image-section.benefit-section {
	/* 赤背景内の上下余白を揃える */
	padding: 7% 4%;
}

/* 共通設定の「画像上部padding」をこの箇所だけ解除 */
.image-section.benefit-section>img.lp-image:not(.full-width-image) {
	padding-top: 0;
	padding-bottom: 0;
}

/* 2枚の画像間だけ適度に空ける */
.image-section.benefit-section>img.lp-image+img.lp-image {
	margin-top: 2%;
}



/* ==================================================
   05. 各画像セクションの背景
================================================== */
.bonus-2-section {
	background-image: url("../../images/point_plus/c2-bonus-2-bg.webp");
}

.bonus-4-section {
	background-image: url("../../images/point_plus/c2-bonus-4-bg.webp");
}

.benefit-section {
	background-image: url("../../images/point_plus/c3-bg.webp");
}

.payment-section {
	background-image: url("../../images/point_plus/c4-bg.webp");
}

.registration-title-section {
	background-image: url("../../images/point_plus/c7-titlebg.webp");
}

.registration-section {
	background-image: url("../../images/point_plus/c7-bg.webp");
}

/* ==================================================
   06. CTAボタン
================================================== */
.cta-link {
	display: block;
	width: calc(100% - 180px);
	max-width: 520px;
	margin: 20px auto 28px;
	text-decoration: none;
	outline-offset: 4px;
	transition:
		opacity 0.2s ease,
		filter 0.2s ease,
		transform 0.2s ease;
}

.cta-link>.lp-image {
	display: block;
	width: 100%;
	max-width: none;
	height: auto;
	margin: 0;
	padding: 0;
}

.cta-link:hover {
	opacity: 0.82;
	filter: brightness(1.06);
	transform: translateY(-3px);
}

.cta-link:active {
	opacity: 0.72;
	filter: brightness(0.98);
	transform: translateY(0) scale(0.99);
}

.cta-link:focus-visible {
	outline: 4px solid var(--lp-focus);
}

/* ==================================================
   07. FAQ・アコーディオン
================================================== */
.faq-section {
	padding: 0 30px 55px;
	box-sizing: border-box;
	background: #fff;
}

/* 「FUポイントのよくある質問」見出し */
.faq-section .section-header {
	margin: 0 -30px 22px;
	padding: 15px 20px 14px;
	color: #fff;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
	background: var(--lp-heading-blue);
	border: 0;
	text-shadow: none;
}

.faq-section .section-header .fa {
	display: none;
}

.faq-group+.faq-group {
	margin-top: 16px;
}

/* 登録関連・ポイント関連・その他 */
.faq-category {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0 0 8px;
	padding: 0;
	color: var(--lp-heading-blue);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.4;
	background: transparent;
	border: 0;
}

.faq-category::before {
	flex: 0 0 auto;
	display: block;
	width: 24px;
	height: 24px;
	content: "";
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.faq-category-registration::before {
	background-image: url("../../images/point_plus/c6-icon-1.webp");
}

.faq-category-point::before {
	background-image: url("../../images/point_plus/c6-icon-2.webp");
}

.faq-category-other::before {
	background-image: url("../../images/point_plus/c6-icon-3.webp");
}

/* FAQ各項目 */
.faq-item {
	margin: 0 0 8px;
	overflow: hidden;
	box-sizing: border-box;
	background: #fff;
	border: 1px solid #a9a9a9;
	border-radius: 0;
}

.faq-question {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	min-height: 58px;
	margin: 0;
	padding: 11px 16px 11px 12px;
	box-sizing: border-box;
	color: #333;
	font-family: inherit;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5;
	text-align: left;
	cursor: pointer;
	background: #fff;
	border: 0;
}

/* Qアイコン */
.faq-question::before {
	flex: 0 0 30px;
	display: block;
	width: 30px;
	height: 30px;
	content: "";
	background-color: transparent;
	background-image: url("../../images/point_plus/c6-icon-Q.webp");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	border-radius: 0;
}

.faq-question:hover,
.faq-question[aria-expanded="true"] {
	background: #fff;
}

.faq-question:focus-visible {
	position: relative;
	z-index: 1;
	outline: 3px solid var(--lp-focus);
	outline-offset: -3px;
}

.faq-question-text {
	flex: 1 1 auto;
	min-width: 0;
}

/* 右側の開閉矢印 */
.faq-icon {
	flex: 0 0 19px;
	display: block;
	width: 19px;
	height: 10px;
	font-size: 0;
	background-image: url("../../images/point_plus/c6-icon-arrow.webp");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
	transform: rotate(180deg);
}

/* 回答部分 */
.faq-answer {
	position: relative;
	padding: 15px 20px 18px 56px;
	box-sizing: border-box;
	color: #333;
	font-size: 19px;
	font-weight: 500;
	line-height: 1.9;
	background: #fff;
	border-top: 1px solid #d0d0d0;
}

/* Aアイコン */
.faq-answer::before {
	position: absolute;
	top: 16px;
	left: 12px;
	display: block;
	width: 30px;
	height: 30px;
	content: "";
	background-image: url("../../images/point_plus/c6-icon-A.webp");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.faq-answer p {
	margin: 0;
}

.faq-answer[hidden] {
	display: none;
}

/* ==================================================
   08. 関連キャンペーンバナー
================================================== */
.related-section {
	padding: 22px 34px 38px;
	box-sizing: border-box;
}

.related-section>a {
	display: block;
	text-decoration: none;
	outline-offset: 3px;
	transition:
		opacity 0.2s ease,
		transform 0.2s ease;
}

.related-section>a+a {
	margin-top: 12px;
}

.related-section>a>.lp-image {
	display: block;
	width: 100%;
	max-width: none;
	height: auto;
	margin: 0;
	padding: 0;
}

.related-section>a:hover {
	opacity: 0.82;
	transform: translateY(-2px);
}

.related-section>a:active {
	opacity: 0.72;
	transform: translateY(0);
}

.related-section>a:focus-visible {
	outline: 3px solid var(--lp-focus);
}

/* ==================================================
   09. お問い合わせ
================================================== */
.contact-section {
	padding: 0 0 58px;
	text-align: center;
	background: #fff;
}

.contact-heading {
	margin: 0;
	padding: 18px 20px 16px;
	color: #fff;
	font-size: 38px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	background: var(--lp-footer-blue);
	border: 0;
	text-shadow: none;
}

.contact-heading .fa {
	display: none;
}

.contact-section p {
	margin: 54px 0 0;
	padding: 0 40px;
	color: #222;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.8;
	text-align: center;
}

/* ==================================================
   10. ページトップボタン
================================================== */
.page-top-button {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 20;
}

.page-top-button a {
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	color: #fff;
	font-size: 18px;
	text-decoration: none;
	background: rgba(16, 82, 128, 0.9);
	border-radius: 50%;
	box-shadow: 0 5px 14px rgba(0, 0, 0, 0.22);
	transition:
		opacity 0.2s ease,
		transform 0.2s ease;
}

.page-top-button a:hover {
	opacity: 0.85;
	transform: translateY(-2px);
}

.page-top-button a:focus-visible {
	outline: 3px solid var(--lp-focus);
	outline-offset: 3px;
}

/* ==================================================
   11. フッター
================================================== */
.footer {
	width: 100%;
	padding: 14px 20px;
	box-sizing: border-box;
	color: #fff;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.4;
	text-align: center;
	background: var(--lp-footer-blue);
}

.footer small {
	display: block;
}

.footer a {
	color: inherit;
	text-decoration: none;
}


/* ==================================================
   12. スクロールアニメーション
================================================== */
html.js [data-animate] {
	opacity: 0;
	will-change: opacity, transform;
	transition:
		opacity 0.75s ease,
		transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 下からふわっと表示 */
html.js [data-animate="fade-up"] {
	transform: translate3d(0, 40px, 0);
}

/* 中央から拡大して表示 */
html.js [data-animate="scale"] {
	transform: scale(0.9);
	transform-origin: center center;
}

/* 表示領域に入った状態 */
html.js [data-animate].is-visible {
	opacity: 1;
	transform: none;
}

/* 端末側で動きを減らす設定が有効な場合 */
@media (prefers-reduced-motion: reduce) {
	html.js [data-animate] {
		opacity: 1;
		transform: none;
		transition: none;
	}
}


/* 特典1〜5のsectionだけ、上下を同じ4%にする */
.image-section.bonus-1-section,
.image-section.bonus-2-section,
.image-section.bonus-3-section,
.image-section.bonus-4-section,
.image-section.bonus-5-section {
	padding-top: 4%;
	padding-bottom: 5%;
}

/* 共通設定で画像上部に付いているpaddingを特典画像だけ解除 */
.image-section.bonus-1-section>img.lp-image:not(.full-width-image),
.image-section.bonus-2-section>img.lp-image:not(.full-width-image),
.image-section.bonus-3-section>img.lp-image:not(.full-width-image),
.image-section.bonus-4-section>img.lp-image:not(.full-width-image),
.image-section.bonus-5-section>img.lp-image:not(.full-width-image) {
	padding-top: 0;
}




/* ==================================================
   13. SP表示
================================================== */
@media screen and (max-width: 767px) {

	/* SPでは移動量と拡大率を控えめにする */
	html.js [data-animate="fade-up"] {
		transform: translate3d(0, 24px, 0);
	}

	html.js [data-animate="scale"] {
		transform: scale(0.94);
	}

	/* ------------------------------
	   基本設定
	------------------------------ */
	body {
		min-width: 0;
		width: 100%;
		background-color: #fff;
		background-image: none;
	}

	.lp-main {
		width: 100%;
		max-width: none;
		margin: 0;
		box-shadow: none;
	}

	/* ------------------------------
	   メインビジュアル
	------------------------------ */
	.lp-hero {
		width: 100%;
	}

	.lp-hero-picture,
	.lp-hero-image {
		display: block;
		width: 100%;
		height: auto;
	}

	/* ------------------------------
	   画像セクション共通
	------------------------------ */
	.image-section {
		width: 100%;
		margin: 0;
		padding: 5vw 4vw;
		box-sizing: border-box;
	}

	/* 背景画像を使うセクション */
	.image-bg-section {
		padding: 6vw 4vw;
		background-position: center top;
		background-repeat: no-repeat;
		background-size: 100% 100%;
	}

	/* 通常のコンテンツ画像 */
	.image-section:not(.related-section)>img.lp-image:not(.full-width-image) {
		display: block;
		width: 100%;
		max-width: none;
		height: auto;
		margin: 0 auto;
		padding: 4%;
		box-sizing: border-box;
	}

	/* ------------------------------
	   最初の説明エリア
	------------------------------ */
	.benefits-intro-section {
		padding: 5vw 4vw 4vw;
	}

	/* CTAと5つの特典タイトルを含む場合の旧クラス対策 */
	.benefits-title-section {
		padding: 3vw 0;
	}

	.benefits-title-section>img.lp-image.full-width-image {
		width: 84% !important;
		max-width: none !important;
		margin: 0 auto !important;
		padding: 0 !important;
	}

	/* ------------------------------
	   横幅いっぱいにするタイトル画像
	------------------------------ */
	.benefits-heading-section {
		padding: 0;
	}

	.image-section>img.lp-image.full-width-image {
		display: block;
		width: 100%;
		max-width: none;
		height: auto;
		margin: 0;
		padding: 0;
	}

	/*
	 HTML上でc2-title.webpが最初のsection内に
	 入ったままの場合にも横幅いっぱいにする
	*/
	/* 5つの特典タイトルだけ、SPでも左右いっぱい */
	.benefits-title-section>img.lp-image.full-width-image {
		display: block;
		width: calc(100% + 8vw) !important;
		max-width: none !important;
		height: auto;
		margin-right: -4vw !important;
		margin-left: -4vw !important;
		padding: 0 !important;
	}



	.image-section.benefits-title-section {
		padding: 4vw 0;
	}

	.image-section.benefits-title-section>img.lp-image.full-width-image {
		width: 75% !important;
		max-width: none !important;
		margin: 0 auto !important;
		padding: 0 !important;
	}

	/* ------------------------------
	   特典1〜5
	------------------------------ */
	.bonus-1-section,
	.bonus-3-section,
	.bonus-5-section {
		padding: 5vw 4vw;
	}

	.bonus-2-section,
	.bonus-4-section {
		padding: 6vw 4vw;
	}

	/* ------------------------------
	   お得・料金・現金払い
	------------------------------ */
	.benefit-section,
	.payment-section {
		padding: 6vw 4vw;
	}

	/* 同じセクション内に画像が複数ある場合 */
	.benefit-section>.lp-image+.lp-image,
	.payment-section>.lp-image+.lp-image,
	.registration-section>.lp-image+.lp-image {
		margin-top: 4vw;
	}

	/* ==================================================
   SP：会費以上のお得 専用レイアウト
================================================== */

	/* 赤背景内の上下・左右余白 */
	.image-section.benefit-section {
		padding: 7vw 4vw;
	}

	/* SP共通で画像に付いているpaddingを解除 */
	.image-section.benefit-section>img.lp-image:not(.full-width-image) {
		display: block;
		width: 100%;
		max-width: none;
		height: auto;
		margin: 0 auto;
		padding: 0;
		box-sizing: border-box;
	}

	/* 2枚の画像の間隔 */
	.image-section.benefit-section>img.lp-image+img.lp-image {
		margin-top: 2vw;
	}



	/* ------------------------------
	   CTAボタン
	------------------------------ */
	.image-section>.cta-link {
		display: block;
		width: 86%;
		max-width: none;
		margin: 5vw auto 6vw;
	}

	/* 一番上のCTAだけ上余白をなくす */
	.image-section>.first-cta-link {
		margin-top: 0 !important;
	}

	.image-section>.cta-link>.lp-image {
		display: block;
		width: 100%;
		max-width: none;
		height: auto;
		margin: 0;
		padding: 0;
	}

	.cta-link:hover {
		opacity: 1;
		filter: none;
		transform: none;
	}

	.cta-link:active {
		opacity: 0.78;
		transform: scale(0.98);
	}

	/* ------------------------------
	   会員登録エリア
	------------------------------ */
	.registration-title-section {
		padding: 0;
	}

	.registration-title-section>img.lp-image {
		display: block;
		width: 100%;
		max-width: none;
		height: auto;
		margin: 0;
		padding: 0;
	}

	.registration-section {
		padding: 6vw 4vw;
	}

	/* ------------------------------
	   FAQ
	------------------------------ */
	.faq-section {
		padding: 0 4vw 8vw;
		box-sizing: border-box;
	}

	.faq-section .section-header {
		margin: 0 -4vw 5vw;
		padding: 3.5vw 4vw;
		font-size: 5.6vw;
		line-height: 1.25;
	}

	.faq-group+.faq-group {
		margin-top: 4vw;
	}

	.faq-category {
		gap: 1.5vw;
		margin-bottom: 2vw;
		font-size: 4.4vw;
	}

	.faq-category::before {
		width: 5vw;
		height: 5vw;
	}

	.faq-item {
		margin-bottom: 2vw;
	}

	.faq-question {
		gap: 2vw;
		min-height: 12vw;
		padding: 2.5vw 3vw;
		font-size: 3.5vw;
		line-height: 1.5;
	}

	.faq-question::before {
		flex-basis: 6vw;
		width: 6vw;
		height: 6vw;
	}

	.faq-icon {
		flex-basis: 4vw;
		width: 4vw;
		height: 2.2vw;
	}

	.faq-answer {
		padding: 3.5vw 3.5vw 4vw 12vw;
		font-size: 3.4vw;
		line-height: 1.8;
	}

	.faq-answer::before {
		top: 3.5vw;
		left: 3vw;
		width: 6vw;
		height: 6vw;
	}

	/* ------------------------------
	   関連キャンペーン
	------------------------------ */
	.related-section {
		padding: 5vw 4vw 7vw;
	}

	.related-section>a+a {
		margin-top: 3vw;
	}

	.related-section>a:hover {
		opacity: 1;
		transform: none;
	}

	.related-section>a:active {
		opacity: 0.78;
		transform: scale(0.99);
	}

	/* ------------------------------
	   お問い合わせ
	------------------------------ */
	.contact-section {
		padding: 0 0 8vw;
	}

	.contact-heading {
		margin: 0;
		padding: 3.5vw 4vw;
		font-size: 6vw;
	}

	.contact-section p {
		margin: 7vw 0 0;
		padding: 0 5vw;
		font-size: 3.8vw;
		line-height: 1.8;
		text-align: left;
	}

	/* ------------------------------
	   ページトップ
	------------------------------ */
	.page-top-button {
		right: 3vw;
		bottom: 3vw;
	}

	.page-top-button a {
		width: 10vw;
		height: 10vw;
		font-size: 3.5vw;
	}

	/* ------------------------------
	   フッター
	------------------------------ */
	.footer {
		padding: 3vw 4vw;
		font-size: 3vw;
	}
}