*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.75;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul,
ol {
  list-style: none;
}
.l-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.l-section {
  padding: 90px 0;
}
.l-section--gray {
  background-color: #f4f8fc;
}
.l-section--light {
  background-color: #eaf2fb;
}
/* Section Title */
.c-section-title {
  text-align: center;
  margin-bottom: 55px;
}
.c-section-title__en {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #3c75bc;
  margin-bottom: 8px;
}
.c-section-title__ja {
  display: block;
  font-size: 3.3rem;
  font-weight: 700;
  color: #1a3558;
  line-height: 1.3;
  padding-bottom: 4px;
  position: relative;
}
.c-section-title--white .c-section-title__en {
  color: rgba(255, 255, 255, 0.65);
}
.c-section-title--white .c-section-title__ja {
  color: #fff;
}
/* Buttons */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 34px;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 3px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.c-btn--primary {
  background-color: #3c75bc;
  color: #fff;
  border-color: #3c75bc;
}
.c-btn--primary:hover {
  background-color: #2d5d9a;
  border-color: #2d5d9a;
  opacity: 1;
}
.c-btn--outline {
  background-color: transparent;
  color: #3c75bc;
  border-color: #3c75bc;
}
.c-btn--outline:hover {
  background-color: #3c75bc;
  color: #fff;
  opacity: 1;
}
.c-btn--orange {
  background-color: #d8854e;
  color: #fff;
  border-color: #d8854e;
}
.c-btn--orange:hover {
  background-color: #c07040;
  border-color: #c07040;
  opacity: 1;
}
.c-btn--white {
  background-color: #fff;
  color: #3c75bc;
  border-color: #fff;
}
.c-btn--white:hover {
  background-color: transparent;
  color: #fff;
  opacity: 1;
}
.c-btn__arrow::after {
  content: "→";
  font-size: 1.2rem;
}
/* Header */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  transition: background-color 0.3s ease;
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
.l-header__logo a {
  display: flex;
  align-items: center;
  gap: 12px;
}
.l-header__logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.l-header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.l-header__logo-text span:first-child {
  font-size: 1.1rem;
  color: #777;
  letter-spacing: 0.03em;
}
.l-header__logo-text span:last-child {
  font-size: 1.55rem;
  font-weight: 700;
  color: #1a3558;
}
.l-header__nav {
  display: flex;
  align-items: center;
}
.l-gnav__list {
  display: flex;
  align-items: center;
  gap: 2px;
}
.l-gnav__item a {
  display: block;
  padding: 8px 10px;
  font-size: 1.2rem;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
  border-radius: 3px;
  transition: all 0.2s ease;
}
.l-gnav__item a:hover {
  color: #3c75bc;
  background-color: rgba(60, 117, 188, 0.07);
  opacity: 1;
}
.l-gnav__contact a {
  background-color: #3c75bc;
  color: #fff !important;
  padding: 8px 16px !important;
  border-radius: 3px;
}
.l-gnav__contact a:hover {
  background-color: #2d5d9a !important;
  opacity: 1;
}
.l-header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 1100;
}
.l-header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #1a3558;
  transition: all 0.3s ease;
  transform-origin: center;
}
.l-header__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.l-header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.l-header__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.l-drawer {
  display: block;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100%;
  background-color: #1a3558;
  z-index: 1050;
  transition: right 0.35s ease;
  padding-top: 80px;
  overflow-y: auto;
}
.l-drawer.is-open {
  right: 0;
}
.l-drawer__nav-list {
  padding: 0 24px;
}
.l-drawer__nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.l-drawer__nav-item a {
  display: block;
  padding: 16px 0;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.03em;
}
.l-drawer__nav-item a:hover {
  color: #d8854e;
  opacity: 1;
}
.l-drawer__contact {
  padding: 24px;
  margin-top: 12px;
}
.l-drawer__contact a {
  display: block;
  text-align: center;
  background-color: #d8854e;
  color: #fff;
  padding: 14px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 1.4rem;
}
.l-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1040;
}
.l-overlay.is-open {
  display: block;
}
/* FV */
.p-fv {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.p-fv__bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.p-fv__bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.p-fv__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(15, 45, 110, 0.82) 0%,
    rgba(30, 70, 140, 0.68) 40%,
    rgba(60, 117, 188, 0.3) 65%,
    rgba(174, 202, 238, 0) 100%
  );
}
.p-fv__inner {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 72px 0 0;
}
.p-fv__content {
  max-width: 560px;
  padding: 0 60px;
}
.p-fv__univ {
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  line-height: 1.2;
}
.p-fv__title {
  font-size: 2.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.p-fv__copy-sub {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.85;
  margin-bottom: 36px;
  font-weight: 400;
}
.p-fv__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.p-fv__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.p-fv__scroll span {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}
.p-fv__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 1;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
    opacity: 1;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
  }
}
/* News */
/* Movie */
.p-movie__youtube-wrapper {
  position: relative;
  width: 100%;
  max-width: 850px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 0 auto;
}
.p-movie__youtube-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-news {
  padding: 70px 0;
}
.p-news__inner {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}
.p-news__heading {
  flex-shrink: 0;
  width: 160px;
}
.p-news__heading .c-section-title {
  text-align: left;
  margin-bottom: 0;
}
.p-news__heading .c-section-title__en,
.p-news__heading .c-section-title__ja {
  text-align: left;
}
.p-news__heading .c-section-title__ja {
  font-size: 2.4rem;
}
.p-news__heading .c-section-title__ja::after {
  margin-left: 0;
}
.p-news__list {
  flex: 1;
}
.p-news__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #dce8f4;
}
.p-news__item:first-child {
  border-top: 1px solid #dce8f4;
}
.p-news__date {
  flex-shrink: 0;
  font-family: "Lato", sans-serif;
  font-size: 1.35rem;
  color: #888;
  letter-spacing: 0.05em;
  padding-top: 2px;
}
.p-news__text {
  font-size: 1.45rem;
  color: #333;
  line-height: 1.6;
}
.p-news__more {
  text-align: right;
  margin-top: 20px;
}
/* SNS */
.p-sns {
  padding: 52px 0;
  background: linear-gradient(105deg, #eaf2fb 0%, #f7fbff 100%);
  border-top: 1px solid #c8daea;
  border-bottom: 1px solid #c8daea;
}
.p-sns__inner {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.p-sns__left {
  flex-shrink: 0;
}
.p-sns__heading-en {
  font-family: "Lato", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #3c75bc;
  margin-bottom: 4px;
}
.p-sns__heading-ja {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1a3558;
  line-height: 1.2;
  position: relative;
  padding-left: 16px;
}
.p-sns__heading-ja::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #3c75bc, #aecaee);
  border-radius: 2px;
}
.p-sns__right {
  display: flex;
  align-items: center;
  flex: 1;
}
.p-sns__desc {
  font-size: 1.45rem;
  color: #444;
  line-height: 1.8;
}
.p-sns__ig-follow-note {
  font-size: 1.3rem;
  color: #888;
  margin-top: 8px;
}
.p-sns__ig-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #fff;
  border: 2px solid #e0eaf5;
  border-radius: 14px;
  padding: 22px 32px;
  transition: all 0.28s ease;
  box-shadow: 0 2px 16px rgba(60, 117, 188, 0.08);
  width: 100%;
}
.p-sns__ig-card:hover {
  border-color: #e1306c;
  box-shadow: 0 8px 28px rgba(225, 48, 108, 0.13);
  transform: translateY(-2px);
  opacity: 1;
}
.p-sns__ig-card-left {
  display: flex;
  align-items: center;
  gap: 18px;
}
.p-sns__ig-icon {
  width: 52px;
  height: 52px;
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.p-sns__ig-icon svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}
.p-sns__ig-handle {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #1a3558;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}
.p-sns__ig-desc {
  display: block;
  font-size: 1.3rem;
  color: #666;
  line-height: 1.5;
}
.p-sns__ig-cta {
  font-size: 1.3rem;
  font-weight: 700;
  color: #e1306c;
  white-space: nowrap;
  flex-shrink: 0;
}
/* Greeting */
.p-greeting__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.p-greeting__item {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(60, 117, 188, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.p-greeting__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(60, 117, 188, 0.15);
}
.p-greeting__photo {
  position: relative;
  height: 280px;
  overflow: hidden;
  background-color: #c8d9ee;
}
.p-greeting__photo-silhouette {
  position: absolute;
  inset: 0;
}
.p-greeting__photo-silhouette img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.p-greeting__photo-badge {
  display: none;
}
.p-greeting__body {
  padding: 28px 30px 32px;
}
.p-greeting__name-en {
  font-family: "Lato", sans-serif;
  font-size: 1.3rem;
  color: #3c75bc;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.p-greeting__name-ja {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a3558;
  margin-bottom: 4px;
  line-height: 1.3;
}
.p-greeting__title {
  font-size: 1.3rem;
  color: #888;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #dce8f4;
}
.p-greeting__meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  margin-bottom: 20px;
  align-items: start;
}
.p-greeting__meta-label {
  font-size: 1.25rem;
  font-weight: 700;
  color: #3c75bc;
  white-space: nowrap;
}
.p-greeting__meta-value {
  font-size: 1.3rem;
  color: #555;
  line-height: 1.7;
}
.p-greeting__text {
  font-size: 1.45rem;
  line-height: 1.85;
  color: #444;
}
/* Patients */
.p-patients__block {
  margin-bottom: 60px;
}
.p-patients__block-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a3558;
  margin-bottom: 24px;
  padding-left: 16px;
  border-left: 4px solid #3c75bc;
}
.p-disease-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}
.p-disease-card {
  background-color: #fff;
  border: 2px solid #c8daea;
  border-radius: 8px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.25s ease;
  cursor: pointer;
}
.p-disease-card:hover {
  border-color: #3c75bc;
  background-color: #eaf2fb;
  transform: translateY(-2px);
}
.p-disease-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  background-color: #daeaf7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3c75bc;
}
.p-disease-card__icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.p-disease-card__label {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a3558;
  line-height: 1.4;
}
.p-outpatient {
  background-color: #eaf2fb;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
}
.p-outpatient__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a3558;
  margin-bottom: 18px;
}
.p-outpatient__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
}
.p-outpatient__table th,
.p-outpatient__table td {
  padding: 10px 16px;
  text-align: center;
  border: 1px solid #b8d0e8;
}
.p-outpatient__table th {
  background-color: #3c75bc;
  color: #fff;
  font-weight: 600;
}
.p-outpatient__table td {
  background-color: #fff;
  color: #333;
}
.p-outpatient__table tr:nth-child(even) td {
  background-color: #f0f7fc;
}
.p-performance {
  background: linear-gradient(135deg, #3c75bc 0%, #6fa3d4 100%);
  border-radius: 8px;
  padding: 36px 40px;
  color: #fff;
}
.p-performance__title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.95);
}
.p-performance__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.p-performance__item {
  text-align: center;
}
.p-performance__num {
  font-family: "Lato", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.p-performance__num span {
  font-size: 2.2rem;
}
.p-performance__label {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.4;
}
/* Medical */
.p-medical__articles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.p-medical__card {
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(60, 117, 188, 0.1);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.p-medical__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(60, 117, 188, 0.15);
}
.p-medical__card-img {
  height: 160px;
  background-color: #c8daea;
  overflow: hidden;
}
.p-medical__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.p-medical__card:hover .p-medical__card-img img {
  transform: scale(1.04);
}
.p-medical__card-body {
  padding: 20px 22px;
}
.p-medical__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a3558;
  line-height: 1.4;
}
/* Department */
.p-department__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 0;
}
.p-department__card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(60, 117, 188, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease;
}
.p-department__card:hover {
  transform: translateY(-3px);
}
.p-department__card-img {
  height: 200px;
  overflow: hidden;
  background-color: #c8daea;
}
.p-department__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.p-department__card:hover .p-department__card-img img {
  transform: scale(1.04);
}
.p-department__card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.p-department__card-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: #1a3558;
  margin-bottom: 10px;
}
.p-department__card-text {
  font-size: 1.4rem;
  color: #555;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 20px;
}
/* Join CTA – full-width photo */
.p-department__join {
  position: relative;
  margin-top: 60px;
  border-radius: 10px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-department__join-bg {
  position: absolute;
  inset: 0;
}
.p-department__join-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-department__join-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28, 65, 130, 0.75) 0%,
    rgba(60, 117, 188, 0.55) 100%
  );
}
.p-department__join-body {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 48px 40px;
}
.p-department__join-label {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 18px;
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
}
.p-department__join-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.p-department__join-sub {
  font-size: 1.45rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  line-height: 1.7;
}
/* Features */
.p-features__list {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.p-features__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.p-features__item:nth-child(even) .p-features__img {
  order: 2;
}
.p-features__item:nth-child(even) .p-features__body {
  order: 1;
}
.p-features__img {
  border-radius: 8px;
  overflow: hidden;
  height: 300px;
  position: relative;
}
.p-features__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-features__img-num {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.95);
  background-color: rgba(60, 117, 188, 0.75);
  padding: 4px 10px;
  border-radius: 2px;
}
.p-features__num {
  font-family: "Lato", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #3c75bc;
  margin-bottom: 8px;
}
.p-features__title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1a3558;
  line-height: 1.3;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #c8daea;
  white-space: nowrap;
}
.p-features__text {
  font-size: 1.45rem;
  line-height: 1.9;
  color: #555;
}
/* FAQ */
.p-faq__tab {
  display: flex;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
  justify-content: center;
}
.p-faq__tab-btn {
  padding: 8px 22px;
  border-radius: 30px;
  font-size: 1.35rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid #b8d0e8;
  color: #555;
  background-color: #fff;
}
.p-faq__tab-btn:hover,
.p-faq__tab-btn.is-active {
  background-color: #3c75bc;
  border-color: #3c75bc;
  color: #fff;
}
.p-faq__list {
  max-width: 860px;
  margin: 0 auto;
}
.p-faq__item {
  border: 1px solid #c8daea;
  border-radius: 6px;
  margin-bottom: 12px;
  overflow: hidden;
}
.p-faq__question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  background-color: #fff;
  transition: background-color 0.2s ease;
  user-select: none;
}
.p-faq__question:hover {
  background-color: #f0f7fc;
}
.p-faq__q-mark {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #3c75bc;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-faq__q-text {
  flex: 1;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a3558;
  line-height: 1.5;
}
.p-faq__q-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}
.p-faq__q-icon::before,
.p-faq__q-icon::after {
  content: "";
  position: absolute;
  background-color: #3c75bc;
  border-radius: 1px;
}
.p-faq__q-icon::before {
  width: 2px;
  height: 12px;
  top: 4px;
  left: 9px;
  transition: opacity 0.3s ease;
}
.p-faq__q-icon::after {
  width: 12px;
  height: 2px;
  top: 9px;
  left: 4px;
}
.p-faq__item.is-open .p-faq__q-icon::before {
  opacity: 0;
}
.p-faq__answer {
  display: none;
  padding: 0 24px 22px 72px;
  background-color: #f7fbff;
}
.p-faq__a-mark {
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #d8854e;
  margin-right: 6px;
}
.p-faq__a-text {
  display: inline;
  font-size: 1.45rem;
  color: #555;
  line-height: 1.85;
}
.p-faq__more {
  text-align: center;
  margin-top: 32px;
}
/* Slider */
.p-slider {
  overflow: hidden;
  line-height: 0;
  background: #eaf2fb;
}
.slick-slide {
  padding: 0;
}
.p-slider__item {
  height: 320px;
  overflow: hidden;
  border-radius: 0;
}
.p-slider__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Access */
.p-access__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.p-access__address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
  padding: 20px;
  background-color: #eaf2fb;
  border-radius: 6px;
}
.p-access__address svg {
  flex-shrink: 0;
  color: #3c75bc;
  margin-top: 2px;
}
.p-access__address-text {
  font-size: 1.45rem;
  color: #444;
  line-height: 1.75;
}
.p-access__map-wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(60, 117, 188, 0.12);
}
.p-access__map-wrap iframe {
  width: 100%;
  height: 380px;
  display: block;
  border: none;
}
/* Contact */
.p-contact-section {
  background: linear-gradient(135deg, #3c75bc 0%, #aecaee 100%);
  padding: 90px 0;
}
.p-contact__form-wrap {
  max-width: 720px;
  margin: 0 auto;
}
.p-contact__form-group {
  margin-bottom: 22px;
}
.p-contact__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.p-contact__required {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background-color: #d8854e;
  padding: 2px 7px;
  border-radius: 2px;
}
.p-contact__input,
.p-contact__select,
.p-contact__textarea {
  width: 100%;
  padding: 11px 16px;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #1a3558;
  background-color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  outline: none;
}
.p-contact__input:focus,
.p-contact__select:focus,
.p-contact__textarea:focus {
  border-color: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
  background-color: #fff;
}
.p-contact__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233C75BC' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}
.p-contact__textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.7;
}
.p-contact__privacy {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  line-height: 1.7;
  display: flex;
  align-items: center;
}
.p-contact__privacy a {
  color: #fff;
  text-decoration: underline;
}
.p-contact__submit-wrap {
  text-align: center;
}
.p-contact__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 60px;
  background-color: #d8854e;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: "Noto Sans JP", sans-serif;
}
.p-contact__submit:hover {
  background-color: #c07040;
}
/* Footer */
.l-footer {
  background-color: #1a3558;
  padding: 50px 0 0;
  color: rgba(255, 255, 255, 0.75);
}
.l-footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.l-footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.l-footer__logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.l-footer__logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}
.l-footer__logo-sub {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 20px;
}
.l-footer__related-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
}
.l-footer__related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.l-footer__related-link {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.55);
  background-color: rgba(255, 255, 255, 0.06);
  padding: 5px 12px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}
.l-footer__related-link:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.12);
  opacity: 1;
}
.l-footer__bottom {
  background-color: rgba(0, 0, 0, 0.18);
  padding: 16px 20px;
  text-align: center;
}
.l-footer__copyright {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.04em;
}

/* Unified sub-heading (左縦バー型) */
.p-block-heading {
}
.p-block-heading__en {
  font-family: "Lato", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #3c75bc;
  margin-bottom: 4px;
}
.p-block-heading__ja {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a3558;
  line-height: 1.2;
  position: relative;
  padding-left: 16px;
}
.p-block-heading__ja::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #3c75bc, #aecaee);
  border-radius: 2px;
}

.p-greeting__detail-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 1.35rem;
  font-weight: 600;
  color: #3c75bc;
  border: 1.5px solid #3c75bc;
  padding: 9px 22px;
  border-radius: 4px;
  transition: all 0.25s ease;
}
.p-greeting__detail-btn:hover {
  background-color: #3c75bc;
  color: #fff;
  opacity: 1;
}

/* Patients link grid */
.p-patients__link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.p-patients__link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #fff;
  border: 2px solid #c8daea;
  border-radius: 10px;
  padding: 32px 24px 28px;
  transition: all 0.25s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.p-patients__link-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3c75bc, #aecaee);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.p-patients__link-card:hover {
  border-color: #3c75bc;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(60, 117, 188, 0.15);
  opacity: 1;
}
.p-patients__link-card:hover::before {
  transform: scaleX(1);
}
.p-patients__link-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background-color: #daeaf7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3c75bc;
  transition: background-color 0.25s ease;
}
.p-patients__link-card:hover .p-patients__link-card__icon {
  background-color: #3c75bc;
  color: #fff;
}
.p-patients__link-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background-color: #daeaf7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3c75bc;
  transition: background-color 0.25s ease;
}
.p-patients__link-card:hover .p-patients__link-card-icon {
  background-color: #3c75bc;
  color: #fff;
}
.p-patients__link-card-icon svg {
  width: 28px;
  height: 28px;
}
.p-patients__link-card-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a3558;
  line-height: 1.4;
  margin-bottom: 8px;
}
.p-patients__link-card-sub {
  font-size: 1.25rem;
  color: #777;
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}
.p-patients__link-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #eaf2fb;
  color: #3c75bc;
  font-size: 1.4rem;
  transition: all 0.25s ease;
}
.p-patients__link-card:hover .p-patients__link-card-arrow {
  background-color: #3c75bc;
  color: #fff;
}
/* Medical banner */
.p-medical__banner {
  background: linear-gradient(105deg, #1a3558 0%, #3c75bc 55%, #6fa3d4 100%);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: 0 8px 32px rgba(60, 117, 188, 0.25);
}
.p-medical__banner-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 36px 48px;
}
.p-medical__banner-nums {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}
.p-medical__banner-num-item {
  text-align: center;
  flex: 1;
}
.p-medical__banner-num {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 4.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.p-medical__banner-num small {
  font-size: 2rem;
  font-weight: 700;
}
.p-medical__banner-num-label {
  display: block;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}
.p-medical__banner-divider {
  width: 1px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 8px;
}
.p-medical__banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  background-color: #d8854e;
  color: #fff;
  padding: 18px 32px;
  border-radius: 6px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background-color 0.3s ease;
  flex-shrink: 0;
}
.p-medical__banner-btn:hover {
  background-color: #c07040;
  opacity: 1;
}
.p-medical__banner-btn svg {
  flex-shrink: 0;
}
@media screen and (max-width: 900px) {
  .p-medical__banner-body {
    flex-direction: column;
    padding: 32px 28px;
    gap: 28px;
  }
  .p-medical__banner-btn {
    width: 100%;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .p-patients__link-grid {
    grid-template-columns: 1fr;
  }
}

/* Academic achievements */
.p-academic {
  margin-top: 0;
}
/* ── ヘッダー：左に下線なしラベル型見出し、右にタブ ── */
.p-academic__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 20px;
}
.p-academic__heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.p-academic__heading-en {
  font-family: "Lato", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #3c75bc;
}
.p-academic__heading-ja {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a3558;
  line-height: 1.2;
  position: relative;
  padding-left: 16px;
}
.p-academic__heading-ja::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #3c75bc, #aecaee);
  border-radius: 2px;
}
/* タブ */
.p-academic__tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.p-academic__tab {
  padding: 7px 18px;
  border-radius: 4px;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1.5px solid #b8d0e8;
  color: #555;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}
.p-academic__tab:hover,
.p-academic__tab.is-active {
  background-color: #3c75bc;
  border-color: #3c75bc;
  color: #fff;
}
/* グリッド */
.p-academic__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.p-academic__card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(60, 117, 188, 0.09);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.p-academic__card.is-hidden {
  display: none;
}
.p-academic__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(60, 117, 188, 0.16);
}
.p-academic__card-inner {
  display: block;
}
/* 画像：角丸あり、余白あり */
.p-academic__card-img {
  position: relative;
  margin: 12px 12px 0;
  border-radius: 8px;
  overflow: hidden;
  height: 180px;
  background: #c8daea;
}
.p-academic__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.p-academic__card:hover .p-academic__card-img img {
  transform: scale(1.05);
}
/* カテゴリーバッジ */
.p-academic__card-cat {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}
.p-academic__card-cat._study {
  background-color: rgba(60, 117, 188, 0.9);
  color: #fff;
}
.p-academic__card-cat._paper {
  background-color: rgba(46, 139, 87, 0.9);
  color: #fff;
}
.p-academic__card-cat._award {
  background-color: rgba(216, 133, 78, 0.9);
  color: #fff;
}
/* ボディ */
.p-academic__card-body {
  padding: 14px 16px 20px;
}
.p-academic__card-date {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  color: #999;
  margin-bottom: 8px;
  letter-spacing: 0.06em;
}
.p-academic__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a3558;
  line-height: 1.6;
}
.p-academic__more {
  text-align: center;
  margin: 36px auto 0 auto;
}
@media screen and (max-width: 1000px) {
  .p-academic__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .p-academic__grid {
    grid-template-columns: 1fr;
  }
  .p-academic__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Medical hero banner */
.p-medical__hero-banner {
  position: relative;
  width: calc(100% - 40px);
  max-width: 1140px;
  margin: 0 auto 56px;
  height: 420px;
  overflow: hidden;
  border-radius: 16px;
}
.p-medical__hero-banner-bg {
  position: absolute;
  inset: 0;
}
.p-medical__hero-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-medical__hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(20, 50, 110, 0.78) 0%,
    rgba(60, 117, 188, 0.5) 60%,
    rgba(174, 202, 238, 0.2) 100%
  );
}
.p-medical__hero-banner-body {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 80px;
}
.p-medical__hero-banner-label {
  font-family: "Lato", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 12px;
}
.p-medical__hero-banner-title {
  font-size: 3.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.p-medical__hero-banner-text {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 32px;
}
.p-medical__hero-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #d8854e;
  color: #fff;
  padding: 15px 36px;
  border-radius: 4px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background-color 0.3s ease;
  width: fit-content;
}
.p-medical__hero-banner-btn:hover {
  background-color: #c07040;
  opacity: 1;
}
/* Outpatient 3-col full width */
.p-outpatient-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}
.p-outpatient-links__item {
  position: relative;
  height: 360px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}
.p-outpatient-links__bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}
.p-outpatient-links__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-outpatient-links__item:hover .p-outpatient-links__bg {
  transform: scale(1.05);
}
.p-outpatient-links__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 50, 110, 0.82) 0%,
    rgba(30, 70, 140, 0.4) 50%,
    rgba(60, 117, 188, 0.1) 100%
  );
  transition: background 0.4s ease;
}
.p-outpatient-links__item:hover .p-outpatient-links__overlay {
  background: linear-gradient(
    to top,
    rgba(20, 50, 110, 0.9) 0%,
    rgba(30, 70, 140, 0.55) 50%,
    rgba(60, 117, 188, 0.2) 100%
  );
}
.p-outpatient-links__body {
  position: relative;
  z-index: 2;
  padding: 32px 36px;
  width: 100%;
}
.p-outpatient-links__en {
  font-family: "Lato", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 8px;
}
.p-outpatient-links__title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 20px;
}
.p-outpatient-links__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  transition: all 0.3s ease;
}
.p-outpatient-links__arrow svg {
  width: 20px;
  height: 20px;
}
.p-outpatient-links__item:hover .p-outpatient-links__arrow {
  background-color: #fff;
  border-color: #fff;
  color: #3c75bc;
}
/* Footer redesign */
.l-footer {
  background-color: #2a303b;
  color: rgba(255, 255, 255, 0.72);
}
.l-footer__main {
  padding: 52px 0 48px;
}
.l-footer__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 80px;
}
.l-footer__brand {
}
.l-footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}
.l-footer__logo-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: #fff;
  border-radius: 4px;
  padding: 4px;
  flex-shrink: 0;
}
.l-footer__logo-text {
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
}
.l-footer__links {
}
.l-footer__links-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.l-footer__links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.l-footer__links-list li a {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}
.l-footer__links-list li a:hover {
  color: #fff;
  opacity: 1;
}
.l-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 24px;
}
.l-footer__bottom-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
.l-footer__copyright {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.4);
}
.l-footer__privacy {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: underline;
  transition: color 0.2s ease;
}
.l-footer__privacy:hover {
  color: rgba(255, 255, 255, 0.75);
  opacity: 1;
}
@media screen and (max-width: 600px) {
  .l-footer__inner {
    flex-direction: column;
    gap: 36px;
  }
}

/* Patients link grid */
.p-patients__link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.p-patients__link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #fff;
  border: 2px solid #c8daea;
  border-radius: 10px;
  padding: 32px 24px 28px;
  transition: all 0.25s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.p-patients__link-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3c75bc, #aecaee);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.p-patients__link-card:hover {
  border-color: #3c75bc;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(60, 117, 188, 0.15);
  opacity: 1;
}
.p-patients__link-card:hover::before {
  transform: scaleX(1);
}
.p-patients__link-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background-color: #daeaf7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3c75bc;
  transition: background-color 0.25s ease;
}
.p-patients__link-card:hover .p-patients__link-card__icon {
  background-color: #3c75bc;
  color: #fff;
}
.p-patients__link-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background-color: #daeaf7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3c75bc;
  transition: background-color 0.25s ease;
}
.p-patients__link-card:hover .p-patients__link-card-icon {
  background-color: #3c75bc;
  color: #fff;
}
.p-patients__link-card-icon svg {
  width: 28px;
  height: 28px;
}
.p-patients__link-card-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a3558;
  line-height: 1.4;
  margin-bottom: 8px;
}
.p-patients__link-card-sub {
  font-size: 1.25rem;
  color: #777;
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}
.p-patients__link-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #eaf2fb;
  color: #3c75bc;
  font-size: 1.4rem;
  transition: all 0.25s ease;
}
.p-patients__link-card:hover .p-patients__link-card-arrow {
  background-color: #3c75bc;
  color: #fff;
}
/* Medical banner */
.p-medical__banner {
  background: linear-gradient(105deg, #1a3558 0%, #3c75bc 55%, #6fa3d4 100%);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: 0 8px 32px rgba(60, 117, 188, 0.25);
}
.p-medical__banner-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 36px 48px;
}
.p-medical__banner-nums {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}
.p-medical__banner-num-item {
  text-align: center;
  flex: 1;
}
.p-medical__banner-num {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 4.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.p-medical__banner-num small {
  font-size: 2rem;
  font-weight: 700;
}
.p-medical__banner-num-label {
  display: block;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}
.p-medical__banner-divider {
  width: 1px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 8px;
}
.p-medical__banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  background-color: #d8854e;
  color: #fff;
  padding: 18px 32px;
  border-radius: 6px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background-color 0.3s ease;
  flex-shrink: 0;
}
.p-medical__banner-btn:hover {
  background-color: #c07040;
  opacity: 1;
}
.p-medical__banner-btn svg {
  flex-shrink: 0;
}
@media screen and (max-width: 900px) {
  .p-medical__banner-body {
    flex-direction: column;
    padding: 32px 28px;
    gap: 28px;
  }
  .p-medical__banner-btn {
    width: 100%;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .p-patients__link-grid {
    grid-template-columns: 1fr;
  }
}

/* Academic achievements */
.p-academic {
  margin-top: 0;
}
/* ── ヘッダー：左に下線なしラベル型見出し、右にタブ ── */
.p-academic__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 20px;
}
.p-academic__heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.p-academic__heading-en {
  font-family: "Lato", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #3c75bc;
}
.p-academic__heading-ja {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a3558;
  line-height: 1.2;
  position: relative;
  padding-left: 16px;
}
.p-academic__heading-ja::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #3c75bc, #aecaee);
  border-radius: 2px;
}
/* タブ */
.p-academic__tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.p-academic__tab {
  padding: 7px 18px;
  border-radius: 4px;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1.5px solid #b8d0e8;
  color: #555;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}
.p-academic__tab:hover,
.p-academic__tab.is-active {
  background-color: #3c75bc;
  border-color: #3c75bc;
  color: #fff;
}
/* グリッド */
.p-academic__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.p-academic__card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(60, 117, 188, 0.09);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.p-academic__card.is-hidden {
  display: none;
}
.p-academic__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(60, 117, 188, 0.16);
}
.p-academic__card-inner {
  display: block;
}
/* 画像：角丸あり、余白あり */
.p-academic__card-img {
  position: relative;
  margin: 12px 12px 0;
  border-radius: 8px;
  overflow: hidden;
  height: 180px;
  background: #c8daea;
}
.p-academic__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.p-academic__card:hover .p-academic__card-img img {
  transform: scale(1.05);
}
/* カテゴリーバッジ */
.p-academic__card-cat {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}
.p-academic__card-cat--research {
  background-color: rgba(60, 117, 188, 0.9);
  color: #fff;
}
.p-academic__card-cat--paper {
  background-color: rgba(46, 139, 87, 0.9);
  color: #fff;
}
.p-academic__card-cat--award {
  background-color: rgba(216, 133, 78, 0.9);
  color: #fff;
}
/* ボディ */
.p-academic__card-body {
  padding: 14px 16px 20px;
}
.p-academic__card-date {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  color: #999;
  margin-bottom: 8px;
  letter-spacing: 0.06em;
}
.p-academic__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a3558;
  line-height: 1.6;
}
.p-academic__more {
  text-align: center;
  margin-top: 36px;
}
@media screen and (max-width: 1000px) {
  .p-academic__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .p-academic__grid {
    grid-template-columns: 1fr;
  }
  .p-academic__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Medical hero banner */
.p-medical__hero-banner {
  position: relative;
  width: calc(100% - 40px);
  max-width: 1140px;
  margin: 0 auto 56px;
  height: 420px;
  overflow: hidden;
  border-radius: 16px;
}
.p-medical__hero-banner-bg {
  position: absolute;
  inset: 0;
}
.p-medical__hero-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-medical__hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(20, 50, 110, 0.78) 0%,
    rgba(60, 117, 188, 0.5) 60%,
    rgba(174, 202, 238, 0.2) 100%
  );
}
.p-medical__hero-banner-body {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 80px;
}
.p-medical__hero-banner-label {
  font-family: "Lato", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 12px;
}
.p-medical__hero-banner-title {
  font-size: 3.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.p-medical__hero-banner-text {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 32px;
}
.p-medical__hero-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #d8854e;
  color: #fff;
  padding: 15px 36px;
  border-radius: 4px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background-color 0.3s ease;
  width: fit-content;
}
.p-medical__hero-banner-btn:hover {
  background-color: #c07040;
  opacity: 1;
}
/* Outpatient 3-col full width */
.p-outpatient-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}
.p-outpatient-links__item {
  position: relative;
  height: 360px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}
.p-outpatient-links__bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}
.p-outpatient-links__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-outpatient-links__item:hover .p-outpatient-links__bg {
  transform: scale(1.05);
}
.p-outpatient-links__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 50, 110, 0.82) 0%,
    rgba(30, 70, 140, 0.4) 50%,
    rgba(60, 117, 188, 0.1) 100%
  );
  transition: background 0.4s ease;
}
.p-outpatient-links__item:hover .p-outpatient-links__overlay {
  background: linear-gradient(
    to top,
    rgba(20, 50, 110, 0.9) 0%,
    rgba(30, 70, 140, 0.55) 50%,
    rgba(60, 117, 188, 0.2) 100%
  );
}
.p-outpatient-links__body {
  position: relative;
  z-index: 2;
  padding: 32px 36px;
  width: 100%;
}
.p-outpatient-links__en {
  font-family: "Lato", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 8px;
}
.p-outpatient-links__title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 20px;
}
.p-outpatient-links__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  transition: all 0.3s ease;
}
.p-outpatient-links__arrow svg {
  width: 20px;
  height: 20px;
}
.p-outpatient-links__item:hover .p-outpatient-links__arrow {
  background-color: #fff;
  border-color: #fff;
  color: #3c75bc;
}
/* Footer redesign */
.l-footer {
  background-color: #2a303b;
  color: rgba(255, 255, 255, 0.72);
}
.l-footer__main {
  padding: 64px 0 52px;
}
.l-footer__grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 240px repeat(4, 1fr);
  gap: 40px;
  align-items: start;
}
.l-footer__col--brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.l-footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.l-footer__logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: #fff;
  border-radius: 4px;
  padding: 3px;
  flex-shrink: 0;
}
.l-footer__logo-text {
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
}
.l-footer__address {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
}
.l-footer__sns {
  display: flex;
  gap: 10px;
}
.l-footer__sns-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s ease;
}
.l-footer__sns-icon:hover {
  border-color: #fff;
  color: #fff;
  opacity: 1;
}
.l-footer__col-title {
  font-family: "Lato", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.l-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.l-footer__nav-list li a {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s ease;
  line-height: 1.5;
}
.l-footer__nav-list li a:hover {
  color: #fff;
  opacity: 1;
}
.l-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 24px;
}
.l-footer__bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
.l-footer__copyright {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.35);
}
.l-footer__privacy {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: underline;
  transition: color 0.2s ease;
}
.l-footer__privacy:hover {
  color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .l-footer__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  .l-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .l-footer__col--brand {
    grid-column: 1/-1;
  }
}

/* Patients link grid */
.p-patients__link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.p-patients__link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #fff;
  border: 2px solid #c8daea;
  border-radius: 10px;
  padding: 32px 24px 28px;
  transition: all 0.25s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.p-patients__link-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3c75bc, #aecaee);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.p-patients__link-card:hover {
  border-color: #3c75bc;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(60, 117, 188, 0.15);
  opacity: 1;
}
.p-patients__link-card:hover::before {
  transform: scaleX(1);
}
.p-patients__link-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background-color: #daeaf7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3c75bc;
  transition: background-color 0.25s ease;
}
.p-patients__link-card:hover .p-patients__link-card__icon {
  background-color: #3c75bc;
  color: #fff;
}
.p-patients__link-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background-color: #daeaf7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3c75bc;
  transition: background-color 0.25s ease;
}
.p-patients__link-card:hover .p-patients__link-card-icon {
  background-color: #3c75bc;
  color: #fff;
}
.p-patients__link-card-icon svg {
  width: 28px;
  height: 28px;
}
.p-patients__link-card-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a3558;
  line-height: 1.4;
  margin-bottom: 8px;
}
.p-patients__link-card-sub {
  font-size: 1.25rem;
  color: #777;
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}
.p-patients__link-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #eaf2fb;
  color: #3c75bc;
  font-size: 1.4rem;
  transition: all 0.25s ease;
}
.p-patients__link-card:hover .p-patients__link-card-arrow {
  background-color: #3c75bc;
  color: #fff;
}
/* Medical banner */
.p-medical__banner {
  background: linear-gradient(105deg, #1a3558 0%, #3c75bc 55%, #6fa3d4 100%);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: 0 8px 32px rgba(60, 117, 188, 0.25);
}
.p-medical__banner-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 36px 48px;
}
.p-medical__banner-nums {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}
.p-medical__banner-num-item {
  text-align: center;
  flex: 1;
}
.p-medical__banner-num {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 4.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.p-medical__banner-num small {
  font-size: 2rem;
  font-weight: 700;
}
.p-medical__banner-num-label {
  display: block;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}
.p-medical__banner-divider {
  width: 1px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 8px;
}
.p-medical__banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  background-color: #d8854e;
  color: #fff;
  padding: 18px 32px;
  border-radius: 6px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background-color 0.3s ease;
  flex-shrink: 0;
}
.p-medical__banner-btn:hover {
  background-color: #c07040;
  opacity: 1;
}
.p-medical__banner-btn svg {
  flex-shrink: 0;
}
@media screen and (max-width: 900px) {
  .p-medical__banner-body {
    flex-direction: column;
    padding: 32px 28px;
    gap: 28px;
  }
  .p-medical__banner-btn {
    width: 100%;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .p-patients__link-grid {
    grid-template-columns: 1fr;
  }
}

/* Academic achievements */
.p-academic {
  margin-top: 0;
}
/* ── ヘッダー：左に下線なしラベル型見出し、右にタブ ── */
.p-academic__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 20px;
}
.p-academic__heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.p-academic__heading-en {
  font-family: "Lato", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #3c75bc;
}
.p-academic__heading-ja {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a3558;
  line-height: 1.2;
  position: relative;
  padding-left: 16px;
}
.p-academic__heading-ja::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #3c75bc, #aecaee);
  border-radius: 2px;
}
/* タブ */
.p-academic__tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.p-academic__tab {
  padding: 7px 18px;
  border-radius: 4px;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1.5px solid #b8d0e8;
  color: #555;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}
.p-academic__tab:hover,
.p-academic__tab.is-active {
  background-color: #3c75bc;
  border-color: #3c75bc;
  color: #fff;
}
/* グリッド */
.p-academic__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.p-academic__card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(60, 117, 188, 0.09);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.p-academic__card.is-hidden {
  display: none;
}
.p-academic__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(60, 117, 188, 0.16);
}
.p-academic__card-inner {
  display: block;
}
/* 画像：角丸あり、余白あり */
.p-academic__card-img {
  position: relative;
  margin: 12px 12px 0;
  border-radius: 8px;
  overflow: hidden;
  height: 180px;
  background: #c8daea;
}
.p-academic__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.p-academic__card:hover .p-academic__card-img img {
  transform: scale(1.05);
}
/* カテゴリーバッジ */
.p-academic__card-cat {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}
.p-academic__card-cat--research {
  background-color: rgba(60, 117, 188, 0.9);
  color: #fff;
}
.p-academic__card-cat--paper {
  background-color: rgba(46, 139, 87, 0.9);
  color: #fff;
}
.p-academic__card-cat--award {
  background-color: rgba(216, 133, 78, 0.9);
  color: #fff;
}
/* ボディ */
.p-academic__card-body {
  padding: 14px 16px 20px;
}
.p-academic__card-date {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  color: #999;
  margin-bottom: 8px;
  letter-spacing: 0.06em;
}
.p-academic__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a3558;
  line-height: 1.6;
}
.p-academic__more {
  text-align: center;
  margin-top: 36px;
}
@media screen and (max-width: 1000px) {
  .p-academic__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .p-academic__grid {
    grid-template-columns: 1fr;
  }
  .p-academic__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Medical hero banner */
.p-medical__hero-banner {
  position: relative;
  width: calc(100% - 40px);
  max-width: 1140px;
  margin: 0 auto 56px;
  height: 420px;
  overflow: hidden;
  border-radius: 16px;
}
.p-medical__hero-banner-bg {
  position: absolute;
  inset: 0;
}
.p-medical__hero-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-medical__hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(20, 50, 110, 0.78) 0%,
    rgba(60, 117, 188, 0.5) 60%,
    rgba(174, 202, 238, 0.2) 100%
  );
}
.p-medical__hero-banner-body {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 80px;
}
.p-medical__hero-banner-label {
  font-family: "Lato", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 12px;
}
.p-medical__hero-banner-title {
  font-size: 3.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.p-medical__hero-banner-text {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 32px;
}
.p-medical__hero-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #d8854e;
  color: #fff;
  padding: 15px 36px;
  border-radius: 4px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background-color 0.3s ease;
  width: fit-content;
}
.p-medical__hero-banner-btn:hover {
  background-color: #c07040;
  opacity: 1;
}
/* Outpatient 3-col full width */
.p-outpatient-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}
.p-outpatient-links__item {
  position: relative;
  height: 360px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}
.p-outpatient-links__bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}
.p-outpatient-links__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-outpatient-links__item:hover .p-outpatient-links__bg {
  transform: scale(1.05);
}
.p-outpatient-links__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 50, 110, 0.82) 0%,
    rgba(30, 70, 140, 0.4) 50%,
    rgba(60, 117, 188, 0.1) 100%
  );
  transition: background 0.4s ease;
}
.p-outpatient-links__item:hover .p-outpatient-links__overlay {
  background: linear-gradient(
    to top,
    rgba(20, 50, 110, 0.9) 0%,
    rgba(30, 70, 140, 0.55) 50%,
    rgba(60, 117, 188, 0.2) 100%
  );
}
.p-outpatient-links__body {
  position: relative;
  z-index: 2;
  padding: 32px 36px;
  width: 100%;
}
.p-outpatient-links__en {
  font-family: "Lato", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 8px;
}
.p-outpatient-links__title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 20px;
}
.p-outpatient-links__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  transition: all 0.3s ease;
}
.p-outpatient-links__arrow svg {
  width: 20px;
  height: 20px;
}
.p-outpatient-links__item:hover .p-outpatient-links__arrow {
  background-color: #fff;
  border-color: #fff;
  color: #3c75bc;
}
/* Footer redesign */
.l-footer {
  background-color: #2a303b;
  color: rgba(255, 255, 255, 0.75);
}
.l-footer__main {
  padding: 52px 0 48px;
}
.l-footer__inner {
  display: flex;
  align-items: flex-start;
}
.l-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 240px;
}
.l-footer__left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.l-footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}
.l-footer__logo-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  background: #fff;
  padding: 4px;
}
.l-footer__logo-text {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
}
.l-footer__bottom-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.l-footer__copyright {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.45);
}
.l-footer__privacy {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: underline;
  font-size: 1.2rem;
  width: fit-content;
}
.l-footer__privacy:hover {
  color: #fff;
  opacity: 1;
}
.l-footer__links-col {
}
.l-footer__links-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.l-footer__links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.l-footer__links-list li a {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}
.l-footer__links-list li a:hover {
  color: #fff;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .p-outpatient-links {
    grid-template-columns: 1fr;
  }
  .p-outpatient-links__item {
    height: 280px;
  }
  .p-medical__hero-banner {
    height: 320px;
  }
  .p-medical__hero-banner-body {
    padding: 0 28px;
  }
  .p-medical__hero-banner-title {
    font-size: 2.8rem;
  }
  .l-footer__inner {
    flex-direction: column;
    gap: 36px;
  }
}

/* Reveal */
.js-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.js-reveal-delay-1 {
  transition-delay: 0.1s;
}
.js-reveal-delay-2 {
  transition-delay: 0.2s;
}
/* Responsive */
@media screen and (max-width: 1024px) {
  .l-gnav__item a {
    padding: 8px 7px;
    font-size: 1.1rem;
  }
  .p-features__item {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .p-features__item:nth-child(even) .p-features__img,
  .p-features__item:nth-child(even) .p-features__body {
    order: 0;
  }
  .p-features__img {
    height: 240px;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 58%;
  }
  .l-header__nav {
    display: none;
  }
  .l-header__hamburger {
    display: flex;
  }
  .p-fv__title {
    font-size: 3.6rem;
  }
  .p-fv__inner {
    padding: 72px 20px 0;
  }
  .p-news__inner {
    flex-direction: column;
    gap: 24px;
  }
  .p-news__heading {
    width: 100%;
  }
  .p-greeting__list {
    grid-template-columns: 1fr;
  }
  .p-disease-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-medical__articles {
    grid-template-columns: 1fr;
  }
  .p-department__grid {
    grid-template-columns: 1fr;
  }
  .p-performance__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .p-access__inner {
    grid-template-columns: 1fr;
  }
  .l-footer__inner {
    flex-direction: column;
    gap: 32px;
  }
  .l-section {
    padding: 60px 0;
  }
  .c-section-title__ja {
    font-size: 2.4rem;
  }
  .p-department__join-title {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 480px) {
  html {
    font-size: 55%;
  }
  .p-fv__title {
    font-size: 3rem;
  }
  .p-fv__actions {
    flex-direction: column;
  }
  .p-fv__actions .c-btn {
    width: 100%;
    text-align: center;
  }
  .p-disease-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .p-greeting__photo {
    height: 220px;
  }
  .p-greeting__meta {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   pages.css — 一覧・詳細ページ共通スタイル
   ============================================================ */

/* ============================================================
   pages.css — 一覧・詳細ページ共通スタイル
   index.html と共に style.css を読み込んだ上でこのファイルを追加する
   ============================================================ */

/* ---- Page Hero (パンくず + タイトルエリア) ---- */
.p-page-hero {
  padding-top: 72px; /* header分 */
  background: linear-gradient(135deg, #1a3558 0%, #3c75bc 100%);
  color: #fff;
}
.p-page-hero__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 48px 24px 52px;
}
.p-page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  font-family: "Lato", sans-serif;
}
.p-page-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}
.p-page-hero__breadcrumb a:hover {
  color: #fff;
  opacity: 1;
}
.p-page-hero__breadcrumb-sep {
  font-size: 1.1rem;
}
.p-page-hero__title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.p-page-hero__title-en {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
}

/* ---- Page Body Layout ---- */
.p-page-body {
  max-width: 1140px;
  margin: 0 auto;
  padding: 64px 24px 96px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: start;
}
.p-page-body--full {
  grid-template-columns: 1fr;
  max-width: 860px;
}

/* ---- Sidebar ---- */
.p-sidebar {
}
.p-sidebar__block {
  background: #f4f8fc;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 28px;
}
.p-sidebar__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a3558;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #c8daea;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.06em;
}
.p-sidebar__cat-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.p-sidebar__cat-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  font-size: 1.35rem;
  color: #444;
  border-radius: 4px;
  transition: all 0.2s;
}
.p-sidebar__cat-item a:hover,
.p-sidebar__cat-item.is-active a {
  background: #3c75bc;
  color: #fff;
  opacity: 1;
}
.p-sidebar__cat-count {
  font-size: 1.1rem;
  font-family: "Lato", sans-serif;
  background: rgba(60, 117, 188, 0.12);
  color: #3c75bc;
  padding: 1px 7px;
  border-radius: 10px;
}
.p-sidebar__cat-item a:hover .p-sidebar__cat-count,
.p-sidebar__cat-item.is-active a .p-sidebar__cat-count {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.p-sidebar__recent-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.p-sidebar__recent-item a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  font-size: 1.3rem;
  color: #444;
  line-height: 1.55;
}
.p-sidebar__recent-item a:hover {
  color: #3c75bc;
  opacity: 1;
}
.p-sidebar__recent-date {
  font-family: "Lato", sans-serif;
  font-size: 1.15rem;
  color: #999;
  white-space: nowrap;
  padding-top: 2px;
}

/* ============================================================
   記事一覧 (Archive)
   ============================================================ */
.p-archive__filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.p-archive__filter-btn {
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid #b8d0e8;
  color: #555;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  transition: all 0.2s;
}
.p-archive__filter-btn:hover,
.p-archive__filter-btn.is-active {
  background: #3c75bc;
  border-color: #3c75bc;
  color: #fff;
}

/* カード一覧グリッド */
.p-archive__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

/* カード — index.htmlと共通クラスを使用 */
.c-post-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(60, 117, 188, 0.09);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.c-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(60, 117, 188, 0.16);
}
.c-post-card__link {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.c-post-card__img {
  position: relative;
  margin: 12px 12px 0;
  border-radius: 8px;
  overflow: hidden;
  height: 180px;
  background: #c8daea;
  flex-shrink: 0;
}
.c-post-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.c-post-card:hover .c-post-card__img img {
  transform: scale(1.05);
}
.c-post-card__cat {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}
.c-post-card__cat--news {
  background: rgba(60, 117, 188, 0.9);
  color: #fff;
}
.c-post-card__cat--research {
  background: rgba(60, 117, 188, 0.9);
  color: #fff;
}
.c-post-card__cat--paper {
  background: rgba(46, 139, 87, 0.9);
  color: #fff;
}
.c-post-card__cat--award {
  background: rgba(216, 133, 78, 0.9);
  color: #fff;
}
.c-post-card__body {
  padding: 14px 16px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.c-post-card__date {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  color: #999;
  margin-bottom: 8px;
  letter-spacing: 0.06em;
}
.c-post-card__title {
  font-size: 1.45rem;
  font-weight: 600;
  color: #1a3558;
  line-height: 1.6;
  flex: 1;
}
.c-post-card__excerpt {
  font-size: 1.3rem;
  color: #666;
  line-height: 1.7;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* お知らせ一覧（シンプル行型） */
.p-news-list {
  margin-bottom: 48px;
}
.p-news-list__item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 0 20px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #dce8f4;
  transition: background 0.2s;
}
.p-news-list__item:first-child {
  border-top: 1px solid #dce8f4;
}
.p-news-list__item:hover {
  background: #f7fbff;
}
.p-news-list__date {
  font-family: "Lato", sans-serif;
  font-size: 1.3rem;
  color: #999;
  letter-spacing: 0.05em;
}
.p-news-list__cat {
  font-size: 1.1rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.p-news-list__title {
  font-size: 1.45rem;
  color: #1a3558;
  line-height: 1.5;
  font-weight: 500;
  transition: color 0.2s;
}
.p-news-list__title:hover {
  color: #3c75bc;
}

/* ページネーション */
.p-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.p-pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  font-size: 1.4rem;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  color: #555;
  background: #fff;
  border: 1.5px solid #c8daea;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.p-pagination__btn:hover,
.p-pagination__btn.is-active {
  background: #3c75bc;
  border-color: #3c75bc;
  color: #fff;
  opacity: 1;
}
.p-pagination__btn--prev,
.p-pagination__btn--next {
  width: auto;
  padding: 0 14px;
  gap: 4px;
}

/* ============================================================
   記事詳細 (Single)
   ============================================================ */
.p-single__header {
  margin-bottom: 36px;
}
.p-single__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.p-single__date {
  font-family: "Lato", sans-serif;
  font-size: 1.3rem;
  color: #999;
  letter-spacing: 0.05em;
}
.p-single__title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a3558;
  line-height: 1.45;
  letter-spacing: 0.01em;
}
.p-single__eyecatch {
  margin-bottom: 40px;
  border-radius: 10px;
  overflow: hidden;
  max-height: 480px;
}
.p-single__eyecatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 本文エディタースタイル (the_content相当) */
.p-single__content {
  font-size: 1.55rem;
  line-height: 1.95;
  color: #333;
}
.p-single__content p {
  margin-bottom: 1.6em;
}
.p-single__content p:last-child {
  margin-bottom: 0;
}

/* 見出し */
.p-single__content h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1a3558;
  margin: 2.4em 0 0.8em;
  padding: 14px 20px;
  background: linear-gradient(105deg, #eaf2fb 0%, #f7fbff 100%);
  border-left: 5px solid #3c75bc;
  border-radius: 0 6px 6px 0;
  line-height: 1.4;
}
.p-single__content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a3558;
  margin: 2em 0 0.7em;
  padding-left: 14px;
  border-left: 4px solid #3c75bc;
  line-height: 1.45;
}
.p-single__content h4 {
  font-size: 1.7rem;
  font-weight: 700;
  color: #1a3558;
  margin: 1.8em 0 0.6em;
  padding-bottom: 6px;
  border-bottom: 1px dashed #c8daea;
  line-height: 1.45;
}

/* リスト */
.p-single__content ul,
.p-single__content ol {
  margin: 1em 0 1.6em 1.4em;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-single__content ul {
  list-style: none;
  margin-left: 0;
}
.p-single__content ul li {
  padding-left: 22px;
  position: relative;
  font-size: 1.5rem;
  line-height: 1.75;
}
.p-single__content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3c75bc;
}
.p-single__content ol {
  list-style: decimal;
  padding-left: 1.4em;
}
.p-single__content ol li {
  font-size: 1.5rem;
  line-height: 1.75;
  padding-left: 4px;
}

/* リンク */
.p-single__content a {
  color: #3c75bc;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition:
    color 0.2s,
    opacity 0.2s;
}
.p-single__content a:hover {
  color: #2d5d9a;
  opacity: 1;
}

/* 強調 */
.p-single__content strong {
  font-weight: 700;
  color: #1a3558;
}
.p-single__content em {
  font-style: italic;
  color: #555;
}

/* 引用 */
.p-single__content blockquote {
  margin: 1.8em 0;
  padding: 20px 24px;
  background: #f4f8fc;
  border-left: 4px solid #aecaee;
  border-radius: 0 8px 8px 0;
  color: #555;
  font-size: 1.5rem;
  line-height: 1.85;
}
.p-single__content blockquote cite {
  display: block;
  margin-top: 8px;
  font-size: 1.25rem;
  color: #999;
  font-style: normal;
}

/* テーブル */
.p-single__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.8em 0;
  font-size: 1.45rem;
}
.p-single__content th,
.p-single__content td {
  padding: 12px 16px;
  border: 1px solid #c8daea;
  line-height: 1.6;
}
.p-single__content th {
  background: #3c75bc;
  color: #fff;
  font-weight: 600;
  text-align: left;
}
.p-single__content tr:nth-child(even) td {
  background: #f4f8fc;
}

/* 画像 */
.p-single__content img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 1.2em 0;
}
.p-single__content figure {
  margin: 1.8em 0;
}
.p-single__content figcaption {
  font-size: 1.25rem;
  color: #999;
  text-align: center;
  margin-top: 8px;
}

/* コード */
.p-single__content code {
  font-family: "Courier New", monospace;
  font-size: 1.3rem;
  background: #eaf2fb;
  padding: 2px 6px;
  border-radius: 3px;
  color: #2d5d9a;
}
.p-single__content pre {
  background: #1a3558;
  color: #e8f4fd;
  padding: 20px 24px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1.8em 0;
  font-size: 1.35rem;
  line-height: 1.7;
}
.p-single__content pre code {
  background: none;
  color: inherit;
  padding: 0;
}

/* 記事下ナビ */
.p-single__nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid #dce8f4;
}
.p-single__nav-prev,
.p-single__nav-next {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.p-single__nav-next {
  align-items: flex-end;
  text-align: right;
}
.p-single__nav-label {
  font-family: "Lato", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #999;
  text-transform: uppercase;
}
.p-single__nav-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a3558;
  line-height: 1.5;
  transition: color 0.2s;
}
.p-single__nav-prev:hover .p-single__nav-title,
.p-single__nav-next:hover .p-single__nav-title {
  color: #3c75bc;
}
.p-single__nav-center a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid #c8daea;
  border-radius: 50%;
  color: #555;
  transition: all 0.2s;
}
.p-single__nav-center a:hover {
  background: #3c75bc;
  border-color: #3c75bc;
  color: #fff;
  opacity: 1;
}

/* CTA（一覧へ戻る・お問い合わせ） */
.p-single__cta {
  margin-top: 48px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   Responsive
   ============================================================ */
@media screen and (max-width: 1024px) {
  .p-page-body {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .p-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .p-sidebar__block {
    margin-bottom: 0;
  }
  .p-archive__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .p-page-hero__title {
    font-size: 2.8rem;
  }
  .p-archive__grid {
    grid-template-columns: 1fr;
  }
  .p-news-list__item {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    row-gap: 6px;
  }
  .p-news-list__date {
    grid-row: 1;
  }
  .p-news-list__cat {
    grid-row: 1;
  }
  .p-news-list__title {
    grid-column: 1 / -1;
    grid-row: 2;
  }
  .p-single__title {
    font-size: 2.2rem;
  }
  .p-single__nav {
    grid-template-columns: 1fr 1fr;
  }
  .p-single__nav-center {
    display: none;
  }
  .p-sidebar {
    grid-template-columns: 1fr;
  }
}



/* page02 common */
.page02 {
    padding: 0 !important;
}

.heading._page02 {
    padding: 80px min(15%, 180px);
}

.fv2 {
    display: flex;
    /* justify-content: center; */
    align-items: end;
    height: 288px;
    background: linear-gradient(135deg, #1a3558 0%, #3c75bc 100%);
}

.fv2-h1 {
    font-size: 40px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.archive-link {
    text-decoration: none;
    padding: 20px 0;
    border-bottom: 1px solid #DDDDDD;
    display: block;
}


@media screen and (max-width: 960px) {
    .heading._page02 {
        padding: 80px min(5.333%, 20px);
    }

    .fv2-h1 {
        font-size: 28px;
    }
}

/* page02 page03 パンくずリスト */
.heading._crumbs {
    padding: 20px min(15%, 180px);
}

#crumbs {
    position: relative;
}

.crumbs {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.crumbs::-webkit-scrollbar {
  display: none;
}

.crumbs-link {
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.44px;
    color: #3c75bc;

}

.crumbs-separator {
    margin: 0 8px;
}

.crumbs-current {
    font-size: 16px;
}

@media screen and (max-width: 960px) {
    .heading._page02 {
        padding: 80px min(5.333%, 20px);
    }

    .heading._crumbs {
        padding: 20px min(5.333%, 20px);
    }


}

/* page02 ページネーション */
.pagenum-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px 0 0 0;
}
.pagenum {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 1rem;
}
.pagenum li {
    padding: 0;
    margin: 0;
}
.pagenum li a {
    font-family: 'Jost';
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    width: 45px;
    height: 45px;
    background: #ffffff 0% 0% no-repeat padding-box;
    color: #3c75bc;
    border: 1px solid #3c75bc;
}

.pagenum li a:hover,
.pagenum li a.current,
.pagenum li a.active {
    background: #3c75bc 0% 0% no-repeat padding-box;
    color: #fff;
}

.pagenum li a.current,
.pagenum li a.active {
    cursor: default;
}

@media screen and (max-width: 960px) {
    .pagenum li a {
        width: 40px;
        height: 40px;
    }
}

/* page03 共通 */
.page03 {

    padding: 80px 0 0 0;
}

.fv3 {
    height: 20px;
}

.detail-img1 {
    width: 80%;
    margin: 0 auto 40px auto;
}

.detail h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2.88px;
    padding: 0 0 30px 0;
    margin: 0 0 80px 0;
}

.detail-common-area h2,
.common-archive-h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    border-left: 6px solid #2c2c2c;
    padding: 0 0 0 10px;
    margin: 20px 0 40px 0;
}

.detail-common-area img {
    margin: 0 0 20px 0;
}

.detail-common-area h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.48px;
    border-bottom: 1px solid #2c2c2c;
    padding: 0 0 10px 0;
    margin: 0 0 40px 0;
}
.detail-common-area h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 40px 0;
}
.detail-common-area p {
    font-size: 16px;
    margin: 0 0 30px 0;
}
.detail-common-area a {
    font-size: 16px;
    color: #3c75bc;
    font-weight: 700;
    margin: 0 0 40px 0;
}

.detail-common-area ul {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
}
.detail-common-area ul li {
    font-size: 16px;
    margin: 0 0 10px 0;
    position: relative;
    padding: 0 0 0 18px;
    line-height: 24px;
}
.detail-common-area ul li::before {
    content: "";
    width: 8px;
    height: 8px;
    display: inline-block;
    background-color: #3c75bc;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

@media screen and (max-width: 960px) {
    .page03 {
        padding: 50px 0 0 0;
    }

}

/* archiveページ用 */
.archive-area {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
}

.archive-area._news {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}


.archive-block {
    position: relative;
  box-shadow: 0 2px 12px rgba(60, 117, 188, 0.09);
  border-radius: 10px;
  padding: 10px;
  box-sizing: border-box;
}


.archive-news-block {
      padding: 20px 0;
      border-bottom: 1px solid #dddddd;
}

.archive-img-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 0 0 8px 0;
    aspect-ratio: 93/60;
    border-radius: 10px;
    display: flex;
}

.archive-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    transform-origin: center center;
    transition: transform 0.3s ease;
}

.achivements-text1 {
    text-decoration: none;
    width: 100%;
    font-size: 26px;
    font-weight: 700;
    color: #E04F9B;
    margin: 0 0 10px 0;
}

.achivements-text2 {
    text-decoration: none;
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    color: #1C1324;
    margin: 0;
}

@media screen and (max-width: 960px) {
    .archive-area {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1rem;
    }
}



/* 共通 ボタン */
.btn-wrapper1 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 30px 0 0 0;
}

.btn-wrapper1._nomargin {
    margin: 0;
}

.btn-wrapper2 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0;
}

.btn-more1 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: none;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff 0% 0% no-repeat padding-box;
    max-width: 220px;
    width: 100%;
    box-sizing: border-box;
    font-size: 16px;
    color: #3c75bc;
    border: 1px solid #3c75bc;
    cursor: pointer;
    padding: 13px 0;
}


.btn-more1:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

@media screen and (max-width: 960px) {
}




/* 共通 index single archive 404 */
._minheight {
    min-height: 48vh;
}
.non-text {
    text-align: center;
    font-size: 16px;
    margin: 0;
}

@media screen and (max-width: 960px) {
    ._minheight {
        min-height: 62vh;
    }
}




.pc {
    display: block !important;
}

.sp {
    display: none !important;
}

.wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.heading {
    position: relative;
    width: 100%;
    max-width: 1200px;
    padding: 100px min(15%, 180px);
    box-sizing: border-box;
}

@media screen and (max-width: 960px) {
    .sp {
        display: block !important;
    }

    .pc {
        display: none !important;
    }

    .heading {
        max-width: 480px;
        padding: 40px min(5.333%, 20px);
    }
}



/* カテゴリー タグ */
.cat-ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: stretch;
  margin: 0 0 20px 0;
}

.cat-ul._end {
  justify-content: center;
  gap: 10px;
}

.cat-ul._start {
  justify-content: start;
}

.cat-link {
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 1.12px;
  color: #84c3dc;
  background: #ffffff 0% 0% no-repeat padding-box;
  border-radius: 3px;
  border: 2px solid #b8d0e8;
  padding: 8px 18px;
  box-sizing: border-box;
  display: inline-block;
}

.cat-link._active {
    background: #3c75bc;
    border-color: #3c75bc;
    color: #fff;
}

@media screen and (max-width: 960px) {
  .cat-link {
    font-size: 13px;
  }
  .cat-ul._end {
    flex-direction: column;
    align-items: center;
  }
}


input.form-control,
select.form-select,
textarea.form-control {
  width: 100%;
  padding: 15px 2%;
  height: 70px;
  background: #ffffff 0% 0% no-repeat padding-box;
  border: 0 solid #0075da;
  border-radius: 0;
  box-sizing: border-box;
  color: #333;
  font-size: 16px;
}
textarea.form-control {
  height: 240px !important;
}

input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 24px;
  height: 24px;
  background: #ffffff 0% 0% no-repeat padding-box;
  border: 1px solid #707070;
  position: relative;
  cursor: pointer;
  margin: 0 10px 0 0 !important;
}

input[type="checkbox"]:checked {
  background-color: #0075da;
}

input[type="checkbox"]:checked::after {
  content: "✔";
  font-size: 14px;
  position: absolute;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 960px) {
  .contact-mail-text1 {
    font-size: 17px;
  }
}

/* validation */
#consent-error {
  position: absolute;
  left: 0;
  color: #d30001;
  font-weight: normal;
  font-size: 16px;
  margin-top: 45px;
}

.validation-block {
  color: #fff;
}
.has-error .validation-block,
 .validation-block {
  text-align: left;
  color: #d30001;
}

#email-error {
  color: #d30001;
  font-size: 16px;
  margin-top: 2px;
  display: none;
}

/* bootstrap */
button.btn-success {
  cursor: pointer;
}
.btn {
  font-size: 15px;
  font-weight: 400;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  padding: 8px 20px;
}
.btn01 .btn {
  background-color: #009e96;
  width: 120px;
  margin-left: 20px;
  margin-left: 15px;
  color: #fff;
}
.modal-dialog {
  max-width: 600px;
  margin: 150px auto 0;
  width: calc(100% - 40px);
}
.modal-body {
  text-align: center;
}
.modal-footer {
  display: flex;
  justify-content: center;
}
.btn.btn-md {
  padding: 8px 20px !important;
}
.btn.btn-lg {
  padding: 18px 36px !important;
}
.btn:hover,
.btn:active,
.btn:focus {
  box-shadow: none !important;
  outline: none !important;
}
.btn-primary {
  background: #3958a7;
  color: #fff;
  border: 2px solid #3958a7;
}
@media screen and (max-width: 960px) {
}
