body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #333;
  color: rgb(216, 164, 204);
  text-align: center;
}

/* ヘッダーのスタイル */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #333;
  text-align: center;
  padding: 20px 0;
}

header h1 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 2.5em;
  color: rgb(216, 164, 204);
}

/* メインコンテンツ */
main {
  padding-top: 120px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 50px;
}

/* セクション共通スタイル */
.about-section, .staff-section {
  background-color: #333;
  border-radius: 15px;
  padding: 40px;
  margin: 20px;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: rgb(216, 164, 204);
}

h1 {
  font-size: 2.5em;
  margin: 20px 0;
}

h2 {
  font-size: 2em;
  margin-bottom: 30px;
}

.salon-name {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.8em;
  text-align: center;
  margin-bottom: 40px;
  color: rgb(216, 164, 204);
}

/* コンセプトセクション */
.concept-section {
  margin-bottom: 50px;
  background-color: #333;
}

h3 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.5em;
  color: rgb(216, 164, 204);
  border-bottom: 2px solid rgb(216, 164, 204);
  padding-bottom: 10px;
  margin: 0 auto 20px;
  text-align: center;
  width: fit-content;
  display: block;
}

.concept-theme {
  font-size: 1.2em;
  margin-bottom: 30px;
  text-align: center;
  color: white;
}

.concept-points {
  display: grid;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.point {
  background-color: #413d3d;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.point h4 {
  color: rgb(216, 164, 204);
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
}

.point-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.point-item {
  text-align: center;
  padding: 0;
  color: white;
}

/* 営業時間セクション */
.business-info {
  display: grid;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
  background-color: #333;
}

.hours-grid {
  display: grid;
  grid-template-columns: auto auto;
  gap: 10px 20px;
  margin: 20px auto;
  justify-content: center;
  text-align: center;
}

.day {
  font-weight: bold;
  color: rgb(216, 164, 204);
  text-align: center;
  padding: 0;
}

.time {
  color: white;
  text-align: center;
}

/* その他の情報 */
.other-info {
  display: grid;
  gap: 30px;
}

.info-item {
  background-color: #333;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.info-item p {
  margin: 10px 0;
  color: white;
}

.info-item small {
  color: white;
}

.reserve-link{
  color: rgb(216, 164, 204);
  font-style: italic;
}
.card-logo{
  width: 200px;
  height: 28px;
  object-fit: contain;
  background-color: rgb(98, 98, 98);
}

/* スタッフセクション */
.staff-section {
  text-align: center;
}

.staff-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.staff-image {
  width: 300px;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  border: 3px solid rgb(216, 164, 204);
}

.staff-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  justify-content: center;
}

.staff-name {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.5em;
  color: rgb(216, 164, 204);
  margin: 0;
}

.social-link {
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
}

.social-link:hover {
  transform: scale(1.3);
}

/* ナビゲーションリンク */
.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: fixed;
  top: 70px;
  right: 20px;
  background-color: #333;
  border: 1px solid #444;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

.nav-links.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.nav-links li {
  border-bottom: 1px solid #444;
}

.nav-links li:last-child {
  border-bottom: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  padding: 15px 20px;
  display: block;
  font-size: 16px;
  transition: all 0.3s ease;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a:hover {
  background-color: #444;
  color: rgb(216, 164, 204);
  padding-left: 25px;
}

/* メニューアイコン */
.menu-icon {
  font-size: 32px;
  color: rgb(216, 164, 204);
  background-color: #333;
  position: fixed;
  top: 20px;
  right: 30px;
  cursor: pointer;
  padding: 5px;
  border-radius: 5px;
  transition: all 0.3s ease;
  z-index: 1001;
}

.menu-icon:hover {
  background-color: none;
  transform: scale(1.2)
}

.concept-section h3,
.hours-section h3,
.info-item h3 {
  margin: 0 auto 20px;
  width: fit-content;
}




/* responsive */
@media screen and (max-width: 768px) {
  *{
    overflow-x: hidden;
    margin-left: 20px;
    margin-right: 20px;
  }
}