@charset "utf-8";

/* ==================================================
   regery_care LP - PC styles
   ================================================== */

/* ---------- Variables ---------- */
:root {
  --rc-gold: #bea37d;
  --rc-dark: #1e1a2e;
  --rc-white: #ffffff;
  --rc-bg: #f5f2ee;
  --rc-bg2: #ede9e3;
  --rc-text: #3a3333;
  --rc-accent: #c4986a;
  --rc-border: #d9cfc5;
  --font-en: "Cormorant Garamond", serif;
  --font-base: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --font-serif: "Noto Serif JP", serif;
  --transition: 0.3s ease;
}

/* ---------- Base ---------- */
.rc-page {
  font-family: var(--font-base);
  color: var(--rc-text);
  background: var(--rc-white);
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.rc-page *,
.rc-page *::before,
.rc-page *::after {
  box-sizing: border-box;
}

/* ---------- Inner ---------- */
.rc-inner {
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
}

/* ============================================================
   HERO
   ============================================================ */
.rc-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-title-area {
  background: url(../images/regery_care/hero.jpg) no-repeat center center / cover;
}

.rc-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e1a2e 0%, #3a2e50 60%, #5a4470 100%);
  z-index: 0;
}

.rc-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 26, 46, 0.5);
}

.rc-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.55;
  z-index: 1;
}

.rc-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--rc-white);
  padding: 0 20px;
}

.rc-hero-label {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 6px 20px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.85);
}

.rc-hero-title {
  font-family: var(--font-serif);
  font-size: 4.2rem;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 20px;
  letter-spacing: 0.12em;
}

.rc-hero-title strong {
  display: block;
  font-size: 5.5rem;
  font-weight: 400;
  color: #f0d9bb;
}

.rc-hero-sub {
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.rc-hero-btn {
  display: inline-block;
  background: var(--rc-gold);
  color: var(--rc-white);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  padding: 16px 50px;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
}

.rc-hero-btn:hover {
  background: var(--rc-accent);
  transform: translateY(-2px);
  opacity: 1;
}

.rc-scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.rc-scroll-down span {
  display: block;
  font-family: var(--font-en);
  font-size: 1.0rem;
  letter-spacing: 0.25em;
  margin-bottom: 10px;
}

.rc-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), transparent);
  margin: 0 auto;
  animation: rcScrollAnim 2s ease infinite;
}

@keyframes rcScrollAnim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.rc-section {
  padding: 90px 0;
}

.rc-section-bg {
  background: var(--rc-bg);
}

.rc-section-bg2 {
  background: var(--rc-bg2);
}

.rc-section-head {
  text-align: center;
  margin-bottom: 60px;
}

.rc-section-en {
  display: block;
  font-family: var(--font-en);
  font-size: 1.1rem;
  letter-spacing: 0.35em;
  color: var(--rc-gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.rc-section-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--rc-dark);
  line-height: 1.5;
}

.rc-section-title strong {
  color: var(--rc-gold);
}

.rc-section-lead {
  margin-top: 20px;
  font-size: 1.5rem;
  color: #6a5f5a;
  line-height: 2;
}

.rc-divider {
  width: 50px;
  height: 1px;
  background: var(--rc-gold);
  margin: 20px auto 0;
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.rc-problem-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.rc-problem-item {
  background: var(--rc-white);
  border: 1px solid var(--rc-border);
  border-radius: 4px;
  padding: 30px 24px;
  text-align: center;
  transition: box-shadow var(--transition);
}

.rc-problem-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.rc-problem-num {
  font-family: var(--font-en);
  font-size: 3.5rem;
  color: var(--rc-gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 10px;
}

.rc-problem-text {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--rc-dark);
}

.rc-problem-resolve {
  background: var(--rc-dark);
  color: var(--rc-white);
  text-align: center;
  padding: 50px 40px;
  border-radius: 4px;
}

.rc-problem-resolve-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 300;
  margin-bottom: 20px;
  color: #f0d9bb;
  line-height: 1.7;
}

.rc-problem-resolve-text {
  font-size: 1.5rem;
  opacity: 0.85;
  line-height: 2;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.rc-about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 70px;
}

.rc-about-feature {
  text-align: center;
  padding: 44px 24px;
  border: 1px solid var(--rc-border);
  border-radius: 4px;
  background: var(--rc-white);
  transition: box-shadow var(--transition), transform var(--transition);
}

.rc-about-feature:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.rc-about-icon {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--rc-gold);
  font-weight: 400;
  margin-bottom: 18px;
  line-height: 1;
}

.rc-about-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--rc-dark);
  margin-bottom: 14px;
}

.rc-about-text {
  font-size: 1.4rem;
  color: #6a5f5a;
  line-height: 1.9;
}

.rc-about-detail {
  display: flex;
  align-items: center;
  gap: 60px;
}

.rc-about-detail-img {
  flex: 0 0 42%;
  position: relative;
}

.rc-about-detail-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 4px;
}

.rc-about-detail-frame {
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  border: 2px solid var(--rc-gold);
  border-radius: 4px;
  z-index: -1;
}

.rc-about-detail-body {
  flex: 1;
}

.rc-about-detail-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--rc-dark);
  margin-bottom: 18px;
  line-height: 1.5;
}

.rc-about-detail-text {
  font-size: 1.45rem;
  color: #5a4e4a;
  line-height: 2;
}

/* ============================================================
   DOCTOR SECTION
   ============================================================ */
.rc-doctor-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.rc-doctor-card {
  display: flex;
  gap: 24px;
  padding: 32px;
  background: var(--rc-white);
  border: 1px solid var(--rc-border);
  border-radius: 4px;
  align-items: flex-start;
  transition: box-shadow var(--transition);
}

.rc-doctor-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.rc-doctor-img {
  flex: 0 0 110px;
}

.rc-doctor-img img {
  width: 110px;
  height: 140px;
  object-fit: cover;
  border-radius: 4px;
}

.rc-doctor-clinic {
  font-size: 1.15rem;
  color: var(--rc-gold);
  font-family: var(--font-serif);
  margin-bottom: 4px;
}

.rc-doctor-name {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--rc-dark);
  margin-bottom: 4px;
}

.rc-doctor-career {
  font-size: 1.15rem;
  color: #888;
  margin-bottom: 14px;
}

.rc-doctor-comment {
  font-size: 1.35rem;
  color: #5a4e4a;
  line-height: 1.9;
  font-style: italic;
  border-left: 3px solid var(--rc-gold);
  padding-left: 14px;
}

.rc-doctor-letter {
  text-align: center;
}

.rc-doctor-letter-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--rc-dark);
  margin-bottom: 24px;
}

.rc-doctor-letter img {
  max-width: 520px;
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

/* ============================================================
   FLOW SECTION
   ============================================================ */
.rc-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.rc-flow-card {
  background: var(--rc-white);
  border: 1px solid var(--rc-border);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.rc-flow-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.rc-flow-img img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.rc-flow-img-placeholder {
  width: 100%;
  height: 140px;
  background: linear-gradient(135deg, #f0e8df, #e8ddd5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rc-flow-placeholder-icon {
  font-size: 3rem;
  color: var(--rc-gold);
  opacity: 0.5;
}

.rc-flow-body {
  padding: 16px;
}

.rc-flow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--rc-gold);
  color: var(--rc-white);
  font-family: var(--font-en);
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.rc-flow-step {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--rc-dark);
  margin-bottom: 6px;
  line-height: 1.5;
}

.rc-flow-text {
  font-size: 1.2rem;
  color: #6a5f5a;
  line-height: 1.7;
}

/* ============================================================
   RESULT SECTION
   ============================================================ */
.rc-result {
  background: var(--rc-dark);
  color: var(--rc-white);
}

.rc-result .rc-section-title {
  color: var(--rc-white);
}

.rc-result .rc-section-en {
  color: rgba(190, 163, 125, 0.8);
}

.rc-result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.rc-result-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
  transition: transform var(--transition);
}

.rc-result-card:hover {
  transform: translateY(-4px);
}

.rc-result-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.rc-result-caption {
  padding: 14px 16px;
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.82);
}

/* ============================================================
   MENU / PRICE SECTION
   ============================================================ */
.rc-menu-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 20px;
}

.rc-menu-card {
  border: 1px solid var(--rc-border);
  border-radius: 4px;
  padding: 32px 24px;
  background: var(--rc-white);
  transition: box-shadow var(--transition), transform var(--transition);
}

.rc-menu-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.rc-menu-card.rc-featured {
  border-color: var(--rc-gold);
  background: linear-gradient(160deg, #fdf8f2 0%, #fff 100%);
  position: relative;
}

.rc-menu-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rc-gold);
  color: var(--rc-white);
  font-family: var(--font-en);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  padding: 4px 20px;
  white-space: nowrap;
}

.rc-menu-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--rc-dark);
  margin-bottom: 12px;
  text-align: center;
  line-height: 1.5;
}

.rc-menu-price-area {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rc-border);
}

.rc-menu-price-old {
  font-size: 1.3rem;
  color: #aaa;
  text-decoration: line-through;
  margin-bottom: 4px;
}

.rc-menu-price {
  font-family: var(--font-en);
  font-size: 3.2rem;
  color: var(--rc-gold);
  letter-spacing: 0.02em;
  line-height: 1;
}

.rc-menu-price span {
  font-size: 1.3rem;
  color: #888;
  font-family: var(--font-base);
}

.rc-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rc-menu-list li {
  font-size: 1.35rem;
  color: #5a4e4a;
  padding: 7px 0 7px 22px;
  border-bottom: 1px dotted var(--rc-border);
  position: relative;
}

.rc-menu-list li:last-child {
  border-bottom: none;
}

.rc-menu-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--rc-gold);
  font-size: 1.2rem;
}

.rc-menu-note {
  margin-top: 16px;
  font-size: 1.2rem;
  color: #9a8e89;
  text-align: right;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.rc-cta {
  background: linear-gradient(135deg, #1e1a2e 0%, #3a2e50 100%);
  color: var(--rc-white);
  text-align: center;
  padding: 80px 0;
}

.rc-cta-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  color: #f0d9bb;
}

.rc-cta-lead {
  font-size: 1.5rem;
  opacity: 0.85;
  margin-bottom: 46px;
  line-height: 2;
}

.rc-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.rc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  padding: 18px 44px;
  border-radius: 2px;
  transition: all var(--transition);
  text-decoration: none;
  font-family: var(--font-serif);
}

.rc-btn-primary {
  background: var(--rc-gold);
  color: var(--rc-white);
}

.rc-btn-primary:hover {
  background: var(--rc-accent);
  transform: translateY(-2px);
  opacity: 1;
}

.rc-btn-line {
  background: #06c755;
  color: var(--rc-white);
}

.rc-btn-line:hover {
  background: #05b24c;
  transform: translateY(-2px);
  opacity: 1;
}

.rc-btn-tel {
  background: var(--rc-white);
  color: var(--rc-dark);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.rc-btn-tel:hover {
  background: #f5f0ea;
  transform: translateY(-2px);
  opacity: 1;
}

.rc-btn-icon {
  font-size: 1.8rem;
}

/* ============================================================
   ACCESS SECTION
   ============================================================ */
.rc-access-wrap {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.rc-access-info {
  flex: 0 0 380px;
}

.rc-access-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.45rem;
}

.rc-access-table th,
.rc-access-table td {
  padding: 14px 0;
  border-bottom: 1px solid var(--rc-border);
  vertical-align: top;
}

.rc-access-table th {
  width: 80px;
  color: var(--rc-gold);
  font-weight: 400;
  font-family: var(--font-serif);
  white-space: nowrap;
}

.rc-access-table td {
  color: var(--rc-text);
}

.rc-access-table a {
  color: var(--rc-dark);
  text-decoration: underline;
}

.rc-access-map {
  flex: 1;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.rc-access-map iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: none;
}

/* ============================================================
   ANIMATION
   ============================================================ */
.rc-inview {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.rc-inview.rc-visible {
  opacity: 1;
  transform: translateY(0);
}

.rc-inview-delay1 { transition-delay: 0.1s; }
.rc-inview-delay2 { transition-delay: 0.2s; }
.rc-inview-delay3 { transition-delay: 0.3s; }
.rc-inview-delay4 { transition-delay: 0.4s; }



/* ==================================================
   regery_care LP - SP styles (スマートフォン)
   max-width: 767px
   ================================================== */

@media screen and (max-width: 767px) {

  .page-title-area {
    background: url(../images/regery_care/hero_sp.png) no-repeat center center / cover;
}

  /* ---------- Inner ---------- */
  .rc-inner {
    width: 92%;
  }

  /* ============================================================
     HERO
     ============================================================ */
  .rc-hero {
    height: 100svh;
    min-height: 560px;
  }

  .rc-hero-title {
    font-size: 2.8rem;
    margin-bottom: 14px;
  }

  .rc-hero-title strong {
    font-size: 3.8rem;
  }

  .rc-hero-sub {
    font-size: 1.3rem;
    letter-spacing: 0.12em;
  }

  .rc-hero-btn {
    padding: 14px 36px;
    font-size: 1.4rem;
  }

  .rc-scroll-down {
    bottom: 24px;
  }

  /* ============================================================
     SECTION COMMON
     ============================================================ */
  .rc-section {
    padding: 60px 0;
  }

  .rc-section-head {
    margin-bottom: 40px;
  }

  .rc-section-title {
    font-size: 2.2rem;
  }

  .rc-section-lead {
    font-size: 1.4rem;
  }

  /* ============================================================
     PROBLEM
     ============================================================ */
  .rc-problem-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 40px;
  }

  .rc-problem-num {
    font-size: 2.8rem;
  }

  .rc-problem-text {
    font-size: 1.35rem;
  }

  .rc-problem-resolve {
    padding: 36px 24px;
  }

  .rc-problem-resolve-title {
    font-size: 2rem;
  }

  .rc-problem-resolve-text {
    font-size: 1.4rem;
    text-align: left;
  }

  .rc-problem-item {  
    padding: 30px 2vw;
  }

  /* ============================================================
     ABOUT
     ============================================================ */
  .rc-about-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }

  .rc-about-feature {
    padding: 30px 20px;
  }

  .rc-about-icon {
    font-size: 3rem;
  }

  .rc-about-detail {
    flex-direction: column;
    gap: 30px;
  }

  .rc-about-detail-img {
    flex: none;
    width: 100%;
  }

  .rc-about-detail-img img {
    height: 220px;
  }

  .rc-about-detail-frame {
    display: none;
  }

  .rc-about-detail-title {
    font-size: 1.9rem;
  }

  .rc-about-detail-text {
    font-size: 1.4rem;
  }

  /* ============================================================
     DOCTOR
     ============================================================ */
  .rc-doctor-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 36px;
  }

  .rc-doctor-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
    gap: 18px;
  }

  .rc-doctor-img img {
    width: 100px;
    height: 126px;
  }

  .rc-doctor-comment {
    border-left: none;
    padding-left: 0;
    border-top: 2px solid var(--rc-gold);
    padding-top: 12px;
    text-align: left;
  }

  .rc-doctor-letter img {
    max-width: 100%;
  }

  /* ============================================================
     FLOW
     ============================================================ */
  .rc-flow-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .rc-flow-img img {
    height: 120px;
  }

  .rc-flow-img-placeholder {
    height: 120px;
  }

  .rc-flow-step {
    font-size: 1.2rem;
  }

  .rc-flow-text {
    font-size: 1.15rem;
  }

  /* ============================================================
     RESULT
     ============================================================ */
  .rc-result-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .rc-result-card img {
    height: 69vw;
  }

  /* ============================================================
     MENU
     ============================================================ */
  .rc-menu-cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  .rc-menu-name {
    font-size: 1.6rem;
  }

  .rc-menu-price {
    font-size: 2.6rem;
  }

  .rc-menu-note {
    text-align: left;
  }

  /* ============================================================
     CTA
     ============================================================ */
  .rc-cta {
    padding: 60px 0;
  }

  .rc-cta-title {
    font-size: 2.2rem;
  }

  .rc-cta-lead {
    font-size: 1.4rem;
    margin-bottom: 36px;
  }

  .rc-cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .rc-btn {
    width: 100%;
    max-width: 320px;
    padding: 16px 24px;
    font-size: 1.45rem;
  }

  /* ============================================================
     ACCESS
     ============================================================ */
  .rc-access-wrap {
    flex-direction: column;
    gap: 30px;
  }

  .rc-access-info {
    flex: none;
    width: 100%;
  }

  .rc-access-map iframe {
    height: 260px;
  }
}

