@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)
--------------------------------------*/


/*カラムが狭くなってもテーブルタグがはみ出ないようにする*/
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";
}

html {
	scroll-behavior: smooth;
}

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

.main {
	background: url(../images/haikei_green.png);
	background-repeat: repeat;
	background-size: 300px auto;
	/* ← 横幅だけ小さく指定 */
}

/*記事(ボディ)エリア*/
.atcl_inr {
	background-color: #fff;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
}

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

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

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

.footer_inr {
	width: 550px;
	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: 25%;
	margin: 1.5em 0em 0em;
}

/*ヘッダー 電話ボタン*/
.header_tel {
	width: 25%;
	float: right;
	margin: 0.5em 0.5em 0em;
}

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

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

/*------------------
ファーストビュー設定
-------------------*/
.nav_links {
  display: flex;
  justify-content: space-between; /* 均等に並べる */
  margin: 0 auto;
  background-color: #2c472d;
  font-size: 1.4em;
}

.nav_links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25%; /* ← 4等分にする */
  padding: 1em 0;
  background-color: #2c472d;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  border-right: 1px solid #fff;
  transition: background-color 0.3s ease;
}

.nav_links a:last-child {
  border-right: none;
}

.nav_links a:hover {
  background-color: #446d47;
}

.top_image_in img {
	width: 100%;
}



/* --------------------------
セクション設定
----------------------------*/

.ohana_sec_title {
	text-align: center;
	padding-top: 0.5em;
}

.ohana_sec_title img {
	width: 60%;
}

.shiny-btn {
	position: relative;
	display: block;
	border-radius: 10px;
	overflow: hidden;
}

/* 光のエフェクト */
.shiny-btn::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 200%;
	height: 100%;
	background: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 70%);
	transform: rotate(25deg);
	animation: shiny-effect 2.5s infinite;
}

/* 光のアニメーション */
@keyframes shiny-effect {
	0% {
		left: -100%;
	}

	100% {
		left: 100%;
	}
}

/*--- 利用者数エリア ---*/

.sec_ohana_riyousya {
	background: url(../images/haikei_ohana_riyousya_10000.png);
	padding-bottom: 2em;
}

.riyousya_img {
	text-align: center;

}

.riyousya_img img {
	width: 100%;
}



.riyousya_btn_area {
	display: flex;
	justify-content: center;
	gap: 40px;
	padding: 0em 0.5em;

}

.riyousya_btn_area img {
	width: 100%;
}



/*--- 悩みエリア ---*/
.sec_ohana_nayami {
	background: url(../images/haikei_ohana_nayami_img.png);
	position: relative;
	z-index: 1;
	overflow: visible;
}

.nayami_img img {
	width: 100%;
}

/*--- 5つの特徴エリア ---*/
/* 三角形 */
.arrow-down {
	width: 0;
	height: 0;
	margin: 0 auto;
	position: absolute;
	bottom: -1px;
	/* 親要素の下端にぴったり付ける */
	left: 0;
	right: 0;
	border-left: 100px solid transparent;
	border-right: 100px solid transparent;
	border-top: 30px solid #d64541;
	z-index: 2;
}

/* 悩みエリア */


/* 特徴エリア */
.sec_ohana_tokutyou {
	background: url(../images/haikei_ohana_tokutyou.png);
	padding-top: 0em;
	/* 三角形の高さぶん余白をとる */
	position: relative;
	z-index: 0;
	padding-bottom: 1.5em;
}

.tokutyou_cntnr {
	display: flex;
	max-width: 850px;
	margin: 0 auto;
	background-color: #fff;
	padding: 1em 1.5em;
	gap: 20px;
	margin-bottom: 1.5em;
}

.tokutyou_img img {
	max-width: 300px;
}

.tokutyou_text {
	max-width: 550px;
}

.tokutyou_texe_mds {
	border-bottom: 2px solid #e1cf97;
}

.tokutyou_text img {
	width: 100%;
}

/*--- 料金エリア ---*/
.sec_ohana_price {
	background: url(../images/haikei_ohana_price.png);
	padding-bottom: 2em;
}

.price_text {
	text-align: center;
}

.price_text img {
	width: 80%;
	display: block;
	margin: 0 auto;
}


/* 料金表CSS */
/* 親ラッパーにスクロール制御 */
.table-scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	max-width: 100%;
	display: block;

}

/* 表本体はスマホ幅より広くしておく（固定幅 or min-width） */
.price-compare-table {
	width: 800px;
	border-collapse: collapse;
	text-align: center;
	font-size: 1.1em;
	margin: 0 auto;
	min-width: 800px;
	/* ←列の合計幅を超える値に設定 */
}

/* 表の装飾（共通） */
.price-compare-table th,
.price-compare-table td {
	border: 1px solid #333;
	padding: 1em;
}

.price-compare-table td {
	background-color: #fff;
}

.price-compare-table thead th {
	background: #333;
	font-weight: bold;
}

.price-compare-table .ohana {
	background: linear-gradient(to bottom, #f5d97f, #eac544);
	color: #fff;
	font-weight: bold;
	font-size: 1.5em;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
}

.price-compare-table .ohana-price {
	color: #d64541;
	font-weight: bold;
}

.price-compare-table .sub {
	display: block;
	font-size: 0.6em;
	color: #777;
	margin-top: 0.3em;
}

.price-compare-table .note {
	font-size: 0.6em;
	color: #555;
}

/* A社・B社のヘッダー背景黒＋白文字 */
.price-compare-table .a-col,
.price-compare-table .b-col {
	background: #333;
	/* または #000でもOK */
	color: #fff;
	font-size: 1.4em;
}

/* サブテキスト（note）も白く */
.price-compare-table .a-col .note,
.price-compare-table .b-col .note {
	color: #eee;
}

.price-compare-table .koumoku {
	background-color: #fff;
}

/* 料金表CSSここまで */

/*--- 実例エリア ---*/
.sec_jiturei {
	background: url(../images/haikei_ohana_jirei.png);
	padding-bottom: 2em;
}

.jiturei_title {
	padding-left: 2em;
}

.jiturei_title img {
	width: 80%;
}

.jiturei_area {
	background-image: url(../images/ohana_jirei_leaf.png);
	background-repeat: no-repeat;
	background-position: right 20px top 20px;
	/* ←右から20px、上から20px */
	background-size: 100px auto;
	padding: 1.5em;
	max-width: 800px;
	margin: 0 auto 1.5em;
	border: 6px solid #e1cf97;
	background-color: #fff;
}



.jiturei_cntnr {
	display: flex;
	gap: 20px;

}

.jiturei_img img {
	max-width: 300px;
}

.jiturei_text h2 {
	font-size: 1.2em;
	color: #004e37;
	font-weight: bold;
}

.jiturei_text {

	background-position: top right;
	background-size: 120px auto;
	/* サイズ調整 */
}

/*--- 声エリア ---*/
.sec_koe {
	padding-bottom: 1.5em;
}

.koe_area {
	max-width: 800px;
	border: 3px solid #000;
	margin: 0 auto;
	margin-bottom: 1em;
}

.koe_area h2 {
	text-align: center;
	font-size: 1.4em;
	font-weight: bold;
	padding-top: 0.5em;
}

.koe_flame_up img,
.koe_flame_down img {
	width: 100%;
	display: block;
}

.koe_cntnr {
	display: flex;
	gap: 20px;
	padding: 0.5em 2em;
}

.koe_img img {
	max-width: 250px;
}

/*--- 約束エリア ---*/
.sec_yakusoku {
	background: url(../images/haikei_ohana_yakusoku.png);

}

.yakusoku_area {
	display: flex;
	justify-content: center;
	gap: 30px;
	padding-top: 1.5em;
	padding-bottom: 2em;
}

.yakusoku_cntnr {
	max-width: 280px;
	text-align: center;
}


.yakusoku_text {
	padding: 0.5em 1.5em;
	text-align: left;
}



/*--- 流れエリア ---*/
.sec_nagare {
	background-color: #f6f6f0;
	padding-bottom: 2em;
}

.nagare_cntnr01,
.nagare_cntnr02 {
	display: flex;
	gap: 10px;
	max-width: 900px;
	margin: 0 auto;
	background-color: #fff;
	margin-top: 1em;
}

.nagare_cntnr01 {
	border-top: 5px solid #66a87d;
	border-bottom: 5px solid #66a87d;
}

.nagare_cntnr02 {
	border-top: 5px solid #ba272d;
	border-bottom: 5px solid #ba272d;
}

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

.nagare_text {
	padding: 1em 0.5em;
	width: 60%;
}


.nagare_text h2 {
	font-size: 1.4em;
	font-weight: bold;
	padding: 0.5em 0em;

}

.nagare_text_mds {
	color: #fff;
}

.nagare_annotation {
	text-align: right;
}

.nagare_text_mds_inr01 {
	background-color: #66a87d;
	padding: 0.5em;
}

.nagare_text_mds_inr02 {
	background-color: #ba272d;
	padding: 0.5em;
}




/*--- Q&Aエリア ---*/
.sec_qa {
	background: url(../images/haikei_ohana_qa.png);
	padding-bottom: 2em;
}

/*------------
よくある質問(アコーディオン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;
	border-radius: 4px;
	background-color: #fff;
	border: 1px solid #b4d3b0;
}

.faq dl>input {
	display: none;
}

.faq dt {
	position: relative;
	z-index: 1;
	padding-right: 40px;
	padding-left: 2.5em;
	cursor: pointer;
	background: #ffffff;
	transition: 0.4s;
	font-weight: bold;
}

.faq dd {
	position: absolute;
	visibility: hidden;
	transform: translateY(-100%);
	transition: 0.4s;
	background: #fff;
	border-top: 1px solid #b4d3b0;
	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: #555;
	transform: translateY(-50%);
}

.faq dt::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 10px;
	width: 20px;
	height: 3px;
	background: #555;
	transition: 0.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;
	top: 50%;
	left: 0.5em;
	width: 1.5em;
	height: 1.5em;
	font-size: 0.9em;
	color: #fff;
	transform: translateY(-50%);
	border-radius: 3px;
	font-weight: bold;
}

.faq dt span {
	background: #a3d2ab;
	/* 淡グリーン */
}

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

/*---------
フォーム部分
-------*/

/*--- フォームエリア全体背景 ---*/
.sec_contact {
	background-color: #fff;
	padding: 0.5em 0em;
}

.sec_contact {
	padding: 0em 0em 1em;
}

.sec_contact img {
	width: 100%;

}

.form-group {
	margin-bottom: 1.5em;
}

/*--- フォーム本体ボックス ---*/
form {
	max-width: 640px;
	margin: 0 auto;
	background: #fff;
	padding: 0.5em;

}

/*--- ラベル・項目タイトル ---*/
form p {
	margin-bottom: 1.2em;
	font-size: 1em;
	line-height: 1.4;

}

/*--- ラベル下にくっつく入力欄の余白調整 ---*/
form p:has(select),
form p:has(textarea),
form p:has(input[type="text"]) {
	margin-bottom: 2em;
}

/*--- 「必須」バッジ ---*/
.contact_hisu_text {
	background-color: #e60000;
	color: #fff;
	font-size: 0.75em;
	padding: 0.2em 0.5em;
	border-radius: 3px;
	margin-right: 0.4em;
	display: inline-block;
}

/*--- 入力要素共通スタイル ---*/
form input[type="text"],
form select,
form textarea {
	width: 100%;
	font-size: 1em;
	padding: 1em;
	border: 1px solid #ccc;
	border-radius: 8px;
	box-sizing: border-box;
	background: #fff;
}

/*--- テキストエリア高さ調整 ---*/
form textarea {
	resize: vertical;
	min-height: 120px;
}

/*--- 名前フィールド 横並び ---*/
form p:has(input[name="field_7507477_sei"]) {
	display: flex;
	gap: 1em;
	flex-wrap: wrap;
	margin-bottom: 2em;
}

form input[name="field_7507477_sei"],
form input[name="field_7507477_mei"] {
	flex: 1;
	min-width: 48%;
}

/*--- スマホで縦並び ---*/
@media screen and (max-width: 480px) {
	form p:has(input[name="field_7507477_sei"]) {
		flex-direction: column;
	}

	form input[name="field_7507477_sei"],
	form input[name="field_7507477_mei"] {
		min-width: 100%;
	}
}

/*--- 送信ボタン ---*/
form input[type="submit"] {
	width: 100%;
	background: #e53935;
	color: #fff;
	padding: 1em;
	font-size: 1.1em;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	margin-top: 1em;
	transition: background 0.3s ease;
}

form input[type="submit"]:hover {
	background: #c62828;
}

/*--- Powered by 非表示 ---*/
#powered {
	display: none;
}



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

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

.footer a {
	color: #fff;
}

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


html, body {
  height: 100%;
  margin: 0;
}

.wrapper {
  min-height: 91vh;
  display: flex;
  flex-direction: column;
}

.main {
  flex: 1;
}



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

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

.fix_menu_smartphone img {
	width: 100%;
}

.tel_left {
	float: left;
	width: 50%;
	padding: 0em 0;
	border-right: 0px solid #ccc;
}

.tel_right {
	float: left;
	width: 50%;
	padding: 0em 0;
}

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

.fix_menu_smartphone.show {
	display: block;
}



/*---------
プライバシーポリシーエリア
-------*/
.sec_pvp h2 {
	text-align: center;
	font-size: 1.6em;
	padding: 1em 0em;
}

.sec_pvp_inr {
	background-color: #fff;
	padding: 0em 1.5em;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.pvp_cntnr h3 {
	font-size: 1.5em;
	padding-left: 0.5em;
	border-left: 6px solid #66A87D;
	border-bottom: 2px solid #66A87D;
}

.pvp_text {
	padding: 0em 2em 1em;
	line-height: 1.8;
}

.pvp_return {
	text-align: right;
	padding: 2em;
}

.pvp_text li {
	padding-bottom: 0.5em;
}

/*---------
サンクスページエリア
-------*/
.sec_thanks{
margin-top: 3em;
padding: 2em 1em 3em;
}

.sec_thanks {
	text-align: center;
}

.sec_thanks h2{
	padding-bottom: 1em;
}