@charset "UTF-8";

/* ==========================================================
   誄 LP / Front Page
   基本セクション
========================================================== */

/* ==========================================================
   FV CTA / Common Buttons
========================================================== */

.cta-fv-sp {
  display: none;
}

@media (min-width: 769px) {
  .cta-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 32px;
    width: 100%;
    max-width: 1000px;
    margin: 1rem auto 1rem;
    padding: 0 20px;
  }

  .cta-buttons a {
    display: block;
    flex: 1;
    max-width: 420px;
  }

  .cta-buttons img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 999px;
  }
}

@media (max-width: 768px) {

  .cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    margin: 1rem auto 1.6rem;
    padding: 0 1rem;
  }

  .cta-buttons a {
    width: 100%;
    max-width: 400px;
  }

  .cta-buttons img {
    display: block;
    width: 100%;
    height: auto;
  }

  .cta-fv-sp {
    display: block;
    text-align: center;
    margin: 1rem auto 1.6rem;
    padding: 0 1rem;
  }

  .cta-fv-note {
    margin: 0.25rem auto 0.4rem;
    font-size: 0.8rem;
    color: var(--color-muted);
  }

  a.btn-radius-solid {
    display: inline-block;
    width: 100%;
    max-width: 320px;
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(103, 65, 150, 0.35);
    background: linear-gradient(to bottom, #f4eef7 0%, #ddcfe4 100%);
    color: var(--color-logo);
    font-weight: 600;
    letter-spacing: 0.08rem;
    text-decoration: none;
    text-align: center;
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
    transition: background 0.25s ease, transform 0.2s ease;
  }
}
  a.btn-radius-solid .fa-position-right {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
  }

@media (hover: hover) and (pointer: fine) {
  a.btn-radius-solid:hover {
    background: linear-gradient(to bottom, #eee5f2 0%, #ddcfe4 100%);
    transform: translateY(-1px);
  }
}

/* ==========================================================
   Problem Section
========================================================== */

.problem-section {
  background: var(--color-purple-gray-light);
  margin-top: 0;
  padding: 2rem 1rem 2.2rem;
  text-align: center;
}

.problem-inner {
  max-width: 900px;
  margin: 0 auto;
}

.lead-text,
.message-text,
.end-text {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  color: var(--color-text);
  margin: 1.2rem auto;
  text-align: center;
  max-width: 800px;
}

.highlight {
  font-weight: 700;
  color: var(--color-logo);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 800px;
  margin: 1.5rem auto;
}

.problem-item {
  background: var(--color-background);
  border: 2px solid var(--color-purple-border);
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.problem-text {
  font-size: 0.8rem;
  color: var(--color-text);
  font-weight: 500;
  text-align: justify;
  margin: 0;
}

@media (min-width: 769px) {
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
  }
}

@media (max-width: 768px) {
  .problem-section {
    padding: 2.2rem 1rem;
  }

  .message-text {
    text-align: left;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    width: 92%;
  }

  .problem-item {
    padding: 10px;
    min-height: 3rem;
  }

  .problem-text {
    font-size: 0.9rem;
    line-height: 1.2;
    text-align: left;
  }
}

/* ==========================================================
   Tabs
========================================================== */

.tab-block {
  width: 100%;
  max-width: 900px;
  margin: 3rem auto 1.5rem;
  text-align: center;
  padding: 0;
  position: relative;
  z-index: 0;
}

.tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 4px;
  width: 100%;
  max-width: 640px;
  margin: 2rem auto 1.5rem;
  background: var(--color-purple-soft);
  border-radius: 999px;
}

.tab-btn {
  flex: 1;
  background: transparent;
  color: var(--color-logo);
  border: none;
  padding: 6px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08rem;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease;
}

.tab-btn.active {
  background: var(--color-logo);
  color: #ffffff;
}

.tab-content {
  display: none;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 1.5rem;
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible;
}

.tab-content.active {
  display: block;
}

@media (hover: hover) and (pointer: fine) {
  .tab-btn:hover {
    background: rgba(103, 65, 150, 0.12);
  }
}

@media (max-width: 768px) {
  .tabs {
    background: none;
    padding: 0;
    gap: 0;
    max-width: 100%;
    margin: 1.5rem auto 1rem;
  }

  .tab-btn {
    border-radius: 0;
    color: #6f7f76;
    position: relative;
  }

  .tab-btn.active {
    color: var(--color-logo);
    background: none;
  }

  .tab-btn.active::after {
    content: "";
    position: absolute;
    left: 20%;
    bottom: -4px;
    width: 60%;
    height: 2px;
    background: var(--color-logo);
    border-radius: 2px;
  }
}

/* ==========================================================
   Voice Section
========================================================== */

.voice-section {
  width: 95%;
  max-width: none;
  margin: 1.5rem auto;
  padding: 0 1rem;
  text-align: center;
}

.voice-slider {
  display: flex;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 0;
}

.voice-slider::-webkit-scrollbar {
  display: none;
}

.voice-item {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.voice-video {
  display: block;
  width: 100%;
  max-width: 1200px;
  height: auto;
  border-radius: 12px;
}

.voice-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 1rem auto 0;
}

.voice-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(103, 65, 150, 0.25);
  cursor: pointer;
}

.voice-dots .dot.active {
  background: rgba(103, 65, 150, 0.9);
}

@media (max-width: 768px) {
  .voice-section {
    max-width: 100%;
    padding: 0 1rem;
  }

  .voice-slider {
    max-width: 100%;
  }

  .voice-video {
    max-width: 100%;
  }
}

/* ==========================================================
   Menu Section
========================================================== */

.menu-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
  font-family: var(--font-heading);
}

.menu-image-overlay {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.menu-image-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-overlay-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.25);
  padding: 1.5rem;
  text-align: left;
  font-family: var(--font-heading);
}

.menu-overlay-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.12rem;
  margin: 0.4rem 0 0.1rem;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.menu-overlay-desc {
  font-size: 1rem;
  letter-spacing: 0.06rem;
  line-height: 1.6;
  margin: 0 0 0.4rem;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
  .menu-image-overlay {
    height: auto;
    min-height: 0;
    overflow: hidden;
  }

  .menu-image-overlay > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .menu-overlay-text {
    position: relative;
    inset: auto;
    min-height: 0;
    background: rgba(0,0,0,0.35);
    padding: 2rem 1.2rem;
  }

  .menu-overlay-title,
  .menu-overlay-subtitle,
  .menu-overlay-desc {
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
  }
}

/* ==========================================================
   Price Section
========================================================== */

.price {
  padding: 2.2rem 20px 2rem;
  background: linear-gradient(
    135deg,
    #884898 0%,
    #674196 50%,
    #55295b 100%
  );
  text-align: center;
  overflow: visible;
}

.price-inner {
  width: min(100%, 1320px);
  margin: 0 auto;
}

.price h2 {
  margin: 0 0 0.7rem;
  color: #f7fcfe;
  font-weight: 500;
  letter-spacing: 0.28rem;
}

.price-lead {
  margin: 0 auto 1.5rem;
  color: rgba(247, 252, 254, 0.92);
  font-size: 0.95rem;
  line-height: 1.8;
  letter-spacing: 0.08rem;
}

.price-table,
.rui-price-table {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr) minmax(0, 1fr) minmax(300px, 1.35fr);
  gap: 15px;
  align-items: stretch;
  width: 100%;
  margin: 0 auto;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 12px;
  background: var(--color-purple-soft);
  box-shadow: 0 4px 12px rgba(34, 11, 42, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price-card h3 {
  margin: 0 0 0.9rem;
  padding: 0 0 0.65rem;
  border-bottom: 2px solid var(--color-purple-gray);
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08rem;
}

.price-list,
.price-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--color-text);
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.68rem 0.25rem;
  border-bottom: 1px solid rgba(103, 65, 150, 0.16);
  font-family: Arial, sans-serif;
}

.price-list li:last-child,
.price-info-list li:last-child {
  border-bottom: 0;
}

.price-list .time {
  color: #666;
  font-size: 0.9rem;
  font-weight: 400;
}

.price-list .amount {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.price-info-list li {
  position: relative;
  padding: 0.72rem 0.25rem 0.72rem 1.15rem;
  border-bottom: 1px solid rgba(103, 65, 150, 0.16);
  color: var(--color-text);
  font-size: 0.9rem;
  line-height: 1.55;
  text-align: left;
}

.price-info-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-logo);
  font-weight: 700;
}


.price-subtitle {
  margin: 1rem 0 0.35rem;
  padding: 0 0 0.45rem;
  border-bottom: 1px solid rgba(103, 65, 150, 0.24);
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08rem;
  text-align: center;
}

.payment-method-list {
  list-style: circle;
  margin: 0;
  padding: 0 0 0 1.35rem;
  color: var(--color-text);
}

.payment-method-list li {
  padding: 0.28rem 0;
  font-size: 0.86rem;
  line-height: 1.5;
  text-align: left;
}

.note-small {
  margin: auto 0 0;
  padding-top: 1rem;
  color: var(--color-text);
  font-size: 0.8rem;
  line-height: 1.65;
  letter-spacing: 0.06rem;
  text-align: left;
}

.note-small a {
  color: var(--color-logo);
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.price .note {
  margin: 1rem auto 0;
  color: #f7fcfe;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.12rem;
  text-align: center;
}

.calendar-card {
  min-height: 100%;
}

.calendar-embed {
  flex: 1;
  width: 100%;
  min-height: 340px;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
}

.calendar-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

.calendar-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-top: 0.85rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(103, 65, 150, 0.4);
  border-radius: 999px;
  color: var(--color-logo);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06rem;
  text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
  .price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(34, 11, 42, 0.22);
  }

  .calendar-link:hover {
    background: rgba(103, 65, 150, 0.1);
  }
}

@media (max-width: 1100px) {
  .price-table,
  .rui-price-table {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .calendar-card {
    grid-column: span 2;
  }

  .calendar-embed,
  .calendar-embed iframe {
    min-height: 460px;
  }
}

@media (max-width: 768px) {
  .price {
    padding: 1.8rem 15px;
  }

  .price h2 {
    font-size: 1.6rem;
  }

  .price-lead {
    width: min(100%, 34rem);
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    text-align: left;
  }

  .price-table,
  .rui-price-table {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .calendar-card {
    grid-column: auto;
  }

  .price-card {
    padding: 1.15rem 1rem;
  }

  .calendar-embed,
  .calendar-embed iframe {
    min-height: 420px;
  }
}

/* ==========================================================
   2nd CTA
========================================================== */
@media (min-width: 769px) {

  .cta-buttons--2nd {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 32px;
    width: 100%;
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0;
  }

  .cta-buttons--2nd a {
    flex: 1;
    max-width: 420px;
    display: block;
  }

  .cta-buttons--2nd img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 999px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .cta-buttons--2nd a {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    will-change: transform;
  }

  .cta-buttons--2nd a:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  }
}

@media (max-width: 768px) {
  .cta-section-2 {
    padding: 1.2rem 0 1.8rem;
  }

  .cta-buttons--2nd {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 1rem auto;
    padding: 0 1rem;
  }

  .cta-buttons--2nd a {
    width: 100%;
    max-width: 320px;
  }

  .cta-buttons--2nd img {
    display: block;
    width: 100%;
    height: auto;
  }
}

/* ==========================================================
   Profile
========================================================== */

.profile-section {
  margin: 1rem auto;
  width: 100%;
  padding: 2rem 0;
  background-color: var(--color-background-soft);
}

.profile-box {
  width: 900px;
  max-width: 95%;
  margin: 0 auto;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  text-align: center;
}

.profile-image {
  width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--color-purple-border);
}

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

.profile-headings {
  text-align: center;
  margin-bottom: 1.8rem;
}

.profile-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.3rem;
  padding-bottom: 0.8rem;
  color: var(--color-logo);
}

.profile-section h3 {
  font-size: 1.3rem;
  letter-spacing: 0.5rem;
  font-weight: bold;
  padding-bottom: 0.3rem;
}

.profile-section h4 {
  font-size: 0.8rem;
  color: var(--color-purple-gray);
  letter-spacing: 0.2rem;
  font-weight: 500;
}

.profile-section h5 {
  font-size: 1rem;
  color: var(--color-muted);
  letter-spacing: 0.1rem;
  font-weight: 600;
  text-align: center;
}

.profile-section h6 {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
}

.profile-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.profile-section p {
  font-size: 0.95rem;
  margin: 0 1.5rem;
  padding-bottom: 0.5rem;
  color: var(--color-text);
  text-align: justify;
}

@media (max-width: 768px) {
  .profile-heading-image {
    width: 150px;
    height: 150px;
    margin-bottom: 1rem;
  }

  .profile-box {
    width: 95%;
  }

  .profile-text {
    width: 98%;
    margin: 0 auto;
  }
}

/* ==========================================================
   Section Divider
========================================================== */

.rui-section-divider {
  width: min(88%, 1100px);
  height: 1px;
  margin: 4.5rem auto 3.5rem;
  border: 0;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(103, 65, 150, 0.18) 18%,
    rgba(103, 65, 150, 0.42) 50%,
    rgba(103, 65, 150, 0.18) 82%,
    transparent 100%
  );
}

@media (max-width: 768px) {
  .rui-section-divider {
    width: 76%;
    margin: 3.25rem auto 2.75rem;
  }
}

/* ==========================================================
   FAQ
========================================================== */

.faq {
  --faq-accent: #674196;
  padding-top: 0;
  padding-bottom: 40px;
  background: var(--color-background);
}

.faq h2 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.3rem;
  margin: 0 auto 0.6rem;
  text-align: center;
  color: var(--color-logo);
}

.faq h3 {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  margin: 0 auto;
  text-align: center;
  color: var(--color-logo);
}

.accordion-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 20px auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
  align-items: start;
}

.accordion-item {
  position: relative;
  background: var(--color-background);
  padding: 0.15rem 0;
  border-top: 2px solid var(--color-logo);
  border-bottom: 2px solid var(--color-logo);
  border-radius: 10px;
  overflow: hidden;
  align-self: start;
}

.accordion-item::before,
.accordion-item::after {
  content: "";
  position: absolute;
  top: 8px;
  width: 2px;
  height: calc(100% - 16px);
  background: var(--color-logo);
  border-radius: 2px;
}

.accordion-item::before {
  left: 0;
}

.accordion-item::after {
  right: 0;
}

.accordion-toggle {
  background: none;
  border: none;
  width: 100%;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 0.55rem 1.6rem;
  color: var(--color-text);
}

.accordion-toggle h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04rem;
  line-height: 1.5;
  color: var(--color-text);
  text-align: left;
  padding: 0 0.5rem;
}

.accordion-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(221, 207, 228, 0.85) inset;
}

.accordion-toggle:focus:not(:focus-visible) {
  box-shadow: none;
}

.rotate-icon {
  width: 1.4rem;
  height: 1.4rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--faq-accent);
}

.accordion-item.active .rotate-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 1rem;
}

.accordion-item.active .accordion-content {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  border-top: 1px solid var(--color-border-light);
}

.accordion-content p {
  margin: 0;
  color: var(--color-text);
  line-height: 1.5;
  font-size: 0.9rem;
  padding: 0 0.6rem;
}

.accordion-content a {
  color: var(--faq-accent);
  text-decoration: underline;
}

.accordion-content a:hover {
  color: var(--color-link-hover);
}

@media (max-width: 768px) {
  .accordion-wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 0.9rem;
  }

  .accordion-toggle {
    padding: 0.5rem 1.4rem;
  }

  .accordion-item::before {
    left: 1px;
  }

  .accordion-item::after {
    right: 1px;
  }

  .rotate-icon {
    width: 1rem;
    height: 1rem;
  }

  .accordion-content {
    padding: 0 1.2rem;
  }

  .accordion-item.active .accordion-content {
    padding-top: 0.7rem;
    padding-bottom: 0.9rem;
  }
}

/* ==========================================================
   Contact
========================================================== */

.contact {
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem 1rem 1rem;
  background: var(--color-border);
  text-align: center;
}

.contact-inner {
  width: min(100%, 1100px);
  margin: 0 auto;
}

.contact h2 {
  margin: 0 auto 0.6rem;
  font-size: 1.4rem;
}

.contact h3.contact-lead {
  margin: 0 auto 2rem;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  text-align: left;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 42fr) minmax(0, 58fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: stretch;
  width: 100%;
  margin: 0 auto 1.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 1.5rem 1rem;
}

.contact-details h4 {
  margin: 0 0 0.5rem;
  color: var(--color-text);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.12rem;
}

.contact p {
  margin: 0.2rem auto;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  text-align: left;
}

.contact .info {
  margin-top: 0;
  font-size: 1rem;
  line-height: 1.8;
}

.contact .info a {
  color: var(--color-logo);
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.contact-map {
  display: flex;
  width: 100%;
  min-width: 0;
  margin: 0;
  align-self: stretch;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(85, 41, 91, 0.12);
}

.contact-map iframe {
  display: block;
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.contact-policy-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 0.9rem;
  width: 100%;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(103, 65, 150, 0.18);
  font-size: 0.85rem;
}

.contact-policy-links a {
  color: var(--color-logo);
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

@media (hover: hover) and (pointer: fine) {
  .contact .info a:hover,
  .contact-policy-links a:hover {
    color: var(--color-link-hover);
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 2rem 1rem 1rem;
  }

  .contact h3.contact-lead {
    width: min(100%, 32rem);
    margin-bottom: 1.4rem;
    font-size: 0.92rem;
    text-align: center;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .contact-details {
    padding: 0.5rem 0;
  }

  .contact-map {
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .contact-map iframe {
    height: 100%;
    min-height: 280px;
  }

  .contact-policy-links {
    gap: 0.45rem 0.8rem;
    font-size: 0.8rem;
  }
}

/* ==========================================================
   誄 LP / First View
   FV指定はこのブロックに集約
========================================================== */

.rui-fv {
  position: relative;
  width: 100%;
  min-height: min(760px, calc(100vh - var(--header-height)));
  margin: 0;
  overflow: hidden;
}

.rui-fv .fv-picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.rui-fv .fv-picture img,
.rui-fv .fv-image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.rui-fv::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(34, 11, 42, 0.68) 0%,
    rgba(54, 25, 65, 0.38) 42%,
    rgba(34, 11, 42, 0.06) 72%
  );
  pointer-events: none;
}

.rui-fv-content {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  width: min(92%, 1200px);
  min-height: min(760px, calc(100vh - var(--header-height)));
  margin: 0 auto;
  padding: 5rem 0 4rem;

  color: #f7fcfe;
  text-align: left;
}

.rui-fv-content .fv-label,
.rui-fv-content h1,
.rui-fv-content .fv-lead,
.rui-fv-content .fv-proof {
  width: min(100%, 700px);
  margin-right: auto;
  margin-left: 0;
  color: #f7fcfe;
  text-align: left;
}

.rui-fv-content .fv-label {
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15rem;
}

.rui-fv-content h1 {
  max-width: 700px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.45;
  letter-spacing: 0.08rem;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.35);
}

.rui-fv-content .fv-lead {
  margin-top: 1rem;
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1.4vw, 1.12rem);
  line-height: 1.9;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

.rui-fv-content .fv-proof {
  margin-top: 0.7rem;
  font-size: 0.86rem;
}

.rui-fv-cta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem;

  width: auto;
  margin: 1.6rem auto 0 0;
  text-align: left;
}

.rui-fv-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;

  min-width: 200px;
  padding: 0.3rem 0.5rem;

  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;

  font-weight: 600;
  letter-spacing: 0.08rem;
  text-decoration: none;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.rui-fv-cta__line {
  background: #f7fcfe;
  color: #55295b;
  font-size: 0.8rem;
}

.rui-fv-cta__form {
  background: rgba(85, 41, 91, 0.5);
  color: #f7fcfe;
  font-size: 0.8rem;
}

.rui-fv-cta-sp {
  display: none;
}

/* ==========================================================
   誄 LP / Voice Slider
========================================================== */

.voice-slider {
  align-items: stretch;
}

.voice-item {
  flex: 0 0 100%;
  min-height: 320px;
  padding: 2rem clamp(1.4rem, 4vw, 3.5rem);

  display: flex;
  flex-direction: column;
  justify-content: center;

  border-radius: 12px;
  background: var(--color-background-soft);
  scroll-snap-align: center;
}

.voice-item h3 {
  margin-bottom: 1rem;
  color: var(--color-logo);
  font-size: 1.05rem;
  text-align: center;
}

.voice-item p {
  max-width: 760px;
  margin-inline: auto;
  line-height: 2;
  text-align: left;
}

.voice-dots .dot {
  padding: 0;
  border: 0;
}

/* ==========================================================
   誄 LP / FAQ 下線型
========================================================== */

.faq--underline .accordion-wrapper {
  display: block;
  max-width: 900px;
}

.faq--underline .accordion-item {
  border: 0;
  border-bottom: 1px dashed var(--faq-accent);
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

.faq--underline .accordion-item::before,
.faq--underline .accordion-item::after {
  display: none;
}

.faq--underline .accordion-item:first-child {
  border-top: 1px dashed var(--faq-accent);
}

.faq--underline .accordion-item h3 {
  margin: 0;
}

.faq--underline .accordion-toggle {
  padding: 1rem 0.5rem;
}

.faq--underline .accordion-toggle span {
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
}

.faq--underline .accordion-content {
  padding-inline: 0.5rem;
}

.faq--underline .accordion-item.active .accordion-content {
  border-top: 0;
}

.faq--underline .accordion-content p {
  padding: 0 0 1.2rem;
  line-height: 1.8;
}

/* ==========================================================
   誄 LP / Theme Overrides
========================================================== */

body {
  color: #000b00;
}


.section h2,
.problem-section h2,
.profile-section h2,
.faq h2,
.contact h2,
.voice-section-title,
.price h2 {
  text-transform: uppercase;
  letter-spacing: 0.28rem;
}

/* ==========================================================
   誄 LP / Text CTA
========================================================== */

.rui-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: min(100%, 420px);
  min-height: 64px;
  padding: 1rem 1.5rem;

  border: 1px solid var(--color-border-soft);
  border-radius: 999px;

  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12rem;
  text-decoration: none;

  box-shadow: 0 6px 18px rgba(85, 41, 91, 0.12);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.rui-cta-button--line {
  background: #f7fcfe;
  color: #55295b;
}

.rui-cta-button--form {
  background: linear-gradient(
    135deg,
    #884898 0%,
    #674196 55%,
    #55295b 100%
  );
  color: #f7fcfe;
}

/* ==========================================================
   Hover
========================================================== */

@media (hover: hover) and (pointer: fine) {
  .rui-fv-cta a:hover {
    transform: translateY(-2px);
  }

  .rui-fv-cta__line:hover {
    background: #ffffff;
    color: #674196;
  }

  .rui-fv-cta__form:hover {
    background: #674196;
  }

  .rui-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(85, 41, 91, 0.2);
  }
}

/* ==========================================================
   Mobile
========================================================== */

@media screen and (max-width: 768px) {
  .rui-fv {
    min-height: 65vh;
    margin-top: var(--header-height);
  }

  .rui-fv .fv-image {
    object-position: center top;
  }

  .rui-fv::after {
    background: linear-gradient(
      180deg,
      rgba(34, 11, 42, 0.08) 20%,
      rgba(34, 11, 42, 0.7) 100%
    );
  }

  .rui-fv-content {
    justify-content: flex-end;
    width: 100%;
    min-height: 65vh;
    padding: 2rem 1rem 2.2rem;
  }

  .rui-fv-content h1 {
    font-size: clamp(1.45rem, 6.5vw, 2rem);
    line-height: 1.5;
    letter-spacing: 0.06rem;
  }

  .rui-fv-cta {
    display: none;
  }

  .rui-fv-cta-sp {
    display: block;
    padding: 1rem;
    text-align: center;
  }

  .voice-item {
    min-height: 360px;
    padding: 1.5rem 1.3rem;
  }

  .faq--underline .accordion-wrapper {
    padding-inline: 1rem;
  }


  .rui-cta-button {
    width: 100%;
    min-height: 58px;
  }
}

/* ==========================================================
   誄 LP / Voice 60:40 + Reading Room
========================================================== */

.voice-section--split {
  max-width: 1180px;
  margin: 2rem auto;
  padding: 0 1.25rem;
  text-align: left;
}

.voice-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(300px, 2fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: stretch;
}

.voice-content {
  min-width: 0;
}

.voice-label,
.reading-room-label {
  margin: 0 0 0.35rem;
  color: #884898;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24rem;
}

.voice-section-title {
  margin: 0 0 1.4rem;
  color: #55295b;
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  letter-spacing: 0.18rem;
}

.voice-list {
  border-top: 1px solid rgba(103, 65, 150, 0.24);
}

.voice-card {
  padding: 1.15rem 0 1.25rem;
  border-bottom: 1px solid rgba(103, 65, 150, 0.24);
}

.voice-card h3 {
  margin: 0 0 0.55rem;
  color: #674196;
  font-size: 1rem;
  letter-spacing: 0.08rem;
}

.voice-card p {
  margin: 0;
  color: var(--color-text);
  font-size: 0.94rem;
  line-height: 1.9;
  text-align: justify;
}

.voice-image {
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(85, 41, 91, 0.16);
}

.voice-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.reading-room-section {
  width: 100%;
  padding: clamp(3rem, 7vw, 6rem) 1.25rem;
  background: var(--color-background);
}

.reading-room-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.reading-room-main {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(300px, 2fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.reading-room-image,
.reading-room-table {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.reading-room-image {
  min-height: 480px;
  box-shadow: 0 14px 36px rgba(85, 41, 91, 0.12);
}

.reading-room-image img,
.reading-room-table img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reading-room-copy h2 {
  margin: 0 0 1.25rem;
  color: #55295b;
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.55;
  letter-spacing: 0.12rem;
}

.reading-room-copy > p:not(.reading-room-label) {
  margin: 0 0 1rem;
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.9;
  text-align: justify;
}

.reading-room-table {
  height: 190px;
  margin-top: 1.5rem;
}

@media screen and (max-width: 768px) {
  .voice-section--split {
    margin: 1.5rem auto;
    padding: 0 1rem;
  }

  .voice-layout,
  .reading-room-main {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .voice-image {
    min-height: 360px;
  }

  .reading-room-section {
    padding: 3rem 1rem;
  }

  .reading-room-image {
    min-height: 330px;
  }

  .reading-room-table {
    height: 180px;
  }
}

/* ==========================================================
   誄 LP / Voice・Reading Room alignment fixes
========================================================== */

/* VOICEは画面幅の95%を使用 */
.voice-section.voice-section--split {
  width: 95%;
  max-width: none;
  margin: 2rem auto;
  padding: 0;
  box-sizing: border-box;
}

/* 左テキストと右画像の上端・下端を揃える */
.voice-layout {
  align-items: stretch;
}

.voice-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.voice-list {
  display: grid;
  flex: 1;
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.voice-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.voice-image {
  height: 100%;
  min-height: 0;
}

/* READING ROOMの見出しを通常セクションと同じ独立タイトルにする */
.reading-room-title {
  margin: 0 auto 2rem;
  color: #55295b;
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.28rem;
  text-align: center;
}

/* 左の部屋画像と右下のテーブル画像のbottomを揃える */
.reading-room-main {
  align-items: stretch;
}

.reading-room-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.reading-room-copy h3 {
  margin: 0 0 1.25rem;
  color: #55295b;
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  line-height: 1.55;
  letter-spacing: 0.12rem;
}

.reading-room-table {
  margin-top: auto;
}

@media screen and (max-width: 768px) {
  .voice-section.voice-section--split {
    width: 95%;
    padding: 0;
  }

  .voice-list {
    display: block;
  }

  .voice-image {
    min-height: 360px;
  }

  .reading-room-title {
    margin-bottom: 1.5rem;
    font-size: 1.45rem;
  }

  .reading-room-table {
    margin-top: 1.5rem;
  }
}

/* ==========================================================
   誄 LP / Final layout override
   VOICE 45:55・READING ROOM bottom alignment
========================================================== */

@media screen and (min-width: 769px) {
  /* VOICE：画面幅いっぱいに近い95%、左45%・右55% */
  .voice-section.voice-section--split {
    width: 95%;
    max-width: none;
    margin: 2.5rem auto;
    padding: 0;
  }

  .voice-layout {
    grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
    gap: clamp(1.5rem, 2.5vw, 3rem);
    align-items: stretch;
  }

  .voice-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .voice-list {
    display: grid;
    flex: 1;
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }

  .voice-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
  }

  .voice-image {
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  .voice-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* READING ROOM：独立タイトル＋左右の画像bottom揃え */
  .reading-room-inner {
    width: 95%;
    max-width: none;
  }

  .reading-room-title {
    margin: 0 auto 2rem;
    color: #55295b;
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 2.5vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.28rem;
    text-align: center;
  }

  .reading-room-main {
    grid-template-columns: minmax(0, 3fr) minmax(300px, 2fr);
    align-items: stretch;
  }

  .reading-room-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .reading-room-copy h3 {
    margin: 0 0 1.25rem;
    color: #55295b;
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    line-height: 1.55;
    letter-spacing: 0.12rem;
  }

  .reading-room-table {
    margin-top: auto;
  }
}

/* ==========================================================
   誄 LP / 2026-07 final responsive adjustments
========================================================== */

.problem-section > .problem-inner > h2,
.price > h2,
.profile-section h2,
.reading-room-title,
.faq > h2,
.contact > h2,
.voice-section-title {
  margin-top: 0;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.15rem;
}

@media screen and (min-width: 769px) {
  .voice-section.voice-section--split {
    width: 90vw;
    max-width: none;
    margin-right: calc(50% - 47.5vw);
    margin-left: calc(50% - 47.5vw);
    padding: 0 clamp(1rem, 2vw, 2rem);
  }

  .voice-layout {
    grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
    gap: clamp(1.5rem, 2vw, 2.5rem);
  }

  .voice-image {
    min-width: 0;
  }

  .voice-image img {
    object-position: center top;
  }

  .reading-room-sp-diviner,
  .reading-room-sp-gallery {
    display: none;
  }
}

.rui-lightbox-link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}

/* URLが空の画像タグが出力された場合の予備防御 */
.reading-room-section img:not([src]),
.reading-room-section img[src=""] {
  display: none !important;
}

.rui-lightbox:not([open]) {
  display: none !important;
}

.rui-lightbox[open] {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: clamp(1rem, 3vw, 2.5rem);
  border: 0;
  overflow: hidden;
  background: transparent;
  box-sizing: border-box;
}

.rui-lightbox::backdrop {
  background: rgba(20, 10, 24, 0.88);
  backdrop-filter: blur(2px);
}

.rui-lightbox__frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(92vw, 1200px);
  height: min(88dvh, 860px);
  margin: auto;
}

.rui-lightbox__image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  margin: auto;
  border-radius: 8px;
  object-fit: contain;
  object-position: center center;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
}

.rui-lightbox-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(20, 10, 24, 0.76);
  color: #fff;
  font: inherit;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transform: translate(35%, -35%);
}

.rui-lightbox-close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .rui-lightbox[open] {
    padding: 1rem;
  }

  .rui-lightbox__frame {
    width: 100%;
    height: min(82dvh, 720px);
  }

  .rui-lightbox-close {
    top: 0.35rem;
    right: 0.35rem;
    width: 38px;
    height: 38px;
    font-size: 1.6rem;
    transform: none;
  }
}

/* ==========================================================
   FAQ / Question Border & Answer Spacing
========================================================== */

.faq--underline .accordion-toggle {
  margin: 0;
  border: 1px solid rgba(103, 65, 150, 0.5);
  border-radius: 8px;
}

.faq--underline .accordion-item {
  padding: 0.35rem 0;
  border-bottom: 0;
}

.faq--underline .accordion-item:first-child {
  border-top: 0;
}

.faq--underline .accordion-content p {
  margin: 0 0 0.5rem;
  padding-bottom: 0;
}

.faq--underline .accordion-item.active .accordion-content {
  padding-top: 0.55rem;
  padding-bottom: 0;
}

/* ==========================================================
   誄 LP / SP layout
   SP固有の表示規則はこのブロックに集約する
========================================================== */

@media screen and (max-width: 768px) {
  /* VOICE：SPでは鑑定中画像を非表示にして本文へ集中させる */
  .voice-section--split .voice-image {
    display: none;
  }

  .voice-section.voice-section--split {
    margin: 1.5rem auto 1.75rem;
  }

  .voice-layout {
    gap: 0;
  }

  /* 2nd CTA：左寄り防止＋上下余白を確保 */
  .cta-section-2 {
    padding: 1.6rem 1rem 1.8rem;
  }

  .cta-buttons--2nd {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    width: 100%;
    margin: 1.2rem auto;
    padding: 0;
  }

  .cta-buttons--2nd a {
    display: block;
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }

  .cta-buttons--2nd img {
    display: block;
    width: 100%;
    height: auto;
  }

  /* READING ROOM：SPでは画像の角丸と間隔を統一 */
  .reading-room-section {
    padding: 2.6rem 1rem;
  }

  .reading-room-main {
    display: block;
  }

  /* PC用の大画像はSPではDOM上にあっても表示しない */
  .reading-room-image,
  .reading-room-table {
    display: none;
  }

  .reading-room-sp-diviner {
    display: block;
    width: 100%;
    margin: 0 0 1rem;
    overflow: hidden;
    border-radius: 0.75rem;
  }

  .reading-room-sp-diviner img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .reading-room-copy {
    width: 100%;
    margin: 0;
  }

  .reading-room-sp-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.625rem;
    width: 100%;
    margin-top: 1rem;
  }

  .reading-room-sp-gallery figure {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 0.75rem;
  }

  .reading-room-sp-gallery img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
  }

  /* CONTACT：SPでは店舗情報を中央寄せ */
  .contact h3.contact-lead {
    text-align: center;
  }

  .contact-details,
  .contact-details h4,
  .contact .info,
  .contact .info p,
  .contact-policy-links {
    text-align: center;
  }

  .contact-details {
    padding: 1.5rem 1rem;
    border: 1px solid rgba(103, 65, 150, 0.24);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.72);
  }

  .contact .info p {
    margin-right: auto;
    margin-left: auto;
  }

  .contact-policy-links {
    justify-content: center;
  }

  .contact-map,
  .contact-map iframe {
    width: 100%;
  }

  .contact-map {
    overflow: hidden;
    border-radius: 0.75rem;
  }
}
