@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP:700,var(--h-1-font-weight),var(--h-2-font-weight)|Noto+Sans+JP:var(--subtitle-font-weight),var(--h-3-font-weight),var(--button-font-weight),var(--button-small-font-weight),var(--body-1-font-weight),500,400,var(--body-2-font-weight)|Zen+Kaku+Gothic+New:500,400,700");

* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

html,
body {
  margin: 0px;
  height: 100%;
}

/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}

a {
  text-decoration: none;
}

:root {
  --primary: rgba(168, 50, 50, 1);
  --secondary: rgba(166, 147, 124, 1);
  --tertiary: rgba(198, 186, 156, 1);
  --baseblack: rgba(30, 30, 30, 1);
  --basewhite: rgba(255, 255, 255, 1);
  --basegrey-01: rgba(245, 245, 245, 1);
  --basegrey-02: rgba(224, 224, 224, 1);
  --h-1-font-family: "Noto Serif JP", Helvetica;
  --h-1-font-weight: 700;
  --h-1-font-size: 40px;
  --h-1-letter-spacing: 2px;
  --h-1-line-height: 160.0000023841858%;
  --h-1-font-style: normal;
  --h-2-font-family: "Noto Serif JP", Helvetica;
  --h-2-font-weight: 700;
  --h-2-font-size: 32px;
  --h-2-letter-spacing: 1.6px;
  --h-2-line-height: 120.00000476837158%;
  --h-2-font-style: normal;
  --h-3-font-family: "Noto Sans JP", Helvetica;
  --h-3-font-weight: 700;
  --h-3-font-size: 26px;
  --h-3-letter-spacing: 1.3px;
  --h-3-line-height: 120.00000476837158%;
  --h-3-font-style: normal;
  --subtitle-font-family: "Noto Sans JP", Helvetica;
  --subtitle-font-weight: 700;
  --subtitle-font-size: 24px;
  --subtitle-letter-spacing: 0px;
  --subtitle-line-height: 139.9999976158142%;
  --subtitle-font-style: normal;
  --button-font-family: "Noto Sans JP", Helvetica;
  --button-font-weight: 700;
  --button-font-size: 18px;
  --button-letter-spacing: 0px;
  --button-line-height: 120.00000476837158%;
  --button-font-style: normal;
  --button-small-font-family: "Noto Sans JP", Helvetica;
  --button-small-font-weight: 700;
  --button-small-font-size: 16px;
  --button-small-letter-spacing: 0px;
  --button-small-line-height: 120.00000476837158%;
  --button-small-font-style: normal;
  --body-1-font-family: "Noto Sans JP", Helvetica;
  --body-1-font-weight: 500;
  --body-1-font-size: 16px;
  --body-1-letter-spacing: 0px;
  --body-1-line-height: 160.0000023841858%;
  --body-1-font-style: normal;
  --body-2-font-family: "Noto Sans JP", Helvetica;
  --body-2-font-weight: 400;
  --body-2-font-size: 12px;
  --body-2-letter-spacing: 0px;
  --body-2-line-height: 160.0000023841858%;
  --body-2-font-style: normal;
  --size-space-600: 24px;
  --size-space-200: 8px;
  --size-space-1200: 48px;
  --size-space-400: 16px;
  --size-space-300: 12px;
  --size-space-100: 4px;
  --size-space-050: 2px;
  --size-space-0: 0px;
  --size-space-800: 32px;
  --size-radius-100: 4px;
  --size-space-1600: 64px;
  --size-space-150: 6px;
  --size-radius-400: 16px;
}

/* ========================================
   Header Section
   ======================================== */
.rn-header-root {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: var(--size-space-400) clamp(20px, 6vw, 220px);
  box-sizing: border-box;
}

.rn-header-logo {
  display: block;
  height: auto;
  max-width: 100%;
  max-height: 80px;
  width: auto;
}

.rn-header-sp {
  display: none;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  padding: var(--size-space-400) var(--size-space-400) var(--size-space-300);
  box-sizing: border-box;
}

.rn-header-sp-icon {
  width: 26px;
  height: 26px;
  display: block;
  object-fit: contain;
}

@media (max-width: 768px) {
  .rn-header-pc {
    display: none;
  }

  .rn-header-sp {
    display: flex;
  }
}

/* ========================================
   Hero Section
   ======================================== */
.rn-hero-frame {
  position: relative;
  width: 100%;
  min-height: clamp(34rem, 48.5vw, 43.75rem);
  padding: clamp(2.5rem, 4vw, 4rem) clamp(1rem, 8vw, 13.75rem);
  display: flex;
  align-items: center;
  background-image: url(https://ik.imagekit.io/riwa341hv/frame-4.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .rn-hero-frame {
    padding-top: 110px;
  }
}

.rn-hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 44.583%, #ffffff 94.271%);
  pointer-events: none;
}

.rn-hero-frame__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.rn-hero-div {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(1.5rem, 2.7vw, 2.5rem);
  width: min(100%, 40rem);
}

.rn-hero-frame-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(1rem, 1.8vw, 1.5rem);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.rn-hero-frame-3 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--size-space-200);
  position: relative;
  flex: 0 0 auto;
}

.rn-hero-text-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 32rem;
  font-family: "Noto Serif JP", Helvetica;
  font-weight: 700;
  color: var(--baseblack);
  font-size: clamp(1rem, 1.5vw, 1.375rem);
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.rn-hero-p {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 34rem;
  text-align: left;
  font-family: var(--h-1-font-family);
  font-weight: var(--h-1-font-weight);
  color: transparent;
  font-size: clamp(2.125rem, 4.5vw, var(--h-1-font-size));
  letter-spacing: var(--h-1-letter-spacing, 0);
  line-height: clamp(1.3, 1.35, 1.4);
  font-style: var(--h-1-font-style);
}

.rn-hero-hero-line {
  display: flex;
  flex-wrap: nowrap;
}

.rn-hero-span {
  display: inline;
  color: #a6937c;
  letter-spacing: var(--h-1-letter-spacing);
  font-family: var(--h-1-font-family);
  font-style: var(--h-1-font-style);
  font-weight: var(--h-1-font-weight);
  line-height: var(--h-1-line-height);
  font-size: var(--h-1-font-size);
}

.rn-hero-text-wrapper-2 {
  display: inline;
  color: #1e1e1e;
  letter-spacing: var(--h-1-letter-spacing);
  font-family: var(--h-1-font-family);
  font-style: var(--h-1-font-style);
  font-weight: var(--h-1-font-weight);
  line-height: var(--h-1-line-height);
  font-size: var(--h-1-font-size);
}

.rn-hero-no-break {
  white-space: nowrap;
}

.rn-hero-text-wrapper-3 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 34rem;
  font-family: var(--body-1-font-family);
  font-weight: var(--body-1-font-weight);
  color: var(--baseblack);
  font-size: clamp(1rem, 1.45vw, var(--body-1-font-size));
  letter-spacing: var(--body-1-letter-spacing);
  line-height: 1.75;
  font-style: var(--body-1-font-style);
}

.rn-hero-frame-4 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(0.75rem, 1.1vw, 1rem);
  position: relative;
  flex-wrap: wrap;
  width: 100%;
}

.rn-hero-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--size-space-200);
  padding: clamp(0.7rem, 1.1vw, 1rem) clamp(1rem, 1.9vw, 1.5rem);
  background-color: var(--primary);
  position: relative;
  flex: 0 0 auto;
  border-radius: 6.25rem;
}

.rn-hero-img {
  position: relative;
  width: clamp(1rem, 1.7vw, 1.5rem);
  height: clamp(1rem, 1.7vw, 1.5rem);
  aspect-ratio: 1;
}

.rn-hero-div-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-family: "Zen Kaku Gothic New", Helvetica;
  font-weight: 400;
  color: var(--basewhite);
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
  position: relative;
  letter-spacing: 0;
}

.rn-hero-text-wrapper-4 {
  font-weight: 700;
}

.rn-hero-text-wrapper-5 {
  font-family: var(--button-small-font-family);
  font-weight: var(--button-small-font-weight);
  font-size: var(--button-small-font-size);
  line-height: var(--button-small-line-height);
  font-style: var(--button-small-font-style);
  letter-spacing: var(--button-small-letter-spacing);
}

.rn-hero-button-2 {
  all: unset;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--size-space-200);
  padding: clamp(0.7rem, 1.1vw, 1rem) clamp(1rem, 1.9vw, 1.5rem);
  background-color: var(--secondary);
  position: relative;
  flex: 0 0 auto;
  border-radius: 6.25rem;
  cursor: pointer;
}

.rn-hero-img-2 {
  position: relative;
  width: clamp(1rem, 1.7vw, 1.5rem);
  height: clamp(1rem, 1.7vw, 1.5rem);
}

.rn-hero-text-wrapper-6 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-family: "Zen Kaku Gothic New", Helvetica;
  font-weight: 700;
  color: var(--basewhite);
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
  position: relative;
  letter-spacing: 0;
}

.rn-hero-frame-5 {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.4vw, 1rem);
  position: relative;
  flex-wrap: wrap;
  width: 100%;
}

.rn-hero-group {
  position: relative;
  width: clamp(7rem, 11vw, 10.625rem);
  height: auto;
  aspect-ratio: 1;
}

.rn-hero-point {
  position: relative;
  width: clamp(6.5rem, 10.5vw, 10rem);
  height: auto;
  aspect-ratio: 1;
}

@media (max-width: 1024px) {
  .rn-hero-frame {
    min-height: auto;
    padding: clamp(2rem, 4.5vw, 3rem) clamp(1rem, 4vw, 2.5rem);
    background-position: 62% center;
  }

  .rn-hero-frame::after {
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.06) 34%, #ffffff 80%);
  }

  .rn-hero-p {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .rn-hero-frame {
    min-height: 43.75rem;
    padding: 1.25rem 1.5rem 2rem;
    align-items: flex-end;
    background-image: url(https://ik.imagekit.io/riwa341hv/frame-23-sp.png);
    background-position: 50% top;
  }

  .rn-hero-frame::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 56%, #ffffff 93%);
  }

  .rn-hero-div {
    width: 100%;
    max-width: 21.375rem;
    margin-inline: auto;
    gap: 1rem;
  }

  .rn-hero-frame-2 {
    gap: 1rem;
    order: 2;
  }

  .rn-hero-frame-3 {
    gap: 0.5rem;
    width: 100%;
  }

  .rn-hero-text-wrapper {
    max-width: 100%;
    justify-content: flex-start;
    font-size: 1rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }

  .rn-hero-p {
    font-size: 1.6875rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }

  .rn-hero-p .rn-hero-span,
  .rn-hero-p .rn-hero-text-wrapper-2 {
    font-size: inherit;
    letter-spacing: inherit;
    line-height: inherit;
  }

  .rn-hero-hero-line {
    display: block;
    white-space: nowrap;
  }

  .rn-hero-no-break {
    white-space: normal;
  }

  .rn-hero-text-wrapper-3 {
    font-size: 0.875rem;
    letter-spacing: 0;
    line-height: 1.7;
  }

  .text-wrapper-3 br {
    display: block;
  }

  .rn-hero-frame-4 {
    order: 3;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
  }

  .rn-hero-button,
  .rn-hero-button-2 {
    display: inline-flex;
    width: fit-content;
    padding: 1rem 1.5rem;
  }

  .div-2,
  .rn-hero-text-wrapper-6 {
    font-size: 1.125rem;
    line-height: 1.2;
  }

  .rn-hero-frame-5 {
    order: 1;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 18rem;
    margin-bottom: 0.5rem;
  }

  .rn-hero-group {
    width: 5.6rem;
  }

  .rn-hero-point {
    width: 5.4rem;
  }
}

@media (max-width: 430px) {
  .rn-hero-frame {
    padding: 1rem 1rem 2rem;
  }

  .rn-hero-div {
    max-width: 100%;
  }

  .rn-hero-frame-5 {
    margin-top: 17rem;
  }

  .rn-hero-p {
    font-size: 1.6875rem;
  }
}

@media (max-width: 390px) {
  .rn-hero-frame {
    padding-inline: 0.75rem;
  }

  .rn-hero-frame-5 {
    margin-top: 16.5rem;
  }

  .rn-hero-text-wrapper {
    font-size: 0.9375rem;
  }

  .rn-hero-text-wrapper-3 {
    font-size: 0.8125rem;
  }

  .div-2,
  .rn-hero-text-wrapper-6 {
    font-size: 1rem;
  }
}

/* ========================================
   Nayami Section
   ======================================== */
.rn-nayami-frame-6 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--size-space-800);
  padding-block: var(--size-space-1600);
  padding-inline: clamp(var(--size-space-400), 15.28vw, 220px);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.rn-nayami-frame-7 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--size-space-300);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.rn-nayami-img {
  position: relative;
  width: 24px;
  height: 24px;
  aspect-ratio: 1;
}

.rn-nayami-text-wrapper-7 {
  position: relative;
  width: 100%;
  font-family: var(--h-2-font-family);
  font-weight: var(--h-2-font-weight);
  color: var(--baseblack);
  font-size: var(--h-2-font-size);
  text-align: center;
  letter-spacing: var(--h-2-letter-spacing);
  line-height: var(--h-2-line-height);
  font-style: var(--h-2-font-style);
}

.rn-nayami-frame-8 {
  display: flex;
  align-items: stretch;
  gap: var(--size-space-600);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.rn-nayami-interview {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--size-space-400);
  padding: var(--size-space-600);
  flex: 1;
  align-self: stretch;
  flex-grow: 1;
  background-color: var(--basewhite);
  border: 1px solid var(--basegrey-02);
  position: relative;
}

.rn-nayami-interview-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--size-space-400);
  padding: var(--size-space-600);
  flex: 1;
  flex-grow: 1;
  min-height: 222px;
  background-color: var(--basewhite);
  border: 1px solid var(--basegrey-02);
  position: relative;
}

.rn-nayami-text-wrapper-8 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  align-self: stretch;
  margin-top: -1px;
  font-family: var(--body-1-font-family);
  font-weight: var(--body-1-font-weight);
  color: var(--baseblack);
  font-size: var(--body-1-font-size);
  text-align: center;
  letter-spacing: var(--body-1-letter-spacing);
  line-height: var(--body-1-line-height);
  font-style: var(--body-1-font-style);
}

.rn-nayami-nayami {
  position: relative;
  width: 100px;
  height: 80px;
}

.rn-nayami-button-3 {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--size-space-100);
  padding: var(--size-space-300) var(--size-space-400) var(--size-space-300) var(--size-space-600);
  background-color: var(--basewhite);
  border: 1px solid var(--secondary);
  position: relative;
  flex: 0 0 auto;
  border-radius: 99px;
}

.rn-nayami-text-wrapper-9 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-family: var(--button-small-font-family);
  font-weight: var(--button-small-font-weight);
  color: var(--secondary);
  font-size: var(--button-small-font-size);
  text-align: center;
  line-height: var(--button-small-line-height);
  white-space: nowrap;
  position: relative;
  letter-spacing: var(--button-small-letter-spacing);
  font-style: var(--button-small-font-style);
}

.rn-nayami-img-2 {
  position: relative;
  width: 24px;
  height: 24px;
}

@media (max-width: 1024px) {
  .rn-nayami-frame-6 {
    padding-inline: clamp(var(--size-space-400), 4vw, var(--size-space-800));
  }

  .rn-nayami-frame-8 {
    flex-wrap: wrap;
  }

  .rn-nayami-interview,
  .rn-nayami-interview-2 {
    flex: 1 1 calc(50% - (var(--size-space-600) / 2));
    min-height: 200px;
  }
}

@media (max-width: 768px) {
  .rn-nayami-frame-6 {
    padding-block: var(--size-space-1200);
    padding-inline: var(--size-space-400);
    gap: var(--size-space-600);
  }

  .rn-nayami-text-wrapper-7 {
    font-size: var(--h-2-font-size);
    line-height: var(--h-2-line-height);
  }

  .rn-nayami-frame-8 {
    gap: var(--size-space-600);
  }

  .rn-nayami-interview,
  .rn-nayami-interview-2 {
    flex: 0 0 calc((100% - var(--size-space-600)) / 2);
    min-height: 222px;
    padding: var(--size-space-600);
  }
}

@media (max-width: 390px) {
  .rn-nayami-frame-6 {
    padding-inline: var(--size-space-300);
    gap: var(--size-space-400);
  }

  .rn-nayami-frame-8 {
    gap: var(--size-space-400);
  }

  .rn-nayami-interview,
  .rn-nayami-interview-2 {
    flex: 0 0 calc((100% - var(--size-space-400)) / 2);
    min-height: 200px;
    padding: var(--size-space-400);
  }
}

/* ========================================
   News Section
   ======================================== */
.rn-news-frame-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--size-space-1200) clamp(var(--size-space-400), 15.28vw, 220px);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--basegrey-01);
}

.rn-news-frame-9 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--size-space-800);
  padding: var(--size-space-800) var(--size-space-1200);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--basewhite);
  border-radius: var(--size-radius-400);
}

.rn-news-frame-7 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--size-space-300);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.rn-news-img {
  position: relative;
  width: 24px;
  height: 24px;
  aspect-ratio: 1;
}

.rn-news-text-wrapper-10 {
  position: relative;
  width: fit-content;
  font-family: var(--h-2-font-family);
  font-weight: var(--h-2-font-weight);
  color: var(--baseblack);
  font-size: var(--h-2-font-size);
  text-align: center;
  letter-spacing: var(--h-2-letter-spacing);
  line-height: var(--h-2-line-height);
  white-space: nowrap;
  font-style: var(--h-2-font-style);
}

.rn-news-frame-10 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--size-space-400);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.rn-news-frame-11 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--size-space-0);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.rn-news-frame-11 li {
  width: 100%;
}

.rn-news-frame-12 {
  display: flex;
  align-items: flex-start;
  gap: var(--size-space-600);
  padding: var(--size-space-200) 0;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.rn-news-text-wrapper-11 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100px, 100%);
  flex: 0 0 min(100px, 100%);
  position: relative;
  margin-top: -1px;
  font-family: var(--body-1-font-family);
  font-weight: var(--body-1-font-weight);
  color: var(--baseblack);
  font-size: var(--body-1-font-size);
  letter-spacing: var(--body-1-letter-spacing);
  line-height: var(--body-1-line-height);
  font-style: var(--body-1-font-style);
}

.rn-news-text-wrapper-12 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  margin-top: -1px;
  font-family: var(--body-1-font-family);
  font-weight: var(--body-1-font-weight);
  color: var(--baseblack);
  font-size: var(--body-1-font-size);
  letter-spacing: var(--body-1-letter-spacing);
  line-height: var(--body-1-line-height);
  text-decoration: underline;
  font-style: var(--body-1-font-style);
}

.rn-news-category {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: -1px;
  font-family: var(--body-1-font-family);
  font-weight: var(--body-1-font-weight);
  color: var(--baseblack);
  font-size: var(--body-1-font-size);
  letter-spacing: var(--body-1-letter-spacing);
  line-height: var(--body-1-line-height);
  font-style: var(--body-1-font-style);
}

.rn-news-more {
  width: 100%;
  text-align: right;
  margin-top: var(--size-space-400);
}

.rn-news-more a {
  font-family: var(--body-1-font-family);
  font-weight: var(--body-1-font-weight);
  color: var(--baseblack);
  font-size: var(--body-1-font-size);
  letter-spacing: var(--body-1-letter-spacing);
  line-height: var(--body-1-line-height);
  text-decoration: underline;
  font-style: var(--body-1-font-style);
}

@media (max-width: 1024px) {
  .rn-news-frame-wrapper {
    padding-inline: clamp(var(--size-space-400), 4vw, var(--size-space-800));
  }

  .rn-news-frame-9 {
    padding-inline: clamp(var(--size-space-400), 4vw, var(--size-space-1200));
  }
}

@media (max-width: 768px) {
  .rn-news-frame-wrapper {
    padding-block: var(--size-space-800);
    padding-inline: var(--size-space-600);
    gap: var(--size-space-400);
  }

  .rn-news-frame-9 {
    gap: var(--size-space-800);
    padding: var(--size-space-600);
  }

  .rn-news-text-wrapper-10 {
    white-space: normal;
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: 5px;
  }

  .rn-news-frame-12 {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--size-space-300);
  }

  .rn-news-text-wrapper-11 {
    width: auto;
    flex: 0 0 auto;
    justify-content: flex-start;
  }

  .rn-news-category {
    width: auto;
    flex: 0 0 auto;
    justify-content: flex-start;
  }

  .rn-news-text-wrapper-12 {
    width: 100%;
    flex: 0 0 auto;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

@media (max-width: 430px) {
  .rn-news-frame-wrapper {
    padding: var(--size-space-800) var(--size-space-600);
  }

  .rn-news-frame-9 {
    gap: var(--size-space-800);
    padding: var(--size-space-800) var(--size-space-600);
  }

  .rn-news-text-wrapper-10 {
    font-size: 32px;
    letter-spacing: 5px;
    line-height: 1.2;
  }
}

@media (max-width: 390px) {

  .rn-news-text-wrapper-11,
  .rn-news-text-wrapper-12 {
    font-size: var(--body-1-font-size);
    line-height: var(--body-1-line-height);
  }
}

@media (max-width: 375px) {
  .rn-news-frame-wrapper {
    padding-inline: clamp(12px, 3.2vw, var(--size-space-400));
  }
}

/* ========================================
   Case Section
   ======================================== */
.rn-case-frame-13 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 2.22vw, 32px);
  padding: clamp(48px, 4.44vw, 64px) clamp(16px, 15.28vw, 220px);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--basewhite);
}

.rn-case-frame-14 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--size-space-200);
  position: relative;
  flex: 0 0 auto;
}

.rn-case-text-wrapper-13 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0;
  margin-top: -1px;
  font-family: var(--subtitle-font-family);
  font-weight: var(--subtitle-font-weight);
  color: var(--baseblack);
  font-size: var(--subtitle-font-size);
  text-align: center;
  letter-spacing: var(--subtitle-letter-spacing);
  line-height: var(--subtitle-line-height);
  white-space: nowrap;
  font-style: var(--subtitle-font-style);
}

.rn-case-text-wrapper-14 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0;
  font-family: var(--h-1-font-family);
  font-weight: var(--h-1-font-weight);
  color: var(--baseblack);
  font-size: var(--h-1-font-size);
  text-align: center;
  letter-spacing: var(--h-1-letter-spacing);
  line-height: var(--h-1-line-height);
  white-space: nowrap;
  font-style: var(--h-1-font-style);
}

.rn-case-frame-15 {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: min(1000px, 100%);
  height: auto;
  position: relative;
}

.rn-case-img-3 {
  position: relative;
  width: 100%;
  align-self: stretch;
  display: block;
  aspect-ratio: 3.28;
  object-fit: cover;
}

.rn-case-img-4 {
  position: relative;
  width: 100%;
  align-self: stretch;
  display: block;
  aspect-ratio: 3.64;
  object-fit: cover;
}

.rn-case-text-wrapper-15 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  font-family: var(--body-2-font-family);
  font-weight: var(--body-2-font-weight);
  color: var(--baseblack);
  font-size: var(--body-2-font-size);
  text-align: center;
  letter-spacing: var(--body-2-letter-spacing);
  line-height: var(--body-2-line-height);
  font-style: var(--body-2-font-style);
}

.rn-case-button-3 {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--size-space-100);
  padding: var(--size-space-300) var(--size-space-400) var(--size-space-300) var(--size-space-600);
  background-color: var(--basewhite);
  border: 1px solid var(--secondary);
  border-radius: 99px;
  position: relative;
  flex: 0 0 auto;
  text-decoration: none;
}

.rn-case-text-wrapper-9 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-family: var(--button-small-font-family);
  font-weight: var(--button-small-font-weight);
  color: var(--secondary);
  font-size: var(--button-small-font-size);
  text-align: center;
  line-height: var(--button-small-line-height);
  white-space: nowrap;
  position: relative;
  letter-spacing: var(--button-small-letter-spacing);
  font-style: var(--button-small-font-style);
}

.rn-case-img-2 {
  position: relative;
  width: 24px;
  height: 24px;
}

@media (max-width: 1024px) {
  .rn-case-frame-13 {
    padding: 56px clamp(24px, 6.25vw, 64px);
  }

  .rn-case-text-wrapper-14 {
    white-space: normal;
    font-size: clamp(34px, 4.3vw, 40px);
    letter-spacing: clamp(2px, 0.45vw, 5px);
    line-height: 1.45;
  }
}

@media (max-width: 768px) {
  .rn-case-frame-13 {
    gap: var(--size-space-800);
    padding: var(--size-space-1200) var(--size-space-600);
  }

  .rn-case-frame-14 {
    gap: var(--size-space-200);
    width: 100%;
  }

  .rn-case-text-wrapper-13 {
    white-space: normal;
    width: 100%;
    font-size: clamp(18px, 2.6vw, 20px);
    line-height: 1.4;
    text-align: center;
  }

  .rn-case-text-wrapper-14 {
    white-space: normal;
    width: 100%;
    font-size: clamp(34px, 5.2vw, 40px);
    line-height: 1.4;
    letter-spacing: clamp(1.5px, 0.35vw, 3px);
    text-align: center;
  }

  .rn-case-text-wrapper-15 {
    justify-content: center;
    text-align: center;
    font-size: clamp(12px, 1.9vw, 14px);
    line-height: 1.6;
  }

  .rn-case-button-3 {
    min-height: 44px;
    padding: 12px 18px 12px 24px;
  }

  .rn-case-text-wrapper-9 {
    font-size: 16px;
  }
}

@media (max-width: 430px) {
  .rn-case-frame-13 {
    padding-inline: var(--size-space-400);
  }

  .rn-case-text-wrapper-13 {
    font-size: 24px;
    line-height: 1.4;
  }

  .rn-case-text-wrapper-14 {
    font-size: 40px;
    line-height: 1.6;
    letter-spacing: 2px;
  }

  .rn-case-text-wrapper-15 {
    justify-content: center;
    text-align: center;
    font-size: 12px;
    line-height: 1.6;
  }
}

@media (max-width: 390px) {
  .rn-case-text-wrapper-15 {
    font-size: 12px;
    line-height: 1.6;
  }
}

@media (max-width: 375px) {
  .rn-case-frame-13 {
    padding-inline: clamp(12px, 3.2vw, var(--size-space-400));
  }
}

/* ========================================
   Message Section
   ======================================== */
.rn-message-frame-16 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 2.22vw, 32px);
  padding: clamp(48px, 4.44vw, 64px) clamp(16px, 15.28vw, 220px);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(245, 245, 245, 1) 100%);
}

.rn-message-frame-10 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(12px, 1.11vw, 16px);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.rn-message-text-wrapper-16 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: -1px;
  font-family: var(--button-font-family);
  font-weight: var(--button-font-weight);
  color: var(--baseblack);
  font-size: var(--button-font-size);
  text-align: center;
  letter-spacing: var(--button-letter-spacing);
  line-height: var(--button-line-height);
  font-style: var(--button-font-style);
  margin: 0;
}

.rn-message-go-smile {
  position: relative;
  display: block;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  font-family: var(--h-2-font-family);
  font-weight: var(--h-2-font-weight);
  color: transparent;
  font-size: var(--h-2-font-size);
  letter-spacing: var(--h-2-letter-spacing);
  line-height: var(--h-2-line-height);
  text-align: center;
  font-style: var(--h-2-font-style);
  margin: 0;
}

.rn-message-text-wrapper-17 {
  display: inline;
  color: #1e1e1e;
  letter-spacing: var(--h-2-letter-spacing);
  font-family: var(--h-2-font-family);
  font-style: var(--h-2-font-style);
  font-weight: var(--h-2-font-weight);
  line-height: var(--h-2-line-height);
  font-size: var(--h-2-font-size);
}

.rn-message-text-wrapper-18 {
  display: inline;
  color: #a73232;
  letter-spacing: var(--h-2-letter-spacing);
  font-family: var(--h-2-font-family);
  font-style: var(--h-2-font-style);
  font-weight: var(--h-2-font-weight);
  line-height: var(--h-2-line-height);
  font-size: var(--h-2-font-size);
}

.rn-message-interview-3 {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.22vw, 32px);
  padding: clamp(20px, 1.67vw, 24px);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--basewhite);
  border: 1px solid var(--tertiary);
}

.rn-message-text-wrapper-19 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  margin-top: -1px;
  font-family: var(--subtitle-font-family);
  font-weight: var(--subtitle-font-weight);
  color: var(--baseblack);
  font-size: var(--subtitle-font-size);
  text-align: center;
  letter-spacing: var(--subtitle-letter-spacing);
  line-height: var(--subtitle-line-height);
  font-style: var(--subtitle-font-style);
  margin: 0;
}

.rn-message-text-wrapper-20 {
  position: relative;
  flex: 1;
  font-family: var(--body-1-font-family);
  font-weight: var(--body-1-font-weight);
  color: var(--baseblack);
  font-size: var(--body-1-font-size);
  letter-spacing: var(--body-1-letter-spacing);
  line-height: var(--body-1-line-height);
  font-style: var(--body-1-font-style);
  margin: 0;
}

.rn-message-text-wrapper-21 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: var(--body-1-font-family);
  font-weight: var(--body-1-font-weight);
  color: var(--baseblack);
  font-size: var(--body-1-font-size);
  letter-spacing: var(--body-1-letter-spacing);
  line-height: var(--body-1-line-height);
  font-style: var(--body-1-font-style);
  margin: 0;
}

@media (max-width: 1024px) {
  .rn-message-frame-16 {
    padding: 56px clamp(24px, 6.25vw, 64px);
  }

  .rn-message-go-smile,
  .rn-message-text-wrapper-17,
  .rn-message-text-wrapper-18 {
    font-size: clamp(34px, 4.3vw, 40px);
    letter-spacing: clamp(2px, 0.45vw, 5px);
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .rn-message-frame-16 {
    gap: var(--size-space-800);
    padding: var(--size-space-800) var(--size-space-400);
  }

  .rn-message-frame-10 {
    gap: var(--size-space-400);
  }

  .rn-message-text-wrapper-16 {
    font-size: 18px;
    line-height: 1.2;
  }

  .rn-message-go-smile,
  .rn-message-text-wrapper-17,
  .rn-message-text-wrapper-18 {
    font-size: var(--h-2-font-size);
    letter-spacing: var(--h-2-letter-spacing);
    line-height: 1.2;
  }

  .rn-message-interview-3 {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--size-space-600);
    padding: var(--size-space-400);
  }

  .rn-message-text-wrapper-19 {
    width: 100%;
    text-align: center;
    font-size: var(--subtitle-font-size);
    line-height: 1.4;
  }

  .rn-message-text-wrapper-20 {
    width: 100%;
    text-align: left;
    font-size: var(--body-1-font-size);
    line-height: 1.6;
  }

  .rn-message-text-wrapper-21 {
    justify-content: flex-start;
    width: 100%;
    text-align: left;
    font-size: var(--body-1-font-size);
    line-height: 1.6;
  }
}

/* ========================================
   Kodawari Section
   ======================================== */
.rn-kodawari-frame-17 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 64px clamp(20px, 6vw, 220px);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  background-color: #f5f5f5;
}

.rn-kodawari-frame-7 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--size-space-300);
  position: relative;
  width: min(100%, 1000px);
  flex: 0 0 auto;
}

.rn-kodawari-img {
  position: relative;
  width: 24px;
  height: 24px;
  aspect-ratio: 1;
}

.rn-kodawari-text-wrapper-7 {
  position: relative;
  width: 100%;
  font-family: var(--h-2-font-family);
  font-weight: var(--h-2-font-weight);
  color: var(--baseblack);
  font-size: var(--h-2-font-size);
  text-align: center;
  letter-spacing: 5px;
  line-height: var(--h-2-line-height);
  font-style: var(--h-2-font-style);
}

.rn-kodawari-interview-4,
.rn-kodawari-interview-5 {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 32px;
  position: relative;
  width: min(100%, 1000px);
  flex: 0 0 auto;
  background-color: var(--basewhite);
}

.rn-kodawari-rectangle,
.rn-kodawari-rectangle-2 {
  position: relative;
  width: clamp(140px, 20vw, 200px);
  min-width: 140px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}

.rn-kodawari-frame-18 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--size-space-400);
  position: relative;
  flex: 1;
  flex-grow: 1;
  min-width: 0;
}

.rn-kodawari-text-wrapper-22 {
  position: relative;
  width: 100%;
  margin-top: 0;
  font-family: var(--subtitle-font-family);
  font-weight: var(--subtitle-font-weight);
  color: var(--baseblack);
  font-size: var(--subtitle-font-size);
  text-align: left;
  letter-spacing: var(--subtitle-letter-spacing);
  line-height: var(--subtitle-line-height);
  font-style: var(--subtitle-font-style);
}

.rn-kodawari-text-wrapper-23 {
  position: relative;
  width: 100%;
  font-family: var(--body-1-font-family);
  font-weight: var(--body-1-font-weight);
  color: var(--baseblack);
  font-size: var(--body-1-font-size);
  letter-spacing: var(--body-1-letter-spacing);
  line-height: var(--body-1-line-height);
  font-style: var(--body-1-font-style);
}

.rn-kodawari-button-3 {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--size-space-100);
  padding: var(--size-space-300) var(--size-space-400) var(--size-space-300) var(--size-space-600);
  background-color: var(--basewhite);
  border: 1px solid var(--secondary);
  position: relative;
  flex: 0 0 auto;
  border-radius: 99px;
}

.rn-kodawari-text-wrapper-9 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-family: var(--button-small-font-family);
  font-weight: var(--button-small-font-weight);
  color: var(--secondary);
  font-size: var(--button-small-font-size);
  text-align: center;
  line-height: var(--button-small-line-height);
  white-space: nowrap;
  position: relative;
  letter-spacing: var(--button-small-letter-spacing);
  font-style: var(--button-small-font-style);
}

.rn-kodawari-img-2 {
  position: relative;
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .rn-kodawari-frame-17 {
    gap: var(--size-space-600);
    padding: var(--size-space-800) var(--size-space-400);
  }

  .rn-kodawari-frame-7,
  .rn-kodawari-interview-4,
  .rn-kodawari-interview-5 {
    width: 100%;
  }

  .rn-kodawari-frame-7 {
    gap: var(--size-space-300);
  }

  .rn-kodawari-interview-4,
  .rn-kodawari-interview-5 {
    flex-direction: column;
    gap: var(--size-space-1200);
    padding: var(--size-space-800);
  }

  .rn-kodawari-interview-4 {
    align-items: flex-start;
  }

  .rn-kodawari-interview-5 {
    align-items: flex-end;
  }

  .rn-kodawari-interview-5 .rn-kodawari-rectangle-2 {
    order: -1;
    align-self: flex-end;
  }

  .rn-kodawari-rectangle,
  .rn-kodawari-rectangle-2 {
    width: 200px;
    min-width: 200px;
  }

  .rn-kodawari-text-wrapper-7 {
    font-size: var(--h-2-font-size);
    letter-spacing: var(--h-2-letter-spacing);
    line-height: 1.2;
  }
}

/* The CSS file continues with remaining sections... Due to length constraints, I'll create the file with a continuation marker */
/* ========================================
   MOTESMILE Section
   ======================================== */
.rn-motesmile-frame-19 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--size-space-1200);
  padding: var(--size-space-1600) clamp(20px, 6vw, 220px);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  background-image: url(https://ik.imagekit.io/riwa341hv/frame-10.png);
  background-size: cover;
  background-position: 50% 50%;
  overflow: hidden;
}

.frame-19::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(30, 30, 30, 0.8);
  z-index: 0;
}

.frame-19>* {
  position: relative;
  z-index: 1;
}

.rn-motesmile-frame-7 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--size-space-300);
  position: relative;
  width: min(100%, 1000px);
  flex: 0 0 auto;
}

.rn-motesmile-img {
  position: relative;
  width: 24px;
  height: 24px;
  aspect-ratio: 1;
}

.rn-motesmile-text-wrapper-24 {
  position: relative;
  width: 100%;
  font-family: var(--h-2-font-family);
  font-weight: var(--h-2-font-weight);
  color: var(--basewhite);
  font-size: var(--h-2-font-size);
  text-align: center;
  letter-spacing: 5px;
  line-height: var(--h-2-line-height);
  font-style: var(--h-2-font-style);
}

.rn-motesmile-interview-6 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--size-space-200);
  padding: var(--size-space-600) var(--size-space-800);
  position: relative;
  width: min(100%, 1000px);
  flex: 0 0 auto;
  border: 2px solid var(--basewhite);
}

.rn-motesmile-text-wrapper-25 {
  position: relative;
  width: 100%;
  font-family: var(--subtitle-font-family);
  font-weight: var(--subtitle-font-weight);
  color: var(--basewhite);
  font-size: var(--subtitle-font-size);
  letter-spacing: var(--subtitle-letter-spacing);
  line-height: var(--subtitle-line-height);
  font-style: var(--subtitle-font-style);
}

.rn-motesmile-element-2 {
  position: relative;
  width: 100%;
  font-family: var(--body-1-font-family);
  font-weight: var(--body-1-font-weight);
  color: var(--basewhite);
  font-size: var(--body-1-font-size);
  letter-spacing: var(--body-1-letter-spacing);
  line-height: var(--body-1-line-height);
  font-style: var(--body-1-font-style);
}

.rn-motesmile-frame-20 {
  display: flex;
  align-items: flex-start;
  gap: var(--size-space-1200);
  position: relative;
  width: min(100%, 1000px);
  flex: 0 0 auto;
}

.rn-motesmile-element-3 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 476px);
  flex: 1 1 0;
  min-width: 0;
  position: relative;
}

.rn-motesmile-group-2 {
  position: relative;
  width: 70px;
  height: 140px;
}

.rn-motesmile-frame-21 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--size-space-300);
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.rn-motesmile-text-wrapper-26 {
  position: relative;
  width: 100%;
  font-family: var(--body-1-font-family);
  font-weight: 700;
  color: var(--basewhite);
  font-size: var(--body-1-font-size);
  text-align: center;
  letter-spacing: var(--body-1-letter-spacing);
  line-height: var(--body-1-line-height);
  font-style: var(--body-1-font-style);
}

.rn-motesmile-text-wrapper-27 {
  position: relative;
  width: 100%;
  font-family: var(--h-3-font-family);
  font-weight: var(--h-3-font-weight);
  color: var(--basewhite);
  font-size: var(--h-3-font-size);
  text-align: center;
  letter-spacing: var(--h-3-letter-spacing);
  line-height: var(--h-3-line-height);
  font-style: var(--h-3-font-style);
}

.rn-motesmile-frame-22 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--size-space-200);
  position: relative;
  width: min(100%, 1000px);
  flex: 0 0 auto;
}

.rn-motesmile-text-wrapper-28 {
  position: relative;
  width: 100%;
  font-family: var(--body-1-font-family);
  font-weight: var(--body-1-font-weight);
  color: var(--basewhite);
  font-size: var(--body-1-font-size);
  text-align: center;
  letter-spacing: var(--body-1-letter-spacing);
  line-height: var(--body-1-line-height);
  font-style: var(--body-1-font-style);
}

.rn-motesmile-text-wrapper-29 {
  position: relative;
  width: 100%;
  font-family: var(--h-2-font-family);
  font-weight: var(--h-2-font-weight);
  color: var(--basewhite);
  font-size: var(--h-2-font-size);
  text-align: center;
  letter-spacing: 1.6px;
  line-height: var(--h-2-line-height);
  font-style: var(--h-2-font-style);
}

.rn-motesmile-button-3 {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--size-space-100);
  padding: var(--size-space-300) var(--size-space-400) var(--size-space-300) var(--size-space-600);
  background-color: var(--basewhite);
  border: 1px solid var(--secondary);
  position: relative;
  flex: 0 0 auto;
  border-radius: 99px;
}

.rn-motesmile-text-wrapper-9 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-family: var(--button-small-font-family);
  font-weight: var(--button-small-font-weight);
  color: var(--secondary);
  font-size: var(--button-small-font-size);
  text-align: center;
  line-height: var(--button-small-line-height);
  white-space: nowrap;
  position: relative;
  letter-spacing: var(--button-small-letter-spacing);
  font-style: var(--button-small-font-style);
}

.rn-motesmile-img-2 {
  position: relative;
  width: 24px;
  height: 24px;
}

@media (max-width: 1024px) {
  .rn-motesmile-frame-20 {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .rn-motesmile-element-3 {
    width: min(100%, 700px);
  }
}

@media (max-width: 768px) {
  .rn-motesmile-frame-19 {
    gap: var(--size-space-1200);
    padding: var(--size-space-1600) 16px;
    background-image: url(https://ik.imagekit.io/riwa341hv/frame-37.png);
  }

  .rn-motesmile-frame-20 {
    gap: var(--size-space-1200);
  }

  .rn-motesmile-interview-6 {
    padding: 20px 16px;
  }

  .rn-motesmile-text-wrapper-24 {
    letter-spacing: 2px;
  }

  .rn-motesmile-text-wrapper-25 {
    font-size: 20px;
  }

  .rn-motesmile-text-wrapper-27 {
    font-size: clamp(22px, 5.6vw, 26px);
    letter-spacing: clamp(0.8px, 0.32vw, 1.3px);
  }
}

@media (max-width: 430px) {
  .rn-motesmile-frame-19 {
    gap: var(--size-space-1200);
    padding: var(--size-space-1200) 16px;
  }

  .rn-motesmile-group-2 {
    width: 52px;
    height: 104px;
  }
}

/* ========================================
   REASONS Section
   ======================================== */
.rn-reasons-frame-13 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--size-space-800);
  padding: var(--size-space-1600) clamp(20px, 6vw, 220px);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--basewhite);
}

.rn-reasons-frame-7 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--size-space-300);
  position: relative;
  width: min(100%, 1000px);
  flex: 0 0 auto;
}

.rn-reasons-img {
  position: relative;
  width: 24px;
  height: 24px;
  aspect-ratio: 1;
}

.rn-reasons-text-wrapper-30 {
  position: relative;
  width: 100%;
  font-family: var(--subtitle-font-family);
  font-weight: var(--subtitle-font-weight);
  color: var(--baseblack);
  font-size: var(--subtitle-font-size);
  text-align: center;
  letter-spacing: var(--subtitle-letter-spacing);
  line-height: var(--subtitle-line-height);
  font-style: var(--subtitle-font-style);
}

.rn-reasons-text-wrapper-7 {
  position: relative;
  width: 100%;
  font-family: var(--h-2-font-family);
  font-weight: var(--h-2-font-weight);
  color: var(--baseblack);
  font-size: var(--h-2-font-size);
  text-align: center;
  letter-spacing: var(--h-2-letter-spacing);
  line-height: var(--h-2-line-height);
  font-style: var(--h-2-font-style);
}

.rn-reasons-text-wrapper-31 {
  position: relative;
  width: min(100%, 1000px);
  font-family: var(--body-1-font-family);
  font-weight: var(--body-1-font-weight);
  color: var(--baseblack);
  font-size: var(--body-1-font-size);
  text-align: center;
  letter-spacing: var(--body-1-letter-spacing);
  line-height: var(--body-1-line-height);
  font-style: var(--body-1-font-style);
}

.rn-reasons-frame-10 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--size-space-400);
  position: relative;
  width: min(100%, 1000px);
  flex: 0 0 auto;
}

.rn-reasons-interview-7 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--size-space-800);
  padding: var(--size-space-600) var(--size-space-800);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--basegrey-01);
}

.rn-reasons-div-wrapper {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 0 var(--size-space-200);
  position: relative;
  flex: 0 0 auto;
  border-bottom: 1px solid var(--secondary);
}

.rn-reasons-text-wrapper-32 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--h-2-font-family);
  font-weight: var(--h-2-font-weight);
  color: var(--secondary);
  font-size: var(--h-2-font-size);
  text-align: center;
  letter-spacing: var(--h-2-letter-spacing);
  line-height: var(--h-2-line-height);
  white-space: nowrap;
  font-style: var(--h-2-font-style);
}

.rn-reasons-frame-21 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--size-space-300);
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.rn-reasons-text-wrapper-22 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: -1px;
  font-family: var(--subtitle-font-family);
  font-weight: var(--subtitle-font-weight);
  color: var(--baseblack);
  font-size: var(--subtitle-font-size);
  letter-spacing: var(--subtitle-letter-spacing);
  line-height: var(--subtitle-line-height);
  font-style: var(--subtitle-font-style);
}

.rn-reasons-frame-23 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
}

.rn-reasons-frame-24 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--size-space-100) var(--size-space-200);
  position: relative;
  flex: 0 0 auto;
  background-color: var(--basewhite);
  border-radius: var(--size-radius-100);
}

.rn-reasons-text-wrapper-33 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--body-1-font-family);
  font-weight: var(--body-1-font-weight);
  color: var(--baseblack);
  font-size: var(--body-1-font-size);
  letter-spacing: var(--body-1-letter-spacing);
  line-height: var(--body-1-line-height);
  white-space: normal;
  overflow-wrap: anywhere;
  font-style: var(--body-1-font-style);
}

.rn-reasons-text-wrapper-34 {
  position: relative;
  flex: 1;
  min-width: 0;
  font-family: var(--subtitle-font-family);
  font-weight: var(--subtitle-font-weight);
  color: var(--baseblack);
  font-size: var(--subtitle-font-size);
  letter-spacing: var(--subtitle-letter-spacing);
  line-height: var(--subtitle-line-height);
  font-style: var(--subtitle-font-style);
}

.rn-reasons-frame-25 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: var(--size-space-200);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.rn-reasons-frame-26 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--size-space-100) var(--size-space-200);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--basewhite);
  border-radius: var(--size-radius-100);
}

.rn-reasons-text-wrapper-35 {
  position: relative;
  flex: 1;
  margin-top: -1px;
  font-family: var(--body-1-font-family);
  font-weight: var(--body-1-font-weight);
  color: var(--baseblack);
  font-size: var(--body-1-font-size);
  letter-spacing: var(--body-1-letter-spacing);
  line-height: var(--body-1-line-height);
  font-style: var(--body-1-font-style);
}

.rn-reasons-frame-27 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--size-space-200);
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.rn-reasons-frame-10 .rn-reasons-interview-7:nth-of-type(4) .rn-reasons-frame-23 {
  max-width: 100%;
}

.rn-reasons-frame-10 .rn-reasons-interview-7:nth-of-type(4) .rn-reasons-frame-24 {
  display: inline-flex;
  width: auto;
  max-width: 100%;
}

.rn-reasons-frame-10 .rn-reasons-interview-7:nth-of-type(4) .rn-reasons-text-wrapper-33 {
  width: auto;
  max-width: 100%;
}

@media (max-width: 768px) {
  .rn-reasons-frame-13 {
    padding: var(--size-space-800) var(--size-space-400);
  }

  .rn-reasons-interview-7 {
    flex-direction: row;
    align-items: center;
    gap: var(--size-space-800);
    padding: var(--size-space-600) var(--size-space-800);
  }

  .rn-reasons-text-wrapper-30 {
    font-size: var(--subtitle-font-size);
  }

  .rn-reasons-text-wrapper-7 {
    letter-spacing: var(--h-2-letter-spacing);
  }

  .rn-reasons-frame-21,
  .rn-reasons-frame-27 {
    width: auto;
    flex: 1 1 auto;
    min-width: 0;
  }
}

@media (max-width: 390px) {
  .rn-reasons-frame-13 {
    padding-inline: var(--size-space-300);
  }

  .rn-reasons-interview-7 {
    gap: var(--size-space-400);
    padding: var(--size-space-400);
    align-items: center;
  }

  .rn-reasons-frame-23 {
    width: 100%;
  }

  .rn-reasons-frame-24 {
    max-width: 100%;
  }

}

@media (max-width: 430px) {
  .rn-reasons-button-3 {
    width: 100%;
    justify-content: center;
    padding-left: var(--size-space-400);
    padding-right: var(--size-space-400);
  }
}

.rn-reasons-button-3 {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--size-space-100);
  padding: var(--size-space-300) var(--size-space-400) var(--size-space-300) var(--size-space-600);
  background-color: var(--basewhite);
  border: 1px solid var(--secondary);
  position: relative;
  flex: 0 0 auto;
  border-radius: 99px;
}

.rn-reasons-text-wrapper-9 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-family: var(--button-small-font-family);
  font-weight: var(--button-small-font-weight);
  color: var(--secondary);
  font-size: var(--button-small-font-size);
  text-align: center;
  line-height: var(--button-small-line-height);
  white-space: nowrap;
  position: relative;
  letter-spacing: var(--button-small-letter-spacing);
  font-style: var(--button-small-font-style);
}

.rn-reasons-img-2 {
  position: relative;
  width: 24px;
  height: 24px;
}

/* ========================================
   MENU Section
   ======================================== */
.rn-menu-frame-13 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--size-space-800);
  padding: var(--size-space-1600) clamp(20px, 6vw, 220px);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--basewhite);
}

.rn-menu-frame-7 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--size-space-300);
  position: relative;
  width: min(100%, 1000px);
  flex: 0 0 auto;
}

.rn-menu-img {
  position: relative;
  width: 24px;
  height: 24px;
  aspect-ratio: 1;
}

.rn-menu-text-wrapper-7 {
  position: relative;
  width: 100%;
  font-family: var(--h-2-font-family);
  font-weight: var(--h-2-font-weight);
  color: var(--baseblack);
  font-size: var(--h-2-font-size);
  text-align: center;
  letter-spacing: 5px;
  line-height: var(--h-2-line-height);
  font-style: var(--h-2-font-style);
}

.rn-menu-frame-8 {
  display: flex;
  align-items: flex-start;
  gap: var(--size-space-600);
  position: relative;
  width: min(100%, 1000px);
  flex: 0 0 auto;
}

.rn-menu-interview-8 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--size-space-400);
  padding: var(--size-space-600);
  position: relative;
  flex: 1;
  align-self: stretch;
  flex-grow: 1;
  min-width: 0;
  background-color: var(--basewhite);
  border: 2px solid var(--tertiary);
}

.rn-menu-interview-9 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--size-space-400);
  padding: var(--size-space-600);
  position: relative;
  flex: 1;
  align-self: stretch;
  flex-grow: 1;
  min-height: 257px;
  min-width: 0;
  background-color: var(--basewhite);
  border: 2px solid var(--tertiary);
}

.rn-menu-frame-28 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--size-space-200);
  position: relative;
  flex: 1;
  align-self: stretch;
  width: 100%;
  flex-grow: 1;
}

.rn-menu-text-wrapper-36 {
  position: relative;
  width: 100%;
  font-family: var(--h-3-font-family);
  font-weight: var(--h-3-font-weight);
  color: var(--baseblack);
  font-size: var(--h-3-font-size);
  letter-spacing: var(--h-3-letter-spacing);
  line-height: var(--h-3-line-height);
  font-style: var(--h-3-font-style);
}

.rn-menu-text-wrapper-37 {
  position: relative;
  width: 100%;
  font-family: var(--body-2-font-family);
  font-weight: var(--body-2-font-weight);
  color: var(--baseblack);
  font-size: var(--body-2-font-size);
  letter-spacing: var(--body-2-letter-spacing);
  line-height: var(--body-2-line-height);
  font-style: var(--body-2-font-style);
}

.rn-menu-text-wrapper-38 {
  position: relative;
  width: 100%;
  min-height: 104px;
  font-family: var(--body-1-font-family);
  font-weight: var(--body-1-font-weight);
  color: var(--baseblack);
  font-size: var(--body-1-font-size);
  letter-spacing: var(--body-1-letter-spacing);
  line-height: var(--body-1-line-height);
  font-style: var(--body-1-font-style);
}

.rn-menu-text-wrapper-23 {
  position: relative;
  width: 100%;
  font-family: var(--body-1-font-family);
  font-weight: var(--body-1-font-weight);
  color: var(--baseblack);
  font-size: var(--body-1-font-size);
  letter-spacing: var(--body-1-letter-spacing);
  line-height: var(--body-1-line-height);
  font-style: var(--body-1-font-style);
}

.rn-menu-text-wrapper-39 {
  position: relative;
  width: min(100%, 1000px);
  font-family: var(--body-2-font-family);
  font-weight: var(--body-2-font-weight);
  color: var(--primary);
  font-size: var(--body-2-font-size);
  text-align: center;
  letter-spacing: var(--body-2-letter-spacing);
  line-height: var(--body-2-line-height);
  font-style: var(--body-2-font-style);
}

.rn-menu-button-3 {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--size-space-100);
  padding: var(--size-space-300) var(--size-space-400) var(--size-space-300) var(--size-space-600);
  background-color: var(--basewhite);
  border: 1px solid var(--secondary);
  position: relative;
  flex: 0 0 auto;
  border-radius: 99px;
}

.rn-menu-text-wrapper-9 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-family: var(--button-small-font-family);
  font-weight: var(--button-small-font-weight);
  color: var(--secondary);
  font-size: var(--button-small-font-size);
  text-align: center;
  line-height: var(--button-small-line-height);
  white-space: nowrap;
  position: relative;
  letter-spacing: var(--button-small-letter-spacing);
  font-style: var(--button-small-font-style);
}

.rn-menu-img-2 {
  position: relative;
  width: 24px;
  height: 24px;
}

@media (max-width: 1024px) {
  .rn-menu-frame-8 {
    flex-wrap: wrap;
  }

  .rn-menu-interview-8,
  .rn-menu-interview-9 {
    flex: 1 1 calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  .rn-menu-frame-13 {
    padding: var(--size-space-1600) var(--size-space-400);
  }

  .rn-menu-frame-8 {
    gap: var(--size-space-600);
  }

  .rn-menu-interview-8,
  .rn-menu-interview-9 {
    flex: 1 1 100%;
    padding: var(--size-space-600);
    min-height: auto;
  }

  .rn-menu-text-wrapper-7 {
    letter-spacing: var(--h-2-letter-spacing);
  }

  .rn-menu-text-wrapper-38,
  .rn-menu-text-wrapper-23 {
    min-height: 0;
  }
}

@media (max-width: 390px) {
  .rn-menu-frame-13 {
    padding-inline: var(--size-space-300);
  }

  .rn-menu-frame-8 {
    gap: var(--size-space-400);
  }

  .rn-menu-interview-8,
  .rn-menu-interview-9 {
    padding: var(--size-space-400);
  }
}

@media (max-width: 430px) {
  .rn-menu-button-3 {
    width: 100%;
    justify-content: center;
    padding-left: var(--size-space-400);
    padding-right: var(--size-space-400);
  }
}

/* ========================================
   DOCTORS Section
   ======================================== */
.rn-doctors-frame-29 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--size-space-1200);
  padding: var(--size-space-1600) clamp(20px, 6vw, 220px);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--basegrey-01);
}

.rn-doctors-frame-30 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--size-space-300);
  position: relative;
  flex: 0 0 auto;
}

.rn-doctors-img {
  position: relative;
  width: 24px;
  height: 24px;
  aspect-ratio: 1;
}

.rn-doctors-text-wrapper-40 {
  position: relative;
  width: fit-content;
  font-family: var(--h-2-font-family);
  font-weight: var(--h-2-font-weight);
  color: var(--baseblack);
  font-size: var(--h-2-font-size);
  letter-spacing: var(--h-2-letter-spacing);
  line-height: var(--h-2-line-height);
  white-space: nowrap;
  font-style: var(--h-2-font-style);
}

.rn-doctors-text-wrapper-41 {
  position: relative;
  width: fit-content;
  font-family: var(--body-1-font-family);
  font-weight: var(--body-1-font-weight);
  color: var(--secondary);
  font-size: var(--body-1-font-size);
  letter-spacing: var(--body-1-letter-spacing);
  line-height: var(--body-1-line-height);
  white-space: nowrap;
  font-style: var(--body-1-font-style);
}

.rn-doctors-frame-31 {
  display: flex;
  align-items: flex-start;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.rn-doctors-frame-32 {
  position: relative;
  flex: 1;
  flex-grow: 1;
  aspect-ratio: 1;
  background-image: url(https://ik.imagekit.io/riwa341hv/frame-20.png);
  background-size: cover;
  background-position: 50% 50%;
}

.rn-doctors-frame-33 {
  position: relative;
  flex: 1;
  flex-grow: 1;
  aspect-ratio: 1;
  background-image: url(https://ik.imagekit.io/riwa341hv/frame-22.png);
  background-size: cover;
  background-position: 50% 50%;
}

.rn-doctors-frame-34 {
  position: relative;
  flex: 1;
  flex-grow: 1;
  aspect-ratio: 1;
  background-image: url(https://ik.imagekit.io/riwa341hv/frame-21.png);
  background-size: cover;
  background-position: 50% 50%;
}

.rn-doctors-frame-35 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--size-space-400);
  position: relative;
  width: min(100%, 1000px);
  flex: 0 0 auto;
}

.rn-doctors-frame-36 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--size-space-200);
  padding: 0 0 var(--size-space-400);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  border-bottom: 1px solid var(--basegrey-02);
}

.rn-doctors-frame-37 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--size-space-200);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.rn-doctors-text-wrapper-42 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--h-2-font-family);
  font-weight: var(--h-2-font-weight);
  color: var(--baseblack);
  font-size: var(--h-2-font-size);
  letter-spacing: var(--h-2-letter-spacing);
  line-height: var(--h-2-line-height);
  white-space: nowrap;
  font-style: var(--h-2-font-style);
}

.rn-doctors-text-wrapper-43 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-family: var(--body-2-font-family);
  font-weight: var(--body-2-font-weight);
  color: var(--secondary);
  font-size: var(--body-2-font-size);
  letter-spacing: var(--body-2-letter-spacing);
  line-height: var(--body-2-line-height);
  white-space: nowrap;
  font-style: var(--body-2-font-style);
}

.rn-doctors-text-wrapper-44 {
  position: relative;
  width: 100%;
  font-family: var(--body-2-font-family);
  font-weight: var(--body-2-font-weight);
  color: var(--baseblack);
  font-size: var(--body-2-font-size);
  text-align: center;
  letter-spacing: var(--body-2-letter-spacing);
  line-height: var(--body-2-line-height);
  font-style: var(--body-2-font-style);
}

.rn-doctors-button-3 {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--size-space-100);
  padding: var(--size-space-300) var(--size-space-400) var(--size-space-300) var(--size-space-600);
  background-color: var(--basewhite);
  border: 1px solid var(--secondary);
  border-radius: 99px;
  position: relative;
  flex: 0 0 auto;
}

.rn-doctors-text-wrapper-9 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-family: var(--button-small-font-family);
  font-weight: var(--button-small-font-weight);
  color: var(--secondary);
  font-size: var(--button-small-font-size);
  text-align: center;
  line-height: var(--button-small-line-height);
  white-space: nowrap;
  position: relative;
  letter-spacing: var(--button-small-letter-spacing);
  font-style: var(--button-small-font-style);
}

.rn-doctors-img-2 {
  position: relative;
  width: 24px;
  height: 24px;
}

.rn-doctors-frame-38 {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: var(--size-space-1200);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.rn-doctors-frame-20 {
  display: flex;
  align-items: flex-start;
  gap: var(--size-space-1200);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.rn-doctors-frame-10 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--size-space-400);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.rn-doctors-frame-18 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--size-space-400);
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.rn-doctors-frame-39 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--size-space-200);
  padding: 0 0 var(--size-space-400);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  border-bottom: 1px solid var(--basegrey-02);
}

.rn-doctors-text-wrapper-45 {
  position: relative;
  width: 100%;
  margin-top: -1px;
  font-family: var(--body-2-font-family);
  font-weight: var(--body-2-font-weight);
  color: var(--baseblack);
  font-size: var(--body-2-font-size);
  letter-spacing: var(--body-2-letter-spacing);
  line-height: var(--body-2-line-height);
  font-style: var(--body-2-font-style);
}

.rn-doctors-frame-40 {
  display: flex;
  align-items: baseline;
  gap: var(--size-space-400);
  position: relative;
  width: 100%;
  min-height: 38px;
}

.rn-doctors-text-wrapper-37 {
  position: relative;
  width: 100%;
  font-family: var(--body-2-font-family);
  font-weight: var(--body-2-font-weight);
  color: var(--baseblack);
  font-size: var(--body-2-font-size);
  letter-spacing: var(--body-2-letter-spacing);
  line-height: var(--body-2-line-height);
  font-style: var(--body-2-font-style);
}

.rn-doctors-frame-41 {
  display: flex;
  align-items: flex-start;
  gap: var(--size-space-600);
  padding: var(--size-space-400);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--basewhite);
}

.rn-doctors-text-wrapper-46 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1px;
  padding: var(--size-space-050) var(--size-space-200);
  background-color: var(--secondary);
  color: var(--basewhite);
  font-family: var(--body-1-font-family);
  font-weight: var(--body-1-font-weight);
  font-size: var(--body-1-font-size);
  letter-spacing: var(--body-1-letter-spacing);
  line-height: var(--body-1-line-height);
  white-space: nowrap;
  font-style: var(--body-1-font-style);
  flex-shrink: 0;
}

.rn-doctors-text-wrapper-35 {
  position: relative;
  flex: 1;
  margin-top: -1px;
  font-family: var(--body-1-font-family);
  font-weight: var(--body-1-font-weight);
  color: var(--baseblack);
  font-size: var(--body-1-font-size);
  letter-spacing: var(--body-1-letter-spacing);
  line-height: var(--body-1-line-height);
  font-style: var(--body-1-font-style);
}

.rn-doctors-element-4 {
  position: relative;
  flex: 1;
  margin-top: -1px;
  font-family: "Noto Sans JP", Helvetica;
  font-weight: 500;
  color: var(--baseblack);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 25.6px;
}

.rn-doctors-rectangle-3 {
  position: relative;
  width: clamp(220px, 30vw, 300px);
  height: clamp(220px, 30vw, 300px);
  object-fit: cover;
}

@media (max-width: 1024px) {

  .rn-doctors-frame-38,
  .rn-doctors-frame-20 {
    flex-direction: column;
    gap: 24px;
  }

  .rn-doctors-frame-38 {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .rn-doctors-frame-41 {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .rn-doctors-frame-29 {
    gap: 32px;
    padding: 56px 16px;
  }

  /* SP: Figma通り「写真が上・テキストが下」。男性医師=写真右寄せ、女性医師=写真左寄せ */
  .rn-doctors-frame-38 {
    flex-direction: column-reverse;
    align-items: flex-end;
  }

  .rn-doctors-frame-20 {
    align-items: flex-start;
  }

  .rn-doctors-frame-40 {
    flex-wrap: wrap;
    min-height: 0;
  }

  .rn-doctors-text-wrapper-40,
  .rn-doctors-text-wrapper-42 {
    white-space: normal;
  }

  .rn-doctors-rectangle-3 {
    width: min(100%, 300px);
    height: auto;
    aspect-ratio: 1;
  }
}

@media (max-width: 430px) {
  .rn-doctors-frame-29 {
    padding: 48px 16px;
  }

  .rn-doctors-frame-41 {
    flex-direction: column;
  }

  .rn-doctors-button-3 {
    width: 100%;
    justify-content: center;
    padding-left: var(--size-space-400);
    padding-right: var(--size-space-400);
  }
}

/* ========================================
   FIRST VISIT RECRUIT Section
   ======================================== */
.rn-first-visit-recruit-frame-42 {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: var(--size-space-800);
  padding: var(--size-space-1600) clamp(20px, 6vw, 220px);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.rn-first-visit-recruit-view {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--size-space-600);
  padding: var(--size-space-600);
  flex: 1;
  flex-grow: 1;
  min-width: 0;
  background-color: var(--basewhite);
  border: 1px solid var(--tertiary);
  align-self: stretch;
}

.rn-first-visit-recruit-group-wrapper {
  position: absolute;
  top: calc(50% - 89px);
  right: 2px;
  width: 177px;
  height: 177px;
  aspect-ratio: 1;
  opacity: 0.2;
}

.rn-first-visit-recruit-group-3 {
  position: relative;
  width: 73.35%;
  height: 100%;
  left: 13.33%;
  background-image: url(https://ik.imagekit.io/riwa341hv/vector.svg);
  background-size: 100% 100%;
}

.rn-first-visit-recruit-frame-43 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--size-space-300);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.rn-first-visit-recruit-img {
  position: relative;
  width: 24px;
  height: 24px;
  aspect-ratio: 1;
}

.rn-first-visit-recruit-text-wrapper-40 {
  position: relative;
  width: 100%;
  font-family: var(--h-2-font-family);
  font-weight: var(--h-2-font-weight);
  color: var(--baseblack);
  font-size: var(--h-2-font-size);
  letter-spacing: 5px;
  line-height: var(--h-2-line-height);
  font-style: var(--h-2-font-style);
}

.rn-first-visit-recruit-text-wrapper-21 {
  position: relative;
  width: 100%;
  font-family: var(--body-1-font-family);
  font-weight: var(--body-1-font-weight);
  color: var(--baseblack);
  font-size: var(--body-1-font-size);
  letter-spacing: var(--body-1-letter-spacing);
  line-height: var(--body-1-line-height);
  font-style: var(--body-1-font-style);
}

.rn-first-visit-recruit-view-2 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--size-space-600);
  padding: var(--size-space-600);
  flex: 1;
  flex-grow: 1;
  min-width: 0;
  background-color: var(--secondary);
  align-self: stretch;
}

.rn-first-visit-recruit-text-wrapper-47 {
  position: relative;
  width: 100%;
  font-family: var(--h-2-font-family);
  font-weight: var(--h-2-font-weight);
  color: var(--basewhite);
  font-size: var(--h-2-font-size);
  letter-spacing: 5px;
  line-height: var(--h-2-line-height);
  font-style: var(--h-2-font-style);
}

.rn-first-visit-recruit-text-wrapper-48 {
  position: relative;
  width: 100%;
  font-family: var(--body-1-font-family);
  font-weight: var(--body-1-font-weight);
  color: var(--basewhite);
  font-size: var(--body-1-font-size);
  letter-spacing: var(--body-1-letter-spacing);
  line-height: var(--body-1-line-height);
  font-style: var(--body-1-font-style);
}

.rn-first-visit-recruit-group-4 {
  position: absolute;
  width: 31.63%;
  height: 86.32%;
  top: 6.94%;
  left: 64.05%;
  aspect-ratio: 0.84;
  opacity: 0.3;
}

.rn-first-visit-recruit-vector {
  position: absolute;
  width: 76.43%;
  height: 75.77%;
  top: 24.23%;
  left: 15.07%;
}

.rn-first-visit-recruit-vector-2 {
  position: absolute;
  width: 29.81%;
  height: 25.15%;
  top: 0;
  left: 70.3%;
}

.rn-first-visit-recruit-vector-3 {
  position: absolute;
  width: 27.23%;
  height: 22.96%;
  top: 37.33%;
  left: 26.81%;
}

.rn-first-visit-recruit-vector-4 {
  position: absolute;
  width: 23.08%;
  height: 19.47%;
  top: 14.95%;
  left: 0;
}

@media (max-width: 1024px) {
  .rn-first-visit-recruit-frame-42 {
    align-items: stretch;
  }
}

@media (max-width: 768px) {
  .rn-first-visit-recruit-frame-42 {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--size-space-800);
    padding: var(--size-space-800) var(--size-space-400);
  }

  .rn-first-visit-recruit-view,
  .rn-first-visit-recruit-view-2 {
    width: 100%;
    padding: var(--size-space-600);
  }

  .rn-first-visit-recruit-group-wrapper {
    width: min(177px, 42vw);
    height: min(177px, 42vw);
    top: 16px;
    right: 0;
  }

  .rn-first-visit-recruit-group-4 {
    width: min(177px, 42vw);
    height: min(177px, 42vw);
    top: 12px;
    right: 0;
    bottom: auto;
    left: auto;
  }

  .rn-first-visit-recruit-text-wrapper-40,
  .rn-first-visit-recruit-text-wrapper-47 {
    width: fit-content;
    letter-spacing: var(--h-2-letter-spacing);
    white-space: nowrap;
  }

  .rn-first-visit-recruit-text-wrapper-21,
  .rn-first-visit-recruit-text-wrapper-48 {
    font-size: var(--body-1-font-size);
    line-height: var(--body-1-line-height);
  }
}

@media (min-width: 431px) and (max-width: 768px) {
  .rn-first-visit-recruit-group-wrapper {
    width: clamp(140px, 28vw, 158px);
    height: clamp(140px, 28vw, 158px);
    top: clamp(10px, 2.2vw, 18px);
    right: 0;
  }

  .rn-first-visit-recruit-group-4 {
    width: clamp(146px, 29vw, 160px);
    height: clamp(146px, 29vw, 160px);
    top: clamp(8px, 2vw, 16px);
    right: 0;
    bottom: auto;
    left: auto;
  }
}

@media (max-width: 430px) {
  .rn-first-visit-recruit-frame-42 {
    padding: var(--size-space-800) var(--size-space-400);
    gap: var(--size-space-800);
  }

  .rn-first-visit-recruit-view,
  .rn-first-visit-recruit-view-2 {
    padding: var(--size-space-600);
  }

  .rn-first-visit-recruit-group-wrapper {
    width: clamp(162px, 41vw, 172px);
    height: clamp(162px, 41vw, 172px);
    top: 12px;
    right: 0;
  }

  .rn-first-visit-recruit-group-4 {
    width: clamp(154px, 39vw, 166px);
    height: clamp(154px, 39vw, 166px);
    right: 24px;
    left: auto;
    bottom: auto;
  }
}

@media (max-width: 390px) {
  .rn-first-visit-recruit-group-wrapper {
    width: 166px;
    height: 166px;
    top: 12px;
    right: 0;
  }

  .rn-first-visit-recruit-group-4 {
    width: 162px;
    height: 162px;
    right: 24px;
    left: auto;
    bottom: auto;
  }

  .rn-first-visit-recruit-text-wrapper-40,
  .rn-first-visit-recruit-text-wrapper-47 {
    letter-spacing: var(--h-2-letter-spacing);
  }
}

/* ========================================
   BLOG Section
   ======================================== */
.rn-blog-frame-44 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--size-space-800);
  padding: var(--size-space-1600) clamp(20px, 6vw, 220px);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--basegrey-01);
}

.rn-blog-frame-30 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--size-space-300);
  position: relative;
  flex: 0 0 auto;
}

.rn-blog-img {
  position: relative;
  width: 24px;
  height: 24px;
  aspect-ratio: 1;
}

.rn-blog-text-wrapper-40 {
  position: relative;
  width: fit-content;
  font-family: var(--h-2-font-family);
  font-weight: var(--h-2-font-weight);
  color: var(--baseblack);
  font-size: var(--h-2-font-size);
  letter-spacing: 5px;
  line-height: var(--h-2-line-height);
  white-space: nowrap;
  font-style: var(--h-2-font-style);
}

/* ブログ記事コンテナ */
.rn-blog-cards {
  width: min(100%, 1000px);
  text-align: center;
}

.rn-blog-list {
  display: flex;
  gap: var(--size-space-600);
  list-style: none;
  padding: 0;
  margin: 0;
}

/* CMS繰り返しコンテナ */
.rn-blog-list>div {
  display: contents;
}

/* 各カード */
.rn-blog-card {
  flex: 1;
  min-width: 0;
  background-color: var(--basewhite);
  border: 1px dashed var(--secondary);
  padding: var(--size-space-600);
  list-style: none;
}

.rn-blog-card-inner {
  display: flex;
  flex-direction: column;
  gap: var(--size-space-600);
  margin: 0;
  text-align: left;
}

/* サムネイル画像 */
.rn-blog-thumb {
  width: 100%;
  height: 222px;
  overflow: hidden;
}

.rn-blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* 日付 */
.rn-blog-date {
  font-family: var(--body-1-font-family);
  font-weight: var(--body-1-font-weight);
  color: var(--baseblack);
  font-size: var(--body-1-font-size);
  letter-spacing: var(--body-1-letter-spacing);
  line-height: var(--body-1-line-height);
  margin: 0;
}

/* タイトル */
.rn-blog-title {
  width: 100%;
  height: 105px;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 3;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-family: var(--subtitle-font-family);
  font-weight: var(--subtitle-font-weight);
  color: var(--baseblack);
  font-size: var(--subtitle-font-size);
  letter-spacing: var(--subtitle-letter-spacing);
  line-height: var(--subtitle-line-height);
  margin: 0;
}

.rn-blog-title a {
  color: inherit;
  text-decoration: none;
}

.rn-blog-button-3 {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--size-space-100);
  padding: var(--size-space-300) var(--size-space-400) var(--size-space-300) var(--size-space-600);
  background-color: var(--basewhite);
  border: 1px solid var(--secondary);
  border-radius: 99px;
  position: relative;
  flex: 0 0 auto;
  margin-top: var(--size-space-400);
}

/* レスポンシブ */
@media (max-width: 768px) {
  .rn-blog-frame-44 {
    padding: var(--size-space-1600) var(--size-space-400);
  }

  .rn-blog-list {
    flex-direction: column;
  }

  .rn-blog-card {
    width: 100%;
  }

  .rn-blog-text-wrapper-40 {
    letter-spacing: 1.6px;
  }
}

/* ========================================
   PRICE Section
   ======================================== */
.rn-price-frame-13 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--size-space-800);
  padding: var(--size-space-1600) clamp(20px, 6vw, 220px);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--basewhite);
}

.rn-price-frame-30 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--size-space-300);
  position: relative;
  flex: 0 0 auto;
}

.rn-price-img {
  position: relative;
  width: 24px;
  height: 24px;
  aspect-ratio: 1;
}

.rn-price-text-wrapper-40 {
  position: relative;
  width: fit-content;
  font-family: var(--h-2-font-family);
  font-weight: var(--h-2-font-weight);
  color: var(--baseblack);
  font-size: var(--h-2-font-size);
  letter-spacing: 5px;
  line-height: var(--h-2-line-height);
  white-space: nowrap;
  font-style: var(--h-2-font-style);
}

.rn-price-frame-11 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--size-space-0);
  position: relative;
  width: min(100%, 1000px);
  flex: 0 0 auto;
}

.rn-price-frame-48 {
  display: flex;
  align-items: center;
  gap: var(--size-space-0);
  position: relative;
  width: 100%;
  height: 50px;
  flex: 0 0 auto;
  border-bottom: 1px solid var(--basegrey-01);
}

.rn-price-frame-49 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--size-space-300) var(--size-space-400);
  position: relative;
  flex: 1;
  flex-grow: 1;
  max-width: 150px;
  background-color: var(--basegrey-01);
  border-bottom: 1px solid var(--basewhite);
}

.rn-price-text-wrapper-50 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 26px;
  margin-top: -1px;
  font-family: var(--body-1-font-family);
  font-weight: var(--body-1-font-weight);
  color: var(--baseblack);
  font-size: var(--body-1-font-size);
  text-align: center;
  letter-spacing: var(--body-1-letter-spacing);
  line-height: var(--body-1-line-height);
  white-space: nowrap;
  font-style: var(--body-1-font-style);
}

.rn-price-frame-50 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--size-space-300) var(--size-space-400);
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.rn-price-text-wrapper-51 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 26px;
  margin-top: -1px;
  font-family: var(--subtitle-font-family);
  font-weight: var(--subtitle-font-weight);
  color: var(--primary);
  font-size: var(--subtitle-font-size);
  text-align: center;
  letter-spacing: var(--subtitle-letter-spacing);
  line-height: var(--subtitle-line-height);
  white-space: nowrap;
  font-style: var(--subtitle-font-style);
}

.rn-price-frame-51 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--size-space-400);
  padding: var(--size-space-300) var(--size-space-400);
  position: relative;
  flex: 1;
  align-self: stretch;
  flex-grow: 1;
}

.rn-price-text-wrapper-52 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--body-1-font-family);
  font-weight: var(--body-1-font-weight);
  color: var(--baseblack);
  font-size: var(--body-1-font-size);
  text-align: center;
  letter-spacing: var(--body-1-letter-spacing);
  line-height: var(--body-1-line-height);
  white-space: nowrap;
  font-style: var(--body-1-font-style);
}

.rn-price-frame-52 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--size-space-050) var(--size-space-300);
  position: relative;
  flex: 0 0 auto;
  flex-shrink: 0;
  margin-top: -2px;
  margin-bottom: -2px;
  background-color: var(--baseblack);
  border-radius: 99px;
}

.rn-price-text-wrapper-53 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--body-1-font-family);
  font-weight: var(--body-1-font-weight);
  color: var(--basewhite);
  font-size: var(--body-1-font-size);
  letter-spacing: var(--body-1-letter-spacing);
  line-height: var(--body-1-line-height);
  white-space: nowrap;
  font-style: var(--body-1-font-style);
}

.rn-price-frame-53 {
  display: flex;
  align-items: center;
  gap: var(--size-space-0);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.rn-price-frame-54 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--size-space-300) var(--size-space-400);
  position: relative;
  flex: 1;
  flex-grow: 1;
  max-width: 150px;
  align-self: stretch;
  background-color: var(--basegrey-01);
}

.rn-price-frame-55 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--size-space-300) var(--size-space-400);
  position: relative;
  flex: 1;
  align-self: stretch;
  flex-grow: 1;
}

.rn-price-text-wrapper-54 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  margin-top: -1px;
  font-family: var(--body-1-font-family);
  font-weight: var(--body-1-font-weight);
  color: var(--baseblack);
  font-size: var(--body-1-font-size);
  text-align: center;
  letter-spacing: var(--body-1-letter-spacing);
  line-height: var(--body-1-line-height);
  font-style: var(--body-1-font-style);
}

.rn-price-frame-56 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--size-space-400);
  padding: var(--size-space-600);
  position: relative;
  width: min(100%, 1000px);
  flex: 0 0 auto;
  background-color: var(--basegrey-01);
}

.rn-price-text-wrapper-55 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--subtitle-font-family);
  font-weight: var(--subtitle-font-weight);
  color: var(--baseblack);
  font-size: var(--subtitle-font-size);
  letter-spacing: var(--subtitle-letter-spacing);
  line-height: var(--subtitle-line-height);
  white-space: nowrap;
  font-style: var(--subtitle-font-style);
}

/* PC: 1行で横並び（Figma 2001-2277） */
.rn-price-frame-57 {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--size-space-150);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.rn-price-price-calc-row {
  display: contents;
}

.rn-price-frame-58 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: var(--size-space-0);
  padding: var(--size-space-400);
  position: relative;
  align-self: stretch;
  flex: 0 0 auto;
  background-color: var(--basewhite);
}

.rn-price-text-wrapper-44 {
  position: relative;
  width: 100%;
  font-family: var(--body-2-font-family);
  font-weight: var(--body-2-font-weight);
  color: var(--baseblack);
  font-size: var(--body-2-font-size);
  text-align: center;
  letter-spacing: var(--body-2-letter-spacing);
  line-height: var(--body-2-line-height);
  font-style: var(--body-2-font-style);
}

.rn-price-text-wrapper-31 {
  position: relative;
  width: 100%;
  font-family: var(--body-1-font-family);
  font-weight: var(--body-1-font-weight);
  color: var(--baseblack);
  font-size: var(--body-1-font-size);
  text-align: center;
  letter-spacing: var(--body-1-letter-spacing);
  line-height: var(--body-1-line-height);
  font-style: var(--body-1-font-style);
}

.rn-price-text-wrapper-56 {
  position: relative;
  width: fit-content;
  font-family: var(--body-1-font-family);
  font-weight: var(--body-1-font-weight);
  color: var(--baseblack);
  font-size: var(--body-1-font-size);
  letter-spacing: var(--body-1-letter-spacing);
  line-height: var(--body-1-line-height);
  white-space: nowrap;
  font-style: var(--body-1-font-style);
}

.rn-price-XX-XXX {
  position: relative;
  align-self: stretch;
  font-family: "Noto Sans JP", Helvetica;
  font-weight: 400;
  color: var(--baseblack);
  font-size: 12px;
  text-align: center;
  letter-spacing: 0;
  line-height: 19.2px;
}

.rn-price-text-wrapper-57 {
  font-family: var(--body-2-font-family);
  font-weight: var(--body-2-font-weight);
  color: #1e1e1e;
  font-size: var(--body-2-font-size);
  letter-spacing: var(--body-2-letter-spacing);
  line-height: var(--body-2-line-height);
  font-style: var(--body-2-font-style);
}

.rn-price-text-wrapper-58 {
  font-family: var(--body-1-font-family);
  font-weight: var(--body-1-font-weight);
  color: var(--baseblack);
  font-size: var(--body-1-font-size);
  letter-spacing: var(--body-1-letter-spacing);
  line-height: var(--body-1-line-height);
  font-style: var(--body-1-font-style);
}

.rn-price-frame-59 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: var(--size-space-0);
  padding: var(--size-space-400);
  position: relative;
  flex: 1;
  flex-grow: 1;
  background-color: var(--basewhite);
}

.rn-price-text-wrapper-59 {
  position: relative;
  width: 100%;
  margin-top: -1px;
  font-family: var(--body-2-font-family);
  font-weight: var(--body-2-font-weight);
  color: var(--baseblack);
  font-size: var(--body-2-font-size);
  text-align: center;
  letter-spacing: var(--body-2-letter-spacing);
  line-height: var(--body-2-line-height);
  font-style: var(--body-2-font-style);
}

.rn-price-text-wrapper-30 {
  position: relative;
  width: 100%;
  font-family: var(--subtitle-font-family);
  font-weight: var(--subtitle-font-weight);
  color: var(--baseblack);
  font-size: var(--subtitle-font-size);
  text-align: center;
  letter-spacing: var(--subtitle-letter-spacing);
  line-height: var(--subtitle-line-height);
  font-style: var(--subtitle-font-style);
}

.rn-price-text-wrapper-23 {
  position: relative;
  width: 100%;
  font-family: var(--body-1-font-family);
  font-weight: var(--body-1-font-weight);
  color: var(--baseblack);
  font-size: var(--body-1-font-size);
  letter-spacing: var(--body-1-letter-spacing);
  line-height: var(--body-1-line-height);
  font-style: var(--body-1-font-style);
}

.rn-price-frame-60 {
  display: flex;
  align-items: center;
  gap: var(--size-space-600);
  padding: var(--size-space-600);
  position: relative;
  width: min(100%, 1000px);
  flex: 0 0 auto;
  border: 1px solid var(--basegrey-02);
}

.rn-price-frame-61 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--size-space-100);
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.rn-price-text-wrapper-60 {
  position: relative;
  width: 100%;
  font-family: var(--subtitle-font-family);
  font-weight: var(--subtitle-font-weight);
  color: var(--secondary);
  font-size: var(--subtitle-font-size);
  letter-spacing: var(--subtitle-letter-spacing);
  line-height: var(--subtitle-line-height);
  font-style: var(--subtitle-font-style);
}

@media (max-width: 768px) {
  .rn-price-frame-13 {
    padding: 56px 16px;
  }

  .rn-price-text-wrapper-40 {
    letter-spacing: 2px;
  }

  .rn-price-frame-56 {
    padding: 20px 16px;
  }

  .rn-price-frame-60 {
    padding: 20px 16px;
  }

  /* SP: 3段に分けて表示。1段目と2段目の横幅を揃える（親幅に合わせて伸縮） */
  .rn-price-frame-57 {
    flex-direction: column;
    gap: var(--size-space-200);
    width: 100%;
  }

  .rn-price-price-calc-row {
    display: flex;
    align-items: center;
    gap: var(--size-space-200);
    flex-wrap: nowrap;
    width: 100%;
  }

  /* 1段目・2段目の白ボックスを伸ばして親幅に追従 */
  .rn-price-price-calc-row:nth-child(1) .rn-price-frame-58,
  .rn-price-price-calc-row:nth-child(2) .rn-price-frame-58 {
    flex: 1 1 0;
    min-width: 0;
  }

  /* 1段目1つ目（初診料 無料）だけ横幅を小さく */
  .rn-price-price-calc-row:nth-child(1) .rn-price-frame-58:nth-child(1) {
    flex: 0 1 auto;
  }
}

@media (max-width: 430px) {
  .rn-price-text-wrapper-40 {
    letter-spacing: var(--h-2-letter-spacing);
  }

  .rn-price-frame-48,
  .rn-price-frame-53 {
    height: auto;
  }

  .rn-price-frame-49,
  .rn-price-frame-54 {
    max-width: min(150px, 40%);
    min-width: min(94px, 26vw);
    width: clamp(94px, 34vw, 150px);
    padding: 12px;
    flex: 0 0 auto;
    align-self: stretch;
  }

  .rn-price-frame-50,
  .rn-price-frame-55 {
    padding: 12px;
    width: auto;
  }

  .rn-price-frame-51 {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--size-space-200);
    padding: 12px;
  }

  .rn-price-frame-57 {
    gap: var(--size-space-200);
  }

  .rn-price-price-calc-row {
    gap: var(--size-space-200);
  }

  .rn-price-frame-58 {
    padding: 12px;
  }

  .rn-price-frame-59 {
    justify-content: center;
    align-items: center;
    padding: 12px;
  }

  .rn-price-XX-XXX {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1px;
    white-space: nowrap;
  }

  .rn-price-frame-58,
  .rn-price-frame-59,
  .rn-price-XX-XXX {
    text-align: center;
  }
}

/* ========================================
   FAQ Section
   ======================================== */
.rn-faq-frame-13 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--size-space-800);
  padding: var(--size-space-1600) clamp(20px, 6vw, 220px);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--basewhite);
}

.rn-faq-frame-30 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--size-space-300);
  position: relative;
  flex: 0 0 auto;
}

.rn-faq-img {
  position: relative;
  width: 24px;
  height: 24px;
  aspect-ratio: 1;
}

.rn-faq-text-wrapper-40 {
  position: relative;
  width: fit-content;
  font-family: var(--h-2-font-family);
  font-weight: var(--h-2-font-weight);
  color: var(--baseblack);
  font-size: var(--h-2-font-size);
  letter-spacing: 5px;
  line-height: var(--h-2-line-height);
  white-space: nowrap;
  font-style: var(--h-2-font-style);
}

.rn-faq-frame-22 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--size-space-200);
  position: relative;
  width: min(100%, 1000px);
  flex: 0 0 auto;
}

.rn-faq-interview-10 {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 0 0 auto;
}

.rn-faq-interview-10-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--size-space-800);
  padding: var(--size-space-400) var(--size-space-600);
  background-color: var(--basewhite);
  border: 2px solid var(--basegrey-02);
  cursor: pointer;
  list-style: none;
}

.rn-faq-interview-10-summary::-webkit-details-marker {
  display: none;
}

.rn-faq-interview-11 {
  display: flex;
  align-items: flex-start;
  gap: var(--size-space-800);
  padding: var(--size-space-400) var(--size-space-600);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--basewhite);
}

.rn-faq-interview-11-inner {
  display: contents;
}

.rn-faq-text-wrapper-61 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -2px;
  font-family: var(--body-1-font-family);
  font-weight: var(--body-1-font-weight);
  color: var(--secondary);
  font-size: var(--body-1-font-size);
  letter-spacing: var(--body-1-letter-spacing);
  line-height: var(--body-1-line-height);
  white-space: nowrap;
  font-style: var(--body-1-font-style);
}

.rn-faq-text-wrapper-62 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  margin-top: -2px;
  font-family: var(--body-1-font-family);
  font-weight: var(--body-1-font-weight);
  color: var(--baseblack);
  font-size: var(--body-1-font-size);
  letter-spacing: var(--body-1-letter-spacing);
  line-height: var(--body-1-line-height);
  text-align: left;
  font-style: var(--body-1-font-style);
}

.rn-faq-interview-11 .rn-faq-text-wrapper-62 {
  align-items: flex-start;
}

.rn-faq-img-2 {
  position: relative;
  width: 24px;
  height: 24px;
  transition: transform 0.4s ease;
}

.rn-faq-interview-10.rn-faq-is-opened .rn-faq-interview-10-summary .rn-faq-img-2 {
  transform: rotate(180deg);
}

.rn-faq-interview-10 summary {
  cursor: pointer;
}

.rn-faq-js-enabled .rn-faq-js-content {
  overflow: hidden;
  height: 0;
  opacity: 0;
}

@media (max-width: 768px) {
  .rn-faq-frame-13 {
    padding: var(--size-space-1600) var(--size-space-400);
  }

  .rn-faq-text-wrapper-40 {
    letter-spacing: var(--h-2-letter-spacing);
  }

  .rn-faq-interview-10-summary,
  .rn-faq-interview-11 {
    gap: var(--size-space-800);
    padding: var(--size-space-400) var(--size-space-600);
  }

  .rn-faq-text-wrapper-61 {
    min-width: 2.6em;
  }
}

@media (max-width: 390px) {
  .rn-faq-frame-13 {
    padding-inline: var(--size-space-300);
  }

  .rn-faq-interview-10-summary,
  .rn-faq-interview-11 {
    gap: var(--size-space-400);
    padding-inline: var(--size-space-400);
  }
}

/* ========================================
   GALLERY Section
   ======================================== */
.rn-gallery-gallery {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0;
}

.rn-gallery-frame-31 {
  display: flex;
  align-items: flex-start;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  gap: 0;
}

.rn-gallery-frame-31 .rn-gallery-cell {
  position: relative;
  flex: 1;
  aspect-ratio: 1;
  background-size: cover;
  background-position: 50% 50%;
}

.rn-gallery-frame-62 {
  background-image: url(https://ik.imagekit.io/riwa341hv/frame-27.png);
}

.rn-gallery-frame-63 {
  background-image: url(https://ik.imagekit.io/riwa341hv/frame-26.png);
}

.rn-gallery-frame-64 {
  background-image: url(https://ik.imagekit.io/riwa341hv/frame-25.png);
}

.rn-gallery-frame-65 {
  background-image: url(https://ik.imagekit.io/riwa341hv/frame-24.png);
}

.rn-gallery-frame-66 {
  background-image: url(https://ik.imagekit.io/riwa341hv/frame-23.png);
}

.rn-gallery-frame-67 {
  background-image: url(https://ik.imagekit.io/riwa341hv/frame-22-1.png);
}

.rn-gallery-frame-68 {
  background-image: url(https://ik.imagekit.io/riwa341hv/frame-20-1.png);
}

.rn-gallery-frame-69 {
  background-image: url(https://ik.imagekit.io/riwa341hv/frame-21-1.png);
}

@media (max-width: 768px) {
  .rn-gallery-frame-31 {
    flex-wrap: wrap;
  }

  .rn-gallery-frame-31 .rn-gallery-cell {
    flex: 1 1 50%;
    min-width: 0;
  }
}

/* ========================================
   ACCESS Section
   ======================================== */
.rn-access-frame-44 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--size-space-800);
  padding: var(--size-space-1600) 220px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--basegrey-01);
}

.rn-access-frame-30 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--size-space-300);
  position: relative;
  flex: 0 0 auto;
}

.rn-access-img {
  position: relative;
  width: 24px;
  height: 24px;
  aspect-ratio: 1;
}

.rn-access-text-wrapper-40 {
  position: relative;
  width: fit-content;
  font-family: var(--h-2-font-family);
  font-weight: var(--h-2-font-weight);
  color: var(--baseblack);
  font-size: var(--h-2-font-size);
  letter-spacing: var(--h-2-letter-spacing);
  line-height: var(--h-2-line-height);
  white-space: nowrap;
  font-style: var(--h-2-font-style);
}

.rn-access-frame-70 {
  display: flex;
  align-items: flex-start;
  gap: var(--size-space-1600);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  max-width: 1000px;
  justify-content: space-between;
}

.rn-access-frame-18 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--size-space-400);
  position: relative;
  flex: 0 0 436px;
  max-width: 436px;
}

.rn-access-frame-71 {
  display: flex;
  align-items: flex-start;
  gap: var(--size-space-400);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.rn-access-text-wrapper-63 {
  position: relative;
  flex: 0 0 80px;
  max-width: 80px;
  margin-top: -1px;
  font-family: var(--body-1-font-family);
  font-weight: var(--body-1-font-weight);
  color: var(--secondary);
  font-size: var(--body-1-font-size);
  letter-spacing: var(--body-1-letter-spacing);
  line-height: var(--body-1-line-height);
  font-style: var(--body-1-font-style);
}

.rn-access-text-wrapper-35 {
  position: relative;
  flex: 1 1 auto;
  margin-top: -1px;
  font-family: var(--body-1-font-family);
  font-weight: var(--body-1-font-weight);
  color: var(--baseblack);
  font-size: var(--body-1-font-size);
  letter-spacing: var(--body-1-letter-spacing);
  line-height: var(--body-1-line-height);
  font-style: var(--body-1-font-style);
}

.rn-access-element-4 {
  position: relative;
  flex: 1 1 auto;
  margin-top: -1px;
  font-family: "Noto Sans JP", Helvetica;
  font-weight: 500;
  color: var(--baseblack);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 25.6px;
}

.rn-access-frame-72 {
  display: flex;
  align-items: center;
  gap: var(--size-space-400);
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.rn-access-text-wrapper-64 {
  position: relative;
  flex: 0 0 80px;
  max-width: 80px;
  font-family: var(--body-1-font-family);
  font-weight: var(--body-1-font-weight);
  color: var(--secondary);
  font-size: var(--body-1-font-size);
  letter-spacing: var(--body-1-letter-spacing);
  line-height: var(--body-1-line-height);
  font-style: var(--body-1-font-style);
}

.rn-access-text-wrapper-65 {
  position: relative;
  flex: 1 1 auto;
  font-family: "Noto Sans JP", Helvetica;
  font-weight: 500;
  color: var(--baseblack);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 25.6px;
}

.rn-access-frame-73 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--size-space-050) var(--size-space-200);
  position: relative;
  flex: 0 0 auto;
  background-color: var(--basewhite);
  border-radius: 4px;
}

.rn-access-frame-74 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--size-space-050) var(--size-space-200);
  position: relative;
  flex: 0 0 auto;
  background-color: var(--baseblack);
  border-radius: 4px;
}

.rn-access-text-wrapper-33 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--body-1-font-family);
  font-weight: var(--body-1-font-weight);
  color: var(--baseblack);
  font-size: var(--body-1-font-size);
  letter-spacing: var(--body-1-letter-spacing);
  line-height: var(--body-1-line-height);
  white-space: nowrap;
  font-style: var(--body-1-font-style);
}

.rn-access-text-wrapper-53 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--body-1-font-family);
  font-weight: var(--body-1-font-weight);
  color: var(--basewhite);
  font-size: var(--body-1-font-size);
  letter-spacing: var(--body-1-letter-spacing);
  line-height: var(--body-1-line-height);
  white-space: nowrap;
  font-style: var(--body-1-font-style);
}

.rn-access-rectangle-4 {
  position: relative;
  width: 500px;
  height: 500px;
  aspect-ratio: 1;
  border: 0;
  display: block;
}

@media (max-width: 1024px) {
  .rn-access-frame-44 {
    padding-right: var(--size-space-800);
    padding-left: var(--size-space-800);
  }

  .rn-access-frame-70 {
    gap: var(--size-space-800);
  }
}

@media (max-width: 768px) {
  .rn-access-frame-44 {
    padding-right: var(--size-space-500);
    padding-left: var(--size-space-500);
  }

  .rn-access-frame-70 {
    flex-direction: column;
  }

  .rn-access-frame-18 {
    flex: 1 1 auto;
    max-width: 100%;
  }

  .rn-access-text-wrapper-63,
  .rn-access-text-wrapper-64 {
    flex: 0 0 72px;
    max-width: 72px;
  }

  .rn-access-rectangle-4 {
    width: 100%;
    height: auto;
    min-height: 320px;
  }
}

@media (max-width: 430px) {
  .rn-access-frame-44 {
    gap: var(--size-space-600);
    padding-right: var(--size-space-400);
    padding-left: var(--size-space-400);
  }

  .rn-access-frame-70 {
    gap: var(--size-space-400);
  }

  .rn-access-frame-71,
  .rn-access-frame-72 {
    align-items: flex-start;
  }

  .rn-access-text-wrapper-63,
  .rn-access-text-wrapper-64 {
    flex: 0 0 72px;
    max-width: 72px;
  }

  .rn-access-text-wrapper-35,
  .rn-access-element-4,
  .rn-access-text-wrapper-65 {
    flex: 1 1 auto;
  }

  .rn-access-frame-72 {
    flex-wrap: nowrap;
    gap: var(--size-space-300);
  }

  .rn-access-rectangle-4 {
    min-height: 0;
    aspect-ratio: auto;
    height: 260px;
  }
}

/* ========================================
   FOOTER Section
   ======================================== */
.rn-footer-pc-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--size-space-600);
  padding: var(--size-space-400) var(--size-space-800) var(--size-space-300);
  position: relative;
  width: min(100%, 1440px);
  margin-inline: auto;
  flex: 0 0 auto;
  background-color: var(--basewhite);
}

.rn-footer-frame-75 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.rn-footer-logo {
  position: relative;
  width: 150px;
  height: 103px;
  aspect-ratio: 1.45;
  background-image: url(https://ik.imagekit.io/riwa341hv/39567adcd04ba544c94ff838227e0be8-2-1.png);
  background-size: cover;
  background-position: 50% 50%;
}

.rn-footer-frame-76 {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 0 0 auto;
}

.rn-footer-pc-navi-atom {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: var(--size-space-200);
  padding: var(--size-space-200) var(--size-space-0);
  width: 100%;
  max-width: 110px;
  flex: 0 0 auto;
}

.rn-footer-rn-footer-text-wrapper-66 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--body-2-font-family);
  font-weight: var(--body-2-font-weight);
  color: var(--baseblack);
  font-size: var(--body-2-font-size);
  text-align: center;
  letter-spacing: var(--body-2-letter-spacing);
  line-height: var(--body-2-line-height);
  white-space: nowrap;
  font-style: var(--body-2-font-style);
}

.rn-footer-frame-77 {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  flex: 0 0 auto;
}

.rn-footer-pc-navi-atom-2 {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: var(--size-space-200);
  padding: var(--size-space-200) var(--size-space-0);
  width: 110px;
  max-width: 110px;
}

.rn-footer-pc-navi-atom-3 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: var(--size-space-200);
  padding: var(--size-space-200) var(--size-space-0);
  width: 120px;
  max-width: 120px;
}

.rn-footer-rn-footer-text-wrapper-67 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: -1px;
  font-family: var(--body-2-font-family);
  font-weight: var(--body-2-font-weight);
  color: var(--baseblack);
  font-size: var(--body-2-font-size);
  letter-spacing: var(--body-2-letter-spacing);
  line-height: var(--body-2-line-height);
  font-style: var(--body-2-font-style);
}

.rn-footer-rn-footer-text-wrapper-68 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: var(--body-2-font-family);
  font-weight: var(--body-2-font-weight);
  color: var(--baseblack);
  font-size: var(--body-2-font-size);
  letter-spacing: var(--body-2-letter-spacing);
  line-height: var(--body-2-line-height);
  font-style: var(--body-2-font-style);
}

.rn-footer-rn-footer-text-wrapper-69 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-family: var(--body-2-font-family);
  font-weight: var(--body-2-font-weight);
  color: var(--baseblack);
  font-size: var(--body-2-font-size);
  letter-spacing: var(--body-2-letter-spacing);
  line-height: var(--body-2-line-height);
  white-space: nowrap;
  font-style: var(--body-2-font-style);
}

.rn-footer-frame-31 {
  position: relative;
  display: flex;
  align-items: flex-start;
  width: 100%;
  flex: 0 0 auto;
}

.rn-footer-pc-navi-atom-4 {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: var(--size-space-200);
  padding: var(--size-space-200) var(--size-space-0);
  max-width: 110px;
  flex: 1;
  flex-grow: 1;
}

.rn-footer-pc-navi-atom-5 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: var(--size-space-200);
  padding: var(--size-space-200) var(--size-space-0);
  max-width: 130px;
  flex: 1;
  flex-grow: 1;
}

.rn-footer-frame-78 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  flex: 0 0 auto;
}

.rn-footer-frame-79 {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--size-space-400);
  padding: var(--size-space-600) var(--size-space-800);
  flex: 0 0 auto;
  border: 1px solid var(--tertiary);
}

.rn-footer-go-smile-2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--body-1-font-family);
  font-weight: var(--body-1-font-weight);
  color: var(--baseblack);
  font-size: var(--body-1-font-size);
  text-align: center;
  letter-spacing: var(--body-1-letter-spacing);
  line-height: var(--body-1-line-height);
  font-style: var(--body-1-font-style);
}

.rn-footer-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--size-space-200);
  padding: var(--size-space-400) var(--size-space-600);
  background-color: var(--primary);
  border-radius: 99px;
  flex: 0 0 auto;
}

.rn-footer-img {
  position: relative;
  width: 24px;
  height: 24px;
  aspect-ratio: 1;
}

.rn-footer-div-2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-family: "Zen Kaku Gothic New", Helvetica;
  font-weight: 400;
  color: var(--basewhite);
  font-size: 18px;
  text-align: center;
  line-height: 21.6px;
  white-space: nowrap;
  letter-spacing: 0;
}

.rn-footer-text-wrapper-4 {
  font-weight: 700;
}

.rn-footer-text-wrapper-5 {
  font-family: var(--button-small-font-family);
  font-weight: var(--button-small-font-weight);
  font-size: var(--button-small-font-size);
  line-height: var(--button-small-line-height);
  font-style: var(--button-small-font-style);
  letter-spacing: var(--button-small-letter-spacing);
}

.rn-footer-button-2 {
  all: unset;
  box-sizing: border-box;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--size-space-200);
  padding: var(--size-space-400) var(--size-space-600);
  background-color: var(--secondary);
  border-radius: 99px;
  flex: 0 0 auto;
}

.rn-footer-img-2 {
  position: relative;
  width: 24px;
  height: 24px;
}

.rn-footer-text-wrapper-6 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-family: "Zen Kaku Gothic New", Helvetica;
  font-weight: 700;
  color: var(--basewhite);
  font-size: 18px;
  text-align: center;
  line-height: 21.6px;
  white-space: nowrap;
  letter-spacing: 0;
}

.rn-footer-button-4 {
  all: unset;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--size-space-200);
  padding: var(--size-space-400) var(--size-space-600);
  width: 200px;
  flex: 0 0 auto;
  background-color: var(--basewhite);
  border: 1px solid var(--secondary);
  border-radius: 99px;
}

.rn-footer-text-wrapper-70 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  font-family: "Zen Kaku Gothic New", Helvetica;
  font-weight: 700;
  color: var(--secondary);
  font-size: 18px;
  text-align: center;
  line-height: 21.6px;
  letter-spacing: 0;
}

.rn-footer-frame-80 {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  flex: 0 0 auto;
}

.rn-footer-pc-navi-atom-6 {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  gap: var(--size-space-200);
  padding: var(--size-space-200) var(--size-space-400);
  flex: 0 0 auto;
}

.rn-footer-gosmile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-family: var(--body-2-font-family);
  font-weight: var(--body-2-font-weight);
  color: var(--baseblack);
  font-size: var(--body-2-font-size);
  text-align: center;
  letter-spacing: var(--body-2-letter-spacing);
  line-height: var(--body-2-line-height);
  font-style: var(--body-2-font-style);
}

.rn-footer-text-wrapper-71 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-family: "Zen Kaku Gothic New", Helvetica;
  font-weight: 500;
  color: var(--baseblack);
  font-size: 10px;
  text-align: center;
  letter-spacing: 0;
  line-height: 16px;
  white-space: nowrap;
}

.rn-footer-button,
.rn-footer-button-2,
.rn-footer-button-4 {
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.rn-footer-button:hover,
.rn-footer-button-2:hover,
.rn-footer-button-4:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.rn-footer-button:active,
.rn-footer-button-2:active,
.rn-footer-button-4:active {
  transform: translateY(0);
}

a {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .rn-footer-pc-footer {
    width: 100%;
    padding: var(--size-space-600) var(--size-space-400);
  }

  .rn-footer-frame-75 {
    flex-direction: column;
    gap: var(--size-space-600);
    align-items: center;
  }

  .rn-footer-frame-76 {
    width: 100%;
    max-width: 720px;
    align-items: stretch;
  }

  .rn-footer-frame-77 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--size-space-100) var(--size-space-400);
  }

  .rn-footer-pc-navi-atom-2,
  .rn-footer-pc-navi-atom-3,
  .rn-footer-pc-navi-atom-4,
  .rn-footer-pc-navi-atom-5,
  .rn-footer-pc-navi-atom {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    padding-top: var(--size-space-150);
    padding-bottom: var(--size-space-150);
  }

  .rn-footer-pc-navi-atom-3 {
    flex-direction: column;
    gap: var(--size-space-150);
    justify-content: flex-start;
  }

  .rn-footer-frame-76 .rn-footer-rn-footer-text-wrapper-66,
  .rn-footer-frame-76 .rn-footer-rn-footer-text-wrapper-67,
  .rn-footer-frame-76 .rn-footer-rn-footer-text-wrapper-68,
  .rn-footer-frame-76 .rn-footer-rn-footer-text-wrapper-69 {
    width: auto;
    justify-content: flex-start;
    text-align: left;
    white-space: normal;
  }

  .rn-footer-frame-31 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--size-space-100) var(--size-space-400);
  }

  .rn-footer-frame-79 {
    width: 100%;
    max-width: 520px;
    box-sizing: border-box;
  }
}

@media (max-width: 768px) {
  .rn-footer-frame-75 {
    gap: var(--size-space-800);
  }

  .rn-footer-frame-76 {
    align-items: flex-start;
  }

  .rn-footer-frame-80 {
    flex-direction: column;
    align-items: center;
  }

  .rn-footer-button,
  .rn-footer-button-2,
  .rn-footer-button-4 {
    width: 100%;
    max-width: 320px;
    box-sizing: border-box;
  }

  .rn-footer-gosmile {
    width: 100%;
    text-align: center;
  }

  .rn-footer-text-wrapper-71 {
    white-space: normal;
    text-align: center;
  }
}

@media (min-width: 431px) and (max-width: 1024px) {
  .rn-footer-pc-footer {
    padding: var(--size-space-500) var(--size-space-400) var(--size-space-300);
    gap: var(--size-space-500);
  }

  .rn-footer-frame-75 {
    gap: var(--size-space-800);
  }

  .rn-footer-frame-76 {
    max-width: 700px;
    margin-inline: auto;
    gap: var(--size-space-300);
  }

  .rn-footer-pc-navi-atom,
  .rn-footer-pc-navi-atom-2,
  .rn-footer-pc-navi-atom-3,
  .rn-footer-pc-navi-atom-4,
  .rn-footer-pc-navi-atom-5 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .rn-footer-frame-76 .rn-footer-rn-footer-text-wrapper-66,
  .rn-footer-frame-76 .rn-footer-rn-footer-text-wrapper-67,
  .rn-footer-frame-76 .rn-footer-rn-footer-text-wrapper-68,
  .rn-footer-frame-76 .rn-footer-rn-footer-text-wrapper-69 {
    line-height: 1.6;
    font-size: 13px;
  }

  .rn-footer-frame-77 {
    grid-template-columns: 120px repeat(4, minmax(0, 1fr));
    gap: var(--size-space-050) var(--size-space-300);
    align-items: start;
  }

  .rn-footer-frame-77 .rn-footer-pc-navi-atom-2 {
    grid-column: 1;
    padding-bottom: 0;
  }

  .rn-footer-frame-77 .rn-footer-pc-navi-atom-3 {
    width: 100%;
    max-width: none;
    padding: 0;
    gap: var(--size-space-050);
  }

  .rn-footer-frame-77 .rn-footer-pc-navi-atom-2 .rn-footer-rn-footer-text-wrapper-66 {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
  }

  .rn-footer-frame-31 {
    grid-template-columns: 120px 1fr;
    gap: var(--size-space-050) var(--size-space-300);
    align-items: start;
  }

  .rn-footer-frame-31 .rn-footer-pc-navi-atom-4 {
    grid-column: 1;
    padding-bottom: 0;
  }

  .rn-footer-frame-31 .rn-footer-pc-navi-atom-4 .rn-footer-rn-footer-text-wrapper-66 {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
  }

  .rn-footer-frame-76>.rn-footer-pc-navi-atom .rn-footer-rn-footer-text-wrapper-66,
  .rn-footer-frame-78 .rn-footer-pc-navi-atom .rn-footer-rn-footer-text-wrapper-66 {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
  }

  .rn-footer-frame-76>.rn-footer-pc-navi-atom {
    padding-bottom: var(--size-space-100);
  }

  .rn-footer-frame-77,
  .rn-footer-frame-31,
  .rn-footer-frame-78 {
    margin-top: var(--size-space-100);
  }

  .rn-footer-frame-80 {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
  }
}

@media (max-width: 430px) {
  .rn-footer-pc-footer {
    gap: var(--size-space-500);
    padding: var(--size-space-400) var(--size-space-600) var(--size-space-300);
  }

  .rn-footer-frame-75 {
    gap: var(--size-space-800);
  }

  .rn-footer-frame-76 {
    width: 100%;
    max-width: none;
    gap: var(--size-space-300);
    align-items: stretch;
  }

  .rn-footer-frame-77 {
    width: 100%;
    box-sizing: border-box;
  }

  .rn-footer-frame-76 .rn-footer-rn-footer-text-wrapper-66,
  .rn-footer-frame-76 .rn-footer-rn-footer-text-wrapper-67,
  .rn-footer-frame-76 .rn-footer-rn-footer-text-wrapper-68,
  .rn-footer-frame-76 .rn-footer-rn-footer-text-wrapper-69 {
    font-size: 12px;
    line-height: 1.6;
  }

  .rn-footer-frame-76>.rn-footer-pc-navi-atom {
    padding: 0 0 var(--size-space-150);
  }

  .rn-footer-frame-76>.rn-footer-pc-navi-atom>.rn-footer-rn-footer-text-wrapper-66,
  .rn-footer-frame-77>.rn-footer-pc-navi-atom-2>.rn-footer-rn-footer-text-wrapper-66,
  .rn-footer-frame-31>.rn-footer-pc-navi-atom-4>.rn-footer-rn-footer-text-wrapper-66,
  .rn-footer-frame-78>.rn-footer-pc-navi-atom>.rn-footer-rn-footer-text-wrapper-66 {
    font-weight: 700;
  }

  .rn-footer-frame-77 {
    display: grid;
    grid-template-columns: 96px 1fr 1fr;
    gap: var(--size-space-200) var(--size-space-300);
    align-items: start;
  }

  .rn-footer-frame-77 .rn-footer-pc-navi-atom-2 {
    grid-column: 1;
    grid-row: 1 / -1;
    width: auto;
    max-width: none;
    padding: 0;
  }

  .rn-footer-frame-77 .rn-footer-pc-navi-atom-3 {
    grid-column: 2 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 var(--size-space-300);
    width: auto;
    max-width: none;
    padding: 0;
  }

  .rn-footer-pc-navi-atom-3 {
    width: auto;
    max-width: none;
    padding: 0;
    gap: var(--size-space-200);
  }

  .rn-footer-frame-31 {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 0 var(--size-space-300);
    align-items: start;
    width: 100%;
    box-sizing: border-box;
  }

  .rn-footer-frame-31 .rn-footer-pc-navi-atom-4 {
    grid-column: 1;
  }

  .rn-footer-frame-31 .rn-footer-pc-navi-atom-5 {
    grid-column: 2;
  }

  .rn-footer-pc-navi-atom-4,
  .rn-footer-pc-navi-atom-5 {
    max-width: none;
    padding: 0;
    gap: var(--size-space-200);
  }

  .rn-footer-frame-78 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--size-space-200);
  }

  .rn-footer-frame-78 .rn-footer-pc-navi-atom {
    max-width: none;
    padding: 0;
  }

  .rn-footer-frame-79 {
    padding: var(--size-space-600) var(--size-space-800);
    max-width: none;
  }

  .rn-footer-button,
  .rn-footer-button-2 {
    width: auto;
    max-width: none;
  }

  .rn-footer-button-4 {
    width: 200px;
    max-width: 200px;
  }

  .rn-footer-frame-80 {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
  }

  .rn-footer-pc-navi-atom-6 {
    padding: var(--size-space-200) var(--size-space-400);
  }

  .rn-footer-gosmile {
    font-size: 10px;
    line-height: 16px;
    white-space: normal;
    text-align: center;
  }

  .rn-footer-text-wrapper-71 {
    font-size: 10px;
    line-height: 16px;
  }
}
