@charset "utf-8";
/*_______________________________

         【ラ･パルレ】
　　
   　「サロン一覧ページ」用CSS

　　　　　（PC・TB・SP）

　　　　リニューアル2025
_______________________________*/


.mv_box .bg_img {
    position: absolute;
    top: 95px;
    bottom: clamp(60px, 10vw, 120px);
    padding: min(3vw,50px) 0;
    width: clamp(185px, 35vw, 650px);
    left: 30%;
}
.mv_box .bg_img img {
    object-fit: contain;
}


.mv_title {
    justify-content: center;
	align-items: center;
    line-height: 1;
}


.area_nav{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 10px 0;
    justify-content: flex-start;
}


.area_nav li {
    padding: 0 32px;
    text-align: center;
    box-sizing: border-box;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    margin-right: -1px;
}
.area_nav li a{
    text-decoration: underline;
}
.area{
	margin-bottom: 40px;
}
.area h2{
    font-family: "Noto Serif JP", serif;
    font-size: 20px;
	margin-bottom: 10px;
}
.area h2::before {
    content: "\e900";
    font-family: 'custom_default';
    margin-right: 10px;
}
.area dl {
  border: 1px solid #ccc;
}

.area dl > div {
  display: flex; /* Gridに各子要素をそのまま渡す */
}
.area dl > div dt,
.area dl > div dd {
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  display: flex;
  align-items: center;
  padding: 0.5em 0.75em;
  box-sizing: border-box;
}
.area dd:last-of-type{
  border-right: 0;	
}
.area dl > div:last-of-type dt,
.area dl > div:last-of-type dd{
	border-bottom: 0;
}
.area dl > div dt{
	flex-basis: 138px;
	padding: 0.5em 0.5em 0.5em 0.75em;
}


.area dl > div dt a{
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
}
.area dl > div .hours{
	flex-basis: 195px;
}
.area dl > div .address{
	flex: 1;
}
.area dl > div .other{
	flex-basis: 90px;
}

dd.other {}

/* 見出し行だけ装飾 */
.area dl > div:first-of-type dt,
.area dl > div:first-of-type dd {
  background-color: #EFEFEF;
}

/* 見出し行以外 */

.area dl > div:nth-of-type(n+2) dt.shop a::before{
	content: "▶";
	color: #B79F7C;
	font-size: 80%;
    margin-right: 10px;
}
.area dl > div:nth-of-type(n+2) .hours{
	font-size: 12px;
	display: block;
	padding: 0.5em 0.5em 0.5em 0em;
}
.area dl > div:nth-of-type(n+2) .hours span{
	width: 100px;
    display: inline-block;
    text-align: center;
    letter-spacing: -0.075em;
}
.area dl > div:nth-of-type(n+2) .other{
	padding: 0.5em 0.25em;
}
.area dl > div:nth-of-type(n+2) .other .ladys{
	font-size: 10px;
	color: #FF94BC;
	display: flex;
	flex-wrap: wrap;
}


.salon_about {
	margin-bottom: 100px !important;
}
.salon_about h2{
    font-size: 20px;
    font-family: "Noto Serif JP", serif;
    border-bottom: 2px solid #B79F7C;
    margin-bottom: 20px;
    padding-bottom: 5px;
}
.salon_about .box {
    display: flex;
    gap:15px 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.salon_about .box .img{
	flex-basis: 430px;
	margin: auto;
}
.salon_about .box .text{
    flex: 1;
    min-width: 300px;
}
.salon_about .link_btn{
    margin-top: 30px;
}



/*_______________________________
　　　
　　　メディアクエリ切り替え
     　　　（TB・SP）
_______________________________*/


/* ↓ ↓ ↓ TB（1024px）以下　用 ↓ ↓ ↓ */

@media (max-width:1024px){

.mv_box .bg_img {
    top: 60px;
    padding: 10px 0;
}
	
/* --- */
}
/* ↑ ↑ ↑ TB（1024px）以下　用　↑ ↑ ↑ */





/*  ↓ ↓ ↓ TB（820px）以下　用  ↓ ↓ ↓ */

@media (max-width:820px){
	


/* --- */
}
/* ↑ ↑ ↑ TB（820px）以下　用　↑ ↑ ↑ */






/* ↓ ↓ ↓ SP（767px）以下　用 ↓ ↓ ↓ */

@media screen and (max-width: 767px) {
.mv_box .bg_img {
     top: 48px;
     padding: 5px 0;
     left: 40%;
}
.area {
        margin-bottom: 30px;
}
.area h2 {
    font-size: 15px;
}	
.area dl > div .other {
    flex-basis: 45%;
}	
.area_nav li {
	padding: 0;
    flex-basis: 25%;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.area_nav li a {
    font-size: 12px;
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
}	
	
.area dl > div dt {
    flex-basis: auto;
    flex: 1;
}	
.area .address,
.area .hours{
		display: none!important;
}	
.area dl > div:nth-of-type(n+2) .other .ladys {
	font-size: 14px;
}	
.area dl > div dt,
.area dl > div dd {
  padding:0.2em 0.5em!important;
}
.area dl > div:nth-of-type(n+2) dt.shop a::before{
    margin-right: 0.25em;
}

.salon_about{
        margin-bottom: 50px !important;
 }
.salon_about h2{
    font-size: 12px;
    margin-bottom: 15px;
}
.salon_about h2 em{
	font-size: 15px;
	display: block;
}
.salon_about .box {
        margin-top: 20px;
    }	
.salon_about .link_btn{
        margin-top: 20px;
    }	

	

/* --- */
}
/* ↑ ↑ ↑ SP（767px）以下　用　↑ ↑ ↑ */
