@charset "UTF-8";

/*==================================================================
	Map setting
===================================================================*/
.mv_movie {
	width: 100%;
}
.head_block {
	padding: 80px 0 80px;
}
.head_block .ttl_en {
	display: flex;
	align-items: center;
	gap:15px;
	font-size: 2rem;
	letter-spacing: 0.25em;
	margin-bottom: 30px;
}
.head_block .ttl_en:after {
	background-color: #231f20;
	content: "";
	flex: 1;
	height: 1px;
	width: auto;
}
.head_block .ttl_jp {
	font-size: 3.4875vw;
	letter-spacing: 0.25em;
	margin-bottom: 30px;
}
.head_block .txt_jp {
	font-size: 1.6rem;
	letter-spacing: 0.18em;
	line-height: 2;
}
@media only screen and (max-width: 767px) {
	.head_block { padding: 40px 0;}
	.head_block .ttl_en { font-size: 1.4rem;}
	.head_block .ttl_jp { font-size: 1.6rem; letter-spacing: 0.1em;}
	.head_block .txt_jp { font-size: 1.2rem; letter-spacing: 0.1em;}
}


/* common */
small {
	font-size: 70%;
}
red {
	color: #ef4056;
	font-size: 110%;
}
sup {
	font-size: 50%;
}
.text_r {
	width: 100%;
	font-size: 1.2rem;
	line-height: 1.4;
	text-align: right;
}
.posrel {
	position: relative;
}
.sp48 {
	display: none;
}
.sp2 {
	display: none;
}
@media only screen and (max-width: 767px) {
	.sp2 {
		display: block;
	}
}
@media only screen and (max-width: 480px) {
	.sp48 {
		display: block;
	}
	.sp2 {
		display: none;
	}
}


.fade_up {
	transform: translateY(50px);
	opacity: 0;
}

.fade_up.is-active {
	transition: 1s;
	transform: translateY(0);
	opacity: 1;
}
.slidein {
	opacity: 0;
}
.slidein.is-active {
	animation: slideIn 5s cubic-bezier(0.23, 1, 0.32, 1) 1 forwards;
}
@keyframes slideIn {
	0% {
		transform: translateX(180px);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
	}
	40%, 100% {
		opacity: 1;
	}
}
.slidein_left {
	opacity: 0;
}
.slidein_left.is-active {
	animation: slideIn_Left 5s cubic-bezier(0.23, 1, 0.32, 1) 1 forwards;
}
@keyframes slideIn_Left {
	0% {
		transform: translateX(-180px);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
	}
	40%, 100% {
		opacity: 1;
	}
}
.fade_in {
	opacity: 0;
}
.fade_in.is-active {
	animation: fade_in 3s ease-in-out 0.2s 1 normal forwards;
}
@keyframes fade_in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 4s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeUpAnime {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time02 {
	animation-delay: 2s;
}

.delay-time04 {
	animation-delay: 3s;
}
.delay-time05 {
	animation-delay: 5s;
}
/* 拡大 */
.zoomIn {
	animation-name: zoomInAnime;
	animation-duration: 14s;
	animation-fill-mode: forwards;
}
@keyframes zoomInAnime {
	from {
		transform: scale(0.5);
	}
	to {
		transform: scale(1);
	}
}
.container:has(.access) {
	background-color: #f4f4f4;
}



/*---------------------------------

	salon map data area

---------------------------------*/

/* sec01 */
.sec01 {
	width: 100%;
	margin: 0;
}
.sec01 .image {
	position: relative;
}
.sec01 .image .text {
	width: 90%;
	position: absolute;
	top: 3.5vw;
	left: 5%;
	margin: 0 auto 20px;
}
.sec01 .image .text .txt1 {
	font-family: "latino-gothic-variable", sans-serif;
	font-variation-settings: "slnt" 1, "wdth" 67, "wght" 1;
	font-size: clamp(32px, 8vw, 120px);
	line-height: 1.1;
	text-align: left;
	letter-spacing: 0.1em;
	color: #fff;
	margin-bottom: 20px;
}
.sec01 .image .text .txt2 {
	font-size: 1.8rem;
	line-height: 1.8;
	text-align: left;
	letter-spacing: 0.2em;
	color: #fff;
}
@media only screen and (max-width: 767px) {
	.sec01 .image .text .txt2 {
		font-size: 1.5rem;
		line-height: 1.6;
	}
}
@media only screen and (max-width: 480px) {
	.sec01 .image .text .txt2 {
		font-size: 1.2rem;
		line-height: 1.5;
	}
}


/* sec02 */
.sec02 {
	width: 100%;
	background-color: #5f5750;
	margin: -5px 0 0;
}
.sec02 .bg {
	width: 100%;
	background-image: url("../imgs/salon/salon_top_bg.png");
	background-size: contain;
	background-position: top;
	background-repeat: no-repeat;
	margin: 0;
}
.sec02 .top_list {
	width: 80%;
	max-width: 1000px;
	margin: 0 auto;
	padding-top: 9vw;
	padding-bottom: 40px;
}
.sec02 .top_list .list {
	widtrh: 100%;
	display: flex;
	align-items: center;
	gap: 2%;
	margin-bottom: 40px;
}
.sec02 .top_list .list .img {
	width: 15%;
}
.sec02 .top_list .list .img img {
	width: 100%;
	max-width: 120px;
	text-align: right;
}
.sec02 .top_list .list .txt {
	width: 83%;
	font-family: "tot-shizukardmin-stdn", sans-serif;
	font-size: 3.4rem;
	line-height: 1.2;
	letter-spacing: 0.2em;
	text-align: left;
	color: #fff;
}
.sec02 .top_list .list .txt span {
	font-size: 1.4rem;
}
@media only screen and (max-width: 767px) {
	.sec02 .top_list {
		width: 80%;
		padding-bottom: 30px;
	}
	.sec02 .top_list .list {
		margin-bottom: 30px;
	}
	.sec02 .top_list .list .img {
		width: 15%;
	}
	.sec02 .top_list .list .img img {
		width: 100%;
		max-width: 120px;
		text-align: right;
	}
	.sec02 .top_list .list .txt {
		width: 83%;
		font-size: 2.4rem;
		letter-spacing: 0.15em;
	}
	.sec02 .top_list .list .txt span {
		font-size: 1.2rem;
	}
}
@media only screen and (max-width: 480px) {
	.sec02 .top_list {
		width: 90%;
		padding-bottom: 20px;
	}
	.sec02 .top_list .list {
		margin-bottom: 20px;
	}
	.sec02 .top_list .list .img {
		width: 20%;
	}
	.sec02 .top_list .list .img img {
		width: 95%;
		margin-right: 5%;
	}

	.sec02 .top_list .list .txt {
		width: 78%;
		font-size: 1.8rem;
		letter-spacing: 0.1em;
	}
	.sec02 .top_list .list .txt span {
		font-size: 1.1rem;
	}
}


/* sec03 */
.sec03 {
	width: 100%;
	background-color: #5f5750;
	margin-bottom: 80px;
}
.sec03 .image_area {
	width: 100%;
	display: flex;
	align-items: flex-start;
	background: #5f5750;
	padding-bottom: 40px;
}
.sec03 .image_area > li:nth-child(1) {
	width: 12%;
	position: sticky;
	top: 0;
}
.sec03 .image_area > li:nth-child(1) .img {
	width: 50%;
	margin: 0 auto 40px;
}
.sec03 .image_area > li:nth-child(2) {
	width: 84%;
	display: flex;
	flex-wrap: wrap;
	gap: 25px 2%;
	margin: 0 4% 40px 0;
}
.sec03 .image_area > li:nth-child(2) p {
	width: 49%;
}
@media only screen and (max-width: 767px) {
	.sec03 {
		margin-bottom: 50px;
	}
	.sec03 .image_area {
		padding-bottom: 20px;
	}
}
@media only screen and (max-width: 480px) {
	.sec03 {
		margin-bottom: 40px;
	}
	.sec03 .image_area {
		padding-bottom: 10px;
	}
	.sec03 .image_area > li:nth-child(1) .img {
		width: 60%;
		margin: 0 auto 20px;
	}
	.sec03 .image_area > li:nth-child(2) {
		display: flex;
		flex-wrap: wrap;
		gap: 15px 2%;
		margin: 0 4% 20px 0;
	}
	.sec03 .image_area > li:nth-child(2) p {
		width: 100%;
	}
}


/* sec04 */
.sec04 {
	width: 92%;
	margin: 0 auto 80px;
}
.sec04 .top_area {
	width: 100%;
	background: #595757;
	margin: 0;
	padding: 40px 0;
}
.sec04 .top_area .logo {
	width: 80%;
	max-width: 680px;
	margin: 0 auto;
}
.sec04 .top_area .top_text {
	font-size: 2.8rem;
	text-align: center;
	letter-spacing: 0.2em;
	color: #fff;
	margin: 40px auto 0;
}
.sec04 .map_area {
	width: 100%;
	display: flex;
	margin: 0;
}
.sec04 .map_area p {
	width: 50%;
}
.sec04 .bottom_area {
	width: 100%;
	background: #595757;
	margin: 0;
	padding: 40px 2%;
}
.sec04 .bottom_area .data {
	widrth: 100%;
	display: flex;
	gap: 2%;
	margin-bottom: 40px;
}
.sec04 .bottom_area .data > div {
	width: 49%;
}
.sec04 .bottom_area .data .txt01 {
	width: 100%;
	font-size: 1.8rem;
	text-align: center;
	letter-spacing: 0.1em;
	color: #fff;
	border:solid 1px #fff;
	margin: 0 auto;
	padding: 2px 10px;
}
.sec04 .bottom_area .data .txt02 {
	font-size: 2.6rem;
	text-align: center;
	letter-spacing: 0.1em;
	color: #fff;
	margin: 10px auto;
}
.sec04 .bottom_area .park {
	widrth: 100%;
	background: #fff;
	text-align: center;
	padding: 10px;
}
.sec04 .bottom_area .park > div {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-align: center;
	margin: 10px auto;
}
.sec04 .bottom_area .park > div .icon {
	width: 24px;
}
.sec04 .bottom_area .park > div .txt01 {
	font-size: 1.8rem;
	text-align: left;
	letter-spacing: 0.1em;
	color: #111;
}
.sec04 .bottom_area .park .txt02 {
	font-size: 2.6rem;
	text-align: center;
	letter-spacing: 0.1em;
	color: #be1e32;
	margin: 10px auto;
}
.sec04 .bottom_area .park .txt03 {
	width: 96%;
	font-size: 1.8rem;
	text-align: center;
	letter-spacing: 0.1em;
	color: #111;
	border-top: solid 1px #111;
	margin: 10px auto;
	padding-top: 10px;
}
.sec04 .bottom_area .txt04 {
	font-size: 2.0rem;
	text-align: center;
	letter-spacing: 0.1em;
	color: #fff;
	margin: 20px auto 0;
}
@media only screen and (max-width: 767px) {
	.sec04 {
		width: 96%;
		margin: 0 auto 50px;
	}
	.sec04 .top_area .top_text {
		font-size: 2.2rem;
		margin: 25px auto 0;
	}

	.sec04 .bottom_area .data {
		display: flex;
		flex-wrap: wrap;
		gap: 20px;
		margin-bottom: 30px;
	}
	.sec04 .bottom_area .data > div {
		width: 92%;
		margin: 0 auto;
	}
	.sec04 .bottom_area .data .txt01 {
		font-size: 1.5rem;
		padding: 2px 10px;
	}
	.sec04 .bottom_area .data .txt02 {
		font-size: 1.8rem;
		margin: 10px auto;
	}
	.sec04 .bottom_area .park .txt02 {
		font-size: 2.0rem;
	}
	.sec04 .bottom_area .park .txt03 {
		font-size: 1.4rem;
	}
	.sec04 .bottom_area .txt04 {
		font-size: 1.5rem;
	}

}
@media only screen and (max-width: 480px) {
	.sec04 .top_area {
		padding: 25px 0;
	}
	.sec04 .top_area .top_text {
		font-size: 1.8rem;
		margin: 20px auto 0;
	}
	.sec04 .map_area {
		display: flex;
		flex-wrap: wrap;
		background: #595757;
	}
	.sec04 .map_area p {
		width: 96%;
		margin: 0 2% 10px;
	}
	.sec04 .bottom_area {
		padding: 20px 2%;
	}
	.sec04 .bottom_area .data > div {
		width: 96%;
	}
	.sec04 .bottom_area .data .txt01 {
		font-size: 1.3rem;
	}
	.sec04 .bottom_area .data .txt02 {
		font-size: 1.4rem;
		margin: 5px auto;
	}
	.sec04 .bottom_area .park > div .icon {
		width: 20px;
	}
	.sec04 .bottom_area .park > div .txt01 {
		font-size: 1.4rem;
	}
	.sec04 .bottom_area .park .txt02 {
		font-size: 1.6rem;
	}
	.sec04 .bottom_area .park .txt03 {
		font-size: 1.2rem;
	}
	.sec04 .bottom_area .txt04 {
		font-size: 1.2rem;
	}
}



/* Caption Text */
.cap_r {
	position: absolute;
	font-size: 1.1rem;
	text-align: right;
	color: #fff;
	right: 0;
	bottom: 0;
	z-index: 5;
	background: rgba(0,0,0,0.2);
	backdrop-filter: blur(2px);
	padding: 2px 3px;
}
.cap_l {
	position: absolute;
	font-size: 1.1rem;
	text-align: left;
	color: #fff;
	left: 0;
	bottom: 0;
	z-index: 5;
	background: rgba(0,0,0,0.2);
	backdrop-filter: blur(2px);
	padding: 2px 3px;
}
.pic_cap {
	position: absolute;
	font-size: 1.1rem;
	text-align: right;
	color: #fff;
	right: 0.5%;
	bottom: -20px;
	z-index: 5;
}
@media only screen and (max-width: 767px) {
	.cap_r ,
	.cap_l ,
	.pic_cap {
		font-size: 1.0rem;
	}
}
@media only screen and (max-width: 480px) {
	.cap_r ,
	.cap_l ,
	.pic_cap {
		font-size: 0.9rem;
	}
}


/*---------------------------------

	topへ戻る

---------------------------------*/
.top_back {
	z-index: 6;
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	opacity: 0.4;
	width: 50px;
	height: 40px;
	font-size: 10px;
	color: #000;
	background-color: #ccc;
	display: flex;
	justify-content: center;
	padding: 5px 0;
	transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
	.top_back {
		bottom: 10rem;
		right: 1rem;
	}
}
.top_back::after {
	content: "";
	width: 16px;
	height: 16px;
	border-bottom: 2px solid #000;
	border-right: 2px solid #000;
	background-color: transparent;
	bottom: 1px;
	right: 16px;
	position: absolute;
	transform: rotate(-135deg);
}


/*---------------------------------

	改行

---------------------------------*/
.br_sp {
	display: none;
}
@media screen and (max-width: 480px) {
	.br_sp {
		display: block;
	}
}

.br_pc {
	display: block;
}
@media screen and (max-width: 480px) {
	.br_pc {
		display: none;
	}
}
