@charset "UTF-8";
@import url("reset.css");
// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 200 to 900


html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, menu, nav, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

html {
	font-size: 62.5%;
	letter-spacing:0.1rem;
	line-height: 20px;
	height: 100%;
	width: 100%;
	scroll-behavior: smooth;
}
body {
	color: #201507;
	line-height: 2.4rem;
	font-size: 1.6rem;
	font-family: "Noto Serif JP", serif;
	font-optical-sizing: auto;
	font-style: normal;
}

a {
	margin: 0;
	padding: 0;
	/*font-size:100%;*/
	vertical-align: baseline;
	background: transparent;
	color: #201507;
	text-decoration: none;
	display: inline-block;
}
a:hover {
	opacity: 70%;
}
img {
	vertical-align: top;
	font-size: 0;
	line-height: 0;
	width: 100%;
}
*{
    margin: 0;
    padding: 0;
}
*,
::before,
::after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clearfix {
	zoom: 1;
}

[id] {
  scroll-margin-top: 80px;
}
/* ========================================
   共通タイトル
======================================== */
h2 {
	font-weight: bold;
}
h3 {
	font-size: 2.4rem;
	text-align: center;
	margin-bottom: 40px;
}
h4 {
	text-align: center;
	font-weight: bold;
}
.size {
	max-width: 1080px;
	margin: 0 auto;
	width: 95%;
}
@media (min-width: 768px) {
	.pc-no {
		display: none;
	}
}
@media (max-width: 767px) {
	.sp-no {
		display: none;
	}
}
/* ========================================
   moreボタン
======================================== */
/* ボタンスタイル */
.button-wrapper {
  margin: 24px 0 0;
  text-align: center;
}
.brand-concept-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 32px;
  font-size: 1.4rem;
  text-decoration: none;
  border: 1px solid #a99c90;
  border-radius: 30px;
  transition: all 0.3s ease;
}
.brand-concept-button:hover {
  background-color: #a99c90;
  color: #fff;
}
.brand-concept-button:hover svg path {
  stroke: #fff;
}
/* ========================================
   header
======================================== */
header {
  width: 100%;
  background: #eeebe7;
  border-bottom: 1px solid #a99c90;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}
.logo img {
  height: 22px;
	width: auto;
    max-width: 100%;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links a {
  text-decoration: none;
  font-weight: 500;
	display:block;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 3px;
  background: #201507;
  border-radius: 2px;
}
/* ====== Responsive (max-width: 768px) ====== */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    border-top: 1px solid #201507;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.4s ease, opacity 0.4s ease;
  }
  .nav-links.open {
    max-height: 100vh;
    height: 100vh;
    background: #eeebe7;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li {
    padding: 15px 20px;
    border-bottom: 1px solid #a99c90;
  }
  .hamburger {
    display: flex;
  }
}

/* ========================================
   メインビジュアル
======================================== */
.main-visual {
  height: calc(100vh - 45px); /* ← ヘッダー高さ45px */
  width: 100%;
  overflow: hidden;
}

.main-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   blog topics
======================================== */
.blog-list {
  padding: 30px 0;
  border-top: 2px solid #a99c90;
  border-bottom: 1px solid #a99c90;
}
.blog-list dl {
  max-width: 500px;
  width: 95%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 10px;
  border-bottom: 1px solid #a99c90;
  padding: 10px 0;
}
.blog-list dt {
  white-space: nowrap;
  color: #a99c90;
}
.blog-list dd {
  margin: 0;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .blog-list dl {
    flex-direction: column;
  }
}



/* ========================================
   こだわりポイント
======================================== */
.commit {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto;
  gap: 20px;
  max-width: 1080px;
  width: 95%;
}
.reverse {
  flex-direction: row-reverse;
}
.content {
  flex: 1;
}
.content.image img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .commit,
  .reverse {
    flex-direction: column;
  }
}


/* ========================================
   店舗情報
======================================== */
.shop {
  margin: 40px auto;
  width: 100%;
  border-top: 1px solid #a99c90;
  border-bottom: 1px solid #a99c90;
  background: #eeebe7;
  padding: 40px 0;
}
.card-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1080px;
  width: 95%;
  margin: 0 auto;
  overflow: hidden;
  scroll-behavior: smooth;
}
.card {
  width: 31%;
  padding: 16px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.image-wrapper {
  position: relative;
  display: inline-block;
  height: auto;
  overflow: hidden;
}
.image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}
.tag {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #a99c90;
  color: #fff;
  padding: 5px 12px;
  font-size: 1.4rem;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.shop-name {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
  text-align: center;
}
.shop-info {
  font-size: 14px;
  color: #333;
  text-align: left;
  width: 100%;
  margin-bottom: 16px;
  line-height: 1.5;
}
.reserve-btn {
  background-color: #c3b5a6;
  color: white;
  border: none;
  width: 100%;
  font-size: 15px;
  border-radius: 6px;
  margin-bottom: 12px;
  cursor: pointer;
}
.reserve-btn a {
	display: block;
    width: 100%;
    padding: 10px 0;
}
.reserve-btn:hover {
  background-color: #b5a795;
}
.contact-section {
  display: flex;
  align-items: center;
  gap: 16px; /* テキストとアイコンの間の余白 */
  font-size: 16px;
}
.contact-icons a {
  display: inline-block;
  margin-right: 8px;
}
.contact-icons img {
  width: 32px;
  height: 32px;
}
.indicator-container {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}
.indicator-dot,
.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  transition: background-color 0.3s;
  cursor: pointer;
  display: inline-block;
  margin: 0 5px;
}
.indicator-dot.active,
.indicator.active {
  background-color: #333;
}
@media (min-width: 767px) {
  .card-section {
    justify-content: space-between;
  }

  .indicator-container {
    display: none;
  }
}
@media (max-width: 768px) {
  .card-section {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    position: relative;
  }
  .card {
    flex: 0 0 80%;
    scroll-snap-align: start;
    min-width: 80%;
  }
  .card-section::-webkit-scrollbar {
    display: none;
  }
}



/* ========================================
   Instagram
======================================== */
.instagram {
	width:95%;
	max-width:1080px;
	margin:0 auto;
}


/* ========================================
   求人
======================================== */
.recruit {
  background: url(./img/recruit-bg.jpg);
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
  text-align: center;
  padding: 80px 0;
  margin: 40px auto;
  overflow: hidden;
  width: 95%;
  max-width: 1080px;
}
.recruit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  z-index: -1;
}
.recruit p {
  width: 80%;
  margin: 20px auto 0;
}
.recruit .brand-concept-button {
	background: #fff;
}
.recruit .brand-concept-button:hover {
  background-color: #201507;
  color: #fff;
}
@media (max-width: 550px) {
  .recruit {
    background-size: auto 100%;
  }
}

/* ========================================
   footer
======================================== */
.footer {
  border-top: 1px solid #a99c90;
  padding: 40px 20px 5px;
  font-size: 1.4rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
}
.footer-section h4 {
  margin-bottom: 10px;
  font-weight: normal;
  text-align: left;
}
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section li {
  margin-bottom: 6px;
}
.footer-copy {
  text-align: center;
  font-size: 12px;
  margin-top: 40px;
  color: #888;
  border-top: 1px solid #ddd;
  padding-top: 10px;
}
.salon-section .salon-columns {
  display: flex;
}
.salon-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.salon-section li {
  margin-bottom: 6px;
}

/* スマホ〜767px以下 */
@media (max-width: 767px) {
  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    max-width: 400px;
  }
  .footer-logo {
    order: 0;
    margin-bottom: 20px;
    text-align: center;
  }
  /* 横並びにするためのラッパーを作る */
  .footer-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .salon-columns {
    flex-direction: column; /* スマホではリスト内は縦並びのまま */
  }
}
/* タブレット〜PC 768px以上 */
@media (min-width: 768px) {
  .footer-inner {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    max-width: 1080px;
    margin: 0 auto;
  }
  .footer-logo {
    flex: 0 0 200px;
    font-size: 1.8rem;
    font-weight: bold;
  }
  .footer-row {
    display: flex;
    justify-content: end;
    flex: 1;
    gap: 20px;
  }
  .salon-section {
    flex: 0 0 380px; /* Salonを広めに */
  }
  .footer-row .footer-section:not(.salon-section) {
    flex: 0 0 80px; /* Menu部分を狭めに */
  }
  .salon-section .salon-columns {
    display: flex;
    gap: 20px;
  }
}


/* ========================================
   salonページ
======================================== */
#salon {
	width: 95%;
	max-width: 1080px;
	margin: 40px auto 0;
}
.tab {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #a99c90;
  border-bottom: 1px solid #a99c90;
	position: sticky;
  top: 44px; /* ヘッダーの高さ分オフセット */
  z-index: 999;
	background:#fff;
}
.tab li {
  box-sizing: border-box;
  position: relative;
}
.salon-tab li {
  width: 33.3333%;
}
.tab li::after {
  content: '';
  position: absolute;
  top: 30%;
  bottom: 30%;
  right: 0;
  width: 1px;
  background-color: #a99c90;
}
.salon-tab li:nth-child(3n)::after {
  display: none;
}
.salon-tab li:nth-child(n+4) {
  border-top: 1px solid #a99c90;
}
.tab a {
  display: block;
  padding: 10px 0;
  width: 100%;
  text-align: center;
  text-decoration: none;
}
.tab a.active {
  background: #eeebe7;
  font-weight: bold;
}
.tab-content {
	margin: 40px 0 80px;
}

.image-text-box {
  margin: 40px 0;
}

/* 画像あり */
.image-text-box.has-image {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.image-text-box.has-image .image {
  width: 60%;
  height: auto;
}

.image-text-box.has-image .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* 画像なし */
.image-text-box.no-image {
  text-align: center;
}

.image-text-box.no-image .text {
  display: block;
}


@media screen and (min-width: 769px) {
	#salon .image-text-box .text {
		width:40%;
		margin:0 auto;
	}
}
@media screen and (max-width: 768px) {
  .image-text-box.has-image {
  	display: contents;
  }
	.image-text-box.has-image .image {
    width: 100%;
    margin-bottom: 40px;
  }

  .image-text-box .text {
  	margin: 20px 0;
  }
}
.salon-info table {
  width: 100%;
  border-collapse: collapse;
}

.salon-info th,
.salon-info td {
  padding: 16px 10px; /* 上下に余白 */
  vertical-align: middle;
  border-bottom: 1px solid #ccc; /* 下線を各行に追加 */
  font-size: 14px;
}

/* th 右側の区切り線を追加（任意） */
.salon-info th {
  width: 30%;
  text-align: left;
  color: #333;
  border-right: 1px solid #eee;
  font-weight: normal;
  vertical-align: middle;
  text-align: center;
}
iframe {
	margin-top: 40px;
}


/* ========================================
   staffページ
======================================== */
#staff {
	width: 95%;
	max-width: 1080px;
	margin: 40px auto 0;
}
.staff-tab li {
	width: 25%;
}
.staff-tab li:nth-child(4)::after {
  display: none;
}
.staff-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
}
.staff-image-text-box {
	display: flex; 
	align-items: center; 
	justify-content: flex-start; 
	gap: 20px; 
	margin: 40px 0; 
} 
.staff-image-text-box .image { 
	width: 60%; 
	height: auto; 
} 
.staff-image-text-box .text { 
	align-items: center; 
	justify-content: center; 
}
@media screen and (max-width: 768px) {
	.staff-image-text-box {
		display: block;
	}
}
@media (max-width: 1024px) {
  .staff-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 640px) {
  .staff-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.staff-card {
  text-align: center;
  width: 100%;
}
.staff-card a {
	width:100%;
}
.staff-img {
  width: 100%;
  aspect-ratio: 9 / 13; /* 高さを自動計算 */
  overflow: hidden;
}

.staff-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.staff-name {
  font-weight: bold;
  margin-top: 8px;
}
.staff-role {
  color: #666;
  font-size: 14px;
}


/* ========================================
   staff個人ページ
======================================== */
.staff-single-img {
	width: 30%;
}
@media screen and (min-width: 769px) {
	.staff-image-text-box .text {
		width:70%;
	}
}
@media screen and (max-width: 768px) {
	.staff-single-img {
		width: 60%;
		margin: 0 auto;
	}
}



/* ========================================
   topicsページ
======================================== */
#topics {
	width: 95%;
	max-width: 1080px;
	margin: 40px auto 0;
}
.topics-list {
  margin: 0 auto;
  padding: 1rem;
}

.topics-item {
  padding: 1rem 0;
}

#topics .date {
  font-size: 1.4rem;
  color: #888;
  margin-bottom: 0.5rem;
}

#topics .categorys {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

#topics .category {
  border: 1px solid #ccc;
  border-radius: 9999px;
  padding: 0.2rem 0.75rem;
  font-size: 1.2rem;
  color: #333;
}

.topics-list .title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.topics-list hr {
  border: none;
  border-top: 1px solid #ddd;
}

.shingle-title {
	font-size:1.8rem;
	margin-bottom:20px;
}

.topics-list { display: flex; flex-direction: column; gap: 20px; }
.topics-item { border-bottom: none; }
.topics-right ul { list-style: none; padding: 0; margin-top:10px;}
.topics-right li { margin-bottom: 10px; background:#eeebe7; text-align:center;}
.topics-right li a {padding:10px 0;display: block;}

@media screen and (min-width: 769px) {
.topics-wrapper { display: flex; gap: 20px;margin-bottom: 40px;}
.topics-left { width: 70%; }
.topics-right { width: 30%; }
}
@media screen and (max-width: 768px) {}

/* ========================================
   予約ページ
======================================== */
#reserve .shop {
	background: #fff;
	border: none;
}
#reserve .card {
	background: #eeebe7;
}
@media (max-width: 768px) {
#reserve .card-section {
    flex-wrap: wrap;
	gap: 20px;
  }
  #reserve .card {
    flex: 0 0 100%;
  }
}

/* ========================================
   recruitページ
======================================== */
#recruit h3 {
	display:none;
}
#recruit h5 {
	font-size: 2.4rem;
    text-align: center;
    margin: 20px auto;
}
.recruit-main {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 40px;
  padding: 40px;
}

.recruit-main img {
  width: 50%;
  height: auto;
  object-fit: cover;
}

.recruit-text {
  width: 40%;
  z-index: 1;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .recruit-main {
    flex-direction: column;
    padding: 20px;
    align-items: flex-start;
  }

  .recruit-main img {
    width: 70%;
    height: auto;
  }

  .recruit-text {
    width: 200px;
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 2;
    text-shadow: 0 0 20px rgba(255, 255, 255, 1);
  }
}

.rinen {
	text-align: center;
	margin: 40px auto;
}
.rinen h3 {
	line-height:150%;
	margin: 5px auto 10px;
}

.total-beauty {}

.total-beauty ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4等分 */
  gap: 20px;
  list-style: none;
  padding: 0;
  margin-top: 16px;
}

.total-beauty li {
  background: #eeebe7;
}
.total-beauty img {
  width: 100%;
  margin-bottom: 12px;
}

.total-beauty h2 {
  text-align: center;
  padding: 0 5px;
}

.total-beauty p {
	padding: 16px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 1024px) {
  .total-beauty ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .total-beauty ul {
    grid-template-columns: 1fr;
  }
}

.education {
	text-align: center;
	margin: 80px auto;
}
.education h3 {
	margin: 10px;
}
.education li {
	float: left;
	width: 46%;
	margin: 2%;
	background: #a99c90;
	color: #fff;
	padding: 10px 0;
}
.education li p {
	font-size: 1.8rem;
	font-weight: bold;
}
.academy {
	margin-top: 24px;
}

.benefits {
	text-align: center;
}
.benefits font {
	font-size: 1.4rem;
}
.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* スマホ：2列 */
  gap: 16px;
  padding: 0;
  list-style: none;
  margin-top: 32px;
}
.benefits-list li {
  text-align: center;
}
.benefits-list img {
  max-width: 90%;
  height: auto;
  display: block;
  margin: 0 auto 8px;
}
@media screen and (min-width: 768px) {
  .benefits-list {
    grid-template-columns: repeat(6, 1fr); /* PC：6列 */
  }
}


.work-life {
	margin: 40px 0;
}
.living-alone {
	text-align: center;
}
.living-alone ul {
  display: flex;
  justify-content: center; /* 中央揃え */
  gap: 20px; /* 2つの間の余白 */
  list-style: none;
  padding: 0;
  margin: 0;
}
.living-alone li {
  background: #eeebe7;
  padding: 20px;
  flex: 1 1 auto; /* 同じ大きさになるようにする */
	float: left;
	width: 50%;
	margin: 20px 0;
	background: #eeebe7;
	padding: 20px;
}
.living-alone p {
	background: #eeebe7;
  padding: 20px 0;
}
.living-alone font {
	font-size: 2.4rem;
}
.living-alone span {
	font-size: 1.4rem;
}
.recruit-shop .card-section {
	gap: 8px;
}
.recruit-shop .card {
	width: 24%;
	padding: 8px;
}
@media screen and (max-width: 768px) {
	.recruit-shop .card-section {
		flex-wrap: wrap;
	}
	.recruit-shop .card {
		width: 100%;
		flex: auto;
	}
}
.recruit-info {
	margin: 80px auto;
}

.contact {
	background: #a99c90;
	color: #fff;
	padding: 20px;
	text-align: center;
}
.contact h3 {
	margin-bottom: 16px;
}
.contact-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0;
  margin: 0 auto;
  list-style: none;
  max-width: 500px;
}
.contact-list li {
  flex: 1 1 0; /* 均等配分（必要に応じて 1 1 33% なども可） */
  text-align: center;
  position: relative;
  padding: 0.5em 0;
  margin-top: 8px;
  font-size: 1.8rem;
  font-weight: bold;
}
.contact-list li a {
	color: #fff;
}
/* liとliの間に「｜」を表示 */
.contact-list li + li::before {
  content: "|";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}

