﻿*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--color-text-primary);
  background-color: var(--color-background-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-top: var(--header-height)
}

:root {
  --color-primary-dark: #1a183e;
  --color-background-light: #ffffff;
  --color-background-medium: #f8f8f8;
  --color-background-card: #ffffff;
  --color-border: #e6e6e6;
  --color-text-primary: #1a183e;
  --color-text-secondary: #555555;
  --color-text-light-gray: #8a8a8a;
  --color-text-on-dark: #ffffff;
  --color-text-on-dark-secondary: #e0e0e0;
  --color-accent-light: #2d3033;
  --color-accent-gold: #d6c1a2;
  --color-route-highlight: #b38b50;
  --color-light-gold: #FADDBA;
  --font-serif: "Noto Serif JP", serif;
  --font-title-alt: "Cinzel", serif;
  --header-height: 75px;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1)
}

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px
}

.section-padding {
  padding: 80px 0
}

.dark-bg {
  background-color: var(--color-primary-dark);
  color: var(--color-text-on-dark-secondary)
}

.light-bg {
  background-color: var(--color-background-medium)
}

.text-center {
  text-align: center
}

.mt-20 {
  margin-top: 20px
}

.mt-30 {
  margin-top: 30px
}

.mb-0 {
  margin-bottom: 0 !important
}

.pc-only {
  display: inline
}

.sp-only {
  display: none
}

.text-on-dark-primary {
  color: var(--color-text-on-dark-secondary)
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  color: var(--color-text-primary);
  line-height: 1.4;
  margin-bottom: 1.2rem;
  font-weight: 700
}

h1.page_title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-text-on-dark);
  line-height: 1.2;
  margin-bottom: 0.5rem
}

h2.page_title_sub {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--color-accent-gold);
  font-family: var(--font-serif);
  margin-bottom: 1rem
}

h3.page_title__shoulder {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-on-dark-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem
}

img {
  max-width: 100%
}

.section_m_title__block {
  text-align: center;
  margin-bottom: 60px
}

.section_m_title_no {
  font-size: 0.9rem;
  color: var(--color-accent-gold);
  font-weight: 700;
  margin-bottom: 5px;
  font-family: "Noto Sans JP", sans-serif
}

.section_m_title_en {
  font-family: var(--font-title-alt);
  font-size: 1.8rem;
  color: var(--color-text-light-gray);
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 5px;
  text-transform: uppercase
}

h2.section_m_title {
  font-size: 2.4rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px
}

h2.section_m_title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--color-primary-dark);
  margin: 10px auto 0;
  border-radius: 2px
}

.dark-bg h2.section_m_title {
  color: var(--color-text-on-dark)
}

.dark-bg h2.section_m_title::after {
  background-color: var(--color-text-on-dark)
}

.dark-bg .section_m_title_en {
  color: rgba(255, 255, 255, 0.4)
}

.dark-bg .section_m_title_no {
  color: var(--color-accent-gold)
}

h3.category-title {
  font-size: 2rem;
  margin-bottom: 40px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--color-primary-dark);
  display: block;
  text-align: left
}

h3.category-title .category-en {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-light-gray);
  margin-left: 0;
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left
}

h3.sub-section-title {
  font-size: 1.8rem;
  margin-bottom: 50px;
  font-weight: 700;
  color: var(--color-text-on-dark)
}

h3.card-title {
  font-size: 1.6rem;
  margin-bottom: 1.5rem
}

h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem
}

h5 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.8rem
}

h5 span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  background-color: rgba(214, 193, 162, 0.1);
  padding: 3px 8px;
  border-radius: var(--border-radius-sm);
  margin-right: 8px;
  text-transform: uppercase;
  vertical-align: middle;
  display: inline-block
}

p {
  margin-bottom: 1.2rem;
  color: var(--color-text-secondary);
  font-size: 1rem
}

p.lead {
  font-size: 1.1rem;
  line-height: 1.8
}

.dark-bg p.text-on-dark-primary {
  color: var(--color-text-on-dark-secondary)
}

p:last-child {
  margin-bottom: 0
}

strong {
  font-weight: 700;
  color: var(--color-text-primary)
}

.dark-bg strong {
  color: var(--color-text-on-dark)
}

a {
  color: var(--color-primary-dark);
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease
}

a:hover {
  color: var(--color-accent-gold);
  opacity: 0.8
}

ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem
}

ul li {
  margin-bottom: 0.6rem;
  padding-left: 0;
  position: relative
}

ul li::before {
  display: none
}

.problems-grid ul li::before {
  display: none
}

.dark-bg ul li {
  color: var(--color-text-on-dark-secondary)
}

.header {
  background-color: var(--color-primary-dark);
  color: var(--color-text-on-dark);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease
}

.header-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%
}

.logo {
  display: none
}

.logo a {
  display: block
}

.logo img {
  height: 38px;
  display: block
}

.nav__wrap {
  display: flex;
  align-items: center;
  flex-shrink: 1;
  overflow: hidden
}

.global-nav {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
  flex-wrap: nowrap
}

.global-nav li {
  margin-left: 25px;
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0
}

.global-nav li:first-child {
  margin-left: 0
}

.global-nav a {
  color: var(--color-text-on-dark-secondary);
  text-decoration: none;
  font-weight: 500;
  padding-left: 0;
  padding-right: 0;
  font-size: 0.95rem;
  position: relative;
  display: flex;
  align-items: baseline;
  line-height: 1;
  transition: color 0.3s ease;
  white-space: nowrap
}

.global-nav li:not(:last-child) a {
  padding-top: 11px;
  padding-bottom: 9px
}

.global-nav span.no {
  font-size: 0.75rem;
  font-weight: 400;
  margin-right: 5px;
  opacity: 0.7;
  display: inline-block;
  min-width: 20px;
  text-align: right;
  line-height: 1
}

.global-nav a:hover,
.global-nav a.active {
  color: var(--color-text-on-dark)
}

.global-nav a:hover span.no,
.global-nav a.active span.no {
  opacity: 1
}

.global-nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--color-accent-light);
  transition: width 0.3s ease
}

.global-nav a:not(.contact-button):hover::after,
.global-nav a:not(.contact-button).active::after {
  width: 100%
}

.global-nav a.contact-button {
  background-color: var(--color-accent-gold);
  color: var(--color-primary-dark);
  border-color: var(--color-accent-gold);
  padding: 10px 20px;
  border-radius: var(--border-radius-sm);
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: flex;
  align-items: baseline;
  line-height: 1;
  position: relative;
  top: 0px
}

.global-nav a.contact-button:hover {
  background-color: var(--color-text-on-dark);
  color: var(--color-primary-dark);
  opacity: 1
}

.global-nav a.contact-button::after {
  display: none
}

.global-nav a.contact-button span.no {
  color: inherit;
  opacity: 1
}

.global-nav li:last-child {
  margin-top: 0;
  margin-bottom: 0
}

.drawer_menu {
  display: none
}

.mobile-menu-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1100;
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center
}

.mobile-menu-button span,
.mobile-menu-button span::before,
.mobile-menu-button span::after {
  content: "";
  display: block;
  height: 3px;
  width: 28px;
  background: var(--color-text-on-dark);
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
  position: absolute
}

.mobile-menu-button span {
  position: relative;
  background: transparent
}

.mobile-menu-button span::before {
  top: -9px
}

.mobile-menu-button span::after {
  top: 9px
}

.mobile-menu-button.active span::before {
  transform: rotate(45deg);
  top: 0
}

.mobile-menu-button.active span::after {
  transform: rotate(-45deg);
  top: 0
}

#menu__list.mobile-menu {
  display: none;
  background-color: rgba(26, 24, 62, 0.98);
  padding: calc(var(--header-height) + 20px) 20px 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow-y: auto
}

#menu__list.mobile-menu.open {
  display: block;
  opacity: 1
}

#menu__list .main-nav {
  margin-top: 20px
}

#menu__list .nav {
  list-style: none;
  padding: 0;
  margin: 0
}

#menu__list .nav li:not(:has(.nav-button)) {
  margin-bottom: 15px;
  counter-increment: menu-item;
  border-bottom: 1px solid var(--color-text-on-dark)
}

#menu__list .nav a:not(.nav-button)::before {
  content: "0"counter(menu-item);
  display: inline-block;
  font-size: 1rem;
  margin-right: 8px;
  font-weight: 400
}

#menu__list .nav a {
  font-size: 1.2rem;
  color: var(--color-text-on-dark);
  font-weight: 500;
  display: block;
  padding: 10px
}

#menu__list .nav a.nav-button {
  margin-top: 20px;
  background-color: var(--color-accent-gold);
  color: var(--color-primary-dark);
  border-color: var(--color-accent-gold);
  padding: 12px 25px;
  border-radius: var(--border-radius-sm);
  font-weight: 700;
  width: fit-content;
  margin-left: auto;
  margin-right: auto
}

.page_mv {
  height: 75vh;
  min-height: 550px;
  background-image: url("../images/homme_care/fv.webp");
  background-size: cover;
  background-position: center 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-on-dark);
  text-align: center;
  position: relative
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(26, 24, 62, 0.6), rgba(26, 24, 62, 0.85));
  z-index: 1
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 20px
}

.page_head {
  margin-bottom: 30px
}

.button {
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--border-radius-sm);
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-size: 1rem;
  letter-spacing: 0.5px
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg)
}

.button-primary {
  background-color: var(--color-accent-light);
  color: var(--color-text-on-dark);
  border-color: var(--color-accent-light)
}

.button-primary:hover {
  background-color: var(--color-text-on-dark);
  color: var(--color-primary-dark);
  border-color: var(--color-text-on-dark);
  box-shadow: 0 8px 20px rgba(45, 48, 51, 0.3)
}

.button-secondary {
  background-color: transparent;
  color: var(--color-text-on-dark);
  border-color: var(--color-text-on-dark)
}

.button-secondary:hover {
  background-color: var(--color-text-on-dark);
  color: var(--color-primary-dark);
  border-color: var(--color-text-on-dark);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15)
}

.hero-buttons .button {
  margin: 10px 8px
}

.large-button {
  font-size: 1.1rem;
  padding: 16px 38px
}

.btn_contact a {
  display: inline-block;
  background-color: var(--color-accent-gold);
  color: var(--color-primary-dark);
  border-color: var(--color-accent-gold)
}

.about-advanced-care .btn_contact .button i {
  margin-right: 8px
}

.hero-buttons .btn_contact {
  background-color: var(--color-accent-gold);
  color: var(--color-primary-dark);
  border-color: var(--color-accent-gold)
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
  margin-top: 50px
}

.problem-card.card-item {
  background-color: var(--color-background-card);
  padding: 35px 30px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0
}

.problem-card.card-item:nth-child(1) {
  background-image: url("../images/homme_care/worried1.webp")
}

.problem-card.card-item:nth-child(2) {
  background-image: url("../images/homme_care/worried2.webp")
}

.problem-card.card-item:nth-child(3) {
  background-image: url("../images/homme_care/worried3.webp")
}

.problem-card.card-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(87, 72, 156, 0.3), rgba(30, 25, 54, 0.7));
  z-index: -1;
  border-radius: var(--border-radius-md)
}

.problem-card.card-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg)
}

.card-icon-placeholder {
  width: 70px;
  height: 70px;
  background-color: var(--color-primary-dark);
  color: var(--color-accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
  border: 3px solid var(--color-accent-gold)
}

.problem-card h3.card-title {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #fff
}

.problem-details {
  text-align: left;
  width: 100%;
  margin-bottom: 20px
}

.problem-details p,
.problem-details ul {
  padding-left: 0;
  font-size: 0.95rem;
  color: var(--color-light-gold);
  margin-bottom: 0.8rem
}

.problem-details p strong,
.problem-details ul li strong {
  font-weight: 700;
  color: #fff
}

.problem-marker {
  color: var(--color-accent-gold);
  margin-right: 8px;
  font-weight: 700
}

.problem-consequence,
.problem-consequence-list li {
  color: var(--color-light-gold);
  font-size: 0.9rem;
  line-height: 1.5;
  display: flex
}

.problem-consequence-list {
  margin-top: 5px
}

.problem-card .learn-more.button-like {
  display: inline-block;
  margin-top: auto;
  padding: 12px 25px;
  border-radius: var(--border-radius-md);
  background-color: var(--color-accent-gold);
  color: var(--color-primary-dark);
  border: 2px solid var(--color-accent-gold);
  width: auto;
  margin-left: auto;
  margin-right: auto;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(214, 193, 162, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px
}

.problem-card .learn-more.button-like:hover {
  background-color: var(--color-primary-dark);
  color: var(--color-accent-gold);
  border-color: var(--color-primary-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 15px rgba(26, 24, 62, 0.2)
}

.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 60px
}

.about-feature-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 35px 30px;
  border-radius: var(--border-radius-md);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center
}

.about-feature-icon {
  font-size: 2.8rem;
  color: var(--color-accent-gold);
  margin-bottom: 20px
}

.about-feature-title {
  font-size: 1.6rem;
  color: var(--color-text-on-dark);
  margin-bottom: 20px;
  line-height: 1.3
}

.about-feature-item p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-on-dark-secondary);
  white-space: nowrap
}

.about-feature-item .highlight-gold {
  color: var(--color-accent-gold);
  font-weight: bold
}

.about-feature-comparison {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  margin: 20px 0;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1)
}

.feature-box {
  text-align: center
}

.feature-box h4 {
  font-size: 1.1rem;
  color: var(--color-text-on-dark);
  margin-bottom: 5px
}

.feature-box p {
  font-size: 0.9rem;
  margin-bottom: 0
}

.feature-arrow i {
  font-size: 1.5rem;
  color: var(--color-accent-gold)
}

.about-feature-points-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 25px 0;
  width: 100%;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto
}

.about-feature-point-item {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease
}

.about-feature-point-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2)
}

.about-feature-point-item .point-icon-box {
  font-size: 1.6rem;
  color: var(--color-accent-gold);
  margin-right: 18px;
  width: 35px;
  text-align: center;
  flex-shrink: 0
}

.about-feature-point-item span {
  font-size: 1.1rem;
  color: var(--color-text-on-dark);
  font-weight: 500;
  line-height: 1.4
}

.about-feature-emphasis {
  margin-top: 20px;
  width: 100%
}

.about-feature-emphasis p {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px
}

.about-feature-emphasis i {
  margin: 0 10px;
  font-size: 1.3rem
}

.emphasis-cross {
  color: #ff6b6b
}

.emphasis-tick {
  color: #69db7c
}

.about-advanced-care {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
  padding: 50px 30px;
  border-radius: var(--border-radius-md);
  margin-bottom: 60px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2)
}

.advanced-care-content {
  max-width: 900px;
  margin: 0 auto
}

.advanced-care-icon-large {
  font-size: 3.5rem;
  color: var(--color-accent-gold);
  margin-bottom: 25px
}

.advanced-care-title {
  font-size: 2rem;
  color: var(--color-text-on-dark);
  margin-bottom: 30px;
  font-family: var(--font-title-alt)
}

.advanced-care-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  text-align: left
}

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

.detail-point {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-sm);
  min-height: auto;
  width: 100%;
  box-sizing: border-box
}

.point-icon i {
  font-size: 2.2rem;
  color: var(--color-accent-gold);
  margin-top: 5px;
  width: 40px;
  text-align: center
}

.point-text {
  flex-grow: 1
}

.point-text h4 {
  font-size: 1.3rem;
  color: var(--color-text-on-dark);
  margin-bottom: 10px
}

.point-text p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-on-dark-secondary);
  margin-bottom: 0;
  display: block
}

.about-advanced-care .btn_contact a.button-primary {
  background-color: var(--color-accent-gold);
  color: var(--color-primary-dark);
  border-color: var(--color-accent-gold)
}

.about-advanced-care .btn_contact a.button-primary:hover {
  background-color: #c0ae91;
  color: var(--color-primary-dark);
  border-color: #c0ae91;
  box-shadow: 0 8px 20px rgba(214, 193, 162, 0.3)
}

.strength-section {
  margin-top: 70px
}

.strength-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px
}

.strength-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 35px;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background-color 0.3s ease;
  color: var(--color-text-on-dark-secondary)
}

.strength-item:hover {
  background-color: rgba(255, 255, 255, 0.12)
}

.strength-item p {
  color: inherit
}

.strength-item p.no {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent-gold);
  margin-bottom: 10px;
  line-height: 1
}

.strength-item p.title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text-on-dark);
  margin-bottom: 15px
}

.strength-item .line {
  width: 40px;
  height: 3px;
  background-color: var(--color-accent-gold);
  margin-bottom: 20px;
  border-radius: 2px
}

.strength-item p.text {
  font-size: 1rem;
  line-height: 1.7
}

.strength-item .lead {
  font-size: 1rem;
  line-height: calc(27 / 16);
  height: 13rem
}

.strength-item span.pr-example {
  display: block;
  margin-top: 20px;
  font-size: 0.95rem;
  color: var(--color-text-on-dark);
  line-height: 1.6;
  font-style: normal;
  padding: 12px 15px 12px 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--color-accent-gold);
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
  position: relative
}

.strength-item span.pr-example::before {
  content: "💡";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--color-accent-gold)
}

.treatment-block.card-item {
  display: block;
  text-align: left;
  background-color: var(--color-background-card);
  padding: 40px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 50px
}

.treatment-category .treatment-block.card-item:last-of-type {
  margin-bottom: 0
}

.treatment-category {
  margin-bottom: 60px
}

.treatment-category:last-of-type {
  margin-bottom: 0
}

.treatment-block h4 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  text-align: left
}

.treatment-content {
  display: flex;
  flex-direction: column
}

.treatment-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-bottom: 40px
}

.detail-item h5,
.treatment-price h5 {
  margin-bottom: 15px;
  border-bottom: 2px solid var(--color-border);
  padding-bottom: 8px;
  font-size: 1.25rem;
  display: flex;
  align-items: center
}

.detail-item h5 span,
.treatment-price h5 span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  background-color: var(--color-accent-gold);
  padding: 6px 12px;
  border-radius: var(--border-radius-sm);
  margin-right: 12px;
  text-transform: uppercase;
  vertical-align: middle;
  display: inline-block;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.5px
}

.detail-item p {
  margin-bottom: 1rem
}

.detail-item .placeholder-box {
  margin-bottom: 20px;
  background-color: #f0f0f0;
  border: 1px dashed #cccccc;
  color: #aaaaaa;
  font-size: 0.95rem;
  padding: 25px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 80px
}

.illustration-placeholder {
  min-height: 180px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px
}

.detail-item .illustration-placeholder_wide {
  max-width: 409px;
  padding: 25px 12px
}

.detail-item .illustration-placeholder_full-width {
  max-width: 466px;
  padding: 25px 40px
}

.case-placeholder {
  min-height: 100px
}

.doctor-profile-block {
  display: flex;
  gap: 20px;
  margin-top: 25px;
  background: var(--color-background-medium);
  padding: 25px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-border)
}

.doctor-profile-block .doctor-photo-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #e0e0e0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 0.8rem
}

.doctor-profile-block .doctor-details {
  flex-grow: 1
}

.doctor-profile-block .doctor-name-title {
  font-size: 1.3rem;
  color: var(--color-primary-dark);
  margin-bottom: 5px;
  font-weight: 700
}

.doctor-profile-block .doctor-specialty {
  font-size: 0.95rem;
  color: var(--color-accent-gold);
  font-weight: 500;
  margin-bottom: 10px
}

.doctor-profile-block .doctor-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: 0;
  text-align: left
}

.doctor-title-tag {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-text-secondary);
  margin-left: 8px;
  background-color: var(--color-border);
  padding: 2px 6px;
  border-radius: var(--border-radius-sm);
  vertical-align: middle
}

.casephoto__detail-photo__head {
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--color-text-primary);
  font-size: 1rem;
  text-align: center
}

.casephoto__detail-photo {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center
}

.casephoto__detail-photo__ls {
  width: 100%;
  max-width: 300px;
  text-align: center
}

.casephoto__detail-photo__ls__period {
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text-primary);
  font-size: 0.9rem
}

.illustration-placeholder__period {
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text-primary);
  font-size: 0.9rem;
  text-align: center
}

.placeholder-wrapper__head {
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text-primary);
  font-size: 1rem;
  text-align: center;
  margin-top: 36px
}

.placeholder-wrapper__head+.placeholder-box {
  margin-top: 0
}

.illustration-placeholder__lead {
  font-size: 0.7rem;
  text-align: left
}

.casephoto__detail-photo__ls__img {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  background-color: var(--color-border);
  border: 1px solid var(--color-border)
}

.casephoto__detail-photo__ls__img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  transition: filter 0.3s ease;
  filter: blur(8px)
}

.casephoto__detail-photo__ls__img.no-blur img,
.js-attention-info.is-hidden+img {
  filter: none
}

.illustration__list {
  counter-reset: illustration-item;
  margin-bottom: 0
}

.illustration__item {
  counter-increment: illustration-item
}

.illustration__item:not(:last-child) {
  margin-bottom: 30px
}

.illustration__item::before {
  content: "0"counter(illustration-item);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background-color: #1A183E;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-serif);
  letter-spacing: 0.5px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 6px
}

.js-attention-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 24, 62, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-text-on-dark);
  padding: 15px;
  opacity: 1;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 5;
  visibility: visible
}

.js-attention-info.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none
}

.js-attention-info-ttl {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-accent-gold)
}

.js-attention-info-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-text-on-dark-secondary);
  margin: 0
}

.treatment-price {
  margin-top: 30px;
  margin-bottom: 0
}

.price-table-simple__wrap {
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  margin-top: 15px
}

.price-table-simple {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff
}

.price-table-simple th,
.price-table-simple td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
  color: var(--color-text-secondary)
}

.price-table-simple thead th {
  background-color: var(--color-background-medium);
  color: var(--color-primary-dark);
  font-weight: 700
}

.price-table-simple tr:last-child td {
  border-bottom: none
}

.price-table-simple td:first-child {
  color: var(--color-text-primary);
  font-weight: 500;
  width: 65%
}

.price-table-simple td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--color-primary-dark);
  white-space: nowrap
}

.treatment-specific-info-alt {
  margin-top: 15px
}

.treatment-specific-info-alt .info-category {
  font-size: 1.05rem;
  color: var(--color-primary-dark);
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--color-border)
}

.treatment-specific-info-alt .info-category:first-child {
  margin-top: 0
}

.treatment-specific-info-alt .info-text {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 15px;
  padding-left: 10px
}

.treatment-specific-info-alt .info-list-alt {
  list-style: none;
  padding-left: 10px;
  margin-bottom: 15px
}

.treatment-specific-info-alt .info-list-alt li {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 5px;
  position: relative;
  padding-left: 20px
}

.treatment-specific-info-alt .info-list-alt li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent-gold)
}

.treatment-specific-info-alt .accordion {
  margin-bottom: 0;
  border: none;
  box-shadow: none;
  background-color: transparent
}

.treatment-specific-info-alt .accordion_header {
  padding: 10px 0;
  font-weight: 700;
  position: relative;
  color: var(--color-primary-dark);
  font-size: 1.05rem;
  border-bottom: 1px solid var(--color-border);
  margin-top: 20px;
  cursor: pointer;
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.treatment-specific-info-alt .accordion_header:hover {
  background-color: rgba(0, 0, 0, 0.03)
}

.treatment-specific-info-alt .accordion_header p.info-category {
  margin: 0;
  padding: 0;
  border: none;
  display: inline;
  font-size: inherit;
  color: inherit
}

.treatment-specific-info-alt .accordion_inner {
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  border-top: none;
  background-color: transparent;
  max-height: 0;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out
}

.treatment-specific-info-alt .accordion_inner ul.info-list-alt {
  padding-left: 10px;
  margin-top: 15px;
  margin-bottom: 15px
}

.treatment-specific-info-alt .accordion_header.open+.accordion_inner {
  max-height: 1000px;
  padding-top: 15px;
  padding-bottom: 15px
}

.treatment-specific-info-alt .i_box {
  position: relative;
  transform: none;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-left: 10px
}

.treatment-specific-info-alt .i_box .i {
  width: 100%;
  height: 100%
}

.i_box .i::before,
.i_box .i::after {
  background-color: var(--color-text-light-gray)
}

.treatment-specific-info-alt .accordion_header.open .i_box {
  transform: rotate(135deg)
}

.price-category-block {
  margin-bottom: 50px
}

.price-category-block:last-of-type {
  margin-bottom: 0
}

h3.price-category-title {
  font-size: 1.8rem;
  color: var(--color-primary-dark);
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-primary-dark);
  text-align: left
}

h4.price-sub-category {
  font-size: 1.4rem;
  color: var(--color-primary-dark);
  margin-top: 40px;
  margin-bottom: 15px;
  text-align: left;
  font-weight: 700
}

.price-category-block .price-table-simple:first-of-type {
  margin-top: 0
}

p.price-date-note {
  text-align: right;
  font-size: 0.85rem;
  color: var(--color-text-light-gray);
  margin-bottom: 5px
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 30px;
  margin-top: 50px;
  position: relative;
  justify-content: center;
  justify-items: center;
  align-items: start
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 0;
  max-width: 220px
}

.flow-steps .step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--color-accent-gold);
  color: var(--color-primary-dark);
  margin-bottom: 20px;
  font-weight: 900;
  font-size: 1.8rem;
  box-shadow: 0 5px 15px rgba(214, 193, 162, 0.4), 0 2px 5px rgba(0, 0, 0, 0.1) inset;
  border: 3px solid #fff;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease
}

.light-bg .step-number {
  background-color: var(--color-accent-gold);
  color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  box-shadow: 0 5px 15px rgba(214, 193, 162, 0.4), 0 2px 5px rgba(0, 0, 0, 0.1) inset, 0 0 0 3px var(--color-background-medium)
}

.flow-steps .step-number:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 8px 20px rgba(214, 193, 162, 0.5), 0 3px 7px rgba(0, 0, 0, 0.15) inset
}

.flow-steps .step-title {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--color-primary-dark);
  position: relative;
  padding-bottom: 8px
}

.flow-steps .step-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--color-accent-gold);
  border-radius: 2px
}

.light-bg .step-title {
  color: var(--color-primary-dark)
}

.light-bg .step-title::after {
  background-color: var(--color-accent-gold)
}

.step-desc {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.6
}

@media (min-width:993px) {
  .step-item:not(:nth-child(4n))::after {
    content: "";
    position: absolute;
    height: 2px;
    width: calc(100% + 30px);
    background-color: var(--color-border);
    top: 35px;
    left: calc(50% + 15px);
    transform: translateY(-1px);
    z-index: -1
  }

  .light-bg .step-item:not(:nth-child(4n))::after {
    background-color: #d0d0d0
  }
}

.price-table-placeholder {
  min-height: 350px;
  background-color: #f0f0f0;
  border: 1px dashed #cccccc;
  color: #aaaaaa;
  font-size: 0.95rem;
  padding: 25px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center
}

.price-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-text-light-gray);
  margin-bottom: 0
}

.faq_list {
  margin-top: 50px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto
}

.accordion {
  background-color: var(--color-background-card);
  margin-bottom: 15px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm)
}

.accordion_header {
  padding: 20px 50px 20px 25px;
  cursor: pointer;
  font-weight: 700;
  position: relative;
  color: var(--color-text-primary);
  font-size: 1.1rem;
  transition: background-color 0.3s ease
}

.accordion_header:hover {
  background-color: #fdfdfd
}

.accordion_inner {
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  background-color: var(--color-background-card);
  max-height: 0;
  transition: max-height 0.4s ease-out
}

.accordion_inner p.read {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
  padding: 35px 25px 35px 40px;
  box-sizing: border-box
}

.i_box {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  transition: transform 0.4s ease
}

.i_box .i {
  position: relative;
  width: 100%;
  height: 100%;
  display: block
}

.i_box .i::before,
.i_box .i::after {
  content: "";
  position: absolute;
  background-color: var(--color-text-light-gray);
  border-radius: 1px;
  transition: transform 0.3s ease
}

.i_box .i::before {
  width: 2px;
  height: 100%;
  left: 8px;
  top: 0
}

.i_box .i::after {
  height: 2px;
  width: 100%;
  left: 0;
  top: 8px
}

.accordion_header.open .i_box {
  transform: translateY(-50%) rotate(135deg)
}

.accordion_inner:not(.open) {
  max-height: 0
}

.accordion_header.open+.accordion_inner {
  max-height: 1000px;
  padding-top: 15px;
  padding-bottom: 15px
}

#contact .section_m_title__block {
  margin-bottom: 30px
}

#contact p.lead.contact-lead {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  margin-top: 0
}

#contact p.lead.contact-lead .highlight-phrase {
  color: var(--color-accent-gold);
  font-weight: 700;
  font-size: 1.3em;
  display: inline-block;
  margin-bottom: 0.5em;
  padding: 5px 10px;
  background: linear-gradient(120deg, rgba(214, 193, 162, 0.15) 0%, rgba(214, 193, 162, 0.05) 100%);
  border-radius: var(--border-radius-sm);
  box-shadow: 0 2px 8px rgba(214, 193, 162, 0.2);
  text-shadow: 1px 1px 2px rgba(26, 24, 62, 0.1);
  position: relative;
  z-index: 1
}

#contact p.lead.contact-lead .highlight-phrase::before,
#contact p.lead.contact-lead .highlight-phrase::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: var(--color-accent-gold);
  opacity: 0.5;
  z-index: -1
}

#contact p.lead.contact-lead .highlight-phrase::before {
  top: -5px;
  left: -5px;
  border-radius: 2px 0 0 0
}

#contact p.lead.contact-lead .highlight-phrase::after {
  bottom: -5px;
  right: -5px;
  border-radius: 0 0 2px 0
}

.contact .btn_contact a {
  display: inline-block
}

.footer_index {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border)
}

.footer-index-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: stretch
}

.clinic-info-card {
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  background-color: var(--color-background-light);
  box-shadow: var(--shadow-sm);
  padding: 30px 25px;
  text-align: center;
  display: flex;
  flex-direction: column
}

.clinic-image-placeholder {
  width: 100%;
  height: 150px;
  background-color: #f0f0f0;
  border: 1px dashed #ccc;
  color: #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  border-radius: var(--border-radius-sm);
  margin-bottom: 25px
}

.clinic-image-placeholder:has(img) {
  border: none
}

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

.clinic-access-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--color-primary-dark);
  text-align: center;
  font-family: var(--font-title-alt);
  letter-spacing: 1px
}

.clinic-access-title span {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-text-secondary);
  margin-top: 2px;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.5px;
  margin-bottom: 25px
}

.clinic-info-block {
  text-align: center;
  margin-bottom: 30px;
  color: var(--color-text-primary);
  flex-grow: 1;
  display: flex;
  flex-direction: column
}

.clinic-info-block .clinic-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: var(--color-primary-dark);
  font-weight: 500
}

.clinic-info-block .address {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  color: var(--color-text-primary);
  font-weight: 500
}

.clinic-info-block .address .postal-code {
  display: block;
  margin-bottom: 2px
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 25px auto;
  max-width: 100%;
  text-align: center
}

.info-list>div:not(.contact-buttons-wrapper) {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px
}

.info-list dt {
  font-weight: 500;
  margin-right: 0;
  flex-basis: auto;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  margin-bottom: 5px
}

.info-list dd {
  margin-left: 0;
  flex-grow: 1;
  font-size: 1rem;
  color: var(--color-text-primary);
  font-weight: 400
}

.contact-buttons-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
  align-items: center
}

.contact-button-item {
  width: 100%;
  max-width: 380px
}

.contact-button-item dt {
  margin-bottom: 5px;
  font-size: 0.9rem;
  color: var(--color-text-secondary)
}

.full-width-button {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 14px 10px !important;
  border-radius: var(--border-radius-md) !important;
  font-size: 1rem !important;
  width: 100% !important;
  box-sizing: border-box;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.full-width-button i {
  margin-right: 8px !important;
  font-size: 1.1em;
  flex-shrink: 0
}

.full-width-button span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  max-width: calc(100% - 30px)
}

.info-list dd .tel-button {
  background-color: #fff;
  border: 1px solid var(--color-border);
  color: var(--color-primary-dark)
}

.info-list dd .tel-button:hover {
  background-color: var(--color-primary-dark);
  color: var(--color-accent-gold);
  border-color: var(--color-primary-dark)
}

.info-list dd .reserve-button {
  background-color: var(--color-accent-gold);
  color: var(--color-primary-dark);
  border-color: var(--color-accent-gold)
}

.info-list dd .reserve-button:hover {
  background-color: var(--color-primary-dark);
  color: var(--color-accent-gold);
  border-color: var(--color-primary-dark)
}

.access-route {
  margin-top: auto;
  border-top: 1px solid var(--color-border);
  padding-top: 30px
}

.access-route h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-primary-dark)
}

.access-route-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px
}

.access-item {
  background-color: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 18px 15px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease
}

.access-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px)
}

.access-item p {
  margin-bottom: 0;
  line-height: 1.6
}

.route-line {
  font-weight: 500;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  margin-bottom: 2px;
  display: block
}

.route-station {
  font-weight: 700;
  color: var(--color-primary-dark);
  font-size: 1.05rem;
  margin-bottom: 5px;
  display: block
}

.route-detail {
  font-size: 0.95rem;
  color: var(--color-text-secondary)
}

.route-exit {
  font-weight: bold;
  color: var(--color-route-highlight)
}

.route-time {
  font-weight: bold;
  color: var(--color-route-highlight)
}

.limited_release {
  padding: 104px 0;
  background-color: #1A183E;
  color: #fff
}

.limited_release ul,
.limited_release ul li {
  margin-bottom: 0
}

.limited_release .ttl {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8
}

.limited_release .content:not(:last-child) {
  margin-bottom: 1.5em
}

.limited_release .item {
  font-size: 1rem;
  line-height: 1.8
}

.limited_release .item span {
  display: block
}

.limited_release .item a {
  transition: opacity 0.3s ease;
  color: #fff
}

.limited_release .item a:hover {
  opacity: 0.8
}

.footer {
  padding: 60px 0 30px
}

.footer .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start
}

.navi__block {
  flex-grow: 1
}

.f_nav {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center
}

.f_nav li {
  margin-bottom: 15px;
  min-width: 150px
}

.f_nav p {
  font-weight: 700;
  color: var(--color-text-on-dark);
  margin-bottom: 12px;
  font-size: 1rem
}

.f_nav a {
  display: block;
  color: var(--color-text-on-dark-secondary);
  font-size: 0.9rem;
  margin-bottom: 8px
}

.f_nav a:not(.child) {
  font-weight: 700;
  color: #fff
}

.f_nav a:hover {
  color: var(--color-text-on-dark);
  text-decoration: underline
}

.f_nav a.child {
  padding-left: 15px;
  position: relative
}

.f_nav_sp {
  display: none
}

.sns__wrap {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  justify-content: flex-start;
  flex-basis: 100%
}

.sns__wrap a {
  color: var(--color-text-on-dark-secondary);
  transition: color 0.3s ease
}

.sns__wrap a:hover {
  color: var(--color-accent-gold)
}

.sns__wrap i {
  font-size: 1.8rem
}

.privacy__wrap {
  margin-top: 40px;
  text-align: center;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px
}

.privacypolicy {
  font-size: 0.85rem;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 10px
}

.privacypolicy a {
  color: var(--color-text-on-dark-secondary)
}

.privacypolicy a:hover {
  color: var(--color-text-on-dark)
}

.privacypolicy p {
  margin: 0;
  color: var(--color-text-on-dark-secondary)
}

.legal-placeholder-inline {
  font-size: 0.8rem;
  color: var(--color-text-light-gray);
  padding: 2px 5px;
  border: 1px dashed var(--color-text-light-gray);
  border-radius: var(--border-radius-sm);
  margin-left: 10px
}

.copyright {
  font-size: 0.8rem;
  color: var(--color-text-light-gray)
}

.page_top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease
}

.page_top.visible {
  opacity: 1;
  visibility: visible
}

.page_top a {
  display: block;
  width: 50px;
  height: 50px;
  background-color: rgba(26, 24, 62, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: background-color 0.3s ease;
  color: var(--color-text-on-dark)
}

.page_top a:hover {
  background-color: var(--color-primary-dark)
}

.page_top a i {
  font-size: 1.3rem
}

.f_nav .child_wrap {
  display: flex
}

.f_nav a.child {
  padding: 0px 15px;
  display: block
}

@media (max-width:1100px) {
  .clinic-image-placeholder {
    height: 130px
  }
}

@media (max-width:992px) {
  :root {
    --header-height: 70px
  }

  .logo {
    display: block
  }

  .header-wrap {
    justify-content: space-between
  }

  .section-padding {
    padding: 70px 0
  }

  h1.page_title {
    font-size: 2.6rem
  }

  h2.page_title_sub {
    font-size: 2.1rem
  }

  h2.section_m_title {
    font-size: 2.1rem
  }

  .strength-list {
    grid-template-columns: 1fr
  }

  .strength-item .lead {
    height: auto
  }

  .strength-item .img {
    width: 80%;
    margin-left: auto;
    margin-right: auto
  }

  .strength-item .img img {
    width: 100%
  }

  .about-feature-grid {
    grid-template-columns: 1fr
  }

  .doctor-profile-block {
    flex-direction: column;
    align-items: center;
    text-align: center
  }

  .doctor-profile-block .doctor-photo-placeholder {
    margin-bottom: 15px
  }

  .flow-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 25px;
    padding: 0 15px;
    justify-items: center
  }

  .step-item::after {
    display: none
  }

  .footer .wrap {
    flex-direction: column;
    align-items: center
  }

  .navi__block {
    margin-top: 30px;
    width: 100%
  }

  .f_nav {
    justify-content: center
  }

  .sns__wrap {
    justify-content: center;
    margin-top: 30px
  }

  .privacy__wrap {
    margin-top: 30px
  }

  .global-nav {
    display: none
  }

  .drawer_menu {
    display: block
  }

  .footer-index-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .clinic-info-card {
    padding: 20px 15px
  }

  .clinic-image-placeholder {
    height: 120px;
    margin-bottom: 20px
  }

  .clinic-access-title {
    font-size: 1.2rem
  }

  .clinic-access-title span {
    font-size: 0.8rem;
    margin-bottom: 20px
  }

  .clinic-info-block .clinic-name {
    font-size: 1.3rem
  }

  .clinic-info-block .address {
    font-size: 0.95rem
  }

  .info-list dd {
    font-size: 0.95rem
  }

  .info-list dt {
    font-size: 0.85rem
  }

  .full-width-button {
    font-size: 1rem !important;
    padding: 12px 15px !important
  }

  .access-route-items {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px
  }

  .access-item {
    padding: 15px
  }

  .access-route h5 {
    font-size: 1.05rem
  }

  .limited_release {
    padding: 80px 0
  }
}

@media (max-width:768px) {
  :root {
    --header-height: 65px
  }

  body {
    padding-top: var(--header-height);
    line-height: 1.65
  }

  .wrap {
    padding: 0 15px
  }

  .section-padding {
    padding: 60px 0
  }

  .nav__wrap {
    display: none
  }

  .drawer_menu {
    display: block
  }

  h1.page_title {
    font-size: 2.1rem;
    line-height: 1.3
  }

  h2.page_title_sub {
    font-size: 1.8rem
  }

  h2.section_m_title {
    font-size: 1.9rem
  }

  .section_m_title__block {
    margin-bottom: 40px
  }

  h3.category-title {
    font-size: 1.7rem;
    display: block
  }

  h3.card-title {
    font-size: 1.5rem
  }

  h4 {
    font-size: 1.3rem
  }

  h5 {
    font-size: 1.1rem
  }

  p {
    font-size: 0.95rem
  }

  .hero {
    height: auto;
    min-height: 450px;
    padding: 80px 0
  }

  .hero-content {
    padding-top: 0
  }

  .hero-buttons .button {
    margin: 8px 5px;
    font-size: 0.9rem
  }

  .large-button {
    font-size: 1rem;
    padding: 12px 25px
  }

  .problems-grid {
    grid-template-columns: 1fr;
    gap: 25px
  }

  .problem-card.card-item {
    padding: 30px 25px
  }

  .learn-more.button-like {
    padding: 8px 16px;
    font-size: 0.9rem
  }

  .card-icon-placeholder {
    width: 60px;
    height: 60px;
    font-size: 1.8rem
  }

  .treatment-details {
    grid-template-columns: 1fr;
    gap: 30px
  }

  .casephoto__detail-photo {
    gap: 15px
  }

  .js-attention-info-ttl {
    font-size: 1.1rem
  }

  .js-attention-info-text {
    font-size: 0.85rem
  }

  .sp-only {
    display: inline
  }

  .flow-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
    padding: 0 10px;
    justify-items: center
  }

  .step-item:nth-child(odd):not(:last-child):not(:nth-last-child(2))::after {
    width: calc(100% + 20px);
    left: calc(50% + 10px)
  }

  .f_nav {
    display: none
  }

  .f_nav_sp {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    justify-content: center
  }

  .f_nav_sp li {
    margin-bottom: 10px
  }

  .f_nav_sp p {
    font-weight: 700;
    color: var(--color-text-on-dark);
    margin-bottom: 8px
  }

  .f_nav_sp a {
    color: var(--color-text-on-dark-secondary);
    font-size: 0.9rem
  }

  .f_nav_sp a:not(.child) {
    font-weight: 700;
    color: var(--color-text-on-dark);
    padding: 4px;
    display: block
  }

  .pc-only {
    display: none
  }

  .sp-only {
    display: inline
  }

  .clinic-info-block .address {
    font-size: 0.9rem
  }

  .info-list dd {
    font-size: 0.9rem
  }

  .info-list dt {
    font-size: 0.85rem
  }

  .full-width-button {
    font-size: 0.95rem !important;
    padding: 12px 15px !important
  }

  .access-route h5 {
    font-size: 1rem
  }

  .access-route-items {
    gap: 10px;
    grid-template-columns: 1fr
  }

  .access-item .route-name {
    font-size: 0.95rem
  }

  .access-item .route-detail {
    font-size: 0.9rem
  }

  .strength-item span.pr-example {
    padding: 10px 12px 10px 35px
  }

  .strength-item span.pr-example::before {
    left: 10px;
    font-size: 1.1rem
  }

  .flow-steps .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem
  }

  .flow-steps .step-title {
    font-size: 1.15rem
  }

  #contact p.lead.contact-lead .highlight-phrase {
    font-size: 1.2em
  }

  .about-feature-grid {
    grid-template-columns: 1fr
  }

  .advanced-care-details {
    grid-template-columns: 1fr
  }

  .about-feature-points-container {
    max-width: 100%
  }

  .about-feature-point-item {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left
  }

  .page_top {
    bottom: 20px;
    right: 20px
  }

  .page_top a {
    width: 45px;
    height: 45px
  }

  .page_top a i {
    font-size: 1.1rem
  }

  .f_nav_sp .child_wrap {
    display: flex
  }

  .f_nav_sp a.child {
    padding: 4px 15px;
    display: block
  }
}

@media (max-width:576px) {
  .drawer_menu {
    position: fixed;
    top: 10px;
    right: 15px
  }

  .logo img {
    height: 25px
  }

  .hero {
    padding: 20px 0 35px;
    min-height: 373px
  }

  .header-wrap {
    justify-content: center
  }

  .page_mv {
    background-image: url(../images/homme_care/mv_sp.webp)
  }

  .hero-overlay {
    background: linear-gradient(to top, rgba(26, 24, 62, 0.6), rgba(26, 24, 62, 0.85));
    opacity: 0.3
  }

  h1.page_title {
    font-size: 1.7rem;
    margin-bottom: 0.8rem;
    line-height: calc(40 / 26)
  }

  h2.page_title_sub {
    font-size: 1.2rem;
    line-height: calc(30 / 18)
  }

  .section_m_title_en {
    font-size: 1rem
  }

  h2.section_m_title {
    font-size: 2rem
  }

  .section-padding {
    padding: 48px 0
  }

  .section_m_title__block {
    margin-bottom: 16px
  }

  .strength-item .img {
    width: 100%
  }

  .problems-grid {
    margin-top: 16px;
    gap: 10px
  }

  .problem-card.card-item {
    padding: 36px 31px
  }

  .problem-details {
    margin-bottom: 50px
  }

  .about-feature-points-container {
    margin: 0 0 16px
  }

  .advanced-care-title {
    font-size: 1.6rem
  }

  .flow-steps {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 0 10px;
    justify-items: center
  }

  .step-item::after {
    display: none
  }

  .about-feature-point-item {
    padding: 12px 15px
  }

  .about-feature-point-item span {
    font-size: 1rem
  }

  .advanced-care-details {
    gap: 20px
  }

  .point-icon i {
    font-size: 2rem
  }

  .point-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0
  }

  .point-text p.pc-only {
    display: none
  }

  .detail-point {
    background-color: transparent;
    padding: 18px 0;
    gap: 12px 5px;
    align-items: center;
    flex-wrap: wrap
  }

  .detail-point p {
    color: #fff;
    font-size: 0.9rem
  }

  .dark-bg p.text-on-dark-primary {
    font-size: 0.75rem;
    line-height: calc(27 / 12)
  }

  h3.sub-section-title {
    font-size: 1.5rem;
    line-height: calc(40 / 24)
  }

  .about-advanced-care {
    margin-bottom: 35px
  }

  .strength-section {
    margin-top: 35px
  }

  h3.category-title {
    margin-bottom: 16px
  }

  .treatment-block h4 {
    font-size: 1.5rem
  }

  .treatment-block.card-item {
    padding: 15px 15px 35px
  }

  .casephoto__detail-photo {
    padding: 0 32px
  }

  .illustration-placeholder {
    margin-top: 22px
  }

  .treatment-specific-info-alt .info-list-alt li {
    padding-left: 0
  }

  .treatment-specific-info-alt .info-list-alt li span {
    display: block;
    width: fit-content;
    margin-bottom: 8px;
    font-weight: 700;
    color: #555555;
    border-bottom: 1px solid #555555
  }

  .doctor-profile-block .doctor-name-title {
    justify-content: center;
    margin-bottom: 15px;
    gap: 24px
  }

  .price-table-simple th,
  .price-table-simple td {
    font-size: 0.85rem
  }

  .price-table-simple th,
  .price-table-simple td small {
    font-size: 0.65rem
  }

  .treatment-details {
    margin-bottom: 0
  }

  .doctor-profile-block {
    gap: 0
  }

  .detail-item .illustration-placeholder_full-width {
    padding: 25px
  }

  .contact h2.section_m_title {
    font-size: 1.8rem
  }

  #contact p.lead.contact-lead .highlight-phrase {
    padding: 14px 52px;
    line-height: calc(20 / 15)
  }

  .contact .btn_contact a {
    background-color: var(--color-light-gold);
    color: #34374E
  }

  .clinic-image-placeholder {
    margin-bottom: 54px
  }

  .access-route-items {
    grid-template-columns: 1fr 1fr;
    gap: 15px 5px
  }

  .access-item .route-detail {
    font-size: 0.7rem
  }

  .route-line {
    font-size: 0.8rem
  }

  .route-station {
    font-size: 1rem
  }

  .dark-bg ul li {
    text-align: left
  }

  .f_nav_sp a:not(.child) {
    display: block
  }

  .f_nav_sp {
    gap: 0;
    flex-direction: column;
    max-width: 300px
  }

  .limited_release {
    padding: 32px 0
  }

  .limited_release .ttl {
    font-size: 9px;
    margin-bottom: 8px
  }

  .limited_release .item {
    font-size: 9px
  }
}

/*# sourceMappingURL=data:application/json,%7B%22version%22%3A3%2C%22sourceRoot%22%3A%22https%3A%2F%2Fbiancaglobal.ctag-dev12.xyz%2F%22%2C%22sources%22%3A%5B%22wp-content%2Fthemes%2Foriginal%2Fassets%2Fscss%2Fhomme_care.scss%22%5D%2C%22names%22%3A%5B%5D%2C%22mappings%22%3A%22GACA%2CqBAAA%2CwCAAA%2CCAOA%2CKAAA%2CqCAAA%2CCAIA%2CKAAA%2C6PAAA%2CCAWA%2CMAAA%2CwsBAAA%2CCA8BA%2CMAAA%2C6CAAA%2CCAKA%2CiBAAA%2CcAAA%2CCAGA%2CSAAA%2CoFAAA%2CCAIA%2CUAAA%2C%2BCAAA%2CCAGA%2CaAAA%2CiBAAA%2CCAGA%2COAAA%2CeAAA%2CCAGA%2COAAA%2CeAAA%2CCAGA%2CMAAA%2C0BAAA%2CCAGA%2CSAAA%2CcAAA%2CCAGA%2CSAAA%2CYAAA%2CCAGA%2CsBAAA%2CyCAAA%2CCAGA%2CgBAAA%2C8CAAA%2CCAMA%2CkBAAA%2CkHAAA%2CCAYA%2CcAAA%2CmGAAA%2CCAOA%2CkBAAA%2CgHAAA%2CCAOA%2CwBAAA%2CuIAAA%2CCAQA%2CIAAA%2CcAAA%2CCAKA%2CwBAAA%2CoCAAA%2CCAIA%2CoBAAA%2CwHAAA%2CCAOA%2CoBAAA%2CmKAAA%2CCASA%2CmBAAA%2C8FAAA%2CCAOA%2C0BAAA%2C8HAAA%2CCASA%2C4BAAA%2C%2BBAAA%2CCAGA%2CmCAAA%2C0CAAA%2CCAGA%2C6BAAA%2C8BAAA%2CCAGA%2C6BAAA%2C8BAAA%2CCAIA%2CkBAAA%2CqIAAA%2CCAQA%2C%2BBAAA%2C%2BMAAA%2CCAaA%2CqBAAA%2CmFAAA%2CCAMA%2CcAAA%2CqCAAA%2CCAIA%2CGAAA%2CmCAAA%2CCAIA%2CGAAA%2CsDAAA%2CCAKA%2CQAAA%2CqPAAA%2CCAaA%2CEAAA%2CqEAAA%2CCAKA%2COAAA%2CgCAAA%2CCAIA%2CgCAAA%2CyCAAA%2CCAGA%2CaAAA%2CeAAA%2CCAGA%2COAAA%2C%2BCAAA%2CCAIA%2CgBAAA%2C%2BBAAA%2CCAGA%2CEAAA%2CkGAAA%2CCAKA%2CQAAA%2C0CAAA%2CCAKA%2CGAAA%2CiDAAA%2CCAKA%2CMAAA%2CqDAAA%2CCAKA%2CcAAA%2CYAAA%2CCAGA%2C6BAAA%2CYAAA%2CCAGA%2CeAAA%2CyCAAA%2CCAKA%2CQAAA%2C0QAAA%2CCAcA%2CaAAA%2CiEAAA%2CCAMA%2CMAAA%2CYAAA%2CCAGA%2CQAAA%2CaAAA%2CCAGA%2CUAAA%2CyBAAA%2CCAMA%2CWAAA%2C6DAAA%2CCAMA%2CYAAA%2CmFAAA%2CCAQA%2CeAAA%2CgFAAA%2CCAOA%2C2BAAA%2CaAAA%2CCAIA%2CcAAA%2C%2BOAAA%2CCAcA%2CkCAAA%2CmCAAA%2CCAKA%2CoBAAA%2CiIAAA%2CCAUA%2CyCAAA%2C%2BBAAA%2CCAIA%2CyDAAA%2CSAAA%2CCAIA%2CqBAAA%2CwIAAA%2CCAUA%2CiGAAA%2CUAAA%2CCAKA%2C6BAAA%2CwTAAA%2CCAcA%2CmCAAA%2CoFAAA%2CCAKA%2CoCAAA%2CYAAA%2CCAGA%2CqCAAA%2CuBAAA%2CCAIA%2C0BAAA%2C4BAAA%2CCAMA%2CaAAA%2CYAAA%2CCAGA%2CoBAAA%2CoKAAA%2CCAaA%2C0FAAA%2CuJAAA%2CCAYA%2CyBAAA%2CwCAAA%2CCAIA%2CiCAAA%2CQAAA%2CCAGA%2CgCAAA%2COAAA%2CCAGA%2CwCAAA%2C6BAAA%2CCAIA%2CuCAAA%2C8BAAA%2CCAIA%2CwBAAA%2C%2BNAAA%2CCAcA%2C6BAAA%2CuBAAA%2CCAIA%2CsBAAA%2CeAAA%2CCAGA%2CiBAAA%2CkCAAA%2CCAKA%2C2CAAA%2CgGAAA%2CCAKA%2C4CAAA%2CmGAAA%2CCAOA%2CmBAAA%2C2FAAA%2CCAOA%2C8BAAA%2C4PAAA%2CCAcA%2CSAAA%2C8PAAA%2CCAaA%2CcAAA%2CmIAAA%2CCASA%2CcAAA%2CwDAAA%2CCAMA%2CWAAA%2CkBAAA%2CCAKA%2CQAAA%2CuNAAA%2CCAYA%2CcAAA%2CsDAAA%2CCAIA%2CgBAAA%2CiHAAA%2CCAKA%2CsBAAA%2C6JAAA%2CCAMA%2CkBAAA%2CmGAAA%2CCAKA%2CwBAAA%2CiKAAA%2CCAMA%2CsBAAA%2CeAAA%2CCAGA%2CcAAA%2CkCAAA%2CCAIA%2CeAAA%2CoIAAA%2CCAMA%2C4CAAA%2CgBAAA%2CCAGA%2C2BAAA%2C%2BGAAA%2CCAOA%2CeAAA%2CgGAAA%2CCAMA%2CwBAAA%2C4YAAA%2CCAgBE%2CqCAAA%2CuDAAA%2CCAGA%2CqCAAA%2CuDAAA%2CCAGA%2CqCAAA%2CuDAAA%2CCAGA%2C%2BBAAA%2C4MAAA%2CCAYF%2C8BAAA%2CsDAAA%2CCAIA%2CuBAAA%2CqPAAA%2CCAaA%2C4BAAA%2C8CAAA%2CCAKA%2CiBAAA%2C6CAAA%2CCAKA%2CuCAAA%2CmFAAA%2CCAOA%2CwDAAA%2C0BAAA%2CCAKA%2CgBAAA%2C%2BDAAA%2CCAKA%2CkDAAA%2C2EAAA%2CCAOA%2C0BAAA%2CcAAA%2CCAGA%2CsCAAA%2C4dAAA%2CCAkBA%2C4CAAA%2CmMAAA%2CCASA%2CoBAAA%2CmGAAA%2CCAMA%2CoBAAA%2CqNAAA%2CCAUA%2CoBAAA%2CkEAAA%2CCAKA%2CqBAAA%2CmFAAA%2CCAMA%2CsBAAA%2C8FAAA%2CCAMA%2CoCAAA%2C%2BCAAA%2CCAIA%2C0BAAA%2CmMAAA%2CCAUA%2CaAAA%2CiBAAA%2CCAGA%2CgBAAA%2CkEAAA%2CCAKA%2CeAAA%2CgCAAA%2CCAIA%2CiBAAA%2C%2BCAAA%2CCAKA%2CgCAAA%2CuHAAA%2CCAUA%2C0BAAA%2C0QAAA%2CCAUA%2CgCAAA%2C%2BEAAA%2CCAIA%2C0CAAA%2C4GAAA%2CCAQA%2C%2BBAAA%2CgFAAA%2CCAOA%2CwBAAA%2C0BAAA%2CCAIA%2C0BAAA%2C0FAAA%2CCAOA%2C0BAAA%2C8BAAA%2CCAIA%2CgBAAA%2CaAAA%2CCACA%2CeAAA%2CaAAA%2CCAIA%2CqBAAA%2C%2BPAAA%2CCAQA%2CuBAAA%2C6BAAA%2CCAIA%2C0BAAA%2CkEAAA%2CCAKA%2CqBAAA%2CmGAAA%2CCAMA%2CuBAAA%2C%2BDAAA%2CCAMA%2CyBACI%2CuBAAA%2CoCAAA%2CCAAA%2CCAIJ%2CcAAA%2C2LAAA%2CCAWA%2CcAAA%2C2FAAA%2CCAOA%2CYAAA%2CWAAA%2CCAGA%2CeAAA%2CmEAAA%2CCAKA%2CcAAA%2CyGAAA%2CCASA%2CmDAAA%2C%2BGAAA%2CCAKA%2CyDAAA%2C4HAAA%2CCAQA%2CkBAAA%2CeAAA%2CCAGA%2CeAAA%2CmHAAA%2CCAQA%2CeAAA%2CwNAAA%2CCAQA%2CqBAAA%2C0CAAA%2CCAGA%2CiBAAA%2CaAAA%2CCAGA%2CoBAAA%2CgGAAA%2CCAOA%2CuBAAA%2CmFAAA%2CCAMA%2CqBAAA%2CoGAAA%2CCAOA%2CsBAAA%2C8BAAA%2CCAIA%2CqBAAA%2CqDAAA%2CCAKA%2C%2BBAAA%2C2TAAA%2CCAaA%2CuCAAA%2C6HAAA%2CCAWA%2C2BAAA%2CkNAAA%2CCAUA%2C4DAAA%2CeAAA%2CCAGA%2CoBAAA%2CkBAAA%2CCAGA%2CiCAAA%2CeAAA%2CCAIA%2CoBAAA%2CmDAAA%2CCAKA%2CmBAAA%2CkCAAA%2CCAIA%2CmBAAA%2CmGAAA%2CCAMA%2CoCAAA%2CmIAAA%2CCASA%2C8CAAA%2CqTAAA%2CCAgBA%2CeAAA%2CkBAAA%2CCAGA%2C8BAAA%2CiPAAA%2CCAcA%2C0BAAA%2CmFAAA%2CCAOA%2C4CAAA%2CiCAAA%2CCAIA%2CkDAAA%2CiCAAA%2CCAIA%2CkBAAA%2CgBAAA%2CCAMA%2CsBAAA%2CuKAAA%2CCASA%2CgDAAA%2CoKAAA%2CCAYA%2CsCAAA%2CWAAA%2CCAGA%2CyCAAA%2CkFAAA%2CCAMA%2CwCAAA%2CmFAAA%2CCAMA%2C0CAAA%2CkGAAA%2CCASA%2CkBAAA%2CoMAAA%2CCAaA%2C%2BBAAA%2CmGAAA%2CCAOA%2CyBAAA%2CgHAAA%2CCAWA%2C6BAAA%2C4CAAA%2CCAMA%2CqCAAA%2CkFAAA%2CCAMA%2CkCAAA%2CoGAAA%2CCAOA%2C2BAAA%2CkHAAA%2CCAQA%2C4CAAA%2CYAAA%2CCAGA%2CgCAAA%2CgCAAA%2CCAIA%2CkCAAA%2CgKAAA%2CCAQA%2CsCAAA%2CiHAAA%2CCASA%2C%2BEAAA%2CWAAA%2CCAIA%2CoBAAA%2C%2BCAAA%2CCAIA%2CoBAAA%2CmCAAA%2CCAEE%2CqCAAA%2CkBAAA%2CCAIF%2C4BAAA%2CiSAAA%2CCAiBA%2CmBAAA%2CkUAAA%2CCAmBA%2C6BAAA%2C%2BCAAA%2CCAKA%2CuBAAA%2CkFAAA%2CCAMA%2CwBAAA%2CmFAAA%2CCAOA%2CiBAAA%2C%2BBAAA%2CCAMA%2C0BAAA%2C0GAAA%2CCAMA%2CoBAAA%2CyDAAA%2CCAKA%2C8CAAA%2CiIAAA%2CCAQA%2C6BAAA%2C%2BFAAA%2CCAKA%2CqCAAA%2CkBAAA%2CCAGA%2CmCAAA%2CyDAAA%2CCAKA%2CkCAAA%2CmFAAA%2CCAQA%2C6BAAA%2CeAAA%2CCAGA%2C4CAAA%2CkKAAA%2CCASA%2CwDAAA%2CYAAA%2CCAGA%2CwCAAA%2CwGAAA%2CCAOA%2C4CAAA%2CoDAAA%2CCAKA%2C%2BCAAA%2CyHAAA%2CCAQA%2CuDAAA%2C2EAAA%2CCASA%2CwCAAA%2CwEAAA%2CCAMA%2C%2BCAAA%2CwQAAA%2CCAcA%2CqDAAA%2CoCAAA%2CCAGA%2C%2BDAAA%2C6EAAA%2CCAQA%2C8CAAA%2CoKAAA%2CCASA%2C%2BDAAA%2CoDAAA%2CCAMA%2CqEAAA%2CsDAAA%2CCAMA%2CoCAAA%2CsFAAA%2CCAQA%2CuCAAA%2CsBAAA%2CCAKA%2CmCAAA%2C6CAAA%2CCAKA%2C2DAAA%2CwBAAA%2CCAMA%2CsBAAA%2CkBAAA%2CCAGA%2CmCAAA%2CeAAA%2CCAGA%2CwBAAA%2CyJAAA%2CCAQA%2CsBAAA%2CmHAAA%2CCAQA%2CwDAAA%2CYAAA%2CCAGA%2CkBAAA%2CuFAAA%2CCAQA%2CYAAA%2C%2BJAAA%2CCAUA%2CWAAA%2CmHAAA%2CCASA%2CyBAAA%2CyYAAA%2CCAiBA%2CuBAAA%2C6OAAA%2CCAMA%2C%2BBAAA%2C0HAAA%2CCAKA%2CwBAAA%2CwHAAA%2CCAQA%2C%2BBAAA%2C2JAAA%2CCAWA%2CsBAAA%2C%2BBAAA%2CCAGA%2C6BAAA%2CyCAAA%2CCAGA%2CWAAA%2CkEAAA%2CCAMA%2CyBACE%2CsCAAA%2CyKAAA%2CCAWA%2CgDAAA%2CwBAAA%2CCAAA%2CCAQF%2CyBAAA%2C%2BNAAA%2CCAaA%2CYAAA%2CqFAAA%2CCAQA%2CUAAA%2CkEAAA%2CCAMA%2CWAAA%2CuLAAA%2CCAQA%2CkBAAA%2CmKAAA%2CCASA%2CwBAAA%2CwBAAA%2CCAGA%2CiBAAA%2CuLAAA%2CCASA%2CwBAAA%2C2HAAA%2CCAQA%2COAAA%2CqHAAA%2CCASA%2CUAAA%2CsDAAA%2CCAMA%2CmCAAA%2C2HAAA%2CCAQA%2CkBAAA%2CoCAAA%2CCAMA%2CiBAAA%2CoCAAA%2CCAMA%2C8BAAA%2CyCAAA%2CCAIA%2C4BAAA%2CYAAA%2CCAGA%2CwCAAA%2CsDAAA%2CCASA%2CiCAAA%2CkBAAA%2CCAGA%2C6BAAA%2CkFAAA%2CCAOA%2C%2BCAAA%2CuXAAA%2CCAcA%2C6GAAA%2CoHAAA%2CCAUA%2CuDAAA%2C0CAAA%2CCAKA%2CsDAAA%2C8CAAA%2CCAKA%2CwBAAA%2CoBAAA%2CCAKA%2CcAAA%2CoFAAA%2CCAIA%2CmBAAA%2C8EAAA%2CCAOA%2CkBAAA%2C4NAAA%2CCAUA%2C0BAAA%2CmNAAA%2CCAYE%2CmCAAA%2CWAAA%2CCAGA%2C8BAAA%2CuCAAA%2CCAMF%2CqBAAA%2CyJAAA%2CCASA%2C0BAAA%2C%2BKAAA%2CCAWA%2CmBAAA%2CmHAAA%2CCAQA%2CgCAAA%2CiHAAA%2CCAOA%2C4BAAA%2CiGAAA%2CCAOA%2CyCAAA%2C%2BBAAA%2CCAKA%2CWAAA%2CkFAAA%2CCAOA%2C6CAAA%2CwEAAA%2CCAMA%2CcAAA%2CoHAAA%2CCAQA%2CcAAA%2CwFAAA%2CCAQA%2CyBAAA%2CiFAAA%2CCAOA%2CqBAAA%2C0BAAA%2CCAIA%2CwBAAA%2CoEAAA%2CCAKA%2CmBAAA%2CiSAAA%2CCAcA%2CqBAAA%2CyDAAA%2CCAKA%2CwBAAA%2C0GAAA%2CCAQA%2C0BAAA%2C0FAAA%2CCAKA%2CgCAAA%2CgHAAA%2CCAKA%2C8BAAA%2C%2BGAAA%2CCAKA%2CoCAAA%2CgHAAA%2CCAOA%2CcAAA%2CyEAAA%2CCAKA%2CiBAAA%2CmFAAA%2CCAMA%2CoBAAA%2CgFAAA%2CCAKA%2CaAAA%2CmNAAA%2CCASA%2CmBAAA%2CsDAAA%2CCAIA%2CeAAA%2C%2BBAAA%2CCAIA%2CYAAA%2CkGAAA%2CCAOA%2CeAAA%2CiGAAA%2CCAOA%2CcAAA%2CmDAAA%2CCAIA%2CYAAA%2CmDAAA%2CCAIA%2CYAAA%2CmDAAA%2CCAMA%2CiBAAA%2CmDAAA%2CCAIE%2C2CAAA%2CeAAA%2CCAIF%2CsBAAA%2CmHAAA%2CCAQA%2C2CAAA%2CmBAAA%2CCAGA%2CuBAAA%2C8BAAA%2CCAIA%2C4BAAA%2CaAAA%2CCAGA%2CyBAAA%2CuCAAA%2CCAIA%2C%2BBAAA%2CWAAA%2CCAOA%2CQAAA%2CmBAAA%2CCAGA%2CcAAA%2CyFAAA%2CCAOA%2CaAAA%2CWAAA%2CCAGA%2COAAA%2C8FAAA%2CCASA%2CUAAA%2CkCAAA%2CCAIA%2CSAAA%2CiFAAA%2CCAMA%2CSAAA%2C0FAAA%2CCAKE%2CqBAAA%2C0BAAA%2CCAKF%2CeAAA%2CyDAAA%2CCAIA%2CeAAA%2CmCAAA%2CCAIA%2CUAAA%2CYAAA%2CCAIA%2CWAAA%2CgFAAA%2CCAOA%2CaAAA%2CoEAAA%2CCAIA%2CmBAAA%2C8BAAA%2CCAGA%2CaAAA%2CgBAAA%2CCAKA%2CeAAA%2C2GAAA%2CCAOA%2CeAAA%2CuHAAA%2CCASA%2CiBAAA%2CyCAAA%2CCAGA%2CuBAAA%2C%2BBAAA%2CCAGA%2CiBAAA%2CkDAAA%2CCAIA%2C0BAAA%2CyKAAA%2CCAQA%2CWAAA%2CmDAAA%2CCAKA%2CUAAA%2CgIAAA%2CCASA%2CkBAAA%2C4BAAA%2CCAIA%2CYAAA%2CsPAAA%2CCAaA%2CkBAAA%2C0CAAA%2CCAGA%2CcAAA%2CgBAAA%2CCAGA%2CmBAAA%2CYAAA%2CCAGA%2CeAAA%2C8BAAA%2CCAOA%2C0BACE%2C0BAAA%2CYAAA%2CCAAA%2CCAKF%2CyBACE%2CMAAA%2CqBAAA%2CCAGA%2CMAAA%2CaAAA%2CCAGA%2CaAAA%2C6BAAA%2CCAGA%2CiBAAA%2CcAAA%2CCAGA%2CcAAA%2CgBAAA%2CCAGA%2CkBAAA%2CgBAAA%2CCAGA%2CmBAAA%2CgBAAA%2CCAGA%2CeAAA%2CyBAAA%2CCAGA%2CqBAAA%2CWAAA%2CCAGA%2CoBAAA%2C4CAAA%2CCAIE%2CwBAAA%2CUAAA%2CCAIF%2CoBAAA%2CyBAAA%2CCAGA%2CsBAAA%2C0DAAA%2CCAKA%2CgDAAA%2CkBAAA%2CCAIA%2CYAAA%2CsFAAA%2CCAMA%2CkBAAA%2CYAAA%2CCAmBA%2CcAAA%2CwCAAA%2CCAIA%2CaAAA%2C0BAAA%2CCAIA%2COAAA%2CsBAAA%2CCAGA%2CWAAA%2CsCAAA%2CCAIA%2CeAAA%2CeAAA%2CCAIA%2CYAAA%2CYAAA%2CCAGA%2CaAAA%2CaAAA%2CCAIA%2CmBAAA%2CkCAAA%2CCAKA%2CkBAAA%2CiBAAA%2CCAGA%2C0BAAA%2C%2BBAAA%2CCAIA%2CqBAAA%2CgBAAA%2CCAGA%2C0BAAA%2CmCAAA%2CCAIA%2CgCAAA%2CgBAAA%2CCAGA%2C4BAAA%2CiBAAA%2CCAGA%2CcAAA%2CiBAAA%2CCAGA%2CcAAA%2CiBAAA%2CCAGA%2CmBAAA%2CsDAAA%2CCAIA%2CoBAAA%2CmEAAA%2CCAIA%2CaAAA%2CYAAA%2CCAGA%2CiBAAA%2CiBAAA%2CCAGA%2CiBAAA%2CcAAA%2CCAAA%2CCAKF%2CyBACE%2CMAAA%2CqBAAA%2CCAGA%2CKAAA%2CiDAAA%2CCAIA%2CMAAA%2CcAAA%2CCAGA%2CiBAAA%2CcAAA%2CCAIA%2CWAAA%2CYAAA%2CCAGA%2CaAAA%2CaAAA%2CCAIA%2CcAAA%2CgCAAA%2CCAIA%2CkBAAA%2CgBAAA%2CCAGA%2CmBAAA%2CgBAAA%2CCAGA%2CwBAAA%2CkBAAA%2CCAGA%2CkBAAA%2C8BAAA%2CCAIA%2CcAAA%2CgBAAA%2CCAGA%2CGAAA%2CgBAAA%2CCAGA%2CGAAA%2CgBAAA%2CCAGA%2CEAAA%2CiBAAA%2CCAIA%2CMAAA%2C2CAAA%2CCAKA%2CcAAA%2CaAAA%2CCAIA%2CsBAAA%2C%2BBAAA%2CCAIA%2CcAAA%2CgCAAA%2CCAKA%2CeAAA%2CkCAAA%2CCAIA%2CwBAAA%2CiBAAA%2CCAGA%2CwBAAA%2CiCAAA%2CCAIA%2CuBAAA%2CuCAAA%2CCAMA%2CmBAAA%2CkCAAA%2CCAKA%2CyBAAA%2CQAAA%2CCAGA%2CuBAAA%2CgBAAA%2CCAGA%2CwBAAA%2CiBAAA%2CCAGA%2CSAAA%2CcAAA%2CCAIA%2CYAAA%2CsFAAA%2CCAMA%2C0EAAA%2C6CAAA%2CCAKA%2COAAA%2CYAAA%2CCAGA%2CUAAA%2CoFAAA%2CCASA%2CaAAA%2CkBAAA%2CCAGA%2CYAAA%2CiEAAA%2CCAKA%2CYAAA%2C0DAAA%2CCAGE%2CwBAAA%2CyEAAA%2CCAQF%2CSAAA%2CYAAA%2CCAGA%2CSAAA%2CcAAA%2CCAIA%2C4BAAA%2CgBAAA%2CCAGA%2CcAAA%2CgBAAA%2CCAGA%2CcAAA%2CiBAAA%2CCAGA%2CmBAAA%2CyDAAA%2CCAIA%2CiBAAA%2CcAAA%2CCAGA%2CoBAAA%2CkCAAA%2CCAIA%2CyBAAA%2CiBAAA%2CCAGA%2C2BAAA%2CgBAAA%2CCAGE%2C%2BBAAA%2C2BAAA%2CCAGF%2CuCAAA%2C0BAAA%2CCAIA%2CyBAAA%2CuCAAA%2CCAKA%2CwBAAA%2CiBAAA%2CCAGA%2C%2BCAAA%2CeAAA%2CCAGE%2CoBAAA%2CyBAAA%2CCAGA%2CuBAAA%2CyBAAA%2CCAGA%2CgCAAA%2CcAAA%2CCAGA%2C0BAAA%2C6DAAA%2CCAOF%2CUAAA%2CsBAAA%2CCAIA%2CYAAA%2CsBAAA%2CCAIA%2CcAAA%2CgBAAA%2CCAGA%2CsBAAA%2CYAAA%2CCAGA%2CkBAAA%2C8BAAA%2CCAAA%2CCAMF%2CyBACE%2CaAAA%2CkCAAA%2CCAKA%2CUAAA%2CWAAA%2CCAGA%2CMAAA%2CoCAAA%2CCAIA%2CaAAA%2CsBAAA%2CCAGA%2CSAAA%2CkDAAA%2CCAGA%2CcAAA%2C6FAAA%2CCAIA%2CcAAA%2C%2BDAAA%2CCAKA%2CkBAAA%2C0CAAA%2CCAIA%2CoBAAA%2CcAAA%2CCAGA%2CmBAAA%2CcAAA%2CCAGA%2CiBAAA%2CcAAA%2CCAGA%2CwBAAA%2CkBAAA%2CCAGA%2CoBAAA%2CUAAA%2CCAGA%2CeAAA%2CwBAAA%2CCAIA%2CwBAAA%2CiBAAA%2CCAGA%2CiBAAA%2CkBAAA%2CCAGA%2CgCAAA%2CeAAA%2CCAGA%2CqBAAA%2CgBAAA%2CCAGA%2CYAAA%2CsEAAA%2CCAMA%2CkBAAA%2CYAAA%2CCAGA%2C0BAAA%2CiBAAA%2CCAGA%2C%2BBAAA%2CcAAA%2CCAGA%2CuBAAA%2CQAAA%2CCAGA%2CcAAA%2CcAAA%2CCAGA%2CeAAA%2CgCAAA%2CCAKI%2CsBAAA%2CYAAA%2CCAIJ%2CcAAA%2C0FAAA%2CCAOA%2CgBAAA%2C2BAAA%2CCAIA%2CgCAAA%2C2CAAA%2CCAIA%2CqBAAA%2C0CAAA%2CCAIA%2CqBAAA%2CkBAAA%2CCAGA%2CkBAAA%2CeAAA%2CCAGA%2CkBAAA%2CkBAAA%2CCAGA%2CoBAAA%2CgBAAA%2CCAGA%2C2BAAA%2CsBAAA%2CCAGA%2CyBAAA%2CcAAA%2CCAGA%2C0BAAA%2CeAAA%2CCAGA%2C%2BCAAA%2CcAAA%2CCAEE%2CoDAAA%2C%2BGAAA%2CCASF%2CyCAAA%2CkDAAA%2CCAKA%2C8CAAA%2CiBAAA%2CCAGA%2CoDAAA%2CiBAAA%2CCAGA%2CmBAAA%2CeAAA%2CCAGA%2CsBAAA%2CKAAA%2CCAGA%2CkDAAA%2CYAAA%2CCAGA%2C4BAAA%2CgBAAA%2CCAGA%2C%2BCAAA%2C2CAAA%2CCAIA%2CwBAAA%2CsDAAA%2CCAIA%2C0BAAA%2CkBAAA%2CCAGA%2CoBAAA%2C0CAAA%2CCAIA%2C2BAAA%2CgBAAA%2CCAGA%2CYAAA%2CgBAAA%2CCAGA%2CeAAA%2CcAAA%2CCAGA%2CeAAA%2CeAAA%2CCAGA%2CwBAAA%2CaAAA%2CCAGA%2CUAAA%2C2CAAA%2CCAKA%2CiBAAA%2CcAAA%2CCAGA%2CsBAAA%2C%2BBAAA%2CCAIA%2CuBAAA%2CaAAA%2CCAAA%22%7D */