:root {
  --color-primary: #52a2c6;
  --color-primary-light: #dff0f7;
  --color-accent: #ff8b60;
  --color-text-main: #333333;
  --color-text-gray: #555555;
  --color-icon-bg: #f0f7fa;
  --color-border-light: #e4eff5;
  --color-warning-bg: #fff6f2;
  --color-warning-border: #ffcfbb;
  --color-warning-text: #e65c2b;
  --font-family-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
}

body {
  margin: 0;
  font-family: var(--font-family-base);
  color: var(--color-text-main);
  line-height: 1.6;
}

.sp-br {
  display: none;
}

.pc-br {
  display: block;
}

@media screen and (max-width: 767px) {
  .sp-br {
    display: block;
  }

  .pc-br {
    display: none;
  }
}

/* --------------------------------
   Header
-------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #ffffff;
  padding: 15px 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.header__contact {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__tel {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text-gray);
  text-decoration: none;
  transition: opacity 0.3s;
}

.header__tel:hover {
  opacity: 0.7;
}

.header__tel-icon {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.header__tel-number {
  font-size: 22px;
  font-weight: bold;
}

.header__btn {
  background-color: var(--color-accent);
  color: #ffffff;
  text-decoration: none;
  padding: 10px 32px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 15px;
  transition: background-color 0.3s, transform 0.2s;
}

.header__btn:hover {
  background-color: #f77a4d;
  transform: translateY(-2px);
}

/* --------------------------------
   Hero (SAS / Common)
-------------------------------- */
.hero {
  background: linear-gradient(135deg, #e0f2fa 0%, #f4fbfe 100%);
  padding: 60px 20px;
  margin-top: 90px;
}

.hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

.hero__image-wrapper {
  flex: 0 0 42%;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero__image {
  width: 100%;
  height: auto;
  display: block;
}

.hero__image-caption {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #ffffff;
  text-align: right;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.hero__image-clinic {
  margin: 0 0 4px 0;
  font-size: 15px;
  font-weight: 500;
}

.hero__image-name {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
}

.hero__content {
  flex: 1;
}

.hero__label {
  display: inline-block;
  background-color: #d4edf6;
  color: var(--color-primary);
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 24px;
}

.hero__title {
  font-size: 30px;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 30px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.hero__title--highlight {
  color: var(--color-primary);
}

.hero__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.hero__list-item {
  position: relative;
  padding-left: 22px;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.7;
}

.hero__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  background-color: var(--color-primary);
  border-radius: 50%;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero__badge {
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.5);
}

.hero__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent);
  color: #ffffff;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 40px;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0 6px 15px rgba(255, 139, 96, 0.3);
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.hero__cta-btn:hover {
  background-color: #f77a4d;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 139, 96, 0.4);
}

.hero__cta-arrow {
  margin-left: 12px;
  font-weight: bold;
}

/* --------------------------------
   Hero (Obesity Specific)
-------------------------------- */
.hero-obesity {
  background: linear-gradient(135deg, #e9f5fa 0%, #ffffff 100%);
  padding: 80px 20px;
  margin-top: 90px;
}

.hero-obesity__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-obesity__content {
  flex: 1;
}

.hero-obesity__label {
  display: inline-block;
  background-color: #dcedf7;
  color: var(--color-primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 24px;
}

.hero-obesity__title {
  font-size: 32px;
  line-height: 1.4;
  margin: 0 0 20px 0;
  font-weight: bold;
}

.hero-obesity__text {
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 16px 0;
  color: var(--color-text-main);
}

.hero-obesity__text--highlight {
  color: var(--color-primary);
}

.hero-obesity__note {
  font-size: 12px;
  color: var(--color-text-gray);
  margin: 0 0 30px 0;
}

.hero-obesity__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent);
  color: #ffffff;
  text-decoration: none;
  padding: 14px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(255, 139, 96, 0.3);
  transition: transform 0.2s, background-color 0.2s;
}

.hero-obesity__btn:hover {
  background-color: #f77a4d;
  transform: translateY(-2px);
}

.hero-obesity__btn-arrow {
  margin-left: 8px;
}

.hero-obesity__image-wrapper {
  flex: 1;
}

.hero-obesity__image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

/* --------------------------------
   Features
-------------------------------- */
.features {
  padding: 60px 20px;
  background-color: #ffffff;
}

.features__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.features__list {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 20px;
}

.features__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.features__icon {
  width: 80px;
  height: 80px;
  background-color: var(--color-icon-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.features__icon svg {
  width: 40px;
  height: 40px;
  fill: var(--color-primary);
}

.features__title {
  font-size: 15px;
  font-weight: bold;
  margin: 0 0 8px 0;
}

.features__text {
  font-size: 13px;
  color: var(--color-text-gray);
  margin: 0;
}

/* --------------------------------
   Symptoms (SAS Specific)
-------------------------------- */
.symptoms {
  padding: 80px 20px;
  background: linear-gradient(0deg, #e9f4f9 0%, #ffffff 100%);
}

.symptoms__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.symptoms__title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 50px;
  letter-spacing: 0.05em;
}

.symptoms__cards {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.symptoms__card {
  flex: 1;
  background-color: #ffffff;
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.symptoms__card-header {
  margin-bottom: 24px;
}

.symptoms__card-icon {
  width: 64px;
  height: 64px;
  background-color: var(--color-icon-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.symptoms__card-icon svg {
  width: 32px;
  height: 32px;
}

.symptoms__card-title {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}

.symptoms__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.symptoms__list-item {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  font-size: 14.5px;
  line-height: 1.6;
}

.symptoms__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2352a2c6'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.symptoms__warning {
  background-color: var(--color-warning-bg);
  border: 1px solid var(--color-warning-border);
  border-radius: 8px;
  padding: 24px 30px;
}

.symptoms__warning-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-warning-text);
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 12px 0;
}

.symptoms__warning-title svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.symptoms__warning-text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--color-text-main);
}

/* --------------------------------
   Insurance Check (Obesity Specific)
-------------------------------- */
.insurance-check {
  padding: 80px 20px;
  background-color: #f4fbfe;
}

.insurance-check__inner {
  max-width: 900px;
  margin: 0 auto;
}

.insurance-check__box {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.insurance-check__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.insurance-check__icon {
  width: 40px;
  height: 40px;
  background-color: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insurance-check__icon svg {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
}

.insurance-check__title {
  font-size: 22px;
  font-weight: bold;
  margin: 0;
}

.insurance-check__desc {
  text-align: center;
  color: var(--color-text-gray);
  margin: 0 0 30px 0;
  font-size: 14px;
}

.insurance-check__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.insurance-check__item {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  border: 1px solid #e4eff5;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  background-color: #ffffff;
}

.insurance-check__item:hover {
  border-color: var(--color-primary);
}

.insurance-check__item--checked {
  background-color: #f4fbfe;
  border-color: var(--color-primary);
}

.insurance-check__checkbox {
  display: none;
}

.insurance-check__custom-checkbox {
  width: 22px;
  height: 22px;
  border: 1px solid #c0c0c0;
  border-radius: 4px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  transition: all 0.2s;
  flex-shrink: 0;
}

.insurance-check__checkbox:checked + .insurance-check__custom-checkbox {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.insurance-check__checkbox:checked + .insurance-check__custom-checkbox::after {
  content: "";
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-bottom: 2px;
}

.insurance-check__item-icon {
  width: 38px;
  height: 38px;
  background-color: #f0f7fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.insurance-check__item-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-primary);
}

.insurance-check__item-text {
  font-size: 15px;
  font-weight: bold;
  color: var(--color-text-main);
}

.insurance-check__result {
  display: flex;
  align-items: flex-start;
  padding: 20px 24px;
  background-color: #eaf5fa;
  border-radius: 6px;
  border-left: 4px solid var(--color-primary);
  animation: fadeIn 0.3s ease-in-out;
}

/* --------------------------------
   Location
-------------------------------- */
.location {
  padding: 80px 20px;
  background-color: #f4fbfe;
}

.location__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

.location__image-wrapper {
  flex: 1;
}

.location__image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block;
}

.location__content {
  flex: 1;
}

.location__title {
  font-size: 28px;
  font-weight: bold;
  margin: 0 0 20px 0;
  line-height: 1.4;
}

.location__title-highlight {
  color: var(--color-primary);
}

.location__text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-main);
  margin: 0;
}

/* --------------------------------
   Treatment Info (Obesity Specific)
-------------------------------- */
.treatment-info {
  padding: 80px 20px;
  background-color: #ffffff;
}

.treatment-info__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.treatment-info__title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin: 0 0 50px 0;
  letter-spacing: 0.05em;
}

.treatment-info__cards {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

.treatment-info__card {
  flex: 1;
  background-color: #ffffff;
  border: 1px solid var(--color-border-light);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.treatment-info__icon {
  width: 56px;
  height: 56px;
  background-color: var(--color-icon-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.treatment-info__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.treatment-info__card-title {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 16px 0;
}

.treatment-info__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.treatment-info__list-item {
  position: relative;
  padding-left: 14px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-main);
}

.treatment-info__list-item::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-text-main);
}

/* --------------------------------
   Clinic Features
-------------------------------- */
.clinic-features {
  padding: 80px 20px;
  background-color: #ffffff;
}

.clinic-features__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.clinic-features__header {
  text-align: center;
  margin-bottom: 60px;
}

.clinic-features__title {
  font-size: 28px;
  font-weight: bold;
  margin: 0 0 16px 0;
  letter-spacing: 0.05em;
}

.clinic-features__subtitle {
  font-size: 16px;
  color: var(--color-text-gray);
  margin: 0;
}

.clinic-features__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.clinic-features__block {
  display: flex;
  align-items: center;
  gap: 50px;
}

.clinic-features__block--reverse {
  flex-direction: row-reverse;
}

.clinic-features__text-area {
  flex: 1;
}

.clinic-features__tags {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.clinic-features__number {
  background-color: var(--color-primary);
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.clinic-features__icon {
  width: 60px;
  height: 60px;
  background-color: var(--color-icon-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clinic-features__icon svg {
  width: 28px;
  height: 28px;
}

.clinic-features__block-title {
  font-size: 22px;
  font-weight: bold;
  margin: 0 0 16px 0;
}

.clinic-features__block-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-gray);
  margin: 0;
}

.clinic-features__image-area {
  flex: 1;
  position: relative;
}

.clinic-features__image {
  width: 100%;
  height: 300px;
  object-fit: cover; 
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  display: block;
}

.clinic-features__image-caption {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #ffffff;
  text-align: right;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.clinic-features__image-clinic {
  margin: 0 0 4px 0;
  font-size: 13px;
  font-weight: 500;
}

.clinic-features__image-name {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
}

/* --------------------------------
   Vicious Circle
-------------------------------- */
.vicious-circle {
  padding: 80px 20px;
  background-color: #f4fbfe;
}

.vicious-circle__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.vicious-circle__header {
  text-align: center;
  margin-bottom: 50px;
}

.vicious-circle__title {
  font-size: 26px;
  font-weight: bold;
  margin: 0 0 20px 0;
  letter-spacing: 0.05em;
}

.vicious-circle__desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-gray);
  margin: 0;
}

.vicious-circle__flow-box {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.vicious-circle__flow-title {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 30px 0;
}

.vicious-circle__flow {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 15px;
}

.vicious-circle__step {
  flex: 1;
  border: 1px solid var(--color-border-light);
  border-radius: 8px;
  padding: 25px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vicious-circle__step-num {
  background-color: var(--color-primary);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 16px;
}

.vicious-circle__step-icon svg {
  width: 56px;
  height: 56px;
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vicious-circle__step-title {
  font-size: 14.5px;
  font-weight: bold;
  margin: 0 0 12px 0;
  text-align: center;
}

.vicious-circle__step-text {
  font-size: 13px;
  color: var(--color-text-gray);
  line-height: 1.6;
  margin: 0;
}

.vicious-circle__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.vicious-circle__loop-note {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: var(--color-text-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* --------------------------------
   Approach
-------------------------------- */
.approach {
  padding: 0 20px 80px;
  background-color: #f4fbfe;
}

.approach__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.approach__box {
  background-color: var(--color-primary);
  border-radius: 16px;
  padding: 50px;
  color: #ffffff;
}

.approach__title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 40px 0;
  letter-spacing: 0.05em;
}

.approach__cards {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.approach__card {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
}

.approach__card-icon svg {
  width: 80px;
  height: 80px;
  color: #ffffff;
}

.approach__card-title {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 12px 0;
}

.approach__card-text {
  font-size: 14px;
  line-height: 1.6;
}

.approach__message {
  text-align: center;
  margin-bottom: 40px;
}

.approach__btn-wrapper {
  text-align: center;
}

.approach__message-text {
  font-size: 15px;
  line-height: 1.8;
  font-weight: bold;
}

.approach__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: var(--color-primary);
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 16px;
}

/* --------------------------------
   Non-Insurance
-------------------------------- */
.non-insurance {
  padding: 80px 20px;
  background-color: #ffffff;
}

.non-insurance__inner {
  max-width: 900px;
  margin: 0 auto;
}

.non-insurance__box {
  background-color: #eaf5fa;
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.non-insurance__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.non-insurance__icon {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.non-insurance__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-primary);
}

.non-insurance__title {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}

.non-insurance__intro-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  margin-bottom: 20px;
}

.non-insurance__intro-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
}

.non-insurance__cards {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.non-insurance__card {
  flex: 1;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
}

.non-insurance__card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--color-primary);
}

.non-insurance__card-header svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.non-insurance__card-title {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  color: var(--color-text-main);
}

.non-insurance__card-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-gray);
}

.non-insurance__btn-wrapper {
  text-align: center;
}

.non-insurance__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(82, 162, 198, 0.3);
  transition: transform 0.2s, background-color 0.2s;
}

.non-insurance__btn:hover {
  transform: translateY(-2px);
  background-color: #438eb0;
}

.non-insurance__btn-arrow {
  margin-left: 8px;
}

/* --------------------------------
   SAS About (SAS Specific)
-------------------------------- */
.sas-about {
  padding: 80px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f0f8fc 100%);
}

.sas-about__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.sas-about__header {
  text-align: center;
  margin-bottom: 40px;
}

.sas-about__title {
  font-size: 28px;
  font-weight: bold;
  margin: 0 0 16px 0;
  letter-spacing: 0.05em;
}

.sas-about__subtitle {
  font-size: 16px;
  color: var(--color-text-gray);
  margin: 0;
}

.sas-about__main-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  border: 1px solid var(--color-border-light);
}

.sas-about__text {
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 20px 0;
}

.sas-about__text--highlight {
  color: var(--color-primary);
  font-weight: bold;
}

.sas-about__risk-card {
  background-color: var(--color-warning-bg);
  border: 1px solid var(--color-warning-border);
  border-radius: 12px;
  padding: 40px;
}

.sas-about__risk-header {
  margin-bottom: 30px;
}

.sas-about__risk-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-warning-text);
  font-size: 22px;
  font-weight: bold;
  margin: 0 0 16px 0;
}

.sas-about__risk-title svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

.sas-about__risk-desc {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.sas-about__risk-items {
  display: flex;
  gap: 20px;
}

.sas-about__risk-item {
  flex: 1;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 25px 20px;
}

.sas-about__risk-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sas-about__risk-item-title {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.sas-about__risk-item-text {
  font-size: 13px;
  color: var(--color-text-gray);
  line-height: 1.6;
}

.sas-about__mechanism-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-top: 40px;
  border: 1px solid var(--color-border-light);
}

.sas-about__mechanism-title {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 16px 0;
}

.sas-about__mechanism-text {
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

.sas-about__characteristics-card {
  background-color: #E8F5F9;
  border-radius: 12px;
  padding: 40px;
  margin-top: 30px;
}

.sas-about__characteristics-title {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 24px 0;
}

.sas-about__characteristics-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.sas-about__characteristics-item {
  position: relative;
  padding-left: 20px;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.6;
}

.sas-about__characteristics-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--color-primary);
  border-radius: 50%;
}

.sas-about__characteristics-item-bold {
  font-weight: bold;
}

.sas-about__characteristics-note {
  border-top: 1px solid #d2e4ee;
  padding-top: 24px;
}

.sas-about__characteristics-note-text {
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
  color: var(--color-text-gray);
}

.sas-about__link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: bold;
}

/* --------------------------------
   FAQ
-------------------------------- */
.faq {
  padding: 80px 20px;
  background-color: #ffffff;
}

.faq__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.faq__header {
  text-align: center;
  margin-bottom: 50px;
}

.faq__title {
  font-size: 28px;
  font-weight: bold;
  margin: 0 0 8px 0;
  letter-spacing: 0.05em;
}

.faq__subtitle {
  font-size: 15px;
  color: var(--color-text-gray);
  margin: 0;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__item {
  border: 1px solid var(--color-border-light);
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
}

.faq__question {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question-label {
  color: var(--color-primary);
  font-weight: bold;
  font-size: 18px;
  margin-right: 12px;
  flex-shrink: 0;
}

.faq__question-text {
  font-size: 16px;
  font-weight: bold;
  flex-grow: 1;
  padding-right: 24px;
}

.faq__question-icon {
  position: absolute;
  right: 24px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--color-text-gray);
  border-bottom: 2px solid var(--color-text-gray);
  transform-origin: center;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s;
}

.faq__item[open] .faq__question-icon {
  transform: translateY(-30%) rotate(225deg);
}

.faq__answer {
  display: flex;
  padding: 0 24px 24px;
  background-color: #f8fbfe;
  padding-top: 20px;
  border-top: 1px solid var(--color-border-light);
}

.faq__answer-label {
  color: var(--color-primary);
  font-weight: bold;
  font-size: 18px;
  margin-right: 12px;
  flex-shrink: 0;
}

.faq__answer-text {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: var(--color-text-main);
  padding-top: 2px;
}

/* --------------------------------
   Flow
-------------------------------- */
.flow {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f4fbfe 0%, #ffffff 100%);
}

.flow__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.flow__header {
  text-align: center;
  margin-bottom: 50px;
}

.flow__title {
  font-size: 26px;
  font-weight: bold;
  margin: 0 0 16px 0;
  letter-spacing: 0.05em;
}

.flow__subtitle {
  font-size: 15px;
  color: var(--color-text-gray);
  margin: 0;
}

.flow__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.flow__card {
  width: calc(50% - 15px);
  background-color: #ffffff;
  border-radius: 12px;
  padding: 35px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  box-sizing: border-box;
}

.flow__card-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 15px;
}

.flow__card-number {
  background-color: var(--color-primary);
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}

.flow__card-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: #5bc0de;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow__card-title {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}

.flow__card-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-gray);
}

/* --------------------------------
   CTA Message (Obesity Specific)
-------------------------------- */
.cta-message {
  padding: 80px 20px;
  background-color: #ffffff;
  text-align: center;
}

.cta-message__inner {
  max-width: 900px;
  margin: 0 auto;
}

.cta-message__icon {
  width: 64px;
  height: 64px;
  background-color: #eaf5fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #52a2c6;
}

.cta-message__icon svg {
  width: 32px;
  height: 32px;
}

.cta-message__title {
  font-size: 32px;
  font-weight: bold;
  margin: 0 0 24px 0;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.cta-message__text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-main);
  margin: 0 0 40px 0;
}

.cta-message__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent);
  color: #ffffff;
  text-decoration: none;
  padding: 18px 60px;
  border-radius: 40px;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0 6px 15px rgba(255, 139, 96, 0.3);
  transition: transform 0.2s, background-color 0.2s;
}

.cta-message__btn:hover {
  background-color: #f77a4d;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 139, 96, 0.4);
}

/* --------------------------------
   Blue CTA Section (Closing)
-------------------------------- */
.cta {
  background-color: var(--color-primary);
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.cta__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.cta__title {
  font-size: 32px;
  font-weight: bold;
  margin: 0 0 16px 0;
  letter-spacing: 0.05em;
}

.cta__text {
  font-size: 16px;
  margin: 0 0 40px 0;
}

.cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent);
  color: #ffffff;
  text-decoration: none;
  padding: 18px 50px;
  border-radius: 40px;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0 6px 15px rgba(255, 139, 96, 0.3);
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.cta__btn:hover {
  background-color: #f77a4d;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 139, 96, 0.4);
}

.cta__btn-icon {
  margin-left: 12px;
  width: 28px;
  height: 28px;
}

/* --------------------------------
   Footer
-------------------------------- */
.footer {
  background-color: #6DBBDC;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  padding: 60px 20px 20px;
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer__info {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}

.footer__col {
  flex: 1;
}

.footer__col--clinic {
  flex: 1.2;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer__logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.footer__clinic-name {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 16px 0;
}

.footer__address-block {
  font-size: 14px;
  line-height: 1.6;
}

.footer__icon-text {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.footer__icon-text svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__address {
  margin: 0;
  text-align: left;
}

.footer__access {
  margin: 0;
  padding-left: 36px;
  font-size: 13px;
  opacity: 0.9;
}

.footer__heading {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__tel {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: bold;
}

.footer__tel svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.footer__hours-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 14px;
}

.footer__departments {
  font-size: 14px;
  line-height: 1.6;
}

.footer__departments-label {
  margin: 0 0 4px 0;
  font-weight: bold;
}

.footer__departments-text {
  margin: 0;
  font-size: 13px;
  opacity: 0.9;
}

.footer__map {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
}

.footer__map iframe {
  width: 100%;
  height: 350px;
  border: 0;
  display: block;
}

.footer__copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}

.footer__copyright-text {
  margin: 0 0 8px 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

/* --------------------------------
   Responsive Overrides
-------------------------------- */
@media screen and (max-width: 900px) {
  .hero__inner {
    flex-direction: column-reverse;
    gap: 40px;
  }
}

@media screen and (max-width: 768px) {
  .header { padding: 10px 15px; }
  .header__inner { gap: 10px; }
  .header__logo-img { max-height: 35px; }
  .header__contact { flex-direction: column; align-items: flex-end; gap: 6px; }
  .header__tel-number { font-size: 14px; }
  .header__btn { padding: 6px 16px; font-size: 12px; }

  /* SAS Hero Restored */
  .hero { margin-top: 80px; padding: 30px 15px 40px; }
  .hero__title { font-size: 24px; text-align: center; }
  .hero__badges { flex-direction: column; align-items: flex-start; }
  .hero__badge { margin: 0 auto; }
  .hero__cta-btn { width: 100%; padding: 16px 0px; font-size: 16px; text-align: center; }

  /* Obesity Hero */
  .hero-obesity { margin-top: 80px; padding: 40px 15px; }
  .hero-obesity__inner { flex-direction: column; gap: 30px; }
  .hero-obesity__title { font-size: 24px; text-align: center;}
  .hero-obesity__text { font-size: 14px; }
  .hero-obesity__btn { width: 100%; box-sizing: border-box; }

  .features { padding: 40px 15px; }
  .features__list { flex-wrap: wrap; gap: 25px 10px; }
  .features__item { flex: 0 0 47%; }
  .features__icon { width: 60px; height: 60px; margin-bottom: 12px; }
  .features__icon svg { width: 30px; height: 30px; }

  /* Symptoms SAS Specific Restored */
  .symptoms { padding: 50px 15px; }
  .symptoms__title { font-size: 22px; margin-bottom: 30px; }
  .symptoms__cards { flex-direction: column; gap: 20px; }
  .symptoms__card { padding: 30px 20px; }
  .symptoms__card-header { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 20px; }

  .insurance-check { padding: 50px 15px; }
  .insurance-check__box { padding: 30px 20px; }
  .insurance-check__title { font-size: 20px; }
  .insurance-check__desc { font-size: 13px; }
  .insurance-check__item { padding: 12px 15px; }
  .insurance-check__item-text { font-size: 14px; }
  .insurance-check__result { padding: 20px 15px; }

  .location { padding: 50px 15px; }
  .location__inner { flex-direction: column; gap: 30px; }
  .location__title { font-size: 22px; text-align: center;}
  .location__text { font-size: 14px; }

  .treatment-info { padding: 50px 15px; }
  .treatment-info__title { font-size: 22px; margin-bottom: 30px; }
  .treatment-info__cards { flex-direction: column; gap: 20px; }
  .treatment-info__card { padding: 30px 20px; }
  .treatment-info__icon { margin-left: auto; margin-right: auto;}
  .treatment-info__card-title { text-align: center;}

  .clinic-features { padding: 50px 15px; }
  .clinic-features__title { font-size: 22px; }
  .clinic-features__block, .clinic-features__block--reverse { flex-direction: column-reverse; gap: 20px; }
  .clinic-features__image { height: auto; aspect-ratio: 4 / 3; }
  .clinic-features__block-title { font-size: 20px; }

  .vicious-circle { padding: 50px 15px; }
  .vicious-circle__title { font-size: 22px; }
  .vicious-circle__flow-box { padding: 25px 15px; }
  .vicious-circle__flow { flex-direction: column; align-items: center; }
  .vicious-circle__step { width: 100%; box-sizing: border-box; padding: 20px 15px; }
  .vicious-circle__arrow { transform: rotate(90deg); margin: 10px 0; }

  .approach { padding: 0 15px 50px; }
  .approach__box { padding: 30px 20px; }
  .approach__title { font-size: 20px; line-height: 1.5; }
  .approach__cards { flex-direction: column; gap: 15px; }
  .approach__btn { width: 100%; box-sizing: border-box; }

  .non-insurance { padding: 50px 15px; }
  .non-insurance__box { padding: 30px 20px; }
  .non-insurance__title { font-size: 20px; }
  .non-insurance__cards { flex-direction: column; gap: 15px; }
  .non-insurance__btn { width: 100%; box-sizing: border-box; }

  /* SAS About Specific Restored */
  .sas-about { padding: 50px 15px; }
  .sas-about__title { font-size: 22px; }
  .sas-about__main-card { padding: 25px 20px; }
  .sas-about__risk-card { padding: 25px 20px; }
  .sas-about__risk-title { font-size: 18px; }
  .sas-about__risk-items { flex-direction: column; gap: 15px; }
  .sas-about__risk-item { display: flex; flex-direction: column; align-items: center; text-align: center; }
  .sas-about__mechanism-card, .sas-about__characteristics-card { padding: 25px 20px; }
  .sas-about__mechanism-title, .sas-about__characteristics-title { font-size: 18px; }

  .faq { padding: 50px 15px; }
  .faq__title { font-size: 22px; }
  .faq__question { padding: 16px 20px; }
  .faq__question-text { font-size: 14.5px; }

  .flow { padding: 50px 15px; }
  .flow__title { font-size: 22px; }
  .flow__card { width: 100%; padding: 25px 20px; }

  .cta-message { padding: 60px 15px; }
  .cta-message__title { font-size: 22px; }
  .cta-message__text { font-size: 14px; }
  .cta-message__btn { width: 100%; box-sizing: border-box; padding: 16px 20px; font-size: 16px; }

  .cta { padding: 60px 15px; }
  .cta__title { font-size: 24px; }
  .cta__text { font-size: 14px; }
  .cta__btn { width: 100%; box-sizing: border-box; padding: 16px 20px; font-size: 16px; }

  .footer { padding: 50px 15px 20px; }
  .footer__info { flex-direction: column; align-items: center; gap: 40px; }
  .footer__col { display: flex; flex-direction: column; align-items: center; text-align: center; width: 100%; }
  .footer__logo { margin: 0 auto 16px; }
  .footer__icon-text { justify-content: center; text-align: left; }
  .footer__address { text-align: left; }
  .footer__access { padding-left: 0; text-align: center; }
  .footer__tel { justify-content: center; }
  .footer__hours-list { display: flex; flex-direction: column; align-items: center; }
  .footer__map iframe { height: 250px; }
}