@charset "UTF-8";
.page-about {
  background: #eaf3fb;
}

.about_top {
  background: #fff;
}

.about-concept__textblock ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #fff;
  border: 2px solid #c6cdff;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(26, 26, 26, 0.05);
}
@media (max-width: 768px) {
  .about-concept__textblock ul {
    padding: 2rem 1rem;
    font-size: 0.95rem;
  }
}
.about-concept__textblock ul li {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  line-height: 1.6;
}
.about-concept__textblock ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  background: linear-gradient(135deg, #c6cdff 0%, #a3ebff 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  font-size: 1rem;
  margin-right: 1rem;
  border-radius: 4px;
  flex-shrink: 0;
}
.about-concept__textblock div p {
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.about-concept__textblock div p:last-child {
  margin-bottom: 0;
}
.about-concept__centerblock {
  text-align: center;
  margin: 4rem 0;
}
.about-concept__centerblock span {
  font-size: 1.2rem;
  color: #4f6ff4;
}
.about-concept__photos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}
.about-concept__photos figure {
  width: 300px;
}
.about-concept__note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.95em;
  color: #555;
}

.circle-diagram-wrapper {
  display: flex;
  justify-content: center;
}

.circle-diagram-scaler {
  --scale: 0.9;
  transform: scale(var(--scale));
  transform-origin: center center;
  transition: transform 0.3s ease;
  width: calc(550px * var(--scale));
  height: calc(550px * var(--scale));
}

@media (max-width: 768px) {
  .circle-diagram-scaler {
    --scale: 0.8;
    width: 440px;
    height: 440px;
  }
}
.circle-diagram {
  position: relative;
  width: 480px;
  height: 480px;
  max-width: 100%;
  margin: 0 auto;
}
.circle-diagram .circle {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #b8dfff;
  color: #1a1a1a;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.4;
  padding: 1em;
  font-size: 0.9rem;
}
.circle-diagram .center {
  top: 50%;
  left: 50%;
  width: 260px;
  height: 260px;
  transform: translate(-50%, -50%);
  background-color: #f0fbff;
  border: 2px solid #a0d8f0;
  display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.circle-diagram .center .inner-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.circle-diagram .center .inner-text .main {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.2;
  color: #4f6ff4;
}
.circle-diagram .center .inner-text .sub {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.2;
}
.circle-diagram .top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.circle-diagram .left {
  bottom: 0;
  left: 0;
}
.circle-diagram .right {
  bottom: 0;
  right: 0;
}

.about-facility {
  background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url(../img/about-bg1.webp) no-repeat center/cover;
  background-attachment: fixed;
}
.about-facility__centerblock {
  text-align: center;
  margin: 2rem 0;
  margin-bottom: 2rem;
}
.about-facility__centerblock span {
  font-size: 1.2rem;
  color: #4f6ff4;
}
.about-facility__textblock {
  background: rgba(255, 255, 255, 0.9);
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .about-facility__textblock {
    padding: 4rem 1rem;
  }
}

.video-placeholder {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.video-placeholder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.video-placeholder .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  background-color: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.video-placeholder .play-button::before {
  content: "";
  display: block;
  margin-left: 1.1rem;
  width: 0;
  height: 0;
  border-left: 18px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}
.video-placeholder .play-button:hover {
  background-color: rgba(0, 0, 0, 0.75);
}

.about-cells {
  background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url(../img/about-bg2.webp) no-repeat center/cover;
  background-attachment: fixed;
}
.about-cells__textblock {
  background: rgba(255, 255, 255, 0.9);
  padding: 4rem 0;
  text-align: center;
}
@media (max-width: 768px) {
  .about-cells__textblock {
    padding: 2rem 1rem;
  }
}
.about-cells__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}
.about-cells__features li {
  background: linear-gradient(135deg, #c0e6ff, #d4e9f7);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  margin: 0.5rem;
  font-weight: 500;
}
.about-cells__centerblock {
  text-align: center;
  margin: 4rem 0;
  margin-bottom: 1rem;
}
.about-cells__centerblock span {
  font-size: 1.2rem;
  color: #4f6ff4;
}

.quality-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin: 2rem auto;
  max-width: 1200px;
  padding: 0 1rem;
}

.quality-card {
  background: #fff;
  border: 2px solid #d0e4ff;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 50, 150, 0.05);
  padding: 2rem;
  width: 100%;
  max-width: 360px;
  flex: 1 1 300px;
  text-align: left;
}
.quality-card h3 {
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #2a2a2a;
  margin-bottom: 1rem;
  border-left: 4px solid #4f6ff4;
  padding-left: 0.8rem;
}
.quality-card p,
.quality-card li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #333;
}
.quality-card ul {
  padding-left: 1.2rem;
}
.quality-card li {
  margin-bottom: 0.6rem;
  list-style: disc !important;
}
.quality-card li::marker {
  color: #4f6ff4;
}

.about-gallery {
  padding-bottom: 6rem;
}
.about-gallery__imgbox {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}
.about-gallery__imgbox img {
  width: 45%;
  max-width: 480px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.3));
}
.about-gallery__imgbox .about-gallery__intro {
  width: 50%;
  max-width: 540px;
  margin-left: auto;
  font-size: 1rem;
  line-height: 1.8;
  color: #0d1b3c;
}
.about-gallery__imgbox .about-gallery__intro h3 {
  font-size: 1.25rem;
  font-weight: 600;
  border-left: 4px solid #003366;
  padding-left: 0.5em;
  margin-top: 2em;
  margin-bottom: 0.8em;
}
.about-gallery__imgbox .about-gallery__intro p {
  margin-bottom: 1em;
  line-height: 1.9;
}
@media (max-width: 768px) {
  .about-gallery__imgbox {
    flex-direction: column;
    gap: 24px;
  }
  .about-gallery__imgbox img,
  .about-gallery__imgbox .about-gallery__intro {
    width: 100%;
    max-width: 100%;
  }
  .about-gallery__imgbox .about-gallery__intro {
    text-align: left;
    padding: 0 1rem;
  }
}

.about-gallery__slide {
  width: 300px;
  height: 300px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
}

.about-gallery__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .about-gallery__slide {
    width: 240px;
    height: 240px;
  }
}
@media (max-width: 767px) {
  .about-gallery__slide {
    width: 120px;
    height: 120px;
  }
}
/* モーダル */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.about-medical__centerblock {
  text-align: center;
  margin: 4rem 0;
  margin-bottom: 1rem;
}

.about-medical__categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.about-medical__category {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-medical__category .category-icon {
  font-size: 2.4rem;
  color: #4f6ff4;
  margin-bottom: 12px;
}
.about-medical__category .category-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.about-medical__category ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-overview__table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  max-width: 800px;
}
.about-overview__table th, .about-overview__table td {
  border: 1px solid #101b4d;
  padding: 1rem;
  text-align: left;
  vertical-align: top;
}
.about-overview__table th {
  background: #dcdff7;
  width: 30%;
}
.about-overview__table td {
  background: #fff;
}

.about-worries {
  background: #eaf3fb;
}
.about-worries .worries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.about-worries .worry-card {
  background: #ffffff;
  border: 1px solid #ccddee;
  border-radius: 8px;
  text-align: center;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.about-worries .worry-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.about-worries .worry-card figure img {
  border-bottom: 1px solid #ccddee;
}
.about-worries .worry-card h3 {
  font-size: 1rem;
  font-weight: 600;
  padding: 0.8rem;
  color: #002F6C;
}

.footer-recruit-banner {
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .footer-recruit-banner {
    margin-top: 2rem;
  }
}
.footer-recruit-banner img {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.footer-recruit-banner:hover img {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.fv-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000001;
  transition: background 0.3s ease, -webkit-backdrop-filter 0.3s ease;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
  /* ロゴ */
  /* ナビ（PC用） */
  /* CTA */
  /* ハンバーガー */
}
.fv-header.scrolled {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px); /* すりガラス効果 */
  -webkit-backdrop-filter: blur(12px);
}
.fv-header.scrolled .fv-header__logo {
  background: transparent; /* ロゴの白背景を消すなら */
}
.fv-header.scrolled .fv-header__nav .nav-list a,
.fv-header.scrolled .fv-header__nav .drop_down a,
.fv-header.scrolled .fv-header__nav .drop_down span,
.fv-header.scrolled .fv-header__nav .drop_down .sub_ttl2 {
  color: #101b4d; /* スクロール後は白文字 */
}
.fv-header.scrolled .fv-header__contact {
  border-radius: 0;
}
.fv-header.scrolled .fv-header__contact .btn:first-of-type {
  border-radius: 0;
}
.fv-header__inner {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}
.fv-header__logo {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 1.5rem 0 1rem;
  border-radius: 0 0 1rem 0;
  text-decoration: none; /* 下線消す */
}
.fv-header__logo img {
  height: 70px;
}
.fv-header__nav {
  flex: 1;
}
.fv-header__nav .nav-list {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  color: #fff;
}
.fv-header__nav .nav-list a {
  color: #fff;
  text-decoration: none;
}
.fv-header__nav .nav-list .drop_down a {
  color: #101b4d;
}
.fv-header__nav .nav-list .drop_down .sub_ttl2 {
  color: #101b4d;
}
@media (max-width: 1400px) {
  .fv-header__nav {
    display: none;
  }
}
.fv-header__contact {
  background: rgba(16, 27, 77, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 100%;
  display: flex;
  align-items: center;
  border-radius: 0 0 0 1rem;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.fv-header__contact .btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 100%;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0 1rem;
  position: relative;
  transition: all 0.3s ease;
}
.fv-header__contact .btn .ico {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex: 0 0 auto;
}
.fv-header__contact .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transition: background 0.3s ease;
  z-index: -1;
}
.fv-header__contact .btn:nth-of-type(1) {
  border-bottom-left-radius: 1rem;
}
.fv-header__contact .btn:nth-of-type(1)::before {
  background: rgba(70, 80, 160, 0.7);
}
.fv-header__contact .btn:nth-of-type(1):hover::before {
  background: rgba(70, 80, 160, 0.9);
}
.fv-header__contact .btn:nth-of-type(2)::before {
  background: rgba(40, 60, 150, 0.7);
}
.fv-header__contact .btn:nth-of-type(2):hover::before {
  background: rgba(40, 60, 150, 0.9);
}
.fv-header__contact .tel-box {
  height: 100%;
  padding: 0 1rem;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(16, 27, 77, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.fv-header__contact .tel-box .tel-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.fv-header__contact .tel-box .tel-line .ico {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.fv-header__contact .tel-box .tel-line a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
}
.fv-header__contact .tel-box p {
  font-size: 0.75rem;
  margin: 0;
  opacity: 0.9;
}
@media (max-width: 1400px) {
  .fv-header__contact {
    display: none;
  }
}
.fv-header .hamburger {
  display: none;
  margin-right: 1rem;
}
@media (max-width: 1400px) {
  .fv-header .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px; /* 横幅 */
    height: 22px; /* 縦幅 */
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 100001;
  }
  .fv-header .hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: 0.3s ease;
  }
  .fv-header .hamburger span:nth-child(1) {
    top: 0;
  }
  .fv-header .hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .fv-header .hamburger span:nth-child(3) {
    bottom: 0;
  }
  .fv-header .hamburger.active span {
    background: #fff; /* ×のとき白に */
  }
  .fv-header .hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  .fv-header .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .fv-header .hamburger.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
  }
}

.fv-spnav {
  opacity: 1 !important;
  visibility: visible !important;
  display: none;
}
.fv-spnav.active {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(16, 27, 77, 0.95);
  z-index: 1000000;
  padding: 80px 20px 6rem 20px;
  overflow-y: auto;
}
.fv-spnav .nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
}
.fv-spnav .nav-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.fv-spnav .nav-list li a, .fv-spnav .nav-list li .accordion-toggle {
  display: block;
  width: 100%;
  padding: 14px 0;
  color: #fff;
  font-size: 1.2rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}
.fv-spnav .nav-list li .accordion-toggle {
  position: relative;
  padding-right: 2rem;
}
.fv-spnav .nav-list li .accordion-toggle::after {
  content: "+";
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #fff;
  transition: transform 0.3s, content 0.3s;
}
.fv-spnav .nav-list li .accordion-toggle.open::after {
  content: "−";
}
.fv-spnav .submenu {
  display: none;
  padding-left: 1rem;
}
.fv-spnav .submenu li {
  border-bottom: none;
}
.fv-spnav .submenu li a {
  font-size: 1rem;
  padding: 10px 0;
}
.fv-spnav .submenu.open {
  display: block;
}
.fv-spnav .sub_ttl2 {
  color: #9EAEF4;
  margin: 0.5rem 0 0.25rem;
  font-weight: bold;
}
.fv-spnav .spnav-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8f8f8;
  border-radius: 12px;
}
.fv-spnav .spnav-cta .sp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: #005bac;
  border-radius: 8px;
  text-decoration: none;
}
.fv-spnav .spnav-cta .sp-btn svg {
  flex-shrink: 0;
}
.fv-spnav .spnav-cta .sp-tel {
  text-align: center;
}
.fv-spnav .spnav-cta .sp-tel a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}
.fv-spnav .spnav-cta .sp-tel a svg {
  flex-shrink: 0;
}
.fv-spnav .spnav-cta .sp-tel p {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.3rem;
}

.fv {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  /* 青グラデーション */
  /* ノイズ */
}
@media (max-width: 1400px) {
  .fv {
    height: 100%;
  }
}
.fv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 700px at 0% 0%, rgba(255, 255, 255, 0.5) 0%, transparent 70%), radial-gradient(circle 800px at 0% 100%, rgba(0, 64, 128, 0.85) 0%, transparent 100%), radial-gradient(circle at 25% 10%, rgba(0, 64, 128, 0.7), transparent 70%), radial-gradient(circle 600px at 70% 80%, rgba(255, 255, 255, 0.1), transparent 100%), linear-gradient(135deg, rgba(0, 40, 80, 0.3) 0%, rgba(0, 100, 180, 0.25) 50%, rgba(0, 160, 220, 0.2) 100%);
  z-index: 1;
}
.fv::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/noise.png") repeat;
  opacity: 0.2;
  mix-blend-mode: soft-light;
  z-index: 2;
}
.fv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fv__content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 4%;
  z-index: 3;
}
@media (max-width: 1400px) {
  .fv__content {
    height: auto;
    padding: 2rem 1rem;
    justify-content: flex-start;
    margin-top: 80px;
  }
}
.fv__catch {
  max-width: 50vw;
}
.fv__catch h1 {
  font-size: 6vw;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #fff;
}
.fv__catch h1 span {
  color: #9EAEF4;
}
.fv__catch p {
  font-size: 1.2rem;
  color: #fff;
}
@media (max-width: 768px) {
  .fv__catch {
    max-width: 100%;
    margin-bottom: 2rem;
  }
  .fv__catch h1 {
    font-size: 2.5rem;
    line-height: 1.4;
  }
  .fv__catch p {
    font-size: 0.95rem;
  }
}
.fv__info {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  max-width: 50vw;
}
.fv__info .fv__info-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  background: rgba(16, 27, 77, 0.3);
  border-radius: 12px;
  padding: 2.5rem;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 1rem;
}
.fv__info .fv__info-block .fv__info-text {
  flex: 1;
  line-height: 1.8;
}
.fv__info .fv__info-block .fv__info-text p:first-child {
  font-size: 0.85rem;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}
.fv__info .fv__info-block .fv__info-text p:last-child {
  font-size: 1.1rem;
  font-weight: 600;
}
.fv__info .fv__info-block .fv__info-btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 1.75rem;
  border: 2px solid #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}
.fv__info .fv__info-block .fv__info-btn img {
  width: 28px;
  height: 28px;
  margin-right: 0.5rem;
}
.fv__info .fv__info-block .fv__info-btn svg {
  width: 20px;
  height: 20px;
  margin-left: 0.5rem;
  fill: currentColor;
}
.fv__info .fv__info-block .fv__info-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .fv__info .fv__info-block {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
  }
  .fv__info .fv__info-block .fv__info-btn {
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
  }
}
.fv__info-news {
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 20px;
  border-radius: 6px;
}
@media (max-width: 1400px) {
  .fv__info-news {
    padding: 1rem;
    font-size: 0.9rem;
  }
}
@media (max-width: 1400px) {
  .fv__info {
    position: static;
    max-width: 100%;
    margin-top: 2rem;
  }
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.news_dl dt span {
  color: #8d93c7;
}

.top_about {
  padding-top: 4rem;
}/*# sourceMappingURL=test.css.map */