@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

:root {
	--scale: 1;
}

@media screen and (min-width: 700px) {
	:root {
		--scale: 1;
	}
}

body {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-size: calc(12px * var(--scale));
	line-height: 1.4;
	color: #404040;
	background: #fff;
	letter-spacing: 0;
}

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

h2,
h3 {
	line-height: 1.2;
}

.flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.flex.reverse {
	flex-direction: row-reverse;
}

a {
	transition: all .6s;
}

a:hover {
	opacity: .8;
}

video {
	width: 100%;
	height: auto;
}

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

body {
	background: #FDF4F4;
}

.bg-flex {
	position: relative;
	min-height: 100vh;
	background: #FDF4F4;
	overflow: hidden;
	padding-top: 15px;
}

/* 左上・右下の三角 */
.bg-flex::before,
.bg-flex::after {
	content: "";
	position: fixed;
	z-index: 0;
	pointer-events: none;
}

.bg-flex::before {
	top: 0;
	left: 0;
	width: 22.5vw;
	height: 22.5vw;
	background: linear-gradient(135deg, #FCEFEE 0 50%, transparent 50% 100%);
}

.bg-flex::after {
	right: 0;
	bottom: 0;
	width: 22.5vw;
	height: 22.5vw;
	background: linear-gradient(315deg, #FCEFEE 0 50%, transparent 50% 100%);
}

.left-cont {
	position: fixed;
	top: 50%;
	left: calc(42.5% - 520px);
	transform: translateY(-50%);
	width: 380px;
}

.left-cont-logo {
	max-width: 300px;
	margin: 0 auto 25px;
}

.lect-cont-link {
	max-width: 380px;
	margin: 0 auto;
}

.right-cont {
	position: fixed;
	top: 50%;
	right: calc(42.5% - 500px);
	transform: translateY(-50%);
	width: 220px;
}

.right-cont-title {
	width: 120px;
	background: #EC5C5C;
	text-align: center;
	padding: 7.5px 0;
	margin-bottom: 20px;
	border-radius: 4px;
}

.right-cont-title p {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
}

.right-cont-list ul {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.right-cont-list li {
	position: relative;
	padding-left: 20px;
}

.right-cont-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 6.5px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #ec6666;
}

.right-cont-list a {
	color: #3c3c3c;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition: opacity .3s;
	white-space: nowrap;
}

.right-cont-list a:hover {
	opacity: .7;
}

/* 画像のはみ出し防止 */
.left-cont img,
.right-cont img,
.wrapper img {
	max-width: 100%;
	height: auto;
}

.wrapper {
	max-width: 490px;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
	z-index: 1;
	background: rgba(246, 246, 246, 1);
	box-shadow: 0 4px 19px rgba(0, 0, 0, 0.1);
	border-radius: 12px;
	right: -5%;
}

.sp {
	display: none;
}

header {
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	width: 100%;
	max-width: 500px;
	background: #fff;
}

.header-inner {
	padding: 4.5px 25px;
}

.header-logo {
	width: 100px;
}

header {
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	z-index: 1000;
	width: 100%;
	background: #fff;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.drawer-btn {
	width: 25px;
	height: 25px;
	position: relative;
	cursor: pointer;
	z-index: 1100;
}

.drawer-btn span,
.drawer-btn::before,
.drawer-btn::after {
	content: "";
	position: absolute;
	left: 5px;
	width: 20px;
	height: 2px;
	background: #333;
	transition: 0.3s;
}

.drawer-btn::before {
	top: 7px;
}

.drawer-btn span {
	top: 13px;
}

.drawer-btn::after {
	top: 19px;
}

.drawer-btn.is-active span {
	opacity: 0;
}

.drawer-btn.is-active::before {
	top: 12.5px;
	transform: rotate(45deg);
}

.drawer-btn.is-active::after {
	top: 12.5px;
	transform: rotate(-45deg);
}

.drawer-menu {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	width: 100%;
	height: 100vh;
	max-width: 300px;
	background: #fff;
	padding: 40px 15px;
	overflow-y: auto;
	transform: translateY(-100%);
	transition: transform .3s ease;
	will-change: transform;
}

.drawer-menu.is-active {
	transform: translateY(0);
}

.drawer-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.drawer-menu li+li {
	border-top: 1px solid #ddd;
}

.drawer-menu a {
	display: block;
	padding: 12.5px 0;
	color: #333;
	font-size: 14px;
	text-decoration: none;
}

/* body.is-drawer-open {
	overflow: hidden;
} */
.drawer-overlay {
	position: fixed;
	inset: 0;
	z-index: 998;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}

.drawer-overlay.is-active {
	opacity: 1;
	visibility: visible;
}

.promotion-note {
	margin: 6px 20px 0;
	font-size: 11px;
	line-height: 1.5;
	text-align: right;
	color: #777;
}

.ranking {
	padding: 20px 20px 30px;
}

.cmn-title {
	margin-bottom: 15px;
	padding-left: 10px;
	border-left: 4px solid rgba(236, 92, 92, 1);
}

.cmn-title h2 {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
}

.ranking-img {
	margin-bottom: 15px;
}

.ranking-img ol li {
	margin-bottom: 7.5px;
}

.ranking-img ol li:last-child {
	margin-bottom: 0;
}

.caution-acc {
	margin-bottom: 25px;
}

.caution-acc-head {
	position: relative;
	cursor: pointer;
	padding-right: 35px;
	display: flex;
	align-items: center;
	border: 1px solid rgba(255, 182, 182, 1);
	background: rgba(252, 239, 238, 1);
	border-radius: 6px;
	padding: 10px 15px;
}

.caution-acc-head.is-open {
	border-radius: 6px 6px 0 0;
}

.caution-acc-head img {
	width: 22.5px;
	margin-right: 15px;
}

.caution-acc-head h3 {
	font-weight: 700;
	font-size: 14px;
	color: rgba(236, 92, 92, 1);
}

.point-cont-title {
	margin-bottom: 15px;
}

.point-cont-link ul {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0px 10px;
}

.plan {
	padding-bottom: 40px;
}

.plan .cmn-title {
	margin-inline: 20px;
	margin-bottom: 25px;
}

.scroll-table-wrap {
	padding-left: 20px;
}

.scroll-table {
	margin-bottom: 15px;
	padding-bottom: 7.5px;
	overflow-x: scroll;
}

.scroll-table img {
	width: 650px;
	max-width: 650px;
}

::-webkit-scrollbar {
	height: 10px;
	width: 10px;
}

::-webkit-scrollbar-track {
	background: #d9d9d9;
	border-radius: 999px;
}

::-webkit-scrollbar-thumb {
	background: #555;
	border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
	background: #444;
}

/* 横棒 */
.caution-acc-head::before {
	content: "";
	position: absolute;
	right: 15px;
	top: 50%;
	width: 16px;
	height: 2px;
	background: rgba(236, 92, 92, 1);
	transform: translateY(-50%);
}

/* 縦棒 */
.caution-acc-head::after {
	content: "";
	position: absolute;
	right: 22px;
	top: 50%;
	width: 2px;
	height: 16px;
	background: rgba(236, 92, 92, 1);
	transform: translateY(-50%);
	transition: .3s;
}

/* 開いたら縦棒を消して－にする */
.caution-acc.is-open .caution-acc-head::after {
	opacity: 0;
}

.caution-acc-txt {
	border: 1px solid rgba(255, 182, 182, 1);
	border-top: none;
	background: rgba(252, 239, 238, 1);
	border-radius: 0 0 6px 6px;
	padding: 10px 15px;
	background: #fff;
}

.caution-acc-txt h4 {
	font-weight: 700;
	font-size: 14px;
	padding-bottom: 5px;
}

.caution-acc-txt p {
	font-size: 14px;
}

.caution-acc-txt p span {
	color: rgba(236, 92, 92, 1);
	font-weight: 700;
}

.movie-cont {
	margin-bottom: 24.5px;
}

.caution-txt {
	margin-bottom: 30px;
	padding-inline: 20px;
}

.caution-txt p {
	color: rgba(120, 120, 120, 1);
	font-weight: 400;
	font-size: 12px;
}

.txt-cont {
	padding-inline: 20px;
}

.txt-cont-box {
	margin-bottom: 12.5px;
}

.txt-cont-box p {
	background: rgba(252, 239, 238, 1);
	border: 1px solid rgba(236, 92, 92, 1);
	font-size: 16px;
	font-weight: 700;
	padding: 7px 15px;
	color: #e25c6c;
	display: inline-block;
}

.h3-title {
	margin-bottom: 10px;
}

.h3-title h3 {
	font-size: 20px;
	color: rgba(64, 64, 64, 1);
	font-weight: 700;
}

.caution-box {
	background: rgba(252, 239, 238, 1);
	padding: 10px 7.5px;
	border-radius: 4px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 25px;
}

.caution-box img {
	width: 20px;
}

.caution-box p {
	width: calc(100% - 35px);
	font-size: 14px;
}

.caution-box p span {
	font-weight: 700;
	color: #e25c6c;
}

.img-cont {
	margin-bottom: 25px;
}

.caution-box.light-box {
	background: rgba(255, 248, 227, 1);
}

.comment .cmn-title {
	margin-inline: 25px;
}

.comment .scroll-table img {
	width: 745px;
	max-width: 745px;
}

.cmn-txt {
	margin-bottom: 17.5px;
	padding-inline: 20px;
}

.cmn-txt p {
	font-size: 14px;
}

.cmn-txt p span {
	color: rgba(236, 92, 92, 1);
}

.point-img {
	margin-top: 45px;
}

.txt-box {
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.08);
	border-radius: 12px;
	background: #fff;
	padding: 12px 15px;
	width: calc(100% - 40px);
	margin: 0 auto 30px;
}

.txt-box h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 15px;
}

.txt-box-list ul li {
	padding-left: 10px;
	border-left: 4px solid rgba(236, 92, 92, 1);
	margin-bottom: 12.5px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
}

.txt-box-list ul li:last-child {
	margin-bottom: 0;
}

.scroll-table-title {
	margin-bottom: 15px;
}

.scroll-table-title h3 {
	font-size: 18px;
	font-weight: 700;
}

.voice {
	padding: 40px 20px;
}

.voice-box ul li {
	margin-bottom: 25px;
}

.voice-box ul li:last-child {
	margin-bottom: 0;
}

.voice-box ul li a {
	display: block;
}

.voice-box ul li img {
	display: block;
	width: 100%;
}

.choice {
	padding: 0px 20px 40px;
}

.choice .cmn-title {
	margin-bottom: 30px;
}

.choice-title {
	text-align: center;
	margin-bottom: 25px;
}

.choice-title h3 {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
}

.choice-title h3 span {
	color: rgba(236, 92, 92, 1);
}

.choice-title h3 span.orange {
	color: rgba(243, 143, 30, 1);
}

.choice-img {
	width: calc(100% + 15px);
	position: relative;
	left: -7.5px;
}

.choice .caution-box {
	margin-bottom: 35px;
}

.choice-last-img {
	margin-top: 30px;
}

.score {
	padding: 0 20px 40px;
}

.cmn-title h2 span {
	font-size: 14px;
	display: block;
}

.score-img {
	margin-bottom: 15px;
	text-align: right;
}

.score-img p {
	padding-top: 15px;
	font-size: 10px;
}

.score-link {
	text-align: right;
}

.score-link a {
	font-size: 15px;
	text-decoration: underline;
	color: rgba(124, 124, 124, 1);
}

.search {
	padding: 0 20px 60px;
}

.filter-section {
	margin-bottom: 40px;
}

.filter-box {
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.08);
	border-radius: 12px;
	background: #fff;
	padding: 12px 15px;
	margin: 0 auto 15px;
}

.filter-title {
	margin-bottom: 15px;
	display: flex;
	align-items: center;
}

.filter-title img {
	width: 22.5px;
	margin-right: 10px;
}

.filter-title h3 {
	font-size: 14px;
	font-weight: 700;
}

.filter-group {
	margin-bottom: 15px;
}

.filter-group:last-of-type {
	margin-bottom: 25px;
}

.filter-group h4 {
	font-size: 14px;
	margin: 0 0 7.5px;
	font-weight: bold;
}

.filter-labels {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 12px;
	font-size: 13px;
	color: #555;
}

.filter-labels label {
	cursor: pointer;
	display: flex;
	align-items: center;
	font-size: 16px;
}

.filter-labels input[type="radio"],
.filter-labels input[type="checkbox"] {
	margin-right: 6px;
	width: 16px;
	height: 16px;
	accent-color: #e54b60;
}

.search-btn {
	background-color: #e25c6c;
	color: #fff;
	border: none;
	padding: 14px 0;
	width: 100%;
	border-radius: 30px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	box-shadow: 0 4px 6px rgba(226, 92, 108, 0.2);
}

/* ==============================
           各クリニックの詳細 タイトル
        ============================== */
.section-header {
	padding: 0 15px;
	margin: 30px 0 20px;
}

.section-title {
	font-size: 18px;
	font-weight: bold;
	border-left: 4px solid #b31b1b;
	padding-left: 10px;
	margin: 0;
}

/* ==============================
           クリニックカード
        ============================== */
.clinic-card {
	margin-bottom: 30px;
}

.clinic-sub-name {
	font-size: 10px;
	color: rgba(124, 124, 124, 1);
}

.clinic-name-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}

.clinic-name {
	font-size: 20px;
	font-weight: bold;
	margin: 0;
}

.badge-recommend {
	background-color: rgba(236, 92, 92, 1);
	color: #fff;
	font-size: 12px;
	padding: 4px 6px;
	border-radius: 4px;
	font-weight: bold;
}

/* 画像プレースホルダー */
.clinic-img {
	margin-bottom: 10px;
}

/* キャッチコピー */
.catchphrase {
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 7.5px;
}

/* メイン料金とボタン */
.main-price-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 17.5px;
}

.price-cta-freya .main-price-row {
	align-items: center;
}

.price-text-sm {
	font-size: 10px;
	color: rgba(124, 124, 124, 1);
	display: block;
	margin-bottom: 2.5px;
	line-height: 1;
}

.price-text-lg {
	font-size: 32px;
	font-weight: bold;
	line-height: 1;
}

.price-text-lg.price-text-lg-mb {
	margin-bottom: 7.5px;
}

.price-text-lg span {
	font-size: 13px;
	padding-left: 2.5px;
}

.cta-btn {
	background-color: #f26877;
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	font-weight: bold;
	padding: 10px 15px;
	border-radius: 20px;
	display: inline-flex;
	align-items: center;
}

.cta-btn::after {
	content: "";
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
	flex-shrink: 0;
	margin-left: 7.5px;
}

/* ==============================
           詳細スペックグリッド
        ============================== */
.spec-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6px 8px;
}

.spec-item {
	display: flex;
	align-items: center;
	background: rgba(255, 255, 255, 1);
	border: 1px solid rgba(236, 236, 236, 1);
	border-radius: 6px;
	padding: 7px;
}

.spec-item img {
	width: 30px;
	height: auto;
	margin-right: 10px;
}

.spec-item:nth-child(4) img {
	width: 20px;
	margin-left: 7px;
	margin-right: 12.5px;
}

.spec-item:nth-child(5) img {
	width: 22.5px;
	margin-left: 4px;
	margin-right: 12.5px;
}

.spec-item:nth-child(8) img {
	width: 22.5px;
	margin-left: 4px;
	margin-right: 12.5px;
}

.spec-item:nth-child(14) img {
	width: 22.5px;
	margin-left: 4px;
	margin-right: 12.5px;
}

.spec-text {
	display: flex;
	flex-direction: column;
}

.spec-label {
	font-size: 10px;
	color: rgba(124, 124, 124, 1);
}

.spec-value {
	font-size: 16px;
	font-weight: bold;
	line-height: 1.1;
}

.spec-value.big {
	font-size: 18px;
}

.spec-value .price {
	font-size: 24px;
}

.spec-value .price-sml {
	font-size: 18px;
}

.spec-value small {
	font-size: 12px;
	line-height: 1.1;
}

.no-result {
	display: none;
	text-align: center;
	padding: 40px 15px;
	color: #e54b60;
	font-weight: bold;
	background: #fff0f2;
	border-radius: 8px;
}

footer {
	background: rgba(236, 92, 92, 1);
	padding: 15px;
	text-align: center;
}

footer p {
	font-size: 12px;
	color: #fff;
}

.footer-nav {
	margin-bottom: 10px;
}

.footer-nav a {
	display: inline-block;
	margin: 0 8px;
	font-size: 12px;
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* policy / company pages ---------------------------------------*/
.page-cont {
	padding: 35px 20px 50px;
}

.page-header {
	text-align: center;
	margin-bottom: 25px;
}

.page-header h1 {
	font-size: 22px;
	font-weight: 700;
	color: #404040;
}

.page-header .en {
	display: inline-block;
	margin-top: 6px;
	font-size: 13px;
	font-weight: 700;
	color: #EC5C5C;
	padding-bottom: 10px;
	border-bottom: 2px solid #EC5C5C;
}

.policy-block {
	margin-bottom: 22px;
}

.policy-block .h3-title h3 {
	padding-bottom: 6px;
	border-bottom: 1px solid #EC5C5C;
}

.policy-block p {
	font-size: 14px;
	line-height: 1.7;
}

.policy-block ul {
	margin-top: 8px;
}

.policy-block li {
	position: relative;
	padding-left: 14px;
	font-size: 14px;
	line-height: 1.7;
	margin-bottom: 4px;
}

.policy-block li::before {
	content: "・";
	position: absolute;
	left: 0;
}

.policy-block a {
	color: #EC5C5C;
	text-decoration: underline;
}

.company-table {
	font-size: 14px;
}

.company-table th,
.company-table td {
	padding: 12px 8px;
	border-bottom: 1px solid #dcdcdc;
	text-align: left;
}

.company-table th {
	width: 90px;
	color: #404040;
	font-weight: 700;
}

.company-table a {
	color: #EC5C5C;
	text-decoration: underline;
}

.score-cont {
	padding: 30px 0px 60px;
}

.score-cont .txt-cont-box p {
	background: #EC5C5C;
	font-size: 24px;
	font-weight: 500;
	padding: 3.5px 15px 5px;
	color: #fff;
}

.score-cont .h3-title {
	margin-bottom: 15px;
}

.score-cont .h3-title h2 {
	font-size: 24px;
	color: rgba(64, 64, 64, 1);
	font-weight: 700;
}

.score-cont .txt p {
	font-size: 14px;
	font-weight: 500;
}

.score-cont .txt p span {
	color: #EC5C5C;
}

.score-list {
	padding: 0 20px;
	margin-top: 25px;
}

.score-list ol {
	margin-bottom: 25px;
}

.score-list ol li {
	margin-bottom: 15px;
}

@media screen and (max-width: 1300px) {
	.left-cont {
		position: fixed;
		top: 50%;
		left: 20px;
		transform: translateY(-50%);
		width: 30%;
	}

	.right-cont {
		right: 20px;
		width: 20%;
	}

	.right-cont-list a {
		font-size: 16px;
		white-space: initial;
	}
}

@media screen and (max-width: 1100px) {
	.right-cont {
		right: 0px;
	}

	.left-cont {
		left: 10px;
	}
}

@media screen and (max-width: 1000px) {
	.sp {
		display: block;
	}

	.pc {
		display: none;
	}

	.wrapper {
		padding-top: 45px;
		right: 0;
		max-width: 500px;
		border-radius: 0;
	}

	.bg-flex {
		padding-top: 0;
	}
}

@media screen and (max-width: 499px) {
	.choice-title h3 {
		font-size: 17px;
		line-height: 1.3;
	}

	.cta-btn {
		font-size: 13px;
		padding: 10px 12.5px;
	}

	.price-text-lg {
		font-size: 28px;
	}

	.price-text-lg span {
		font-size: 12px;
	}

	.spec-value .price {
		font-size: 20px;
	}

	.spec-value {
		font-size: 13px;
	}

	.spec-value.sml,
	.spec-value small {
		font-size: 10px;
	}
}

.price-table-wrap {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 10px;
	margin-bottom: 20px;
	background: rgba(246, 246, 246, 1);
}

.price-table {
	width: max-content;
	border-collapse: separate;
	border-spacing: 0;
	font-size: 13px;
	font-weight: 700;
	color: #111;
	line-height: 1.25;
	background: rgba(246, 246, 246, 1);
}

.price-table th,
.price-table td {
	width: 95px;
	min-width: 95px;
	height: 64px;
	padding: 7.5px 1.5px;
	text-align: center;
	vertical-align: middle;
	background: #fff;
	border-right: 1px solid #dcdcdc;
	border-bottom: 1px solid #dcdcdc;
	box-sizing: border-box;
}

.price-table thead th {
	height: 84px;
	padding: 6px 0px;
	background: #ff5757;
	border-right: 1px solid #dcdcdc;
	border-bottom: 0;
	color: #fff;
}

.price-table thead th:first-child {
	background: rgba(246, 246, 246, 1) !important;
}

.price-table tbody th {
	background: #e9e9e9;
	font-size: 14px;
	line-height: 1.35;
	font-weight: 700;
}

.price-table tbody tr:nth-child(1) th {
	border-top-left-radius: 6px;
}

.price-table tbody tr:last-child th {
	border-bottom-left-radius: 6px;
}

.price-table small {
	display: block;
	margin-top: 2px;
	font-size: 8px;
	line-height: 1.2;
	font-weight: 700;
}

.sticky-left {
	position: sticky;
	left: 0;
	z-index: 30;
	width: 89px !important;
	min-width: 89px !important;
	background: #e9e9e9 !important;
}

.sticky-rize {
	position: sticky;
	left: 89px;
	z-index: 20;
	background: #fff;
	border-top-left-radius: 6px;
}

thead .sticky-left {
	z-index: 60;
	background: #fff !important;
}

thead .sticky-rize {
	z-index: 50;
	background: #ff5757 !important;
}

.brand {
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.brand img {
	display: block;
	width: 78px;
	height: 25px;
	object-fit: contain;
	margin-bottom: 5px;
	background: #fff;
	border-radius: 3px;
}

.brand a {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.15;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.brand span {
	display: block;
	margin-top: 2px;
	color: #fff;
	font-size: 10px;
	line-height: 1.5;
}

.red {
	color: #ff5757;
}

.icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 2px;
}

.icon img {
	display: block;
	width: 18px;
	height: 18px;
}

.price-table tr>*:last-child {
	border-right: 0;
}

.price-table tbody tr:last-child>* {
	border-bottom: 0;
}

/* score detail page ---------------------------------------*/
.score-detail {
	padding: 20px 20px 0;
}

.score-section-title {
	margin: 40px 0 16px;
}

.score-section-title h3 {
	font-size: 17px;
	font-weight: 700;
	color: #404040;
	padding-left: 10px;
	border-left: 4px solid #EC5C5C;
}

.score-axis-title {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 32px 0 8px;
}

.score-axis-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #EC5C5C;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	flex-shrink: 0;
}

.score-axis-title h4 {
	font-size: 15px;
	font-weight: 700;
	color: #404040;
}

.score-axis-title span {
	font-size: 12px;
	color: #EC5C5C;
	font-weight: 700;
}

.score-sub-title {
	font-size: 13px;
	font-weight: 700;
	color: #404040;
	margin: 20px 0 8px;
}

.score-note {
	font-size: 12px;
	color: #666;
	line-height: 1.6;
	margin: 0 0 16px;
}

.score-table-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin: 0 0 20px;
	border-radius: 6px;
	border: 1px solid #eee;
}

.score-table {
	width: 100%;
	min-width: 380px;
	border-collapse: collapse;
	font-size: 11.5px;
}

.score-table th,
.score-table td {
	padding: 7px 5px;
	border-bottom: 1px solid #eee;
	text-align: center;
	vertical-align: middle;
	line-height: 1.4;
}

.score-table tbody tr:last-child th,
.score-table tbody tr:last-child td {
	border-bottom: 0;
}

.score-table thead th {
	background: #EC5C5C;
	color: #fff;
	font-size: 11.5px;
	font-weight: 700;
	white-space: nowrap;
}

.score-table td:first-child,
.score-table th:first-child {
	text-align: left;
}

.score-table .lv-best {
	background: rgba(224, 246, 230, 1);
	color: #1c8a4a;
	font-weight: 700;
}

.score-table .lv-good {
	background: rgba(224, 246, 230, .45);
}

.score-table .lv-mid {
	background: rgba(255, 248, 227, 1);
}

.score-table .lv-bad {
	background: rgba(252, 232, 232, 1);
	color: #d64545;
	font-weight: 700;
}

.result-table td.total,
.score-table td.total {
	color: #EC5C5C;
	font-weight: 700;
}

.price-table th small,
.price-table td small {
	display: block;
	font-size: 9px;
	font-weight: 500;
	color: inherit;
}

.rank-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 0;
}

.rank-list + .score-note {
	margin-top: 24px;
}

.rank-card {
	background: #fff;
	border: 1px solid #f0d8d8;
	border-radius: 10px;
	padding: 15px;
}

.rank-card.is-first {
	border: 2px solid #EC5C5C;
	background: rgba(252, 239, 238, .5);
}

.rank-card-head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.rank-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #b7b7b7;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	flex-shrink: 0;
}

.rank-card.is-first .rank-badge {
	background: #EC5C5C;
}

.rank-card-head h4 {
	font-size: 15px;
	font-weight: 700;
	color: #404040;
	flex: 1;
}

.rank-total {
	font-size: 20px;
	font-weight: 700;
	color: #EC5C5C;
	white-space: nowrap;
}

.rank-total small {
	font-size: 11px;
	color: #999;
	font-weight: 500;
}

.rank-breakdown {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 6px;
	margin-bottom: 10px;
}

.rank-breakdown div {
	background: #f6f6f6;
	border-radius: 6px;
	padding: 6px 2px;
	text-align: center;
}

.rank-breakdown span {
	display: block;
	font-size: 10px;
	color: #888;
}

.rank-breakdown strong {
	display: block;
	font-size: 14px;
	color: #404040;
}

.rank-comment {
	font-size: 12.5px;
	line-height: 1.6;
	color: #555;
}

.clinic-cta-note {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: #555;
  text-align: left;
  max-width: 220px;
}

.clinic-cta-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
}
