/* 共通スタイル */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background: #ffffff;
    color: #333;
}


.pricing-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.pricing-table {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.pricing-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  max-width: 300px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.pricing-card h3 {
  font-size: 1.2em;
  margin-bottom: 15px;
}

.price {
  font-size: 1.5em;
  color: #e67e22;
  margin: 10px 0;
}


.container {
    width: 80%;
    margin: auto;
    display: flex;  
    justify-content: space-between;
    align-items: center;
}

.center-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.center-image img {
  max-width: 100%;
  height: auto;
}

h2 {
    color: #333;
}

/* ヘッダー */
header {
    background: #a52a2a;
    font-size: 30px;
    color: white;
    padding: 0px 0;
    text-align: center;
    justify-content: space-between;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    font-size: 1.3rem;
    text-decoration: none;
    font-weight: bold;
}

.btn {
    background: #008080;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

/* メインビジュアル */
.hero {
    background: url('sozai/A_stylish_modern_hair_salon_with_a_luxurious_inter.png') no-repeat center center/cover;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h2 {
    font-size: 3rem;
    color: #ffffee;     /* 文字色指定 */
    text-shadow:0 0 5px #ffd700; /*水平 垂直 影の大きさ 影の色*/
    -webkit-text-stroke: 1px #d2691e;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.7rem;
    color: #ffffee; 
    margin: 10px 0 60px;
    text-shadow:0 0 5px #ffd700; /*水平 垂直 影の大きさ 影の色*/
    font-weight: bold;
    -webkit-text-stroke: 0.5px #d2691e;
}

/* やる理由 */
.purpose-section {
    background: #f0f8ff;
    padding: 50px 0;
}


/* メリット */
.merit-section {
    background: #f5deb3;
    padding: 50px 0;
}


/* やる理由・メリット */
.text-box {
    text-align: left;
}

.text-box h1{
    font-weight: bold;
    font-size: 29px;
    -webkit-text-stroke: 0.5px black;
    margin: 0px 0 0px;
    text-align: center;
}

.text-box h2{
    font-size: 17px;
    margin: 30px 0px 30px;
}

.text-box p{
    font-size: 15px;
    border-bottom: 2px solid #a9a9a9;
    margin: 0px 0 30px 0px;
}

.image-box img {
    width: 100%;
    border-radius: 10px;
}

/* 提供サービス */
.services-section {
    background: #e9f5f0;
    padding: 50px 0;
}

.services-section h2{
    font-size:30px;
}

.services-section .container {
    display: flex;
    padding: 20px;
    justify-content: space-around;
}

.service-card {
    background: white;
    padding: 10px;
    margin: 5px;    
    border-radius: 30px;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* お問い合わせ */
.contact-section {
    padding: 30px 0;
    background: #f5f5f0;
}

.contact-section h2{
    font-size:29px
}


.contact-section button {
    background: #2d6a4f;
    color: white;
    padding: 30px 100px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size:20px;
    margin:0 30px 0 0px
}



.voices-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.voice-entry {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: #f7f7f7;
  border-radius: 12px;
  padding: 20px;
  max-width: 800px;
  margin: 20px auto;
  align-items: center; 
  text-align: left;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.stylist-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.voice-text h3 {
  font-size: 1.1em;
  margin-bottom: 8px;
  color: #333;
}

.voice-text p {
  font-size: 0.95em;
  color: #555;
  line-height: 1.6;
}




/* フッター */
footer {
    background: #a52a2a;
    color: white;
    padding: 20px;
    margin-top: 50px;
}

