:root {
  --fe-ink: #12364a;
  --fe-ink-soft: #4c6978;
  --fe-blue: #087caf;
  --fe-blue-dark: #07506f;
  --fe-aqua: #16b7c7;
  --fe-cloud: #f7fbfd;
  --fe-sky: #eaf8ff;
  --fe-sky-strong: #d7f1fd;
  --fe-line: #cfe6ef;
  --fe-accent: #ff6941;
  --fe-accent-dark: #e84f29;
  --fe-yellow: #ffd34f;
  --fe-white: #ffffff;
  --fe-shadow: 0 22px 70px rgba(19, 78, 104, 0.13);
  --fe-shadow-soft: 0 12px 36px rgba(19, 78, 104, 0.09);
  --fe-font: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --fe-display: "Avenir Next", "Helvetica Neue", "Noto Sans JP", "Yu Gothic", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body.fe-home,
body.fe-operator-page {
  margin: 0;
  background: var(--fe-white);
  color: var(--fe-ink);
  font-family: var(--fe-font);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

.fe-home *,
.fe-home *::before,
.fe-home *::after,
.fe-operator-page *,
.fe-operator-page *::before,
.fe-operator-page *::after {
  box-sizing: border-box;
}

.fe-home a,
.fe-operator-page a {
  color: inherit;
  text-decoration: none;
}

.fe-home img,
.fe-operator-page img {
  display: block;
  max-width: 100%;
}

.fe-home h1,
.fe-home h2,
.fe-home h3,
.fe-home p,
.fe-operator-page h1,
.fe-operator-page h2,
.fe-operator-page h3,
.fe-operator-page p {
  margin-top: 0;
}

.fe-site {
  min-width: 320px;
  overflow: clip;
}

.fe-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.fe-skip-link {
  position: fixed;
  z-index: 99999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--fe-white);
  color: var(--fe-ink);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.fe-skip-link:focus {
  transform: translateY(0);
}

.fe-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.fe-header__inner {
  display: flex;
  align-items: center;
  min-height: 86px;
  gap: 40px;
}

.fe-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-family: var(--fe-display);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.fe-logo__mark {
  position: relative;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50% 50% 48% 52% / 38% 38% 62% 62%;
  transform: rotate(45deg);
}

.fe-logo__mark span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
}

.fe-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 700;
}

.fe-nav a {
  position: relative;
  padding-block: 8px;
}

.fe-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.fe-nav a:hover::after,
.fe-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.fe-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--fe-ink);
  box-shadow: 0 8px 20px rgba(18, 54, 74, 0.17);
  color: var(--fe-white) !important;
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.fe-header__cta span {
  margin-left: 10px;
}

.fe-header__cta:hover,
.fe-header__cta:focus-visible {
  background: var(--fe-blue-dark);
  transform: translateY(-2px);
}

.fe-header--subpage {
  color: var(--fe-ink);
}

.fe-hero {
  position: relative;
  min-height: 820px;
  padding: 174px 0 104px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.2), transparent 58%),
    linear-gradient(135deg, #e7f8fd 0%, #f8fcfd 43%, #fff7e8 100%);
}

.fe-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.44));
  content: "";
  pointer-events: none;
}

.fe-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.fe-hero__glow--one {
  top: 80px;
  right: -160px;
  width: 520px;
  height: 520px;
  background: rgba(22, 183, 199, 0.12);
}

.fe-hero__glow--two {
  bottom: -120px;
  left: 30%;
  width: 380px;
  height: 380px;
  background: rgba(255, 211, 79, 0.12);
}

.fe-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 64px;
}

.fe-kicker,
.fe-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--fe-blue);
  font-family: var(--fe-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.fe-kicker span {
  width: 27px;
  height: 1px;
  background: currentColor;
}

.fe-hero h1 {
  margin-bottom: 26px;
  font-size: clamp(44px, 5.4vw, 76px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 1.22;
}

.fe-hero h1 em,
.fe-about h2 em {
  position: relative;
  z-index: 0;
  color: inherit;
  font-style: normal;
}

.fe-hero h1 em::after {
  position: absolute;
  z-index: -1;
  right: -0.06em;
  bottom: 0.08em;
  left: -0.06em;
  height: 0.34em;
  border-radius: 999px;
  background: var(--fe-yellow);
  content: "";
  opacity: 0.78;
}

.fe-hero__lead {
  max-width: 610px;
  margin-bottom: 34px;
  color: var(--fe-ink-soft);
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}

.fe-hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.fe-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 30px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.fe-button span {
  margin-left: 18px;
  font-size: 17px;
}

.fe-button--accent {
  border: 1px solid rgba(255,255,255,0.9);
  background: var(--fe-accent);
  box-shadow: 0 14px 30px rgba(255, 105, 65, 0.28);
  color: var(--fe-white) !important;
}

.fe-button--accent:hover,
.fe-button--accent:focus-visible {
  background: var(--fe-accent-dark);
  box-shadow: 0 18px 36px rgba(255, 105, 65, 0.34);
  transform: translateY(-3px);
}

.fe-text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(18,54,74,0.28);
  font-size: 13px;
  font-weight: 800;
}

.fe-text-link:hover,
.fe-text-link:focus-visible {
  border-color: var(--fe-ink);
}

.fe-hero__note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 26px 0 0;
  color: var(--fe-ink-soft);
  font-size: 11px;
  font-weight: 600;
}

.fe-hero__note span {
  color: var(--fe-aqua);
  font-size: 8px;
}

.fe-visual {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 1;
  margin-left: auto;
}

.fe-visual__orbit {
  position: absolute;
  border: 1px solid rgba(8, 124, 175, 0.18);
  border-radius: 50%;
}

.fe-visual__orbit--outer {
  inset: 0;
}

.fe-visual__orbit--inner {
  inset: 48px;
  border-style: dashed;
}

.fe-visual__orbit--outer::before,
.fe-visual__orbit--outer::after {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 5px solid var(--fe-white);
  border-radius: 50%;
  background: var(--fe-aqua);
  box-shadow: 0 4px 14px rgba(8,124,175,0.22);
  content: "";
}

.fe-visual__orbit--outer::before {
  top: 17%;
  left: 6%;
}

.fe-visual__orbit--outer::after {
  right: 8%;
  bottom: 16%;
}

.fe-visual__lens {
  position: absolute;
  inset: 94px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 14px solid rgba(255, 255, 255, 0.75);
  border-radius: 54% 46% 54% 46% / 42% 57% 43% 58%;
  background:
    radial-gradient(circle at 36% 28%, rgba(255,255,255,0.92) 0 3%, transparent 4%),
    radial-gradient(circle at 50% 50%, #153c55 0 12%, #0b83a9 13% 28%, #67d4d1 29% 45%, #d8f4ee 46% 62%, #f3fcfb 63% 100%);
  box-shadow: 0 30px 80px rgba(8, 124, 175, 0.24), inset 0 0 46px rgba(255,255,255,0.8);
  transform: rotate(-9deg);
}

.fe-visual__iris {
  width: 92px;
  height: 92px;
  border: 18px solid rgba(255,255,255,0.24);
  border-radius: 50%;
  background: #12364a;
  box-shadow: 0 0 0 12px rgba(22,183,199,0.32), inset 0 0 0 15px rgba(0,0,0,0.3);
}

.fe-visual__shine {
  position: absolute;
  top: 20%;
  left: 20%;
  width: 34%;
  height: 18%;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  filter: blur(9px);
  transform: rotate(-24deg);
}

.fe-visual__label {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 168px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.78);
  border-radius: 13px;
  background: rgba(255,255,255,0.82);
  box-shadow: var(--fe-shadow-soft);
  backdrop-filter: blur(10px);
}

.fe-visual__label b {
  color: var(--fe-blue);
  font-family: var(--fe-display);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.fe-visual__label span {
  color: var(--fe-ink-soft);
  font-size: 9px;
  font-weight: 700;
}

.fe-visual__label--icl {
  top: 15%;
  right: -1%;
}

.fe-visual__label--lasik {
  bottom: 21%;
  left: -4%;
}

.fe-visual__label--age {
  right: 1%;
  bottom: 5%;
}

.fe-visual__caption {
  position: absolute;
  top: 19%;
  left: 2%;
  color: rgba(18,54,74,0.38);
  font-family: var(--fe-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.5;
}

.fe-hero__scroll {
  position: absolute;
  z-index: 3;
  bottom: 34px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
}

.fe-hero__scroll span {
  font-family: var(--fe-display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.fe-hero__scroll i {
  display: block;
  width: 42px;
  height: 1px;
  background: var(--fe-ink);
}

.fe-about {
  position: relative;
  padding: 128px 0;
  background: var(--fe-ink);
  color: var(--fe-white);
}

.fe-about::before {
  position: absolute;
  top: 0;
  right: 9%;
  width: 300px;
  height: 100%;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-left: 1px solid rgba(255,255,255,0.08);
  content: "";
  transform: skewX(-17deg);
}

.fe-about__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 74px;
}

.fe-section-label {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-top: 10px;
}

.fe-section-label span {
  color: var(--fe-aqua);
  font-family: var(--fe-display);
  font-size: 62px;
  font-weight: 300;
  line-height: 1;
}

.fe-section-label p {
  margin: 4px 0 0;
  padding-left: 14px;
  border-left: 1px solid rgba(255,255,255,0.3);
  font-family: var(--fe-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.7;
}

.fe-eyebrow--light {
  color: #83dfea;
}

.fe-about h2 {
  max-width: 790px;
  margin-bottom: 48px;
  font-size: clamp(38px, 4.2vw, 62px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.35;
}

.fe-about h2 em::after {
  position: absolute;
  z-index: -1;
  right: -0.06em;
  bottom: 0;
  left: -0.06em;
  height: 0.22em;
  background: var(--fe-accent);
  content: "";
  opacity: 0.9;
}

.fe-about__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  max-width: 820px;
  color: rgba(255,255,255,0.76);
  font-size: 15px;
  line-height: 2.15;
}

.fe-treatment-tags {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 900px;
  margin-top: 54px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.14);
}

.fe-treatment-tags span {
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.045);
  font-size: 13px;
  font-weight: 700;
}

.fe-treatment-tags i {
  margin-right: 12px;
  color: #83dfea;
  font-family: var(--fe-display);
  font-size: 10px;
  font-style: normal;
}

.fe-area-section,
.fe-other {
  padding: 128px 0;
}

.fe-area-section {
  background: var(--fe-cloud);
}

.fe-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 60px;
  margin-bottom: 62px;
}

.fe-heading-row h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.35;
}

.fe-heading-row__copy {
  margin-bottom: 7px;
  color: var(--fe-ink-soft);
  font-size: 14px;
  line-height: 2;
}

.fe-area-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.fe-area-card {
  position: relative;
  display: flex;
  min-height: 365px;
  flex-direction: column;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--fe-line);
  border-radius: 24px;
  box-shadow: 0 8px 22px rgba(19, 78, 104, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.fe-area-card:nth-child(-n+3) {
  grid-column: span 2;
}

.fe-area-card:nth-child(n+4) {
  grid-column: span 3;
}

.fe-area-card:hover,
.fe-area-card:focus-visible {
  border-color: #5ab8d4;
  box-shadow: 0 22px 50px rgba(8, 124, 175, 0.14);
  outline: none;
  transform: translateY(-6px);
}

.fe-area-card--sky { background: linear-gradient(145deg, #ffffff, #eaf8ff); }
.fe-area-card--aqua { background: linear-gradient(145deg, #ffffff, #e8fbfa); }
.fe-area-card--cream { background: linear-gradient(145deg, #ffffff, #fff7df); }
.fe-area-card--lavender { background: linear-gradient(145deg, #ffffff, #f0effd); }
.fe-area-card--mint { background: linear-gradient(145deg, #ffffff, #edf9f1); }

.fe-area-card__number {
  position: relative;
  z-index: 2;
  color: var(--fe-blue);
  font-family: var(--fe-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.fe-area-card__shape {
  position: absolute;
  top: 22px;
  right: 24px;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 1px solid rgba(8,124,175,0.18);
  border-radius: 50%;
}

.fe-area-card__shape::before,
.fe-area-card__shape::after {
  position: absolute;
  border: 1px solid rgba(8,124,175,0.18);
  border-radius: 50%;
  content: "";
}

.fe-area-card__shape::before { inset: 10px; }
.fe-area-card__shape::after { inset: 21px; background: rgba(255,255,255,0.62); }

.fe-area-card__shape i {
  position: relative;
  z-index: 1;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--fe-accent);
}

.fe-area-card__en {
  margin-top: 70px;
  color: var(--fe-blue);
  font-family: var(--fe-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.fe-area-card strong {
  display: block;
  margin-top: 2px;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.fe-area-card__copy {
  display: block;
  margin: 12px 0 22px;
  color: var(--fe-ink-soft);
  font-size: 12px;
  line-height: 1.8;
}

.fe-area-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(18,54,74,0.13);
  font-size: 12px;
  font-weight: 800;
}

.fe-area-card__link i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--fe-ink);
  color: var(--fe-white);
  font-size: 14px;
  font-style: normal;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.fe-area-card:hover .fe-area-card__link i,
.fe-area-card:focus-visible .fe-area-card__link i {
  background: var(--fe-accent);
  transform: rotate(8deg);
}

.fe-other {
  background: var(--fe-white);
}

.fe-heading-row--compact {
  margin-bottom: 50px;
}

.fe-coming-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.fe-coming-card {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--fe-line);
  border-radius: 28px;
}

.fe-coming-card--lasik {
  background: linear-gradient(135deg, #eff9fd, #dff6f9);
}

.fe-coming-card--age {
  background: linear-gradient(135deg, #fff9eb, #f4f3ff);
}

.fe-coming-card::after {
  position: absolute;
  right: -100px;
  bottom: -130px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(8,124,175,0.14);
  border-radius: 50%;
  content: "";
}

.fe-coming-card__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.fe-coming-card__top p {
  margin-bottom: 0;
  color: var(--fe-blue);
  font-family: var(--fe-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.fe-coming-card__top p span {
  margin-right: 10px;
  font-size: 16px;
}

.fe-coming-badge {
  padding: 7px 12px;
  border: 1px solid rgba(18,54,74,0.22);
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  font-family: var(--fe-display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.fe-coming-card__icon {
  position: absolute;
  z-index: 1;
  top: 80px;
  right: 58px;
  display: grid;
  width: 144px;
  height: 144px;
  place-items: center;
  border: 1px solid rgba(8,124,175,0.16);
  border-radius: 50%;
}

.fe-coming-card__icon::before,
.fe-coming-card__icon::after {
  position: absolute;
  border: 1px solid rgba(8,124,175,0.18);
  border-radius: 50%;
  content: "";
}

.fe-coming-card__icon::before { inset: 18px; }
.fe-coming-card__icon::after { inset: 43px; background: rgba(255,255,255,0.64); }

.fe-coming-card__icon i {
  position: relative;
  z-index: 2;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--fe-aqua);
}

.fe-coming-card--age .fe-coming-card__icon i {
  background: var(--fe-accent);
}

.fe-coming-card h3 {
  position: relative;
  z-index: 2;
  max-width: 390px;
  margin: 104px 0 18px;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.5;
}

.fe-coming-card > p {
  position: relative;
  z-index: 2;
  max-width: 360px;
  margin-bottom: 0;
  color: var(--fe-ink-soft);
  font-size: 13px;
  line-height: 1.9;
}

.fe-closing {
  position: relative;
  overflow: hidden;
  padding: 116px 0;
  background: linear-gradient(135deg, #07506f, #12364a 66%, #173d4d);
  color: var(--fe-white);
  text-align: center;
}

.fe-closing__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.fe-closing h2 {
  margin-bottom: 36px;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.4;
}

.fe-closing__orb {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 50%;
}

.fe-closing__orb--one {
  top: -220px;
  left: -140px;
  width: 520px;
  height: 520px;
}

.fe-closing__orb--two {
  right: -80px;
  bottom: -250px;
  width: 500px;
  height: 500px;
  box-shadow: inset 0 0 0 60px rgba(22,183,199,0.04), inset 0 0 0 130px rgba(255,255,255,0.025);
}

.fe-footer {
  padding: 72px 0 34px;
  background: #0d2c3c;
  color: rgba(255,255,255,0.7);
}

.fe-footer__main {
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: center;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.fe-logo--footer {
  color: var(--fe-white) !important;
}

.fe-footer__main > p {
  margin-bottom: 0;
  font-size: 12px;
}

.fe-footer nav {
  display: flex;
  gap: 22px;
  font-size: 11px;
  font-weight: 700;
}

.fe-footer nav a:hover,
.fe-footer nav a:focus-visible {
  color: var(--fe-white);
}

.fe-footer__note {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  padding-top: 28px;
}

.fe-footer__note p {
  max-width: 780px;
  margin-bottom: 0;
  font-size: 10px;
  line-height: 1.9;
}

.fe-footer__note small {
  flex: 0 0 auto;
  font-family: var(--fe-display);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.fe-home a:focus-visible,
.fe-operator-page a:focus-visible {
  outline: 3px solid var(--fe-yellow);
  outline-offset: 4px;
}

/* Operator information page */
.fe-operator-hero {
  position: relative;
  overflow: hidden;
  padding: 168px 0 92px;
  background: linear-gradient(135deg, #eaf8ff 0%, #f8fcfd 58%, #fff7e8 100%);
}

.fe-operator-hero__inner {
  position: relative;
  z-index: 2;
}

.fe-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 52px;
  color: var(--fe-ink-soft);
  font-family: var(--fe-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.fe-breadcrumb a:hover,
.fe-breadcrumb a:focus-visible {
  color: var(--fe-blue);
}

.fe-operator-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(46px, 6vw, 76px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 1.2;
}

.fe-operator-hero__inner > p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--fe-ink-soft);
  font-size: 15px;
}

.fe-operator-hero__ring {
  position: absolute;
  border: 1px solid rgba(8,124,175,0.16);
  border-radius: 50%;
}

.fe-operator-hero__ring--one {
  top: -180px;
  right: 6%;
  width: 480px;
  height: 480px;
  box-shadow: inset 0 0 0 70px rgba(255,255,255,0.22), inset 0 0 0 140px rgba(22,183,199,0.035);
}

.fe-operator-hero__ring--two {
  right: 30%;
  bottom: -90px;
  width: 170px;
  height: 170px;
  background: rgba(255,211,79,0.1);
}

.fe-operator-main {
  padding: 112px 0 128px;
  background: var(--fe-cloud);
}

.fe-operator-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  align-items: start;
  gap: 74px;
}

.fe-operator-index {
  position: sticky;
  top: 28px;
  padding: 24px;
  border: 1px solid var(--fe-line);
  border-radius: 20px;
  background: rgba(255,255,255,0.84);
  box-shadow: var(--fe-shadow-soft);
}

.fe-operator-index > p {
  margin-bottom: 14px;
  color: var(--fe-blue);
  font-family: var(--fe-display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.fe-operator-index a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(18,54,74,0.1);
  font-size: 12px;
  font-weight: 700;
}

.fe-operator-index a span {
  color: var(--fe-blue);
  font-family: var(--fe-display);
  font-size: 9px;
}

.fe-operator-index a:hover,
.fe-operator-index a:focus-visible {
  color: var(--fe-blue);
}

.fe-operator-content {
  min-width: 0;
}

.fe-operator-section {
  scroll-margin-top: 30px;
  padding: 62px;
  border: 1px solid var(--fe-line);
  border-radius: 28px;
  background: var(--fe-white);
  box-shadow: var(--fe-shadow-soft);
}

.fe-operator-section + .fe-operator-section {
  margin-top: 30px;
}

.fe-operator-section h2 {
  margin-bottom: 26px;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.35;
}

.fe-operator-lead {
  max-width: 720px;
  margin-bottom: 40px;
  color: var(--fe-ink-soft);
  font-size: 15px;
  line-height: 2.05;
}

.fe-profile-list {
  margin: 0;
  border-top: 1px solid var(--fe-line);
}

.fe-profile-list > div {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 26px;
  padding: 22px 0;
  border-bottom: 1px solid var(--fe-line);
}

.fe-profile-list dt {
  color: var(--fe-blue-dark);
  font-size: 12px;
  font-weight: 800;
}

.fe-profile-list dd {
  min-width: 0;
  margin: 0;
  color: var(--fe-ink-soft);
  font-size: 14px;
}

.fe-profile-list dd a {
  border-bottom: 1px solid rgba(8,124,175,0.35);
  color: var(--fe-blue);
  overflow-wrap: anywhere;
}

.fe-policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.fe-policy-grid article {
  padding: 24px;
  border: 1px solid var(--fe-line);
  border-radius: 20px;
  background: linear-gradient(145deg, #ffffff, #f2fafc);
}

.fe-policy-grid article > span {
  color: var(--fe-aqua);
  font-family: var(--fe-display);
  font-size: 11px;
  font-weight: 800;
}

.fe-policy-grid h3 {
  margin: 24px 0 12px;
  font-size: 17px;
  font-weight: 800;
}

.fe-policy-grid p {
  margin-bottom: 0;
  color: var(--fe-ink-soft);
  font-size: 12px;
  line-height: 1.9;
}

.fe-disclaimer-box {
  padding: 30px;
  border: 1px solid #f1d8b8;
  border-radius: 20px;
  background: #fff8ee;
}

.fe-disclaimer-box p {
  margin-bottom: 14px;
  color: #5d5549;
  font-size: 13px;
  line-height: 2;
}

.fe-disclaimer-box p:last-child {
  margin-bottom: 0;
}

.fe-contact-note {
  margin-bottom: 36px;
  padding: 24px 28px;
  border-left: 4px solid var(--fe-aqua);
  border-radius: 0 16px 16px 0;
  background: var(--fe-cloud);
}

.fe-contact-note p {
  margin-bottom: 8px;
}

.fe-contact-note ul {
  margin: 0;
  padding-left: 1.4em;
  color: var(--fe-ink-soft);
  font-size: 12px;
  line-height: 1.9;
}

.fe-contact-form {
  padding: 36px;
  border: 1px solid var(--fe-line);
  border-radius: 22px;
  background: var(--fe-cloud);
}

.fe-contact-form .wpcf7-form > p {
  margin-bottom: 24px;
  color: var(--fe-ink);
  font-size: 13px;
  font-weight: 700;
}

.fe-contact-form .wpcf7-form-control-wrap {
  display: block;
  margin-top: 8px;
}

.fe-contact-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.fe-contact-form textarea,
.fe-contact-form select {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #bddbe7;
  border-radius: 10px;
  background: var(--fe-white);
  color: var(--fe-ink);
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fe-contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.fe-contact-form input:focus,
.fe-contact-form textarea:focus,
.fe-contact-form select:focus {
  border-color: var(--fe-blue);
  box-shadow: 0 0 0 3px rgba(8,124,175,0.12);
}

.fe-contact-form input[type="submit"] {
  min-width: 220px;
  min-height: 58px;
  padding: 0 28px;
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 15px;
  background: var(--fe-accent);
  box-shadow: 0 12px 24px rgba(255,105,65,0.22);
  color: var(--fe-white);
  font-family: var(--fe-font);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.fe-contact-form input[type="submit"]:hover,
.fe-contact-form input[type="submit"]:focus-visible {
  background: var(--fe-accent-dark);
  transform: translateY(-2px);
}

.fe-contact-form .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 12px;
}

.fe-contact-form .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 12px;
}

.fe-contact-form__empty {
  padding: 18px;
  text-align: center;
}

.fe-contact-form__empty p {
  margin-bottom: 8px;
  color: var(--fe-ink-soft);
  font-size: 13px;
}

@media (max-width: 1020px) {
  .fe-header__inner { gap: 24px; }
  .fe-nav { gap: 18px; }
  .fe-hero { min-height: 760px; }
  .fe-hero__grid { grid-template-columns: 1.08fr 0.92fr; gap: 34px; }
  .fe-visual__lens { inset: 78px; }
  .fe-visual__label { min-width: 145px; padding: 10px 12px; }
  .fe-about__grid { grid-template-columns: 130px minmax(0, 1fr); gap: 44px; }
  .fe-treatment-tags { grid-template-columns: repeat(2, 1fr); }
  .fe-area-grid { grid-template-columns: repeat(2, 1fr); }
  .fe-area-card:nth-child(n) { grid-column: span 1; }
  .fe-area-card:last-child { grid-column: 1 / -1; }
  .fe-footer__main { grid-template-columns: auto 1fr; }
  .fe-footer nav { grid-column: 1 / -1; }
  .fe-operator-layout { grid-template-columns: 180px minmax(0, 1fr); gap: 34px; }
  .fe-operator-section { padding: 46px; }
  .fe-policy-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .fe-shell { width: min(100% - 32px, 620px); }
  .fe-header { background: rgba(255,255,255,0.86); backdrop-filter: blur(12px); }
  .fe-header__inner { min-height: 70px; }
  .fe-logo { font-size: 20px; }
  .fe-logo__mark { width: 26px; height: 26px; }
  .fe-nav { display: none; }
  .fe-header__cta { margin-left: auto; min-height: 42px; padding: 0 16px; font-size: 11px; }
  .fe-hero { min-height: 0; padding: 124px 0 88px; }
  .fe-hero__grid { display: flex; flex-direction: column; gap: 58px; }
  .fe-hero__copy { width: 100%; }
  .fe-hero h1 { font-size: clamp(42px, 12.6vw, 64px); }
  .fe-hero__lead { font-size: 14px; }
  .fe-desktop-only { display: none; }
  .fe-hero__actions { align-items: stretch; flex-direction: column; gap: 12px; }
  .fe-button { width: 100%; min-height: 58px; }
  .fe-text-link { align-self: flex-start; }
  .fe-visual { width: min(100%, 430px); }
  .fe-visual__lens { inset: 72px; }
  .fe-visual__label--icl { right: -2%; }
  .fe-visual__label--lasik { left: -2%; }
  .fe-visual__caption { display: none; }
  .fe-hero__scroll { display: none; }
  .fe-about, .fe-area-section, .fe-other { padding: 88px 0; }
  .fe-about__grid { display: block; }
  .fe-section-label { margin-bottom: 40px; }
  .fe-section-label span { font-size: 48px; }
  .fe-about h2 { margin-bottom: 36px; font-size: 38px; }
  .fe-about__body { grid-template-columns: 1fr; gap: 12px; font-size: 14px; }
  .fe-treatment-tags { margin-top: 38px; }
  .fe-heading-row { display: block; margin-bottom: 42px; }
  .fe-heading-row h2 { font-size: 36px; }
  .fe-heading-row__copy { margin-top: 24px; }
  .fe-area-grid, .fe-coming-grid { grid-template-columns: 1fr; }
  .fe-area-card:nth-child(n) { grid-column: span 1; }
  .fe-area-card { min-height: 340px; }
  .fe-coming-card { min-height: 420px; padding: 26px; }
  .fe-coming-card__icon { right: 28px; }
  .fe-coming-card h3 { margin-top: 118px; }
  .fe-closing { padding: 90px 0; }
  .fe-footer__main { display: flex; align-items: flex-start; flex-direction: column; gap: 22px; }
  .fe-footer nav { flex-wrap: wrap; }
  .fe-footer__note { align-items: flex-start; flex-direction: column; gap: 24px; }
  .fe-operator-hero { padding: 132px 0 72px; }
  .fe-breadcrumb { margin-bottom: 38px; }
  .fe-operator-main { padding: 72px 0 88px; }
  .fe-operator-layout { display: block; }
  .fe-operator-index { position: static; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 16px; margin-bottom: 28px; }
  .fe-operator-index > p { grid-column: 1 / -1; }
  .fe-operator-section { padding: 34px 26px; border-radius: 22px; }
  .fe-profile-list > div { grid-template-columns: 1fr; gap: 6px; }
  .fe-contact-form { padding: 24px 18px; }
  .fe-contact-form input[type="submit"] { width: 100%; }
}

@media (max-width: 430px) {
  .fe-header__cta span { display: none; }
  .fe-hero h1 { font-size: 41px; }
  .fe-kicker { font-size: 10px; letter-spacing: 0.12em; }
  .fe-visual__lens { inset: 62px; border-width: 10px; }
  .fe-visual__iris { width: 70px; height: 70px; border-width: 14px; }
  .fe-visual__label { min-width: 132px; }
  .fe-visual__label span { display: none; }
  .fe-treatment-tags { grid-template-columns: 1fr; }
  .fe-area-card strong { font-size: 28px; }
  .fe-coming-card__top { align-items: flex-start; flex-direction: column; }
  .fe-coming-card__icon { top: 106px; width: 120px; height: 120px; }
  .fe-coming-card h3 { margin-top: 138px; font-size: 25px; }
  .fe-operator-index { grid-template-columns: 1fr; }
  .fe-operator-index > p { grid-column: auto; }
  .fe-operator-section h2 { font-size: 31px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fe-home *, .fe-home *::before, .fe-home *::after,
  .fe-operator-page *, .fe-operator-page *::before, .fe-operator-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
