@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&family=Noto+Serif+JP:wght@400;500;600&display=swap");

* {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}

body {
	margin: 0;
	color: #333;
	font-family: "Noto Serif JP", serif;
	background-image: url("../images/top/body-bg.jpg");
	background-position: bottom;
	background-size: contain;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom
}

a {
	color: inherit;
	text-decoration: none
}

ul {
	margin: 0;
	padding: 0;
	list-style: none
}

button {
	padding: 0;
	border: 0;
	background: none;
	color: inherit;
	font: inherit;
	cursor: pointer
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
	height: 100px;
	background-color: rgba(255, 255, 255, .80);
	box-shadow: 0 1px 7px rgba(0, 0, 0, .12)
}

.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	padding: 0 24px 0 42px
}

.header__logo {
	flex-shrink: 0;
	width: 150px;
	margin: 0
}

.header__logo a,
.header__logo img {
	display: block;
	width: 100%
}

.header__right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	height: 100%
}

.header__contact {
	display: flex;
	align-items: center;
	gap: 26px
}

.header__tel {
	display: flex;
	align-items: center;
	gap: 7px;
	color: #532E1C;
	font-size: 30px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 6%;
}

.header__tel-icon {
	display: flex;
}

.header__tel-icon svg {
	width: 100%;
	height: 100%;
	fill: #6c3d29
}

.header__instagram {
	transition: opacity .3s ease, transform .3s ease;
	margin-bottom: -25px;
}

.header__instagram:hover {
	opacity: .75;
	transform: translateY(-2px)
}

.header__instagram-dot {
	fill: #fff;
	stroke: none
}

.header__nav {
	margin-right: 100px
}

.header__nav-list {
	display: flex;
	align-items: center;
	gap: 40px
}

.header__nav-list a {
	position: relative;
	display: block;
	padding: 16px 0 0;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 6%;
	line-height: 1;
}

.header__nav-list a::after {
	position: absolute;
	right: 0;
	bottom: -6px;
	left: 0;
	height: 1px;
	background: #532E1C;
	content: "";
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform .35s ease
}

.header__nav-list a:hover::after {
	transform: scaleX(1);
	transform-origin: left center
}

.header__menu-button {
	display: none
}

.sp-menu {
	display: none
}

.sp-fixed-nav {
	display: none
}

@media(max-width:1200px) and (min-width:1025px) {
	.header {
		height: 100px
	}

	.header__inner {
		padding: 0 20px 0 30px
	}

	.header__logo {
		width: 135px
	}

	.header__tel {
		font-size: 20px
	}

	.header__instagram {
		width: 44px;
		height: 44px
	}

	.header__nav {
		margin-right: 50px
	}

	.header__nav-list {
		gap: 25px
	}
}

@media(max-width:1024px) {
	.header {
		height: 50px
	}

	.header__inner {
		padding: 0 20px
	}

	.header__logo {
		width: 122px
	}

	.header__right {
		display: none
	}

	.header__menu-button {
		position: relative;
		z-index: 1002;
		display: block;
		width: 31px;
		height: 20px;
		margin-left: auto
	}

	.header__menu-button span {
		position: absolute;
		left: 4px;
		width: 31px;
		height: 3px;
		background: #532E1C;
		transition: top .35s ease, transform .35s ease, opacity .35s ease
	}

	.header__menu-button span:nth-child(1) {
		top: 0;
	}

	.header__menu-button span:nth-child(2) {
		top: 9px;
	}

	.header__menu-button span:nth-child(3) {
		top: 19px;
	}

	.header__menu-button.is-open span:nth-child(1) {
		top: 10px;
		transform: rotate(45deg)
	}

	.header__menu-button.is-open span:nth-child(2) {
		opacity: 0
	}

	.header__menu-button.is-open span:nth-child(3) {
		top: 10px;
		transform: rotate(-45deg)
	}

	.sp-menu {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 1001;
		display: block;
		width: 100%;
		height: 100%;
		padding: 100px 25px 110px;
		background: rgba(255, 255, 255, .98);
		opacity: 0;
		visibility: hidden;
		overflow-y: auto;
		transition: .4s;
	}

	.sp-menu.is-open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.sp-menu__inner {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		min-height: 100%;
	}

	.sp-menu__list {
		width: 100%;
		margin: 0;
		padding: 0;
		list-style: none;
		text-align: center;
	}

	.sp-menu__list li+li {
		margin-top: 26px;
	}

	.sp-menu__list a {
		display: inline-block;
		position: relative;
		padding-bottom: 6px;
		font-family: "Montserrat", sans-serif;
		font-size: 18px;
		font-weight: 500;
		letter-spacing: .12em;
		color: #532E1C;
		transition: .3s;
	}

	.sp-menu__list a::after {
		content: "";
		position: absolute;
		left: 50%;
		bottom: 0;
		width: 0;
		height: 1px;
		background: #5a3a2b;
		transform: translateX(-50%);
		transition: .3s;
	}

	.sp-menu__list a:hover::after {
		width: 100%;
	}

	.sp-menu__tel {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 260px;
		height: 54px;
		margin-top: 55px;
		border: 1px solid #532E1C;
		border-radius: 50px;
		font-family: "Montserrat", sans-serif;
		font-size: 20px;
		font-weight: 500;
		letter-spacing: .05em;
		color: #532E1C;
		transition: .3s;
	}

	.sp-menu__tel::before {
		content: "";
		background-image: url("../images/top/i-tel.png");
		width: 31px;
		height: 31px;
		margin-right: 10px;
	}

	.sp-menu__tel:hover {
		background: #532E1C;
		color: #fff;
	}

	.sp-menu__instagram {
		width: 54px;
		height: auto;
		margin-top: 25px;
	}

	body.is-menu-open {
		overflow: hidden
	}
}

@media(max-width:767px) {
	body {
		padding-bottom: 65px
	}

	.header__inner {
		padding: 0 15px
	}

	.sp-menu {
		padding: 88px 20px 90px
	}

	.sp-fixed-nav {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 999;
		display: grid;
		grid-template-columns: 1.65fr 1fr 68px;
		width: 100%;
		height: 65px;
	}

	.sp-fixed-nav a {
		display: flex;
		align-items: center;
		justify-content: center;
		color: #fff;
		padding-top: 2px;
		background: #A6877E;
	}

	.sp-fixed-nav__tel {
		flex-direction: column;
		gap: 1px;
		border-right: 1px solid #fff;
		font-size: 26px;
		letter-spacing: 6%;
	}

	.sp-fixed-nav__access {
		flex-direction: column;
		gap: 1px;
		border-right: 1px solid #fff;
		font-size: 20px;
		letter-spacing: .08em
	}

	.sp-fixed-nav__icon {
		display: flex;
		width: 28px;
		height: 28px
	}

	.sp-fixed-nav__icon svg {
		width: 100%;
		height: 100%;
		fill: #fff
	}

	.sp-fixed-nav__pagetop {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: 66px;
		height: 66px;
		border-radius: 50%;
		background: #ad9288;
		color: #fff;
		font-size: 16px;
		line-height: 1.5;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(15px);
		transition: .35s;
	}

	.sp-fixed-nav__pagetop.is-show {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}
}

@media(max-width:375px) {
	.sp-fixed-nav {
		grid-template-columns: 1.55fr 1fr 62px;
		height: 62px
	}

	.sp-fixed-nav__tel {
		font-size: 16px
	}

	.sp-fixed-nav__access {
		font-size: 12px
	}

	.sp-fixed-nav__pagetop {
		width: 60px;
		height: 60px
	}

	body {
		padding-bottom: 62px
	}
}

.mv {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 910px;
	overflow: hidden;
	background: #ddd
}

.mv__slider {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%
}

.mv__slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 1.6s ease, visibility 1.6s ease
}

.mv__slide.is-active {
	opacity: 1;
	visibility: visible
}

.mv__slide picture,
.mv__slide img {
	display: block;
	width: 100%;
	height: 100%
}

.mv__slide img {
	object-fit: cover;
	object-position: center center
}

.mv__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, .05) 45%, rgba(0, 0, 0, 0) 75%)
}

.mv__content {
	position: absolute;
	left: 5.5%;
	bottom: 14%;
	z-index: 2;
	color: #fff
}

.mv__copy {
	margin: 0;
	font-family: "Montserrat", sans-serif;
	font-size: 32px;
	font-weight: 500;
	line-height: 57px;
	letter-spacing: 6%;
	text-shadow: 0 1px 8px rgba(0, 0, 0, .28)
}

.mv__dots {
	position: absolute;
	right: 38px;
	top: 50%;
	z-index: 3;
	display: flex;
	flex-direction: column;
	gap: 13px;
	transform: translateY(-50%)
}

.mv__dot {
	width: 8px;
	height: 8px;
	border: 1px solid #fff;
	border-radius: 50%;
	background: transparent;
	transition: background .3s ease, transform .3s ease
}

.mv__dot.is-active {
	background: #fff;
	transform: scale(1.2)
}

@keyframes mvScroll {
	0% {
		top: -100%
	}

	50% {
		top: 0
	}

	100% {
		top: 100%
	}
}

@media(max-width:1024px) {
	.mv {
		min-height: 600px
	}

	.mv__content {
		left: 5%;
		bottom: 12%
	}

	.mv__copy {
		font-size: 26px;
		line-height: 2;
	}

	.mv__dots {
		right: 24px
	}
}

@media(max-width:767px) {
	.mv {
		height: calc(100svh - 66px);
		min-height: 520px
	}

	.mv__slide img {
		object-position: center center
	}

	.mv__overlay {
		background: linear-gradient(0deg, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, .05) 55%, rgba(0, 0, 0, 0) 100%)
	}

	.mv__content {
		bottom: 30%;
		left: 24px;
	}

	.mv__copy {
		font-size: 16px;
		line-height: 1.8;
		letter-spacing: .06em
	}

	.mv__dots {
		right: 14px;
		top: auto;
		bottom: 18%;
		flex-direction: row;
		gap: 9px;
		transform: none
	}

	.mv__dot {
		width: 7px;
		height: 7px
	}
}

@media(max-width:375px) {
	.mv {
		height: calc(100svh - 62px);
		min-height: 500px
	}
}

.message {
	position: relative;
}

.message__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 620px
}

.message__visual {
	position: relative;
	overflow: hidden
}

.message__visual::after {
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, .2);
	content: ""
}

.message__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center
}

.message__heading {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 55px;
	transform: translate(-50%, -50%)
}

.message__heading h2 {
	margin: 0;
	color: #532E1C;
	font-family: "Montserrat", sans-serif;
	font-size: 64px;
	font-weight: 500;
	letter-spacing: 4%;
	line-height: 1;
}

.message__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 70px 10% 70px 9%;
}

.message__content p {
	margin: 0 0 22px;
	font-size: 16px;
	font-weight: 600;
	line-height: 35px;
	letter-spacing: 6%;
}

.message__content p:last-child {
	margin-bottom: 0
}

.more-button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	min-width: 230px;
	height: 65px;
	padding: 0 25px;
	border: 3px solid #532E1C;
	border-radius: 30px;
	background: rgba(255, 255, 255, .45);
	color: #532E1C;
	font-family: "Montserrat", sans-serif;
	font-size: 32px;
	font-weight: 500;
	letter-spacing: 4%;
	line-height: 1;
	transition: background .35s ease, color .35s ease;
}

.more-button__arrow {
	position: relative;
	width: 35px;
	height: 2px;
	background: #532E1C;
	transition: background .35s ease, transform .35s ease;
	margin-top: 10px;
}

.more-button__arrow::before {
	position: absolute;
	right: 9px;
	bottom: 0;
	width: 10px;
	height: 2px;
	background: #532E1C;
	content: "";
	transform: rotate(90deg);
	transform-origin: right center;
	transition: background .35s ease
}

.more-button__arrow::after {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 12px;
	height: 2px;
	background: #532E1C;
	content: "";
	transform: rotate(45deg);
	transform-origin: right center;
	transition: background .35s ease
}

.more-button:hover {
	background: #532E1C;
	color: #fff
}

.more-button:hover .more-button__arrow {
	background: #fff;
	transform: translateX(5px)
}

.more-button:hover .more-button__arrow::before {
	background: #fff
}

.more-button:hover .more-button__arrow::after {
	background: #fff
}

.fade-up {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity .9s ease, transform .9s ease
}

.fade-up.is-show {
	opacity: 1;
	transform: translateY(0)
}

.pc-only {
	display: block;
}

.pc-btn {
	display: flex;
}

.sp-only {
	display: none;
}

.sp-btn {
	display: none;
}

@media(max-width:1024px) {
	.message__inner {
		min-height: 500px
	}

	.message__visual {
		min-height: 500px
	}

	.message__heading {
		gap: 40px
	}

	.message__heading h2 {
		font-size: 48px
	}

	.message__content {
		padding: 60px 7%
	}

	.message__content p {
		line-height: 2
	}
}

@media(max-width:767px) {
	.message__inner {
		display: block;
		min-height: 0
	}

	.message__visual {
		min-height: 130px
	}

	.message__visual img {
		position: absolute;
		inset: 0
	}

	.message__heading {
		gap: 35px;
		width: 100%
	}

	.message__content {
		padding: 50px 24px 60px
	}

	.message__content p {
		margin-bottom: 18px;
		line-height: 2
	}

	.more-button {
		max-width: 230px;
		margin: 0 auto;
	}

	.pc-only {
		display: none;
	}

	.pc-btn {
		display: none;
	}

	.sp-only {
		display: block;
	}

	.sp-btn {
		display: flex;
	}
}

@media(max-width:375px) {
	.message__content {
		padding: 45px 18px 55px
	}
}

/*削除予定*/
.calendar {
	padding: 100px 0;
}

.calendar__inner {
	width: min(860px, 90%);
	margin: 0 auto
}

.calendar__title {
	margin: 0 0 60px;
	color: #532E1C;
	font-family: "Montserrat", sans-serif;
	font-size: 64px;
	font-weight: 500;
	text-align: center;
	letter-spacing: 4%;
}

.calendar__months {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 90px
}

.calendar-month__title {
	margin: 0 0 13px;
	padding-bottom: 10px;
	border-bottom: 1px solid #532E1C;
	color: #532E1C;
	font-family: "Montserrat", sans-serif;
	font-size: 32px;
	font-weight: 500;
	text-align: center;
	letter-spacing: .1em
}

.calendar-month__table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 6px 5px;
	table-layout: fixed
}

.calendar-month__table th {
	height: 0;
	padding: 0
}

.calendar-month__table td {
	height: 28px;
	padding: 0;
	text-align: center;
	vertical-align: middle
}

.calendar-month__day {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin: auto;
	border-radius: 50%;
	color: #382d28;
	font-size: 20px;
	line-height: 1
}

.calendar-month__day.is-closed {
	background: #ad9186;
	color: #fff
}

.calendar__legend {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	margin-top: 35px
}

.calendar__legend span {
	display: block;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: #A6877E
}

.calendar__legend p {
	margin: 0;
}

@media(max-width:767px) {
	.calendar {
		padding: 100px 0 30px;
	}

	.calendar__title {
		margin-bottom: 40px;
		font-size: 48px
	}

	.calendar__months {
		grid-template-columns: 1fr;
		gap: 50px
	}

	.calendar-month {
		width: min(350px, 100%);
		margin: 0 auto
	}

	.calendar-month__table {
		border-spacing: 5px
	}
}

.menu {
	padding: 95px 0 150px;
}

.menu__inner {
	width: min(1100px, 88%);
	margin: 0 auto
}

.menu__title {
	margin: 0 0 40px;
	color: #532E1C;
	font-family: "Montserrat", sans-serif;
	font-size: 64px;
	font-weight: 500;
	line-height: 1;
	text-align: center;
	letter-spacing: 4%;
}

.menu__card {
	text-align: center;
	min-height: 357px;
	padding: 50px;
	background: #fff;
	box-shadow: 0 2px 5px rgba(68, 45, 35, .22);
	position: relative;
	;
}

.menu__card::before {
	content: "";
	position: absolute;
	bottom: 31px;
	left: 12px;
	width: 320px;
	height: 294px;
	background: url("../images/top/menu.png") center / contain no-repeat;
}

.menu__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center
}

.menu__text {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	line-height: 35px;
	letter-spacing: 6%;
}

.menu__button {
	margin-top: 50px
}

@media(max-width:1024px) {
	.menu {
		padding: 85px 0 120px
	}

	.menu__inner {
		width: min(900px, 90%)
	}

	.menu__title {
		font-size: 48px
	}

	.menu__card {
		grid-template-columns: 35% 65%;
		min-height: 260px;
		padding: 30px 45px
	}

	.menu__card::before {
		width: 200px;
		height: 200px;
	}
}

@media(max-width:767px) {
	.menu {
		padding: 65px 0 90px
	}

	.menu__inner {
		width: calc(100% - 40px)
	}

	.menu__title {
		margin-bottom: 30px;
	}

	.menu__card {
		display: flex;
		flex-direction: column;
		min-height: 0;
		padding: 35px 22px 40px;
		height: 500px;
	}

	.menu__content {
		width: 100%;
		margin-top: 25px
	}

	.menu__text {
		text-align: left;
		line-height: 2
	}

	.menu__button {
		margin-top: 160px
	}

	.menu__card::before {
		left: auto;
		right: 0;
		bottom: 60px;
	}
}

@media(max-width:375px) {
	.menu {
		padding: 60px 0 80px
	}

	.menu__inner {
		width: calc(100% - 30px)
	}

	.menu__card {
		padding: 30px 18px 35px
	}
}

.style-loop {
	position: relative;
	padding: 70px 0;
	overflow: hidden;
}

.style-loop__viewport {
	overflow: hidden;
	width: 100%;
}

.style-loop__track {
	display: flex;
	width: max-content;
	animation: styleLoop 22s linear infinite;
	will-change: transform;
}

.style-loop__group {
	display: flex;
	flex-shrink: 0;
	gap: 20px;
	padding-right: 20px;
}

.style-loop__item {
	flex: none;
	width: calc((100vw - 60px) / 4);
	max-width: 346px;
	aspect-ratio: 3/4;
	overflow: hidden;
}

.style-loop__item--01 {
	margin-bottom: 55px;
}

.style-loop__item--02 {
	margin-top: 55px;
}

.style-loop__item--03 {
	margin-bottom: 55px;
}

.style-loop__item--04 {
	margin-top: 55px;
}

.style-loop__item img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	transition: .5s;
}

.style-loop__item:hover img {
	transform: scale(1.05);
}

.style-loop__track:hover {
	animation-play-state: paused;
}

@keyframes styleLoop {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(calc(-100% / 2));
	}
}

@media(max-width:1024px) {

	.style-loop__item {
		width: 280px;
	}
}

@media(max-width:767px) {
	.style-loop {
		padding: 30px 0;
	}

	.style-loop__group {
		gap: 12px;
		padding-right: 12px;
	}

	.style-loop__item {
		width: 49vw;
	}

	.style-loop__item--02,
	.style-loop__item--04 {
		margin-top: 30px;
	}

	.style-loop__track {
		animation-duration: 16s;
	}
}

.instagram {
	padding: 95px 0 110px;
	background: #fff
}

.instagram__inner {
	width: min(760px, 88%);
	margin: 0 auto
}

.instagram__banner {
	display: block;
	width: 100%;
	transition: opacity .35s ease, transform .35s ease
}

.instagram__banner img {
	display: block;
	width: 100%;
	height: auto
}

.instagram__banner .sp-only {
	display: none;
}

.instagram__banner:hover {
	opacity: .8;
	transform: translateY(-4px)
}

@media(max-width:1024px) {
	.instagram {
		padding: 80px 0 90px
	}

	.instagram__inner {
		width: min(680px, 86%)
	}
}

@media(max-width:767px) {
	.instagram {
		padding: 60px 0 70px
	}

	.instagram__inner {
		width: calc(100% - 40px)
	}

	.instagram__banner .pc-only {
		display: none;
	}

	.instagram__banner .sp-only {
		display: block;
	}
}

@media(max-width:375px) {
	.instagram {
		padding: 50px 0 60px
	}

	.instagram__inner {
		width: calc(100% - 30px)
	}
}

.salon {
	padding: 120px 0 140px;
}

.salon__inner {
	width: min(1280px, 90%);
	margin: auto
}

.salon__head {
	text-align: center;
	margin-bottom: 70px
}

.salon__title {
	margin: 0;
	font-family: "Montserrat", sans-serif;
	font-size: 64px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 4%;
	color: #532E1C;
}

.salon__content {
	display: grid;
	grid-template-columns: 1fr 550px;
	gap: 30px;
	align-items: center
}

.salon__list {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 4%;
}

.salon__row {
	display: grid;
	grid-template-columns: 150px 1fr;
	padding: 22px 0;
	border-bottom: 1px dotted #A6877E;
}

.salon__row dd a {
	transition: .3s
}

.salon__row dd a:hover {
	opacity: .7
}

.salon__buttons {
	display: flex;
	justify-content: center;
	gap: 54px;
	margin-top: 37px;
}

.salon__tel,
.salon__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 65px;
	border: 3px solid #532E1C;
	border-radius: 40px;
	transition: .35s;
	color: #532E1C;
	font-weight: 600;
	line-height: 1;
}

.salon__tel {
	gap: 10px;
	width: 304px;
	font-size: 30px;
	letter-spacing: 6%;
}

.salon__btn {
	gap: 10px;
	width: 254px;
	font-family: "Montserrat", sans-serif;
	font-size: 24px;
	letter-spacing: 4%;
}

.salon__arrow {
	position: relative;
	width: 35px;
	height: 2px;
	background: #532E1C;
	transition: background .35s ease, transform .35s ease;
	margin-top: 10px;
}

.salon__arrow::before {
	position: absolute;
	right: 9px;
	bottom: 0;
	width: 10px;
	height: 2px;
	background: #532E1C;
	content: "";
	transform: rotate(90deg);
	transform-origin: right center;
	transition: background .35s ease;
}

.salon__arrow::after {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 12px;
	height: 2px;
	background: #532E1C;
	content: "";
	transform: rotate(45deg);
	transform-origin: right center;
	transition: background .35s ease;
}

.salon__tel:hover {
	background: #644232;
	color: #fff
}

.salon__btn:hover {
	background: #532E1C;
	color: #fff
}

.salon__tel:hover svg {
	fill: #fff
}

.salon__btn:hover .salon__arrow {
	background: #fff;
	transform: translateX(5px)
}

.salon__btn:hover .salon__arrow::after {
	background: #fff
}

.salon__btn:hover .salon__arrow::before {
	background: #fff
}

.salon__image {
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(0, 0, 0, .1)
}

.salon__image img {
	display: block;
	width: 100%;
	transition: transform .6s
}

.salon__image:hover img {
	transform: scale(1.05)
}

@media(max-width:1024px) {
	.salon {
		padding: 90px 0
	}

	.salon__content {
		grid-template-columns: 1fr;
		gap: 45px
	}

	.salon__image {
		order: -1;
		max-width: 700px;
		margin: auto
	}
}

@media(max-width:767px) {
	.salon {
		padding: 70px 0
	}

	.salon__inner {
		width: calc(100% - 40px)
	}

	.salon__head {
		margin-bottom: 40px
	}

	.salon__title {
		font-size: 34px
	}

	.salon__row {
		grid-template-columns: 1fr;
		padding: 18px 0
	}

	.salon__row dt {
		margin-bottom: 8px
	}

	.salon__row dd {
		margin-left: 0;
	}

	.salon__buttons {
		flex-direction: column;
		gap: 15px
	}

	.salon__tel {
		font-size: 26px;
	}

	.salon__tel,
	.salon__btn {
		width: 254px;
		margin: 0 auto;
	}
}

.access-map {
	width: 100%;
	background: #fff
}

.access-map__frame {
	position: relative;
	width: 100%;
	height: 333px;
	overflow: hidden
}

.access-map__frame iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	filter: grayscale(20%) contrast(90%);
	transition: filter .4s ease
}

.access-map__frame:hover iframe {
	filter: grayscale(0) contrast(100%)
}

@media(max-width:1024px) {
	.access-map__frame {
		height: 360px
	}
}

@media(max-width:767px) {
	.access-map__frame {
		height: 300px
	}
}

@media(max-width:375px) {
	.access-map__frame {
		height: 260px
	}
}

.footer {
	position: relative;
	color: #30251f
}

.footer__inner {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 355px;
	padding: 65px 80px 45px
}

.footer__logo {
	display: block;
	width: 163px;
}

.footer__logo img {
	display: block;
	width: 100%;
	height: auto
}

.footer__nav {
	margin-top: 52px
}

.footer__nav-list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 43px
}

.footer__nav-list a {
	position: relative;
	display: block;
	padding: 5px 0;
	font-weight: 600;
	letter-spacing: 6%;
	transition: opacity .3s ease;
}

.footer__nav-list a::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: #65412f;
	content: "";
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform .35s ease
}

.footer__nav-list a:hover::after {
	transform: scaleX(1);
	transform-origin: left center
}

.footer__instagram {
	width: 39px;
	margin-top: 48px;
	transition: opacity .3s ease, transform .3s ease
}

.footer__instagram:hover {
	opacity: .7;
	transform: translateY(-3px)
}

.footer__pagetop {
	position: fixed;
	right: 57px;
	bottom: 76px;
	z-index: 900;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 65px;
	height: 65px;
	border-radius: 50%;
	background: #A6877E;
	color: #fff;
	line-height: 1;
	letter-spacing: 4%;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(15px);
	transition: opacity .35s ease, visibility .35s ease, transform .35s ease, background .35s ease
}

.footer__pagetop:hover {
	background: #532E1C;
}

.footer__pagetop.is-show {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0)
}

@media(max-width:767px) {
	.footer__pagetop {
		display: none
	}
}

.footer__copyright {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	background: #532E1C;
	color: #fff
}

.footer__copyright p {
	margin: 0;
	letter-spacing: 4%;
}

@media(max-width:1024px) {
	.footer__inner {
		min-height: 320px;
		padding: 55px 50px 40px
	}

	.footer__nav {
		margin-top: 45px
	}

	.footer__nav-list {
		gap: 30px
	}

	.footer__instagram {
		margin-top: 40px
	}

	.footer__pagetop {
		right: 30px;
		bottom: 25px
	}
}

@media(max-width:767px) {
	.footer {
		padding-bottom: 0
	}

	.footer__inner {
		min-height: 0;
		padding: 55px 20px 48px
	}

	.footer__logo {
		width: 135px
	}

	.footer__nav {
		display: none;
	}

	.footer__instagram {
		width: auto;
		height: auto;
		margin-top: 35px
	}

	.footer__pagetop {
		display: none
	}

	.footer__copyright {
		height: 42px
	}
}

@media(max-width:375px) {
	.footer__inner {
		padding: 48px 15px 42px
	}

	.footer__logo {
		width: 125px
	}
}