@charset 'utf-8';
/* ---------------------------------
	0. Reset
--------------------------------- */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, a, blockquote,
pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small,
strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label,
input, select, textarea, button, legend, table, caption, tbody, tfoot, thead,
tr, th, td, article, aside, canvas, details, figcaption, figure, footer,
header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font-style: normal;
	font-weight: inherit;
	vertical-align: baseline;
	background: transparent;
	box-sizing: border-box;
}

html {
	font-size: 16px;
}

body {
	font-size: 16px;
	line-height: 1;
}

article, aside, details, figcaption, figure, picture,
footer, header, hgroup, menu, nav, section {
	display: block;
}

ul, ol {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

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

label, button {
	cursor: pointer;
	user-select: none;
}

/* ---------------------------------
	1. Common
--------------------------------- */

:root {
	--color-main: #b29e74;
	--color-accent: #ad8c76;
	--color-text: #302e2d;
	--color-light-brown: #c6bcb3;
	--color-background: #f7f6f5;
	--color-footer-background: #8c8c8c;
	--linear-gradient: linear-gradient(150deg, rgba(173, 140, 118, 1), rgba(198, 188, 179, 1) 50%, rgba(173, 140, 118, 1));
	--font-mincho: 'Noto Serif', serif;
	--font-english: 'Roboto Slab';
}

body {
	color: var(--color-text);
	font-family: sans-serif;
	letter-spacing: 1px;
}

a {
	display: inline-block;
	color: inherit;
	text-decoration: none;
	transition: opacity 0.3s;
}

a:hover {
	opacity: 0.7;
}

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

p:not(:last-child) {
	margin-bottom: 1rem;
}

@media (max-width: 767px) {

	body {
		font-size: 14px;
	}

}

/* ---------------------------------
	2. Parts
--------------------------------- */

.content {
	line-height: 1.6;
	letter-spacing: 0.8px;
}

.content-inner {
	max-width: 1280px;
	width: 100%;
	margin: 0 auto;
	padding: 3.5rem 1rem;
}

.content-block:not(:last-child) {
	margin-bottom: 5rem;
}

@media (min-width: 1280px) {

	.content-inner {
		padding: 5rem 0;
	}

	.content-block:not(:last-child) {
		margin-bottom: 8rem;
	}

}

/* Button */
.button a {
	max-width: 360px;
	width: 100%;
	padding: 1rem;
	border-radius: 100px;
	position: relative;
	color: #fff;
	text-align: center;
	background: var(--color-accent);
}

.button a::before {
	width: 1.5rem;
	height: 1px;
	position: absolute;
	top: 50%;
	right: 1.25rem;
	transform: translateY(-50%);
	content: '';
	background: #fff;
}

.button a::after {
	width: 0.5rem;
	height: 0.5rem;
	border: 1px solid #fff;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	right: 1rem;
	transform: translateY(-50%);
	content: '';
}

.button-center {
	text-align: center;
}

.button-simple a {
	max-width: 360px;
	width: 100%;
	padding: 1rem;
	border: 1px solid var(--color-accent);
	border-radius: 100px;
	color: var(--color-accent);
	text-align: center;
}

/* Breadcrumbs */
.breadcrumbs ol {
	max-width: 1280px;
	width: 100%;
	margin: 0 auto;
	padding: 0.5rem 1rem;
	display: flex;
	gap: 0.5rem;
	overflow-x: auto;
	font-size: 0.75em;
	line-height: 1.5;
	white-space: nowrap;
}

.breadcrumbs li:last-child {
	color: var(--color-main);
}

.breadcrumbs li:not(:last-child)::after {
	padding-left: 0.5rem;
	content: '-';
}

/* text link */
.text-link {
	color: var(--color-main);
	text-decoration: underline;
}

/* post list */
.post-list li {
	display: grid;
	grid-template-columns: max-content 1fr;
	gap: 0.5rem;
}

.post-list li:not(:last-child) {
	margin-bottom: 0.5rem;
}

.post-list li::before {
	width: 0.25rem;
	height: 0.25rem;
	border-radius: 50%;
	position: relative;
	top: 0.575rem;
	content: '';
	display: block;
	background: var(--color-text);
}

@media (min-width: 768px) {

	.post-list li::before {
		top: 0.75rem;
	}

}

/* 公式SNS(トップページ、クリニック紹介ページ) */
.official-sns-inner {
	display: grid;
	font-family: var(--font-mincho);
}

.official-sns-title {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: var(--color-main);
	background: url(/wp-content/themes/likirn/image/common/marble-background.jpg) center center / cover no-repeat;
}

.webp .official-sns-title {
	background: url(/wp-content/themes/likirn/image/common/marble-background.webp) center center / cover no-repeat;
}

.official-sns-title h2 {
	margin-bottom: 0.5rem;
	font-size: 2.5em;
}

.official-sns-title h3 {
	font-size: 1.5em;
}

.official-sns-content {
	background: var(--color-background);
}

.official-sns-list {
	padding: 2rem;
	display: grid;
	gap: 1rem;
}

.official-sns-list li {
	max-width: 480px;
	width: 100%;
	margin: 0 auto;
	border-radius: 1rem;
	background: var(--color-light-brown);
}

.official-sns-list li a {
	width: 100%;
	padding: 1rem 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	color: #fff;
}

.official-sns-list li img {
	width: 2rem;
	filter: contrast(0) brightness(2);
}

@media (min-width: 768px) {

	.official-sns-inner {
		grid-template-columns: repeat(2, 1fr);
	}

}

@media (max-width: 767px) {

	.official-sns-title {
		padding: 2.5rem 0;
	}

}

/* ---------------------------------
	3. Header
--------------------------------- */

.loading {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--color-background);
}

.loading-spinner {
	width: 64px;
	height: 64px;
	padding: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background: linear-gradient(0deg, rgba(173, 140, 118, 0.3) 30%, rgba(173, 140, 118, 1) 100%);
	animation: spin 0.8s linear 0s infinite;
}

.circle-core {
	width: 100%;
	height: 100%;
	background-color: var(--color-background);
	border-radius: 50%;
}

@keyframes spin {

	from {
		transform: rotate(0);
	}

	to{
		transform: rotate(359deg);
	}

}

.site-header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(4px);
}

.header-top {
	padding: 0.25rem 0;
	border-bottom: 1px solid var(--color-text);
	font-size: 0.75em;
	text-align: center;
}

.header-inner {
	padding: 1rem 0;
	position: relative;
}

.header-logo {
	text-align: center;
}

.header-logo img {
	max-width: 180px;
	width: 100%;
}

.header-menu-button {
	width: 2rem;
	height: 1.5rem;
	margin-bottom: 0.25rem;
	position: absolute;
	top: 50%;
	right: 1rem;
	transform: translateY(-50%);
	cursor: pointer;
}

.header-menu-button span {
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	transition: all 0.25s;
	display: block;
	background: var(--color-text);
}

.header-menu-button span:nth-of-type(1) {
	top: 0;
}

.header-menu-button span:nth-of-type(2) {
	top: 50%;
}

.header-menu-button span:nth-of-type(3) {
	bottom: 0;
}

.header-menu-button.open span:nth-of-type(1) {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}

.header-menu-button.open span:nth-of-type(2) {
	opacity: 0;
}

.header-menu-button.open span:nth-of-type(3) {
	bottom: 50%;
	transform: translateY(50%) rotate(-45deg);
}

@media (min-width: 768px) {

	.header-logo img {
		max-width: 240px;
	}

	.header-menu-button {
		width: 3rem;
		height: 2rem;
		right: 2rem;
	}

}

/* ---------------------------------
	4. Global menu
--------------------------------- */

.global-menu {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 998;
	line-height: 1.5;
	background: url(/wp-content/themes/likirn/image/front-page/marble-background.jpg) center center / cover no-repeat;
}

.webp .global-menu {
	background: url(/wp-content/themes/likirn/image/front-page/marble-background.webp) center center / cover no-repeat;
}

.global-menu-inner {
	width: 100%;
	height: 100%;
	margin-left: auto;
	padding: 7rem 1rem;
	overflow-y: scroll;
	background: var(--color-background);
}

.global-menu-list,
.global-menu-sns {
	margin-bottom: 2.5rem;
}

.global-menu-list li:not(:last-child) {
	margin-bottom: 1rem;
}

.global-menu-headline {
	margin-bottom: 1rem;
	border-bottom: 2px solid var(--color-main);
}

.global-menu-headline a {
	width: 100%;
	padding: 0.5rem 0;
	color: var(--color-main);
}

.global-menu-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-size: 0.9em;
}

.global-menu-links a {
	margin: 0 1.5rem 0.5rem 0;
	display: grid;
	gap: 0.25rem;
	grid-template-columns: max-content 1fr;
	align-items: center;
}

.global-menu-links a::before {
	width: 0.75rem;
	border-bottom: 1px solid var(--color-text);
	content: '';
	display: block;
}

.global-menu-sns {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	font-size: 0.75em;
}

.global-menu-sns li {
	border: 1px solid var(--color-main);
}

.global-menu-sns a {
	padding: 1rem 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	color: var(--color-main);
}

.global-menu-sns img {
	width: 1.5rem;
	height: 1.5rem;
	display: block;
}

.global-menu-reserve {
	display: grid;
	gap: 1rem;
}

.global-menu-reserve li a {
	width: 100%;
	padding: 0.75rem 0;
	border-radius: 100px;
	color: #fff;
	text-align: center;
	background: var(--color-main);
}

.global-menu-reserve li span {
	display: flex;
	justify-content: center;
	gap: 1rem;
}

.global-menu-reserve li img {
	width: 1.5rem;
	filter: contrast(0) brightness(2);
}

.global-menu-reserve li small {
	font-size: 0.75em;
}

@media (min-width: 768px) {

	.global-menu-inner {
		padding: 7.5rem 5rem;
	}

	.global-menu-sns {
		grid-template-columns: repeat(4, 1fr);
	}

	.global-menu-reserve {
		grid-template-columns: repeat(2, 1fr);
	}

}

@media (min-width: 1024px) {

	.global-menu-inner {
		width: 70%;
	}

}

/* ---------------------------------
	5. Footer
--------------------------------- */

.site-footer {
	line-height: 1.5;
	color: #fff;
	background: var(--color-footer-background);
}

.footer-inner {
	max-width: 1280px;
	width: 100%;
	margin: 0 auto;
	padding: 5rem 1rem;
	display: grid;
	gap: 2rem;
}

.footer-category {
	margin: 1rem 0 0.5rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-category span {
	width: 1.5rem;
	height: 1.5rem;
	position: relative;
	cursor: pointer;
}

.footer-category span::before,
.footer-category span::after {
	width: 0.75rem;
	height: 1px;
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(-50%, -50%);
	transition: 0.5s;
	background: #fff;
}

.footer-category span::before {
	transform: translate(-50%, -50%) rotate(90deg);
}

.footer-category span.open::before {
	transform: translate(-50%, -50%) rotate(0deg);
}

.footer-menu-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem 1rem;
	font-size: 0.875em;
}

.footer-menu-left .footer-menu-list:last-child {
	margin-top: 1rem;
	font-size: 1em;
}

.footer-menu-right > a {
	margin-bottom: 1rem;
	display: block;
}

.footer-menu-right .footer-menu-list {
	margin-bottom: 1rem;
}

.footer-bottom {
	border-top: 1px solid #fff;
}

.footer-bottom-inner {
	max-width: 1280px;
	width: 100%;
	margin: 0 auto;
	padding: 2.5rem 1rem;
	display: grid;
	gap: 2rem;
	font-size: 0.8em;
}

.footer-logo {
	text-align: center;
}

.footer-logo img {
	width: 100%;
	filter: contrast(0) brightness(2);
}

.footer-sub-menu {
	display: flex;
	gap: 1rem;
}

.footer-sub-menu a {
	text-decoration: underline;
}

.footer-copyright {
	font-size: 0.9em;
	text-align: center;
}

@media (min-width: 768px) {

	.footer-inner {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-bottom-inner {
		grid-template-columns: 1fr 2fr;
	}

}

@media (min-width: 1280px) {

	.footer-inner {
		padding: 5rem 0;
	}

	.footer-bottom-inner {
		padding: 2.5rem 0;
	}

}

@media (max-width: 767px) {

	.site-footer {
		padding-bottom: 5rem;
	}

}

/* contact */
.contact {
	position: relative;
	top: 0;
	left: 0;
	background: url(/wp-content/themes/likirn/image/common/marble-background.jpg) center center / cover no-repeat;
}

.webp .contact {
	background: url(/wp-content/themes/likirn/image/common/marble-background.webp) center center / cover no-repeat;
}

.contact::before {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	content: '';
	background: rgba(109, 105, 102, 0.05);
}

.contact-inner {
	max-width: 1280px;
	width: 100%;
	margin: 0 auto;
	padding: 5rem 1rem;
	position: relative;
}

.contact-inner h2 {
	margin-bottom: 2.5rem;
	color: var(--color-main);
	font-family: var(--font-mincho);
	font-size: 2.5em;
	text-align: center;
}

.contact-inner p {
	margin-bottom: 2.5rem;
	text-align: center;
}

.contact-list {
	display: grid;
	gap: 1rem;
}

.contact-list li a {
	width: 100%;
	padding: 1rem 0;
	border-radius: 100px;
	color: #fff;
	text-align: center;
	background: var(--color-accent);
}

.contact-list li span {
	display: flex;
	justify-content: center;
	gap: 1rem;
	font-size: 1.25em;
}

.contact-list li img {
	width: 1.25rem;
	filter: contrast(0) brightness(2);
}

.contact-list li small {
	display: block;
	font-size: 0.9em;
}

@media (min-width: 768px) {

	.contact-list {
		grid-template-columns: repeat(2, 1fr);
	}

}

@media (min-width: 1280px) {

	.contact-inner {
		padding: 5rem 0;
	}

}

/* pc-fixed */
.pc-fixed {
	position: fixed;
	right: 2rem;
	bottom: 2.5rem;
	z-index: 997;
}

.pc-fixed-list li:not(:last-child) {
	margin-bottom: 1rem;
}

.pc-fixed-list a {
	padding: 3rem 1.5rem;
	border-radius: 100px;
	writing-mode: vertical-rl;
	color: #fff;
	background: var(--linear-gradient);
}

/* sp-fixed */
.sp-fixed {
	width: 100%;
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 997;
}

.sp-fixed-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.sp-fixed-list li:nth-of-type(1) {
	padding: 2px;
	background: var(--linear-gradient);
}

.sp-fixed-list li:nth-of-type(2) {
	color: #fff;
	background: var(--linear-gradient);
}

.sp-fixed-list a {
	width: 100%;
	padding: 1.25rem 0;
	display: flex;
	gap: 0.5rem;
	align-items: center;
	justify-content: center;
	font-size: 0.9em;
}

.sp-fixed-list li:nth-of-type(1) a {
	color: var(--color-accent);
	background: #fff;
}

.sp-fixed-list img {
	width: 1rem;
}

.sp-fixed-list li:nth-of-type(2) img {
	filter: contrast(0) brightness(2);
}

/* ---------------------------------
	6. Post & Page
--------------------------------- */

/* header */
.post-header {
	background: url(/wp-content/themes/likirn/image/front-page/marble-background.jpg) center center / cover no-repeat;
}

.webp .post-header {
	background: url(/wp-content/themes/likirn/image/front-page/marble-background.webp) center center / cover no-repeat;
}

.post-header-inner {
	max-width: 1280px;
	width: 100%;
	margin: 0 auto;
	padding: 4.5rem 1rem;
}

.post-title {
	font-family: var(--font-mincho);
	font-size: 1.75em;
	font-weight: normal;
}

@media (min-width: 768px) {

	.post-title {
		font-size: 2em;
	}

}

@media (min-width: 1280px) {

	.post-header-inner {
		padding: 4.5rem 0;
	}

}

/* headline */
.page-headline {
	margin-bottom: 2.5rem;
	color: var(--color-main);
	font-family: var(--font-mincho);
	font-size: 2em;
	text-align: center;
}

.page-sub-headline {
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--color-main);
	font-family: var(--font-mincho);
	font-size: 1.25em;
}

.page-small-headline {
	margin-bottom: 1rem;
	font-family: var(--font-mincho);
	font-size: 1.1em;
	font-weight: bold;
}

/* 美容外科・美容皮膚科 */
.menu-wrap:not(:last-child) {
	margin-bottom: 3.5rem;
}

.menu-category {
	margin-bottom: 1.5rem;
	border-radius: 0.5rem;
	font-size: 1em;
	color: #fff;
	background: var(--color-light-brown);
}

.menu-category a {
	padding: 1rem 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.menu-category p {
	margin-bottom: 0;
}

.menu-category p::after {
	margin-left: 1rem;
	content: attr(data-title);
	display: inline-block;
	font-family: var(--font-english);
	font-size: 0.75em;
	letter-spacing: 1.5px;
}

.menu-category span {
	width: 2rem;
	border-radius: 50%;
	position: relative;
	aspect-ratio: 1 / 1;
	background: #fff;
}

.menu-category span::before {
	width: 1rem;
	height: 1px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-75%, -50%);
	content: '';
	background: var(--color-light-brown);
}

.menu-category span::after {
	width: 0.5rem;
	height: 0.5rem;
	border: 1px solid var(--color-light-brown);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 1rem;
	transform: translateY(-50%);
	content: '';
}

.menu-content {
	padding: 0 1.5rem;
}

.menu-content:not(:last-child) {
	margin-bottom: 1.5rem;
}

.menu-content h4 {
	margin-bottom: 0.5rem;
	font-weight: bold;
}

.menu-list {
	color: var(--color-accent);
	font-size: 0.9em;
	line-height: 2;
}

.menu-list li {
	display: inline-block;
}

.menu-list li:not(:last-child) {
	margin-right: 1rem;
}

@media (min-width: 768px) {

	.menu-category {
		margin-bottom: 2.5rem;
		font-size: 1.25em;
	}

	.menu-content:not(:last-child) {
		margin-bottom: 2.5rem;
	}

}

/* 施術ページ症例 */
.case-inner {
	width: 100%;
	margin: 0 auto;
	padding: 3.5rem 5%;
	background: linear-gradient(180deg, #fff 0%, #fff 300px, var(--color-background) 300px, var(--color-background) 100%);
}

.case-wrap {
	position: relative;
}

.case-photo > p {
	color: var(--color-light-brown);
	font-size: 0.9em;
}

.swiper-slide h3 {
	padding-right: 2rem;
	position: relative;
	cursor: pointer;
	font-size: 0.9em;
}

.swiper-slide h3::before,
.swiper-slide h3::after {
	width: 1rem;
	height: 1px;
	margin: auto;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: 0.5s;
	right: 1rem;
	content: "";
	background: var(--color-text);
}

.swiper-slide h3::before {
	transform: rotate(90deg);
}

.swiper-slide h3.open::before {
	transform: rotate(0deg);
}

.swiper-slide h3.open::after {
	background: transparent;
}

.case-detail {
	padding-top: 1rem;
	display: none;
	font-size: 0.75em;
}

.case-detail dt {
	color: var(--color-main);
}

.case-detail dd {
	margin-bottom: 0.5rem;
}

.swiper-button {
	display: flex;
	justify-content: center;
	gap: 1rem;
}

.swiper-button-prev,
.swiper-button-next {
	width: auto !important;
	height: auto !important;
	position: initial !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
	width: 2.5rem;
	height: 2.5rem;
	border: 1px solid var(--color-text);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--color-text);
	font-size: 1em !important;
}

.swiper-button-prev::after {
	content: '←' !important;
}

.swiper-button-next::after {
	content: '→' !important;
}

.case-option .button {
	display: flex;
	justify-content: center;
}

.case-option .button a {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
}

.case-option img {
	width: 1.25rem;
	filter: contrast(0) brightness(2);
}

@media (min-width: 768px) {

	.case-inner {
		background: linear-gradient(180deg, #fff 0%, #fff 400px, var(--color-background) 400px, var(--color-background) 100%);
	}

}

@media (min-width: 1024px) {

	.case-wrap {
		padding-left: 20rem;
	}

	.swiper-button {
		position: relative;
		top: -4rem;
	}

	.case-option {
		max-width: 18rem;
		width: 100%;
		position: absolute;
		top: 16rem;
		left: 0;
	}

}

@media (min-width: 1280px) {

	.case-inner {
		padding: 5rem 5%;
	}

}

@media (max-width: 1023px) {

	.case-photo {
		margin-bottom: 3.5rem;
	}

	.swiper-button {
		margin-bottom: 1rem;
	}

}

/* 施術ページ手術一覧 */
.method-inner {
	padding: 3.5rem 0;
}

.method-wrap {
	background: #fff;
}

.method-column {
	max-width: 1280px;
	width: 100%;
	margin: 0 auto;
	padding: 0 1rem;
}

.method-menu {
	height: fit-content;
	position: sticky;
	top: 94px;
	z-index: 1;
	background: var(--color-background);
}

.method-sp-button {
	padding: 1rem;
	border: 1px solid var(--color-text);
	position: relative;
}

.method-sp-button::after {
	width: 0.5rem;
	height: 0.5rem;
	border-top: 2px solid var(--color-text);
	border-right: 2px solid var(--color-text);
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 1.25rem;
	transition: transform 0.5s;
	transform: translateY(-50%) rotate(135deg);
}

.method-sp-button.open::after {
	transform: rotate(-45deg);
}

.method-menu-category {
	padding-right: 1rem;
	position: relative;
	cursor: pointer;
	font-size: 14px;
	font-weight: bold;
}

.method-menu-category:not(:first-child) {
	margin-top: 1rem;
}

.method-menu-category::before,
.method-menu-category::after {
	width: 1rem;
	height: 1px;
	margin: auto;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	transition: transform 0.5s;
	content: "";
	background: var(--color-text);
}

.method-menu-category::before {
	transform: rotate(90deg);
}

.method-menu-category.open::before {
	transform: rotate(0deg);
}

.method-menu-category.open::after {
	background: transparent;
}

.method-menu-list {
	margin-top: 0.75rem;
	display: none;
	color: var(--color-accent);
	font-size: 14px;
}

.method-menu-list li:not(:last-child) {
	margin-bottom: 0.5rem;
}

.method-price {
	width: 100%;
	margin-top: 2rem;
	padding: 0.5rem 0;
	border-radius: 100px;
	color: var(--color-accent);
	text-align: center;
	background: #fff;
}

.method-content {
	padding: 2.5rem 0;
	background: #fff;
}

.method-block:not(:last-child) {
	margin-bottom: 2.5rem;
	padding-bottom: 2.5rem;
	border-bottom: 2px solid var(--color-background);
}

.method-content h3 {
	margin-bottom: 2rem;
	font-family: var(--font-mincho);
	font-size: 1.25em;
}

.method-content h4 {
	margin: 2rem 0 1rem;
	font-weight: bold;
}

.method-image {
	margin-bottom: 0.5rem;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.method-image img {
	margin: 0 auto;
}

.process-list {
	margin-bottom: 2.5rem;
	counter-reset: number;
}

.process-list li:not(:last-child) {
	margin-bottom: 0.5rem;
}

.process-list li::before {
	counter-increment: number 1;
	content: counter(number) '. ';
}

.method-content h5 {
	margin-bottom: 1rem;
	padding: 0 1rem 0.5rem 0;
	border-bottom: 1px solid var(--color-text);
	position: relative;
	cursor: pointer;
	font-weight: bold;
}

.method-content h5::before,
.method-content h5::after {
	width: 1rem;
	height: 1px;
	margin: auto;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	transition: transform 0.5s;
	content: "";
	background: var(--color-text);
}

.method-content h5::before {
	transform: rotate(90deg);
}

.method-content h5.open::before {
	transform: rotate(0deg);
}

.method-content h5.open::after {
	background: transparent;
}

.method-case-photo {
	max-width: 960px;
	width: 100%;
	margin-bottom: 2.5rem;
	display: grid;
	grid-template-columns: repeat(3, 15rem);
	gap: 1rem;
}

.method-case-photo a {
	display: block;
}

.method-case-detail {
	padding-top: 0.5rem;
	font-size: 0.75em;
}

.method-case-detail dt {
	color: var(--color-main);
}

.method-case-detail dd {
	margin-bottom: 0.5rem;
}

.case-detail-list {
	display: none;
	font-size: 0.9em;
}

.case-detail-list > dt {
	margin-bottom: 0.25rem;
	color: var(--color-main);
	font-weight: bold;
}

.case-detail-list > dd {
	margin-bottom: 1.5rem;
}

.method-faq dt {
	margin-bottom: 0.25rem;
	font-weight: bold;
}

.method-faq dd:not(:last-child) {
	margin-bottom: 1rem;
}

.method-button {
	display: flex;
	justify-content: center;
	gap: 1rem;
}

.case-detail-list + .method-button {
	margin-top: 2.5rem;
}

.method-button a {
	max-width: 280px;
	width: 100%;
	padding: 0.75rem 0;
	border: 1px solid var(--color-accent);
	border-radius: 100px;
	color: var(--color-accent);
	font-size: 0.75em;
	text-align: center;
}

.method-button a.detail-button {
	color: #fff;
	background: var(--color-accent);
}

@media (min-width: 768px) {

	.method-wrap {
		background: linear-gradient(90deg, var(--color-background) 0%, var(--color-background) 50%, #fff 50%, #fff 100%);
	}

	.method-column {
		display: grid;
		grid-template-columns: 1fr 3fr;
	}

	.method-menu {
		padding: 2.5rem 1rem 2.5rem 0;
		top: 110px;
	}

	.method-menu-category:not(:first-child) {
		margin-top: 2rem;
	}

	.method-content {
		padding: 2.5rem 0 2.5rem 2.5rem;
	}

	.method-block:not(:last-child) {
		margin-bottom: 5rem;
		padding-bottom: 5rem;
	}

	.method-content h4 {
		margin: 3rem 0 1rem;
	}

	.method-image {
		grid-template-columns: repeat(4, 1fr);
	}

	.method-button {
		gap: 2.5rem;
	}

	.method-button a {
		font-size: 0.9em;
	}

	.method-case-photo {
		grid-template-columns: repeat(3, 1fr);
	}

}

@media (min-width: 1280px) {

	.method-inner {
		padding: 5rem 0;
	}

	.method-column {
		padding: 0;
	}

	.method-menu {
		padding: 2.5rem 2.5rem 2.5rem 0;
	}

}

@media (max-width: 767px) {

	.method-menu-inner {
		height: auto !important;
		padding: 1rem;
		display: none;
		background: var(--color-background);
	}

	.method-case-photo {
		overflow-x: scroll;
	}

}

/* 施術詳細ページ */
.feature-block:not(:last-child) {
	margin-bottom: 3.5rem;
}

.feature-block .page-small-headline {
	margin-top: 2.5rem;
}

.feature-column {
	display: grid;
	gap: 1.5rem;
}

.feature-column img {
	margin: 0 auto;
}

.feature-detail-list {
	margin-bottom: 2.5rem;
}

.feature-detail-list dt {
	margin-bottom: 0.25rem;
	color: var(--color-main);
}

.feature-detail-list dd:not(:last-child) {
	margin-bottom: 1rem;
}

.flow-list {
	display: grid;
	gap: 1.5rem;
	counter-reset: number;
}

.flow-list h3 {
	margin-bottom: 0.5rem;
	position: relative;
	font-family: var(--font-mincho);
	font-size: 1.1em;
}

.flow-list h3::before {
	width: 2rem;
	height: 2rem;
	margin-right: 1rem;
	border-radius: 50%;
	display: inline-block;
	counter-increment: number 1;
	content: counter(number);
	line-height: 2rem;
	text-align: center;
	background: var(--color-background);
}

.flow-list p {
	margin-left: 3rem;
	font-size: 0.9em;
}

.faq-list dt {
	margin-bottom: 1rem;
	font-weight: bold;
}

.faq-list dd:not(:last-child) {
	margin-bottom: 2rem;
}

@media (min-width: 768px) {

	.feature-block:not(:last-child) {
		margin-bottom: 6rem;
	}

	.feature-detail-list {
		margin-bottom: 3.5rem;
	}

}

@media (min-width: 1024px) {

	.feature-column {
		grid-template-columns: 2fr 1fr;
		gap: 2.5rem;
	}

}

/* ---------------------------------
	7. Unique CSS
--------------------------------- */

.only-sp {
	display: none;
}

@media (max-width: 767px) {

	.only-sp {
		display: block;
	}

	.only-pc {
		display: none;
	}

}

/* 追加 */