/* GROTTY PRO ページ専用のスタイル（サイト側で書かれていたものを引き継ぎ） */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: linear-gradient(to bottom, #fdfcfb 0%, #f5f3f0 100%);
  color: #3a3a3a;
  line-height: 1.8;
}

.menu-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 30px;
}

/* ヘッダー部分 */
.menu-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  padding-bottom: 50px;
}

.menu-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(to right, transparent, #2c4a6b, transparent);
}

.page-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 42px;
  font-weight: 300;
  color: #2c4a6b;
  margin-bottom: 20px;
  letter-spacing: 5px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
}

.lead-text {
  font-size: 16px;
  color: #6b6b6b;
  letter-spacing: 2px;
  font-weight: 300;
}

/* イントロセクション */
.intro-section {
  text-align: center;
  margin-bottom: 80px;
  padding: 40px;
  background: rgba(255,255,255,0.7);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.intro-description {
  line-height: 2.2;
  color: #555;
  font-size: 15px;
  letter-spacing: 0.5px;
}

/* メニューセクション */
.menu-section {
  margin-bottom: 100px;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.section-header {
  background: linear-gradient(135deg, #f4e8dc 0%, #e8dfd5 100%);
  padding: 35px 40px;
  position: relative;
  overflow: hidden;
}

.section-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 200px;
  height: 200px;
  background: rgba(44, 74, 107, 0.05);
  border-radius: 50%;
}

.section-number {
  display: inline-block;
  color: #2c4a6b;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 12px;
  opacity: 0.7;
}

.section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 32px;
  color: #2c4a6b;
  margin: 12px 0;
  font-weight: 400;
  letter-spacing: 3px;
}

.section-subtitle {
  color: #7a6d5f;
  font-size: 15px;
  margin-top: 10px;
  letter-spacing: 1px;
  font-weight: 300;
}

.section-content {
  padding: 45px 40px;
}

/* コンテンツブロック */
.content-block {
  margin-bottom: 45px;
}

.block-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  color: #2c4a6b;
  margin-bottom: 20px;
  font-weight: 500;
  padding-bottom: 12px;
  position: relative;
}

.block-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(to right, #d4b5a0, transparent);
}

/* リスト */
.simple-list {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.simple-list li {
  list-style: none;
  list-style-type: none;
  padding: 12px 0 12px 30px;
  position: relative;
  color: #555;
  line-height: 1.8;
  font-size: 14px;
  transition: all 0.3s ease;
}

.simple-list li:hover {
  padding-left: 35px;
  color: #2c4a6b;
}

.simple-list li:before {
  content: "◆";
  position: absolute;
  left: 8px;
  color: #d4b5a0;
  font-size: 10px;
}

/* 特徴テキスト */
.feature-text {
  line-height: 2;
  color: #555;
  font-size: 14px;
  text-align: justify;
  padding: 20px;
  background: linear-gradient(to right, rgba(244, 232, 220, 0.1), rgba(244, 232, 220, 0.05));
  border-left: 3px solid #d4b5a0;
  border-radius: 5px;
}

/* 効果グリッド */
.effect-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.effect-item {
  background: linear-gradient(135deg, #fdfbf8, #f8f5f0);
  color: #2c4a6b;
  padding: 12px 20px;
  font-size: 13px;
  border: 1px solid #e8dfd5;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.effect-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(44, 74, 107, 0.15);
  background: linear-gradient(135deg, #2c4a6b, #3a5a7b);
  color: white;
}

/* 施術の流れ */
.flow-section {
  background: linear-gradient(135deg, rgba(44, 74, 107, 0.03), rgba(212, 181, 160, 0.05));
  padding: 70px 40px;
  margin: 100px -30px;
  border-radius: 20px;
}

.section-title-center {
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 32px;
  margin-bottom: 50px;
  color: #2c4a6b;
  font-weight: 400;
  letter-spacing: 3px;
  position: relative;
  padding-bottom: 20px;
}

.section-title-center::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, transparent, #d4b5a0, transparent);
}

.flow-list {
  max-width: 700px;
  margin: 0 auto;
}

.flow-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 25px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.flow-item:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(44, 74, 107, 0.1);
}

.flow-number {
  background: linear-gradient(135deg, #2c4a6b, #3a5a7b);
  color: white;
  padding: 8px 12px;
  font-size: 12px;
  margin-right: 25px;
  min-width: 70px;
  text-align: center;
  border-radius: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  box-shadow: 0 3px 10px rgba(44, 74, 107, 0.2);
}

.flow-content h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 17px;
  color: #2c4a6b;
  margin-bottom: 8px;
  font-weight: 500;
}

.flow-content p {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}

/* CTA部分 */
.cta-section {
  text-align: center;
  padding: 80px 40px;
  margin-top: 100px;
  background: linear-gradient(135deg, #fdfbf8, #f4e8dc);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(44, 74, 107, 0.03);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: rgba(212, 181, 160, 0.08);
  border-radius: 50%;
}

.cta-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 28px;
  color: #2c4a6b;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 3px;
  position: relative;
  z-index: 1;
}

.cta-text {
  color: #666;
  font-size: 15px;
  margin-bottom: 40px;
  line-height: 2;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

a.cta-button,
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #2c4a6b, #3a5a7b);
  color: white;
  padding: 16px 50px;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 2px;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(44, 74, 107, 0.3);
  position: relative;
  z-index: 1;
  font-weight: 500;
}

a.cta-button:link,
a.cta-button:visited,
a.cta-button:active {
  color: white;
  text-decoration: none;
}

a.cta-button:hover,
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(44, 74, 107, 0.4);
  background: linear-gradient(135deg, #3a5a7b, #2c4a6b);
  color: white;
  text-decoration: none;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .page-title {
    font-size: 32px;
    letter-spacing: 2px;
  }

  .section-title {
    font-size: 24px;
  }

  .menu-section {
    margin-bottom: 60px;
  }

  .section-header,
  .section-content {
    padding: 30px 25px;
  }

  .flow-item {
    flex-direction: column;
    padding: 20px;
  }

  .flow-number {
    margin-bottom: 15px;
    margin-right: 0;
  }

  .effect-grid {
    flex-direction: column;
  }

  .effect-item {
    text-align: center;
  }

  .cta-button {
    padding: 14px 40px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 26px;
  }

  .menu-container {
    padding: 40px 20px;
  }

  .intro-section {
    padding: 25px;
  }
}
