@charset "UTF-8";

@media only screen and (max-width : 768px) {
	/*-----------------------
スマホ・タブレット用レイアウト（768px以下スクリーン）
----------------------*/

	/*------------------
共通設定(スマホ)
-------------------*/

	/* はみ出した領域は非表示にする*/
	html {
		overflow-y: scroll;
		overflow-x: hidden;
	}

	html,
	body {
		width: 100%;
		-webkit-text-size-adjust: 100%;
		-ms-text-size-adjust: 100%;
	}

	/*画像サイズの調整*/
	img {
		height: auto;
		max-width: 100%;
	}

	/*H2タグ*/
	h2 {
		margin: 0.5em 0 0.5em;
		font-size: 1.6em;
		font-weight: bold;
		text-align: center;
	}

	/*H3タグ*/
	h3 {
		font-size: 1.4em;
		font-weight: bold;
	}


	/*--------------------------------------------------------
全体レイアウト/背景設定(スマホ・タブレット)
--------------------------------------------------------*/

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

	/*記事(ボディ)エリア*/
	.article {
		background-color: #fff;
		/*スマホの場合はカラムの線を消す*/
		border-left: none;
		border-right: none;
	}

	/*記事(ボディ)エリアの行間*/
	.article p {
		line-height: 1.8em;
	}

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

	/*カラム全体の幅はスマホの場合固定*/
	.header_inr,
	.article,
	.atcl_inr,
	.top_image_in {
		width: 100%;
		margin: 0 auto
	}

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

	.gamen_pc {
		display: none;
	}

	.gamen_rps {
		display: block;
	}

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

	/*上部固定ヘッダー全体*/
	.header {
		display: none;
	}

	/*ヘッダーロゴ*/
	.header_logo {
		float: left;
		width: 25%;
		margin-top: 2px;
		margin-left: 0px;
	}



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

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

	/* ハンバーガーメニュー作成ここから */
	/*上部固定ヘッダー全体*/

	/* floatを打ち消してflex化：ロゴ｜TEL｜≡ */
	.header_inr {
		display: flex;
		align-items: center;
		gap: 8px;
		padding: 8px 2px;
	}

	.header_logo,

	.header_menu {
		float: none;
		width: auto;
		margin: 0;
		padding: 0;
		padding-top: 0.5em;
	}

	/* 並び順と位置 */
	.header_logo {
		order: 1;
		max-width: 140px;
	}

	.header_mail {
		order: 2;
		float: none;
		margin: 0;
	}

	.hamburger {
		order: 3;
		display: flex;
		/* SPで表示 */
		flex-direction: column;
		width: 44px;
		height: 44px;
		align-items: center;
		justify-content: center;
		gap: 6px;
		border: 0;
		background: transparent;
		cursor: pointer;
		position: relative;
		z-index: 1101;
		/* メニューより前 */
		-webkit-appearance: none;
		appearance: none;
		margin-left: auto;
	}

	.hamburger span {
		display: block;
		width: 22px;
		height: 2px;
		background: #111;
		transition: transform .2s ease, opacity .2s ease;
	}

	.hamburger.is-open span:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}

	.hamburger.is-open span:nth-child(2) {
		opacity: 0;
	}

	.hamburger.is-open span:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}

	/* SPナビはオフキャンバス（右からスライド） */
	.header_menu {
		/* 競合でdisplay:noneが当たる可能性に備えて */
		display: block !important;

		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		width: 68vw;
		max-width: 360px;
		background: #fff;
		box-shadow: -8px 0 24px rgba(0, 0, 0, .12);
		transform: translateX(100%);
		transition: transform .25s ease;
		padding: 72px 24px 24px;
		z-index: 1100;
		/* ハンバーガーの一段下 */
	}

	.header_menu.open {
		transform: translateX(0);
	}

	/* パネル内の縦並び */
	.header_menu nav ul {
		display: grid;
		gap: 16px;
		font-size: 16px;
	}

	/* 右端のノッチ対策 */
	.header_inr {
		padding-right: max(12px, env(safe-area-inset-right));
	}

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


	/*-----------------------------------------------------------------------------------------------------
ファーストビュー設定
-----------------------------------------------------------------------------------------------------*/

	.top_image {
		/*スマホの際はファーストビューの背景を非表示*/
	}

	.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%;
	}

	.fv_catch {
		font-size: 1.4em;
		padding: 8px 10px;
	}

	.fv_content {
		flex-direction: column;
		gap: 0;
	}

	.top_img_text {
		width: 100%;
	}

	.top_img_img {
		width: 60%;
		margin: 0 auto;
	}

	.fv_benefits_grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 10px;
		max-width: 100%;
	}

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

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


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

	/* --------------------------
CVエリア設定
----------------------------*/

	/* CVエリア */
	.cv_flex {
		flex-direction: column;
	}

	.cv_img_left,
	.cv_btn_right {
		width: 100%;
	}


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

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


	.cv_btn_center img {
		width: 100%;
	}

	.cv_cntnr_flex {
		display: flex;
		justify-content: center;
		max-width: none;
		width: 48%;
		margin: 0 auto;
		gap: 0px;
		padding: .3em 0em 0em;
	}

	.cv_cntnr_flex img {
		width: auto;
		max-width: 100%;
		height: auto;
		object-fit: contain;
	}

	.cv_btn_center {
		margin: 0 auto;
		padding: 0.8em .3em;
	}

	/* ---------------
中盤CVエリア設定
-----------------*/


	.cv_img_left {
		width: 100%;
	}

	.cv_img_left img {
		width: 100%;
	}

	.cv_btn_right {
		width: 100%;
		text-align: center;
		padding: 0em 0.3em;
	}

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

	.cv_btn_right img {
		width: 100%;
	}



	/* --------------------------
悩みエリア設定
----------------------------*/
	.sec_GENZAN_nayami {
		padding: 30px 10px 0;
	}

	.nayami_grid {
		gap: 6px;
	}

	.nayami_card {
		font-size: 1em;
	}

	.nayami_card p {
		line-height: 1.6;
	}

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



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

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



	.solution_txt {
		font-size: .8em;
	}


	/* 悩みエリア */
	.nayami_card {
		width: calc(100% - 0px);
		max-width: 360px;
	}

	.nayami_solution {
		clip-path: none;
	}

	/* --------------------------
減算ガードとはエリア設定
----------------------------*/
	.sec_GENZAN_about {
		background: url(../images/haikei_GENSANGUARD_about.png) center no-repeat #fff;
		background-size: cover;
		padding: 30px 10px;
	}

	.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: 1em;
	}

	.about_img {
		width: 35%;
	}

	.about_img img {
		width: 100%;
	}

	/* 減算ガードとは */
	.about_inr {
		flex-direction: column;
	}

	.about_text {
		width: 100%;
	}

	.about_img {
		width: 80%;
		margin: 0 auto;
	}

	/* --------------------------
理由エリア設定
----------------------------*/

	.reason_header {
		margin-bottom: 0px;
	}


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


	.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;
	}


	/* 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;
	}

	/* 理由エリア */
	.reason_cntnr {
		flex-direction: column-reverse;
		padding-top: 1em;
	}

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

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

	.reason_img_wrap {
		width: 240px;
		margin: 0 auto !important;
	}

	.reason_box {
		width: 100%;
		padding: 20px 20px;
	}


	/* 3つの安心 */
	.relived_grid {
		flex-direction: column;
		align-items: center;
	}

	.relived_item {
		width: 100%;
		max-width: 280px;
	}


	/* --------------------------
料金エリア設定
----------------------------*/
	/* 料金 */
	.price_grid {
		flex-direction: column;
		align-items: center;
	}

	.price_card {
		width: 100%;
		max-width: 320px;
	}

	/* --------------------------
比較エリア設定
----------------------------*/


	/*テーブルタグ*/
	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.table-style01 th,
	table.table-style01 td {
		text-align: left;
		vertical-align: middle;
	}

	/*テーブルをブロック表示に*/

	.table-style01,
	.table-style01 tr,
	.table-style01 th,
	.table-style01 td {
		display: block;
	}

	.table-style01 th,
	.table-style01 td {
		float: left;
		width: 100% !important;
		box-sizing: border-box;
	}

	.table-style01 {
		zoom: 1;
	}

	.table-style01:after {
		content: '';
		display: block;
		clear: both;
		height: 0;
	}

	/*画像化したサブヘッドを横に広げる*/
	h2.subhead {
		margin: 0em -2em;
	}

	/*よくある質問(文章ver.)*/
	.box_qa {
		background-color: #efefef;
		padding: 1em;
	}

	.box_qa_q {
		background-color: #fff;
		padding: 0.2em 0.8em 0.5em 0.5em;
		border-bottom: 1px solid #ccc;
		font-size: 1em;
		font-weight: bold;
		color: #CD3B3E;
	}

	.box_qa_a {
		background-color: #fff;
		padding: 0.5em 1em;
		line-height: 1.8;
	}

	.box_qa_q p {
		text-indent: -2em;
		margin-left: 2.5em;
	}

	.box_qa_a p {
		text-indent: -2em;
		margin-left: 2.3em;
		line-height: 1.7em
	}








	/*--------------------------------------------------------
段落・リスト・テーブル設定
--------------------------------------------------------*/

	/* 比較テーブル */
	.compare_inner {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.compare_table {
		min-width: 720px;
	}

	.compare_table th,
	.compare_table td {
		font-size: 0.78em;
		padding: 10px 8px;
	}

	/* --------------------------
QAエリア設定
----------------------------*/

	/*問い合わせエリア*/

	.box_entry {
		background-color: #125fa3;
		padding: 1em 1em;
	}

	.entry_inr {
		background-color: #fff;
		padding: 1em 1em;
	}

	.entry_tel {
		width: 100%;
		float: none;
		margin-top: 0.5em;
	}

	.entry_mail {
		width: 100%;
		float: none;
		margin-top: 0.5em;
	}





	/*よくある質問(アコーディオンver.)*/

	.sec_GENZAN_qa .faq dt {
		font-size: 0.88em;
	}


















	/*フォームエリア*/

	/*全体*/
	.mailform {
		background-color: #fff;
		margin: 0em 0em 1em;
		padding: 1em 0em 1.5em;
		box-shadow: 0px 0px 1px #594a42;
	}

	.input {
		margin: 0em 0em 0em;
		padding: 0em 2em;
		font-color: #000;
	}

	.input_style {
		width: 100%;
		height: 60px;
		font-size: 100%;
		margin-bottom: 0.5em;
		text-align: center;
		color: #7b7b7b;
	}

	input[type="image"] {
		width: 100%;
		text-align: center;
		margin: 0em auto;
	}

	.caution {
		margin: 0em;
		padding: 0;
		font-size: 90%;
		color: #990000;
		text-align: center;
	}

	/*スライダー*/
	.loopSliderWrap {
		top: 0;
		left: 0;
		height: 200px;
		overflow: hidden;
		position: absolute;
	}

	.loopSlider {
		margin: 0 auto;
		width: 100%;
		height: 200px;
		text-align: left;
		position: relative;
		overflow: hidden;
	}

	.loopSlider ul {
		height: 200px;
		float: left;
		overflow: hidden;
	}

	.loopSlider ul li {
		width: 250px;
		height: 200px;
		float: left;
		display: inline;
		overflow: hidden;
	}

	.loopSlider ul li img {
		width: 100%;
	}




	.section_01 {
		padding: 1.5em 0.5em;
	}

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

	.footer {
		padding: 2em 0em 2em;
		font-size: 1em;
	}

	/*スマホ用下部固定メニュー*/

	.fix_menu_smartphone {
		display: block;
		width: 100%;
		position: fixed;
		bottom: 0px;
		left: 0px;
		z-index: 10000;
	}

	.fix_menu_smartphone img {
		width: 100%;
	}




}