/* リキッドレイアウト対応 */

:root {
	--base-font-family: 'Noto Sans JP', sans-serif;
	--padding-pc: 1.875rem;
	--regular: 400;
	--medium: 500;
	--bold: 700;
	--extra-bold: 900;
	--black: #000;
	--white: #fff;
	--red: #f1360f;
	--red2: #d05052;
	--orange: #fc5e01;
	--yellow: #ffff04;
	--brown: #72560e;
	--bg-beige: #fff7ea;
	--bg-beige2: #fff2ea;
	--bg-pink: #fce5d6;
	--gray-light: #f3f3f3;
	--gray-border: #dadada;
}

body {
	font-family: var(--base-font-family);
}

/* pcの電話番号発信対応 */

a[href^="tel:"] {
	pointer-events: none;
}

a {
	text-decoration: none;
	color: inherit;
}

img {
	height: 100%;
	object-fit: cover;
}

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

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core root defaults */

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

/* Set core body defaults */

body {
	min-height: 100vh;
	text-rendering: optimizeSpeed;
	line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img {
	max-width: 100%;
	display: block;
	width: 100%;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
	font: inherit;
}

/* Blur images when they have no alt attribute */

img:not([alt]) {
	filter: blur(10px);
}

/* フォームリセット */

input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

textarea {
	resize: vertical;
}

input[type=checkbox],
input[type=radio] {
	display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

html {
	overflow-wrap: break-word;
}

.button {
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: url("../images/button-bg.svg");
	background-repeat: no-repeat;
	width: 100%;
	border-radius: 18.75rem;
	aspect-ratio: 218/29;
	background-size: cover;
	transition: 0.3s ease-in-out all;
	position: relative;
	z-index: 6;
}

.inner {
	max-width: 90.625rem;
	padding: 0 var(--padding-pc);
	margin-inline: auto;
}

body {
	background-color: #ffeeef;
}

main {
	max-width: 53.75rem;
	padding: 0 var(--padding-pc);
	margin-inline: auto;
}

.header {
	height: 3.75rem;
	background-color: var(--red2);
	display: flex;
	align-items: center;
	justify-content: center;
}

.header__logo {
	width: 2.8125rem;
	height: 2.8125rem;
}

.header__logo img {
	object-fit: contain;
}

.fv {
	position: relative;
	aspect-ratio: 800/440;
}

.ranking {
	background-color: var(--white);
}

.ranking__title {
	margin: 0 1.875rem;
	font-family: var(--base-font-family);
	font-size: 2rem;
	font-weight: var(--bold);
	color: var(--yellow);
	line-height: 1.1;
	text-align: center;
	background-color: var(--red);
	padding: 0.5rem 0.875rem;
	margin-bottom: 0.8125rem;
}

.ranking__title span {
	display: block;
	font-size: 1.5rem;
	font-weight: var(--bold);
	color: var(--white);
	line-height: 1.1;
}

.ranking__crown {
	text-align: center;
	margin-bottom: 0.3125rem;
	aspect-ratio: 98/70;
	width: 6.125rem;
	margin-inline: auto;
}

.ranking__crown img {
	object-fit: contain;
}

.ranking__list {
	display: flex;
	gap: 1.75rem;
	justify-content: center;
}

.ranking__item {
	width: 13.75rem;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.ranking__item-title {
	border: 1px solid #f1360f;
	width: 100%;
	padding: 0rem 0.625rem;
	text-align: center;
	font-family: var(--base-font-family);
	font-size: 1.125rem;
	font-weight: var(--bold);
	color: var(--red);
	line-height: 1.5;
}

.ranking__item-image {
	aspect-ratio: 220/183;
}

.ranking__item-image img {
	object-fit: contain;
}

.ranking__item-text {
	font-family: var(--base-font-family);
	font-size: 1.125rem;
	font-weight: var(--extra-bold);
	color: var(--black);
	line-height: 1.2;
	text-align: center;
}

.ranking__item-text--highlight {
	color: var(--red);
}

.ranking__item-link {
	color: var(--white);
	font-family: var(--base-font-family);
	font-size: 1rem;
	font-weight: var(--bold);
}

.ranking__podium {
	margin-inline: auto;
	width: -moz-fit-content;
	width: fit-content;
	margin-top: -1px;
	aspect-ratio: 740/140;
	width: 46.25rem;
}

.purpose {
	padding: 2.5rem 1.875rem 0;
	background-color: var(--bg-beige);
}

.purpose__title {
	font-family: var(--base-font-family);
	font-size: 2rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1.2;
	text-align: center;
	margin-bottom: 1rem;
}

.purpose__graph {
	margin-bottom: 1rem;
	aspect-ratio: 740/367;
}

.purpose__content {
	display: flex;
	gap: 1.375rem;
	align-items: flex-end;
}

.purpose__illust {
	width: 12.8125rem;
	aspect-ratio: 20500/20064;
}

.purpose__text {
	flex: 1;
	padding-bottom: 1.875rem;
}

.purpose__text-header {
	display: flex;
	align-items: center;
	gap: 0.1875rem;
	margin-bottom: 0.875rem;
}

.purpose__text-icon {
	width: 1.875rem;
	aspect-ratio: 30/37;
	object-fit: contain;
}

.purpose__text-title {
	font-family: var(--base-font-family);
	font-size: 1.5rem;
	font-weight: var(--extra-bold);
	color: var(--red);
	line-height: 1.2;
}

.purpose__text-desc {
	font-family: var(--base-font-family);
	font-size: 1.25rem;
	font-weight: var(--extra-bold);
	color: var(--black);
	line-height: 1.2;
}

.purpose__text-desc--highlight {
	color: var(--red);
}

.step {
	padding: 2.5rem 0 4.0625rem;
	background-color: var(--bg-pink);
}

.step__inner {
	padding: 0 1.875rem;
}

.step__title {
	text-align: center;
	margin-bottom: 3.125rem;
}

.step__title-sub {
	display: block;
	font-family: var(--base-font-family);
	font-size: 1.5rem;
	font-weight: var(--extra-bold);
	color: var(--red);
	line-height: 1.2;
}

.step__title-main {
	display: block;
	font-family: var(--base-font-family);
	font-size: 2rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1.2;
}

.step__list {
	display: flex;
	flex-direction: column;
	gap: 2.25rem;
	padding-left: 1.25rem;
	position: relative;
}

.step__list::after {
	content: "";
	display: block;
	position: absolute;
	left: 11.125rem;
	top: 4.125rem;
	width: 1.375rem;
	height: 13.125rem;
	background-color: var(--red);
	z-index: 1;
}

.step__list::before {
	content: "";
	display: block;
	position: absolute;
	aspect-ratio: 42/21;
	width: 2.625rem;
	background-color: var(--red);
	z-index: 1;
	left: 10.5rem;
	top: 16.8125rem;
	clip-path: polygon(0 0, 100% 0, 100% 0%, 50% 100%);
}

.step__item {
	z-index: 2;
	position: relative;
	background-color: var(--white);
	border: 0.1875rem solid #f1360f;
	border-radius: 0.5rem;
	padding: 1.5rem;
}

.step__item-badge {
	position: absolute;
	top: -1.125rem;
	left: -1.5rem;
	background-color: var(--red);
	color: var(--white);
	font-size: 1.125rem;
	font-weight: var(--extra-bold);
	padding: 0.25rem 1.25rem;
	border-radius: 0.5rem;
}

.step__item-content {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

.step__item-text {
	font-family: var(--base-font-family);
	font-size: 1.25rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1.2;
	width: 90%;
}

.step__item-text--highlight {
	color: var(--red);
	line-height: 1.5;
}

.step__item-illust--1 {
	width: 7.4375rem;
	position: absolute;
	bottom: -1px;
	aspect-ratio: 119/134;
	right: 2.25rem;
}

.step__item-illust--2 {
	aspect-ratio: 223/276;
	width: 6.4375rem;
	position: absolute;
	bottom: 0;
	right: 2.8125rem;
}

.step__item-illust--3 {
	aspect-ratio: 131/132;
	width: 8.1875rem;
	position: absolute;
	bottom: -1px;
	right: 1.75rem;
}

.step__item-illust img {
	object-fit: contain;
}

.comparison {
	padding: 2.5rem 0 3.75rem;
	background-color: var(--white);
}

.comparison__inner {
	padding: 0 var(--padding-pc);
}

.comparison__title {
	font-family: var(--base-font-family);
	font-size: 2rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1.2;
	text-align: center;
	margin-bottom: 1.6875rem;
}

.comparison__table {
	width: 100%;
	border-collapse: collapse;
}

.comparison__table-header {
	display: flex;
	background-color: var(--gray-light);
	border: 0.0625rem solid var(--gray-border);
}

.comparison__table-header-cell {
	padding: 0.3125rem 0.625rem;
	text-align: center;
	font-family: var(--base-font-family);
	font-size: 1rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1.2;
	border-right: 0.0625rem solid var(--gray-border);
}

.comparison__table-header-cell:first-child {
	width: 13.75rem;
	flex-shrink: 0;
}

.comparison__table-header-cell:nth-child(2),
.comparison__table-header-cell:nth-child(3),
.comparison__table-header-cell:nth-child(4) {
	flex: 1;
	min-width: 8.125rem;
}

.comparison__table-header-cell:last-child {
	width: 6.25rem;
	flex-shrink: 0;
	border-right: none;
}

.comparison__table-row {
	display: flex;
	border: 0.0625rem solid var(--gray-border);
	border-top: none;
	height: 10.9375rem;
}

.comparison__table-row--highlight .comparison__table-cell {
	background-color: var(--bg-beige2);
}

.comparison__table-cell {
	padding: 0.5rem 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.6875rem;
	border-right: 0.0625rem solid var(--gray-border);
	background-color: var(--white);
}

.comparison__table-cell:first-child {
	width: 13.75rem;
	flex-shrink: 0;
	gap: 0.25rem;
}

.comparison__table-cell:nth-child(2),
.comparison__table-cell:nth-child(3),
.comparison__table-cell:nth-child(4) {
	flex: 1;
	min-width: 8.125rem;
}

.comparison__table-cell:last-child {
	width: 6.25rem;
	flex-shrink: 0;
	border-right: none;
}

.comparison__table-number {
	width: 1.875rem;
	height: 1.5rem;
	object-fit: contain;
}

.comparison__table-image {
	width: 8.125rem;
	height: 6.75rem;
	display: block;
	object-fit: cover;
}

.comparison__table-check {
	width: 2.625rem;
	height: 2.625rem;
	object-fit: contain;
}

.comparison__table-name {
	font-family: var(--base-font-family);
	font-size: 1rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1.2;
	text-align: center;
}

.comparison__table-cell img:not(.comparison__table-image,
.comparison__table-number) {
	width: 2.625rem;
	height: 2.625rem;
	object-fit: contain;
}

.comparison__table-text {
	font-family: var(--base-font-family);
	font-size: 1rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1.2;
	text-align: center;
}

.comparison__table-link {
	display: inline-block;
	padding: 0.625rem 1.25rem;
	background-color: var(--red);
	color: var(--white);
	font-family: var(--base-font-family);
	font-size: 1rem;
	line-height: 1.2;
	font-weight: var(--bold);
	text-decoration: none;
	border-radius: 0.5rem;
	text-align: center;
	transition: 0.3s ease-in-out all;
}

.point__img {
	width: 100%;
	aspect-ratio: 800/250;
}

.point__img img {
	object-fit: contain;
}

.detail {
	padding: 2.5rem 0;
	background-color: var(--white);
}

.detail__inner {
	padding: 0 var(--padding-pc);
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.8125rem;
}

.detail__item {
	background-color: var(--bg-beige);
	border: 0.1875rem solid var(--orange);
	border-radius: 0.5rem;
	padding: 2.5rem 1.25rem;
}

.detail__item-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.detail__item-number {
	width: 3.75rem;
	aspect-ratio: 60/48;
	object-fit: contain;
	flex-shrink: 0;
}

.detail__item-title {
	flex: 1;
}

.detail__item-name {
	font-family: var(--base-font-family);
	font-size: 2rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1.5;
	margin-bottom: 0;
}

.detail__item-catch {
	margin-top: -0.375rem;
	font-family: var(--base-font-family);
	font-size: 0.875rem;
	font-weight: var(--bold);
	color: var(--red);
	line-height: 1.5;
}

.detail__item-content {
	display: flex;
	gap: 2rem;
	background-color: var(--white);
	border-radius: 0 0.5rem 0.5rem 0;
	margin-bottom: 1.5rem;
}

.detail__item-image {
	width: 15.625rem;
	aspect-ratio: 250/200;
	flex-shrink: 0;
}

.detail__item-evaluation {
	flex: 1;
	padding: 1rem 0;
}

.detail__item-rating {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	margin-bottom: 1rem;
	margin-left: -0.25rem;
}

.detail__item-stars {
	width: 9rem;
	aspect-ratio: 144/25;
	object-fit: contain;
}

.detail__item-score {
	font-family: var(--base-font-family);
	font-size: 2rem;
	font-weight: var(--bold);
	color: var(--red);
	line-height: 1;
}

.detail__item-points {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.detail__item-point-header {
	display: flex;
	align-items: center;
	gap: 0.6875rem;
	margin-bottom: 0.3125rem;
	position: relative;
}

.detail__item-point-header::before {
	content: "";
	display: block;
	aspect-ratio: 19/18;
	width: 1.1875rem;
	background-image: url("../images/good-icon.png");
	background-repeat: no-repeat;
	background-size: contain;
}

.detail__item-point-header img {
	width: 1.1875rem;
	aspect-ratio: 19/18;
	object-fit: contain;
}

.detail__item-point-title {
	font-family: var(--base-font-family);
	font-size: 1.25rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1;
}

.detail__item-point-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.detail__item-point-item {
	font-family: var(--base-font-family);
	font-size: 1.25rem;
	font-weight: var(--bold);
	color: var(--red);
	line-height: 1.1;
	display: flex;
	align-items: center;
	gap: 1rem;
	position: relative;
	padding-left: 1.5rem;
}

.detail__item-point-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1rem;
	height: 0.6875rem;
	background-image: url("../images/check-icon.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.detail__item-table {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin-bottom: 1.5rem;
	border-top: 1px solid var(--gray-border);
	border-left: 1px solid var(--gray-border);
	overflow: hidden;
}

.detail__item-table-row {
	display: flex;
	border-bottom: 1px solid var(--gray-border);
}

.detail__item-table-label {
	width: 8.75rem;
	padding: 0.625rem;
	border-right: 0.0625rem solid var(--gray-border);
	font-family: var(--base-font-family);
	font-size: 1rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1.2;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--white);
}

.detail__item-table-value {
	flex: 1;
	padding: 0.625rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-right: 1px solid var(--gray-border);
	gap: 0.1875rem;
	background-color: var(--white);
}

.detail__item-table-row:nth-of-type(1) .detail__item-table-label,
.detail__item-table-row:nth-of-type(2) .detail__item-table-label,
.detail__item-table-row:nth-of-type(1) .detail__item-table-value,
.detail__item-table-row:nth-of-type(2) .detail__item-table-value {
	background-color: #f3f3f3;
}

.detail__item-table-value img {
	width: 2.1875rem;
	height: 2.1875rem;
	object-fit: contain;
}

.detail__item-table-value p {
	font-family: var(--base-font-family);
	font-size: 1rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1.2;
	text-align: center;
}

.detail__item-features {
	position: relative;
	background-color: var(--white);
	border: 0.125rem solid var(--orange);
	border-radius: 0.5rem;
	padding: 1.5rem 0.9375rem 1.5rem 0.9375rem;
	margin-bottom: 1.5rem;
}

.detail__item-features-title {
	position: absolute;
	top: -0.75rem;
	left: 1.25rem;
	background-color: var(--orange);
	color: var(--white);
	font-family: var(--base-font-family);
	font-size: 1rem;
	font-weight: var(--bold);
	padding: 0.3125rem 0.625rem;
	border-radius: 0.5rem;
	line-height: 1;
}

.detail__item-features-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.detail__item-features-item {
	font-family: var(--base-font-family);
	font-size: 1rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1.2;
	position: relative;
	padding-left: 1.5rem;
}

.detail__item-features-item--highlight {
	color: var(--red);
}

.detail__item-features-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.3125rem;
	width: 0.8125rem;
	height: 0.5625rem;
	aspect-ratio: 13/9;
	background-image: url("../images/check-icon.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 0.8125rem auto;
}

.detail__item-features-item--highlight {
	color: var(--red);
}

.detail__item-cta {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	align-items: center;
	text-align: center;
}

.detail__item-cta-text {
	font-family: var(--base-font-family);
	font-size: 1.125rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1;
}

.detail__item-cta-text--highlight {
	color: var(--red);
}

.detail__item-cta-link {
	display: grid;
	place-content: center;
	color: var(--white);
	font-size: 1.125rem;
	font-weight: var(--bold);
	text-align: center;
	width: 32rem;
	margin-inline: auto;
	aspect-ratio: 218/29;
}

.question {
	padding: 0 var(--padding-pc) 2.75rem;
	background-color: var(--white);
}

.question__inner {
	background-color: var(--gray-light);
	padding: 2.5rem 1.25rem 2.5rem;
	margin-bottom: 2.5rem;
}

.question__list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 1rem;
}

.question__item {
	background-color: var(--white);
	padding: 1.125rem 1.5rem;
	border-radius: 0.5rem;
}

.question__item-q {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	margin-bottom: 0.5rem;
}

.question__item-icon {
	width: 2.9375rem;
	height: 2.9375rem;
	flex-shrink: 0;
	position: relative;
}

.question__item-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.question__item-icon--q {
	position: relative;
	width: 2.9375rem;
	aspect-ratio: 1;
	border: 2px solid var(--black);
	border-radius: 50%;
}

.question__item-icon--a {
	display: flex;
	align-items: center;
	justify-content: center;
}

.question__item-text {
	font-family: var(--base-font-family);
	font-size: 1.125rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1.2;
	padding: 0.3125rem 1.875rem 0.4375rem;
	border: 0.125rem solid var(--black);
	border-radius: 13.75rem;
}

.question__item-a {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	position: relative;
}

.question__item-a::after {
	content: "";
	display: block;
	position: absolute;
	right: 1.625rem;
	aspect-ratio: 9/5;
	width: 0.6875rem;
	top: 50%;
	transform: translateY(-50%);
	background-image: url("../images/arrow-down.svg");
	background-repeat: no-repeat;
	background-size: contain;
}

.question__item-select {
	flex: 1;
	padding: 0.625rem 1.875rem;
	line-height: 1;
	border: 0.125rem solid var(--orange);
	border-radius: 1.75rem;
	font-family: var(--base-font-family);
	font-size: 0.875rem;
	font-weight: var(--bold);
	color: var(--black);
	background-color: var(--white);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("../images/common_icon_arrow.svg");
	background-repeat: no-repeat;
	background-position: right 0.625rem center;
	background-size: 0.5625rem 0.3125rem;
}

.question__item-select--first {
	border-radius: 3.625rem;
}

.question__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.question__button {
	padding: 0.625rem;
	border-radius: 0.5rem;
	font-family: var(--base-font-family);
	font-size: 1rem;
	font-weight: var(--bold);
	text-align: center;
	border: none;
	cursor: pointer;
}

.question__button--search {
	width: 31.25rem;
	flex-grow: 1;
	background-color: var(--orange);
	color: var(--white);
	transition: 0.3s ease-in-out all;
}

.question__button--search.is-disabled {
	background-color: var(--gray-border);
	color: var(--gray-text);
	cursor: not-allowed;
	opacity: 0.6;
}

.question__button--reset {
	width: 7.625rem;
	background-color: var(--gray-border);
	color: var(--black);
}

.question__result-message {
	font-family: var(--base-font-family);
	font-size: 1.125rem;
	font-weight: var(--bold);
	color: var(--black);
	text-align: center;
	padding: 1rem 0;
	margin-bottom: 1rem;
}

.question__result-message span {
	color: var(--red);
	font-size: 1.375rem;
}

.question__spinner {
	display: none;
	text-align: center;
	padding: 1.25rem 0;
	margin-bottom: 1rem;
}

.question__spinner-circle {
	display: inline-block;
	width: 2.5rem;
	height: 2.5rem;
	border: 0.25rem solid var(--gray-border);
	border-top-color: var(--orange);
	border-radius: 50%;
	animation: question-spinner-rotate 0.8s linear infinite;
}

.question__note {
	padding: 0.625rem;
	border: 0.125rem solid var(--gray-border);
	border-radius: 0.5rem;
	background-color: var(--white);
}

.question__note-text {
	font-family: var(--base-font-family);
	font-size: 0.875rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1.2;
	position: relative;
}

.question__note-text::after {
	content: "";
	display: block;
	position: absolute;
	right: 0.375rem;
	aspect-ratio: 9/5;
	width: 0.6875rem;
	top: 50%;
	transform: translateY(-50%);
	background-image: url("../images/arrow-down.svg");
	background-repeat: no-repeat;
	background-size: contain;
	transition: 0.3s ease-in-out all;
}

.question__note-text.is-active::after {
	transform: translateY(-50%) scaleY(-1);
}

.question__note-content {
	display: none;
	padding: 1.25rem;
	font-size: 0.875rem;
	line-height: 1.5;
}

.question .detail {
	display: none;
	margin-left: -1.875rem;
	width: calc(100% + 3.75rem);
}

.recommend {
	padding: 2.5rem 0;
	background-color: var(--bg-pink);
}

.recommend__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.3125rem;
	max-width: 32rem;
	margin-inline: auto;
}

.recommend__image {
	width: 25rem;
	aspect-ratio: 400/333;
}

.recommend__image img {
	object-fit: contain;
}

.recommend__text {
	width: 100%;
	text-align: center;
}

.recommend__label {
	font-family: var(--base-font-family);
	font-size: 1rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1.2;
	margin-bottom: 0.9375rem;
}

.recommend__points {
	display: flex;
	flex-direction: column;
	gap: 0.4375rem;
	align-items: center;
}

.recommend__point-badge {
	display: inline-block;
	padding: 0rem 0.625rem;
	background-color: #009d48;
	color: var(--white);
	font-family: var(--base-font-family);
	font-size: 0.875rem;
	font-weight: var(--bold);
	border-radius: 3.125rem;
	margin-bottom: 0.3125rem;
}

.recommend__point-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.4375rem;
}

.recommend__point-item {
	font-family: var(--base-font-family);
	font-size: 1rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1;
	position: relative;
	margin-left: 1.5rem;
	width: -moz-fit-content;
	width: fit-content;
	margin-inline: auto;
	padding-bottom: 0.125rem;
	padding-left: 0.125rem;
}

.recommend__point-item .line-through {
	background: linear-gradient(to bottom, transparent 0 40%, #ffff04 40% 90%, transparent 90% 100%);
}

.recommend__point-item::before {
	content: "";
	position: absolute;
	right: calc(100% + 0.3125rem);
	top: 50%;
	transform: translateY(-50%);
	width: 0.75rem;
	height: 0.5rem;
	background-image: url("../images/check-icon.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.recommend__cta {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	align-items: center;
	text-align: center;
	width: 100%;
}

.recommend__cta-text {
	font-family: var(--base-font-family);
	font-size: 1.125rem;
	font-weight: var(--bold);
	color: var(--black);
	line-height: 1;
}

.recommend__cta-text--highlight {
	color: var(--red);
}

.recommend__cta-link {
	width: 100%;
	color: var(--white);
	font-family: var(--base-font-family);
	font-size: 1.125rem;
	font-weight: var(--bold);
}

.footer {
	background-color: #d05052;
}

.footer__content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5625rem;
	padding: 1.25rem 3.75rem;
}

.footer__menu {
	display: flex;
	align-items: center;
	gap: 0.9375rem;
}

.footer__menu-item {
	color: var(--white);
	font-family: var(--base-font-family);
	font-size: 0.9375rem;
	text-decoration: none;
	transition: 0.3s ease-in-out all;
}

.footer__copyright {
	font-size: 0.9375rem;
	color: var(--white);
	line-height: 1.2;
}

@media (any-hover: hover) {

.button:hover {
	transform: scale(1.05);
}

.comparison__table-link:hover {
	transform: scale(1.05);
}

.question__button--search:not(.is-disabled):hover {
	transform: scale(1.05);
}

.footer__menu-item:hover {
	opacity: 0.7;
}

}

@media only screen and (min-width: 768px) {

.sp {
	display: none !important;
}

}

@media (min-width: 768px) {

html {
	font-size: 1.7777777778vw;
}

}

@media (min-width: 900px) {

html {
	font-size: 16px;
}

}

@media only screen and (max-width: 767px) {

.pc {
	display: none !important;
}

}

@media (max-width: 767px) {

html {
	font-size: 2.0860495437vw;
}

}

@media screen and (max-width: 767px) {

a[href^="tel:"] {
	pointer-events: all;
}

.inner {
	max-width: 37.5rem;
	padding: 0 var(--padding-sp);
}

main {
	max-width: unset;
	padding: unset;
}

.fv {
	min-height: unset;
}

.comparison__table-cell:nth-child(2),
.comparison__table-cell:nth-child(3),
.comparison__table-cell:nth-child(4) {
	min-width: unset;
}

.comparison__table-link {
	padding: 0.75rem 0.875rem 0.8125rem;
}

.detail__item {
	padding: 1.25rem;
}

.detail__item-features-item {
	line-height: 1.2;
}

.question__inner {
	padding: 2.5rem 0.625rem 2.5rem;
}

.question__item-icon--q {
	border: 1px solid var(--black);
}

.question__button--search {
	width: 40%;
}

.question__button--reset {
	width: 30%;
}

.recommend {
	padding: 2.5rem 0;
}

.footer__content {
	flex-direction: column;
	align-items: center;
	gap: 0.625rem;
}

}

@keyframes question-spinner-rotate {

0% {
	transform: rotate(0deg);
}

100% {
	transform: rotate(360deg);
}

}

