body {
	font-family: "M PLUS 1", sans-serif;
	font-optical-sizing: auto;
}

.inner {
	padding: 0 16px;
	max-width: 1000px;
	margin: 0 auto;
}

.ellipse {
	margin-top: 12px;
	text-align: center;
	line-height: 0;
}

.ellipse>span {
	width: 6px;
	height: 6px;
	background-color: #dd2723;
	display: inline-block;
	margin: 0 6px;
	border-radius: 50%;
}

.tablet_only {
	display: none !important;
}

.pc_only {
	display: none !important;
}

.note {
	font-size: 12px;
	color: #FFF;
	text-align: end;
}

@media only screen and (min-width: 768px) {
	.inner {
		padding: 0 48px;
	}

	.sp_only {
		display: none !important;
	}

	.tablet_only {
		display: block !important;
	}

	.pc_only {
		display: none !important;
	}
}

@media only screen and (min-width: 1024px) {
	.ellipse {
		margin-top: 24px;
	}

	.ellipse>span {
		width: 8px;
		height: 8px;
	}

	.sp_only {
		display: none !important;
	}

	.tablet_only {
		display: none !important;
	}

	.pc_only {
		display: block !important;
	}
}

/* ------------------------------ */
/* kv */
/* ------------------------------ */
.kv {
	margin: 0;
	width: 100%;
}

.kv_img {
	width: 100%;
}

/* ------------------------------ */
/* cta */
/* ------------------------------ */
.cta {
	padding: 12px 0;
}

.cta.--red {
	background-color: #dd2723;
	padding: 16px 0 24px;
}

.cta.--first {
	padding-bottom: 24px;
	padding-top: 12px;
}

.cta__title {
	text-align: center;
	margin: 0;
	line-height: 1;
}

.cta__inner {
	margin-top: 12px;
}

.cta__title img {
	width: 100%;
	max-width: 260px;
	height: auto;
}

/* ★「店舗を探す」ボタン（白背景・赤文字） */
.cta__link {
	color: #dd2723;
	display: flex;
	padding: 12px 0px;
	justify-content: center;
	align-items: center;
	gap: 8px;
	border-radius: 36px;
	background: #ffffff;
	border: 2px solid #dd2723;
	box-shadow: 0px 4px 0px 0px #dd2723;
	box-sizing: border-box;
	text-decoration: none;
	font-weight: bold;
	max-width: 398px;
	margin: 0 auto;
	line-height: 1.6;
	transition: 0.325s ease-in-out;
}

/* ------------------------------ */
/* ★「訪問相談」ボタン（基本：赤背景・白文字） */
/* ※HTML側のクラス名は is-blue のまま流用しています */
/* ------------------------------ */
.cta__link.is-blue {
    background: #dd2723; 
    box-shadow: 0px 4px 0px 0px #9f0000; 
	color: #ffffff;
	position: relative;
}

/* 訪問相談ボタン（基本：赤背景）の文字色（「訪問相談」） */
.cta__link.is-blue span:not(.balloon) {
    color: #ffffff;
}

.cta__link.is-blue img {
    width: 28px !important;
    height: 28px !important;
    object-fit: contain; 
	transform: translateY(1px);
}

/* ★無料相談実施中(--red)の中にあるスタイル */

/* 無料相談実施中(--red)の中にある訪問相談ボタンは背景と同化するため反転（白背景・赤文字） */
.cta.--red .cta__link.is-blue {
    color: #dd2723;
    background-color: #ffffff;
	box-shadow: 0px 4px 0px 0px #9f0000;
}

/* 反転ボタン内の文字（吹き出し以外）を赤にする */
.cta.--red .cta__link.is-blue span:not(.balloon) {
    color: #dd2723;
}

/* 吹き出し本体（基本：白背景・赤文字） */
.balloon {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    border: 2px solid #dd2723;
    color: #dd2723;
    font-size: 14px;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 8px;
    white-space: nowrap;
    z-index: 5;
    line-height: 1.4;
}

/* 👇修正箇所：赤背景エリア内での吹き出し（反転：赤背景・白文字） */
/* セレクタの優先順位を上げて継承による赤文字化を防ぎ、確実に白文字にする */
.cta.--red .cta__link.is-blue .balloon {
    background-color: #dd2723;
    color: #ffffff;
}

/* 吹き出しの三角形 */
.balloon::after, .balloon::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: solid transparent;
}
.balloon::before {
    border-top-color: #dd2723;
    border-width: 8px;
    margin-top: 0px;
}
.balloon::after {
    border-top-color: #ffffff;
    border-width: 8px;
    margin-top: -2px; 
}

/* 🌟 無料相談実施中(--red)の中にある吹き出しも反転させる */
.cta.--red .balloon {
    border-color: #ffffff;
}

/* 👇修正箇所：吹き出しの三角形（赤背景エリア内用） */
/* 三角形全体を吹き出しと同じ赤色にする */
.cta.--red .balloon::before {
    border-top-color: #dd2723;
}
.cta.--red .balloon::after {
    border-top-color: #dd2723;
	margin-top: -3px; /* 線の重なり調整 */
}


:not(.view) > .cta .cta__link.is-blue,
.cta:not(.fixed-cta-area) .cta__link.is-blue {
    margin-top: 35px; 
}

/* ------------------------------ */
/* ここまで */
/* ------------------------------ */

.cta.--red .cta__link {
	color: #dd2723;
	background-color: #ffffff;
}

.cta__title+.cta__link {
	margin-top: 12px;
}

.cta__link+.cta__link {
	margin-top: 16px;
}

@media only screen and (min-width: 768px) {
	.cta__inner {
		display: flex;
		justify-content: center;
		width: 100%;
		gap: 32px;
		margin: 16px auto 0;
	}

	.cta__link {
		flex-grow: 1;
		width: 398px;
		margin: 0;
	}

	.cta__link+.cta__link {
		margin-top: 0;
	}

	.cta__title img {
		max-width: 450px;
	}

    .balloon {
        font-size: 16px !important;
        top: -25px;
        padding: 4px 12px;
    }

	.cta:not(.fixed-cta-area) .cta__link.is-blue {
    	margin-top: 0;
	}
	 
	.cta:not(.fixed-cta-area) .cta__inner {
        margin: 40px auto 0 !important; 
        display: flex;
        justify-content: center;
        align-items: flex-start; 
        gap: 32px;
    }

	.cta:not(.fixed-cta-area) .cta__link {
        flex: 1; 
        width: 100%;
        max-width: 398px;
        margin: 0;
    }

    .cta.--first .cta__inner {
        margin-top: 20px !important; 
    }
}

@media only screen and (min-width: 1024px) {
	.cta.--red {
		padding: 24px 0 32px;
	}

	.cta.--last {
		padding: 48px 0 56px;
	}

	.cta__inner {
		width: 85%;
		gap: 32px;
	}

	.cta__link {
		width: 318px;
		font-size: 20px;
		padding: 20px 0;
		gap: 16px;
	}

	.cta__link img {
		width: 30px;
		height: 30px;
	}
}

@media (any-hover: hover) {
	.cta__link:hover {
		opacity: 0.9;
		box-shadow: 0px 0px 0px 0px transparent;
	}
}

/* ------------------------------ */
/* problem */
/* ------------------------------ */
.problem {
	margin-top: 24px;
	padding-bottom: 152px;
}

.problem__title {
	color: #0b082c;
	text-align: center;
	font-size: 20px;
	font-style: normal;
	font-weight: bold;
	line-height: 160%;
	letter-spacing: 1px;
	margin: 0;
}

.problem__title>span {
	color: var(--hoken-red, #dd2723);
	font-size: 24px;
	font-style: normal;
	padding-right: 4px;
	background: linear-gradient(transparent 60%, #ffe780 60%);
}

.problemItem {
	display: flex;
	width: 300px;
	height: 140px;
	padding: 24px 0px 16px 0px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 8px;
	border-radius: 320px;
	background: #ffeaea;
	position: relative;
	text-decoration: none;
	box-sizing: border-box;
	margin: 24px auto 0;
	transform: translate(-22px, 0);
}

.problemItem:hover {
	border: 8px solid #dd2723;
	padding-bottom: 12px;
}

.problemItem__text {
	color: #0b082c;
	font-size: 16px;
	line-height: 160%;
	letter-spacing: 1px;
	margin: 0;
	font-weight: bold;
}

.problemItem__text>span {
	color: #dd2723;
}

.problemItem__image {
	width: 98px;
	height: 98px;
	position: absolute;
	bottom: 0px;
	right: -54px;
}

.problemItem:hover>.problemItem__image {
	bottom: -8px;
	right: -62px;
}

.problemItem__arrow {
	transition: all 0.5s linear;
}

.problemItem:hover .problemItem__arrow {
	padding-top: 4px;
	transition: all 0.5s linear;
}

@media only screen and (min-width: 768px) {
	.problemItem {
		width: 450px;
		transform: translate(-26px, 0);
	}

	.problem__title {
		font-size: 32px;
	}

	.problem__title>span {
		font-size: 38px;
	}
}

@media only screen and (min-width: 1024px) {
	.problem {
		padding: 28px 0 276px;
	}

	.problem__inner {
		display: flex;
		padding-top: 24px;
	}

	.problemItem {
		width: 296px;
		height: 296px;
		text-align: center;
		transform: translate(0, 0);
	}

	.problemItem__text {
		font-size: 20px;
	}

	.problemItem__image {
		width: 150px;
		height: 150px;
		top: 216px;
		left: 0;
		right: 0;
		margin: 0 auto;
	}

.problemItem:hover>.problemItem__image {
		top: 208px;
		left: 0;
		right: 0;
		margin: 0 auto;
	}

.problemItem:hover>.problemItem__text {
		margin-top: -4px;
	}

	.problemItem__arrow {
		position: absolute;
		left: 0;
		right: 0;
		top: 400px;
		margin: 0 auto;
		width: 40px;
		height: 24px;
	}

	.problemItem:hover .problemItem__arrow {
		padding-top: 0;
		top: 404px;
	}
}

/* ------------------------------ */
/* recommend */
/* ------------------------------ */
.recommend {
	background-color: #ebf6ff;
	padding-top: 72px;
	padding-bottom: 32px;
}

.recommend__title {
	text-align: center;
	margin-top: -175px;
	margin-bottom: 0;
	line-height: 0;
}

.recommend__title img {
	width: 100%;
	max-width: 400px;
}

.recommendItem {
	margin-top: 16px;
}

.recommendItem+.recommendItem {
	margin-top: 40px;
}

.recommendItem__title {
	margin: 0;
	line-height: 0;
}

.recommendItem__title img {
	width: 100%;
	max-width: 900px;
}

.recommendItem__text {
	display: flex;
	padding: 24px 12px;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	border-radius: 20px;
	background: #fff;
}

.recommendItem__text>h4 {
	color: #0b082c;
	font-size: 18px;
	font-weight: bold;
	line-height: 160%;
	letter-spacing: 1px;
	margin: 0;
}

.recommendItem__text>h4>span {
	color: var(--hoken-red, #dd2723);
	background: linear-gradient(transparent 60%, #ffe780 60%);
}

.recommendItem__text p {
	color: #0b082c;
	font-size: 14px;
	line-height: 160%;
	letter-spacing: 1px;
	margin: 0 0 20px;
}

.recommendItem__text img {
	width: 100%;
}

.point {
	display: flex;
	padding: 64px 16px 32px 16px;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	border-radius: 20px;
	border: 4px solid #dd2723;
	background: #fff;
	margin-top: 80px;
	position: relative;
}

.point__title {
	text-align: center;
	position: absolute;
	top: -40px;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.point__title img {
	width: 250px;
}

.pointItem {
	width: 100%;
}

.pointItem+.pointItem {
	margin-top: 24px;
}

.pointItem__title {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
}

.pointItem__title>span:first-child {
	width: 80px;
	height: 80px;
}

.pointItem__title>span:last-child {
	color: #0b082c;
	font-size: 20px;
	font-weight: bold;
	line-height: 160%;
	letter-spacing: 1px;
}

.pointItem__title>span>img {
	width: 100%;
}

.pointItem__text {
	color: #0b082c;
	font-size: 16px;
	line-height: 160%;
	letter-spacing: 1px;
	margin: 0;
}

@media only screen and (min-width: 768px) {
	.recommend__title img {
		max-width: inherit;
	}

	.recommendItem__title img {
		max-width: 691px;
	}

	.recommendItem__text>h4 {
		font-size: 28px;
	}

	.recommendItem__inner {
		display: flex;
		flex-direction: row-reverse;
		gap: 20px;
		align-items: center;
	}

	.recommendItem__text p {
		font-size: 16px;
		margin: 0;
	}

	.recommendItem__text img {
		width: 240px;
	}

	.point__title img {
		width: 400px;
	}
}

@media only screen and (min-width: 1024px) {
	.recommend {
		padding-bottom: 96px;
	}

	.recommendItem {
		padding: 0 50px;
	}

	.recommendItem+.recommendItem {
		margin-top: 64px;
	}

	.recommendItem__title img {
		max-width: 900px;
	}

	.recommendItem:nth-child(2) .recommendItem__title img {
		max-width: 746px;
	}

	.recommendItem:nth-child(3) .recommendItem__title img {
		max-width: 698px;
	}

	.recommendItem__text {
		padding: 40px 56px;
	}

	.recommendItem__text>h4 {
		font-size: 32px;
	}

	.point {
		margin-top: 153px;
		border-width: 8px;
		padding: 80px;
		border-radius: 40px;
	}

	.point__title img {
		width: 694px;
		margin-top: -38px;
	}

	.pointItem+.pointItem {
		margin-top: 0;
	}

	.point__inner {
		display: flex;
		gap: 40px;
	}

	.pointItem__title {
		display: flex;
		flex-direction: column;
		text-align: center;
		gap: 0;
	}

	.pointItem__title>span:first-child {
		width: 200px;
		height: 200px;
	}

	.pointItem__title>span:last-child {
		margin-top: 16px;
	}

	.pointItem__text {
		margin-top: 16px;
	}
}

/* ------------------------------ */
/* voice */
/* ------------------------------ */
.voice {
	padding: 48px 0;
}

.voice__title {
	color: #0b082c;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	line-height: 160%;
	letter-spacing: 1px;
	margin: 0;
}

.voiceCard {
	width: 290px;
	height: 570px;
	position: relative;
}

.voiceCard__inner {
	height: 482px;
	padding: 28px 24px;
	background-color: #ebf6ff;
	border-radius: 20px;
}

.voiceCard__title {
	color: #0b082c;
	font-size: 18px;
	font-weight: bold;
	line-height: 160%;
	letter-spacing: 1px;
	margin: 0;
}

.voiceCard__text {
	color: #0b082c;
	font-size: 14px;
	line-height: 160%;
	letter-spacing: 1px;
	margin-top: 12px;
	margin-bottom: 0;
}

.voiceCard__age {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin: -26px 0 0;
	gap: 20px;
	font-weight: bold;
}

.voiceCard__age img {
	width: 94px;
	height: 94px;
}

.swiper {
	width: 100%;
	height: 610px;
	margin: 32px auto 0;
	max-width: 928px;
}

.swiper-button-next,
.swiper-button-prev {
	background-color: #dd2723;
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

.swiper-button-next::after {
	content: url(https://file.mysquadbeyond.com/uploads/article_photo/photo/5175921/b29aa7ee-3907-4366-8734-a15c6b4c43af.svg);
	width: 10px;
	height: 20px;
	position: absolute;
	top: -8px;
	left: 16px;
}

.swiper-button-prev::after {
	content: url(https://file.mysquadbeyond.com/uploads/article_photo/photo/5175917/f8b3543a-1a67-4573-ba32-bd94142633f7.svg);
	width: 10px;
	height: 20px;
	position: absolute;
	top: -10px;
	left: 12px;
}

@media only screen and (min-width: 768px) {
	.voiceCard__inner {
		height: 344px;
	}

	.voice__title {
		font-size: 32px;
	}
}

@media only screen and (min-width: 1024px) {
	.voice {
		padding-top: 96px;
	}

	.voiceCard__inner {
		height: 420px;
	}
}

/* ------------------------------ */
/* flow */
/* ------------------------------ */
.flow {
	padding: 40px 0;
	background-color: #ebf6ff;
}

.flow__title {
	color: #0b082c;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	line-height: 160%;
	letter-spacing: 1px;
	margin: 0;
}

.flowItem {
	background-color: #ffffff;
	border-radius: 12px;
	padding: 20px 16px;
	position: relative;
	max-width: 736px;
	margin: 32px auto 0;
}

.flowItem__pcImage {
	display: none;
}

.flowItem+.flowItem {
	margin-top: 58px;
}

.flowItem__step {
	position: absolute;
	top: -48px;
	color: #ffffff;
	background-color: #dd2723;
	width: 54px;
	height: 54px;
	font-size: 12px;
	text-align: center;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	flex-direction: column;
	line-height: 0.9;
}

.flowItem__step>span {
	font-size: 28px;
	font-weight: bold;
}

.flowItem__title {
	display: flex;
	align-items: center;
	gap: 8px;
	align-self: stretch;
	margin: 0;
}

.flowItem__title>span:first-child {
	width: 72px;
	height: 72px;
}

.flowItem__title>span:last-child {
	color: #0b082c;
	font-size: 18px;
	font-weight: bold;
	line-height: 160%;
	letter-spacing: 1px;
}

.flowItem__title>span>img {
	width: 100%;
}

.flowItem__text {
	color: #0b082c;
	font-size: 14px;
	line-height: 160%;
	letter-spacing: 1px;
	margin-top: 12px;
	margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
	.flow {
		padding: 96px 0;
		background-color: #ebf6ff;
	}

	.flow__title {
		font-size: 32px;
	}

	.flowItem {
		display: flex;
		padding: 32px;
		gap: 40px;
		align-items: center;
	}

	.flowItem__pcImage {
		display: block;
		width: 160px;
		height: 160px;
	}

	.flowItem__step {
		top: -54px;
		left: -40px;
		width: 80px;
		height: 80px;
		line-height: 1;
	}

	.flowItem__title>span:last-child {
		font-size: 20px;
	}

	.flowItem__text {
		font-size: 16px;
	}
}

@media only screen and (min-width: 1024px) {
	.flowItem {
		margin-top: 74px;
	}
}

/* ------------------------------ */
/* qa */
/* ------------------------------ */
.qa {
	padding: 40px 0;
}

.qa__title {
	color: #0b082c;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	line-height: 160%;
	letter-spacing: 1px;
	margin: 0;
}

.qaItem {
	display: flex;
	padding: 16px;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	border-radius: 20px;
	background-color: #ebf6ff;
	margin: 24px auto 0;
	max-width: 720px;
}

.qaItem+.qaItem {
	margin-top: 8px;
}

.qaItem__text {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin: 0;
}

.qaItem__text.--note {
	gap: 22px;
	font-size: 12px;
}

.qaItem__text>span:last-child {
	font-weight: bold;
}

.qaItem__text.--answer>span:last-child {
	font-weight: normal;
}

.qaItem__text.--note>span:last-child {
	font-weight: normal;
}

.qaItem__text>span:first-child {
	color: #dd2723;
	font-size: 20px;
	font-weight: 800;
	line-height: 106%;
}

.qaItem__text>span:last-child {
	color: #0b082c;
	font-size: 14px;
	line-height: 160%;
	letter-spacing: 1px;
}

@media only screen and (min-width: 768px) {
	.qa__title {
		font-size: 32px;
	}

	.qaItem {
		margin-top: 64px;
		padding: 32px 40px;
	}

	.qaItem+.qaItem {
		margin-top: 22px;
	}

	.qaItem__text>span:first-child {
		font-size: 32px;
	}

	.qaItem__text>span:last-child {
		font-size: 20px;
		font-weight: bold;
	}

	.qaItem__text.--answer {
		margin-top: 16px;
	}

	.qaItem__text.--answer>span:last-child {
		font-size: 16px;
		font-weight: normal;
	}

	.qaItem__text.--note>span:last-child {
		font-size: 12px;
		font-weight: normal;
		line-height: 1;
	}
}

@media only screen and (min-width: 1024px) {
	.qa {
		padding: 96px 0;
	}

	.qaItem__text.--answer {
		margin-top: 4px;
	}

	.qaItem__text {
		gap: 16px;
	}
}

/* ------------------------------ */
/* footer */
/* ------------------------------ */
.footer {
	padding: 8px 0 110px 0;
	background-color: #0b082c;
}

.footerLink__item>a {
	color: #fff;
	text-decoration: none;
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	font-family: "Noto Sans JP";
	font-size: 14px;
	font-weight: 700;
	line-height: 160%;
}

.footerLink__item>a:hover {
	text-decoration: underline;
}

.footerLink__item>a>img {
	margin-top: -4px;
	padding-left: 4px;
	width: 10px;
	height: 9px;
	vertical-align: middle;
}

.footerCopy {
	padding-top: 8px;
}

.footerCopy__text {
	color: #fff;
	text-align: right;
	font-family: "Noto Sans JP";
	font-size: 12px;
	line-height: 160%;
	letter-spacing: 1px;
}

.footerCopy__copy {
	color: #fff;
	text-align: right;
	font-family: "Noto Sans JP";
	font-size: 14px;
	font-style: normal;
	font-weight: bold;
	line-height: 160%;
}

@media only screen and (min-width: 768px) {
	.footerInner {
		display: flex;
		justify-content: space-between;
	}

	.footerLink {
		display: flex;
		gap: 20px;
	}
}

@media only screen and (min-width: 1024px) {
	.footerLink {
		gap: 40px;
	}
}

/* ------------------------------ */
/* swiper */
/* ------------------------------ */

@media (any-hover: hover) {
	.swiper-button-prev:hover {
		opacity: 0.8;
	}

	.swiper-button-next:hover {
		opacity: 0.8;
	}
}

/* ------------------------------ */
/* フロートCTA */
/* ------------------------------ */

.view {
	display: block;
	position: fixed;
	left: 0;
	bottom: 0;
	background-color: #ffffff;
	width: 100%;
	z-index: 10;
	opacity: 0;
	transition: opacity 350ms ease;
}

.view.is-hide {
	pointer-events: none;
}

.view.close {
	display: none;
}

.footer.close {
	padding-bottom: 8px;
}

.fixed-cta-area {
	padding: 1.5vw 0 4vw 0;
	position: relative;
}

.fixed-cta-area .close__btn {
	width: 5.333vw;
	position: absolute;
	right: 1.333vw;
	top: 0;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	cursor: pointer;
}

.fixed-cta-area .close__btn img {
	width: 100%;
}

.fixed-cta-area .cta__flex {
	display: flex;
	justify-content: center;
	margin-top: 2vw;
	color: #ffffff;
}

.cta__flex .cta__link+.cta__link {
	margin-top: 0;
}

.cta__flex .cta__link {
	width: 44.667vw;
}

/* 白ボタン内のリンクテキストを赤に */
.fixed-cta-area .cta__flex .cta__link a {
	color: #dd2723;
	text-decoration: none;
}
/* 赤ボタン(is-blue)内のリンクテキストは白のまま */
.fixed-cta-area .cta__flex .cta__link.is-blue a {
	color: #ffffff;
}

@media only screen and (min-width: 768px) {

	.footer {
		padding-bottom: 160px;
	}

	.fixed-cta-area {
		padding: 12px 0 24px 0;
	}

	.fixed-cta-area .close__btn {
		width: 60px;
		right: 10px;
	}

	.fixed-cta-area .inner {
		width: 85%;
		max-width: 1200px;
	}

	.fixed-cta-area .cta__flex {
		gap: 36px;
		margin-top: 14px;
	}

}

/* ------------------------------ */
/* コンテンツ追加部分 */
/* ------------------------------ */
.zisseki {
	margin-top: 24px;
	padding-bottom: 24px;
}

.zisseki__title {
	color: #0b082c;
	text-align: center;
	font-size: 20px;
	font-style: normal;
	font-weight: bold;
	line-height: 160%;
	letter-spacing: 1px;
	margin: 0;
	padding-bottom: 24px;
}

.zisseki__title>span {
	color: var(--hoken-red, #dd2723);
	font-size: 24px;
	font-style: normal;
	padding-right: 4px;
	background: linear-gradient(transparent 60%, #ffe780 60%);
}

@media only screen and (min-width: 768px) {
	.zisseki {
		padding-top: 24px;
	}

	.zisseki__title {
		font-size: 32px;
		margin-bottom: 16px;
	}

	.zisseki__title>span {
		font-size: 38px;
	}
}

.consent {
	margin-top: 24px;
	padding-bottom: 24px;
}

.consent__title {
	color: #0b082c;
	text-align: center;
	font-size: 20px;
	font-style: normal;
	font-weight: bold;
	line-height: 160%;
	letter-spacing: 1px;
	margin: 0;
	padding-bottom: 24px;
}

.consent__title>span {
	color: var(--hoken-red, #dd2723);
	font-size: 20px;
	font-style: normal;
	padding-right: 4px;
	background: linear-gradient(transparent 60%, #ffe780 60%);
}

.graph {
	text-align: center;
}

.graph img {
	width: 100%;
	max-width: 600px;
}

.graph-note {
	font-size:10px;
}

@media only screen and (min-width: 768px) {
	.consent {
		padding-top: 24px;
	}

	.consent__title {
		font-size: 32px;
		margin-bottom: 16px;
	}

	.consent__title>span {
		font-size: 38px;
	}

	.graph-note {
		font-size:14px;
	}
}

.store {
	margin-top: 24px;
	padding-bottom: 24px;
}

.store__title {
	color: #0b082c;
	text-align: center;
	font-size: 20px;
	font-style: normal;
	font-weight: bold;
	line-height: 160%;
	letter-spacing: 1px;
	margin: 0;
	padding-bottom: 24px;
}

.store__title>span {
	color: var(--hoken-red, #dd2723);
	font-size: 21px;
	font-style: normal;
	padding-right: 4px;
	background: linear-gradient(transparent 60%, #ffe780 60%);
}

.store__title>sub {
	font-size: 10px;
}

.map {
	text-align: center;
}

.map img {
	width: 100%;
	max-width: 600px;
}

@media only screen and (min-width: 768px) {
	.store {
		padding-top: 24px;
	}

	.store__title {
		font-size: 32px;
		margin-bottom: 16px;
	}

	.store__title>span {
		font-size: 38px;
	}

	.store__title>sub {
		font-size: 14px;
    }
}

/* ------------------------------ */
/* soudan02 */
/* ------------------------------ */
.point3 {
    background-color: #ebf6ff;
    padding-top: 2px;
    padding-bottom:24px;
}

.problem.soudan02 {
	margin-top: 48px;
}
@media only screen and (min-width: 768px){
	.point3 {
		padding-bottom:96px;
	}
}

/* ------------------------------ */
/* SP表示時のCTAエリア調整（ボタン1つ・2つの両方に対応） */
/* ------------------------------ */
@media only screen and (max-width: 767px) {
    .cta__inner {
        display: flex;
        flex-direction: column;
        align-items: center; /* ボタンを中央寄せにする */
    }
    
    .cta__inner > .cta__link {
        width: 100%;
        max-width: 295px; /* ここで画面幅いっぱいに広がるのを防ぐ */
        margin-left: 0;
        margin-right: 0;
    }

    /* 訪問相談ボタンを上に配置 */
    .cta__inner > .cta__link.is-blue {
        order: 1;
    }

    /* 店舗検索ボタン（がある場合）を下に配置し、上に隙間を空ける */
    .cta__inner > .cta__link:not(.is-blue) {
        order: 2;
        margin-top: 16px !important;
    }
}
/* ------------------------------ */
/* テキストリンク追加部分 */
/* ------------------------------ */
.text-link-area {
    margin-top: 24px;
    text-align: center;
}

.text-link-area .c-link {
    display: inline-block;
    position: relative;
    padding-left: 18px;
    color: #dd2723;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.text-link-area .c-link::before {
    content: "";
    position: absolute;
    top: 50%; /* 縦の中央を基準にする */
    left: 0;
    width: 10px;
    height: 10px;
    border-top: 2px solid;
    border-right: 2px solid;
    transform: translateY(-50%) rotate(45deg); /* 基準から自身の半分の高さ分だけ上に戻して中央揃え */
    transition: 0.3s;
}

@media (any-hover: hover) {
    .text-link-area .c-link:hover {
        text-decoration: underline;
    }
    .text-link-area .c-link:hover::before {
        transform: translate(2px, -50%) rotate(45deg); /* ホバー時もY軸の中央揃えをキープしつつ右に動かす */
    }
}

@media only screen and (max-width: 767px) {
    .text-link-area {
        margin-top: 16px;
    }
    .text-link-area .c-link {
        font-size: 16px;
        padding-left: 14px;
    }
    .text-link-area .c-link::before {
        width: 8px;
        height: 8px;
        /* SP表示でも top: 50%; が効くため、固定値の指定は不要になります */
    }
}