@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: 1000;
  /* ロゴ */
  /* ナビ（PC用） */
  /* CTA */
  /* ハンバーガー */
}
.fv-header__inner {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.fv-header__logo {
  background: #fff;
  height: 100%;
  padding: 0 2rem 0 1rem;
  display: flex;
  align-items: center;
  border-radius: 0 0 1rem 0;
}
.fv-header__logo img {
  height: 40px;
}
@media (max-width: 1400px) {
  .fv-header__logo {
    padding: 0 0.5rem;
  }
  .fv-header__logo img {
    height: 32px;
  }
}
.fv-header__nav {
  flex: 1;
}
.fv-header__nav .nav-list {
  display: flex;
  justify-content: center;
  gap: 1rem;
  color: #fff;
}
.fv-header__nav .nav-list a {
  color: #fff;
  text-decoration: none;
}
@media (max-width: 1400px) {
  .fv-header__nav {
    display: none;
  }
}
.fv-header__contact {
  background: #101b4d;
  height: 100%;
  display: flex;
  align-items: center;
  border-radius: 0 0 0 1rem;
  color: #fff;
}
.fv-header__contact .btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.fv-header__contact .btn .ico {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex: 0 0 auto;
}
.fv-header__contact .tel-box {
  padding: 0 2rem;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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;
}
@media (max-width: 1400px) {
  .fv-header .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 100001;
  }
  .fv-header .hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #333;
    transition: 0.3s;
  }
  .fv-header .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .fv-header .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .fv-header .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

.fv-spnav {
  opacity: 1 !important;
  visibility: visible !important;
  display: none;
}
.fv-spnav.active {
  display: block;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(16, 27, 77, 0.95);
  z-index: 99999;
  padding: 80px 20px 20px;
  overflow-y: auto;
}
.fv-spnav .nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.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 .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 {
  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 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: 2rem;
    line-height: 1.4;
  }
  .fv__catch p {
    font-size: 1rem;
  }
}
.fv__info {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  max-width: 50vw;
}
.fv__info-first {
  margin-bottom: 1.5rem;
}
.fv__info-first a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.fv__info-first-inner {
  display: flex;
  align-items: center;
  background: rgba(16, 27, 77, 0.3);
  border: 2px solid #fff;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fv__info-first-inner:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}
@media (max-width: 1400px) {
  .fv__info-first-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }
  .fv__info-first-inner .fv__info-first-icon {
    margin: 0 0 0.5rem 0;
  }
  .fv__info-first-inner .fv__info-first-cta {
    margin: 0.5rem 0 0 auto;
  }
}
.fv__info-first-icon {
  width: 40px;
  height: 40px;
  margin-right: 1rem;
}
.fv__info-first-text {
  flex: 1;
}
.fv__info-first-text h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.3rem;
  color: #fff;
  display: flex;
  align-items: center;
}
.fv__info-first-text p {
  font-size: 0.9rem;
  margin: 0;
  color: #fff;
}
.fv__info-first-text img {
  width: 40px;
  height: 40px;
  margin-right: 1rem;
  display: block;
}
.fv__info-first-text img svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: #fff;
}
.fv__info-first-cta {
  width: 24px;
  height: 24px;
  margin-left: 1rem;
  color: #fff;
}
.fv__info-first-cta svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}
.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;
  }
}/*# sourceMappingURL=test.css.map */