@charset "UTF-8";

/* =========================
   リセット・共通
========================= */
* {
	margin: 0;
	padding: 0;
	line-height: 1;
	box-sizing: border-box;
	font-family:
		"Yakuhan JP",
		"M PLUS 2",
		sans-serif;
}

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

a {
	color: #000;
	text-decoration: none;
}

a:hover {
	cursor: pointer;
	opacity: .8;
}

ul {
	list-style: none;
}

section {
	width: 90%;
	margin: 0 auto;
}

.jost {
	font-family: "Jost", sans-serif;
}

/*-------------------------------
グリッド背景
-------------------------------*/
.grid_bg {
	background-color: #FFF;
	background-image:
		linear-gradient(#c4c4c4 0.5px, transparent 0.5px),
		linear-gradient(90deg, #c4c4c4 0.5px, transparent 0.5px);
	background-size: 25px 25px;
}

.bg_top_area {
	background-image:
		linear-gradient(to bottom, transparent 50%, #FFF 50%),
		linear-gradient(#c4c4c4 0.5px, transparent 0.5px),
		linear-gradient(90deg, #c4c4c4 0.5px, transparent 0.5px);
	background-size: 100%, 25px 25px, 25px 25px;
}

.bg_bottom_area {
	background-image:
		linear-gradient(to top, transparent 88%, #FFF 88%),
		linear-gradient(#c4c4c4 0.5px, transparent 0.5px),
		linear-gradient(90deg, #c4c4c4 0.5px, transparent 0.5px);
	background-size: 100%, 25px 25px, 25px 25px;
}

/* =========================
   タイトル装飾・背景文字
========================= */
.title_oct {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.en_title {
	color: #eaeaea;
	font-weight: 200;
	font-size: clamp(40px, 13.265vw, 130px);
	position: absolute;
	left: clamp(20px, 1vw, 80px);
	top: clamp(-100px, -10.204vw, -40px);
}

.title_oct h2 {
	position: relative;
	color: #fff;
	font-size: clamp(22px, 3.673vw, 36px);
	display: inline-block;
	padding: clamp(12px, 2.041vw, 20px) clamp(16px, 3.061vw, 30px);
	width: 70%;
	z-index: 1;
	text-align: center;
}

.title_oct h2::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #0073b4;
	transform: skewX(-25deg);
	transform-origin: left center;
	z-index: -1;
}

/*-------------------------------
レイアウト（サイドバーあり）
-------------------------------*/
.wrap {
	display: flex;
	flex-direction: row-reverse;
}

main {
	width: 78%;
}

.side {
	width: 22%;
	height: 100%;
	padding-top: 40px;
	position: fixed;
	left: 0;
	background-color: #0073b4;
top: 0;
	display: flex;
	flex-direction: column;

}

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

.pc_menu_sns{
	display: flex;
	gap:5px;
	margin-top:20px;
}

.pc_menu_sns img{
	width:30px;
}

.pc_menu_logo{
	width:80%;
	margin:0 auto;
	margin-top:25px;
}
/* ===== サイドナビゲーション ===== */


nav ul {
	list-style: none;
	margin-top: 50px;
	margin-left: 1.5em;
}

nav ul li {
	position: relative;
	padding: 12px 16px 12px 21px;
	/* 左に▶用スペース確保 */
	color: #FFF;
	font-size: clamp(16.5px, 1.8vw, 19px);
	cursor: pointer;
	transition: background-color 0.2s;
	white-space: nowrap;
}

nav ul li a {
	color: #FFF;
	text-decoration: none;
	display: block;
}

nav ul li:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

/* ▶ インジケーター（デフォルトは非表示） */
nav ul li::before {
	content: "▶";
	position: absolute;
	left: -.5em;
	top: 50%;
	transform: translateY(-50%);
	color: #ffd400;
	font-size: clamp(16px, 1.3vw, 19px);
	opacity: 0;
	transition: opacity 0.2s;
}

/* アクティブな項目に▶を表示 */
nav ul li.is-active::before {
	opacity: 1;
}

nav ul li.is-active > a,
nav ul li.is-active {
	font-weight: bold;
}

nav ul li:last-child{
    padding:12px 0;
}

/*-------------------------------
FV・イントロ
-------------------------------*/
.fv_intro_box {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

.fv_owari {
	max-width: clamp(180px, 28vw, 350px);
}

.fv_top {
	padding-top: 30px;
	margin-bottom: clamp(20px, 2.571vw, 35px);
}

.fv_top img {
	max-width: clamp(260px, 50vw, 500px);
}

.intro_search {
	max-width: clamp(260px, 46vw, 470px);
	border: 2px solid #ffd200;
	border-radius: 999px;
	padding: clamp(6px, 0.816vw, 8px) clamp(12px, 1.633vw, 16px) clamp(6px, 0.816vw, 8px) clamp(16px, 2.449vw, 24px);
	display: flex;
	align-items: center;
	background: #FFF;
	box-sizing: border-box;
	gap: clamp(6px, 0.816vw, 8px);
	min-width: 0;
	margin-bottom: clamp(20px, 3.571vw, 35px);
}

.intro_search__text {
	font-size: clamp(22px, 2.878vw, 38px);
	flex: 1;
	white-space: nowrap;
	overflow: hidden;
	line-height: 1.2;
	letter-spacing: 0.02em;
}

.intro_search__composing {
	border-bottom: 2px dotted #555;
	padding-bottom: 1px;
}

.intro_search__converting {
	border-bottom: 2px solid #1a6bcd;
	background: rgba(26, 107, 205, 0.12);
	padding-bottom: 1px;
}

.intro_search__cursor {
	display: inline-block;
	width: 2px;
	height: 0.85em;
	background: #333;
	animation: introSearchBlink 0.9s step-end infinite;
	vertical-align: -0.05em;
	margin-left: 1px;
}

@keyframes introSearchBlink {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}
}

.intro_search img {
	width: clamp(24px, 3.673vw, 36px);
	flex-shrink: 0;
}

.fv_middle {
	margin-bottom: clamp(24px, 3.592vw, 45px);
}

.fv_middle p {
	font-weight: 500;
	font-size: 14px;
	line-height: 1.5;
}

.fv_bottom {
	padding-bottom: 25px;
}

.fv_bottom h2 {
	letter-spacing: 0.08em;
	font-weight: 500;
	font-size: clamp(18px, 1.449vw, 24px);
	line-height: 1.5;
}

.fv_mark {
	position: relative;
	display: inline-block;
}

.fv_mark::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -0.18em;
	width: 100%;
	height: 0.35em;
	background: #ffd400;
	z-index: 0;
}

.fv_mark span {
	position: relative;
	z-index: 1;
}

.fv_span_1 {
	color: #0073b4;
	font-weight: 700;
	font-size: 170%;
	padding: 0 clamp(3px, 0.408vw, 4px);
}

.fv_span_2 {
	color: #0073b4;
	font-weight: 500;
	font-size: 100%;
}

.cv_box {
	margin-bottom: clamp(40px, 8.163vw, 80px);
	display: flex;
	justify-content: space-between;
}

.cv_box a {
	flex-shrink: 1;
	width: 48%;
}

.cv_box a img {
	width: 100%;
	height: auto;
	display: block;
}

/*-------------------------------
心配事ボックス
-------------------------------*/
.intro_box {
	background-color: #FFF;
	border: 4px solid #ffd400;
	border-radius: clamp(6px, 1.02vw, 10px);
	padding-top: clamp(40px, 8.163vw, 80px);
}

.intro_item {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}

.intro_item h3 {
	background-color: #0073b4;
	color: #FFF;
	border-radius: 999px;
	text-align: center;
	width: 80%;
	line-height: 1.5;
	margin-bottom: clamp(16px, 2.551vw, 25px);
	padding: clamp(16px, 2.551vw, 25px) 0;
	font-size: clamp(20px, 1.469vw, 34px);
}

.worries_answer {
	margin-bottom: clamp(50px, 14.286vw, 140px);
}

.worries_answer p {
	text-align: center;
	font-weight: 700;
	font-size: clamp(20px, 2.265vw, 32px);
	line-height: 1.8;
}

.worries_dot {
	position: absolute;
	max-width: clamp(36px, 6.122vw, 60px);
	right: clamp(20px, 5vw, 65px);
	top: clamp(50px, 6vw, 90px);
}

.worries_img_01 {
	position: absolute;
	max-width: clamp(26px, 3.5vw, 46px);
	left: 4%;
	top: 25%;
	transform: translateY(-25%);
}

.worries_img_02 {
	position: absolute;
	max-width: clamp(20px, 3.122vw, 32px);
	right: 30px;
	top: 25%;
	transform: translateY(-25%);
}


.worries_box {
	background-color: #f2f2f2;
	border-radius: clamp(16px, 3.061vw, 30px);
	width: 80%;
	padding: clamp(16px, 2.551vw, 25px) clamp(24px, 5.102vw, 50px);
}

.worries_box li {
	position: relative;
	padding: clamp(12px, 1.837vw, 18px) 0 clamp(12px, 1.837vw, 18px) clamp(22px, 3.061vw, 30px);
	font-size: clamp(17px, 1.653vw, 26px);
	line-height: 1.6;
}

.worries_box li::before {
	content: "";
	width: clamp(14px, 2.041vw, 20px);
	height: clamp(14px, 2.041vw, 20px);
	position: absolute;
	left: 0;
	top: 1.9em;
	transform: translateY(-53%);
	background: linear-gradient(-45deg,
			#0073b4 0%, #0073b4 50%,
			#ffd400 50%, #ffd400 100%);
}

.worries_line {
	border-top: 2px solid #0073b4;
	border-bottom: 2px solid #0073b4;
}

.worries_img {
	width: 80%;
	margin-top: clamp(-10px, -2.551vw, -5px);
	margin-bottom: clamp(16px, 3.061vw, 30px);
}

/*-------------------------------
プロフィール
-------------------------------*/
.profile_item {
	display: flex;
align-items: flex-end;
	padding-top: clamp(12px, 2.041vw, 20px);
	padding-right: 5%;
}

.profile_img {
	max-width: clamp(180px, 30.673vw, 330px);
	min-width: 230px;
	flex-shrink: 0;
}

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

.profile_text_box {
	margin-top: clamp(30px, 6.122vw, 60px);
	margin-left: clamp(20px, 3.571vw, 35px);
	max-width: clamp(260px, 45.408vw, 445px);
}

.profile_name {
	font-weight: 700;
	font-size: clamp(26px, 3.082vw, 40px);
	margin-bottom: clamp(24px, 4.592vw, 45px);
}

.profile_name span {
	display: inline-block;
	background: #ffd400;
	vertical-align: baseline;
	position: relative;
	top: clamp(-4px, -0.714vw, -2px);
	font-size: 50%;
	padding: 0.3em 0.7em;
	margin-right: clamp(10px, 2.041vw, 20px);
	border-radius: 2px;
}

.profile_text_01 {
	font-weight: 500;
	font-size: clamp(18px, 1.449vw, 24px);
	line-height: 1.5;
	letter-spacing: 0.08em;
	margin-bottom: clamp(24px, 4.592vw, 45px);
}

.profile_text_02 {
	font-size: clamp(16px, 1.041vw, 20px);
	line-height: 1.5;
	padding-bottom: 5%;
}

.pc_prof {
	display: block;
}

/*-------------------------------
ご相談の流れ
-------------------------------*/
.flow_title {
	margin-top: clamp(60px, 18.367vw, 180px);
	margin-bottom: clamp(32px, 5.612vw, 55px);
}

.flow_box {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	gap: 10px;
}

.flow_item_box {
	width: 33%;
	display: flex;

	flex-direction: column;
}

.flow_number {
	font-family: "Jost", sans-serif;
	color: #ffd400;
	text-align: center;
	margin-bottom: clamp(3px, 0.51vw, 5px);
	font-size: clamp(40px, 7.163vw, 80px);
}

.flow_item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #0073b4;
	border-radius: clamp(10px, 1.429vw, 14px);
	padding: clamp(24px, 3.571vw, 35px) clamp(14px, 1.041vw, 20px) clamp(26px, 3.776vw, 37px);
}

.flow_item img {
	max-width: clamp(100px, 20.408vw, 200px);
	margin-bottom: clamp(12px, 2.041vw, 20px);
}

.flow_item h4 {
	color: #ffd400;
	font-size: clamp(24px, 1.653vw, 26px);
	margin-bottom: clamp(18px, 2.041vw, 20px);
}

.flow_item p {
	color: #FFF;
	font-weight: 500;
	text-align: justify;
	font-size: 17px;
	line-height: 1.6;
}

/*-------------------------------
料金
-------------------------------*/
.price_title {
	margin-top: clamp(60px, 18.367vw, 180px);
	margin-bottom: clamp(32px, 5.612vw, 55px);
}

.price_title p {
	font-weight: 500;
	text-align: center;
	line-height: 1.8;
	font-size: clamp(18px, 1.857vw, 28px);
	margin-top: clamp(28px, 4.898vw, 48px);
}

.price_plan_box {
	background-color: #0073b4;
	border-radius: clamp(10px, 1.429vw, 14px);
	width: 100%;
	padding: clamp(24px, 4vw, 50px);
	margin-bottom: clamp(60px, 18.367vw, 180px);
}

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

.price_plan img {
	max-width: clamp(160px, 30vw, 300px);
}

.plan_text {
	margin-left: 10px;
	margin-bottom: clamp(16px, 2.551vw, 25px);
}

.plan_text h4 {
	color: #ffd400;
	border-left: 4px solid #FFF;
	padding-left: 0.5em;
	font-size: clamp(20px, 2.265vw, 32px);
	margin-bottom: clamp(16px, 2.857vw, 28px);
}

.plan_text p {
	color: #FFF;
	font-weight: 700;
	font-size: clamp(18px, 1.041vw, 20px);
	line-height: 1.6;
	margin-bottom: clamp(18px, 3.061vw, 30px);
}

.plan_text span {
	font-size: 80%;
}

.plan_text h5 {
	color: #ffd400;
	font-weight: 700;
	font-size: clamp(18px, 1.041vw, 20px);
	margin-bottom: clamp(12px, 2.041vw, 20px);
}

.plan_text li {
	list-style: square;
	margin-left: 1em;
	line-height: 1.4;
	color: #FFF;
	font-weight: 500;
	font-size: clamp(16px, 1.5vw, 18px);
	padding-bottom: clamp(10px, 1.633vw, 16px);
}

.case_box {
	position: relative;
	margin-top: clamp(14px, 2.245vw, 22px);
}

.case_title {
	background-color: #ffd400;
	font-weight: 500;
	text-align: center;
	position: absolute;
	top: -1.2em;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	padding: 0.5em 0;
	border-radius: 999px;
	font-size: clamp(16px, 1.245vw, 22px);
	line-height: 1.4;
	white-space: nowrap;
}

.case_text {
	background: #FFF;
	text-align: center;
	padding: clamp(40px, 5.612vw, 55px) clamp(16px, 3.061vw, 30px) clamp(24px, 3.571vw, 35px);
	margin-bottom: clamp(28px, 4.592vw, 45px);
	border-radius: clamp(10px, 1.633vw, 16px);


}

.case_ex {
	font-size: 18px;
	line-height: 1.5;
}

.case_price {
	position: relative;
	display: inline-block;
	font-weight: 700;
	margin-top: clamp(20px, 3.265vw, 32px);
	margin-bottom: clamp(18px, 3.061vw, 30px);
	font-size: 30px;
	padding-bottom: clamp(8px, 1.327vw, 13px);
}

.case_price::before,
.case_price::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% + clamp(12px, 2.041vw, 20px));
	border-bottom: 2px solid #ffd400;
}

.case_price::before {
	bottom: clamp(4px, 0.612vw, 6px);
}

.case_price::after {
	bottom: 0;
}

.case_price_items {
	font-weight: 500;
	font-size: clamp(17px, 1.041vw, 20px);
	margin-bottom: clamp(10px, 1.633vw, 16px);
	line-height: 1.5;
}

.case_price_items span {
	color: #0073b4;
	padding: 0 clamp(5px, 0.816vw, 8px);
}

.case_ps_box {
	display: flex;
	align-items: flex-end;
	border-bottom: 1px solid #FFF;
	margin-bottom: clamp(18px, 3.061vw, 30px);
}

.case_ps_img {
	max-width: clamp(140px, 24vw, 280px);
}

.case_ps_text h3 {
	color: #ffd400;
	font-weight: 700;
	font-size: clamp(16px, 1.041vw, 20px);
	line-height: 1.6;
	margin-bottom: clamp(20px, 3.673vw, 36px);
}

.case_ps_text ul {
	padding-bottom: 1.5em;
}

.case_ps_text li {
	color: #FFF;
	font-weight: 500;
	font-size: clamp(18px, 1.041vw, 20px);
	line-height: 1.8;
	list-style-type: disc;
	margin-left: 1em;
}

.case_ps_text_2 p {
	color: #FFF;
	font-weight: 500;
	text-align: center;
	font-size: clamp(18px, 1.939vw, 19px);
	line-height: 1.8;
}

.case_ps_text_2 span {
	color: #ffd400;
}

/*-------------------------------
よくあるご質問
-------------------------------*/
.faq_title {
	margin-top: clamp(60px, 18.367vw, 180px);
	margin-bottom: clamp(32px, 5.612vw, 55px);
}

.faq_intro {
	margin-bottom: clamp(28px, 5.102vw, 50px);
}

.faq_intro p {
	font-weight: 500;
	text-align: center;
	line-height: 1.8;
	font-size: clamp(18px, 1.041vw, 20px);
	margin-top: clamp(28px, 4.898vw, 48px);
}

.faq_box {
	margin-bottom: clamp(60px, 12.245vw, 120px);
}

.faq_list {
	display: flex;
	flex-direction: column;
	gap: clamp(16px, 3.061vw, 30px);
}

.faq_item {
	background: #fff;
	overflow: hidden;
}

.faq_question {
	display: flex;
	align-items: stretch;
	cursor: pointer;
	background: none;
	border: none;
	width: 100%;
	text-align: left;
	font-family: inherit;
	padding: 0;
}

.faq_question:focus-visible {
	outline: 2px solid #0073b4;
}

.faq_question_label {
	background: #0073b4;
	color: #fff;
	font-size: 26px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(12px, 1.633vw, 16px) clamp(8px, 1.02vw, 10px);
	margin-right: clamp(8px, 1.224vw, 12px);
	border-radius: 4px;
	min-width: 52px;
}

.faq_question_text {
	flex: 1;
	background: #0073b4;
	padding: clamp(12px, 1.633vw, 16px) clamp(10px, 1.429vw, 14px);
	font-size: clamp(18px, 1.449vw, 24px);
	font-weight: 500;
	color: #fff;
	line-height: 1.5;
	display: flex;
	align-items: center;
	border-radius: 4px 0 0 4px;
}

.faq_question_arrow {
	background: #0073b4;
	padding: 0 clamp(10px, 1.633vw, 16px);
	display: flex;
	align-items: center;
	color: #ffd400;
	font-size: clamp(16px, 1.041vw, 20px);
	border-radius: 0 4px 4px 0;
	transition: transform .25s;
}

.faq_answer {
	display: none;
}

.faq_item.open .faq_answer {
	display: flex;
}

.faq_answer_label {
	color: #000;
	font-size: clamp(18px, 1.551vw, 25px);
	font-weight: 700;
	letter-spacing: 0.04em;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: clamp(14px, 2.041vw, 20px) clamp(8px, 1.02vw, 10px);
	margin-right: clamp(8px, 1.224vw, 12px);
	border-bottom: 1px solid #000;
	min-width: 52px;
}

.faq_answer_text {
	flex: 1;
	padding: clamp(16px, 2.245vw, 22px) clamp(16px, 2.755vw, 27px) clamp(14px, 2.041vw, 20px);
	font-size: clamp(18px, 1.041vw, 20px);
	line-height: 1.9;
	border-bottom: 1px solid #000;
}

/*-------------------------------
ブログおすすめ記事
-------------------------------*/
.blog_reco_box {
	background-color: #FFF;
	border: 4px solid #ffd400;
	border-radius: clamp(6px, 1.02vw, 10px);
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 clamp(20px, 5.102vw, 50px) clamp(40px, 7.143vw, 70px);
}

.reco_intro {
	padding-bottom: clamp(60px, 7vw, 140px);
}

.reco_intro img {
	margin: 0 auto;
	margin-top: clamp(-30px, -6.122vw, -20px);
}

.blog_reco_itembox {
	margin-bottom: clamp(24px, 4.082vw, 40px);
}

.go_blog a {
	display: block;
	background-color: #0073b4;
	color: #FFF;
	font-weight: 700;
	border-radius: 999px;
	font-size: clamp(18px, 1.245vw, 22px);
	padding: clamp(12px, 1.633vw, 16px) 60px;
	text-align: center;
}

.blog_list {
	display: flex;
	gap: clamp(16px, 3.061vw, 30px);
}

.blog_card {
	max-width: clamp(180px, 25.51vw, 250px);
	background: #fff;
}

.blog_card_image {
	display: block;
	width: 100%;
	border-radius: clamp(6px, 1.02vw, 10px);
	margin-bottom: clamp(8px, 1.224vw, 12px);
}

.blog_card_meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: clamp(8px, 1.224vw, 12px) 0;
}

.blog_card_date {
	font-size: 14px;
	color: #b0b0b0;
}

.blog_card_cat {
	background: #0073b4;
	color: #fff;
	font-size: clamp16px;
	padding: 6px 18px;
	border-radius: 999px;
	line-height: 1;
}

.blog_card_title {
	font-size: 17px;
	line-height: 1.6;
	color: #222;
	font-weight: 500;
}

/*-------------------------------
コンタクトフォーム
-------------------------------*/
.contact_box {
	margin-top: clamp(60px, 18.367vw, 180px);
	margin-bottom: clamp(32px, 5.918vw, 58px);
}

.contact_intro {
	font-weight: 500;
	text-align: center;
	line-height: 1.8;
	font-size: clamp(18px, 1.041vw, 20px);
	margin-top: clamp(28px, 4.898vw, 48px);
	margin-bottom: clamp(28px, 5.102vw, 50px);
}

.contact_cv_box {
	width: 80%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.for_telbtn {
	width: 100%;
	font-weight: 700;
	text-align: center;
	background-color: #ffd400;
	padding: clamp(12px, 1.429vw, 14px) 0;
	font-size: clamp(22px, 1.959vw, 29px);
	margin: clamp(28px, 4.082vw, 44px) 0 clamp(20px, 3.061vw, 30px);
}

.contact_cv_box a {
	display: block;
	width: 80%;
}

.contact_form_box {
	padding-bottom: clamp(40px, 8.163vw, 80px);
}

/*-------------------------------
フッター
-------------------------------*/
.footer_bg {
	padding: 10% clamp(24px, 4.102vw, 50px);
	background-image: url(../img/footer_owari.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom;

	display: flex;
	align-items: center;
	justify-content: flex-start;
}

footer p {
	text-align: justify;
	width: 66%;
	color: #FFF;
	font-size: clamp(17px, 0.8vw, 20px);
	line-height: 1.8;
	letter-spacing: 0.08em;
}


.footer_cv {
	width: 80%;
	margin: 0 auto;
	padding-bottom: clamp(3px, 0.51vw, 5px);
}

.footer_cv p {
	text-align: center;
	font-weight: 500;
	font-size: clamp(20px, 1.857vw, 28px);
	padding: clamp(40px, 8.163vw, 80px) 0 clamp(20px, 4.082vw, 40px);
}

.copy {
	background-color: #ffd400;
	font-size: clamp(12px, 1.224vw, 12px);
	text-align: center;
	padding: clamp(8px, 1.02vw, 10px) 0;
}

/*-------------------------------
ハンバーガーメニュー
-------------------------------*/
.menu-button {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	row-gap: 1.25vw;
	cursor: pointer;
	
	z-index: 1001;
	width: 43px;
	height: 43px;
	background-color: #FFF;
	border-radius: 50%;
	border:2px solid #0073b4;
}

.menu-button__line,
.menu-button::before,
.menu-button::after {
	content: "";
	width: 23px;
	height: 1.5px;
	background-color: #0073b4;
	border-radius: 999px;
	transition: transform 0.6s, opacity 0.6s;
}

.menu-button::before,
.menu-button::after {
	position: absolute;
}

.menu-button::before {
	transform: translateY(-7.5px);
}

.menu-button::after {
	transform: translateY(7.5px);
}

.menu-button__line {
	position: relative;
	display: block;
	transition: opacity 0.6s;
}

.menu-toggle:checked + .menu-button .menu-button__line {
	opacity: 0;
	visibility: hidden;
}

.menu-toggle:checked + .menu-button {
	background: #fff;
}

.menu-toggle:checked + .menu-button::before {
	transform: translateY(0) rotate(45deg);
	background: #0073b4;
}

.menu-toggle:checked + .menu-button::after {
	transform: translateY(0) rotate(-45deg);
	background: #0073b4;
}

.menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	
	background-color: #0073b4;
	opacity: 0;
	
	transition: opacity 0.6s;
	z-index: 1;
}

.menu-toggle:checked ~ .menu-overlay {
	opacity: 1;
	pointer-events: auto;
		
}

.menu {
	position: fixed;
	top: 0;
	height: 100%;
	right: 0;
	transform: translateX(100%);
	width: 100%;
	background-color: #0073b4;
	padding: 1.667vw;
	transition: transform 0.6s;
	z-index: 1000;
}

.menu-toggle:checked ~ .menu {
	transform: translateX(0);
}

.menu-list {
	width: 75%;
	margin: 10% auto 0;
	padding: 0;
	list-style: none;
}

.menu-list li {
	font-size: clamp(20px, 5vw, 23px);
	position: relative;
	padding: 5vw 0;
	text-align: center;
	font-weight: 500;
	z-index:3000;
}

.menu-list li::before,
.menu-list li::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #FFF;
}

.menu-list li::before {
	top: 0;
}

.menu-list li::after {
	bottom: -1px;
}

.menu-list li a {
	font-weight: 400;
	color: #FFF;
	display: inline-block;
	width: 100%;
	padding: 0;
}

.menu_online {
	text-align: center;
	max-width: 224px;
	margin: 30px auto;
}

.menu_online a {
	position: relative;
	display: inline-block;
	opacity: 1;
}

.menu_online img {
	filter: brightness(0) invert(1);
	display: block;
	width: 34px;
	transition: .3s;
}

html {
	scroll-behavior: smooth;
}

:target {
	scroll-margin-top: 12vw;
}

.pc_only {
	display: block;
}

.tb_only {
	display: none;
}

.sp_only {
	display: none;
}

.fv_owari {
	position: relative;
}

.consul {
	position: absolute;
	top: 11.5%;
	left: -10%;
	max-width: 120px;
}


@media screen and (max-width: 1020px) {
	.consul {
		position: absolute;
		top: 5.5%;
	}
}

@media screen and (max-width: 985px) {
	.consul {
		position: absolute;
		top: -4%;
		left: -8%;
		max-width: 100px;
	}
}


.header_btn{
	display: flex;
	flex-direction: column;
	gap:12px;
	position: fixed;
	top:2vw;
	right:1vw;
	z-index:999;
}

.go_top{
	position: fixed;
	bottom:5vw;
	right:1vw;
	z-index:5;
}

.header_btn img , .go_top img{
	width:68px;
	height:68px;
}

.menu_sns{
	display: flex;
    width: 80%;
   
    gap: 50px;
    justify-content: center;
    margin: 30px auto;

}
.sp_menu_logo
{
	width: 80%!important;
    margin: 0 auto;
    height: auto;
    display: block;
    margin-bottom:10%;
}

@media screen and (max-width: 930px) {
	.pc_only {
		display: none;
	}

	.tb_only {
		display: block;
	}

	.header_btn img, .go_top img{
		width:43px;
		height:43px;
	}

	.worries_box {
		width: 88%;
	}

	.worries_dot {
		right: clamp(20px, 2.633vw, 65px);
		top: clamp(65px, 6.184vw, 90px);
	}

	.price_plan {
		flex-direction: column;
		align-items: flex-start;
	}

	.plan_img {
		margin: 0 auto;
		margin-bottom: 30px;
	}

	.plan_text {
		margin-left: 0;
	}

	.case_ps_box {
		flex-direction: column-reverse;
		align-items: center;
	}

	.case_ps_text h3 {
		text-align: center;
		font-size: 20px;
	}

	.worries_img_01 {
		left: 1%;
		top: 35%;
		transform: translateY(-28%);
	}

	.worries_img_02 {
		right: 1%;
		top: 35%;
		transform: translateY(-28%);
	}
}


@media screen and (max-width: 835px) {
	.consul {
		position: absolute;
		top: -13%;
		left: -8%;
		max-width: 100px;
	}
}

@media screen and (max-width: 800px) {
	.consul {
		position: absolute;
		top: -15%;
		left: 4%;
		max-width: 95px;
	}
}

.sp_br {
	display: none;
}


/* =============================================================
   レスポンシブ（〜780px）

============================================================= */
@media screen and (max-width: 780px) {
	nav ul li:last-child{
    padding:5vw 0;
}
	.bg_top_area {

		background-size: 100%, 15px 15px, 15px 15px;
	}

	.bg_bottom_area {
		background-size: 100%, 15px 15px, 15px 15px;
	}

	.sp_br {
		display: block;
	}

	.sp_only {
		display: block;
	}

	.side {
		display: none;
	}

	.header_btn{
		flex-direction: row;
		top:6vw;
		right:5vw;
	}
		.go_top{right:5vw;}
	/* セクション幅 */
	section {
		width: 94%;
	}

	main {
		width: 100%;
	}

	.fv_intro_box {
		display: none;
	}

	.cv_box {
		display: none;
	}

	.sp_fv_box {
		padding-top: 5vw;
	}

	.sp_logo img {
		width: 45.333vw;
	}

	.sp_fv_img {
		width: 95%;
		margin: 0 auto;
		display: flex;
		justify-content: space-between;
		border-bottom: 2px solid #ffd200;
		margin-bottom: 4vw;
	}

	.sp_fv_01 {
		width: 36vw;
	}

	.sp_fv_02 {
		width: 54.667vw;
	}

	.fv_bottom h2 {
		text-align: center;
		font-size: 4.267vw;
	}

	.title_oct h2 {
		width: 88%;
	}

	.intro_search {

		width: 70%;
	}

	.sp_cv_box {
		display: flex;
		justify-content: space-between;
		gap: 2.667vw;
		margin-bottom: 9.333vw;
	}

	.intro_box {
		border: 2px solid #ffd400;
	}

	.sp_cv_box a {
		width: 100%;
	}

	.worries_dot {
		right: 2.133vw;
	}

	.worries_box,
	.worries_img {
		width: 90%;
	}

	.worries_box li::before {
		top: 1.6em;
	}

	.worries_img_01,
	.worries_img_02 {
		display: none;
	}

	.worries_a {
		width: 80%;
	}

	.profile_img {
		min-width: 0;
	}


	.profile_item {
		flex-direction: column-reverse;
		align-items: center;
		padding-right: 0;
	}

	.profile_text_box {

		max-width: 100%;
		padding: 0 2.133vw 10.667vw;
	}

	.profile_item {
		display: block;
		padding-right: 0;
	}

	.profile_text_box {
		display: contents;
		max-width: none;
	}

	.profile_name {
		font-size: 40px;
		margin-top: 10%;
		order: 4;
		text-align: left;
		writing-mode: vertical-rl;
		letter-spacing: 0.1em;
	}

	.pc_prof {
		display: none;
	}

	.sp_prof {
		order: 2;
		display: flex;
		align-items:flex-start;
	}

	.profile_name span {
		margin-right: 0;
		writing-mode: rl;
		margin-bottom: 4vw;
		font-size: 20px;
		letter-spacing: 0;
	}

	.profile_text_01 {
		order: 1;
		margin: 0 auto;
		width: 90%;
		text-align: center;
		align-self: stretch;
		align-items: flex-start;
		margin-bottom: 0;
		margin-top: 20px;
	}

	.profile_img {
		order: 3;
		min-width: auto;
		max-width: 42.667vw;
		margin: 0 auto 24px;
	}

	.profile_text_02 {
		order: 5;
		padding-bottom: 40px;
		width: 90%;
	}

	.profile_item {
		display: flex;
		flex-direction: column;
	}

	/* フロー：縦並び */
	.flow_box {
		flex-direction: column;
		gap: 6.4vw;
	}


	.flow_item_box {
		width: 100%;
	}

	.flow_number {
		font-size: 16vw;
	}

	.flow_item img {
		max-width: none;
		width: 50%;
	}

	/* 料金：縦並び */
	.price_plan {
		flex-direction: row;
		align-items: center;
		gap: 5.333vw;
	}

	.case_text {
		padding-top: 16vw;
	}

	.case_ps_box {
		align-items: center;
	}

	.case_ps_img {
		max-width: 75%;
	}

	.case_ps_text_2 p {
		text-align: left;
	}

	/* FAQ：行間を広げて読みやすく */
	.faq_answer_text {
		line-height: 2.0;
	}

	.faq_question {
		display: grid;
		grid-template-columns: 1fr auto;
		grid-template-areas:
			"label label"
			"text arrow";
		width: 100%;
		align-items: stretch;
		gap: 0;
	}

	/* 1段目：Q1 */
	.faq_question_label {
		grid-area: label;
		width: 100%;
		min-width: auto;
		margin-right: 0;
		padding: 3.2vw 4.267vw;
		justify-content: center;
		border-radius: 10px 10px 0 0;
	}

	/* 2段目：設問 */
	.faq_question_text {
		grid-area: text;
		padding: 3.733vw 4.267vw;
		display: flex;
		align-items: center;
		border-radius: 0;
		text-align: justify;
	}

	/* 2段目：▶ */
	.faq_question_arrow {
		grid-area: arrow;
		background: #0073b4;
		padding: 0 4.267vw;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #ffd400;
		border-radius: 0;
		font-size: 4.267vw;
		line-height: 1;
	}

	/* -----------------
	回答
	----------------- */
	.faq_item.open .faq_answer {
		display: flex;
		flex-direction: column;
	}

	.faq_answer_label {
		width: 100%;
		min-width: auto;
		margin-right: 0;
		padding: 3.2vw 4.267vw;
		justify-content: center;
		border-radius: 0;
		border-bottom: none;
	}

	.faq_answer_text {
		width: 100%;
		padding: 3.733vw 4.267vw 4.8vw;
		border-top: 1px solid #000;
	}

	.faq_question_text .tb_only {
		display: none;
	}

	.blog_reco_box {
		border: 2px solid #ffd400;
	}

	.blog_list {
		flex-direction: column;
	}

	.blog_card {
		max-width: 100%;
	}

	/* コンタクト */
	.contact_cv_box,
	.contact_cv_box a {
		width: 95%;
	}


	.footer_cv {
		width: 95%;
	}

	.footer_cv p {
		text-align: center;
		line-height: 1.8;
	}

	.tb_only_02 {
		display: none;
	}
}
@media screen and (max-width: 660px) {
	.footer_bg {
	padding:30px 20px 220px;
	background-image: url(../img/sp_footer_bg.png);
	background-position:bottom;
}


	footer p {
		width: 70%;
	}}
@media screen and (max-width: 520px) {
	
	
	.price_plan {
		flex-direction: column;
		padding-bottom: 25px;
	}

	.price_plan_box {
		padding-bottom: 30px;
	}

	.price_plan img {
		margin-top: 30px;
		max-width: 280px
	}
		.footer_bg {
	padding:30px 20px 63%;
	background-image: url(../img/sp_footer_bg.png);
	background-position:bottom;
}


	footer p {
		width: 100%;
	
	}
}

ul.chart {
	display: flex;
	list-style: none;
	padding: 0;
	width:80%;
	margin:0 auto;
	max-width: 650px;
	font-size:clamp(15px,2vw, 20px);
	font-weight: 500;
	border: 1px solid #ffd400;
	border-radius: 25px;
	overflow: hidden;
}

ul.chart li {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 10px 0;
	flex: 1;
	position: relative;
	background-color: white;
	color: #000;
}

ul.chart li + li {
	border-left: 1px solid #ffd400;
}

ul.chart li:first-child {
	border-radius: 25px 0 0 25px;
	background-color: #ffd400;
	color: #000;
	border-right: 1px solid #ffd400;
}

ul.chart li:last-child {
	border-right: none;
	border-radius: 0 25px 25px 0;
}

ul.chart li.active {
	background-color: #ffd400;
	color: white;
}

ul.chart li:not(:last-child)::after {
	content: '';
	position: absolute;
	right: -10px;
	top: 0;
	bottom: 0;
	margin: auto;
	height: 0;
	width: 0;
	border-top: 25px solid transparent;
	border-bottom: 25px solid transparent;
	border-left: 10px solid #ffd400;
	z-index: 1;
}

ul.chart li:nth-child(2)::before {
	content: '';
	position: absolute;
	right: -8px;
	top: 0;
	bottom: 0;
	margin: auto;
	height: 0;
	width: 0;
	border-top: 25px solid transparent;
	border-bottom: 25px solid transparent;
	border-right: 10px solid white;
	z-index: 2;
	transform: rotate(180deg);
}

ul.chart li:not(:nth-child(2))::before {
	content: none;
}

/* 確認画面がアクティブな状態のスタイル */
ul.chart li.active2 {
	background-color: #ffd400;
	color: #FFF;
}

ul.chart li.active2::before {
	content: '';
	position: absolute;
	right: -8px;
	top: 0;
	bottom: 0;
	margin: auto;
	height: 0;
	width: 0;
	border-top: 25px solid transparent;
	border-bottom: 25px solid transparent;
	border-right: 10px solid #58a1b8;
	z-index: 2;
	transform: rotate(180deg);
}

/* 入力画面白背景 */
ul.chart li.active1 {
	background-color: #FFF;
	color: black;
}

ul.chart li.active1::before {
	content: '';
	position: absolute;
	right: -8px;
	top: 0;
	bottom: 0;
	margin: auto;
	height: 0;
	width: 0;
	border-top: 25px solid transparent;
	border-bottom: 25px solid transparent;
	border-right: 10px solid #FFF;
	z-index: 2;
	transform: rotate(180deg);
}

/* 完了画面青背景 */
ul.chart li.active3 {
	background-color: #ffd400;
	color: #FFF;
}

	.contact_inner {
		max-width:1000px;
		margin: 0 auto;
		background-color: #0073b4;
		border-radius: 20px;
		padding-top:8%;
	}


/*-------------------------------
  コンタクトフォーム（フォームレイアウト）
-------------------------------*/

/* =========================
   フォーム全体リセット
========================= */
:where(input, textarea, select, button) {
	appearance: none;
	-webkit-appearance: none;
	border: none;
	outline: none;
	box-shadow: none;
	border-radius: 0;
	background: transparent;
	color: 000;
	font: inherit;
	letter-spacing: inherit;
	vertical-align: middle;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

.ly_form * {
	min-inline-size: 0;
}

/* =========================
   textarea
========================= */
textarea {
	resize: vertical;
	width: 100%;
}

.bl_form textarea {
	height: 180px;
}

/* =========================
   ボタン基本
========================= */
:where(button, [type="button"], [type="submit"], [type="reset"]) {
	text-align: center;
	user-select: none;
	touch-action: manipulation;
	cursor: pointer;
}

/* =========================
   レイアウト
========================= */
.bl_form,
.bl_formConfirm,
.bl_formThanks {
	padding: 4.125rem 2.5rem;
}

.bl_form_group:not(:first-of-type),
.bl_formConfirm_txt + .bl_form_group {
	margin-top: .5em;
	margin-bottom: .8em;
}

.bl_form_group fieldset {
	display: contents;
}

.bl_form_control {
	color:#FFF;
	margin-bottom: .5em;
}

/* =========================
   ラベル
========================= */
.bl_form_label {
	display: flex;
	align-items: flex-end;
	margin-bottom: 1em;
	color: #fff;
	font-weight: 400;
}

.bl_form_required {
	display: inline-block;
	padding: .1em .2em;
	color: #ffd400;
	font-weight: 400;
}

/* =========================
   バリデーション
========================= */
.wpcf7-not-valid-tip {
	padding: 10px 0;
}

/* =========================
   入力欄
========================= */
.bl_form :is(
	input[type="text"],
	input[type="email"],
	input[type="tel"],
	textarea,
	select
) {
	width: 100%;
	padding: 12px 10px;
	background: #f4f4f4;
	line-height: 1.5;
}

.bl_form :is(
	input[type="text"],
	input[type="email"],
	input[type="tel"],
	textarea
)::placeholder {
	color: #c5c5c5;
}

/* =========================
   郵便番号
========================= */
.yuubin {
	display: inline-flex;
	align-items: center;
}

.yuubin p {
	margin-right: 1em;
}

.yuubin :is(input[type="text"], input[type="tel"]) {
	width: 8em;
}

/* =========================
   ラジオ・チェックリスト
========================= */
.wpcf7-list-item {
	display: block;
	margin: 0 0 .8em;
}

.bl_form_radio,
.bl_form_checkbox {
	display: inline-grid;
	gap: .5em 2em;
}

/* =========================
   オリジナル ラジオ・チェック共通
========================= */
.bl_form :is(input[type="radio"], input[type="checkbox"]) {
	position: relative;
	top: -1px;
	width: 18px;
	height: 18px;
	margin-right: .6em;
	background: #fff;
	border: 2px solid #ddd;
	cursor: pointer;
	flex-shrink: 0;
	vertical-align: middle;
}

/* ラジオ */
.bl_form input[type="radio"] {
	border-radius: 50%;
}

/* newsletter checkbox丸 */
.bl_newsletter_group input[type="checkbox"] {
	border-radius: 50%;
}

/* checked共通 */
.bl_form :is(input[type="radio"], input[type="checkbox"]):checked::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* ラジオ checked */
.bl_form input[type="radio"]:checked::before {
	width: 8px;
	height: 8px;
	background: #ef940e;
	border-radius: 50%;
}

/* チェック checked */
.bl_form input[type="checkbox"]:checked::before {
	width: 10px;
	height: 6px;
	border-left: 3px solid #ef940e;
	border-bottom: 3px solid #ef940e;
	transform: translate(-50%, -60%) rotate(-45deg);
}

/* フォーカス */
.bl_form label:has(input:focus-visible) {
	outline: 2px solid #005fcc;
	outline-offset: 2px;
}

/* =========================
   同意ブロック
========================= */
.bl_form_consent {
	margin-top: 30px;
	text-align: center;
}

/* =========================
   ボタンエリア
========================= */
.bl_form_btn {
	display: flex;
	align-items: center;
	gap: 2em;
	margin-top: 2.5rem;
}

.bl_form_btn > *:only-child {
	flex: 0 0 45%;
	margin-inline: auto;
}

.bl_form_btn > *:not(:only-child) {
	flex: 1;
}

/* 共通ボタン */
.bl_form_confirm,
.bl_form_submit,
.bl_form_back {
	padding: 18px 20px;
	border-radius: 999px;
	text-align: center;
	cursor: pointer;
}
.bl_formConfirm_txt{color:#FFF;}
/* 確認・送信 */
.bl_form_confirm,
.bl_form_submit {
	background: #fff;
	border: 1px solid #ffd400;
	color: #000;
}

/* 戻る */
.bl_form_back {
	background: #b0b0b0;
	color: #fff;
}

/* hover */
.bl_form_confirm:hover,
.bl_form_submit:hover {
	background: #ffd400;
	color: #000;
}

.bl_form_back:hover {
	opacity: .5;
}

/* disabled */
.bl_form_confirm[disabled] {
	background: #ccc;
	cursor: not-allowed;
}

/* =========================
   確認画面非表示
========================= */
.bl_formConfirm,
.wpcf7-response-output,
.bl_formConfirm .wpcf7-spinner {
	display: none;
}

/* =========================
   完了画面
========================= */
.bl_formThanks_ttl,
.bl_formThanks_txt,
.bl_formConfirm_txt {
	text-align: center;
}

.bl_formThanks_ttl {
	font-size: 24px;
	font-weight: 700;
}

.bl_formThanks_txt {
	margin-top: 1em;
}

.bl_formConfirm_txt {
	margin-bottom: 2em;
}

.bl_confirm_message {
	line-height: 1.6;
	white-space: pre-wrap;
}

.bl_confirm_contact_type {
	margin-bottom: 2em;
}

/* =========================
   プライバシー
========================= */
.porcy_box {
	width: 100%;
	margin: 40px 0;
	padding-top: 40px;
	border-top: 1px solid #ffd400;
}

.contact__privacy {
	max-width: 100%;
	max-height: 250px;
	margin: 0 auto 1em;
	padding: 1em 1.3em;
	background: #fff;
	border: 2px solid #808080;
	border-right-width: 1px;
	overflow-y: auto;
	text-align: left;
	line-height: 1.4;
	font-size: clamp(14px, 1.6vw, 16px);
	scrollbar-width: thin;
	scrollbar-color: #ef940e #c7c7c7;
}
.wpcf7-list-item-label{color:#FFF;}
.contact__privacy p,
.contact__privacy h3 {
	font-size: clamp(14px, 1.6vw, 16px);
	line-height: 2;
	margin-bottom: 10px;
	font-weight: 400;
}
.contact__privacy h3{
	color:#0073b4;
}
.contact__privacy::-webkit-scrollbar {
	width: 10px;
}

.contact__privacy::-webkit-scrollbar-track {
	background: #c7c7c7;
}

.contact__privacy::-webkit-scrollbar-thumb {
	background: #808080;
}

/* =========================
   PC
========================= */
@media (min-width: 768px) {
	.bl_form_group {
		display: grid;
		grid-template-columns: 36% 1fr;
		gap: 3%;
		align-items: start;
		font-size:20px;
	}

	.bl_form_radio,
	.bl_form_checkbox {
		grid-auto-flow: column;
	}

	.bl_con_check span::before,
	.bl_con_check span::after {
		content: none;
	}
}

/* =========================
   SP
========================= */
@media (max-width: 768px) {
	

	.bl_form,
	.bl_formConfirm,
	.bl_formThanks {
		padding: 2.125rem 1.5rem;
	}

	.bl_form_btn {
		flex-direction: column;
	}

	.bl_form_btn > * {
		width: 100%;
		max-width: 335px;
		flex: none;
	}
}

.page_item{
	padding:120px 60px 80px;
}
.page_item p{
	font-size:20px;line-height:1.6;
}
.page_item h1{
	margin-bottom:30px;
}