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;
}

/* メニューアイコンのスタイル */
.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)
}

/* ナビゲーションリンク */
.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;
}

.pd-sec {
  padding: 50px;
}

.info {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffffcf;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(241, 223, 223, 0.1);
}

.ttl-sec {
  text-align: center;
  color: #d3c9c9;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

label {
  display: block;
  margin-bottom: 5px;
  color: white;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1em;
  text-align: left;
}

input, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid rgb(216, 164, 204);
  border-radius: 5px;
  background-color: #444;
  color: white;
  font-size: 1em;
  text-align: left;
  resize: vertical;
}

input:focus, textarea:focus {
  outline: none;
  border-color: rgb(216, 164, 204);
  box-shadow: 0 0 5px rgba(216, 164, 204, 0.5);
}

.btn-submit {
  background-color: rgb(216, 164, 204);
  color: #333;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2em;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: #fff;
  transform: scale(1.05);
}

/* フッターのスタイル */
footer {
    background-color: #333;
    padding: 40px 0;
    margin-top: 50px;
    border-top: 1px solid rgba(216, 164, 204, 0.3);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.salon-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.salon-info p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9em;
    line-height: 1.6;
}

.salon-name {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: rgb(216, 164, 204) !important;
    font-size: 1.1em !important;
    margin-bottom: 10px !important;
}

/* モーダル */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: rgba(51, 51, 51, 0.95);
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    border: 2px solid rgba(216, 164, 204, 0.3);
    box-shadow: 0 0 20px rgba(216, 164, 204, 0.2);
}

.modal-content h3 {
    color: rgb(216, 164, 204);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.8em;
    margin-bottom: 20px;
}

.modal-content p {
    color: white;
    font-size: 1.2em;
    margin: 20px 0;
    line-height: 1.6;
}

.modal-content .btn-submit {
    margin-top: 20px;
    padding: 12px 40px;
    font-size: 1.1em;
    background-color: rgb(216, 164, 204);
    color: #333;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.modal-content .btn-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(216, 164, 204, 0.3);
}
