@charset "UTF-8";

.contents {
	max-width: var(--contens-maxwidth);
	margin: 0 auto;
}

/*----------------------------------
	アンカーリンク部分
----------------------------------*/
.salon-list {
	margin-bottom: 70px;
}

.salon-list__item {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
}

.salon-link__ttl {
	width: 200px;
	background-color: #fff7f7;
	text-align: center;
	padding: 13px 0;
	margin-right: 20px;
}

.salon-link__contents {
	display: flex;
	width: calc(100% - 200px);
}

.anchor-link {
	display: flex;
	flex-wrap: wrap;

	gap: 10px 50px;
}

.anchor-link__contents a {
	color: var(--c-link);
	padding-right: 10px;
	position: relative;
	transition: .3s ease;
}

.anchor-link__contents a::after {
	content: "";
	width: 8px;
	height: 8px;
	border-right: 1px solid;
	border-bottom: 1px solid;
	position: absolute;
	top: 50%;
	right: -10px;
	bottom: 0;
	transform: translateY(-50%) rotate(45deg);
}

.anchor-link__contents a:hover, .anchor-link__contents a:hover >
.anchor-link__contents a::after {
	color: var(--bg-hover-pink);
}


/*----------------------------------
	新店、閉店タグ
----------------------------------*/
.newopen, .closed {
	border-radius: 4px;
	font-size: var(--font-size-12px);
	color: var(--c-white);
	padding: 0 6px;
	margin-left: 2px;
}

.newopen {
	background-color: #e5708e;
}
.closed {
	background-color: #6e6e6e;
}


/*----------------------------------
	エリア一覧
----------------------------------*/
.area-list {
	width: 100%;
}

.area-list__item:not(:last-child) {
	margin: 0 auto 60px;
}

.area-list__ttl {
	width: 100%;
	background-color: #fff7f7;
	border-top: 1px solid #f4b2c1;
	border-bottom: 1px solid #f4b2c1;
	text-align: center;
	position: relative;
	cursor: pointer;
}

.area-list__btn {
	width: 100%;
	height: auto;
	background-color: #fff7f7;
	border: none;
	font-size: var(--font-size-20px);
	font-weight: var(--weight-medium)!important;
	color: var(--c-body)!important;
	text-align: center;
	padding: 35px 0;
	margin: 0 auto;
}


.plus-icon {
	width: 16px;
	height: 16px;
	position: absolute;
	top: 50%;
	right: 30px;
}

.plus-icon::before, .plus-icon::after {
	content: "";
	background-color: #e5708e;
	border-radius: 10px;
	position: absolute;
	transition: transform .3s;
}

.plus-icon::before {
	width: 100%;
	height: 2px;
	height: 2px;
	transform: translateY(-50%);
}

.plus-icon::after {
	width: 2px;
	height: 100%;
	top: -8px;
	right: -10%;
	transform: translateX(-50%);
}

.area-list__btn[aria-expanded="true"] .plus-icon::after {
	transform: translateX(-50%) rotate(90deg);
}

.area-list__contents {
	display: none;
	background-color: var(--c-white);
	font-size: var(--font-size-16px);
	font-weight: var(--weight-medium);
	padding-top: 50px;
}

.item-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.item-wrapper::after {
	content: "";
	width: calc((100% - 60px * 2)/ 3);
}


/* 店舗部分
----------------------------------*/
.item {
	display: flex;
	flex-direction: column;
	width: calc((100% - 60px * 2)/ 3);
}

.item:nth-child(n+4) {
	margin-top: 80px;
}

.item__img {
	margin-bottom: 20px;
}

.item__img img {
	max-width: 600px;
	margin: 0 auto;
}

.item__ttl {
	font-size: var(--font-size-20px);
	margin-bottom: 20px;
	position: relative;
}

/* NewOpen時に使用 */
.item__newopen {
	display: inline-block;
	max-width: 200px;
	font-size: var(--font-size-12px);
	font-weight: var(--weight-bold);
	color: var(--c-white);
	background: #DF3B62;
	padding: 0 10px;
	position: absolute;
	top: -15px;
}

.item__list {
	flex-grow: 1;
	padding-bottom: 40px;
}

.item__contents {
	display: flex;
}

.item__contents:not(:last-child) {
	margin-bottom: 20px;
}

.item__txt {
	font-weight: var(--weight-regular);
	margin-left: 1em;
}

.item__subtxt {
	font-weight: var(--weight-regular);
	font-size: var(--font-size-14px);
	color: #FF0001;
}

.item__txt li:not(:last-child) {
	margin-bottom: 20px;
}

.icon::before {
	content: "";
	display: inline-block;
	width: 18px;
	height: 18px;
	vertical-align: middle;
}

.address .icon::before {
	background: url("/assets/images/salon/icon_salon_address.svg");
	background-repeat: no-repeat;
	background-size: contain;
}

.schedule .icon::before {
	background: url("/assets/images/salon/icon_salon_schedule.svg");
	background-repeat: no-repeat;
	background-size: contain;
}

.tel .icon::before {
	background: url("/assets/images/salon/icon_salon_tel.svg");
	background-repeat: no-repeat;
	background-size: contain;
}

.access .icon::before {
	background: url("/assets/images/salon/icon_salon_access.svg");
	background-repeat: no-repeat;
	background-size: contain;
}

.tel a {
	display: inline-block;
	border-bottom: 1px solid var(--c-body);
	font-weight: var(--weight-bold);
	padding-bottom: 2px;
}

.item__img img {
	border-radius: 20px;
}

/*----------------------------------
	予約ボタン、求人ボタン
----------------------------------*/

.low-reserve-btn, .recruit-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 320px;
	background-color: var(--c-white);
	border-radius: 33px;
	font-size: var(--font-size-16px);
	font-weight: var(--weight-bold);
	margin: 0 auto;
	position: relative;
	transition: .3s ease;
}

.low-reserve-btn {
	height: 66px;
	border: 2px solid #e5708e;
	color: #e5708e;
	margin-bottom: 10px;
}

.recruit-btn {
	height: 46px;
	border: 2px solid var(--c-link);
	color: var(--c-link);
}

.low-reserve-btn::before, .recruit-btn::before {
	content: "";
	width: 14px;
	height: 2px;
	border-radius: 2px;
	position: absolute;
	top: 50%;
	right: 19px;
	transform: translateY(calc(-50% - 3px)) rotate(30deg);
	transition: .3s ease;
}

.low-reserve-btn::after, .recruit-btn::after {
	content: "";
	width: 26px;
	height: 2px;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	transition: .3s ease;
}

.low-reserve-btn::before, .low-reserve-btn::after {
	background-color: #e5708e;
}

.recruit-btn::before, .recruit-btn::after {
	background-color: var(--c-link);
}


.low-reserve-btn::before, .recruit-btn::before {
	right: 14px;
}

.low-reserve-btn::after, .recruit-btn::after {
	right: 15px;
}

.low-reserve-btn:hover {
	background-color: #e5708e;
	color: var(--c-white);
}

.recruit-btn:hover {
	background-color: var(--c-link);
	color: var(--c-white);
}

.low-reserve-btn:hover::before, .recruit-btn:hover::before {
	background-color: var(--c-white);
	right: 14px;
}

.low-reserve-btn:hover::after, .recruit-btn:hover::after {
	background-color: var(--c-white);
	right: 15px;
}


@media screen and (max-width: 767px) {
	.contents {
		width: 100%;
		padding: var(--contens-padding);
	}

	.salon-list {
		margin-bottom: 60px;
	}

	.salon-list__item {
		flex-wrap: wrap;
	}

	.salon-link__ttl {
		width: 100%;
		font-size: var(--font-size-14px);
		margin-right: 0;
		margin-bottom: 5px;
	}

	.salon-link__contents {
		width: 100%;
		font-size: var(--font-size-14px);
	}

	.anchor-link {
		gap: 15px 40px;
	}

	.anchor-link__contents a::after {
		width: 7px;
		height: 7px;
	}

	.area-list__item:not(:last-child) {
		margin: 0 auto 40px;
	}

	.area-list__btn {
		padding: 18px 0;
	}

	.area-list__btn, .item__ttl {
		font-size: var(--font-size-16px);
	}

	.item__list li {
		font-size: var(--font-size-14px);
	}

	.item-wrapper {
		flex-direction: column;
	}

	.item {
		width: 100%;
	}

	.item:not(:last-child) {
		margin-bottom: 40px;
	}

	.item:nth-child(n+4) {
		margin-top: 0;
	}

	.item__list {
		padding-bottom: 30px;
	}

	.item__contents:not(:last-child) {
		margin-bottom: 15px;
	}

	.item__txt li:not(:last-child) {
		margin-bottom: 15px;
	}

	.low-reserve-btn, .recruit-btn {
		width: 100%;
		max-width: inherit;
		font-size: var(--font-size-14px);
	}

	.low-reserve-btn {
		height: 54px;
	}

	.recruit-btn {
		height: 44px;
	}
}
