@charset "UTF-8";
/*------------------------------
PC用レイアウト（768px以上スクリーン）
------------------------------*/

/*----------
共通設定(PC)
-----------*/

/* 初期スタイル調整 */
* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* body全体の初期スタイル調整 */
body {
	font-size: 62.5%;
	line-height: 1.5;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Arial, "メイリオ", Meiryo, sans-serif;
	color: #000;
	background-color: #fff;
	-webkit-text-size-adjust: 100%;
}

/*リンク文字の設定*/
a {
	text-decoration: underline;
}

a:link,
a:visited {
	color: #39f;
}

a:hover,
a:active {
	color: #f60;
}

p {
	margin: 0 !important;
	padding: 0 !important;
	font-feature-settings: "palt";
}

section {
	clear: both;
	/* 配置設定をクリアにしておくため（初期で設定している左右配置をクリアにする） */
	overflow: auto;
	/* 要素の内容が要素自体の領域を超えた場合「aute」 */
}

/* -------------------------------------
見出しタグ設定（PC)
--------------------------------------*/
h2 {
	font-size: 1.8em;
	font-weight: bold;
	text-align: center;
}

/* 
h2 {
  font-feature-settings: "palt";
  letter-spacing: 0;
}
 */

/*
 font-feature-settings: "palt"; 和文の文字間（特に全角記号）をプロポーショナルにして、自然に詰める「（）」の余白詰めなど
  letter-spacing: 0;文字全体の字間を「標準値（0）」に戻す。
 */
h3 {
	font-size: 1.6em;
	font-weight: bold;
}

/*カラムが狭くなってもテーブルタグがはみ出ないようにする*/
table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	table-layout: fixed;
	word-break: break-all;
	word-wrap: break-word;
}

/* <section> 間の隙間（margin）をなくすため */
h2,
p {
	margin-top: 0;
	margin-bottom: 0;
}


/* 自動カーニング */
.selector {
	font-feature-settings: "palt";
}


/*--------------------------------------------------------
全体レイアウト/背景設定（PC）
--------------------------------------------------------*/

/*全体エリア(全体背景の設定はここ)*/
.main {
	background-color: #f2f2f2;
}

/*記事(ボディ)エリア*/
.atcl_inr {
	background-color: #fff;
}

/*記事(ボディ)エリアの行間*/
.atcl_inr p {
	line-height: 1.6em;
	margin-bottom: 1em;
}

/*記事(ボディ)エリアのフォントサイズ*/
.article {
	font-size: 1.7em;
}

/*カラム全体の幅を変更する*/
.header_inr,
.atcl_inr,
.top_image_in {
	width: 950px;
	margin: 0 auto
}

/*PC画面とスマホ画面の切り替え*/

.gamen_pc {
	display: block;
}

.gamen_rps {
	display: none;
}

/*--------------------------------------------------------
上部固定ヘッダー設定
--------------------------------------------------------*/

/*上部固定ヘッダー全体*/
.header {
	position: sticky;
	/* ポジションがピタッとくっつく設定 */
	position: -webkit-sticky;
	top: 0;
	z-index: 5000;
	background-color: #fff;
	border-bottom: 1px;
	overflow: auto;
}

/* ヘッダー内部をカラム幅にする */
.header_inr {
	max-width: 950px;
	margin: 0 auto;
	overflow: hidden;
}

/*ヘッダーロゴ*/
.header_logo {
	float: left;
	width: 15%;
	margin: 0.5em 0em 0em;
}



/*ヘッダー内の画像はエリア幅に合わせる*/
.header_logo img,
.header_tel img,
.header_mail img {
	width: 100%;
}


/* ハンバーガーメニュー作成ここから */
/*上部固定ヘッダー全体*/
.header {
	position: sticky;
	/* ポジションがピタッとくっつく設定 */
	position: -webkit-sticky;
	top: 0;
	z-index: 5000;
	background-color: #fff;
	border-bottom: 1px;
	overflow: auto;
}

/* ヘッダー内部をカラム幅にする */
.header_inr {
	max-width: 1140px;
	margin: 0 auto;
	overflow: hidden;
	display: flex;
}

/*ヘッダーロゴ*/
.header_logo {
	float: left;
	max-width: 20%;
	margin: 1em 0em 0.3em;
}

/*ヘッダー メニュー*/
.header_menu nav ul {
	display: flex;
	gap: 20px;
	/* 各メニューの間隔 */
	list-style: none;
	/* ・を消す */
	margin: 0;
	padding: 0;
}

.header_menu nav li {
	display: inline-block;
}

.header_menu a {
	text-decoration: none;
	color: #222;
	font-size: 1.1em;
	transition: 0.3s;
}

.header_menu a:hover {
	opacity: 0.7;
	color: #004ec2;
}

.header_menu {
	float: right;
	width: 60%;
	display: flex;
	justify-content: flex-end;
	align-items: right;
	font-size: 1.3em;
	margin: 1.6em 0 0 0;
	padding: 0em 3em 1em 0em;

}

.hamburger {
	display: none;
	background: transparent;
	border: 0;
	outline: 0;
}


/*ヘッダー 問い合わせボタン*/
/* .header_mail {
	width: 18%;
	float: right;
	margin: 0.8em 0.3em 0em;
} */

/*ヘッダー内の画像はエリア幅に合わせる*/
.header_logo img {
	width: 100%;
}

.sticky_cta_wrap {
	max-width: 240px;
	padding-top: 1.1em;
}

.sticky_cta_wrap img {
	width: 100%;
}

/* ハンバーガーメニュー作成ここまで */


/*----- スクロール設定 -----*/
/* スムーズスクロール */
html {
	scroll-behavior: smooth;
}

:root {
	--header-h: 90px;
}

/* ヘッダー実高さに合わせて調整 */

section[id] {
	scroll-margin-top: calc(var(--header-h) + 10px);
}


/*--------------------------------------------------------
ファーストビュー設定
--------------------------------------------------------*/
/* ----- h1の消去 ----- */
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	border: 0;
	white-space: nowrap;
}



/* --------------------------
FVエリア設定
----------------------------*/
.top_image {
	background: url(../images/haikei_GENSANGUARD_FV.png) center top / cover no-repeat;
	padding-bottom: 0;
	padding-top: 2em;
}

.top_image_inr {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px 0;
}

.fv_catch {
	background-color: #fff;
	width: 100%;
	text-align: center;
	color: #0459a7;
	font-size: 2.2em;
	padding: 4px 0 !important;
	font-weight: bold;
}

.fv_content {
	display: flex;
	align-items: center;
	gap: 60px;
	padding-bottom: 1em;
}

.top_img_text {
	width: 65%;
	padding-top: 3em;
}

.top_img_text img {
	width: 100%;
	display: block;
	margin-bottom: 12px;
}

.FV_title{
	font-size: 2.4em;
	color: #fff;
	font-weight: bold;
	padding-bottom: 1em;
	text-align: center;
}

.FV_title p {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.4em;
}

.FV_title p::before,
.FV_title p::after {
	content: "ー";
	flex-shrink: 0;
}


.fv_benefits_grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	padding-top: 1em;
	max-width: 500px;
	margin: 0 auto;
}

/* 1枚目：2列をまたいで中央に配置 */
.fv_benefits_grid img:first-child {
	grid-column: 1 / -1;
	width: 50%;
	margin: 0 auto;
	display: block;
}

/* 2枚目・3枚目：各1列 */
.fv_benefits_grid img:not(:first-child) {
	width: 100%;
}

.top_img_img {
	width: 35%;
}

.top_img_img img {
	width: 100%;	
	height: auto;

}
/* ---------------
FV下CVエリア設定
-----------------*/

.cv_cntnr{
	background-color: #fff;
	border: 12px double #0459a7;
	text-align: center;
	padding: .4em 0em 1.5em;
}

.cv_btn_center{
	max-width: 450px;
	padding: 1em 0em 0em;
}

.cv_btn_center img{
width: 100%;
}

.cv_cntnr_flex{
	display: flex;
	justify-content: center;
	max-width: 400px;
	margin: 0 auto;
	gap: 20px;
	padding: 1em 0em 0em;
}
.cv_cntnr_flex img{
	width: auto;
	max-width: 100%;
	height: auto;
	object-fit: contain;
}

.cv_btn_center{
	margin: 0 auto;
	text-align: center;
}
/* --------------------------
CVエリア設定
----------------------------*/
.cv_area {
	background-color: #0459a7;
	padding: .8em 0em 1em;
}

.cv_inr {
	max-width: 900px;
	margin: 0 auto;
}

.cv_ttl {
	color: #fff;
	font-size: 1.8em;
	font-weight: bold;
	text-align: center;
	margin-bottom: 8px !important;
}

.cv_dots {
	display: inline-block;
	background-image: radial-gradient(circle at center, #ffe423 20%, transparent 20%);
	background-position: top left;
	background-repeat: repeat-x;
	background-size: 0.94em 0.35em;
	padding-top: 0.2em;
}

.cv_em {
	color: #ffe423;
}

.cv_sub {
	color: #fff;
	text-align: center;
	margin-bottom: 24px !important;
	font-weight: bold;
}


/* ---------------
中盤CVエリア設定
-----------------*/
.cv_flex {
	display: flex;
	align-items: center;
	gap: 24px;
}

.cv_img_left {
	width: 55%;
}

.cv_img_left img {
	width: 100%;
}

.cv_btn_right {
	width: 45%;
	text-align: center;
}

.cv_btn_sub {
	color: #ccc;
	font-size: 0.82em;
	margin-bottom: 6px !important;
}

.cv_btn_right img {
	width: 100%;
}

/* --------------------------
マイクロコピー
----------------------------*/
.microcopy {
	position: relative;
	display: inline-block;
	color: #fff;
	font-weight: bold;
	padding: 0 3.5em;
	margin-bottom: 4px !important;
	letter-spacing: 0.05em;
}

.microcopy::before {
	content: "";
	position: absolute;
	left: -18px;
	top: 50%;
	transform: translateY(-50%) rotate(-205deg);
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-bottom: 32px solid #FFE000;
}

.microcopy::after {
	content: "";
	position: absolute;
	right: -18px;
	top: 50%;
	transform: translateY(-50%) rotate(205deg);
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-bottom: 32px solid #FFE000;
}

.microcopy_num {
	font-size: 1.8em;
	line-height: 1;
	vertical-align: baseline;
}


/* --------------------------
悩みエリア設定
----------------------------*/
.sec_GENZAN_nayami {
	background-color: #f3f6fe;
	padding: 60px 0px 0;
}

.nayami_ttl {
	font-size: 1.8em;
	font-weight: bold;
	color: #222;
	text-align: center;
	margin: 0 0 16px !important;
	padding-bottom: 16px;
	position: relative;
}

.nayami_ttl_sub {
	display: block;
	font-size: 0.65em;
	font-weight: bold;
	margin-bottom: 4px;
}

.nayami_ttl::after {
	content: "";
	display: block;
	width: 60px;
	height: 4px;
	background: #0459a7;
	margin: 12px auto 0;
}

.nayami_grid {
	max-width: 900px;
	margin: 0 auto 40px;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	padding-bottom: .2em;
}

.nayami_card {
	background: #fff;
	border: 2px solid #1a7bc4;
	border-radius: 8px;
	padding: 22px 18px;
	width: calc(50% - 20px);
	text-align: center;
	font-size: 0.9em;
	min-width: 200px;
}

.nayami_card p {
	line-height: 1.6;
}

.nayami_em {
	color: #176fb0;
	font-weight: bold;
	font-size: 1.3em;
}

.nayami_solution {
	background: linear-gradient(90deg, #015eea 0%, #028dd2 100%);
	padding: 60px 0px 20px;
	text-align: center;
	margin-top: -40px;
}

.solution_lead {
	font-size: 1.3em;
	color: #fff;
	margin-bottom: 2px !important;
	font-weight: bold;
}

.solution_ttl {
	font-size: 1.8em;
	font-weight: bold;
	color: #ffe423;
	margin-bottom: 16px !important;
}

.solution_line {
	width: 60px;
	height: 3px;
	background: #ffe423;
	margin: 0 auto 24px;
}

.solution_txt {
	font-size: 1.1em;
	color: #fff;
	font-weight: 500;
}
/* --------------------------
減算ガードとはエリア設定
----------------------------*/
.sec_GENZAN_about {
	background: url(../images/haikei_GENSANGUARD_about.png) center / contain no-repeat #fff;
	padding: 60px 20px;
}

.about_inr {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 40px;
}

.about_text {
	width: 65%;
}

.about_ttl {
	font-weight: bold;
	color: #1088da;
	text-align: left;
	margin: 0 0 20px !important;
	border: none;
	padding: 0;
}

.about_body {
	line-height: 1.9;
	color: #000;
	text-shadow: 0 0 6px #fff, 0 0 12px #fff;
	font-size: 1.1em;
	font-weight: 500;
}

.about_img {
	width: 35%;
}

.about_img img {
	width: 100%;
}

/* --------------------------
理由エリア設定
----------------------------*/
.sec_GENZAN_reason {
	background: #fff;
	padding: 30px 20px;
}

.reason_header {
	text-align: center;
	margin-bottom: 28px;
}

.reason_section_sub {
	font-size: 1.4em;
	font-weight: bold;
}

.reason_section_ttl {
	font-size: 2.0em;
	font-weight: bold;
	color: #222;
	margin: -0.6em 0 10px !important;
	border: none;
	padding: 0;
	text-align: center;
}

.reason_section_ttl span {
	font-size: 2em;
}

.reason_line {
	width: 60px;
	height: 4px;
	background: #d4a014;
	margin: 0 auto;
}

.reason_cntnr {
	max-width: 860px;
	margin: 0 auto 36px;
	display: flex;
	align-items: center;
}

.reason_cntnr--right .reason_box {
	order: 1;
}

.reason_cntnr--right .reason_img_wrap {
	order: 2;
}

.reason_img_wrap {
	width: 240px;
	flex-shrink: 0;
	position: relative;
	z-index: 2;
}

.reason_img_wrap img {
	width: 100%;
	display: block;
}

.reason_img_wrap--left {
	margin-right: -24px;
}

.reason_img_wrap--right {
	margin-left: -24px;
}

.reason_box {
	background: #0459a7;
	color: #fff;
	padding: 28px 32px;
	flex: 1;
	border-radius: 6px;
	position: relative;
	z-index: 1;
	max-width: 650px;
}

.reason_nnbr {
	font-size: 0.9em;
	color: #0459a7;
	font-weight: bold;
	margin-bottom: -0.6em !important;
}

.nnbr_cntnr {
	display: inline-block;
	background-color: #fff;
	padding: .4em 1.4em .4em .6em;
	clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 100%, 0 100%);
}

.reason_mds {
	color: #fff;
	margin-bottom: 14px !important;
	border-bottom:
		solid 2px #fff;
}

.reason_text {
	line-height: 1.85;
}

/* 3つの安心 */
.relived_section {
	padding: 40px 20px;
	max-width: 900px;
	margin: 0 auto;
	border-radius: 8px;
	text-align: center;
}

.relived_grid {
	display: flex;
	justify-content: center;
	gap: 24px;
}

.relived_item {
	background: #1a7bc4;
	border-radius: 8px;
	padding: 20px 16px 10px;
	width: 220px;
	text-align: center;
	color: #fff;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.relived_num {
	font-size: 1.4em;
	font-weight: bold;
	margin-bottom: 4px;
	align-self: flex-start;
}

.relived_item img {
	margin-top: auto;
}

.relived_item::before {
	font-family: 'Bebas Neue', sans-serif;
	position: absolute;
	top: -8px;
	font-size: 5em;
	line-height: 1;
	color: rgba(255, 255, 255, 0.18);
	pointer-events: none;
	align-self: flex-start;
}

.relived_item:nth-child(1)::before {
	content: "01";
}

.relived_item:nth-child(2)::before {
	content: "02";
}

.relived_item:nth-child(3)::before {
	content: "03";
}


.relived_label {
	font-size: 1.2em;
	margin-bottom: 4px !important;
	font-weight: bold;
}

.relived_item img {
	width: 200px;
	height: auto;
}

/* --------------------------
料金エリア設定
----------------------------*/
.sec_GENZAN_price {
	background: #fff;
	padding: 60px 20px;
}

.price_ttl {
	text-align: center;
	color: #0459a7;
	margin: 0 0 10px !important;
	border: none;
	padding: 0;
}

.price_ttl::after {
	content: "";
	display: block;
	width: 60px;
	height: 4px;
	background: #0459a7;
	margin: 12px auto 0;
}

.price_sub {
	text-align: center;
	color: #333;
	font-size: 0.88em;
	margin-bottom: 32px !important;
}

.price_grid {
	max-width: 760px;
	margin: 0 auto;
	display: flex;
	gap: 20px;
	justify-content: center;
}

.price_card {
	background: #fff;
	border: 2px solid #1a7bc4;
	border-radius: 8px;
	padding: 24px 16px;
	width: 220px;
	text-align: center;
}

.price_card--main {
	border-color: #d4a014;
	background: #fffbe6;
}

.price_label {
	background: #1a7bc4;
	color: #fff;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 0.82em;
	margin-bottom: 14px;
	display: inline-block;
}

.price_card--main .price_label {
	background: #d4a014;
}

.price_val {
	font-size: 1.5em;
	font-weight: bold;
	color: #1a7bc4;
	margin-bottom: 8px;
}

.price_card--main .price_val {
	color: #d4a014;
}

.price_note {
	font-size: 0.82em;
	color: #666;
}

/* --------------------------
比較エリア設定
----------------------------*/
.sec_GENZAN_table {
	background: linear-gradient(90deg, #015eea 0%, #028dd2 100%);
	padding: 2em 0em 2.5em;
}

.compare_wrap {
	max-width: 900px;
	margin: 0 auto;
	overflow-x: auto;
}

.table_ttl {
	text-align: center;
	color: #fff;
	padding: 18px;
	margin: 0 !important;
	border: none;
}

.table_ttl::after {
	content: "";
	display: block;
	width: 60px;
	height: 2px;
	background: #fff;
	margin: 12px auto 0;
}

.compare_inner {
	border: 2px solid #1a7bc4;
	border-top: none;
}

.compare_table {
	width: 100%;
	border-collapse: collapse;
	margin: 0;
	border: none;
	border-top: none;
}

.compare_table th,
.compare_table td {
	padding: 14px 16px;
	text-align: center;
	border: 2px solid #f3f6fe;
	font-size: .9em;
}

.col_item {
	width: 20%;
	background: #fff;
	color: #333;
}

.col_gensan {
	width: 40%;
	background: #fff;
	color: #0459a7;
	font-size: 1.3em !important;
	font-weight: bold;
	border: #0459a7 solid 6px !important;
}

.col_other {
	width: 40%;
	background: transparent;
	color: #0459a7;
	font-size: 1.0em;
	font-weight: bold;
	background-color: #fff;
}

.row_label {
	background: #f3f6fe;
	font-weight: bold;
	text-align: left;
	color: #333;
}

.gensan_cell {
	background: #0459a7;
	color: #fff;
	font-weight: bold;
	border: #0459a7 solid 6px !important;
}

.compare_table tr:last-child .gensan_cell {
	border-bottom: 2px solid #0459a7;
}

.other_cell {
	background: #fff;
	color: #555;
}

/* --------------------------
QAエリア設定
----------------------------*/
.sec_GENZAN_qa {
	background: #fff;
	padding: 60px 20px;
}

.qa_ttl {
	font-size: 1.6em;
	font-weight: bold;
	text-align: center;
	color: #333;
	margin: 0 0 10px !important;
	border: none;
	padding: 0;
}

.qa_ttl::after {
	content: "";
	display: block;
	width: 60px;
	height: 4px;
	background: #333;
	margin: 12px auto 0;
}

.sec_GENZAN_qa .faq {
	max-width: 760px;
	margin: 28px auto 0;
}

.sec_GENZAN_qa .faq dl {
	border: 1px solid #b0c8e8;
	border-radius: 4px;
	margin-bottom: 10px;
}

.sec_GENZAN_qa .faq dt {
	font-size: 0.92em;
	background: #fff;
	color: #222;
	border-bottom: none;
}

.sec_GENZAN_qa .faq dd {
	background: #f5faff;
	color: #444;
	font-size: 0.88em;
	line-height: 1.8;
}




/*-------------
テーブル設定
--------------*/
table {
	width: 100%;
	border-collapse: collapse;
	border-top: 1px solid #959595;
	border-left: 1px solid #959595;
	margin-top: 1em;
	margin-bottom: 1em;
}

th,
td {
	padding: 0.5em;
	border-right: 1px solid #959595;
	border-bottom: 1px solid #959595;
}

th {
	background-color: #f0f0f0;
	font-weight: bold;
	text-align: left;
}

td {
	background-color: #fff;
	text-align: left;
}

.table_style_01 {
	text-align: left;
	vertical-align: middle;
}

table.table-style01 th,
table.table-style01 td {
	text-align: left;
	vertical-align: middle;
}




/*------------
よくある質問(アコーディオンver.)
-------------*/
.faq {
	max-width: 800px;
	margin: 0 auto;
}

.faq dl,
.faq dt,
.faq dd {
	margin: 0;
	padding: 0;
}

.faq dl+dl {
	margin-top: 1rem;
}

.faq dt,
.faq dd {
	padding: 10px;
}

.faq dl {
	position: relative;
	overflow: hidden;
}

.faq dl>input {
	display: none;
}

.faq dt {
	position: relative;
	z-index: 1;
	padding-right: 40px;
	padding-left: 2.5em;
	cursor: pointer;
	background: #e6f3ff;
	transition: .4;
}

.faq dd {
	position: absolute;
	visibility: hidden;
	transform: translateY(-100%);
	transition: .4s;
	background: #f0f8ff;
	border-top: none;
	padding-left: 2.5em;

}

.faq dl>input:checked+label+dd {
	position: relative;
	visibility: visible;
	transform: translateY(0);
}

.faq dt::before {
	content: '';
	position: absolute;
	width: 20px;
	height: 3px;
	top: 50%;
	right: 10px;
	background: #333;
	transform: translateY(-50%);
}

.faq dt::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 10px;
	width: 20px;
	height: 3px;
	background: #333;
	transition: .4s;
	transform: translateY(-50%) rotate(90deg);
}

.faq dl>input:checked+label>dt::after {
	transform: translateY(-50%) rotate(180deg);
}

.faq dt span,
.faq dd span {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #459be6;
	color: #fff;
	top: 50%;
	left: .5em;
	width: 1.5em;
	height: 1.5em;
	transform: translateY(-50%);
}


.faq dd span {
	top: 10px;
	transform: translateY(0);
	background-color: #e60000;
}


/*-------------
フォームエリア
--------------*/
.sec_form {
	background-color: #0459a7;
	padding: 2em 0;
}

.inq_ttl {
	font-size: 1.6em;
	font-weight: bold;
	text-align: center;
	color: #fff;
	margin: 0 0 10px !important;
	border: none;
	padding: 0;
}
.sec_form .atcl_inr{
max-width: 770px;
}
.inq_ttl::after {
	content: "";
	display: block;
	width: 60px;
	height: 4px;
	background: #fff;
	margin: 12px auto 0;

}

.inq-wrap {
	max-width: 700px;
	margin: 0 auto;
	padding: 32px 4px 40px;
	border-radius: 10px;
	margin-top: 1.5em;
}


.fld-label {
	display: block;
	margin: 16px 0 6px;
	color: #4b4b4b;
	font-weight: 700;
	font-size: clamp(13px, 2.1vw, 16px);
}

.req {
	color: #666;
	font-weight: 700;
}

.fld input,
.fld select,
.fld textarea {
	width: 100%;
	background: #ffffff;
	border: 1.5px solid #c9c9c9;
	border-radius: 6px;
	padding: 14px;
	font-size: 16px;
	color: #333;
	outline: none;
	transition: border-color .2s, box-shadow .2s;
}

.fld textarea {
	resize: vertical;
}

.fld input:focus,
.fld select:focus,
.fld textarea:focus {
	border-color: #9aa6b2;
	box-shadow: 0 0 0 3px rgba(56, 132, 255, .15);
}

.agree {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 20px 0 24px;
	font-size: 14px;
	color: #444;
}

.agree a {
	color: #1a7fd9;
	text-decoration: underline;
}

.agree input[type="checkbox"] {
	width: 18px;
	height: 18px;
	accent-color: #0459a7;
}

.btn-submit {
	display: block;
	width: min(320px, 85%);
	margin: 0 auto;
	padding: 1.2rem 2.5rem;
	border-radius: 4px;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	cursor: pointer;
	transition: all 0.3s ease;
	background: linear-gradient(135deg, #e8762a, #f5a623);
	color: #fff;
	border: none;
}

.btn-submit:hover {
	opacity: 0.85;
	transform: translateY(-2px);
}

.btn-submit:active {
	transform: translateY(0);
}


/*==================================================
スライダーのためのCSS※JQueryを使用
===================================*/
.slider {
	width: 94%;
	/* 横幅94%で左右に余白を持たせて中央寄せ */
	margin: 0 auto;
}

.slider img {
	width: 60vw;
	/* スライダー内の画像を60vwにしてレスポンシブ化 */
	height: auto;
}

.slider .slick-slide {
	transform: scale(0.8);
	/* 左右の画像のサイズを80%に */
	transition: all 0.5s;
	/* 拡大や透過のアニメーションを0.5秒で行う */
	opacity: 0.5;
	/* 透過50% */
}

.slider .slick-slide.slick-center {
	transform: scale(1);
	/* 中央の画像のサイズだけ等倍に */
	opacity: 1;
	/* 透過なし */
}

/* 矢印の設定 */

/* 戻る、次へ矢印の位置 */
.slick-prev,
.slick-next {
	position: absolute;
	/* 絶対配置にする */
	top: 50%;
	/* 矢印の垂直位置を中央に */
	cursor: pointer;
	/* マウスカーソルを指マークに */
	outline: none;
	/* クリックをしたら出てくる枠線を消す */
	border-top: 2px solid #666;
	/* 矢印の色 */
	border-right: 2px solid #666;
	/* 矢印の色 */
	height: 15px;
	width: 15px;
}

.slick-prev {
	left: -2%;
	/* 戻る矢印の位置 */
	transform: rotate(-135deg);
}

.slick-next {
	right: -2%;
	/* 次へ矢印の位置 */
	transform: rotate(45deg);
}

/* ドットナビゲーションの設定 */

.slick-dots {
	text-align: center;
	margin: 20px 0 0 0;
}

.slick-dots li {
	display: inline-block;
	margin: 0 5px;
}

.slick-dots button {
	color: transparent;
	outline: none;
	width: 8px;
	/* ドットボタンのサイズ */
	height: 8px;
	/* ドットボタンのサイズ */
	display: block;
	border-radius: 50%;
	background: #ccc;
	/* ドットボタンの色 */
}

.slick-dots .slick-active button {
	background: #333;
	/* ドットボタンの現在地表示の色 */
}




/*---------
フッター部分
-------*/

.footer {
	background: #0459a7;
	padding: 2em 0 0.5em;
	text-align: center;
	font-size: 1.4em;
	color: #fff;
}

.footer a {
	color: #fff;
}

/*スマホ用下部固定メニュー*/
.fix_menu_smartphone {
	display: none;
}

@media screen and (max-width: 375px) and (max-height: 700px) {
	h2 {
		font-size: 1.3em;
	}

	p {
		font-size: .9em;
	}
}


/* --------------------------
プライバシーポリシーエリア設定
----------------------------*/

.main_privacy{
		background-color: #fff;
		padding: 2em 0em 3em;
}

.sec_privacy{
	background-color: #fff;
	max-width: 770px;
	margin: 0 auto;
	padding: .5em .8em;

}

/* --------------------------
特商法エリア設定
----------------------------*/

.main_law{
		background-color: #fff;
		padding: 2em 0em 3em;
}

.sec_law{
	background-color: #fff;
	margin: 0 auto;

}

/* --------------------------
サンクスページエリア設定
----------------------------*/
.main_thanks{
		background-color: #fff;
		padding: 2em 0em 3em;
}
.sec_thanks{
	background-color: #fff;
	max-width: 970px;
	margin: 0 auto;
	padding: .5em .8em;
	text-align: center;
}
.mail_icon{
	max-width: 350px;
	margin: 0 auto;
}
.mail_icon img{
	width: 100%;
}