@charset "utf-8";
/*
Theme Name: angie
Version: 1.0
*/

html {
	scroll-behavior: smooth;
}

body .pc {
	display: none;
}

@media screen and (min-width: 1024px) {
	body .sp {
		display: none;
	}

	body .pc {
		display: block;
	}
}


/* アニメーション */

/* フェードイン　box (section-heading)*/
.fadeIn {
	transition: 1s;
	opacity: 0;
}

.fadeIn.animated {
	opacity: 1;
}

/* フェードイン　テキストふわっと (MV-text)*/
.animation {
	animation: fade-in 3s;
	animation-fill-mode: forwards;
}

@keyframes fade-in {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

/* スライドイン　左から右にテキスト表示(問いかけetc.) */
.text-mask {
	clip-path: inset(0 80% 0 0);
	opacity: 0;
}

.text-mask.is-show {
	animation: textMask 2.5s ease-out 0s forwards;
}

@keyframes textMask {
	to {
		clip-path: inset(0);
		opacity: 1;
	}
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
	transition: 0.8s ease-in-out;
	transform: translateY(30px);
	opacity: 0;
}

.scroll_up.on {
	transform: translateY(0);
	opacity: 1.0;
}

.timing02 {
	transition-delay: .3s;
}

.timing03 {
	transition-delay: .6s;
}

.timing04 {
	transition-delay: .9s;
}

.timing05 {
	transition-delay: 1.2s;
}

/* 左から */
.scroll_left {
	transform: translateX(-30px);
	opacity: 0;
	transition: 0.8s ease-in-out;
}

.scroll_left.on {
	transform: translateX(0);
	opacity: 1;
}

/* 右から */
.scroll_right {
	transform: translateX(30px);
	opacity: 0;
	transition: 0.8s ease-in-out;
}

.scroll_right.on {
	transform: translateX(0);
	opacity: 1;
}


/* ホバー */
/* ①共通（透過のみ） */
.hover-fade {
	transition: .3s ease;
}

.hover-fade:hover {
	opacity: 0.7;
}

/* ② ボタン専用（①+拡大） */
.hover-scale:hover {
	transform: scale(1.1);
}

/* アコーディオン専用（①+背景色） */
.hover-accordion:hover {
	background-color: #F2C6BB;
}


/* SPハンバーガーメニュー　テキスト上から下にふわっと */
#js-nav-sp .nav-items__item {
	opacity: 0;
	transform: translateY(-20px);
	transition: all 0.4s ease;
}

#js-nav-sp.active .nav-items__item {
	opacity: 1;
	transform: translateY(0);
}

#js-nav-sp.active .nav-items__item:nth-child(1) {
	transition-delay: 0.3s;
}

#js-nav-sp.active .nav-items__item:nth-child(2) {
	transition-delay: 0.5s;
}

#js-nav-sp.active .nav-items__item:nth-child(3) {
	transition-delay: 0.7s;
}

#js-nav-sp.active .nav-items__item:nth-child(4) {
	transition-delay: 0.9s;
}

/* SPハンバーガーのメニューのホバー (要確認)*/
#js-nav-sp .nav-items__item {
	transition: 0.3s;
}

#js-nav-sp .nav-items__item:hover {
	opacity: 0.7;
}



/* ----------------------------------------------------
    共通
---------------------------------------------------- */

body {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	line-height: 1.7;
	font-size: 16px;
	color: #555;
	letter-spacing: 0.05em;
}

main {
	overflow: hidden;
}

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

.inner {
	margin: 0 6.4%;
}

section {
	padding: 80px 0;
}

.section-heading {
	line-height: 1;
	margin-bottom: 64px;
}

.section-heading h2 {
	font-size: 32px;
	font-family: "Noto Serif JP", serif;
	text-align: center;
	margin-bottom: 8px;
}

.section-heading p {
	font-size: 46px;
	font-family: "Grey Qo", cursive;
	text-align: center;
	color: #D5BFBA;
}

@media screen and (min-width: 1024px) {
	section {
		padding: 120px 0;
	}

	.inner {
		width: 84%;
		margin: 0 auto;
		max-width: 1200px;
	}

	.section-heading h2 {
		font-size: 36px;
	}

	.section-heading {
		margin-bottom: 72px;
	}

}

/* ----------------------------------------------------
    header　0415編集
---------------------------------------------------- */
.header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	font-family: "Lora", serif;
}

header h1 {
	width: 90px;
}

.header-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.reserve-btn {
	text-decoration: none;
}

.reserve-btn span {
	background-color: #9a331a;
	color: #fff;
	font-size: 14px;
	padding: 8px 24px;
	font-family: "Lora", serif;
}

.reserve-btn span::after {
	content: "";
	display: inline-block;
	width: 14px;
	height: 10px;
	background-image: url("./images/arrow.png");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: 10px;
}

.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: inherit;
	position: relative;
	padding: 6px 0px 6px 16px;
	background-color: #fff;
	box-shadow: 0px 0px 12px 0px rgba(128, 110, 71, 0.2);
	z-index: 999;
}

.header__nav {
	position: absolute;
	display: flex;
	right: 0;
	left: 0;
	top: 0;
	width: 100%;
	transform: translateX(100%);
	background-color: #fff;
	transition: ease 0.4s;
	height: 100vh;
	z-index: 998;
}

.header__nav.active {
	transform: translateX(0);
}

.nav-items {
	margin: 0 auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 24px;
}

.nav-items__item a {
	color: #564e3d;
	text-decoration: none;
	letter-spacing: 3px;
	white-space: nowrap;
}

.nav-items__item:not(:last-child) {
	padding-bottom: 24px;
}

.nav-items__item:last-child {
	margin-top: 60px;
}

.drop-menu-list__sp {
	font-family: "Noto Serif JP", serif;
	font-size: 20px;
	align-items: center;
	/* 横線を上下中央 */
	display: flex;
	/* 文字と横線を横並び */
	justify-content: left;
	/* 文字を中央寄せ */
}

.drop-menu-list__sp::before {
	background-color: #564e3d;
	/* 横線の色 */
	content: "";
	height: 1px;
	/* 横線の高さ */
	width: 10px;
	/* 横線の長さ */
	margin-right: 13px;
	/* 文字との余白 */
}

.drop-menu-list__sp span {
	font-family: "Lora", serif;
	font-size: 12px;
	white-space: nowrap;
}

.hamburger {
	position: relative;
	width: 48px;
	height: 48px;
	background-color: #ffffff;
	border-radius: 100px;
	cursor: pointer;
	border: none;
}

.hamburger .span {
	height: 100%;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 1;
	display: block;
	display: flex;
	width: 100%;
}

.hamburger .span>span {
	position: absolute;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 16px;
	height: 1px;
	background-color: #555;
	transition:
		transform 0.4s ease,
		opacity 0.4s ease;
}

.hamburger .span>span:nth-child(1) {
	top: 40%;
}

.hamburger .span>span:nth-child(2) {
	top: 50%;
}

.hamburger .span>span:nth-child(3) {
	top: 60%;
}

.hamburger.active .span>span:nth-child(1) {
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}

.hamburger.active .span>span:nth-child(2) {
	opacity: 0;
}

.hamburger.active .span>span:nth-child(3) {
	top: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (1024px <=width) {
	.header__nav {
		position: static;
		transform: initial;
		background-color: inherit;
		height: inherit;
		display: flex;
		justify-content: end;
		width: 100%;
	}

	.nav__items {
		width: 100%;
		display: flex;
		align-items: center;
		height: initial;
		justify-content: flex-end;
		gap: 48px;
		font-size: 16px;
	}

	header h1 {
		width: 120px;
	}

	.nav-bg {
		display: none;
	}

	.nav-items {
		position: inherit;
		top: 0;
		left: 0;
		transform: translate(0, 0);
	}

	.nav-items__item:not(:last-child) {
		padding-bottom: 0;
	}

	.nav-items__item a {
		width: 100%;
		display: block;
		border-top: none;
		font-size: 16px;
		font-family: "Noto Serif JP", serif;
	}

	.nav-items__item a:hover {
		opacity: 0.7;
		transition: 0.3s;
	}

	.hamburger {
		display: none;
	}

	.header__inner {
		padding: 0 12px;
	}

	.menu-item {
		border-left: 1px solid #fff;
		/* メニューアイテムの左ボーダー */
		position: relative;
		transition: background-color 0.3s;
		/* 背景色の変化をアニメーション化 */
	}

	.menu-item:hover .drop-menu-list {
		opacity: 1;
		/* 不透明度を最大に */
		transition:
			opacity 0.3s,
			visibility 0.3s;
		/* アニメーション設定 */
		visibility: visible;
		/* 下層メニューを表示 */
	}

	/* ドロップダウンメニュー */
	.drop-menu {
		position: relative;
	}

	.drop-menu-list {
		background-color: #fff;
		/* ドロップダウンメニューの背景色 */
		left: 0;
		opacity: 0;
		/* 不透明度を最小に */
		position: absolute;
		top: 100%;
		transition:
			opacity 0.3s,
			visibility 0.3s;
		/* アニメーション設定 */
		visibility: hidden;
		/* 下層メニューを非表示 */
		width: max-content;
		z-index: 1;
		padding: 36px 122px 36px 29px;
		margin-top: 24px;
	}

	.drop-menu-item {
		margin-top: 14px;
	}

	.menu-item span {
		font-size: 16px;
		font-family: "Lora", serif;
		margin-left: 18px;
	}

	.menu-item span::after {
		content: "";
		display: inline-block;
		width: 14px;
		height: 10px;
		background-image: url("./images/arrow_menu.svg");
		background-position: center;
		background-size: contain;
		background-repeat: no-repeat;
		margin-left: 10px;
	}

	.menu-item .drop-menu-item span::after {
		display: none;
	}

	.reserve-btn span {
		padding: 16px 40px;
		font-size: 16px;
	}

	.nav-items__item:last-child {
		margin-top: 0px;
	}
}

/* ----------------------------------------------------
	mv
---------------------------------------------------- */
.page-top .mv {
	height: 100vh;
	position: relative;
}

.page-top .mv-img img {
	height: 100vh;
	object-fit: cover;
}

.mv-text {
	position: absolute;
	left: 6.4%;
	bottom: 12%;
	color: #fff;
	font-family: "Noto Serif JP", serif;
}

.mv .main-copy {
	font-size: 32px;
	margin-bottom: 8px;
	line-height: 1.8;
}

.mv .sub-copy {
	line-height: 1.6;
	font-family: "Noto Sans JP", sans-serif;
}

@media screen and (1024px <=width) {
	.mv-text {
		position: absolute;
		bottom: 100px;
		top: auto;
		width: 92%;
		max-width: 1200px;
		right: 0;
		left: 0;
		margin: 0 auto;
	}

	.mv .main-copy {
		font-size: 48px;
		margin-bottom: 24px;
	}

	.mv .sub-copy {
		font-size: 18px;
	}
}

/* ----------------------------------------------------
    about
---------------------------------------------------- */
.about .txt {
	margin-top: 64px;
}

.about .txt h3 {
	font-size: 32px;
	margin-bottom: 32px;
	font-family: "Noto Serif JP", serif;
	line-height: 1.5;
}

@media screen and (min-width: 1024px) {
	.about .conteiner {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.about .txt {
		margin-top: 0;
		width: 51%;
	}

	.about .conteiner .image {
		width: 44%;
	}

	.about .txt h3 {
		font-size: 40px;
		margin-bottom: 36px;
	}
}

/* ----------------------------------------------------
	concept
---------------------------------------------------- */
.concept-item {
	padding-bottom: 32px;
	margin-bottom: 32px;
}

.concept-item:last-child {
	margin-bottom: 0;
}

.concept h3 {
	font-size: 24px;
	font-family: "Noto Serif JP", serif;
	text-align: center;
	font-weight: 500;
	margin: 24px 0;
}

@media screen and (min-width: 1024px) {
	.concept-list {
		display: flex;
		gap: 54px;
	}

	.concept-list li {
		width: calc((100% - (54px * 2)) / 3);
	}
}

/* ----------------------------------------------------
    menu
---------------------------------------------------- */
section.menu {
	padding-bottom: 0;
}

.menu {
	background-color: #FBF8F7;
}

.menu-title {
	padding: 40px 6.4%;
}

.menu-item-1 .menu-subtext {
	color: #9E7F3C;
}

.menu-item-2 .menu-subtext {
	color: #9E403C;
}

.menu-title p {
	font-size: 14px;
}

.menu h3 {
	font-size: 36px;
	font-family: "Noto Serif JP", serif;
	margin-right: 13px;
}

.menu-heading p {
	font-family: "Lora", serif;
	font-weight: 500;
}

.menu-heading {
	display: flex;
	align-items: center;
}

.menu-txt {
	margin: 40px 0;
}

.menu-item-1 {
	background-color: #fff;
}

.menu-item-1 .menu-heading {
	color: #9E7F3C;

	margin-top: 10px;
}


.menu-item-2 {
	background-color: #F6ECE8;
}

.menu-item-2 .menu-heading {
	color: #9E403C;
}

.menu-item-1 .menu-btn,
.menu-item-2 .menu-btn {
	color: #fff;
	padding: 16px 40px;
	text-decoration: none;
	font-family: "Lora", serif;
	font-weight: 500;
	display: block;
	width: 100%;
	text-align: center;
	box-sizing: border-box;
}

.menu-item-1 .menu-btn {
	background-color: #9E7F3C;
}

.menu-item-2 .menu-btn {
	background-color: #9A331A;
}

.menu-item-1 .menu-btn span::after,
.menu-item-2 .menu-btn span::after {
	content: "";
	display: inline-block;
	width: 14px;
	height: 10px;
	background-image: url('./images/arrow.png');
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: 10px;
}


@media screen and (min-width: 1024px) {
	.menu-item-1 {
		display: flex;
		flex-direction: row-reverse;
	}

	.menu-item-1 .image {
		width: 50%;
	}

	.menu-title {
		padding: 40px 6%;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.menu-item-1 .menu-title {
		width: 38%;
	}

	.menu-item-2 .image {
		width: 50%;
	}


	.menu-item-2 .menu-title {
		width: 38%;
	}

	.menu-item-2 {
		display: flex;
	}

	.menu-item-1 .menu-btn {
		width: 192px;
		padding: 16px;
	}

	.menu-item-2 .menu-btn {
		width: 192px;
		padding: 16px;
	}
}


/* ----------------------------------------------------
	before-after
---------------------------------------------------- */
.before-after .section-heading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.before-after li {
	background-color: #FBF8F7;
	text-align: center;
	position: relative;
	padding: 58px 20px 36px;
	margin-bottom: 92px;
}

.before-after li:last-child {
	margin-bottom: 0;
}

.before-after h3 {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -41px;
	color: rgba(185, 148, 139, 0.6);
	font-size: 31px;
	font-family: "Lora", serif;
}

.before-after h3 span {
	font-size: 43px;
}

.before-after-image {
	position: relative;
}

.before-after-image p {
	position: absolute;
	top: 6px;
	left: 12px;
	color: #fff;
	font-family: "Lora", serif;
}

.before-after .case-title {
	font-family: "Noto Serif JP", serif;
	font-size: 20px;
	font-weight: 600;
}

.before-after .case-subtitle {
	font-size: 14px;
	margin-top: 16px;
	margin-bottom: 12px;
}

.before-after .case-caption {
	font-size: 12px;
	margin-top: 16px;
}

.before-after .image-arrow {
	transform: rotate(90deg);
	display: flex;
	margin: 8px auto;
	justify-content: center;
	align-items: center;
}

.before-after .image-arrow img {
	height: 23px;
	width: auto;
}


@media screen and (min-width: 1024px) {
	.before-after .section-heading {
		justify-content: flex-start;
	}

	.before-after .case-title {
		font-size: 28px;
	}

	.before-after .case-subtitle {
		font-size: 16px;

	}

	.before-after .wrapper {
		display: flex;
		gap: 18px;
	}

	.before-after .image-arrow img {
		transform: rotate(-90deg);
	}

	.before-after li {
		padding: 40px;
	}

	.before-after .case-caption {
		text-align: right;
	}

	.before-after .case-subtitle {
		margin-bottom: 48px;
	}
}


/* ----------------------------------------------------
	voice
---------------------------------------------------- */
.voice {
	background-color: #F9F1EF;
}

.voice .section-txt {
	text-align: center;
	margin-top: -34px;
	margin-bottom: 64px;
}

.voice .voice-item {
	background-color: #fff;
	padding: 24px 24px;
	margin-bottom: 56px;
}

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

.voice-item .image {
	width: 240px;
	display: block;
	margin: 0 auto;
}

.voice h3 {
	font-family: "Noto Serif JP", serif;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0;
	margin-top: 32px;
	margin-bottom: 24px;
}

.voice-item .voice-name {
	font-size: 14px;
	letter-spacing: 0;
	margin-bottom: 8px;
}

.voice .voice-caption {
	font-size: 14px;
	text-align: center;
	margin-top: 64px;
}

.voice .voice-rating {
	width: 130px;
}

.voice .voice-txt {
	font-size: 14px;
	letter-spacing: 0;
	margin-top: 24px;
	border-top: 8px solid #F9F1EF;
	padding-top: 24px;
}

@media screen and (min-width: 1024px) {
	.voice .voice-item {
		display: flex;
		gap: 32px;
		align-items: center;
		padding: 64px 56px;
		margin-bottom: 64px;
	}

	.voice-item .image {
		margin: 0;
	}

	.voice-item .txt {
		width: 70%;
	}

	.voice h3 {
		margin-top: 0;
		font-size: 24px;
		margin-bottom: 20px;
	}

	.voice-item .voice-name {
		font-size: 18px;
		margin-bottom: 0;
	}

	.voice-item .wrapper {
		display: flex;
		align-items: center;
		gap: 8px;
	}

	.voice .voice-txt {
		margin-top: 20px;
		padding-top: 20px;
		font-size: 16px;
	}
}


/* ----------------------------------------------------
	salon-information
---------------------------------------------------- */
.salon-information .salon-logo {
	width: 177px;
	display: block;
	margin: 0 auto;
}

.salon-list {
	margin-top: 64px;
	margin-bottom: 70px;
}

.salon-list .salon-item {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin-bottom: 8px;
}

.salon-list .salon-item:last-child {
	margin-bottom: 0;
}

.salon-list .salon-item .salon-icon {
	width: 24px;
	margin-top: -4px;
}

.salon-list .salon-item p {
	line-height: 1.5;
	letter-spacing: 0;
	margin: 0;
	width: 93%;
}

.salon-slide .card {
	margin: 0 12px;
}

.salon-slide .card .image img {
	aspect-ratio: 3/2;
	object-fit: cover;
}

.salon-slide h3 {
	font-size: 18px;
	line-height: 1.5;
	letter-spacing: 0;
	margin-top: 16px;
	margin-bottom: 16px;
}

.salon-slide p {
	font-size: 14px;
	line-height: 1.5;
	letter-spacing: 0;
}

@media screen and (min-width: 1024px) {
	.salon-information .salon-logo {
		margin: 0;
		width: 40%;
		max-width: 440px;
	}

	.salon-list {
		margin: 0;
		width: 55%;
	}

	.salon-information .wrapper {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 72px;
	}

	.salon-list .salon-item {
		margin-bottom: 24px;
	}

	.salon-slide h3 {
		font-size: 24px;
	}

	.salon-slide p {
		font-size: 16px;
	}
}


/* ----------------------------------------------------
	news
---------------------------------------------------- */
.news {
	background-image: url('./images/news-background.jpg');
	background-size: cover;
	background-position: left bottom;
	background-repeat: no-repeat;
}

.news .section-txt {
	text-align: center;
}

.news .news-list {
	margin-top: 64px;
	margin-bottom: 64px;
}

.news-list .news-item {
	padding: 24px 0;
	border-bottom: 1px solid #CACAC8;
}

.news-list .news-item a {
	text-decoration: none;
}

.news-item time {
	font-family: "Lora", serif;
	font-size: 14px;
	color: #555;
}

.news-item .news-label {
	display: inline-block;
	padding: 2px 12px 1px;
	background-color: #F6EBE8;
	font-family: "Lora", serif;
	font-size: 12px;
	color: #9A331A;
	margin-left: 6px;
}

.news-item .news-title {
	font-size: 14px;
	margin-top: 10px;
	color: #555;
}

.news .news-btn {
	color: #fff;
	padding: 16px 40px;
	text-decoration: none;
	font-weight: 500;
	display: block;
	width: 100%;
	text-align: center;
	box-sizing: border-box;
	background-color: #9A331A;
}

.news .news-btn span::after {
	content: "";
	display: inline-block;
	width: 14px;
	height: 10px;
	background-image: url('./images/arrow.png');
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: 10px;
}

@media screen and (min-width: 1024px) {
	.news .section-heading {
		margin-bottom: 24px;
	}

	.news .news-list {
		width: 780px;
		margin: 72px auto;
	}

	.news-item time {
		font-size: 16px;
	}

	.news-item .news-title {
		font-size: 16px;
		margin: 0;
	}

	.news-item a {
		display: flex;
		gap: 16px;
	}

	.news .news-btn {
		width: 220px;
		padding: 16px;
		margin: 0 auto;
	}
}

/* ----------------------------------------------------
	faq
---------------------------------------------------- */

.faq {
	background-color: #F9F1EF;
}

.faq h3 {
	font-family: "Noto Serif JP", serif;
	font-size: 24px;
	margin-bottom: 40px;
	max-width: 500px;
	margin: 0 auto 24px;
}

.faq h3 .faq-title1 {
	color: #9E7F3C;
}

.faq h3 .faq-title2 {
	color: #9E403C;
}

.faq .q-mark {
	font-family: "Lora", serif;
	font-size: 14px;
	font-weight: 600;
	color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 3px;
}

.faq .a-mark {
	font-family: "Lora", serif;
	font-size: 14px;
	font-weight: 600;
	color: #9A331A;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 3px;
}

.faq .question {
	display: flex;
	gap: 14px;
}

.faq .answer {
	display: flex;
	gap: 14px;
}

/* 以降、アコーディオンCSS */
.accordion-wrap {
	margin: 0 auto;
}

.accordion-005 {

	max-width: 500px;
	margin: 0 auto;
}

.accordion-005:not([open]) {
	margin-bottom: 32px;
}

.accordion-005 summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding: 16px 32px 16px 16px;
	background-color: #fff;
	color: #555;
	cursor: pointer;
}

.accordion-005 summary::-webkit-details-marker {
	display: none;
}

.accordion-005 summary::before,
.accordion-005 summary::after {
	width: 1px;
	height: 16px;
	border-radius: 5px;
	background-color: #555555;
	content: '';
}

.accordion-005 summary::before {
	position: absolute;
	right: 16px;
	rotate: 90deg;
}

.accordion-005 summary::after {
	transition: rotate .3s;
	right: -16px;
	position: relative;
}

.accordion-005[open] summary::after {
	rotate: 90deg;
}

.accordion-005 p {
	transform: translateY(-10px);
	opacity: 0;
	margin: 0;
	padding: 16px;
	color: #555;
	transition: transform .5s, opacity .5s;
	background-color: #fff;
}

.accordion-005[open] p {
	transform: none;
	opacity: 1;
	margin: 8px 0 32px;
	border-left: 3px solid #C28576;
}

@media screen and (min-width: 1024px) {
	.accordion-005 {
		max-width: 780px;
	}

	.faq h3 {
		max-width: 780px;
		margin-bottom: 40px;
		margin-top: 72px;
	}

	.accordion-005 summary {
		padding-top: 20px;
		padding-bottom: 20px;
	}
}


/* ----------------------------------------------------
    footer
---------------------------------------------------- */
#contact .image img {
	height: 518px;
	object-fit: cover;
	object-position: top;
}

.footer-reserve {
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 8px;
	background: #fff
}

.footer-reserve li {
	padding: 64px 6.4%;
	background-color: #FBF8F7;
}

.footer-reserve h2 {
	font-family: "Noto Serif JP", serif;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.5;
}

.footer-reserve p {
	line-height: 1.5;
	margin: 16px 3%;
}

.footer-reserve .hpb-reserve-btn,
.footer-reserve .line-reserve-btn {
	color: #fff;
	padding: 16px 40px;
	text-decoration: none;
	font-weight: 500;
	display: block;
	width: 100%;
	text-align: center;
	box-sizing: border-box;
}

.footer-reserve .hpb-reserve-btn {
	background-color: #903357;
}

.footer-reserve .line-reserve-btn {
	background-color: #57A977;
}

.footer-reserve .hpb-reserve-btn span::after,
.footer-reserve .line-reserve-btn span::after {
	content: "";
	display: inline-block;
	width: 14px;
	height: 10px;
	background-image: url('./images/arrow.png');
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: 10px;
}

/* ここからサロン情報CSS */
.footer-saloninfo {
	padding: 64px 6.4%;
	background-color: #B9948B;
}

.footer-saloninfo p {
	color: #fff;
}

.footer-saloninfo .footer-subtitle {
	font-size: 20px;
	letter-spacing: 0;
	margin-bottom: 8px;
}

.footer-saloninfo .footer-salonname {
	font-family: "Lora", serif;
	font-size: 48px;
	line-height: 1;
	margin-bottom: 16px;
}

.footer-salon-list .footer-salon-item {
	display: flex;
	align-items: flex-start;
	gap: 4px;
	margin-bottom: 8px;
}

.footer-salon-list .footer-salon-item:last-child {
	margin-bottom: 0;
}

.footer-salon-item .footer-salon-icon {
	width: 19px;
	margin-top: -5px;
}

.footer-salon-item p {
	font-size: 14px;
	line-height: 1.5;
	letter-spacing: 0;
	margin: 0;
	width: 94%;
}

.map-container {
	position: relative;
	padding-top: 56.25%;
	height: 0;
	margin: 28px 0;
}

.map-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.copyright {
	font-size: 14px;
	text-align: right;
}

@media screen and (min-width: 1024px) {
	.footer-reserve {
		display: flex;
		flex-direction: row;
		gap: 8px;
	}

	.footer-reserve li {
		width: calc((100% - 8px) / 2);
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		padding: 80px 0;
	}

	.footer-reserve p {
		margin: 32px 0;
	}

	.footer-reserve .hpb-reserve-btn,
	.footer-reserve .line-reserve-btn {
		width: 220px;
		padding: 16px;
		margin: 0 auto;
		top: -1px;
		position: relative;
	}

	.footer-inner {
		display: flex;
		gap: 40px;
		align-items: flex-start;
		margin-bottom: 12px;
		max-width: 1200px;
		width: 84%;
		margin: 0 auto;
	}

	.footer-inner .wrapper {
		flex-shrink: 0;
		width: 40%;
	}

	.map-container {
		display: block;
		flex: 1;
		position: relative;
		padding-top: 0;
		height: 400px;
		margin: 0;
	}

	.footer-saloninfo {
		padding: 120px 0 90px;
	}

	.footer-saloninfo .footer-salonname {
		margin-bottom: 48px;
	}

	.footer-salon-list .footer-salon-item {
		margin-bottom: 24px;
	}

	.footer-salon-item p {
		font-size: 16px;
		width: auto;
	}

	.copyright {
		max-width: 1200px;
		width: 84%;
		margin: 12px auto 0;
	}
}

/* ここから下層ページ */
/* 垢すりページ */

/* ----------------------------------------------------
	mv
---------------------------------------------------- */
.page-scraping .mv {
	position: relative;
}

.page-scraping .mv-img img {
	height: 220px;
	object-fit: cover;
}

.page-scraping .mv-text {
	position: absolute;
	left: 6.4%;
	bottom: 14%;
	color: #fff;
	font-family: "Noto Serif JP", serif;
}

.page-scraping .mv .main-copy {
	font-size: 32px;
	margin-bottom: 8px;
}

.page-scraping .mv .sub-copy {
	line-height: 1.6;
	font-family: "Noto Sans JP";
}

@media screen and (1024px <=width) {
	.page-scraping .mv-text {
		position: absolute;
		bottom: 72px;
		top: auto;
		width: 84%;
		max-width: 1200px;
		right: 0;
		left: 0;
		margin: 0 auto;
	}

	.page-scraping .mv .main-copy {
		font-size: 48px;
		margin-bottom: 12px;
	}

	.page-scraping .mv .sub-copy {
		font-size: 20px;
	}

	.page-scraping .mv-img img {
		height: 420px;
		object-fit: cover;
		padding-top: 60px;
	}
}

/* ----------------------------------------------------
    肌質改善
---------------------------------------------------- */
.page-scraping .about {
	background-color: #FFF8F8;
}

.page-scraping .section-heading p {
	font-size: 46px;
	font-family: "Grey Qo", cursive;
	text-align: center;
	color: #9e403c;
	opacity: 0.6;
}

.page-scraping .about .txt {
	margin-top: 24px;
}

.page-scraping .about .txt h3 {
	font-size: 24px;
	margin-bottom: 8px;
	font-family: "Noto Serif JP", serif;
	line-height: 1.5;
	color: #9e403c;
}

.page-scraping .about-sub-copy {
	font-size: 16px;
	margin-bottom: 24px;
	font-family: "Noto Sans JP";
	line-height: 1.5;
	color: #9e403c;
	align-items: center;
	/* 横線を上下中央 */
	display: flex;
	/* 文字と横線を横並び */
	justify-content: left;
	/* 文字を中央寄せ */
}

.page-scraping .about-sub-copy::before {
	background-color: #9e403c;
	/* 横線の色 */
	content: "";
	height: 1px;
	/* 横線の高さ */
	width: 14px;
	/* 横線の長さ */
	margin-right: 8px;
	/* 文字との余白 */
}

.page-scraping .about-sub-copy::after {
	background-color: #9e7f3c;
	/* 横線の色 */
	content: "";
	height: 1px;
	/* 横線の高さ */
	width: 14px;
	/* 横線の長さ */
	margin-left: 8px;
	/* 文字との余白 */
}

.page-scraping .conteiner:not(:last-child) {
	margin-bottom: 64px;
}

@media screen and (min-width: 1024px) {
	.page-scraping .about .conteiner {
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-direction: row-reverse;
	}

	.page-scraping .about .txt {
		margin-top: 0;
		width: 58%;
	}

	.page-scraping .about .conteiner .image {
		width: 39%;
	}

	.page-scraping .about .txt h3 {
		font-size: 32px;
		margin-bottom: 16px;
	}

	.page-scraping .about-sub-copy {
		font-size: 18px;
		margin-bottom: 32px;
	}

	.page-scraping .problem__img {
		width: 90%;
		margin: 0 auto 0 0;
	}
}

/* ----------------------------------------------------
    こんなお悩み
---------------------------------------------------- */
.page-scraping .problem {
	padding-bottom: 0px;
}

.page-scraping .problem__img {
	width: 90%;
	margin: auto;
}

.page-scraping .section-heading span {
	color: #9e403c;
}

.page-scraping .salon-menu .txt h3 {
	font-size: 28px;
}

.page-scraping .salon-menu .txt p {
	text-align: center;
	margin-top: 16px;
}

.page-scraping .conteiner .salon-menu-txt h3 {
	font-size: 24px;
	margin-bottom: 24px;
}

.page-scraping .conteiner .salon-menu-txt p {
	text-align: left;
}

@media screen and (min-width: 1024px) {
	.page-scraping .problem__img {
		width: 90%;
		margin: 0 auto 0 0;
	}
}

/* ----------------------------------------------------
    メニュー
---------------------------------------------------- */
.page-scraping .menu {
	background-image: url(./images/menu_bg.jpg);
}

.page-scraping .menu__inner {
	background-color: #fff;
}

.page-scraping .menu__inner h3 {
	font-size: 24px;
	margin-top: 16px;
	font-family: "Noto Serif JP", serif;
	line-height: 1.5;
	color: #555;
	text-align: left;
}

.page-scraping .price__txt {
	font-size: 24px;
	font-family: "Noto Serif JP", serif;
	line-height: 1.5;
	color: #9e403c;
	text-align: left;
}

.page-scraping .menu__inner .txt {
	padding: 20px;
}

.page-scraping .menu__txt {
	margin-top: 32px;
	margin-bottom: 24px;
}

.page-scraping .tag_area ul li {
	display: inline-block;
	margin: 0 6px 6px 0;
	padding: 0;
}

.page-scraping .tag_area ul li {
	height: 26px;
	line-height: 26px;
	padding: 0 16px 0;
	background-color: #9e403c;
	opacity: 0.8;
	border-radius: 30px;
	color: #fff;
	font-size: 14px;
	text-decoration: none;
}

.page-scraping .menu .conteiner:not(:last-child) {
	margin-bottom: 40px;
}

.page-scraping .menu .menu-btn {
	color: #fff;
	padding: 16px 40px;
	text-decoration: none;
	font-family: "Lora", serif;
	font-weight: 500;
	display: block;
	width: 100%;
	text-align: center;
	box-sizing: border-box;
	background-color: #9e403c;
	margin-top: 64px;
}

.page-scraping .menu .menu-btn span::after {
	content: "";
	display: inline-block;
	width: 14px;
	height: 10px;
	background-image: url("./images/arrow.png");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: 10px;
}

.page-scraping .option {
	margin-top: 80px;
}

.page-scraping .txt__wrap {
	display: block;
	justify-content: space-between;
}

.page-scraping .menu .image {
	margin-bottom: 64px;
}

.page-scraping .highlight {
	color: #c58c8a;
}

@media screen and (min-width: 1024px) {
	.page-scraping .salon-menu .txt {
		display: block;
		align-items: center;
		width: 100%;
		margin: 0 auto 72px;
		padding-right: 47px;
	}

	.page-scraping .salon-menu .txt h3 {
		font-size: 36px;
		text-align: center;
	}

	.page-scraping .salon-menu .txt p {
		font-size: 24px;
	}

	.page-scraping .salon-menu .conteiner {
		flex-direction: row;
		gap: 32px;
	}

	.page-scraping .conteiner .salon-menu-txt h3 {
		font-size: 24px;
		text-align: left;
	}

	.page-scraping .conteiner .salon-menu-txt p {
		font-size: 16px;
	}

	.page-scraping .salon-menu .conteiner .image {
		width: 92%;
	}

	.page-scraping .conteiner .salon-menu-txt {
		margin-bottom: 0;
	}

	.page-scraping .menu {
		padding-bottom: 120px;
	}

	.page-scraping .menu__inner__wrap {
		display: flex;
		gap: 16px;
	}

	.page-scraping .menu__inner {
		width: 100%;
	}

	.page-scraping .menu__inner .image img {
		height: 340px;
	}

	.page-scraping .menu .menu__inner__wrap .conteiner {
		margin-bottom: 0px;
	}

	.page-scraping .menu__inner .txt {
		padding: 28px 8px 56px;
	}

	.page-scraping .menu .menu-btn {
		margin: 72px auto 96px;
		width: 22%;
		padding: 16px 0px;
	}

	.page-scraping .menu__inner .option__inner {
		padding: 52px 142px;
	}

	.page-scraping .menu__inner .option__inner .menu__txt {
		font-size: 18px;
	}

	.page-scraping .menu .image {
		margin-bottom: 16px;
	}

	.page-scraping .menu .image img {
		object-fit: cover;
		height: 445px;
	}

	.page-scraping .menu__inner h3 {
		text-align: center;
	}

	.page-scraping .price__txt {
		text-align: center;
		margin-top: 24px;
	}

	.page-scraping .txt__wrap {
		display: flex;
		justify-content: space-between;
	}
}

/* ----------------------------------------------------
    店舗紹介
---------------------------------------------------- */
.page-scraping .salon,
.page-scraping .flow {
	background-color: #fff;
}

.page-scraping .salon__conteiner__image {
	width: 93%;
	margin: 0 0 0 auto;
}

.page-scraping .salon__conteiner__txt {
	width: 70%;
	padding: 34px 6.4%;
	background-color: #f0efeb;
	margin-top: -18px;
}

.page-scraping .salon__conteiner__maintxt {
	font-size: 18px;
	margin-bottom: 16px;
	font-family: "Noto Serif JP", serif;
	line-height: 1.5;
	color: #555;
}

.page-scraping .salon__conteiner__subtxt {
	font-size: 14px;
	font-family: "Noto Sans JP";
	line-height: 1.5;
	color: #555;
}

.page-scraping .salon__conteiner {
	margin-bottom: 64px;
}

.page-scraping .salon__conteiner__image_02 {
	width: 93%;
	margin: 0 auto 0 0;
	z-index: 2;
}

.page-scraping .salon__conteiner__txt_02 {
	width: 70%;
	padding: 34px 6.4%;
	background-color: #e9dfdb;
	margin: -18px 0 0 auto;
}

@media screen and (min-width: 1024px) {
	.page-scraping .salon__conteiner {
		display: flex;
		align-items: flex-end;
	}

	.page-scraping .salon__01 {
		flex-direction: row-reverse;
	}

	.page-scraping .salon__02 {
		flex-direction: row;
	}

	.page-scraping .salon__conteiner__txt {
		margin-left: 47px;
		width: 618px;
		padding: 100px 70px;
		margin-right: -237px;
		margin-bottom: -26px;
	}

	.page-scraping .salon__conteiner__maintxt {
		font-size: 32px;
	}

	.page-scraping .salon__conteiner__subtxt {
		font-size: 16px;
	}

	.page-scraping .salon__conteiner__txt_02 {
		margin-right: 47px;
		width: 618px;
		padding: 100px 10px 100px 114px;
		margin-left: -237px;
		margin-bottom: -26px;
		background-color: #e9dfdb;
		z-index: 1;
		display: flex;
		justify-content: flex-end;
	}

	.page-scraping .salon__conteiner__txt_02_wrap {
		display: table;
		width: 60%;
	}

	.page-scraping .salon__conteiner {
		margin-bottom: 72px;
	}
}

/* ----------------------------------------------------
    ご利用の流れ
---------------------------------------------------- */
.page-scraping .flow {
	padding-left: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
	position: relative;
}

.page-scraping .flow li dl {
	padding: 30px 20px;
	margin: 0;
	background-color: #FFF8F8;
	position: relative;
}

.page-scraping .flow_icon img {
	width: 30px;
}

.page-scraping .flow_icon {
	background-color: #b16562;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.page-scraping .flow_step_ttl {
	font-size: 24px;
	margin-bottom: 8px;
	font-family: "Noto Serif JP", serif;
	line-height: 1.5;
	color: #9e403c;
	margin-left: 16px;
}

.page-scraping .flow_step {
	font-family: "Lora", serif;
	font-size: 16px;
}

.page-scraping .flow_step_number {
	font-size: 21px;
	margin-left: 4px;
}

.page-scraping .flow_ttl {
	display: flex;
	margin-bottom: 24px;
}

.page-scraping .flow_arrow {
	width: 23px;
	height: 16px;
	margin: 16px auto;
	transform: translateY(-50%);
}

.page-scraping .flow_step_detail {
	color: #9e403c;
}

@media screen and (min-width: 1024px) {
	.page-scraping .flow {
		gap: 64px;
	}

	.page-scraping .flow__container {
		display: flex;
		justify-content: space-around;
		gap: 20px;
	}

	.page-scraping .flow_arrow {
		width: 90px;
		max-width: 26px;
		height: 16px;
		margin: auto;
		transform: rotate(270deg) translateY(-50%);
	}

	.page-scraping .flow_wrap {
		width: 100%;
		max-width: 358px;
		min-height: 211px;
	}

	.page-scraping .flow li dl {
		padding: 20px;
		min-height: 260px;
	}
}

/* 肌質改善ページ */

/* ----------------------------------------------------
	mv
---------------------------------------------------- */
.page-improving .mv {
	position: relative;
}

.page-improving .mv-img img {
	height: 220px;
	object-fit: cover;
	padding-top: 60px;
}

.page-improving .mv-text {
	position: absolute;
	left: 6.4%;
	bottom: 80px;
	color: #555555;
	font-family: "Noto Serif JP", serif;
}

.page-improving .mv .main-copy {
	font-size: 32px;
	margin-bottom: 8px;
}

.page-improving .mv .sub-copy {
	line-height: 1.6;
	font-family: "Noto Sans JP";
}

@media screen and (1024px <=width) {
	.page-improving .mv-text {
		position: absolute;
		top: auto;
		width: 84%;
		max-width: 1200px;
		right: 0;
		left: 0;
		margin: 0 auto;
	}

	.page-improving .mv .main-copy {
		font-size: 48px;
		margin-bottom: 24px;
	}

	.page-improving .mv .sub-copy {
		font-size: 20px;
	}

	.page-improving .mv-img img {
		height: 420px;
		object-fit: cover;
	}
}

/* ----------------------------------------------------
    肌質改善
---------------------------------------------------- */
.page-improving .about {
	background-color: #fbfaf7;
}

.page-improving .section-heading p {
	font-size: 46px;
	font-family: "Grey Qo", cursive;
	text-align: center;
	color: #9e7f3c;
	opacity: 0.6;
}

.page-improving .about .txt {
	margin-top: 24px;
}

.page-improving .about .txt h3 {
	font-size: 24px;
	margin-bottom: 8px;
	font-family: "Noto Serif JP", serif;
	line-height: 1.5;
	color: #9e7f3c;
}

.page-improving .about-sub-copy {
	font-size: 16px;
	margin-bottom: 24px;
	font-family: "Noto Sans JP";
	line-height: 1.5;
	color: #9e7f3c;
	align-items: center;
	/* 横線を上下中央 */
	display: flex;
	/* 文字と横線を横並び */
	justify-content: left;
	/* 文字を中央寄せ */
}

.page-improving .about-sub-copy::before {
	background-color: #9e7f3c;
	/* 横線の色 */
	content: "";
	height: 1px;
	/* 横線の高さ */
	width: 14px;
	/* 横線の長さ */
	margin-right: 8px;
	/* 文字との余白 */
}

.page-improving .about-sub-copy::after {
	background-color: #9e7f3c;
	/* 横線の色 */
	content: "";
	height: 1px;
	/* 横線の高さ */
	width: 14px;
	/* 横線の長さ */
	margin-left: 8px;
	/* 文字との余白 */
}

.page-improving .conteiner:not(:last-child) {
	margin-bottom: 64px;
}

@media screen and (min-width: 1024px) {
	.page-improving .about .conteiner {
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-direction: row-reverse;
	}

	.page-improving .about .txt {
		margin-top: 0;
		width: 58%;
	}

	.page-improving .about .conteiner .image {
		width: 39%;
	}

	.page-improving .about .txt h3 {
		font-size: 32px;
		margin-bottom: 16px;
	}

	.page-improving .about-sub-copy {
		font-size: 18px;
		margin-bottom: 32px;
	}
}

/* ----------------------------------------------------
    こんなお悩み
---------------------------------------------------- */
.page-improving .problem {
	padding-bottom: 0px;
}

.page-improving .problem__img {
	width: 90%;
	margin: auto;
}

.page-improving .section-heading span {
	color: #9e7f3c;
}

.page-improving .salon-menu .txt h3 {
	font-size: 28px;
}

.page-improving .salon-menu .txt p {
	text-align: center;
	margin-top: 16px;
}

.page-improving .conteiner .salon-menu-txt h3 {
	font-size: 24px;
	margin-bottom: 24px;
}

.page-improving .conteiner .salon-menu-txt p {
	text-align: left;
}

/* ----------------------------------------------------
    メニュー
---------------------------------------------------- */
.page-improving .menu {
	background-image: url(./images/menu_bg.jpg);
	background-size: cover;
}

.page-improving .menu__inner {
	background-color: #fff;
}

.page-improving .menu__inner h3 {
	font-size: 24px;
	margin-top: 16px;
	font-family: "Noto Serif JP", serif;
	line-height: 1.5;
	color: #555;
	text-align: center;
}

.page-improving .price__txt {
	font-size: 24px;
	margin-top: 16px;
	font-family: "Noto Serif JP", serif;
	line-height: 1.5;
	color: #9e7f3c;
	text-align: center;
}

.page-improving .menu__inner .txt {
	padding: 20px;
}

.page-improving .menu__txt {
	margin-top: 32px;
	margin-bottom: 24px;
}

.page-improving .tag_area ul li {
	display: inline-block;
	margin: 0 6px 6px 0;
	padding: 0;
}

.page-improving .tag_area ul li {
	height: 26px;
	line-height: 26px;
	padding: 0 16px 0;
	background-color: #9e7f3c;
	opacity: 0.8;
	border-radius: 30px;
	color: #fff;
	font-size: 14px;
	text-decoration: none;
}

.page-improving .menu .conteiner:not(:last-child) {
	margin-bottom: 40px;
}

.page-improving .menu .menu-btn {
	color: #fff;
	padding: 16px 40px;
	text-decoration: none;
	font-family: "Lora", serif;
	font-weight: 500;
	display: block;
	width: 100%;
	text-align: center;
	box-sizing: border-box;
	background-color: #9e7f3c;
	margin-top: 64px;
}

.page-improving .menu .menu-btn span::after {
	content: "";
	display: inline-block;
	width: 14px;
	height: 10px;
	background-image: url("./images/arrow.png");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: 10px;
}

.page-improving .option {
	margin-top: 80px;
}

.page-improving .txt__wrap {
	display: flex;
	justify-content: space-between;
}

@media screen and (min-width: 1024px) {
	.page-improving .salon-menu .txt {
		display: block;
		align-items: center;
		width: 100%;
		margin: 0 auto 72px;
		padding-right: 47px;
	}

	.page-improving .salon-menu .txt h3 {
		font-size: 36px;
		text-align: center;
	}

	.page-improving .salon-menu .txt p {
		font-size: 24px;
	}

	.page-improving .salon-menu .conteiner {
		flex-direction: row;
		gap: 32px;
	}

	.page-improving .conteiner .salon-menu-txt h3 {
		font-size: 24px;
		text-align: left;
	}

	.page-improving .conteiner .salon-menu-txt p {
		font-size: 16px;
	}

	.page-improving .salon-menu .conteiner .image {
		width: 92%;
	}

	.page-improving .conteiner .salon-menu-txt {
		margin-bottom: 0;
	}

	.page-improving .menu {
		padding-bottom: 120px;
	}

	.page-improving .menu__inner__wrap {
		display: flex;
		gap: 64px;
	}

	.page-improving .menu__inner {
		width: 100%;
	}

	.page-improving .menu__inner .image img {
		height: 340px;
		object-fit: cover;
	}

	.page-improving .menu .menu__inner__wrap .conteiner {
		margin-bottom: 0px;
	}

	.page-improving .menu__inner .txt {
		padding: 26px 55px 92px;
	}

	.page-improving .menu .menu-btn {
		margin: 72px auto 96px;
		width: 22%;
		padding: 16px 0px;
	}

	.page-improving .menu__inner .option__inner {
		padding: 52px 142px;
	}

	.page-improving .menu__inner .option__inner .menu__txt {
		font-size: 18px;
	}
}

/* ----------------------------------------------------
    店舗紹介
---------------------------------------------------- */
.page-improving .salon,
.page-improving .flow {
	background-color: #fff;
}

.page-improving .salon__conteiner__image {
	width: 93%;
	margin: 0 0 0 auto;
}

.page-improving .salon__conteiner__txt {
	width: 70%;
	padding: 34px 6.4%;
	background-color: #f0efeb;
	margin-top: -18px;
}

.page-improving .salon__conteiner__maintxt {
	font-size: 18px;
	margin-bottom: 16px;
	font-family: "Noto Serif JP", serif;
	line-height: 1.5;
	color: #555;
}

.page-improving .salon__conteiner__subtxt {
	font-size: 14px;
	font-family: "Noto Sans JP";
	line-height: 1.5;
	color: #555;
}

.page-improving .salon__conteiner {
	margin-bottom: 64px;
}

.page-improving .salon__conteiner__image_02 {
	width: 93%;
	margin: 0 auto 0 0;
	z-index: 2;
}

.page-improving .salon__conteiner__txt_02 {
	width: 70%;
	padding: 34px 6.4%;
	background-color: #e9dfdb;
	margin: -18px 0 0 auto;
}

@media screen and (min-width: 1024px) {
	.page-improving .salon__conteiner {
		display: flex;
		align-items: flex-end;
	}

	.page-improving .salon__01 {
		flex-direction: row-reverse;
	}

	.page-improving .salon__02 {
		flex-direction: row;
	}

	.page-improving .salon__conteiner__txt {
		margin-left: 47px;
		width: 618px;
		padding: 100px 70px;
		margin-right: -237px;
		margin-bottom: -26px;
	}

	.page-improving .salon__conteiner__maintxt {
		font-size: 32px;
	}

	.page-improving .salon__conteiner__subtxt {
		font-size: 16px;
	}

	.page-improving .salon__conteiner__txt_02 {
		margin-right: 47px;
		width: 618px;
		padding: 100px 10px 100px 114px;
		margin-left: -237px;
		margin-bottom: -26px;
		background-color: #e9dfdb;
		z-index: 1;
		display: flex;
		justify-content: flex-end;
	}

	.page-improving .salon__conteiner__txt_02_wrap {
		display: table;
	}

	.page-improving .salon__conteiner {
		margin-bottom: 72px;
	}
}

/* ----------------------------------------------------
    ご利用の流れ
---------------------------------------------------- */
.page-improving .flow {
	padding-left: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
	position: relative;
}

.page-improving .flow li dl {
	padding: 30px 20px;
	margin: 0;
	background-color: #fbfaf7;
	position: relative;
}

.page-improving .flow_icon img {
	width: 30px;
}

.page-improving .flow_icon {
	background-color: #b19863;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.page-improving .flow_step_ttl {
	font-size: 24px;
	margin-bottom: 8px;
	font-family: "Noto Serif JP", serif;
	line-height: 1.5;
	color: #b19863;
	margin-left: 16px;
}

.page-improving .flow_step {
	font-family: "Lora", serif;
	font-size: 16px;
}

.page-improving .flow_step_number {
	font-size: 21px;
	margin-left: 4px;
}

.page-improving .flow_ttl {
	display: flex;
	margin-bottom: 24px;
}

.page-improving .flow_arrow {
	width: 23px;
	margin: 24px auto 8px;
	transform: translateY(-50%);
}

.page-improving .flow_arrow.top8 {
	margin-top: 8px;
}

.page-improving .flow_step_detail {
	color: #b19863;
}

@media screen and (min-width: 1024px) {
	.page-improving .flow {
		gap: 64px;
	}

	.page-improving .flow__container {
		display: flex;
		justify-content: space-around;
		gap: 24px;
	}

	.page-improving .flow_arrow {
		width: 90px;
		max-width: 26px;
		height: 16px;
		margin: auto;
		transform: rotate(270deg) translateY(-50%);
	}

	.page-improving .flow_wrap {
		width: 100%;
		max-width: 358px;
		min-height: 211px;
	}

	.page-improving .flow li dl {
		padding: 24px;
		min-height: 260px;
	}

	.page-improving .flow_arrow.top8 {
		margin-top: auto;
	}
}

/* お知らせページ */
/* ----------------------------------------------------
    お知らせ
---------------------------------------------------- */
.page-news .news {
	background-image: url(./images/bg.jpg);
}

.page-news .news__txt {
	text-align: center;
	margin-bottom: 64px;
}

.page-news .news .section-heading {
	margin-bottom: 24px;
}

.page-news .post__content__wrap {
	font-size: 14px;
}

.page-news .p-postList__meta {
	font-family: "Lora", serif;
	display: flex;
	align-items: center;
	margin-bottom: 16px;
}

.page-news .ttl__font {
	font-size: 24px;
	margin-bottom: 40px;
	font-family: "Noto Serif JP", serif;
}

.page-news .tag {
	padding: 4px 12px;
	background-color: #f6ebe8;
	color: #9a331a;
}

.page-news .c-posttimes__posted {
	margin-right: 6px;
}

.page-news .p-postList__title {
	margin-bottom: 24px;
}

.page-news .post__content__wrap {
	border-bottom: 1px solid rgba(85, 85, 85, 0.5);
	padding-top: 24px;
}

.page-news .news__detail {
	text-align: left;
	margin-top: 24px;
	font-size: 16px;
}

.page-news .p-postList__img {
	margin-bottom: 54px;
}

.page-news .menu-btn {
	color: #9a331a;
	border: 1px solid #9a331a;
	padding: 16px 40px;
	text-decoration: none;
	font-family: "Noto Sans JP";
	font-weight: 500;
	display: block;
	width: 100%;
	text-align: center;
	box-sizing: border-box;
	background-color: #fff;
	margin-top: 64px;
}

.page-news .menu-btn span::before {
	content: "";
	display: inline-block;
	width: 14px;
	height: 10px;
	background-image: url("./.page-improving .mv-img img/arrow.svg");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 10px;
}

.page-news .news {
	padding-top: 160px;
}

@media screen and (min-width: 1024px) {
	.page-news .news {
		padding-top: 120px;
	}

	.page-news .bg__angie {
		position: absolute;
		right: -50px;
		bottom: 8px;
		margin-bottom: 20px;
	}

	.page-news-archive .post_content {
		width: 65%;
		margin: 0 auto;
	}

	.page-news-detai .post_content {
		width: 65%;
		margin: 150px auto;
	}

	.page-news-archive .news {
		padding-top: 210px;
	}

	.page-news .p-postList__img img {
		height: 425px;
		object-fit: cover;
	}

	.page-news-detai .p-postList__title {
		font-size: 28px !important;
	}

	.page-news .p-postList__title {
		font-size: 16px;
	}

	.page-news .menu-btn {
		margin: 72px auto 96px;
		width: 22%;
		padding: 16px 0px;
	}

	.page-news .bg_news {
		position: absolute;
		left: 0px;
		top: -100px;
	}

	.page-news .inner {
		position: relative;
	}

	.page-news-archive .post__content__wrap {
		display: flex;
		gap: 16px;
		padding-bottom: 24px;
	}

	.page-news-archive .p-postList__meta,
	.page-news-archive .p-postList__title {
		margin-bottom: 0;
	}

	.page-news-archive .c-posttimes__posted {
		margin-right: 24px;
	}
}

.post__content__wrap,
.post__content__wrap:visited,
.post__content__wrap:hover,
.post__content__wrap:active {
	color: #555;
	text-decoration: none;
}

.post__content__wrap .p-postList__title {
	color: #555;
	text-decoration: none;
}

.post__content__wrap .c-posttimes__posted {
	color: #555;
	text-decoration: none;
}