@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");
.show-on-pc {
  display: none;
}
@media screen and (min-width: 769px) {
  .show-on-pc {
    display: block;
  }
}

.show-on-sp {
  display: block;
}
@media screen and (min-width: 769px) {
  .show-on-sp {
    display: none;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #404460;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  transition: all 0.3s;
}

figure {
  margin: 0;
}

img {
  width: 100%;
  height: auto;
}

.header {
  position: relative;
  background: #fff;
  z-index: 1000;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  margin: 0 auto;
  position: relative;
  z-index: 1002;
}
@media screen and (min-width: 769px) {
  .header__inner {
    padding: 16px 16px 16px 24px;
    margin: 0;
    gap: 0;
    justify-content: flex-start;
  }
}
.header .lang-dropdown {
  display: none;
}
@media screen and (min-width: 769px) {
  .header .lang-dropdown {
    display: block;
    order: 3;
    margin-right: 0;
    margin-left: 48px;
    position: relative;
  }
}
.header .lang-dropdown .lang-btn {
  font-size: 14px;
  line-height: 200%;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  transition: 0.3s ease;
}
@media screen and (min-width: 769px) {
  .header .lang-dropdown .lang-btn {
    border: 1px solid #C2C3CC;
    border-radius: 8px;
    padding: 8px 16px 8px 22px;
  }
}
.header .lang-dropdown .lang-btn svg {
  vertical-align: sub;
}
.header .lang-dropdown .lang-btn .lang-dropdown-arrow {
  transition: transform 0.3s ease;
}
.header .lang-dropdown .lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  text-align: center;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #C2C3CC;
  background: #FFF;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .header .lang-dropdown .lang-menu {
    width: 140px;
    top: calc(100% + 8px);
    left: auto;
  }
}
.header .lang-dropdown .lang-menu li {
  padding: 10px 20px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.2s ease;
}
.header .lang-dropdown .lang-menu li:hover {
  color: #0E99AC;
}
.header .lang-dropdown .lang-menu li.is-current-lang {
  color: #0E99AC;
}
.header .lang-dropdown.open .lang-menu {
  display: inline-block;
}
.header .lang-dropdown.open .lang-dropdown-arrow {
  transform: rotate(180deg);
}
.header .lang-dropdown.open .lang-btn {
  background: #ECECEF;
}
@media screen and (min-width: 769px) {
  .header .lang-dropdown.open .lang-btn {
    border: 1px solid #ECECEF;
  }
}
@media screen and (min-width: 769px) {
  .header .lang-dropdown:hover .lang-menu, .header .lang-dropdown:focus-within .lang-menu {
    display: block;
  }
  .header .lang-dropdown:hover .lang-dropdown-arrow, .header .lang-dropdown:focus-within .lang-dropdown-arrow {
    transform: rotate(180deg);
  }
  .header .lang-dropdown::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    width: 120px;
    transform: translateX(-50%);
    height: 8px;
    background: transparent;
    pointer-events: auto;
    z-index: 1;
  }
}
.header__logo {
  max-width: 56px;
  height: auto;
  order: 2;
}
@media screen and (min-width: 769px) {
  .header__logo {
    max-width: 80px;
  }
}
.header__logo-link {
  display: block;
  order: 2;
}
@media screen and (min-width: 769px) {
  .header__logo-link {
    order: 1;
  }
}
.header__btn {
  width: 40px;
  height: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  padding: 0;
  background: transparent;
  border: none;
  order: 3;
  position: relative;
  z-index: 9999;
}
@media screen and (min-width: 769px) {
  .header__btn {
    display: none;
  }
}
.header__btn span {
  display: block;
  height: 1px;
  width: 100%;
  background: #404460;
  transition: all 0.3s ease;
  border-radius: 1px;
}
.header__checkbox {
  display: none;
}
.header__checkbox:checked ~ .header__inner .header__btn span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header__checkbox:checked ~ .header__inner .header__btn span:nth-child(2) {
  transform: translateY(0px) rotate(-45deg);
}
.header__checkbox:checked ~ .header__drawer {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.header__nav--pc {
  display: none;
  order: 2;
}
@media screen and (min-width: 769px) {
  .header__nav--pc {
    display: block;
    order: 2;
    margin-left: auto;
  }
}
.header__links, .header__drawer-links {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 769px) {
  .header__links, .header__drawer-links {
    flex-direction: row;
    gap: 16px;
  }
  .header__links a.current, .header__drawer-links a.current {
    position: relative;
  }
  .header__links a.current::after, .header__drawer-links a.current::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #0E99AC;
    border-radius: 50%;
  }
}
.header__links li a, .header__drawer-links li a {
  display: block;
  transition: color 0.3s ease;
  font-size: 16px;
  color: #404460;
  line-height: 150%;
  text-decoration: none;
  padding: 8px 0;
}
.header__links li a:hover, .header__drawer-links li a:hover {
  color: #0E99AC;
}
@media screen and (min-width: 769px) {
  .header__links li a, .header__drawer-links li a {
    font-size: 14px;
    line-height: 200%;
    padding: 4px 0;
  }
}
.header__drawer {
  height: calc(100dvh - 69px);
  overflow-y: auto;
  padding-bottom: env(safe-area-inset-bottom);
  position: fixed;
  top: 69px;
  right: 0;
  width: 95%;
  background: #fff;
  transform: translateX(100%);
  transition: all 0.5s ease;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .header__drawer {
    display: none;
  }
}
.header__drawer-links li a {
  line-height: 150%;
  padding: 24px 16px;
  border-bottom: 1px solid #ECECEF;
}
.header__drawer-links li a:hover {
  color: #0E99AC;
  background: rgba(14, 153, 172, 0.05);
}
.header__drawer-links li a:first-child {
  border-top: 1px solid #ECECEF;
}
.header__checkbox:checked ~ .header__overlay {
  display: block;
}
.header__overlay {
  display: none;
  position: fixed;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .header__overlay {
    display: none !important;
  }
}

.header--fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 69px;
}

.lang-menu-list {
  padding: 24px 16px;
  display: flex;
  gap: 24px;
  flex-direction: column;
}
.lang-menu-list__content {
  line-height: 200%;
  display: flex;
  gap: 24px;
  flex-direction: column;
  padding-left: 8px;
}
.lang-menu-list li {
  position: relative;
  padding-left: 18px;
}
.lang-menu-list li::before {
  content: "";
  width: 7px;
  height: 1px;
  background: #404460;
  display: inline-block;
  border-radius: 100px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.lang-menu-list li.is-current-lang {
  color: #0E99AC;
}

.main-visual-blue {
  display: flex;
  width: 100%;
  height: 150px;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: #E7F5F7;
}
@media screen and (min-width: 769px) {
  .main-visual-blue {
    height: 237px;
  }
}
@media screen and (min-width: 769px) {
  .main-visual-blue__inner {
    width: 1192px;
    max-width: 1192px;
    margin: 0 auto;
  }
}
.main-visual-blue h1 {
  font-size: 30px;
  line-height: 140%;
  font-weight: 400;
}
@media screen and (min-width: 769px) {
  .main-visual-blue h1 {
    font-size: 46px;
    line-height: 160%;
  }
}

.main-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .main-visual {
    flex-direction: row;
    justify-content: center;
    padding: 0 16px;
    gap: 64px;
  }
}
@media screen and (min-width: 769px) {
  .main-visual__inner {
    flex: 0 0 auto;
    max-width: 1192px;
  }
}
.main-visual__title {
  font-size: 30px;
  line-height: 160%;
  text-align: center;
  margin-bottom: 16px;
}
@media screen and (min-width: 769px) {
  .main-visual__title {
    font-size: 40px;
    text-align: left;
    margin-bottom: 0;
    width: 344px;
  }
}
.main-visual__title_presbyopia {
  margin-top: 16px;
}
@media screen and (min-width: 769px) {
  .main-visual__title_presbyopia {
    margin-top: 0;
  }
}
.main-visual__subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 200%;
  display: block;
}
@media screen and (min-width: 769px) {
  .main-visual__subtitle {
    font-size: 30px;
    line-height: 160%;
  }
}
.main-visual__image {
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .main-visual__image {
    flex: 0 1 892px;
    max-width: 892px;
    border-radius: 8px;
  }
}
.main-visual__image img {
  object-fit: cover;
}
@media screen and (min-width: 769px) {
  .main-visual__image--mobile {
    display: none;
  }
}
.main-visual__image--desktop {
  display: none;
}
@media screen and (min-width: 769px) {
  .main-visual__image--desktop {
    display: block;
    max-width: 800px;
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
  padding: 20px 16px;
  max-width: 1192px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .breadcrumb {
    padding: 20px 0;
  }
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb__item {
  font-size: 14px;
  position: relative;
}
.breadcrumb__item:not(:first-child) {
  margin-left: 24px;
}
.breadcrumb__item:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -16px;
  width: 8px;
  height: 9px;
  transform: translateY(-50%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='9' viewBox='0 0 8 9' fill='none'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M2.1297 0.56543c-.06719 0-.13595.02656-.18751.07812-.10312.10312-.10312.27187 0 .375l3.52969 3.52969-3.47812 3.47813c-.10313.10312-.10313.27187 0 .375.10313.10312.27188.10312.375 0l3.66719-3.66719c.10312-.10313.10312-.27188 0-.375L2.31875.64355c-.05312-.05312-.12031-.07812-.18905-.07812Z' fill='%23444559'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Crect width='8' height='8' fill='white' transform='translate(8 .5) rotate(90)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") no-repeat center/contain;
}
.breadcrumb__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.breadcrumb__link {
  display: flex;
  align-items: center;
}
.breadcrumb__link:hover {
  color: #0E99AC;
}

.footer {
  text-align: center;
  border-top: 1px solid #C2C3CC;
}
@media screen and (min-width: 769px) {
  .footer {
    text-align: left;
  }
}
.footer__inner {
  padding: 48px 16px;
  display: grid;
  gap: 48px;
}
@media screen and (min-width: 769px) {
  .footer__inner {
    display: flex;
    justify-content: space-between;
    padding: 64px 16px;
    max-width: 1192px;
    margin: 0 auto;
    padding: 64px 0;
  }
}
@media screen and (min-width: 769px) {
  .footer__nav {
    order: 3;
    display: flex;
    gap: 96px;
    align-items: flex-start;
    width: 40%;
  }
}
.footer__links {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
.footer__links:first-child {
  margin-bottom: 16px;
}
@media screen and (min-width: 769px) {
  .footer__links {
    gap: 24px;
    grid-template-columns: auto;
  }
  .footer__links:first-child {
    margin-bottom: 0;
  }
}
.footer__links li a {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 200%;
}
.footer__links li a:hover {
  color: #0E99AC;
}
@media screen and (min-width: 769px) {
  .footer__links li a {
    font-size: 18px;
  }
}
@media screen and (min-width: 769px) {
  .footer__logo-contact {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }
}
.footer__logos-wrap {
  display: none;
}
@media screen and (min-width: 769px) {
  .footer__logos-wrap {
    display: flex;
    gap: 48px;
    justify-content: center;
  }
}
.footer__logos-wrap img:hover {
  opacity: 0.8;
}
.footer__com-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  .footer__com-logo {
    display: none;
  }
}
.footer__logo {
  max-width: 134px;
  display: block;
}
@media screen and (min-width: 769px) {
  .footer__logo {
    max-width: 170px;
  }
}
.footer__company {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 769px) {
  .footer__company {
    gap: 4px;
    align-items: flex-start;
  }
}
@media screen and (min-width: 769px) {
  .footer__logo-link img:hover {
    opacity: 0.8;
  }
}
.footer__logo-company {
  width: 133px;
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .footer__logo-company {
    margin: 0;
  }
}
.footer__address {
  font-size: 14px;
  line-height: 160%;
}
@media screen and (min-width: 769px) {
  .footer__address {
    font-size: 16px;
  }
}
.footer__copyright {
  background-color: #404460;
  color: #fff;
  font-size: 14px;
  padding: 1rem;
}
@media screen and (min-width: 769px) {
  .footer__copyright {
    width: 100%;
    text-align: center;
  }
}

.cmn-link {
  text-align: center;
  line-height: 150%;
  font-weight: 500;
  padding: 20px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #C2C3CC;
  background: #FFF;
  width: fit-content;
}
.cmn-link:hover {
  background: #86CCD6;
  border: 1px solid #86CCD6;
}
@media screen and (min-width: 769px) {
  .cmn-link {
    font-size: 18px;
    padding: 12px 0;
    min-width: 180px;
    width: 314px;
  }
}
@media screen and (min-width: 769px) {
  .cc-banner .cc-message {
    font-size: 18px;
    line-height: 160%;
  }
}

.cc-theme-classic .cc-btn {
  border-radius: 10px;
  line-height: 160%;
}
@media screen and (min-width: 769px) {
  .cc-theme-classic .cc-btn {
    font-size: 18px;
    line-height: 200%;
  }
}

.cc-theme-classic .cc-btn:last-child {
  min-width: 100%;
}
@media screen and (min-width: 769px) {
  .cc-theme-classic .cc-btn:last-child {
    min-width: 170px;
  }
}

.top-main-visual {
  position: relative;
}
@media screen and (min-width: 769px) {
  .top-main-visual {
    padding: 0 16px;
  }
}
.top-main-visual__slide {
  width: 100%;
  height: 360px;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 769px) {
  .top-main-visual__slide {
    height: 603px;
    border-radius: 10px;
  }
}
.top-main-visual__slide_01 {
  background-image: url("/assets/images/top/main-visual-01-sp.webp");
}
@media screen and (min-width: 769px) {
  .top-main-visual__slide_01 {
    background-image: url("/assets/images/top/main-visual-01-pc.webp");
  }
}
.top-main-visual__slide_02 {
  background-image: url("/assets/images/top/main-visual-02-sp.webp");
}
@media screen and (min-width: 769px) {
  .top-main-visual__slide_02 {
    background-image: url("/assets/images/top/main-visual-02-pc.webp");
  }
}
.top-main-visual__slide_03 {
  background-image: url("/assets/images/top/main-visual-03-sp.webp");
}
@media screen and (min-width: 769px) {
  .top-main-visual__slide_03 {
    background-image: url("/assets/images/top/main-visual-03-pc.webp");
  }
}
.top-main-visual__slide_01-en {
  background-image: url("/assets/images/top/main-visual-01-en-sp.webp");
}
@media screen and (min-width: 769px) {
  .top-main-visual__slide_01-en {
    background-image: url("/assets/images/top/main-visual-01-en-pc.webp");
  }
}
.top-main-visual__slide_02-en {
  background-image: url("/assets/images/top/main-visual-02-en-sp.webp");
}
@media screen and (min-width: 769px) {
  .top-main-visual__slide_02-en {
    background-image: url("/assets/images/top/main-visual-02-en-pc.webp");
  }
}
.top-main-visual__slide_03-en {
  background-image: url("/assets/images/top/main-visual-03-en-sp.webp");
}
@media screen and (min-width: 769px) {
  .top-main-visual__slide_03-en {
    background-image: url("/assets/images/top/main-visual-03-en-pc.webp");
  }
}
.top-main-visual__overlay {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .top-main-visual__overlay {
    align-items: center;
  }
}
@media (min-width: 1280px) {
  .top-main-visual__overlay {
    left: calc(50% - 582px);
  }
}
.top-main-visual__title {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  margin: 0 0 16px;
}
@media screen and (min-width: 769px) {
  .top-main-visual__title {
    font-size: 32px;
  }
}
.top-main-visual__logo {
  position: relative;
  display: inline-block;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 65.012px;
  font-style: normal;
  font-weight: 200;
  line-height: 1;
}
@media screen and (min-width: 769px) {
  .top-main-visual__logo {
    font-size: 93.832px;
    line-height: 80%;
    margin-left: -30px;
  }
}
.top-main-visual__logo sup {
  position: absolute;
  top: 0;
  font-size: 27.714px;
  line-height: 1;
}
@media screen and (min-width: 769px) {
  .top-main-visual__logo sup {
    font-size: 40px;
    right: -30px;
  }
}
.top-main-visual__small {
  text-align: center;
  font-size: 11.086px;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (min-width: 769px) {
  .top-main-visual__small {
    font-size: 14.424px;
  }
}

.lifestyle-slider {
  position: relative;
  padding: 0 0 48px;
}
@media screen and (min-width: 769px) {
  .lifestyle-slider {
    padding: 0 0 64px;
  }
}
.lifestyle-slider__bg-title {
  -webkit-text-stroke: 3px #B3B4BF;
  paint-order: stroke;
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 85px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .lifestyle-slider__bg-title {
    font-size: 200px;
  }
}
.lifestyle-slider__title {
  font-size: 34px;
  font-style: normal;
  line-height: 160%;
  padding: 127px 16px 0;
  margin: 0 auto 24px;
}
@media screen and (min-width: 769px) {
  .lifestyle-slider__title {
    font-size: 46px;
    max-width: 1192px;
    margin: 0 auto 36px;
    padding: 130px 0 0;
  }
}
.lifestyle-slider__container {
  width: 100%;
  overflow: hidden;
}
.lifestyle-slider__wrapper {
  display: flex;
  width: 3672px;
  animation: slideLoop 30s linear infinite;
  animation-direction: normal;
  animation-play-state: running;
}
@media screen and (min-width: 769px) {
  .lifestyle-slider__wrapper {
    width: 4032px;
  }
}
.lifestyle-slider__slide {
  min-width: 274px;
  margin-right: 32px;
  flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  .lifestyle-slider__slide {
    margin-right: 32px;
  }
}
.lifestyle-slider__slide:first-child {
  margin-top: 64px;
}
.lifestyle-slider__slide:nth-child(2) {
  margin-top: 32px;
}
.lifestyle-slider__slide:nth-child(4) {
  margin-top: 32px;
}
.lifestyle-slider__slide:nth-child(5) {
  margin-top: 64px;
}
.lifestyle-slider__slide:nth-child(6) {
  margin-top: 96px;
}
.lifestyle-slider__slide:nth-child(7) {
  margin-top: 64px;
}
.lifestyle-slider__image {
  max-width: 274px;
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}
.lifestyle-slider__text {
  line-height: 150%;
  text-align: center;
  max-width: 274px;
}
@media screen and (min-width: 769px) {
  .lifestyle-slider__text {
    font-size: 18px;
  }
}
.lifestyle-slider__controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  max-width: calc(100% - 32px);
  margin: 16px auto 0;
}
@media screen and (min-width: 769px) {
  .lifestyle-slider__controls {
    max-width: 1316px;
  }
}
.lifestyle-slider__btn {
  color: #404460;
  width: 40px;
  height: 40px;
  border: 1px solid #ECECEF;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lifestyle-slider__btn:hover {
  background: #86CCD6;
  color: #fff;
}
.lifestyle-slider__btn:active {
  transform: scale(0.95);
}

.recommend {
  padding: 48px 16px;
  background: #E7F5F7;
}
@media screen and (min-width: 769px) {
  .recommend {
    padding: 64px 16px;
  }
}
.recommend__title {
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (min-width: 769px) {
  .recommend__title {
    font-size: 36px;
    margin-bottom: 36px;
  }
}
.recommend__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media screen and (min-width: 769px) {
  .recommend__container {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 84px;
    max-width: 1192px;
    width: 100%;
    margin: 0 auto;
  }
}
.recommend__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .recommend__list {
    text-align: center;
  }
}
.recommend__item {
  padding: 16px;
  border: 2px solid #0E99AC;
  border-radius: 16px;
  background: #fff;
  text-align: center;
  line-height: 150%;
}
@media screen and (min-width: 769px) {
  .recommend__item {
    width: auto;
    align-self: center;
  }
}
@media screen and (min-width: 769px) {
  .recommend__figure {
    max-width: 630px;
  }
}
.recommend__figure img {
  width: 100%;
  border-radius: 9.092px;
  display: block;
}
@media screen and (min-width: 769px) {
  .recommend__figure img {
    border-radius: 16px;
  }
}
.recommend__presbyopia {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  padding: 16px 0;
  margin-top: 24px;
}
@media screen and (min-width: 769px) {
  .recommend__presbyopia {
    flex-direction: row;
    margin-top: 46px;
    justify-content: center;
    gap: 32px;
  }
}
.recommend__presbyopia-text {
  font-size: 18px;
  color: #0E99AC;
  font-weight: 700;
  line-height: 200%;
}
@media screen and (min-width: 769px) {
  .recommend__presbyopia-text {
    font-size: 20px;
  }
}
.ipcl-intro {
  padding: 0 16px 64px;
  position: relative;
}
@media screen and (min-width: 769px) {
  .ipcl-intro {
    padding: 0 0 116px;
    overflow: hidden;
  }
}
.ipcl-intro__container {
  max-width: 1192px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .ipcl-intro__container {
    position: relative;
    margin-bottom: 204px;
  }
}
.ipcl-intro__bg-title {
  -webkit-text-stroke: 3px #B3B4BF;
  paint-order: stroke;
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 65px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .ipcl-intro__bg-title {
    font-size: 200px;
  }
}
.ipcl-intro__title {
  font-size: 34px;
  font-style: normal;
  line-height: 160%;
  padding-top: 94px;
}
@media screen and (min-width: 769px) {
  .ipcl-intro__title {
    font-size: 46px;
    padding-top: 322px;
    margin-bottom: 36px;
  }
}
.ipcl-intro__description {
  line-height: 200%;
  margin-bottom: 15px;
}
@media screen and (min-width: 769px) {
  .ipcl-intro__description {
    font-size: 18px;
    width: 60%;
  }
}
.ipcl-intro__badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
@media screen and (min-width: 769px) {
  .ipcl-intro__badges {
    gap: 10px;
    margin-bottom: 64px;
  }
}
.ipcl-intro__badge {
  display: flex;
  padding: 8px 16px;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: #0E99AC;
  width: fit-content;
}
@media screen and (min-width: 769px) {
  .ipcl-intro__badge {
    padding: 13px 16px;
    gap: 8px;
  }
}
.ipcl-intro__badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  .ipcl-intro__badge-icon {
    width: 28px;
    height: 28px;
  }
}
.ipcl-intro__badge-text {
  color: #FFF;
  line-height: 150%;
}
@media screen and (min-width: 769px) {
  .ipcl-intro__badge-text {
    font-size: 18px;
  }
}
.ipcl-intro__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 32px 0 -4px;
}
@media screen and (min-width: 769px) {
  .ipcl-intro__visual--mobile {
    display: none;
  }
}
.ipcl-intro__visual--desktop {
  display: none;
}
@media screen and (min-width: 769px) {
  .ipcl-intro__visual--desktop {
    display: block;
    margin: 0;
    max-width: 854px;
    position: absolute;
    bottom: -205px;
    right: -120px;
    z-index: -1;
  }
}
@media screen and (min-width: 769px) {
  .ipcl-intro__visual--desktop-en {
    bottom: -245px;
  }
}
.ipcl-intro__lens-graphic {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .ipcl-intro__lens-graphic {
    width: 100%;
    max-width: 854px;
  }
}
.ipcl-intro__lens-graphic img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.ipcl-intro .cmn-link__ipcl-intro {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .ipcl-intro .cmn-link__ipcl-intro {
    margin: 0;
  }
}

.surgery-flow {
  padding: 64px 0 0;
}
@media screen and (min-width: 769px) {
  .surgery-flow {
    padding: 0;
  }
}
.surgery-flow__container {
  max-width: 1192px;
  margin: 0 auto;
}
.surgery-flow__title {
  font-size: 28px;
  line-height: 160%;
}
@media screen and (min-width: 769px) {
  .surgery-flow__title {
    font-size: 36px;
  }
}
.surgery-flow__subtitle {
  line-height: 150%;
  margin-bottom: 27px;
}
@media screen and (min-width: 769px) {
  .surgery-flow__subtitle {
    font-size: 18px;
    line-height: 200%;
    margin-bottom: 40px;
  }
}
.surgery-flow__steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
@media screen and (min-width: 769px) {
  .surgery-flow__steps {
    flex-direction: row;
    gap: 0;
    margin-bottom: 44px;
  }
}
.surgery-flow__steps_m0 {
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  .surgery-flow__step {
    flex: 1;
  }
}
.surgery-flow__step-header {
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
  padding: 8px 0;
  text-align: center;
  border-radius: 10px 10px 0 0;
}
@media screen and (min-width: 769px) {
  .surgery-flow__step-header {
    font-size: 30px;
    padding: 16px;
  }
}
.surgery-flow__step-header-01 {
  background: #C2C3CC;
}
.surgery-flow__step-header-02 {
  background: #8C8FA0;
}
.surgery-flow__step-header-03 {
  background: #666980;
}
.surgery-flow__step-header-04 {
  background: #404460;
}
.surgery-flow__step-number {
  font-size: 28px;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .surgery-flow__step-number {
    font-size: 32px;
  }
}
.surgery-flow__step-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.surgery-flow__step-text {
  line-height: 150%;
  padding: 16px;
}
@media screen and (min-width: 769px) {
  .surgery-flow__step-text {
    font-size: 18px;
  }
}
.surgery-flow .cmn-link__surgery-flow {
  margin: 0 auto;
}

.comparison {
  padding: 68px 16px 32px;
}
@media screen and (min-width: 769px) {
  .comparison {
    padding: 68px 16px 56px;
  }
}
.comparison-top {
  padding: 64px 0 0;
}
.comparison__container {
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .comparison__container {
    max-width: 1192px;
  }
}
.comparison__title {
  font-size: 34px;
  font-style: normal;
  line-height: 160%;
  margin-bottom: 48px;
}
@media screen and (min-width: 769px) {
  .comparison__title {
    font-size: 46px;
    text-align: center;
  }
}
.comparison__title_top {
  font-size: 28px;
  margin-bottom: 24px;
}
@media screen and (min-width: 769px) {
  .comparison__title_top {
    font-size: 36px;
    margin-bottom: 40px;
  }
}
.comparison__text {
  line-height: 200%;
  margin-bottom: 48px;
}
@media screen and (min-width: 769px) {
  .comparison__text {
    font-size: 18px;
    margin-bottom: 40px;
    text-align: center;
  }
}
.comparison__table {
  width: 100%;
  margin-bottom: 32px;
  border-collapse: collapse;
}
@media screen and (min-width: 769px) {
  .comparison__table {
    margin-bottom: 36px;
  }
}
.comparison__header-label {
  width: 30%;
}
@media screen and (min-width: 769px) {
  .comparison__header-label {
    width: 274px;
  }
}
.comparison__header-item {
  padding: 20px 16px;
  text-align: center;
  color: #fff;
  line-height: 150%;
  width: 33%;
}
.comparison__header-item--lasik {
  font-weight: 400;
  background: #8C8FA0;
}
.comparison__header-item--ipcl {
  font-weight: 700;
  background: #0E99AC;
}
@media screen and (min-width: 769px) {
  .comparison__header-item {
    padding: 27px 0;
    font-size: 18px;
    width: auto;
  }
}
.comparison__row:last-child {
  border-bottom: none;
}
.comparison__label {
  padding: 20px 8px;
  line-height: 150%;
  font-weight: 700;
  border-bottom: 1px solid #C2C3CC;
  border-right: 1px solid #C2C3CC;
  box-sizing: border-box;
  text-align: center;
  vertical-align: middle;
  width: 33%;
}
.comparison__label:first-child {
  border-top: 1px solid #C2C3CC;
}
@media screen and (min-width: 769px) {
  .comparison__label {
    font-size: 18px;
    padding: 24px 20px;
    vertical-align: middle;
    width: 22%;
  }
}
.comparison__cell {
  padding: 20px 8px;
  text-align: center;
  vertical-align: middle;
  line-height: 150%;
  border-bottom: 1px solid #C2C3CC;
  border-right: 1px solid #C2C3CC;
  box-sizing: border-box;
  width: 33%;
}
@media screen and (min-width: 769px) {
  .comparison__cell {
    padding: 20px 0;
    font-size: 18px;
    width: 38%;
    line-height: 200%;
  }
}
.comparison__cell--lasik {
  background: #F0F2F4;
}
@media screen and (min-width: 769px) {
  .comparison__cell--lasik {
    border-right: 1px solid #E5E7EB;
  }
}
.comparison__cell--ipcl {
  background: #ECF7F9;
  color: #0E99AC;
  font-weight: 700;
}
.comparison .cmn-link__comparison {
  margin: 0 auto;
}

.top-safety {
  padding: 64px 0 0;
}
.top-safety__container {
  max-width: 1192px;
  margin: 0 auto;
}
.top-safety__title {
  font-size: 28px;
  font-style: normal;
  line-height: 160%;
}
@media screen and (min-width: 769px) {
  .top-safety__title {
    font-size: 36px;
  }
}
.top-safety__subtitle {
  line-height: 150%;
  margin-bottom: 27px;
}
@media screen and (min-width: 769px) {
  .top-safety__subtitle {
    font-size: 18px;
    line-height: 200%;
    margin-bottom: 40px;
  }
}
.top-safety__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
@media screen and (min-width: 769px) {
  .top-safety__cards {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 36px;
  }
}
.top-safety__card {
  display: flex;
  align-items: center;
  border: 1px solid #C2C3CC;
}
.top-safety__card-icon {
  flex-shrink: 0;
  background: #E7F5F7;
  width: 130px;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  .top-safety__card-icon {
    width: 200px;
    height: 158px;
  }
}
.top-safety__card-title {
  font-weight: 700;
  line-height: 200%;
  padding: 20px;
}
@media screen and (min-width: 769px) {
  .top-safety__card-title {
    font-size: 18px;
  }
}
.top-safety .cmn-link__top-safety {
  margin: 0 auto;
}

.faq {
  padding: 24px 16px 48px;
}
@media screen and (min-width: 769px) {
  .faq {
    padding: 96px 40px;
  }
}
.faq-top {
  background: #F5F6F7;
  padding: 48px 16px;
}
@media screen and (min-width: 769px) {
  .faq-top {
    padding: 100px 40px;
  }
}
.faq__container {
  max-width: 1192px;
  margin: 0 auto;
}
.faq__title {
  font-size: 34px;
  font-style: normal;
  line-height: 160%;
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (min-width: 769px) {
  .faq__title {
    font-size: 46px;
    margin-bottom: 32px;
  }
}
.faq__item {
  background: #fff;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  padding: 24px 20px 14px;
}
@media screen and (min-width: 769px) {
  .faq__item {
    padding: 36px 43px 26px;
    margin-bottom: 36px;
  }
}
.faq__item.is-open .faq__question {
  margin-bottom: 10px;
}
.faq__item.is-open .faq__question-icon {
  transform: rotate(180deg);
}
.faq__item.is-open .faq__answer {
  max-height: 1000px;
  opacity: 1;
}
.faq__question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 10px;
}
.faq__question-text {
  color: #0E99AC;
  font-size: 18px;
  font-weight: 700;
  line-height: 200%;
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
@media screen and (min-width: 769px) {
  .faq__question-text {
    font-size: 20px;
  }
}
.faq__mark {
  font-size: 30px;
  font-weight: 700;
  line-height: 100%;
}
.faq__mark_blue {
  color: #0E99AC;
}
.faq__mark_grey {
  color: #C2C3CC;
}
.faq__question-icon {
  flex-shrink: 0;
  width: 24px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.faq__question-icon svg {
  width: 24px;
  height: 25px;
}
@media screen and (min-width: 769px) {
  .faq__question-icon {
    width: 32px;
    height: 32px;
  }
  .faq__question-icon svg {
    width: 32px;
    height: 32px;
  }
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.35s ease;
  opacity: 0;
}
.faq__answer-text {
  line-height: 200%;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
@media screen and (min-width: 769px) {
  .faq__answer-text {
    font-size: 18px;
  }
}
.faq .cmn-link__faq {
  margin: 32px auto 0;
}
@media screen and (min-width: 769px) {
  .faq .cmn-link__faq {
    margin: 36px auto 0;
  }
}

.safety-info {
  padding: 48px 16px;
  border-top: 1px solid #C2C3CC;
}
@media screen and (min-width: 769px) {
  .safety-info {
    padding: 96px 0;
  }
}
.safety-info__container {
  max-width: 1192px;
  margin: 0 auto;
}
.safety-info__title {
  font-size: 24px;
  font-style: normal;
  line-height: 160%;
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (min-width: 769px) {
  .safety-info__title {
    font-size: 30px;
    margin-bottom: 40px;
  }
}
.safety-info__content {
  margin-bottom: 36px;
}
.safety-info__text {
  font-size: 14px;
  line-height: 200%;
  margin-bottom: 24px;
}
.safety-info__text:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  .safety-info__text {
    margin-bottom: 32px;
  }
}
.safety-info .cmn-link__safety-info {
  margin: 0 auto;
}

@keyframes slideLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.intro-blue {
  background: #E7F5F7;
  padding: 48px 16px;
}
@media screen and (min-width: 769px) {
  .intro-blue {
    padding: 96px 16px;
  }
}
@media screen and (min-width: 769px) {
  .intro-blue_safety {
    padding: 64px 16px;
  }
}
.intro-blue__inner {
  max-width: 1192px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .intro-blue__inner {
    text-align: center;
  }
}
.intro-blue__title {
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .intro-blue__title {
    font-size: 36px;
    line-height: 160%;
    margin-bottom: 36px;
  }
}
.intro-blue__text {
  line-height: 200%;
}
@media screen and (min-width: 769px) {
  .intro-blue__text {
    font-size: 18px;
  }
}
.intro-blue__text_en {
  text-align: left;
}
@media screen and (min-width: 769px) {
  .intro-blue_presbyopia {
    padding: 62px 16px;
  }
}
@media screen and (min-width: 769px) {
  .intro-blue_presbyopia__title {
    margin-bottom: 48px;
  }
}
.intro-blue_presbyopia__wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  .intro-blue_presbyopia__wrapper {
    flex-direction: row;
    gap: 64px;
  }
}
@media screen and (min-width: 769px) {
  .intro-blue_presbyopia__image {
    width: 53%;
    order: 2;
  }
}
.intro-blue_presbyopia__text {
  line-height: 200%;
}
@media screen and (min-width: 769px) {
  .intro-blue_presbyopia__text {
    font-size: 18px;
    text-align: left;
    order: 1;
  }
}

.about-feature {
  padding: 48px 16px;
}
@media screen and (min-width: 769px) {
  .about-feature {
    padding: 64px 0;
  }
}
.about-feature__inner {
  max-width: 1192px;
  margin: 0 auto;
}
.about-feature__title {
  font-size: 34px;
  line-height: 160%;
  margin-bottom: 32px;
}
@media screen and (min-width: 769px) {
  .about-feature__title {
    font-size: 46px;
    text-align: center;
    margin-bottom: 48px;
  }
}
.about-feature__list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 48px;
}
.about-feature__list:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  .about-feature__list {
    gap: 36px;
  }
}
.about-feature__item {
  background: #F5F6F7;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 769px) {
  .about-feature__item {
    flex-direction: row;
    align-items: center;
  }
}
.about-feature__body {
  padding: 20px;
}
@media screen and (min-width: 769px) {
  .about-feature__body {
    width: 40%;
    padding: 36px;
  }
}
.about-feature__subtitle {
  font-size: 28px;
  font-weight: 300;
  line-height: 160%;
  margin-bottom: 8px;
}
@media screen and (min-width: 769px) {
  .about-feature__subtitle {
    font-size: 36px;
    margin-bottom: 16px;
  }
}
.about-feature__text {
  line-height: 200%;
}
@media screen and (min-width: 769px) {
  .about-feature__text {
    font-size: 18px;
  }
}
.about-feature__image {
  width: 100%;
  height: 154px;
  flex-shrink: 0;
  border-radius: 0 0 8px 8px;
}
.about-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 769px) {
  .about-feature__image {
    width: 60%;
    height: auto;
  }
}

.feature-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  .feature-points {
    gap: 36px;
  }
}
.feature-points__item {
  line-height: 200%;
}
.feature-points__title {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  border-left: 3px solid #0E99AC;
  padding-left: 12px;
  margin-bottom: 16px;
}
@media screen and (min-width: 769px) {
  .feature-points__title {
    font-size: 20px;
  }
}
.feature-points__text {
  line-height: 200%;
}
@media screen and (min-width: 769px) {
  .feature-points__text {
    font-size: 18px;
  }
}

.safety-intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}
@media screen and (min-width: 769px) {
  .safety-intro {
    flex-direction: row;
    justify-content: space-between;
    gap: 32px;
    margin: 48px 0;
  }
}
.safety-intro__item {
  flex: 1;
  background: #fff;
  border: 2px solid #0E99AC;
  border-radius: 16px;
  padding: 20px 16px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .safety-intro__item {
    padding: 30px 16px 44px;
  }
}
.safety-intro__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 8px;
}
@media screen and (min-width: 769px) {
  .safety-intro__icon {
    width: 90px;
    height: 90px;
    margin-bottom: 32px;
  }
}
.safety-intro__icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.safety-intro__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 200%;
  margin-bottom: 16px;
}
.safety-intro__text {
  line-height: 150%;
  text-align: center;
}

.side-effects {
  padding: 48px 16px;
  max-width: 1192px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .side-effects {
    padding: 96px 0;
  }
}
.side-effects__title {
  font-size: 34px;
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 4px;
}
@media screen and (min-width: 769px) {
  .side-effects__title {
    font-size: 46px;
    text-align: center;
  }
}
.side-effects__lead {
  line-height: 200%;
}
@media screen and (min-width: 769px) {
  .side-effects__lead {
    font-size: 18px;
    text-align: center;
  }
}
.side-effects__lead_en {
  text-align: left;
}
.side-effects__subtitle {
  font-size: 28px;
  font-weight: 400;
  line-height: 160%;
  margin: 48px 0 24px;
}
@media screen and (min-width: 769px) {
  .side-effects__subtitle {
    font-size: 36px;
    margin: 64px 0 36px;
  }
}
.side-effects__list {
  margin-bottom: 16px;
}
.side-effects__list dt {
  font-weight: 700;
  line-height: 150%;
}
@media screen and (min-width: 769px) {
  .side-effects__list dt {
    font-size: 18px;
  }
}
.side-effects__list dd {
  margin: 0 0 20px;
  line-height: 200%;
}
.side-effects__list dd:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  .side-effects__list dd {
    font-size: 18px;
  }
}

.procedure-prep {
  padding: 48px 16px;
  max-width: 1192px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .procedure-prep {
    padding: 64px 0 64px;
  }
}
.procedure-prep__step {
  margin-bottom: 20px;
}
.procedure-prep__step:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  .procedure-prep__step {
    margin-bottom: 36px;
  }
}
.procedure-prep__title {
  font-size: 34px;
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 32px;
}
@media screen and (min-width: 769px) {
  .procedure-prep__title {
    font-size: 46px;
    text-align: center;
    margin-bottom: 42px;
  }
}
.procedure-prep__subtitle {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  padding-left: 9px;
  border-left: 3px solid #0E99AC;
  margin-bottom: 16px;
}
@media screen and (min-width: 769px) {
  .procedure-prep__subtitle {
    font-size: 20px;
  }
}
.procedure-prep__text {
  line-height: 200%;
}
@media screen and (min-width: 769px) {
  .procedure-prep__text {
    font-size: 18px;
  }
}
.procedure-prep__strong {
  color: #0E99AC;
  line-height: 200%;
  display: block;
  margin-bottom: 16px;
}
@media screen and (min-width: 769px) {
  .procedure-prep__strong {
    font-size: 18px;
  }
}
.procedure-prep__text_wrap {
  line-height: 200%;
}
@media screen and (min-width: 769px) {
  .procedure-prep__text_wrap {
    font-size: 18px;
    display: flex;
    gap: 16px;
  }
}
.procedure-prep__text_wrap ul {
  list-style-type: disc;
  padding-left: 32px;
}
.procedure-prep__table-wrapper {
  overflow-x: auto;
  margin: 20px 0 0;
}
@media screen and (min-width: 769px) {
  .procedure-prep__table-wrapper {
    margin: 18px 0 0;
  }
}

.procedure-content {
  padding: 0 16px 48px;
}
@media screen and (min-width: 769px) {
  .procedure-content {
    max-width: 1192px;
    margin: 0 auto;
    padding: 64px 0;
  }
}
.procedure-content__title {
  font-size: 34px;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (min-width: 769px) {
  .procedure-content__title {
    font-size: 46px;
    text-align: center;
  }
}
.procedure-content__text {
  line-height: 200%;
  margin-bottom: 32px;
}
@media screen and (min-width: 769px) {
  .procedure-content__text {
    font-size: 18px;
    margin-bottom: 48px;
    text-align: center;
  }
}
.procedure-content__text_en {
  text-align: left;
}
.procedure-table {
  width: 100%;
  border-collapse: collapse;
}
.procedure-table th,
.procedure-table td {
  border: 1px solid #C2C3CC;
  background-color: #fff;
  padding: 20px 10px;
  line-height: 150%;
  vertical-align: middle;
}
@media screen and (min-width: 769px) {
  .procedure-table th,
  .procedure-table td {
    font-size: 18px;
    padding: 23px 16px;
  }
}
.procedure-table th {
  background: #ECECEF;
  text-align: center;
  width: 33%;
}
@media screen and (min-width: 769px) {
  .procedure-table th {
    width: 23%;
  }
}

.references__inner {
  max-width: 1192px;
  margin: 0 auto;
  padding: 48px 16px;
}
@media screen and (min-width: 769px) {
  .references__inner {
    padding: 100px 0;
  }
}
.references__item {
  line-height: 200%;
  margin-bottom: 28px;
}
@media screen and (min-width: 769px) {
  .references__item {
    font-size: 18px;
    margin-bottom: 36px;
  }
}

.contact__inner {
  max-width: 1224px;
  margin: 0 auto;
  padding: 48px 16px;
}
@media screen and (min-width: 769px) {
  .contact__inner {
    padding: 96px 16px;
  }
}
.contact__text {
  line-height: 200%;
  margin-bottom: 24px;
}
@media screen and (min-width: 769px) {
  .contact__text {
    font-size: 18px;
  }
}
.contact .contact-form__group {
  margin-bottom: 12px; /*jill - 24px*/
}
@media screen and (min-width: 769px) {
  .contact .contact-form__group {
    margin-bottom: 16px; /*jill - 32px*/
  }
}
.contact .contact-form__group label {
  font-weight: 700;
  line-height: 150%;
  display: block;
  margin-bottom: 8px;
}
@media screen and (min-width: 769px) {
  .contact .contact-form__group label {
    font-size: 18px;
    margin-bottom: 16px;
  }
}
.contact .contact-form__group input {
  width: 100%;
  padding: 24px;
  /* line-height: 200%; */
  border: 1px solid #C2C3CC;
  border-radius: 8px;
  background: #F5F6F7;
  resize: vertical;
}
.contact .contact-form__group textarea {
  width: 100%;
  padding: 24px; 
  /* line-height: 200%; */
  border: 1px solid #C2C3CC;
  border-radius: 8px;
  background: #F5F6F7;
  resize: vertical;
}
.contact .contact-form__group input::placeholder,
.contact .contact-form__group textarea::placeholder {
  color: #8C8FA0;
}
@media screen and (min-width: 769px) {
  .contact .contact-form__group input::placeholder,
  .contact .contact-form__group textarea::placeholder {
    font-size: 18px;
  }
}
.contact .contact-form__group textarea, .form-adjust textarea{
  min-height: 304px;
}
@media screen and (min-width: 769px) {
  .contact .contact-form__group textarea, .form-adjust textarea{
    min-height: 300px;
  }
}
.contact .contact-form__notes {
  line-height: 200%;
  text-indent: calc(-1rem - 4px);
  padding-left: calc(1rem + 4px);
}
.contact .contact-form__notes::before {
  content: "※";
  margin-right: 4px;
}
@media screen and (min-width: 769px) {
  .contact .contact-form__notes {
    font-size: 18px;
  }
}
.contact .contact-form__notes_en::before {
  content: "*";
}
.contact .contact-form__link {
  color: #0E99AC;
}
.contact .contact-form__link:hover {
  text-decoration: underline;
}
.contact .contact-form__privacy-title {
  font-size: 24px;
  line-height: 160%;
  text-align: center;
  margin: 48px 0 36px;
}
@media screen and (min-width: 769px) {
  .contact .contact-form__privacy-title {
    font-size: 30px;
    margin: 96px 0 36px;
  }
}
.contact .contact-form__submit {
  text-align: center;
}
.contact .contact-form__submit button {
  width: 140px;
  margin: 0 auto;
  line-height: 150%;
  transition: all 0.3s ease;
}
@media screen and (min-width: 769px) {
  .contact .contact-form__submit button {
    width: 314px;
    line-height: 200%;
  }
}

.policy__inner {
  max-width: 1224px;
  margin: 0 auto;
  padding: 48px 16px;
}
.policy__inner:last-child {
  padding: 0 16px 48px;
}
@media screen and (min-width: 769px) {
  .policy__inner {
    padding: 96px 16px;
  }
  .policy__inner:last-child {
    padding: 0 16px 96px;
  }
}
.policy__title {
  font-size: 28px;
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 24px;
}
@media screen and (min-width: 769px) {
  .policy__title {
    font-size: 36px;
    margin-bottom: 36px;
  }
}
.policy__paragraph {
  line-height: 200%;
  margin-bottom: 24px;
}
@media screen and (min-width: 769px) {
  .policy__paragraph {
    font-size: 18px;
  }
}
.policy__subtitle {
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  padding-left: 9px;
  border-left: 3px solid #0E99AC;
  margin: 32px 0 16px;
}
@media screen and (min-width: 769px) {
  .policy__subtitle {
    font-size: 20px;
    margin: 48px 0 24px;
  }
}
.policy__list {
  margin-bottom: 24px;
  padding-left: 20px;
  list-style-type: disc;
}
.policy__list li {
  line-height: 200%;
  margin-bottom: 8px;
}
@media screen and (min-width: 769px) {
  .policy__list {
    font-size: 18px;
  }
}
.policy__link {
  color: #0E99AC;
}
.policy__link:hover {
  text-decoration: underline;
}
.about-presbyopia {
  padding: 48px 16px 0;
}
@media screen and (min-width: 769px) {
  .about-presbyopia {
    padding: 96px 16px 0;
    max-width: 1224px;
    margin: 0 auto;
  }
}
.about-presbyopia__title {
  font-size: 28px;
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 24px;
}
@media screen and (min-width: 769px) {
  .about-presbyopia__title {
    font-size: 36px;
    margin-bottom: 36px;
  }
}
.about-presbyopia__wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 769px) {
  .about-presbyopia__wrapper {
    flex-direction: row;
    gap: 88px;
  }
}
.about-presbyopia__image {
  width: 50%;
  margin: 0 auto;
  flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  .about-presbyopia__image {
    width: 25%;
    order: 2;
    margin-top: -94px;
  }
}
.about-presbyopia__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-presbyopia__text {
  line-height: 200%;
}
@media screen and (min-width: 769px) {
  .about-presbyopia__text {
    font-size: 18px;
    order: 1;
  }
}

.presbyopia-feature {
  padding: 48px 16px 64px;
}
@media screen and (min-width: 769px) {
  .presbyopia-feature {
    padding: 60px 16px 80px;
    max-width: 1224px;
    margin: 0 auto;
  }
}
.presbyopia-feature__inner {
  margin-bottom: 20px;
}
.presbyopia-feature__inner:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  .presbyopia-feature__inner {
    margin-bottom: 36px;
  }
}
.presbyopia-feature__title {
  font-size: 28px;
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 34px;
}
@media screen and (min-width: 769px) {
  .presbyopia-feature__title {
    font-size: 36px;
    margin-bottom: 36px;
  }
}
.presbyopia-feature__subtitle {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  padding-left: 9px;
  border-left: 3px solid #0E99AC;
  margin-bottom: 16px;
}
@media screen and (min-width: 769px) {
  .presbyopia-feature__subtitle {
    font-size: 20px;
  }
}
.presbyopia-feature__text {
  line-height: 200%;
}
@media screen and (min-width: 769px) {
  .presbyopia-feature__text {
    font-size: 18px;
  }
}
