* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #d0a900;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
	--brownish: #AF8A75;
    --white: #ffffff;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
	--beige: #F3F0E9;
	--grad-gold: linear-gradient(127deg, #F8F1DC, #E7DAAB 25%, #CDB37D 50%, #B39463 75%, #9F8155);
	--brown: #AF9075;
	--pink: #E7DAD3;
	--gray: #B9B7A6;
}

h1 {
	margin: 0;
}



body {
    font-family: 'Noto Serif JP', serif;
    color: var(--text-dark);
    /*line-height: 1.6;*/
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
	padding: 0 0 2rem 0;
    font-family: 'Noto Serif JP', serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    color: var(--primary-color);
}


.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
}



.cta-wrapper {
	display: block;
	text-align: center;         
	padding: 2rem 0;  
}

.cta-button {
	border: none;
	background: transparent;
	outline: none;
}

.cta-button-img {
	max-width: 60%;            
	height: auto;
	display: inline-block;
	cursor: pointer;
	transition: transform 0.2s;
}

.store-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
}

.store-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.store-modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    text-align: center;
}

.store-modal-content h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    font-size: 1.5rem;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}

.close-btn:hover {
    color: #000;
}

.store-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.store-item {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    background-color: #fff;
    transition: background-color 0.2s;
}

.store-item:hover {
    background-color: #f9f9f9;
}

.store-item a {
    display: block;
    text-decoration: none;
    color: #fff;
    background-color: #d4a373;
    padding: 12px;
    border-radius: 6px;
    font-weight: bold;
    margin-bottom: 8px;
    transition: background-color 0.2s;
}

.store-item a:hover {
    background-color: #b08968;
}

.store-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}



@media (max-width:768px) {
	
	.cta-button {
		border: none;
		background: transparent;
		outline: none;
	}
	
	.cta-button-img {
		max-width: 90%;            
	}
	
	.cta-button-img img {
		width: 100%;
		height: auto;
	}
	
	
	.cta-button:hover {
		transform: scale(1.05);
	}
	
	

}



.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
	height: 5rem;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.header-logo {
    max-height: 50px;
	width: auto;	
}

.header-nav {
    display: flex;
    gap: 2rem;
}

.header-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 800;
    font-weight: 800;
    transition: color 0.3s;
    position: relative;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s;
}

.header-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-ig {
    color: var(--text-dark);
    transition: color 0.3s;
}

.header-ig:hover {
    color: var(--secondary-color);
}

.header-cta {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
	height: 3rem;
	width: auto;
	white-space: nowrap;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.header-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-icon {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s;
}

.hero {
    position: relative;
    align-items: center;
    justify-content: center;
    overflow: hidden;
	height: calc(100vh - 5rem);
	margin-top: 5rem;
	background: linear-gradient(159deg, #d9d5c5 7%, #c1bca9 71%);
}


.hero-wrapper {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
}

.hero-background {
	object-fit: cover;     
	background-position: center; 
	background-repeat: no-repeat; 
	width: 100vw;
	height: calc(100vh - 5rem);
	position: relative;
}



.hero-title {
  position: absolute;
  top: 50%;
  left: 65%;  
  height: 100%;
  transform: translate(-65%, -50%);
  font-size: clamp(2.5rem, 10vh, 7.5rem);
  writing-mode: vertical-rl;
  letter-spacing: 1.0rem;
  color: white; 
  z-index: 2;
  padding: 3rem 0 0 0; 
  line-height: 2.75; 
}



.copywright {
  position: absolute;    
  top: 0%;             
  right: 5%;                 
  max-width: 10%;
  height: auto;
  z-index: 1;
}

.hero-model {
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	object-fit: contain;
	object-position: left top;
	
}

.hero-corner {
	position: absolute;
	width: 20%;
	height: auto;
	bottom: 0;
	right: 0;
	z-index: 2;
}

@media screen and (max-width: 768px) {
	.header-ig {
		display: none;
	}
}

@media screen and (min-width: 768px) and (max-width: 1140px) {
	.hero-model {
		content:url(images/fv-model-ipad.png);
		top: auto;
		object-position: left bottom;
	}
	
	.copywright {
		max-width: 100%;
		width: 100%;
		right: 0%;
	}
	

	
	.hero-title {
		font-size: clamp(3.75rem, 6vh, 7rem);
		left: 50%;
		transform: translate(-50%, -50%); 
		letter-spacing: 0.5rem; 
		height: auto; 
		padding: 0;	
	}
}



@media screen and (max-width: 767px){
	.header-logo {
		max-height: 40px;
	}
	
	.hero-model {
		content: url("images/fv-model-mb.png");
		top: auto;
		object-position: left bottom;
	}
	
	.hero-title {
		font-size: clamp(2.5rem, 6vh, 5rem);
	}
	
	.copywright {
		max-width: 100%;
		width: 100%;
		right: 0%;
	}
	
	
	.hero-title {
		left: 50%;
		transform: translate(-50%, -50%); 
		letter-spacing: 0.5rem; 
		height: auto; 
		padding: 0;	
	}
	
	
	.hero-corner {
		width: 30%;
	}
	
}


@media (max-width:768px) {
	.section-title {
		padding: 0 0 1.0rem 0;
	}
}


.offer .container {
	padding: 0 0 2rem 0;
	max-width: 100%;
	background-color: var(--beige);
}


@media (max-width:768px) {
	.offer .container {
		padding: 0 0 2rem 0;
	}
	.offer .section-title {
		padding: 1rem 0 2rem;
	}
} 


.slide-wrapper{
  max-width:1200px;
  margin:0 auto;   
  position:relative;
  overflow:hidden;
  padding-bottom: 4rem;
}



.slide{
  width:500%;
  height:100%;
  display:flex;
  transition:transform .3s;
}
.slide > div{
  width:20%;
  height:100%;
  display:flex;
  align-items:center;      
  justify-content:center;
}


.slide-image{ display:flex; justify-content:center; width:100%; }
.slide-image img{
	box-shadow: 0 10px 20px rgba(0,0,0,0.5); 
	display:block;
	width:80%;
	height:auto;
	object-fit:contain;
	transition: transform 0.3s, box-shadow 0.3s;
}


.slide1 { transform: translateX(0); }
.slide2 { transform: translateX(-20%); }
.slide3 { transform: translateX(-40%); }
.slide4 { transform: translateX(-60%); }
.slide5 { transform: translateX(-80%); }



.next, .prev{
  position:absolute;
  top:50%;
  width:15px; height:15px;
  z-index:10; cursor:pointer;
  border-top:3px solid #000;
  border-right:3px solid #000;
  transform:translateY(-50%) rotate(45deg);
}
.next{ right:10px; }
.prev{
  left:10px;
  transform:translateY(-50%) rotate(-135deg);
}


.indicator{
	list-style: none;
	position:absolute;
	left:0; bottom:12px;
	width:100%;
	display:flex; gap:14px;
	justify-content:center; align-items:center;
}



.indicator .list{
  width:10px; height:10px;
  border-radius:50%;
  background:#fff;
  border:2px solid #000;
  cursor:pointer;
}
.indicator .list.active{ background:#000; } 



.service-list .container {
	max-width: 100%;
	background: var(--beige);
	padding: 2rem 5rem;
}



.service-wrapper {
	display: flex;
	flex-direction: column;
	gap: 4rem;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}



.service-image {
	width: 100%;      
	height: auto;            
	object-fit: contain;
}

.service-wrapper-mb {
	display: none;
}

@media (max-width:768px) {
	.service-list .container {
		padding: 0rem 1rem 1rem 1rem;
	}
	
	.service-wrapper {
		display: none;
	}
	
	.service-wrapper-mb {
		display: flex;
		flex-direction: column;
	}
	.service-spa-img, .service-treat-img {
		max-width: 100%;
	}
	
	.service-bubble {
		max-width: 100%;
	}
	
	.service-desc {
		padding: 1rem 0.5rem 3rem 0.5rem;
	}
	
	.service-list .cta-wrapper {
		padding: 0 0 1rem 0
	}
	

	
}



.int-ext-roll .container {
	max-width: 100%;
	padding: 0; 
	background: var(--beige);
}

@keyframes infinity-scroll-left {
from {
  transform: translateX(0);
}
  to {
  transform: translateX(-100%);
}
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}
.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0
}
.scroll-infinity__list--left {
  animation: infinity-scroll-left 120s infinite linear 0.5s both;
}
.scroll-infinity__item {
  width: calc(100vw / 4);
}
.scroll-infinity__item>img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px){
	.scroll-infinity__item {
	  width: 100vw;
	}
	
	.scroll-infinity__item>img {
	  width: 100%;
	  height: 250px;
	  object-fit: cover;
	  display: block;
	}
	
	.scroll-infinity__list--left {
		animation: none; 
	}
	
}



.strengths-contents {
	font-family: 'Noto Serif JP', serif; 
	width: 100%
}

.strengths .container {
	max-width: 100%;
	background-color: var(--beige);
}

.strengths-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	/*padding-bottom: 2rem;*/
}

.strengths-items {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
}



.strengths-img img {
	width: 100%;
	aspect-ratio: 16/9;
	height: auto;
	display: block;
	object-fit: cover;
}

.strengths-title {
	display: flex;
	flex-direction: column; 
	gap: 0.5rem; 
}

.strengths-title .title-2 {
	background: var(--grad-gold);
	align-self: flex-end;
	display: inline-block;
	padding-left: 6rem;

} 

.strengths-title .title-1 {
	background: var(--grad-gold);
	display: block;
	width: 100%;
	text-align: right;
}

.strengths-title .title-3, 
.strengths-title .title-4 {
	background: linear-gradient(333deg, #F8F1DC, #E7DAAB 25%, #CDB37D 50%, #B39463 75%, #9F8155);
} 


.strengths-title .title-3 {
	margin-top: 1.5rem;
}

.strengths-title .title-4 {
	display: inline-block;
	align-self: flex-start;
	padding-right: 6rem;
}

.strengths-title h3 {
	padding: 1rem;
	font-size: clamp(1rem, 3.75vw, 2rem);
}

.strengths-description {
	padding: 1rem 0.5rem 2rem 0.5rem;
}



@media (max-width: 768px){

	.strengths-items{
		display: grid;
		align-items: stretch;
		grid-template-columns: 1fr;
		grid-template-areas:
		"title"
		"img"
		"desc";
		row-gap: 12px;
	}


	.strengths-contents{ display: contents; }


	.strengths-title{ grid-area: title; 
		display:flex; flex-direction: row; align-items:baseline; overflow:hidden; gap:0;
		padding: 1rem 0;
	}
	.strengths-img{ grid-area: img; }
	.strengths-description{ grid-area: desc; }

	.strengths-items:nth-of-type(odd)  .strengths-title { background: var(--grad-gold); }
	.strengths-items:nth-of-type(even) .strengths-title {
		background: linear-gradient(333deg,#F8F1DC,#E7DAAB 25%,#CDB37D 50%,#B39463 75%,#9F8155);
	}

	.strengths-title .title-1,
	.strengths-title .title-2,
	.strengths-title .title-3,
	.strengths-title .title-4{
		background: transparent; margin:0; padding:0; align-self: auto;
	}
	
	.strengths-title .title-1 {
		width: auto;
		display: inline-block;
	}
	.strengths-title .title-2,
	.strengths-title .title-4{
		padding-left:0; padding-right:0;
	}
}


.testimonials-section {
    padding: 2rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
	border: 0.5px solid #d0a900; 
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.testimonial-rating {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.testimonial-comment {
    color: var(--text-light);
    line-height: 1.8;
}



@media (max-width: 768px) {
  .testimonials-grid {
    display: flex;          
    overflow-x: auto;      
    scroll-snap-type: x mandatory; 
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 1rem;
  }

  .testimonial-card {
    flex: 0 0 80%;     
    scroll-snap-align: start; 
    background: #fff;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
}


.stylists-section {
    padding: 2rem 0;
    background: var(--bg-light);
}

.stylists-section container {
	max-width: 1200px;
	margin: 0 auto;
}

.store-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.store-tab {
    padding: 0.75rem 2rem;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}


.store-tab.active,
.store-tab:hover {
    background: var(--primary-color);
    color: var(--white);
}

.stylists-content {
    position: relative;
}

@media (min-width: 769px) {
	.store-section .prev,
	.store-section .next {
		display: none;
	}
}

.stylists-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr); 
	gap: 2rem; 
	padding: 2rem auto;
}

.js-stylist-card {
    background: var(--white);
	max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.js-stylist-card {
    display: flex;
    flex-direction: column; 
    max-width: 100%;
}

.js-stylist-card:hover {
    transform: translateY(-5px);
}

.js-stylist-image {
    max-height: 300px; 
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8f8f8;  
}

.js-stylist-image img {  
	width: 100%;
	height: auto;
	aspect-ratio: 1/1;
    object-fit: contain;  
	display: block;	
}

.js-stylist-content {
    padding: 1.5rem;
}

.js-stylist-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.js-stylist-role {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.js-stylist-details {
    margin-bottom: 1rem;
}

.js-stylist-details p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.js-stylist-description {
    color: var(--text-light);
    line-height: 1.7;
}

@media (max-width: 768px) {
	.stylists-grid{
		grid-template-columns: 1fr;
		padding: 1rem;
	}
	

}

.store-filter {
    padding: 0.6rem 1.0rem;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.store-filters {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
	margin: 2rem 0 2rem 0;
}

.stylist-buttons {
    display: flex;           
    justify-content: center; 
    margin-top: 1.5rem; 
	gap: 0.25rem;    
}

.store-filter.active,
.store-filter:hover {
    background: var(--primary-color);
    color: var(--white);
}


.recommended-section .container {
	background-color: var(--brown);
	max-width: 100%;
	height: auto;
	position: relative;
	padding: 4rem 0;
}


.style-adjustment-wrapper {
	display: grid;
	font-family: 'Noto Serif JP', serif;
	color: var(--white);
	grid-template-columns: 1fr 2fr 1fr;
	align-items: center;
    padding: 2rem 0;
	margin: 0 auto;
	justify-content: center; 
	max-width: 90%; 
}


.left-desc {
	grid-column: 1 / 2; 
	text-align: left;
	align-self: center;
	justify-self: center; 
}

.concerns-img {
	width: 100%;   
	height: auto;   
	object-fit: contain; 
	display: block;
}

.image-wrapper {
	grid-column: 2 / 3;
	justify-self: center;
	position: relative;
	width: 100%;    
	max-width: 100%;
}

.recommended-cut-image {
	width: 100%;   
	height: auto;   
	object-fit: contain; 
	display: block;
}


.advice-title {
  grid-column: 3 / 4; 
  justify-self: center;
}

.advice-title {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: var(--white);
	font-family: 'Noto Serif JP', serif;
	writing-mode: vertical-rl;
	gap: 0.5rem;
	letter-spacing: 0.5em;
}


.advice-line {
	display: inline-flex;
	flex-wrap: nowrap; 
	gap: 0.2rem;  
	align-items: center;
}


.advice-title h2 {
	white-space: nowrap;
	font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.white-back {
  background-color: var(--white);
  color: var(--brown);
  padding: 0.2rem 0.2rem; 
}

.no-white-back {
	background: none;
}

.recommended-desc {
	padding: 4rem 0 2rem 0;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 80%;
}

.recommended-desc-img {
	width: 100%;
}


.container-detail {
	max-width: 100%;
	background-color: var(--pink);
	padding: 4rem 0;
	
}


.style-adjustment-title h2{
	color: var(--brownish);
	font-size: clamp(1.75rem, 5vw, 4rem);
	line-height: 1.5;
	text-align: center;
}

.white-box {
	color: var(--white);
	width: clamp(38px, 7vw, 100px);
	height: clamp(38px, 7vw, 100px);
	display:inline-flex;
	justify-content: center;
	align-items: center;
	
	background-color: var(--brownish);
	margin-right: 2px;
	
}

.style-images {
	margin: 4rem auto 2rem auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 50px;
	max-width: 90%;
}

.style-layer-img, .style-shortbob-img, .style-wolfcut-img {
	width: 100%;
}



@media (max-width: 768px) {
	.recommended-section .container {
		padding: 2rem 0;
	}

	.style-adjustment-wrapper {
		grid-template-columns: 1fr;
		align-items: stretch;
		grid-template-areas:
		"img"
		"title"
		"desc";
		max-width: 100%;
		padding: 0rem;
	}
	
	.image-wrapper {
		grid-area: img;
		margin: 2rem 0;
		width: 100%;
		height: 100%;
	}
	
	.store-section .prev,
	.store-section .next {
		display: block;
	}
	
	.advice-title {
		grid-area: title;
		writing-mode: horizontal-tb; 
		letter-spacing: 0;
	}
	

	
	.left-desc {
		display: block;
		margin: 2rem auto 0 auto;
		content: url(images/concerns-mb.webp);
		max-width: 90%;
	}
	
	.recommended-desc {
		padding: 0;
	}
	
	.recommended-counseling-img {
		content: url(images/counseling-mb.webp);

	}
	
	.recommended-cut-img {
		content: url(images/cut-mb.webp);
	}
	
	.container-detail {
		padding: 2rem 0;
	}
	
	.style-images {
		margin: 2rem auto 2rem auto;
		gap: 20px;
	}
	
	.style-layer-img {
		content: url(images/layercut-mb.webp);
		width: 100%;
	}
	
	.style-shortbob-img {
		content: url(images/shortbob-mb.webp);
		width: 100%;
	}
	
	.style-wolfcut-img {
		content: url(images/wolfcut-mb.webp);
		width: 100%;
	}
	
	.store-filters {
		margin: 1rem 0 2rem 0;
	}
	

	
}




.catalog-section .container { 
	max-width: 100%;
	padding: 2rem 1rem 4rem 1rem;
	background-color: var(--brown);
}

.catalog-section .section-title {
	color: var(--white);
}

.catalog-wrapper {
	max-width: 1200px;
	margin: 0 auto;
}



@media (max-width: 768px) {
	.catalog-section .section-title {
		padding: 0 0 2rem 0; 
	}
	.style-adjustment-wrapper {
		flex-direction: column;
	}

	.recommended-cut-image,
	.recommended-text {
		width: 100%;
	}
}


.catalog-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
	margin-bottom: 2rem;
}

.catalog-filter {
    padding: 0.6rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.catalog-filter.active,
.catalog-filter:hover {
    background: var(--primary-color);
    color: var(--white);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.catalog-title h3 {
	color: white;
	text-align: center;
}

.catalog-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    cursor: pointer;
}

.catalog-item .mask {
	width:			100%;
	height:			100%;
	position:		absolute;	
	top:			0;
	left:			0;
	opacity:		0;
	background-color:	rgba(0,0,0,0.4);	
	-webkit-transition:	all 0.2s ease;
	transition:		all 0.2s ease;

	display:flex;              
	flex-direction:column;
	justify-content:flex-end;   
	min-height:110px;       
	padding-bottom:20px;       
}
.catalog-item:hover .mask {
	opacity:		1;	
}


.catalog-item.hidden {
    display: none;
}

.catalog-item:hover {
    transform: translateY(-5px);
}

.catalog-image {
	display: flex;  
    height: 300px;
    overflow: hidden;
	justify-content: center;
    align-items: center;
}

.catalog-image img {
    width: auto;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
	image-rendering: auto;
	
}

.catalog-item:hover .catalog-image img {
    transform: scale(1.1);
}

.catalog-title {
    padding: 1rem;
    text-align: center;
    font-weight: 500;
    color: white;
}

.catalog-controls {
  text-align: center;
  margin-top: 20px;   
  margin-bottom: 0px; 
}


@media (max-width: 768px) {
	.catalog-filters {
	  display: grid;
	  grid-template-columns: repeat(3, 1fr); 
	  gap: 1rem;
	  margin-bottom: 2rem;
	}
	
	.catalog-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr); 
		gap: 1rem;
	}

	.catalog-image {
		display: flex;  
		width: 100%;      
		height: 200px;   
		overflow: hidden;
		justify-content: center;
		align-items: center;
	}

	.catalog-image img {
		width: auto;      
		height: 100%;
	}
}




.btn{
  --btn-bg:#111827; --btn-fg:#fff; --btn-bd:transparent;
  --btn-radius:10px; --btn-pad:10px 18px; --btn-fz:14px;

  display:inline-flex; align-items:center; gap:8px;
  padding:var(--btn-pad); border-radius:var(--btn-radius);
  border:1px solid var(--btn-bd); background:var(--btn-bg); color:var(--btn-fg);
  font-size:var(--btn-fz); line-height:1; cursor:pointer;
  transition:transform .1s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  box-shadow:0 6px 16px rgba(0,0,0,.08);
}
.btn:focus-visible{ outline:3px solid #60a5fa; outline-offset:2px; }
.btn:active{ transform:translateY(1px); }
.btn:disabled{ opacity:.5; cursor:not-allowed; box-shadow:none; }


.btn--primary,
.btn[data-variant="primary"]{
  --btn-bg:#111827; --btn-fg:#fff; --btn-bd:#111827;
}
.btn--primary:hover{ filter:brightness(1.05); }



.btn .icon{ width:1.1em; height:1.1em; display:inline-block; }


@media (prefers-color-scheme: dark){
  .btn--outline,.btn[data-variant="outline"]{ --btn-bg:#0b0f1a; --btn-fg:#e5e7eb; --btn-bd:#334155; }
  .btn--ghost,.btn[data-variant="ghost"]{ --btn-fg:#e5e7eb; --btn-bd:#334155; }
}




.store-section {
    padding: 2rem 0;
    background: var(--bg-light);
}


.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.store-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.store-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.store-details {
    margin-bottom: 1.5rem;
}

.store-detail {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.store-icon {
    font-size: 1.2rem;
}

.store-map {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.store-reserve-button {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.store-reserve-button:hover {
    background: var(--primary-color);
}


.stores-grid {
  display: flex;
  gap: 1rem;
}


@media (min-width: 769px) {
	.stores-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 1rem;
	}

	.cp_arrow {
		display: none;
	}
}

@media (max-width: 768px) {
	.store-section .section-title {
		padding: 0 0 2rem 0;
	}
	.stores-grid {
		display: grid;
		grid-template-columns: 1fr;
	}
}



.faq-section {
    padding: 2rem 0;
}


.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color);
    cursor: pointer;
    text-align: left;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer.open {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

@media (max-width: 768px) {
	.faq-section .section-title {
		padding: 0 0 2rem 0;
	}
}



.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-logo {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
}

.footer-tagline {
    opacity: 0.8;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--white);
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--secondary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-note {
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-bottom {
	text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

@media (max-width: 768px) {
    .header-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--white);
        padding: 2rem;
        box-shadow: var(--shadow);
        transform: translateX(-100%);
        transition: transform 0.3s;
    }

    .header-nav.active {
        transform: translateX(0);
    }

    .header-menu-toggle {
        display: flex;
    }

    .section-title {
        font-size: 2rem;
    }

    .campaign-slider-wrapper {
        padding: 0 50px;
    }

    .campaign-card {
        min-width: 280px;
    }

    .campaign-nav-button {
        width: 40px;
        height: 40px;
    }

    .problems-grid,
    .strengths-grid,
    .gallery-grid,
    .testimonials-grid,
    .stylists-grid,
    .stores-grid {
        grid-template-columns: 1fr;
    }

    .catalog-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .store-tabs,
    .catalog-filters {
        gap: 0.5rem;
    }

    .store-tab,
    .catalog-filter {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
	
	.footer {
		padding: 2rem 0 1rem;
	}
	
	.footer-section h3,
	.footer-section h4 {
		margin-bottom: 0.5rem;
	}
	
	.footer-content {
		gap: 1.0rem;
		margin-bottom: 0;
	}
	
	.footer-section ul {
		display: flex;
		gap: 1.0rem;
	}

}
