@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/* 既存のCSSに追加のスタイルを追記 */

/* リセットとベーススタイル */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ヘッダー */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  border-bottom: 1px solid #eaeaea;
  background-color: #fff;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background-color: #d05a45;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 18px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 20px;
  font-weight: bold;
  color: #d05a45;
  line-height: 1.2;
}

.logo-subtitle {
  font-size: 12px;
  color: #666;
  line-height: 1.2;
}

.nav-list {
  display: none;
}

@media (min-width: 768px) {
  .nav-list {
    display: flex;
    gap: 24px;
  }
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: #d05a45;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: #d05a45;
  color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background-color: #b84c3a;
}

.btn-secondary {
  background-color: white;
  color: #333;
  border: 1px solid #ddd;
}

.btn-secondary:hover {
  background-color: #f5f5f5;
}

.btn-dark {
  background-color: #333;
  color: white;
}

.btn-dark:hover {
  background-color: #222;
}

.btn-full {
  width: 100%;
}

.btn-large {
  height: 48px;
  font-size: 16px;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

/* ヒーローセクション */
.hero-section {
  position: relative;
  height: 600px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-section {
    height: 700px;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(208, 90, 69, 0.2), rgba(208, 90, 69, 0.1));
  z-index: 10;
}

.hero-image {
  position: absolute;
  inset: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 20;
}

.hero-text {
  max-width: 600px;
  background: rgba(255, 255, 255, 0.9);
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 16px;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 40px;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 48px;
  }
}

.text-accent {
  color: #d05a45;
}

.hero-description {
  font-size: 18px;
  color: #666;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 20px;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* セクションタイトル */
.section-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 30px;
  }
}

.section-title span {
  border-bottom: 2px solid #d05a45;
  padding-bottom: 8px;
}

/* 特徴セクション */
.features-section {
  padding: 64px 0;
  background-color: #f9f9f9;
}

.features-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: white;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: box-shadow 0.3s;
}

.feature-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(208, 90, 69, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #d05a45;
}

.feature-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
}

.feature-description {
  color: #666;
}

/* メッセージセクション */
.message-section {
  padding: 64px 0;
}

.message-content {
  max-width: 768px;
  margin: 0 auto;
}

.message-video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  margin-bottom: 32px;
}

.message-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(208, 90, 69, 0.1), transparent);
}

.message-box {
  background: rgba(208, 90, 69, 0.05);
  padding: 24px;
  border-radius: 8px;
}

.message-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.message-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 16px;
}

.message-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.message-info h3 {
  font-weight: bold;
}

.message-info p {
  font-size: 14px;
  color: #666;
}

.message-text {
  font-style: italic;
  color: #666;
}

/* メディアセクション */
.media-section {
  padding: 64px 0;
  background-color: #f9f9f9;
}

.media-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: center;
  justify-items: center;
  max-width: 800px;
  margin: 0 auto 48px;
}

@media (min-width: 768px) {
  .media-logos {
    grid-template-columns: repeat(4, 1fr);
  }
}

.media-logo {
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.media-logo:hover {
  filter: grayscale(0%);
}

.media-logo img {
  width: 120px;
  height: 60px;
  object-fit: contain;
}

.media-details {
  display: grid;
  gap: 32px;
  max-width: 768px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .media-details {
    grid-template-columns: repeat(2, 1fr);
  }
}

.media-card {
  background: white;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.media-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
}

.media-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.media-item {
  display: flex;
  align-items: flex-start;
}

.media-item::before {
  content: "✓";
  color: #22c55e;
  font-weight: bold;
  margin-right: 8px;
  margin-top: 2px;
  flex-shrink: 0;
}

.media-title {
  font-weight: 500;
}

.media-desc {
  font-size: 14px;
  color: #666;
}

/* お問い合わせフォームセクション */
.contact-form-section {
  padding: 64px 0;
  background: rgba(208, 90, 69, 0.05);
}

.contact-form-container {
  max-width: 768px;
  margin: 0 auto;
  background: white;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 32px;
  position: relative;
}

@media (min-width: 768px) {
  .contact-form-title {
    font-size: 30px;
  }
}

.special-offer {
  position: absolute;
  top: -4px;
  right: -48px;
  background: #d05a45;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 16px;
  transform: rotate(12deg);
}

.contact-form-description {
  text-align: center;
  color: #666;
  margin-bottom: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
}

.required {
  color: #d05a45;
  margin-left: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d05a45;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 768px) {
  .radio-group {
    flex-direction: row;
    gap: 24px;
  }
}

.radio-label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.radio-label input[type="radio"] {
  display: none;
}

.radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 50%;
  margin-right: 8px;
  position: relative;
}

.radio-label input[type="radio"]:checked + .radio-custom {
  border-color: #d05a45;
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #d05a45;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.checkbox-group {
  margin-top: 16px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 4px;
  margin-right: 8px;
  margin-top: 2px;
  position: relative;
  flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
  border-color: #d05a45;
  background: #d05a45;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
  content: "✓";
  color: white;
  font-size: 14px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.form-note {
  font-size: 14px;
  color: #666;
  text-align: center;
}

/* お客様の声セクション */
.testimonials-section {
  padding: 64px 0;
}

.testimonials-grid {
  display: grid;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial-card {
  background: white;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 16px;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h3 {
  font-weight: bold;
}

.testimonial-info p {
  font-size: 14px;
  color: #666;
}

.testimonial-text {
  color: #666;
}

.testimonials-link {
  text-align: center;
  margin-top: 32px;
}

.link-with-arrow {
  display: inline-flex;
  align-items: center;
  color: #d05a45;
  font-weight: 500;
  transition: color 0.3s;
}

.link-with-arrow:hover {
  color: #b84c3a;
}

.link-with-arrow svg {
  margin-left: 8px;
}

/* フッター */
.footer {
  background-color: #333;
  color: white;
  padding: 48px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 2fr;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.footer-info p {
  color: #999;
  font-size: 14px;
  margin: 16px 0;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  transition: color 0.3s;
}

.social-link:hover {
  color: white;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.footer-column h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column a {
  color: #999;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: white;
}

.copyright {
  margin-top: 32px;
  text-align: center;
  color: #666;
  font-size: 14px;
}

/* ページ固有のスタイル */
.page-header {
  background-color: rgba(242, 196, 206, 0.3);
  padding: 48px 0 96px;
}

.page-header-content {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}

.page-header h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .page-header h1 {
    font-size: 48px;
  }
}

.page-header p {
  font-size: 18px;
  color: #666;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .page-header p {
    font-size: 20px;
  }
}

.divider {
  width: 96px;
  height: 4px;
  background-color: #d05a6e;
  margin: 0 auto;
}

/* タイムラインセクション */
.timeline-section {
  padding: 64px 0;
}

.timeline {
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
}

.timeline-line {
  display: none;
}

@media (min-width: 768px) {
  .timeline-line {
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #f2c4ce;
    transform: translateX(-50%);
  }
}

.timeline-item {
  margin-bottom: 48px;
  position: relative;
}

.timeline-number {
  width: 32px;
  height: 32px;
  background-color: #d05a6e;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto 16px;
  z-index: 10;
}

@media (min-width: 768px) {
  .timeline-number {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    margin: 0;
  }
}

.timeline-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .timeline-content {
    flex-direction: row;
    justify-content: center;
    gap: 32px;
  }

  .timeline-item .timeline-text {
    width: 50%;
    padding-right: 32px;
    text-align: right;
  }

  .timeline-item .timeline-image {
    width: 50%;
    padding-left: 32px;
  }

  .timeline-item.reverse .timeline-content {
    flex-direction: row-reverse;
  }

  .timeline-item.reverse .timeline-text {
    padding-right: 0;
    padding-left: 32px;
    text-align: left;
  }

  .timeline-item.reverse .timeline-image {
    padding-left: 0;
    padding-right: 32px;
  }
}

.timeline-text {
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .timeline-text {
    margin-bottom: 0;
  }
}

.timeline-text h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
}

.timeline-text p {
  color: #666;
}
.timeline-image img {
  border-radius: 8px;
  width: 100%;
  max-width: 250px;
  height: auto;
}

/* フローセクション */
.flow-section {
  padding: 64px 0;
}

.flow-steps {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.flow-step {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.flow-step-header {
  background: #d05a6e;
  color: white;
  padding: 16px 24px;
}

.flow-step-header h3 {
  font-size: 20px;
  font-weight: bold;
}

.flow-step-content {
  padding: 24px;
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .flow-step-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .flow-step.reverse .flow-step-content {
    direction: rtl;
  }

  .flow-step.reverse .flow-step-text {
    direction: ltr;
  }
}

.flow-step-image img {
  width: 100%;
  border-radius: 8px;
}

.flow-step-list {
  list-style: none;
  margin: 16px 0;
}

.flow-step-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
}

.flow-step-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d05a6e;
  font-weight: bold;
}

.flow-step-info {
  background: rgba(242, 196, 206, 0.2);
  padding: 16px;
  border-radius: 8px;
  margin-top: 16px;
}

.flow-step-info p {
  font-size: 14px;
  margin: 4px 0;
}

/* オプションセクション */
.options-section {
  padding: 64px 0;
  background: #f9f9f9;
}

.options-grid {
  display: grid;
  gap: 32px;
  max-width: 1024px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .options-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.option-card {
  background: white;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: box-shadow 0.3s;
}

.option-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.option-icon {
  width: 64px;
  height: 64px;
  background: rgba(242, 196, 206, 1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #d05a6e;
}

.option-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
}

.option-card p {
  color: #666;
  margin-bottom: 16px;
}

.option-price {
  color: #d05a6e;
  font-weight: bold;
  font-size: 18px;
}

.counselor-message {
  max-width: 768px;
  margin: 48px auto 0;
  background: white;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.counselor-message h3 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
}

.counselor-message .message-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

@media (min-width: 768px) {
  .counselor-message .message-content {
    flex-direction: row;
    align-items: flex-start;
  }
}

.counselor-message .message-text h4 {
  font-weight: bold;
}

.message-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}

/* FAQセクション */
.faq-section {
  padding: 64px 0;
}

.faq-list {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  background: white;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

.faq-item p {
  color: #666;
}

.faq-link {
  text-align: center;
  margin-top: 32px;
}

/* 料金セクション */
.pricing-section {
  padding: 64px 0;
}

.pricing-grid {
  display: grid;
  gap: 32px;
  max-width: 1024px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid #eee;
  transition: all 0.3s;
  position: relative;
}

.pricing-card:hover {
  border-color: #d05a6e;
}

.pricing-card.featured {
  border: 2px solid #d05a6e;
  transform: scale(1.05);
  z-index: 10;
}

.pricing-card.premium .pricing-header {
  background: #333;
  color: white;
}

.pricing-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #fbbf24;
  color: #333;
  font-size: 12px;
  font-weight: bold;
  padding: 8px 16px;
  transform: translate(8px, -4px) rotate(12deg);
  border-radius: 4px;
}

.pricing-header {
  background: #f9f9f9;
  padding: 24px;
  text-align: center;
}

.pricing-card.featured .pricing-header {
  background: #d05a6e;
  color: white;
}

.pricing-header h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px;
}

.pricing-header p {
  color: #666;
  margin-bottom: 16px;
}

.pricing-card.featured .pricing-header p {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-price,
.pricing-monthly,
.pricing-success {
  margin-bottom: 8px;
}

.price-main {
  font-size: 30px;
  font-weight: bold;
  color: #d05a6e;
}

.pricing-card.featured .price-main {
  color: white;
}

.price-sub {
  font-size: 14px;
  color: #666;
}

.pricing-card.featured .price-sub {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-features {
  padding: 24px;
}

.pricing-features ul {
  margin-bottom: 24px;
}

.pricing-features li {
  padding: 8px 0;
  position: relative;
  padding-left: 24px;
}

.feature-included::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: bold;
}

.feature-excluded {
  color: #999;
}

.feature-excluded::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #ccc;
  font-weight: bold;
}

.pricing-benefits {
  max-width: 768px;
  margin: 48px auto 0;
  background: rgba(242, 196, 206, 0.2);
  padding: 24px;
  border-radius: 8px;
}

.pricing-benefits h3 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 16px;
}

.benefits-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefit-item {
  position: relative;
  padding-left: 24px;
}

.benefit-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d05a6e;
  font-weight: bold;
}

/* 成功事例セクション */
.success-stories-section {
  padding: 64px 0;
}

.success-story {
  max-width: 1024px;
  margin: 0 auto 64px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.success-story-images {
  position: relative;
}

.couple-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 300px;
}

@media (min-width: 768px) {
  .couple-images {
    height: 400px;
  }
}

.person-image {
  position: relative;
}

.person-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.couple-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 24px;
}

@media (min-width: 768px) {
  .couple-info {
    position: static;
    background: #f9f9f9;
    color: #333;
  }
}

.couple-info h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 4px;
}

.couple-info p {
  font-size: 14px;
  opacity: 0.8;
}

@media (min-width: 768px) {
  .couple-info p {
    opacity: 1;
    color: #666;
  }
}

.success-story-content {
  padding: 24px;
}

@media (min-width: 768px) {
  .success-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .success-story.reverse {
    direction: rtl;
  }

  .success-story.reverse .success-story-content {
    direction: ltr;
  }
}

.testimonials {
  margin-bottom: 24px;
}

.testimonials blockquote {
  background: rgba(242, 196, 206, 0.1);
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-style: italic;
  color: #666;
}

.testimonials cite {
  font-weight: bold;
  color: #333;
  font-style: normal;
}

.counselor-comment {
  background: rgba(208, 90, 69, 0.05);
  padding: 16px;
  border-radius: 8px;
}

.counselor-comment h4 {
  font-weight: bold;
  margin-bottom: 8px;
}

.counselor-comment p {
  font-size: 14px;
  color: #666;
}

/* 成功の秘訣セクション */
.success-tips-section {
  padding: 64px 0;
  background: #f9f9f9;
}

.tips-grid {
  display: grid;
  gap: 32px;
  max-width: 1024px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .tips-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tip-card {
  background: white;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.tip-number {
  width: 48px;
  height: 48px;
  background: #d05a6e;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 16px;
}

.tip-card h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
}

.tip-card p {
  color: #666;
}

/* 統計セクション */
.statistics-section {
  padding: 64px 0;
}

.stats-grid {
  display: grid;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
  background: white;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 48px;
  font-weight: bold;
  color: #d05a6e;
  line-height: 1;
}

.stat-label {
  font-size: 18px;
  font-weight: bold;
  color: #d05a6e;
  margin-bottom: 8px;
}

.stat-description {
  font-size: 14px;
  color: #666;
}

.stats-note {
  text-align: center;
  margin-top: 32px;
  color: #666;
  font-size: 14px;
}

/* 企業理念セクション */
.mission-section {
  padding: 64px 0;
}

.mission-content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mission-statement {
  text-align: center;
  margin-bottom: 32px;
}

.mission-statement h3 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 8px;
}

.mission-subtitle {
  font-style: italic;
  color: #666;
}

.mission-description {
  margin-bottom: 32px;
  color: #666;
}

.mission-values {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .mission-values {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.value-icon {
  width: 64px;
  height: 64px;
  background: rgba(242, 196, 206, 1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #d05a6e;
}

.value-item h4 {
  font-weight: bold;
  margin-bottom: 8px;
}

.value-item p {
  font-size: 14px;
  color: #666;
}

/* プロフィールセクション */
.profile-section {
  padding: 64px 0;
  background: #f9f9f9;
}

.profile-content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .profile-content {
    flex-direction: row;
    align-items: flex-start;
  }
}

.profile-image {
  width: 192px;
  height: 192px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #f2c4ce;
  flex-shrink: 0;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-info {
  flex: 1;
}

.profile-header {
  margin-bottom: 16px;
}

.profile-header h3 {
  font-size: 24px;
  font-weight: bold;
}

.profile-header p {
  color: #666;
}

.profile-description {
  margin-bottom: 24px;
}

.profile-description p {
  color: #666;
  margin-bottom: 16px;
}

.profile-details {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .profile-details {
    grid-template-columns: 1fr 1fr;
  }
}

.detail-item {
  background: rgba(242, 196, 206, 0.2);
  padding: 16px;
  border-radius: 8px;
}

.detail-item h4 {
  font-weight: bold;
  margin-bottom: 8px;
}

.detail-item ul {
  font-size: 14px;
  color: #666;
}

.detail-item li {
  margin-bottom: 4px;
}

.profile-message {
  margin-top: 32px;
  border-top: 1px solid #eee;
  padding-top: 32px;
}

.profile-message h4 {
  font-weight: bold;
  margin-bottom: 16px;
}

.profile-message blockquote {
  font-style: italic;
  color: #666;
  background: rgba(208, 90, 69, 0.05);
  padding: 24px;
  border-radius: 8px;
}

/* 会社概要セクション */
.company-overview-section {
  padding: 64px 0;
}

.company-table {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.company-table table {
  width: 100%;
  border-collapse: collapse;
}

.company-table th {
  background: #f9f9f9;
  padding: 16px 24px;
  text-align: left;
  font-weight: bold;
  border-bottom: 1px solid #eee;
  width: 30%;
}

.company-table td {
  padding: 16px 24px;
  border-bottom: 1px solid #eee;
}

.company-table td ul {
  margin-top: 8px;
}

.company-table td li {
  margin-bottom: 4px;
}

/* アクセスセクション */
.access-section {
  padding: 64px 0;
  background: #f9f9f9;
}

.access-content {
  display: grid;
  gap: 32px;
  max-width: 1024px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .access-content {
    grid-template-columns: 1fr 1fr;
  }
}

.access-map {
  background: white;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.access-map h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
}

.access-map p {
  color: #666;
  margin-bottom: 16px;
}

.map-placeholder {
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-link {
  display: inline-flex;
  align-items: center;
  color: #d05a6e;
  font-size: 14px;
  transition: color 0.3s;
}

.map-link:hover {
  color: #b84c3a;
}

.map-link svg {
  margin-left: 4px;
}

.access-info {
  background: white;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.access-info h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 24px;
}

.access-methods {
  margin-bottom: 32px;
}

.access-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}

.method-icon {
  width: 32px;
  height: 32px;
  background: #f2c4ce;
  color: #d05a6e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 16px;
  flex-shrink: 0;
}

.method-content h4 {
  font-weight: bold;
  margin-bottom: 4px;
}

.method-content p {
  font-size: 14px;
  color: #666;
}

.contact-info {
  border-top: 1px solid #eee;
  padding-top: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}

.contact-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d05a6e;
  margin-right: 16px;
  flex-shrink: 0;
}

.contact-content h4 {
  font-weight: bold;
  margin-bottom: 4px;
}

.contact-content p {
  font-size: 14px;
  color: #666;
}

/* お問い合わせページ */
.contact-section {
  padding: 64px 0;
}

.contact-content {
  display: grid;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .contact-content {
    grid-template-columns: 2fr 1fr;
  }
}

.contact-form-wrapper {
  background: white;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}

.form-description {
  color: #666;
  margin-bottom: 32px;
}

.contact-info-wrapper {
  background: white;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-info-wrapper h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 24px;
}

.contact-methods {
  margin-bottom: 32px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eee;
}

.contact-method:last-child {
  border-bottom: none;
}

.contact-method .method-icon {
  width: 48px;
  height: 48px;
  background: rgba(208, 90, 69, 0.1);
  color: #d05a6e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
}

.contact-method .method-content h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

.phone-number {
  font-size: 20px;
  font-weight: bold;
  color: #d05a6e;
  margin-bottom: 4px;
}

.phone-hours,
.email-note,
.office-note {
  font-size: 14px;
  color: #666;
}

.email-address {
  font-size: 16px;
  font-weight: bold;
  color: #d05a6e;
  margin-bottom: 4px;
}

.office-address {
  font-size: 14px;
  color: #666;
  margin-bottom: 4px;
}

.consultation-benefits {
  background: rgba(208, 90, 69, 0.05);
  padding: 24px;
  border-radius: 8px;
}

.consultation-benefits h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
}

.consultation-benefits ul {
  list-style: none;
}

.consultation-benefits li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  color: #666;
}

.consultation-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d05a6e;
  font-weight: bold;
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
  .nav-list.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #eaeaea;
    padding: 20px;
    gap: 16px;
  }

  .special-offer {
    position: static;
    display: block;
    margin-top: 8px;
    transform: none;
  }
}

/* アニメーション */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  animation: fadeInUp 0.6s ease-out;
}

/* 追加の画像ファイル */

/* 会社情報ページ専用CSS */

/* 企業理念セクション */
.mission-section {
  padding: 64px 0;
}

.mission-content {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, white, #fafafa);
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(208, 90, 69, 0.1);
}

.mission-statement {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.mission-statement::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #d05a6e, #f2c4ce);
  border-radius: 2px;
}

.mission-statement h3 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #d05a6e;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mission-subtitle {
  font-style: italic;
  color: #666;
  font-size: 18px;
  font-weight: 300;
}

.mission-description {
  margin-bottom: 40px;
  color: #555;
  line-height: 1.8;
  font-size: 16px;
  text-align: center;
}

.mission-values {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .mission-values {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-item {
  text-align: center;
  padding: 24px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d05a6e, #f2c4ce);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.value-item:hover::before {
  transform: scaleX(1);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f2c4ce, rgba(242, 196, 206, 0.7));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #d05a6e;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(242, 196, 206, 0.3);
}

.value-item:hover .value-icon {
  background: linear-gradient(135deg, #d05a6e, #b84e60);
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.value-item h4 {
  font-weight: bold;
  margin-bottom: 12px;
  color: #333;
  font-size: 18px;
}

.value-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* プロフィールセクション */
.profile-section {
  padding: 64px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.profile-content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

@media (min-width: 768px) {
  .profile-content {
    flex-direction: row;
    align-items: flex-start;
  }
}

.profile-image {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #f2c4ce;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.profile-image:hover {
  transform: scale(1.05);
  border-color: #d05a6e;
}

.profile-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(208, 90, 69, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.profile-image:hover::after {
  opacity: 1;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.profile-image:hover img {
  transform: scale(1.1);
}

.profile-info {
  flex: 1;
}

.profile-header {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f2c4ce;
}

.profile-header h3 {
  font-size: 28px;
  font-weight: bold;
  color: #d05a6e;
  margin-bottom: 4px;
}

.profile-header p {
  color: #666;
  font-size: 16px;
}

.profile-description {
  margin-bottom: 32px;
}

.profile-description p {
  color: #555;
  margin-bottom: 16px;
  line-height: 1.7;
}

.profile-details {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .profile-details {
    grid-template-columns: 1fr 1fr;
  }
}

.detail-item {
  background: linear-gradient(135deg, rgba(242, 196, 206, 0.1), rgba(208, 90, 69, 0.05));
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid #d05a6e;
  transition: all 0.3s ease;
}

.detail-item:hover {
  background: linear-gradient(135deg, rgba(242, 196, 206, 0.15), rgba(208, 90, 69, 0.08));
  transform: translateX(4px);
}

.detail-item h4 {
  font-weight: bold;
  margin-bottom: 12px;
  color: #d05a6e;
  font-size: 16px;
}

.detail-item ul {
  font-size: 14px;
  color: #666;
  list-style: none;
}

.detail-item li {
  margin-bottom: 6px;
  position: relative;
  padding-left: 16px;
}

.detail-item li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #d05a6e;
  font-weight: bold;
}

.profile-message {
  border-top: 2px solid #f2c4ce;
  padding-top: 32px;
}

.profile-message h4 {
  font-weight: bold;
  margin-bottom: 20px;
  color: #d05a6e;
  font-size: 20px;
  text-align: center;
}

.profile-message blockquote {
  font-style: italic;
  color: #555;
  background: linear-gradient(135deg, rgba(208, 90, 69, 0.05), rgba(242, 196, 206, 0.1));
  padding: 32px;
  border-radius: 16px;
  border-left: 6px solid #d05a6e;
  line-height: 1.8;
  position: relative;
}

.profile-message blockquote::before {
  content: '"';
  font-size: 60px;
  color: #d05a6e;
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: serif;
  opacity: 0.3;
}

/* 会社概要セクション */
.company-overview-section {
  padding: 64px 0;
}

.company-table {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid rgba(208, 90, 69, 0.1);
}

.company-table table {
  width: 100%;
  border-collapse: collapse;
}

.company-table th {
  background: linear-gradient(135deg, #f9f9f9, #f1f3f4);
  padding: 20px 24px;
  text-align: left;
  font-weight: bold;
  border-bottom: 2px solid #f2c4ce;
  width: 30%;
  color: #333;
  font-size: 16px;
}

.company-table td {
  padding: 20px 24px;
  border-bottom: 1px solid #f0f0f0;
  color: #555;
  line-height: 1.6;
}

.company-table tr:last-child td {
  border-bottom: none;
}

.company-table tr:hover {
  background: rgba(208, 90, 69, 0.02);
}

.company-table td ul {
  margin-top: 8px;
  list-style: none;
}

.company-table td li {
  margin-bottom: 6px;
  position: relative;
  padding-left: 16px;
}

.company-table td li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #d05a6e;
  font-weight: bold;
}

/* アクセスセクション */
.access-section {
  padding: 64px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.access-content {
  display: grid;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .access-content {
    grid-template-columns: 1fr 1fr;
  }
}

.access-map {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(208, 90, 69, 0.1);
}

.access-map h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 16px;
  color: #d05a6e;
}

.access-map p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.map-placeholder {
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.map-placeholder:hover {
  transform: scale(1.02);
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-link {
  display: inline-flex;
  align-items: center;
  color: #d05a6e;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(208, 90, 69, 0.1);
}

.map-link:hover {
  background: #d05a6e;
  color: white;
  transform: translateX(4px);
}

.map-link svg {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.map-link:hover svg {
  transform: translateX(2px);
}

.access-info {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(208, 90, 69, 0.1);
}

.access-info h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 24px;
  color: #d05a6e;
}

.access-methods {
  margin-bottom: 32px;
}

.access-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
  padding: 16px;
  background: rgba(208, 90, 69, 0.02);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.access-method:hover {
  background: rgba(208, 90, 69, 0.05);
  transform: translateX(4px);
}

.method-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #f2c4ce, #d05a6e);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 16px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(208, 90, 69, 0.3);
}

.method-content h4 {
  font-weight: bold;
  margin-bottom: 6px;
  color: #333;
}

.method-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.contact-info {
  border-top: 2px solid #f2c4ce;
  padding-top: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 12px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.contact-item:hover {
  background: rgba(208, 90, 69, 0.02);
}

.contact-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d05a6e;
  margin-right: 16px;
  flex-shrink: 0;
}

.contact-content h4 {
  font-weight: bold;
  margin-bottom: 4px;
  color: #333;
}

.contact-content p {
  font-size: 14px;
  color: #666;
}

/* レスポンシブ調整 */
@media (max-width: 767px) {
  .mission-content {
    padding: 32px 24px;
  }

  .mission-statement h3 {
    font-size: 24px;
  }

  .profile-content {
    padding: 32px 24px;
  }

  .profile-image {
    width: 180px;
    height: 180px;
  }

  .access-map,
  .access-info {
    padding: 24px;
  }

  .company-table th,
  .company-table td {
    padding: 16px 20px;
  }
}
/* コンセプトページ専用CSS */

/* タイムラインセクション */
.timeline-section {
  padding: 64px 0;
}

.timeline {
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
}

.timeline-line {
  display: none;
}

@media (min-width: 768px) {
  .timeline-line {
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #f2c4ce;
    transform: translateX(-50%);
  }
}

.timeline-item {
  margin-bottom: 48px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.timeline-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.timeline-number {
  width: 32px;
  height: 32px;
  background-color: #d05a6e;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto 16px;
  z-index: 10;
  position: relative;
  box-shadow: 0 2px 8px rgba(208, 90, 110, 0.3);
}

@media (min-width: 768px) {
  .timeline-number {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    margin: 0;
  }
}

.timeline-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .timeline-content {
    flex-direction: row;
    justify-content: center;
    gap: 32px;
  }

  .timeline-item .timeline-text {
    width: 50%;
    padding-right: 32px;
    text-align: right;
  }

  .timeline-item .timeline-image {
    width: 50%;
    padding-left: 32px;
  }

  .timeline-item.reverse .timeline-content {
    flex-direction: row-reverse;
  }

  .timeline-item.reverse .timeline-text {
    padding-right: 0;
    padding-left: 32px;
    text-align: left;
  }

  .timeline-item.reverse .timeline-image {
    padding-left: 0;
    padding-right: 32px;
  }
}

.timeline-text {
  margin-bottom: 16px;
  background: white;
  padding: 24px;
  border-radius: 8px;
/*   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-text:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
  .timeline-text {
    margin-bottom: 0;
  }
}

.timeline-text h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #d05a6e;
}

.timeline-text p {
  color: #666;
  line-height: 1.7;
}

.timeline-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
/*   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); */
}

.timeline-image img {
  width: 100%;
  max-width: 250px;
  height: auto;
  transition: transform 0.3s ease;
}

.timeline-image:hover img {
  transform: scale(1.05);
}

.timeline-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(208, 90, 69, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.timeline-image:hover::after {
  opacity: 1;
}

/* メッセージボックス */
.message-box {
  max-width: 768px;
  margin: 48px auto 0;
  background: linear-gradient(135deg, rgba(242, 196, 206, 0.1), rgba(208, 90, 69, 0.05));
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(208, 90, 69, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.message-box h3 {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
  color: #d05a6e;
}

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

@media (min-width: 768px) {
  .message-content {
    flex-direction: row;
    align-items: flex-start;
  }
}

.message-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #f2c4ce;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.message-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.message-text {
  font-style: italic;
  color: #555;
  line-height: 1.8;
  position: relative;
  padding: 16px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.message-text::before {
  content: '"';
  font-size: 48px;
  color: #d05a6e;
  position: absolute;
  top: -10px;
  left: 10px;
  font-family: serif;
}

.message-text::after {
  content: '"';
  font-size: 48px;
  color: #d05a6e;
  position: absolute;
  bottom: -30px;
  right: 10px;
  font-family: serif;
}

/* アニメーション効果 */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.timeline-item:nth-child(odd) .timeline-text {
  animation: fadeInLeft 0.6s ease-out;
}

.timeline-item:nth-child(even) .timeline-text {
  animation: fadeInRight 0.6s ease-out;
}

/* ホバー効果 */
.timeline-item:hover .timeline-number {
  transform: translateX(-50%) scale(1.1);
  background-color: #b84e60;
}

@media (max-width: 767px) {
  .timeline-item:hover .timeline-number {
    transform: scale(1.1);
  }
}

/* レスポンシブ調整 */
@media (max-width: 767px) {
  .timeline-text {
    padding: 20px;
  }

  .timeline-text h3 {
    font-size: 18px;
  }

  .message-box {
    padding: 24px;
    margin: 32px auto 0;
  }

  .message-text {
    padding: 12px;
  }

  .message-text::before,
  .message-text::after {
    font-size: 32px;
  }
}
/* お問い合わせページ専用CSS */

/* お問い合わせセクション */
.contact-section {
  padding: 64px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-content {
  display: grid;
  gap: 64px;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .contact-content {
    grid-template-columns: 2fr 1fr;
  }
}

/* フォームラッパー */
.contact-form-wrapper {
  background: white;
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(208, 90, 69, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-form-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d05a6e, #f2c4ce, #d05a6e);
  background-size: 200% 100%;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.contact-form-wrapper h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 16px;
  color: #d05a6e;
  text-align: center;
}

.form-description {
  color: #666;
  margin-bottom: 32px;
  text-align: center;
  line-height: 1.6;
}

/* フォームスタイル */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.required {
  color: #d05a6e;
  margin-left: 4px;
  font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d05a6e;
  box-shadow: 0 0 0 3px rgba(208, 90, 69, 0.1);
  transform: translateY(-1px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: #d05a6e;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ラジオボタンスタイル */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .radio-group {
    flex-direction: row;
    gap: 32px;
  }
}

.radio-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.radio-label:hover {
  background: rgba(208, 90, 69, 0.05);
  border-color: rgba(208, 90, 69, 0.2);
}

.radio-label input[type="radio"] {
  display: none;
}

.radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 50%;
  margin-right: 12px;
  position: relative;
  transition: all 0.3s ease;
}

.radio-label input[type="radio"]:checked + .radio-custom {
  border-color: #d05a6e;
  background: #d05a6e;
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
  content: "";
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* チェックボックススタイル */
.checkbox-group {
  margin-top: 20px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  padding: 12px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.checkbox-label:hover {
  background: rgba(208, 90, 69, 0.02);
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 4px;
  margin-right: 12px;
  margin-top: 2px;
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
  border-color: #d05a6e;
  background: #d05a6e;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
  content: "✓";
  color: white;
  font-size: 14px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.checkbox-label a {
  color: #d05a6e;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.checkbox-label a:hover {
  color: #b84c3a;
}

/* お問い合わせ情報ラッパー */
.contact-info-wrapper {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(208, 90, 69, 0.1);
  height: fit-content;
}

.contact-info-wrapper h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 32px;
  color: #d05a6e;
  text-align: center;
}

/* お問い合わせ方法 */
.contact-methods {
  margin-bottom: 40px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 32px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(208, 90, 69, 0.02), rgba(242, 196, 206, 0.05));
  border-radius: 12px;
  border-left: 4px solid #d05a6e;
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: linear-gradient(135deg, rgba(208, 90, 69, 0.05), rgba(242, 196, 206, 0.08));
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.contact-method:last-child {
  margin-bottom: 0;
}

.contact-method .method-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(208, 90, 69, 0.1), rgba(242, 196, 206, 0.3));
  color: #d05a6e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(208, 90, 69, 0.2);
}

.contact-method:hover .method-icon {
  background: linear-gradient(135deg, #d05a6e, #b84e60);
  color: white;
  transform: scale(1.1);
}

.contact-method .method-content h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
}

.phone-number {
  font-size: 22px;
  font-weight: bold;
  color: #d05a6e;
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.phone-hours,
.email-note,
.office-note {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.email-address {
  font-size: 16px;
  font-weight: 600;
  color: #d05a6e;
  margin-bottom: 4px;
  word-break: break-all;
}

.office-address {
  font-size: 14px;
  color: #666;
  margin-bottom: 4px;
  line-height: 1.5;
}

/* 相談特典 */
.consultation-benefits {
  background: linear-gradient(135deg, rgba(208, 90, 69, 0.05), rgba(242, 196, 206, 0.1));
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(208, 90, 69, 0.1);
}

.consultation-benefits h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #d05a6e;
  text-align: center;
}

.consultation-benefits ul {
  list-style: none;
}

.consultation-benefits li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  color: #555;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.consultation-benefits li:hover {
  color: #333;
  padding-left: 36px;
}

.consultation-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #d05a6e;
  font-weight: bold;
  font-size: 16px;
  width: 24px;
  height: 24px;
  background: rgba(208, 90, 69, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.consultation-benefits li:hover::before {
  background: #d05a6e;
  color: white;
  transform: scale(1.1);
}

/* フォーム送信ボタン */
.btn-large {
  height: 56px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 12px;
  background: linear-gradient(135deg, #d05a6e, #b84e60);
  border: none;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(208, 90, 69, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-large::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(208, 90, 69, 0.4);
}

.btn-large:hover::before {
  left: 100%;
}

.btn-large:active {
  transform: translateY(0);
}

.form-note {
  font-size: 14px;
  color: #666;
  text-align: center;
  line-height: 1.5;
  margin-top: 16px;
  padding: 16px;
  background: rgba(208, 90, 69, 0.05);
  border-radius: 8px;
  border-left: 4px solid #d05a6e;
}

/* アニメーション効果 */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.contact-form-wrapper {
  animation: slideInFromLeft 0.6s ease-out;
}

.contact-info-wrapper {
  animation: slideInFromRight 0.6s ease-out 0.2s both;
}

/* レスポンシブ調整 */
@media (max-width: 1023px) {
  .contact-content {
    gap: 48px;
  }
}

@media (max-width: 767px) {
  .contact-form-wrapper,
  .contact-info-wrapper {
    padding: 32px 24px;
  }

  .contact-form-wrapper h2 {
    font-size: 24px;
  }

  .contact-method {
    padding: 20px;
  }

  .contact-method .method-icon {
    width: 48px;
    height: 48px;
    margin-right: 16px;
  }

  .phone-number {
    font-size: 18px;
  }

  .consultation-benefits {
    padding: 24px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
  }
}

/* フォーカス時のアクセシビリティ向上 */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.radio-label:focus-within,
.checkbox-label:focus-within {
  outline: 2px solid #d05a6e;
  outline-offset: 2px;
}

/* エラー状態のスタイル */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.error-message {
  color: #ef4444;
  font-size: 14px;
  margin-top: 4px;
}

/* 成功状態のスタイル */
.form-group.success input,
.form-group.success select,
.form-group.success textarea {
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}
/* サービスフローページ専用CSS */

/* フローセクション */
.flow-section {
  padding: 64px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.flow-steps {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.flow-step {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.flow-step.animate {
  opacity: 1;
  transform: translateY(0);
}

.flow-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.flow-step-header {
  background: linear-gradient(135deg, #d05a6e 0%, #b84e60 100%);
  color: white;
  padding: 20px 24px;
  position: relative;
  overflow: hidden;
}

.flow-step-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.flow-step:hover .flow-step-header::before {
  left: 100%;
}

.flow-step-header h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  position: relative;
  z-index: 1;
}

.flow-step-content {
  padding: 32px;
  display: grid;
  gap: 32px;
  align-items: center;
}

@media (min-width: 768px) {
  .flow-step-content {
    grid-template-columns: 1fr 1fr;
  }

  .flow-step.reverse .flow-step-content {
    direction: rtl;
  }

  .flow-step.reverse .flow-step-text {
    direction: ltr;
  }
}

.flow-step-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.flow-step-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.flow-step-image:hover img {
  transform: scale(1.05);
}

.flow-step-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(208, 90, 69, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.flow-step-image:hover::after {
  opacity: 1;
}

.flow-step-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}

.flow-step-list {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.flow-step-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  color: #555;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.flow-step-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #d05a6e;
  font-weight: bold;
  font-size: 16px;
  width: 20px;
  height: 20px;
  background: rgba(208, 90, 69, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.flow-step-list li:hover {
  color: #333;
}

.flow-step-list li:hover::before {
  background: #d05a6e;
  color: white;
  transform: scale(1.1);
}

.flow-step-info {
  background: linear-gradient(135deg, rgba(242, 196, 206, 0.15), rgba(208, 90, 69, 0.05));
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
  border-left: 4px solid #d05a6e;
}

.flow-step-info p {
  font-size: 14px;
  margin: 4px 0;
  color: #666;
}

.flow-step-info p:first-child {
  font-weight: bold;
  color: #d05a6e;
}

/* オプションセクション */
.options-section {
  padding: 64px 0;
  background: #f9f9f9;
}

.options-grid {
  display: grid;
  gap: 32px;
  max-width: 1024px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .options-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.option-card {
  background: white;
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.option-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d05a6e, #f2c4ce);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.option-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.option-card:hover::before {
  transform: scaleX(1);
}

.option-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f2c4ce, rgba(242, 196, 206, 0.7));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #d05a6e;
  transition: all 0.3s ease;
}

.option-card:hover .option-icon {
  background: linear-gradient(135deg, #d05a6e, #b84e60);
  color: white;
  transform: scale(1.1);
}

.option-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
  color: #333;
}

.option-card p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.option-price {
  color: #d05a6e;
  font-weight: bold;
  font-size: 20px;
  background: rgba(208, 90, 69, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
}

/* カウンセラーメッセージ */
.counselor-message {
  max-width: 768px;
  margin: 64px auto 0;
  background: linear-gradient(135deg, white, #fafafa);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(208, 90, 69, 0.1);
}

.counselor-message h3 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 32px;
  color: #d05a6e;
}

.counselor-message .message-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

@media (min-width: 768px) {
  .counselor-message .message-content {
    flex-direction: row;
    align-items: flex-start;
  }
}

.counselor-message .message-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #f2c4ce;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.counselor-message .message-text {
  flex: 1;
}

.counselor-message .message-text h4 {
  font-weight: bold;
  margin-bottom: 4px;
  color: #333;
}

.message-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}

.counselor-message .message-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* アニメーション */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.flow-step:nth-child(odd) {
  animation: slideInLeft 0.6s ease-out;
}

.flow-step:nth-child(even) {
  animation: slideInRight 0.6s ease-out;
}

/* レスポンシブ調整 */
@media (max-width: 767px) {
  .flow-step-content {
    padding: 24px;
  }

  .flow-step-header {
    padding: 16px 20px;
  }

  .flow-step-header h3 {
    font-size: 18px;
  }

  .option-card {
    padding: 24px 20px;
  }

  .counselor-message {
    padding: 24px;
    margin: 48px auto 0;
  }
}
/* プラン・料金ページ専用CSS */

/* 料金セクション */
.pricing-section {
  padding: 64px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pricing-grid {
  display: grid;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

.pricing-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(208, 90, 69, 0.3);
}

.pricing-card.featured {
  border: 3px solid #d05a6e;
  transform: scale(1.05);
  z-index: 10;
  position: relative;
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-card.premium .pricing-header {
  background: linear-gradient(135deg, #333, #555);
  color: white;
}

.pricing-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #333;
  font-size: 12px;
  font-weight: bold;
  padding: 8px 16px;
  transform: rotate(12deg);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.pricing-header {
  background: linear-gradient(135deg, #f9f9f9, #f1f3f4);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-card.featured .pricing-header {
  background: linear-gradient(135deg, #d05a6e, #b84e60);
  color: white;
}

.pricing-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.pricing-card:hover .pricing-header::before {
  left: 100%;
}

.pricing-header h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px;
}

.pricing-header p {
  color: #666;
  margin-bottom: 24px;
  font-size: 14px;
}

.pricing-card.featured .pricing-header p {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-price,
.pricing-monthly,
.pricing-success {
  margin-bottom: 12px;
  padding: 8px 0;
}

.price-main {
  font-size: 32px;
  font-weight: bold;
  color: #d05a6e;
  display: block;
}

.pricing-card.featured .price-main {
  color: white;
}

.pricing-card.premium .price-main {
  color: #333;
}

.price-sub {
  font-size: 14px;
  color: #666;
  margin-left: 4px;
}

.pricing-card.featured .price-sub {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-features {
  padding: 32px 24px;
}

.pricing-features ul {
  margin-bottom: 32px;
  list-style: none;
}

.pricing-features li {
  padding: 12px 0;
  position: relative;
  padding-left: 32px;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li:hover {
  background: rgba(208, 90, 69, 0.02);
  padding-left: 36px;
}

.feature-included::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  color: #22c55e;
  font-weight: bold;
  font-size: 16px;
  width: 24px;
  height: 24px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-excluded {
  color: #999;
  opacity: 0.6;
}

.feature-excluded::before {
  content: "✗";
  position: absolute;
  left: 0;
  top: 12px;
  color: #ef4444;
  font-weight: bold;
  font-size: 16px;
  width: 24px;
  height: 24px;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 特典セクション */
.pricing-benefits {
  max-width: 800px;
  margin: 64px auto 0;
  background: linear-gradient(135deg, rgba(242, 196, 206, 0.15), rgba(208, 90, 69, 0.05));
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(208, 90, 69, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.pricing-benefits h3 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
  color: #d05a6e;
}

.benefits-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefit-item {
  position: relative;
  padding: 16px 16px 16px 40px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.benefit-item::before {
  content: "✓";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #d05a6e;
  font-weight: bold;
  font-size: 16px;
  width: 20px;
  height: 20px;
  background: rgba(208, 90, 69, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* プラン比較テーブル（モバイル対応） */
@media (max-width: 767px) {
  .pricing-grid {
    gap: 24px;
  }

  .pricing-card.featured {
    transform: none;
    order: -1;
  }

  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }

  .pricing-header {
    padding: 24px 20px;
  }

  .pricing-features {
    padding: 24px 20px;
  }

  .pricing-benefits {
    margin: 48px auto 0;
    padding: 24px;
  }
}

/* アニメーション効果 */
@keyframes priceSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.pricing-card:nth-child(1) {
  animation: priceSlideIn 0.6s ease-out 0.1s both;
}

.pricing-card:nth-child(2) {
  animation: priceSlideIn 0.6s ease-out 0.2s both;
}

.pricing-card:nth-child(3) {
  animation: priceSlideIn 0.6s ease-out 0.3s both;
}

/* ホバー時の価格アニメーション */
.pricing-card:hover .price-main {
  animation: priceGlow 0.6s ease-in-out;
}

@keyframes priceGlow {
  0%,
  100% {
    text-shadow: none;
  }
  50% {
    text-shadow: 0 0 20px rgba(208, 90, 69, 0.5);
  }
}

/* 推奨バッジのアニメーション */
.pricing-badge {
  animation: badgeBounce 2s ease-in-out infinite;
}

@keyframes badgeBounce {
  0%,
  100% {
    transform: rotate(12deg) scale(1);
  }
  50% {
    transform: rotate(12deg) scale(1.05);
  }
}
/* 成功事例ページ専用CSS */

/* 成功事例セクション */
.success-stories-section {
  padding: 64px 0;
}

.success-story {
  max-width: 1200px;
  margin: 0 auto 80px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.success-story.animate {
  opacity: 1;
  transform: translateY(0);
}

.success-story:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

@media (min-width: 768px) {
  .success-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
  }

  .success-story.reverse {
    direction: rtl;
  }

  .success-story.reverse .success-story-content {
    direction: ltr;
  }
}

.success-story-images {
  position: relative;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.couple-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 300px;
  position: relative;
}

@media (min-width: 768px) {
  .couple-images {
    height: 100%;
    min-height: 400px;
  }
}

.person-image {
  position: relative;
  overflow: hidden;
}

.person-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(208, 90, 69, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.success-story:hover .person-image::before {
  opacity: 1;
}

.person-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.success-story:hover .person-image img {
  transform: scale(1.05);
}

.couple-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
  color: white;
  padding: 24px;
  z-index: 2;
}

@media (min-width: 768px) {
  .couple-info {
    position: static;
    background: linear-gradient(135deg, #f9f9f9, #f1f3f4);
    color: #333;
    padding: 20px 24px;
  }
}

.couple-info h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 4px;
}

.couple-info p {
  font-size: 14px;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .couple-info p {
    opacity: 1;
    color: #666;
  }
}

.success-story-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonials {
  margin-bottom: 24px;
}

.testimonials blockquote {
  background: linear-gradient(135deg, rgba(242, 196, 206, 0.1), rgba(208, 90, 69, 0.05));
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 16px;
  font-style: italic;
  color: #555;
  border-left: 4px solid #d05a6e;
  position: relative;
  line-height: 1.7;
  transition: all 0.3s ease;
}

.testimonials blockquote:hover {
  background: linear-gradient(135deg, rgba(242, 196, 206, 0.15), rgba(208, 90, 69, 0.08));
  transform: translateX(4px);
}

.testimonials blockquote::before {
  content: '"';
  font-size: 40px;
  color: #d05a6e;
  position: absolute;
  top: -5px;
  left: 10px;
  font-family: serif;
  opacity: 0.3;
}

.testimonials cite {
  font-weight: bold;
  color: #d05a6e;
  font-style: normal;
  font-size: 14px;
  display: block;
  text-align: right;
  margin-top: 8px;
}

.counselor-comment {
  background: linear-gradient(135deg, rgba(208, 90, 69, 0.05), rgba(242, 196, 206, 0.1));
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(208, 90, 69, 0.1);
}

.counselor-comment h4 {
  font-weight: bold;
  margin-bottom: 8px;
  color: #d05a6e;
  font-size: 16px;
}

.counselor-comment p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* 成功の秘訣セクション */
.success-tips-section {
  padding: 64px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.tips-grid {
  display: grid;
  gap: 32px;
  max-width: 1024px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .tips-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tip-card {
  background: white;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tip-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d05a6e, #f2c4ce);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.tip-card:hover::before {
  transform: scaleX(1);
}

.tip-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #d05a6e, #b84e60);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(208, 90, 69, 0.3);
  transition: all 0.3s ease;
}

.tip-card:hover .tip-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(208, 90, 69, 0.4);
}

.tip-card h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
  color: #333;
}

.tip-card p {
  color: #666;
  line-height: 1.6;
}

/* 統計セクション */
.statistics-section {
  padding: 64px 0;
  background: linear-gradient(135deg, #d05a6e, #b84e60);
  color: white;
  position: relative;
  overflow: hidden;
}

.statistics-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>')
    repeat;
  background-size: 50px 50px;
  opacity: 0.3;
}

.statistics-section .section-title span {
  border-bottom-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.stats-grid {
  display: grid;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 32px 24px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.stat-number {
  font-size: 48px;
  font-weight: bold;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 18px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
}

.stat-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.stats-note {
  text-align: center;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  position: relative;
  z-index: 1;
}

/* アニメーション効果 */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.success-story:nth-child(odd) {
  animation: slideInUp 0.8s ease-out;
}

.success-story:nth-child(even) {
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.stat-number {
  animation: countUp 0.6s ease-out;
}

/* レスポンシブ調整 */
@media (max-width: 767px) {
  .success-story {
    margin-bottom: 48px;
  }

  .success-story-content {
    padding: 24px;
  }

  .testimonials blockquote {
    padding: 16px;
  }

  .tip-card {
    padding: 24px 20px;
  }

  .stat-item {
    padding: 24px 20px;
  }

  .stat-number {
    font-size: 36px;
  }
}
