/* ================================
  RESET / BASE
================================ */

.font-gothic {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 400;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "zen-old-mincho", sans-serif;
  font-weight: 400;
  color: #384A75;
  line-height: 1.6;
  background: #F9F9F9;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ================================
  fade animation
================================ */
.fade-up {
  opacity: 0;
  transform: translateY(20px) scale(.98);
  transition:
    opacity .9s cubic-bezier(.4, 0, .2, 1),
    transform .9s cubic-bezier(.4, 0, .2, 1);
}

.fade-up.is-show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.delay-1 {
  transition-delay: .15s;
}

.delay-2 {
  transition-delay: .3s;
}

/* ================================
  HEADER
================================ */
.site-header {
  background: #fff;
  position: relative;
  z-index: 100;
  background: rgba(255,255,255,1);
  transition: 0.4s ease;
}

.header-nav{
  transition: 0.4s ease;
}

.site-header.is-scrolled 
{
  background: rgba(255,255,255,0.3);
}

.header-top__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo img {
  height: 60px;
  width: auto;
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-btn--faq {
  background: #EDEEF1;
  padding: 20px;
  border-radius: 4px;
  font-weight: 600;
  white-space: nowrap;
  font-family: "Inter", "Noto Sans JP", sans-serif;
}

.header-info {
  max-width: 1000px;
  margin: 0 auto;
  text-align: right;
  font-size: 12px;
}

.header-info__label {
  text-align: center;
  background: #EDEEF1;
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Inter", "Noto Sans JP", sans-serif;
}

.header-info__label span {
  font-weight: normal;
  font-size: 11px;
}

.header-info__time {
  color: #B7B7B7;
  margin-top: 4px;
  text-align: right;
  transition: color 0.4s ease;
}

/* スクロール後に色変更 */
.site-header.is-scrolled .header-info__time {
  color: #555555; /* ← 好きな色に変更 */
}

.header-tel {
  background: #6BB347;
  color: #fff;
  padding: 10px 18px;
  border-radius: 4px;
  text-align: center;
  min-width: 200px;
}

.header-tel__label {
  font-size: 11px;
  display: block;
}

.header-tel__number {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: .05em;
}

/* hamburger */
.hamburger {
  display: none;
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #384A75;
  border-radius: 2px;
  transition: .3s;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 10px;
}

.hamburger span:nth-child(3) {
  top: 20px;
}

.hamburger.is-open span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}

/* nav */
.header-nav__list {
  max-width: 1000px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  list-style: none;

}

.header-nav__list a {
  font-weight: 700;
  position: relative;
}

/* ================================
  HERO KV
================================ */
.heroKV {
  position: relative;
  height: 520px;
  background: url("../images/top/top.jpg") center/cover no-repeat;
  overflow: hidden;
}

.heroKV__overlay {
  pointer-events: none;
}

.heroKV__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  margin: 0 auto;
  padding: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.heroKV__copy h1 {
  color: #fff;
  font-size: 44px;
  line-height: 1.4;
  font-weight: 700;
  text-shadow: 1px 4px 3px rgba(14, 13, 13, 0.25);
}

.kvBadgeImgRow {
  display: flex;
  gap: 18px;
  align-items: flex-end;
}

.kvBadgeImg {
  display: inline-block;
  line-height: 0;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, .22));
  transition: transform .18s ease, filter .18s ease;
}

.kvBadgeImg img {
  display: block;
  width: 170px;
  height: auto;
}

.kvBadgeImg--lg img {
  width: 190px;
}

.kvBadgeImg:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, .24));
}

.kvBadgeImg:active {
  transform: translateY(0) scale(.99);
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, .20));
}

.kvBadgeImg:focus-visible {
  outline: 3px solid rgba(120, 178, 79, .55);
  outline-offset: 6px;
  border-radius: 999px;
}

.heroKV__copy {
  position: relative;
  top: -60px;
}

.heroKV__badgeWrap {
  position: relative;
  top: 100px;
  padding: 20px;
}

.heroKV__sideLabels {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 5;
}

.heroKV__sideLabel {
  width: 60px;
  padding: 60px 0;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(47, 75, 130, .35);
  border-right: 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.heroKV__sideText {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  font-family: "Inter", "Noto Sans JP", sans-serif;
}

.heroKV__sideLabel:hover {
  filter: brightness(.99);
  transform: translateY(-1px);
}

.heroKV__sideLabel:active {
  transform: translateY(0);
}

/* ================================
  COMMON TITLE
================================ */
.section {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 160px;
}

.title_box {
  text-align: center;
  padding-bottom: 80px;
}

.title-en {
  font-size: 24px;
  letter-spacing: .15em;
  color: #6BB347;
}

.title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
}

.title-line {
  display: inline-block;
  width: 160px;
  border-bottom: 3px dotted #6BB347;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
}


.headerband__bg {
  position: absolute;
  inset: 0;
  background: url("../images/common/headerband.jpg") center/cover no-repeat;
  z-index: 0;
}

.headerband_title {
  font-size: 40px;
}

.Intro {
  padding: 160px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.Intro__lead {
  font-size: 20px;
  line-height: 2.0;
  text-align: left;

}

.font-gothic {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 400;
}

/* ================================
  診療案内
================================ */
.symptoms-text {
  text-align: center;
  font-size: 32px;
}

.symptom-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 80px 0;
  max-width: 900px;
  margin: 0 auto;
}

.symptom-grid>.symptom-btn {
  flex: 0 0 calc((100% - 24px*2)/3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease;
}

.symptom-btn img {
  width: 100%;
  max-width: 220px;
  border-radius: 8px;
  display: block;
}

.symptom-btn:hover {
  transform: translateY(-4px);
}

.symptom-btn:hover img {
  box-shadow: 0 8px 16px rgba(0, 0, 0, .2);
}

.linkCards {
  margin-top: 50px;
  padding: 0 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.linkCards>.linkCard {
  flex: 0 0 calc((100% - 50px)/2);
}

.linkCard {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .08);
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .10);
  height: 170px;
}

.linkCard__bg {
  position: absolute;
  inset: 0;
  background: url("../images/common/kneecard.png") center/cover no-repeat;
  z-index: 0;
}

.linkCard__bg--2 {
  background: url("../images/common/borncard.png") center/cover no-repeat;
}

.linkCard__bg--3 {
  background: url("../images/common/rehabilitation card.png") center/cover no-repeat;
}

.linkCard__bg--4 {
  background: url("../images/common/sportcard.png") center/cover no-repeat;
}

.linkCard__body {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 18px;
}

.linkCard__title {
  font-size: 24px;
  text-shadow: 1px 4px 3px rgba(14, 13, 13, 0.25);
  color: #fff;
  text-align: center;
  line-height: 1.8rem;
  padding-bottom: 10px;
}

.linkCard__text {
  font-size: 14px;
  color: #fff;
  text-align: center;
}

/* ================================
  診療時間
================================ */
.hoursTableWrap {
  border: 2px solid #2f4b82;
  padding: 10px 14px;
  background: #fff;
  max-width: 1000px;
}

.hoursTable {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.hoursTable__head {
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  padding: 10px 8px;
}

.hoursTable__head--left {
  text-align: left;
  padding-left: 16px;
}

.hoursTable__rowHead {
  text-align: left;
  font-weight: 600;
  padding: 14px 16px;
  white-space: nowrap;
}

.hoursTable__rowLabel {
  display: inline-block;
  min-width: 44px;
  font-size: 12px;
  opacity: .95;
}

.hoursTable__rowTime {
  font-size: 18px;
  opacity: .9;
}

.hoursTable thead tr {
  border-bottom: 1px solid #384A75;
}

.hoursTable tbody tr {
  border-bottom: 1px solid #384A75;
}

.hoursTable tbody tr:last-child {
  border-bottom: 0;
}

.hoursTable__cell {
  text-align: center;
  padding: 14px 8px;
}

.hoursDot {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #6BB347;
}

.schedule-text {
  font-size: 18px;
  padding-top: 20px;
}

/* ================================
  初めて来院される方へ
================================ */
.infoBox {
  max-width: 1000px;
  margin: 160px auto;
  padding: 80px 0;
  border: 2px solid #384A75;
  background: #fff;
  text-align: center;
}

.infoBox__title {
  padding-bottom: 40px;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: .08em;
}

.infoBox__text {
  margin: 10px 0;
  font-size: 24px;
  line-height: 2;
  font-weight: 500;
}

.pc_none {
  display: none;
}

.sp_none {
  display: block;
}

.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 24px;
  vertical-align: baseline;
}

.tag_green {
  background: #6BB347;
  color: #fff;
  box-shadow: 0 2px 0 rgba(0, 0, 0, .12), 0 4px 8px rgba(0, 0, 0, .12);
}

/* ================================
  施設案内
================================ */
.featureLinks {
  max-width: 1000px;
  margin: 60px auto;
  display: flex;
  flex-direction: column;
  gap: 86px;
  padding: 20px;
}

.featureCard {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.featureCard>* {
  flex: 0 0 50%;
  max-width: 50%;
}

.featureCard_rap {
  padding-bottom: 240px;
}

.featureCard::before {
  content: "";
  position: absolute;
  top: -80px;
  bottom: -120px;
  left: 0;
  right: 0;
  background: #f3f5f7;
  z-index: 0;
}

.featureCard_imgLeft::before {
  margin-left: 140px;
}

.featureCard_imgRight::before {
  margin-right: 140px;
}

.featureCard__body,
.featureCard__body_b,
.featureCard__imgWrap {
  position: relative;
  z-index: 1;
}

.featureCard__imgWrap {
  position: relative;
  overflow: visible;
}

.featureCard__imgWrap::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 0;
  left: 10px;
  right: 40px;
  background: #e3efd8;
  z-index: 0;
}

.featureCard__imgWrap img {
  position: relative;
  z-index: 1;
  width: 90%;
  height: auto;
  display: block;
}

.featureCard_imgLeft .featureCard__imgWrap::before {
  transform: translate(-50px, 40px);
}

.featureCard_imgRight .featureCard__imgWrap::before {
  transform: translate(40px, 40px);
}

.featureCard__body {
  padding-right: 40px;
}

.featureCard__body_b {
  padding: 0 40px;
  z-index: 999;
}

.featureCard__title {
  margin: 0 0 40px;
  font-size: 24px;
  font-weight: 700;
  background: rgba(255, 255, 255, .8);
  text-shadow: 1px 4px 5px rgba(14, 13, 13, 0.25);
  letter-spacing: .06em;

}

.featureCard__text {
  margin: 0 0 40px;
  font-size: 16px;
  line-height: 1.9;
}

.featureCard__btn_rup {
  text-align: right;
}

.featureCard__btn {
  display: inline-block;
  padding: 10px 110px;
  background: #2b4c7e;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .14em;
  box-shadow: 0 3px 0 rgba(0, 0, 0, .12), 0 10px 20px rgba(0, 0, 0, .18);
}

.featureCard__imgWrap img {
  transition: transform .4s ease;
}

.featureCard:hover .featureCard__imgWrap img {
  transform: scale(1.03);
  box-shadow: 0 6px 12px rgba(0, 0, 0, .16);
}


/* =========================================================
  FAQ
========================================================= */
.faqItem {
  padding: 18px 0;
  border-bottom: 1px solid #e6e6e6;
}

.faqRow {
  display: flex;
  align-items: center;
  gap: 40px;
}

.faqRow--q {
  margin-bottom: 10px;
}

.qaIcon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 24px;
  border-radius: 2px;
}

.qaIcon--q {
  background: #6BB347;
  color: #fff;
}

.qaIcon--a {
  background: transparent;
  color: #6BB347;
}

.qaText {
  margin: 0;
  font-size: 24px;
  line-height: 1.9;
}

.qaText_answer {
  font-size: 18px;
}

.faqCta {
  display: flex;
  justify-content: center;
  padding: 80px 0 0;
}

.faqBtn {
  background: #6BB347;
  color: #fff;
  padding: 14px 56px;
  font-weight: 700;
  letter-spacing: .12em;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .18);
}

.faqBtn:hover {
  filter: brightness(.98);
  transform: translateY(1px);
}


/* ================================
  SNS
================================ */
.snsSection {
  position: relative;
  overflow: hidden;
  padding-top: 160px;
  background: #F9F9F9;
}

.snsSection::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 73%;
  bottom: 0;
  background: #efefef;
  z-index: 0;
}

.snsSection>* {
  position: relative;
  z-index: 1;
}

.snsGrid {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.snsGrid>.snsCard {
  flex: 0 0 57%;
  max-width: 57%;
}

.snsGrid>.snsStack {
  flex: 0 0 43%;
  max-width: 43%;
}

.snsCard {
  background: #fff;
  border: 1px solid #d7e3d1;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .10);
}

.snsCard--yt {
  padding: 14px;
}

.snsCard__media {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 */
  overflow: hidden;
  border: 1px solid #d7e3d1;
  background: #fff;
}

.snsCard__media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.snsCard__caption {
  margin: 14px 4px 0;
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: .2rem;
  text-align: center;
}

/* 右：縦並び */
.snsStack {
  display: flex;
  flex-direction: column;
  gap: 62px;
}

.snsMiniCard {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #6BB347;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .10);
  padding: 16px 18px;
  min-height: 92px;
}

.snsMiniCard__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 52px;
}

.snsMiniCard__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.snsMiniCard__text {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.8;
}

/* ================================
  お知らせ
================================ */
.newsSection {
  padding: 160px 20px;
  position: relative;
  overflow: hidden;
}

.newsSection::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 50%;
  left: 0;
  right: 0;
  background: #efefef;
  z-index: 0;
}

.newsSection>* {
  position: relative;
  z-index: 1;
}

.newsBox {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #6BB347;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
  padding: 80px 40px;
}

.newsList {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}

.newsItem {
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 2px solid #8a98b8;
}

.newsDate {
  flex: 0 0 120px;
  font-size: 20px;
  letter-spacing: .15em;
  text-align: right;
  white-space: nowrap;
}

.newsLink {
  font-size: 20px;
  line-height: 1.9;
}

.newsLink:hover {
  text-decoration: underline;
}

.newsCta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.newsBtn {
  min-width: 260px;
  padding: 14px 0;
  background: #2b4c7e;
  color: #fff;
  font-weight: 700;
  letter-spacing: .25em;
  text-align: center;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .18);
}

.newsBtn:hover {
  transform: translateY(1px);
  filter: brightness(.98);
}


/* ================================
  アクセス
================================ */
.accessGrid {
  margin: 0 auto;
  display: flex;
  /* grid→flex */
  border-top: 1px solid #b8d6a3;
  background: #fff;
  align-items: stretch;
}

.gmapWrap {
  width: 100%;
  aspect-ratio: 7 / 6;
  flex: 0 0 62%;
  max-width: 62%;
}

.gmapWrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* 右：情報 */
.accessInfo {
  flex: 0 0 38%;
  max-width: 38%;
  padding: 0 20px;
}

.accessDl {
  margin: 0;
}

.accessRow {
  gap: 16px;
  padding: 20px 0;
}

.accessRow dt {
  flex: 0 0 120px;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
  position: relative;
  padding-left: 18px;
}

.accessRow dt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 10px;
  height: 20px;
  background: #6BB347;
}

.accessRow dd {
  margin: 0;
  font-size: 20px;
  line-height: 1.9;
  flex: 1 1 auto;
}

.accessCta {
  padding: 40px 0;
}

.accessBtn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 14px 0;
  background: #6BB347;
  color: #fff;
  font-weight: 700;
  letter-spacing: .14em;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .18);
}

.accessBtn:hover {
  transform: translateY(1px);
  filter: brightness(.98);
}


/* ================================
  コンタクト
================================ */
.contactCta {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  color: #fff;
}

.contactCta__bg {
  position: absolute;
  inset: 0;
  background: url("../images/common/accessCta_bg.png") center/cover no-repeat;
  z-index: 0;
}

.contactCta__inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.contactCta__brand {
  margin: 0 0 6px;
  font-size: 24px;
  letter-spacing: .08em;
  opacity: .95;
}

.contactCta__title {
  margin: 0 0 80px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: .12em;
}

.contactCta__cards {
  display: flex;
  gap: 26px;
  align-items: stretch;
  justify-content: space-between;
}

.contactCard {
  position: relative;
  background: rgba(255, 255, 255, .96);
  line-height: 1;
  border-radius: 8px;
  padding: 26px 26px 18px;
  width: 100%;
  height: 120px;
  max-width: 440px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .22);
  border: 1px solid rgba(255, 255, 255, .75);
}

.contactCard__icon {
  position: absolute;
  left: 50%;
  top: -60px;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contactCard__icon img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  display: block;
}

.contactCard__label {
  margin: 6px 0 8px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .08em;
  color: #6BB347;
}

.contactCard__main {
  margin: 0;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: .18em;
  color: #6BB347;
}

.contactCard__main--small {
  font-size: 24px;
  letter-spacing: .12em;
  font-weight: 500;
}

.contactCard__note {
  font-size: 16px;
  line-height: 1;
  color: #FFF;
  text-align: left;
  padding: 20px;
  max-width: 1000px;
}

.contactCard--mail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contactCard:hover {
  transform: translateY(1px);
  filter: brightness(.99);
}

/* =========================================================
  FOOTER
========================================================= */
.siteFooter {
  background: #ECFFE3;
  padding: 46px 22px 26px;
  font-family: "Inter", "Noto Sans JP", sans-serif;
}

.footerInner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  justify-content: center;
  gap: 40px;
  align-items: flex-start;
}

.footerBrand {
  display: inline-block;
  margin-bottom: 14px;
}

.footerBrand__logo {
  height: 60px;
  width: auto;
  display: block;
}

.footerSns {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 12px 0 18px;
}

.footerSns__icon {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footerSns__icon img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  display: block;
}

.footerBtns {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 6px;
}

.footerBtn {
  display: block;
  text-align: center;
  padding: 16px 12px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #6BB347;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: .08em;
}

.footerBtn:hover {
  filter: brightness(.99);
}

.footerNav {
  display: flex;
  gap: 26px;
  padding-top: 100px;
}

.footerNavHead {
  margin: 0 0 10px;
  font-weight: 800;
  font-size: 16px;
  color: #6BB347;
  letter-spacing: .06em;
}

.footerNavList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 16px;
}

.footerNavList a {
  opacity: .95;
}

.footerNavList a:hover {
  text-decoration: underline;
}

.footerService {
  padding-top: 20px;
}

.footerServiceField {
  border: 1px solid #6BB347;
  padding: 0 16px 14px;
  display: inline-block;
  min-width: 220px;
}

.footerServiceLegend {
  padding: 0 10px;
  font-size: 18px;
  color: #6BB347;
  letter-spacing: .06em;
}

.footerServiceLink {
  display: block;
  margin-top: 6px;
  font-size: 16px;
  font-weight: 500;
}

.footerServiceLink:hover {
  text-decoration: underline;
}

.footerBottom {
  max-width: 1100px;
  margin: 34px auto 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.footerHospital {
  padding-bottom: 20px;
}

.footerHospital__logo {
  height: 60px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.footerHospital__en {
  margin: 6px 0 0;
  font-size: 12px;
  opacity: .8;
}

.footerCopy {
  font-size: 12px;
  opacity: .75;
}

/* =========================================================
  RESPONSIVE
========================================================= */
@media (max-width:1024px) {
  .header-info {
    display: none;
  }

  .hoursTableWrap {
    margin: 0 60px;
  }

  .faqList {
    padding: 0 20px;
  }

  .qaText {
    font-size: 20px;
  }

  .qaText_answer {
    font-size: 16px;
  }

  .schedule-text {
    padding: 40px;
  }

  .infoBox {
    margin: 0 10px;
    padding: 40px;
  }
}

@media (max-width:960px) {
  .title {
    font-size: 24px;
  }

  .title-en {
    font-size: 18px;
  }

  .symptoms-text {
    font-size: 18px;
  }

  .schedule-text {
    font-size: 16px;
    padding: 20px 10px 0px;
  }

  .infoBox__title {
    font-size: 20px;
  }

  .infoBox__text {
    font-size: 16px;
  }

  .tag_green {
    font-size: 16px;
  }

  .heroKV__inner {
    flex-direction: column;
    justify-content: center;
  }

  .heroKV__copy {
    top: 50px;
  }

  .footerNav {
    display: none;
  }

  .snsSection {
    padding-top: 0;
  }
}

@media (max-width:900px) {
  .section {
    padding: 80px 0;
  }

  .title_box {
    padding-bottom: 40px;
  }

  .featureCard_rap {
    padding-bottom: 0;
  }

  .symptom-grid {
    padding: 40px 10px;
  }

  .symptom-grid>.symptom-btn {
    flex-basis: calc((80% - 24px)/2);
  }

  .featureCard {
    flex-direction: column;
    gap: 22px;
  }

  .featureCard>* {
    max-width: 100%;
    flex-basis: auto;
  }

  .symptom-grid {
    justify-content: space-between;
  }

  .symptom-grid {
    max-width: 400px;
  }

  .symptom-grid>.symptom-btn {
    flex: 0 0 calc((100% - 24px * 2) / 3);
  }

  .linkCard__title {
    font-size: 20px;
    font-weight: 700;

  }

  .linkCard__text {
    font-size: 14px;
    font-weight: 500;
  }

  .featureCard_imgRight {
    flex-direction: column-reverse;
  }
}

@media (max-width:860px) {
  .snsGrid {
    flex-direction: column;
    padding: 10px;
    margin: 0 auto;
    max-width: 500px;
  }

  .snsGrid>.snsCard,
  .snsGrid>.snsStack {
    max-width: 100%;
    flex-basis: auto;
  }

  .linkCards>.linkCard {
    flex-basis: 100%;
  }
}

@media (max-width:820px) {
  .accessGrid {
    flex-direction: column;
  }

  .gmapWrap,
  .accessInfo {
    max-width: 100%;
    flex-basis: auto;
  }

  .accessInfo {
    padding: 20px;
  }

  .accessRow {
    flex-direction: column;
    gap: 6px;
  }

  .accessRow dt {
    flex-basis: auto;
  }

  .contactCta__cards {
    flex-direction: column;
    gap: 90px;
    align-items: center;
  }

  .contactCard {
    max-width: 520px;
  }

  .contactCard__note {
    text-align: center;
  }

  .contactCta__title {
    font-size: 24px;
  }
}

@media (max-width:768px) {
  .header-btn--faq {
    display: none;
  }

  .header-tel {
    display: none;
  }

  .header-top__inner {
    padding: 20px;
  }

  .hamburger {
    display: block;
  }

  .header-nav {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    transform: translateY(-120%);
    transition: transform .4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    z-index: 200;
  }

  .header-nav.is-open {
    transform: translateY(0);
  }

  .header-nav__list {
    flex-direction: column;
    padding: 20px;
  }

  .header-nav__list li {
    border-bottom: 1px solid #eee;
  }

  .header-nav__list a {
    display: block;
    padding: 16px 0;
    font-size: 16px;
  }

  .heroKV__sideLabels {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    transform: none;

    flex-direction: row;
    gap: 0;
    z-index: 9999;

    padding-bottom: env(safe-area-inset-bottom);
  }

  .heroKV__sideLabel {
    width: auto;
    padding: 14px 0;
    flex: 1 1 50%;
    border-right: 1px solid rgba(47, 75, 130, .18);
    box-shadow: 0 -10px 20px rgba(0, 0, 0, .14);
  }

  .heroKV__sideLabel:last-child {
    border-right: 0;
  }

  .heroKV__sideText {
    letter-spacing: .12em;
    line-height: 1;
    font-size: 14px;
  }

  .heroKV__sideText br {
    display: none;
  }

  /* body {
    padding-bottom: calc(56px + env(safe-area-inset-bottom));
  } */
  .hoursTable__head {
    font-size: 14px;
  }

  .hoursTable__rowTime {
    font-size: 10px;
  }

  .hoursTable {
    table-layout: initial;
  }

}

/* =========================
  SP ハンバーガーメニュー
========================= */
.spMenu {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, .18);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  font-family: "Inter", "Noto Sans JP", sans-serif;
}

.spMenu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.spMenu__panel {
  position: absolute;
  inset: 0;
  background: #ECFFE3;
  display: flex;
  flex-direction: column;
}

.spMenu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 16px;
  border-bottom: 1px solid rgba(47, 75, 130, .18);
}

.spMenu__brand img {
  height: 30px;
  width: auto;
  display: block;
}

.spMenu__close {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.spMenu__body {
  flex: 1;
  overflow: auto;
  padding: 18px 16px 140px;
}

.spMenu__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
}

.spMenu__col {
  flex: 1 1 46%;
  min-width: 260px;
}

.spMenu__title {
  margin: 8px 0 10px;
  font-weight: 800;
  font-size: 16px;
  color: #6BB347;
  letter-spacing: .06em;
}

.spMenu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.spMenu__list a {
  display: inline-block;
  padding: 6px 0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.spMenu__service {
  flex: 1 1 100%;
  padding-top: 8px;
}

.spMenu__serviceField {
  border: 1px solid #6BB347;
  padding: 10px 16px 14px;
  display: inline-block;
  min-width: 260px;
  background: rgba(255, 255, 255, .0);
}

.spMenu__serviceLegend {
  padding: 0 10px;
  font-size: 16px;
  color: #6BB347;
  letter-spacing: .06em;
}

.spMenu__footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ECFFE3;
  border-top: 1px solid rgba(47, 75, 130, .18);
  padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
}

.spMenu__btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}

.spMenu__btn {
  display: block;
  text-align: center;
  padding: 12px 12px;
  background: #fff;
  border: 1px solid #6BB347;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  text-decoration: none;
}

.spMenu__sns {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.spMenu__snsIcon {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  text-decoration: none;
}

.spMenu__snsIcon img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  display: block;
}

/* =========================================================
  RESPONSIVE
========================================================= */

@media (min-width: 769px) {
  .spMenu {
    display: none;
  }
}

@media (max-width:720px) {
  .heroKV__copy h1 {
    font-size: 32px;
  }

  .newsBox {
    padding: 40px 20px;
  }

  .newsItem {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .newsDate {
    flex-basis: auto;
    text-align: left;
    font-size: 16px;
  }

  .newsBtn {
    width: 100%;
  }

  .newsLink {
    font-size: 16px;
  }
}

@media (max-width:560px) {
  .heroKV {
    background: url("../images/top/top_sp.jpg")
  }

  .header-logo img {
    height: 35px;
  }

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

  .heroKV__inner {
    padding: 20px;
  }

  .faqRow {
    gap: 10px;
  }

  .faqBtn {
    padding: 14px 34px;
    width: 300px;
    text-align: center;

  }

  .footerBtn {
    font-size: 18px;
    padding: 14px 12px;
  }

  .footerBrand__logo {
    height: 46px;
  }

  .footerSns__icon {
    width: 48px;
    height: 48px;
  }

  .kvBadgeImg img {
    width: 140px;
  }

  .kvBadgeImg--lg img {
    width: 160px;
  }

  .linkCards {
    margin-top: 20px;
    gap: 20px;

  }

  .linkCard {
    height: 130px;
  }

  .section {
    padding: 40px 0;
  }

  .hoursTableWrap {
    margin: 0 10px;
  }

  .infoBox {
    padding: 40px 10px;
    letter-spacing: -0.9px;
  }

  .infoBox__title {
    padding-bottom: 20px;
  }

  .pc_none {
    display: block;
  }

  .featureCard__title {
    font-size: 20px;
  }

  .faqCta {
    padding: 40px 0 40px;
  }

  .newsSection {
    padding: 80px 20px;
  }

  .contactCard__main {
    font-size: 24px;
  }

  .contactCta__brand {
    font-size: 16px;
  }

  .contactCard {
    height: 100px;
    padding: 14px 26px 18px;
  }

  .contactCard__icon {
    width: 50px;
    height: 50px;
    top: -37px;
  }

  .contactCard__note {
    line-height: 1.5;
  }

  .contactCta {
    padding: 40px 20px;
  }

  .contactCard__label {
    font-size: 16px;
  }

  .featureCard__body {
    padding: 0;
  }

  .featureCard__body_b {
    padding: 0;
    z-index: 999;
  }

  .featureCard__btn_rup {
    text-align: center;
  }

  .featureCard::before {
    top: -50px;
    bottom: -50px;
  }

  .featureLinks {
    gap: 60px;
  }
}

/* =========================
  aboutページ
　ごあいさつ
========================= */
.messageSection {
  padding: 160px 20px 0;
}

.messageInner {
  max-width: 1000px;
  margin: 0 auto;
}

/* 2カラム */
.messageGrid {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

/* 左：プロフィール */
.messageProfile {
  flex: 0 0 320px;
  max-width: 320px;
}

.messagePhoto {
  position: relative;
  margin: 0 0 18px;
}

.messagePhoto::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 22px;
  width: 100%;
  height: 100%;
  background: #E3EFD8;
  z-index: 0;
}

.messagePhoto img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  background: #fff;
}

.messageName {
  margin-top: 55px;
}

.messageName__jp {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: .08em;
}

.messageName__sub {
  margin: 6px 0 0;
  font-size: 18px;
  font-weight: 600;
}

.messageDept {
  margin: 14px 0 18px;
  font-size: 20px;
  font-weight: 500;
}

.messageIntro {
  margin: 0;
  font-size: 16px;
  line-height: 2;
}

.messageBody {
  flex: 1 1 auto;
  min-width: 0;
}

.messageText p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.8;
}

.messageSign {
  margin-top: 18px;
  font-size: 16px;
  line-height: 2;
  text-align: end;
}

.messageCols {
  margin-top: 20px;
  display: flex;
  gap: 50px;
}

.messageCol {
  flex: 1 1 0;
  min-width: 0;
}

.messageCol__head {
  margin: 15px 0 10px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: .08em;
}

.messageList {
  margin: 0;
  padding-left: 1.2em;
  font-size: 18px;
  line-height: 2;
}

.messageSection::after {
  content: "";
  display: block;
  max-width: 1000px;
  margin: 60px auto 0;
  border-bottom: 2px dotted #384A75;
}

/* =========================
  Doctor List（医師紹介）
========================= */

.doctorList {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.doctorItem {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  padding: 80px 0;
  min-width: 0;
}

.doctorItem+.doctorItem {
  border-top: 2px dotted #384A75;
}

.doctorLeft {
  flex: 0 0 46%;
  max-width: 46%;
  min-width: 0;
}

.doctorPhoto {
  margin: 0;
}

.doctorPhoto img {
  width: 80%;
  height: auto;
  display: block;
}

.doctorMeta {
  color: #384A75;
}

.doctorName {
  margin: 40px 0 8px;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1.2;
}

.doctorRole {
  font-weight: 700;
  font-size: 18px;
  opacity: .9;
}

.doctorDept {
  margin: 0 0 40px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .06em;
  opacity: .9;
}

.doctorText {
  margin: 0;
  font-size: 16px;
  line-height: 2.1;
  letter-spacing: .04em;
  opacity: .95;
}

.doctorRight {
  flex: 0 0 54%;
  max-width: 54%;
  display: flex;
  gap: 48px;
  align-items: flex-start;
  min-width: 0;
}

.doctorCol {
  flex: 1 1 0;
  min-width: 0;
}

.doctorHead {
  margin: 20px 0 10px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: .18em;
}

.doctorListText {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 18px;
  line-height: 1.9;
  opacity: .95;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.philosophy {
  padding: 0 20px;
}

.philosophy__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.philosophy__en {
  margin: 0;
  font-size: 14px;
  letter-spacing: .12em;
  color: #6BB347;
}

.philosophy__jp {
  margin: 10px 0 0;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: .12em;
}

.philosophy__dotline {
  display: inline-block;
  width: 120px;
  margin-top: 14px;
  border-bottom: 3px dotted #6BB347;
}

.philosophy__content {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.philosophy__tabs {
  flex: 0 0 280px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.philosophy__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  font-size: 24px;
  border-radius: 6px;
  color: #fff;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(0, 0, 0, .12);
  transform: translateY(0);
  transition: transform .15s ease, filter .15s ease;
}

.philosophy__tab:hover {
  transform: translateY(-1px);
  filter: brightness(.99);
}

.philosophy__tab--green {
  background: #6BB347;
}

.philosophy__tab--blue {
  background: #47A1B3;
}

.philosophy__tab--red {
  background: #D7535E;
}

.philosophy__texts {
  flex: 1 1 auto;
}

.philosophy__text {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 2.8;
  letter-spacing: .08em;
}

.refTableSec {
  padding: 80px 20px;
}

.refTableFrame {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #2f4b82;
  padding: 70px 40px 50px;
}

.refTableHead {
  text-align: center;
  margin-bottom: 26px;
}

.refTableTitle {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .04em;
}

.refTableMeta {
  margin: 10px 0 0;
  font-size: 14px;
  opacity: .8;
  text-align: right;
  padding-right: 50px;
}

.refTableWrap {
  display: flex;
  justify-content: center;
}

.refTable {
  width: min(560px, 100%);
  border-collapse: collapse;
  table-layout: fixed;
}

.refTable thead th {
  background: #2f4b82;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 8px;
}

.refTable thead th:nth-child(1) {
  width: 28%;
}

.refTable thead th:nth-child(2) {
  width: 52%;
}

.refTable thead th:nth-child(3) {
  width: 20%;
}

.refTable tbody td {
  font-size: 16px;
  line-height: 1.9;
  padding: 8px 10px;
  vertical-align: top;
}

.refTableHospital {
  text-align: left;
  white-space: nowrap;
  font-weight: 600;
  opacity: .95;
}

.refTableCount {
  text-align: right;
  white-space: nowrap;
}

.refTableGroupStart td {
  padding-top: 14px;
}

.refTableDivider td {
  padding: 16px 0;
  border-top: 1px solid rgba(47, 75, 130, .55);
}

.refTable tfoot td {
  padding-top: 18px;
  font-size: 16px;
  text-align: right;
  opacity: .85;
}

.refTableTotal td {
  border-bottom: 30px solid #2f4b82;
  padding-bottom: 18px;
}

.bgCardGrid {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 20px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 46px;
}

.bgCard {
  position: relative;
  display: grid;
  place-items: center;
  height: 120px;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
}

.bgCard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(60, 90, 130, .35);
}

.bgCard__label {
  position: relative;
  z-index: 1;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .08em;
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .25);
}

.bgCard:hover {
  transform: translateY(-1px);
}

.bgCard:hover::before {
  background: rgba(60, 90, 130, .42);
}

.snsSection_a {
  position: relative;
  overflow: hidden;
  padding: 160px 0;
  background: #F9F9F9;
}

.snsSection_a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 60%;
  bottom: 0;
  background: #efefef;
  z-index: 0;
}

.snsSection_a>* {
  position: relative;
  z-index: 1;
}

/* =========================================================
  RESPONSIVE
========================================================= */
@media (max-width:960px) {
  .snsSection_a {
    padding-top: 0;
  }
}

@media (max-width: 860px) {
  .bgCardGrid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .bgCard {
    height: 110px;
  }

  .bgCard__label {
    font-size: 18px;
  }

  .philosophy__content {
    flex-direction: column;
    gap: 26px;
  }

  .philosophy__tabs {
    flex: none;
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
  }

  .philosophy__texts {
    max-width: 720px;
    margin: 0 auto;
  }
}

@media (max-width: 820px) {
  .messagePhoto::before {
    width: 50%;
  }

  .messagePhoto {
    display: flex;
    justify-content: center;

  }

  .messagePhoto img {
    display: block;
  }

  .doctorItem {
    flex-direction: column;
    gap: 22px;
    padding: 20px 0 30px;
  }

  .doctorLeft,
  .doctorRight {
    flex: 1 1 auto;
    max-width: 100%;
  }

  .doctorRight {
    flex-direction: column;
    gap: 18px;
  }

  .doctorPhoto img {
    width: 100%;
  }

  .doctorName {
    margin-top: 18px;
    font-size: 20px;
  }

  .doctorRole {
    font-size: 14px;
  }

  .doctorDept {
    margin: 0 0 18px;
    font-size: 14px;
  }

  .doctorText {
    font-size: 13px;
  }

  .doctorHead {
    font-size: 16px;
  }

  .doctorListText {
    font-size: 13px;
    line-height: 2.0;
  }

  .messageSection {
    padding: 80px 20px;
  }

  .messageGrid {
    flex-direction: column;
    gap: 28px;
    max-width: 650px;
    margin: 0 auto;
  }

  .messageProfile {
    max-width: 520px;
    width: 100%;
  }

  .messagePhoto::before {
    left: -14px;
    top: 14px;
  }

  .messageCols {
    flex-direction: column;
    gap: 22px;
  }

}

@media (max-width: 560px) {
  .philosophy {
    padding: 56px 16px;
  }

  .philosophy__jp {
    font-size: 22px;
  }

  .philosophy__tab {
    height: 50px;
    font-size: 14px;
  }

  .philosophy__text {
    font-size: 13px;
    letter-spacing: .06em;
  }

  .refTableFrame {
    padding: 40px 14px 32px;
  }

  .refTableTitle {
    font-size: 12px;
  }

  .refTable {
    width: 100%;
  }

  .refTable tbody td {
    font-size: 10.5px;
    padding: 7px 8px;
  }

  .messageCol__head {
    font-size: 20px;
  }

  .doctorList {
    padding: 0px 10px;
  }

  .philosophy {
    padding: 60px 10px 0;
  }

  .refTableMeta {
    text-align: center;
    padding-right: 0;
  }

  .refTableTitle {
    font-size: 16px;
  }

  .refTableMeta {
    font-size: 12px;
  }

  .refTable tfoot td {
    font-size: 12px;
    text-align: center;
  }

  .bgCardGrid {
    padding: 0px 20px 80px;
  }

  .snsSection_a {
    padding: 0 0 80px;
  }
}

/* =========================
  施設紹介
========================= */
.floorIntro {
  padding: 160px 20px;
}

.floorIntro__lead {
  text-align: center;
  font-size: 20px;
}

.floorIntro__title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .1em;
  margin: 80px 0;
}

.floorIntro__row {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: center;
}

.floorIntro__image {
  flex: 0 0 55%;
}

.floorIntro__image img {
  width: 100%;
  height: auto;
  display: block;
}

.floorIntro__content {
  flex: 1;
}

.floorIntro__box {
  border: 1px solid #2f4b82;
  padding: 20px;
  width: 380px;
  font-size: 14px;
  line-height: 2.4;
  margin-bottom: 24px;
}

.floorIntro__btn {
  display: inline-block;
  background: #6BB347;
  box-shadow: 0 6px 14px rgba(0, 0, 0, .18);
  color: #fff;
  padding: 20px 40px;
  width: 380px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-align: center;
  font-size: 14px;
}

.mriSec {
  background: #EFEFEF;
  padding: 70px 20px 160px;
}

.mriSec__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.secTitle {
  text-align: center;
  margin-bottom: 48px;
}

.secTitle__en {
  margin: 0;
  font-size: 14px;
  letter-spacing: .12em;
  color: #6BB347;
}

.secTitle__jp {
  margin: 10px 0 0;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: .12em;
}

.secTitle__line {
  display: inline-block;
  width: 120px;
  margin-top: 14px;
  border-bottom: 3px dotted #6BB347;
}

.mriMedia {
  position: relative;
  padding-bottom: 70px;
}

.mriMedia__img {
  margin: 0;
}

.mriMedia__img img {
  width: 100%;
  height: auto;
  display: block;
  background: #fff;
}

.mriMedia__box {
  position: absolute;
  left: 65%;
  bottom: 75px;
  transform: translateX(-50%);
  width: min(780px, 92%);
  background: #fff;
  border: 1px solid #2f4b82;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
  padding: 26px 32px;
}

.mriMedia__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .06em;
  font-family: "Inter", "Noto Sans JP", sans-serif;
}

.firstVisitCta {
  padding: 160px 20px;
  text-align: center;
}

.firstVisitCta__btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;

  width: 420px;
  max-width: 100%;
  height: 90px;

  background: #6BB347;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, .18);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.firstVisitCta__btn p {
  font-size: 18px;
  letter-spacing: .18em;
  opacity: .9;
}

.firstVisitCta__btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .22);
}

/* =========================================================
  RESPONSIVE
========================================================= */
@media (max-width: 1040px) {
  .mriMedia__box {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 16px;
    padding: 18px 16px;
  }

  .floorIntro__box {
    width: 100%;
  }

  .floorIntro__btn {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .floorIntro__row {
    flex-direction: column;
    gap: 32px;
  }

  .floorIntro__image {
    flex: none;
    width: 100%;
  }

  .floorIntro__content {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .mriSec {
    padding: 70px 16px 90px;
  }

  .secTitle__jp {
    font-size: 20px;
  }

  .mriMedia {
    padding-bottom: 0;
  }

  .mriMedia__text {
    font-size: 12px;
    line-height: 2.2;
  }

  .firstVisitCta {
    padding: 80px 20px;
  }

  .firstVisitCta__btn {
    height: 76px;
  }

  .firstVisitCta__btn strong {
    font-size: 16px;
    letter-spacing: .12em;
  }

  .floorIntro {
    padding: 80px 20px;
  }

  .floorIntro__lead {
    font-size: 16px;
  }

  .floorIntro__title {
    font-size: 18px;
  }

  .sp_none {
    display: none;
  }

  .floorIntro__btn {
    padding: 20px 20px;
  }
}

/* =========================
  よくある質問
========================= */
.faq__inner {
  max-width: 980px;
  margin: 0 auto;
}

.faqItem {
  padding: 22px 0;
  border-bottom: 1px dotted rgba(56, 74, 117, .35);
}

.faqRow {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.faqRow--q {
  padding-left: 12px;
}

.faqRow--a {
  margin-top: 14px;
  padding-left: 58px;
}

.faqIcon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1;
}

.faqIcon--q {
  background: #6BB347;
  color: #fff;
  border-radius: 0;
}

.faqIcon--a {
  color: #6BB347;
  font-size: 18px;
}

.faqQ {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.8;
}

.faqA {
  margin: 0;
  font-size: 16px;
  letter-spacing: .06em;
  line-height: 2.1;
  opacity: .92;
}

.faprlnk {
  background-color: #6BB347;
  color: #FFF;
  padding: 5px 10px;
  border-radius: 2px;
}

/* =========================================================
  RESPONSIVE
========================================================= */

@media (max-width: 560px) {
  .faq {
    padding: 0 16px;
  }

  .faqItem {
    padding: 18px 0;
  }

  .faqRow {
    gap: 14px;
  }

  .faqIcon {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
  }

  .faqQ {
    font-size: 18px;
    line-height: 1.9;
  }

  .faqRow--a {
    padding-left: 15px;
  }

  .faqA {
    font-size: 16px;
    line-height: 2.0;
  }

  .headerband_title {
    font-size: 28px;
  }
}

/* =========================
  変形性膝関節症
========================= */

.leadNote__inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  padding: 80px 0 0;
}

.leadNote__btn {
  width: min(480px, 100%);
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #6BB347;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .22em;
  box-shadow: 0 8px 14px rgba(0, 0, 0, .12);
  transition: transform .15s ease, filter .15s ease;
}

.leadNote__btn:hover {
  transform: translateY(-1px);
  filter: brightness(.98);
}

.leadNote__text {
  margin: 0;
  text-align: center;
  font-size: 24px;
  line-height: 2.0;
  letter-spacing: .14em;
}

.taSec {
  padding: 160px 20px 0;
}

.taInner {
  max-width: 980px;
  margin: 0 auto;
}

.taTitle {
  text-align: center;
  margin-bottom: 26px;
}

.taEn {
  margin: 0;
  font-size: 14px;
  letter-spacing: .14em;
  color: #6BB347;
}

.taJp {
  margin: 8px 0 0;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: .14em;
}

.taDots {
  display: inline-block;
  width: 120px;
  margin-top: 12px;
  border-bottom: 3px dotted #6BB347;
}

.taTableWrap {
  border: 1px solid #2f4b82;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.taTable {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  min-width: 920px;
}

.taTable .colStage {
  width: 12%;
}

.taTable .colSymptom {
  width: 18%;
}

.taTable .colMethod {
  width: 12%;
}

.taTable .colMain {
  width: 18%;
}

.taTable .colHosp {
  width: 12%;
}

.taTable .colNote {
  width: 28%;
}

.taTable thead th {
  background: #2f4b82;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 14px 10px;
  letter-spacing: .08em;
  border-right: 1px solid rgba(255, 255, 255, .25);
}

.taTable thead th:last-child {
  border-right: none;
}

.taTable tbody th,
.taTable tbody td {
  border: 1px solid rgba(47, 75, 130, .55);
  padding: 10px 10px;
  font-size: 14px;
  line-height: 2.05;
  letter-spacing: -0.5px;
  vertical-align: top;
}

.taStage {
  text-align: center;
  vertical-align: middle;
  font-weight: 700;
  letter-spacing: .18em;
  font-size: 14px;
}

.taStage--early {
  background: #F4FAD8;
}

.taStage--mid {
  background: #E6F9DC;
}

.taStage--late {
  background: #EFE2FF;
}

.taList {
  margin: 0;
}

.taList li {
  margin: 0 0 8px;
}

.taList li:last-child {
  margin-bottom: 0;
}

.taCenter {
  text-align: center;
  vertical-align: middle;
  font-weight: 600;
  white-space: nowrap;
}

.taSpacer {
  list-style: none;
  margin: 10px 0;
  height: 10px;
}

.stepSec {
  padding: 0 20px;
}

.stepInner {
  max-width: 980px;
  margin: 0 auto;
}

.stepHead {
  text-align: center;
  margin-bottom: 80px;
}

.stepHead__title {
  margin: 0;
  font-size: 32px;
  letter-spacing: .24em;
}

.stepHead__sub {
  margin: 8px 0 0;
  font-size: 16px;
  letter-spacing: .18em;
  opacity: .85;
}

.stepList {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.stepItem {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.stepNo {
  flex: 0 0 62px;
  height: 40px;
  background: #6BB347;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  letter-spacing: .08em;
}

.stepBody {
  flex: 1 1 auto;
  min-width: 0;
}

.stepTitle {
  margin-bottom: 20px;
  font-size: 32px;
  letter-spacing: .12em;
  line-height: 1.6;
}

.stepText {
  margin: 0;
  font-size: 16px;
  line-height: 2.2;
  letter-spacing: .10em;
  color: rgba(47, 75, 130, .9);
}

.consultBoxSec {
  padding: 80px 20px 0;
}

.consultBox {
  max-width: 960px;
  margin: 0 auto;
  padding: 46px 20px;
  border: 1.5px solid rgba(47, 75, 130, .55);
  text-align: center;
}

.consultBox__title {
  margin: 0 0 18px;
  font-size: 32px;
  letter-spacing: .28em;
  font-weight: 500;
}

.consultBox__text {
  margin: 0;
  font-size: 16px;
  line-height: 2.4;
  letter-spacing: .14em;
  color: rgba(47, 75, 130, .85);
}

/* =========================================================
  RESPONSIVE
========================================================= */

@media (max-width: 560px) {
  .Intro {
    padding: 80px 10px;
  }

  .Intro__lead {
    font-size: 16px;
  }

  .leadNote {
    padding: 48px 16px 56px;
  }

  .leadNote__inner {
    gap: 40px;
  }

  .leadNote__inner {
    padding: 40px 0 0;
  }

  .leadNote__btn {
    height: 52px;
    font-size: 12px;
    letter-spacing: .16em;
  }

  .leadNote__text {
    font-size: 16px;
    line-height: 2.1;
    letter-spacing: .10em;
  }

  .taSec {
    padding: 80px 20px 0;
  }

  .taJp {
    font-size: 20px;
    letter-spacing: .10em;
  }

  .taEn {
    font-size: 12px;
  }

  .taTable tbody th,
  .taTable tbody td {
    padding: 12px 10px;
    font-size: 12px;
    line-height: 1.9;
  }

  .stepHead__title {
    font-size: 20px;
  }

  .stepSec {
    padding: 56px 16px;
  }

  .stepItem {
    gap: 14px;
  }

  .stepNo {
    flex-basis: 54px;
    height: 38px;
    font-size: 20px;
  }

  .stepTitle {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .stepText {
    font-size: 12px;
    line-height: 2.0;
  }


  .consultBoxSec {
    padding: 0 20px;
  }

  .consultBox {
    padding: 32px 16px;
  }

  .consultBox__title {
    font-size: 18px;
    letter-spacing: .2em;
  }

  .consultBox__text {
    font-size: 14px;
    line-height: 2.1;
  }
}

/* =========================
   診療受付時間
========================= */
.timeBoxSec {
  padding: 80px 20px 60px;
  text-align: center;
}

.timeBoxWrap {
  max-width: 900px;
  margin: 0 auto 32px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.timeBox {
  width: 360px;
  max-width: 100%;
  border: 1.5px solid rgba(47, 75, 130, .7);
  padding: 30px 20px 20px;
}

.timeBox__title {
  margin: 0 0 18px;
  font-size: 18px;
  letter-spacing: .2em;
  font-weight: 600;
}

.timeBox__row {
  margin: 8px 0;
  font-size: 16px;
  letter-spacing: .18em;
  padding-left: 100px;
}

.timeBoxNote {
  margin: 0;
  font-size: 16px;
  letter-spacing: .14em;
  text-align: center;
}

.gcalSection {
  padding: 80px 20px 0;
}

.gcalInner {
  max-width: 980px;
  margin: 0 auto;
}


.gcalIframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  background: transparent;
}

.gcalLegend {
  margin: 80px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: 520px;
}

.gcalEmbed {
  background: #dcdcdc;
  border: 1px solid rgba(0, 0, 0, .08);
  padding: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.gcalIframe {
  width: 1200px;
  min-width: 1200px;
  height: 420px;
  border: 0;
  display: block;
}

.gcalLegend__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  letter-spacing: .08em;
  line-height: 1.6;
}

.gcalLegend__swatch {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  flex: 0 0 10px;
}

.gcalLegend__swatch.is-green {
  background: #2bb673;
}

.gcalLegend__swatch.is-yellow {
  background: #f2b705;
}

.gcalLegend__swatch.is-blue {
  background: #384A75;
}

.gcalLegend__swatch.is-red {
  background: #e84b3c;
}

.gcalLegend__swatch.is-purple {
  background: #b08cff;
}

.gcalLegend__swatch.is-gray {
  background: #666;
}

.gcalNotes {
  margin-top: 22px;
  font-size: 16px;
  letter-spacing: .06em;
  line-height: 2.0;
}

/* =========================================================
  RESPONSIVE
========================================================= */

@media (max-width: 580px) {
  .timeBoxWrap {
    gap: 24px;
  }

  .timeBox {
    padding: 24px 10px;
  }

  .timeBoxNote {
    font-size: 16px;
  }

  .gcalIframe {
    height: 320px;
  }

  .gcalLegend {
    max-width: 100%;
    margin: 40px 0;
  }
}

/* =========================
  お問い合わせ
========================= */
.contactFormSec {
  padding: 0 20px 160px;
}

.contactFormLead {
  margin: 0 0 28px;
  text-align: center;
  font-size: 16px;
  letter-spacing: .18em;
  opacity: .9;
}

.contactForm {
  max-width: 760px;
  margin: 0 auto;
}

.cfRow {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 14px 0;
}

.cfLabel {
  width: 240px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  letter-spacing: .12em;
  font-size: 16px;
  white-space: nowrap;
}

.cfReq {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 18px;
  padding: 0 8px;
  font-size: 11px;
  letter-spacing: .12em;
  background: #d63a3a;
  color: #fff;
}

.cfField {
  flex: 1;
  min-width: 0;
}

.cfInput,
.cfTextarea {
  width: 100%;
  border: 1px solid rgba(47, 75, 130, .55);
  padding: 10px 12px;
  outline: none;
  background: #fff;
}

.cfInput {
  height: 40px;
}

.cfTextarea {
  height: 220px;
  resize: vertical;
  padding: 20px;
}

.cfZip {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cfInput--zip {
  width: 90px;
}

.cfRow--textarea {
  align-items: flex-start;
}

.cfRow--textarea .cfLabel {
  padding-top: 20px;
}

.cfNote {
  margin: 18px 0 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .12em;
  opacity: .85;
}

.cfActions {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}

.cfSubmit {
  width: min(340px, 100%);
  height: 60px;
  font-size: 16px;
  border: none;
  background: #6BB347;
  color: #fff;
  letter-spacing: .18em;
  box-shadow: 0 10px 18px rgba(0, 0, 0, .18);
  cursor: pointer;
  transition: transform .15s ease, filter .15s ease;
}

.cfSubmit:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.cfSubmit:active {
  transform: translateY(0);
}

/* =========================================================
  RESPONSIVE
========================================================= */

@media (max-width: 720px) {
  .cfRow {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .contactFormSec {
    padding: 0 20px 80px;
  }

  .cfLabel {
    width: 100%;
    justify-content: flex-start;
  }

  .cfInput--zip {
    width: 45%;
  }
}

/* =========================
  部位別
========================= */

.partDetail {
  max-width: 980px;
  margin: 0 auto;
  padding: 100px 20px 0;
}

.partBlock {
  padding: 0px 0 20px;
}

.partBlock__title {
  margin: 80px 0 40px;
  padding: 20px 0;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: .12em;
  border-top: 2px solid #6BB347;
  border-bottom: 2px solid #6BB347;
  font-family: "Inter", "Noto Sans JP", sans-serif;
}

.partItem {
  margin: 0 0 18px;
}

.partItem__head {
  margin: 0 0 10px;
  padding-left: 20px;
  border-left: 4px solid #6BB347;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .12em;
}

.partItem__text {
  margin: 0;
  padding-left: 18px;
  font-size: 16px;
  line-height: 2.4;
  letter-spacing: .08em;
  color: #2f4b82;
  opacity: .92;
}

.doctorMiniCard {
  padding-top: 40px;
  max-width: 700px;
  margin: 0 auto;
}

.doctorMiniCard__inner {
  border: 1px solid #2f4b82;
  border-radius: 4px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, .08);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.doctorMiniCard__photo {
  margin: 0;
  flex: 0 0 150px;
}

.doctorMiniCard__photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

.doctorMiniCard__content {
  flex: 1 1 auto;
  min-width: 0;
  text-align: center;
}

.doctorMiniCard__lead {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: .12em;
  opacity: .9;
}

.doctorMiniCard__name {
  margin: 0 0 14px;
  font-size: 20px;
  letter-spacing: .12em;
}

.doctorMiniCard__name span {
  opacity: .9;
  font-size: 14px;
}

.doctorMiniCard__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(340px, 100%);
  height: 45px;
  background: #2f4b82;
  color: #fff;
  text-decoration: none;
  letter-spacing: .14em;
  box-shadow: 0 8px 14px rgba(0, 0, 0, .14);
  transition: transform .15s ease, filter .15s ease;
}

.doctorMiniCard__btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.doctorMiniCard__btn:active {
  transform: translateY(0);
}

/* =========================================================
  RESPONSIVE
========================================================= */

@media (max-width: 820px) {
  .partDetail {
    padding: 30px 16px 60px;
  }

  .partBlock__title {
    font-size: 18px;
    margin: 40px 0;
  }

  .doctorMiniCard__inner {
    flex-direction: column;
    text-align: center;
  }

  .doctorMiniCard__photo {
    flex-basis: auto;
    width: min(220px, 100%);
  }
}

@media (max-width: 560px) {
  .doctorMiniCard__lead {
    font-size: 14px;
  }

  .partDetail {
    padding: 30px 10px 0;
  }

  .doctorMiniCard__inner {
    gap: 20px;
  }
}

/* =========================
  目次
========================= */
.apsrap {
  padding: 0 10px;
}

.tocBox {
  max-width: 1000px;
  margin: 160px auto 0;
  border: 1px solid #6BB347;
}

.tocBox__head {
  margin: 0;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #6BB347;
  color: #fff;
  font-weight: 800;
  letter-spacing: .2em;
  font-size: 20px;
}

.tocList {
  list-style: none;
  margin: 0;
  padding: 20px 20px;
}

.tocItem {
  border-top: 1px solid #6BB347;
}

.tocItem:first-child {
  border-top: 0;
}

.tocLink {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .08em;
}

.tocNum {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  flex: 0 0 26px;
  color: #6BB347;
  font-weight: 800;
  letter-spacing: 0;
}

.tocLink:hover {
  opacity: .9;
}

.tocLink:focus-visible {
  outline: 3px solid rgba(124, 179, 66, .35);
  outline-offset: 3px;
}

.aps_text {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8rem;
  text-align: left;
}

.aps_text_item {
  color: #6BB347;
}

.apsSection {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 20px;
}

.apsBlock {
  margin: 0 0 80px;
}

.apsTitle {
  margin: 0 0 32px;
  padding: 12px 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .12em;
  border-top: 2px solid #6BB347;
  border-bottom: 2px solid #6BB347;
  font-family: "Inter", "Noto Sans JP", sans-serif;
}

.apsYoutube {
  display: flex;
  gap: 24px;
}

.apsYoutube__item {
  flex: 1 1 0;
  aspect-ratio: 16 / 9;
}

.apsYoutube__item iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.apsAbout {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.apsAbout__text {
  flex: 1 1 55%;
  font-size: 14px;
  line-height: 2.0;
  letter-spacing: .06em;
}

.apsLead {
  margin-bottom: 28px;
  font-size: 16px;
}

.apsSubHead {
  margin: 32px 0 10px;
  padding-left: 10px;
  border-left: 4px solid #6BB347;
  font-size: 18px;
  font-weight: 700;

}

.apsSubHead p {
  font-size: 16px;
}

.apsAbout__image {
  flex: 1 1 45%;
}

.apsAbout__image img {
  width: 100%;
  height: auto;
  display: block;
}

.apsBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  height: 50px;
  padding: 0 50px;
  background: #6BB347;
  color: #fff;
  text-decoration: none;
  letter-spacing: .1em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
}

.apsBtnrap {
  max-width: 1000px;
  display: flex;
  justify-content: flex-end;
}

.apsDoctor__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.apsDoctor__row {
  display: flex;
  gap: 46px;
  align-items: flex-start;
}

.apsDoctor__photo {
  flex: 0 0 360px;
  max-width: 360px;
  margin: 0;
}

.apsDoctor__photo img {
  width: 100%;
  height: auto;
  display: block;
}

.apsDoctor__body {
  flex: 1 1 auto;
  min-width: 0;
}

.apsDoctor__meta {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: .06em;
}

.apsDoctor__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .06em;
}

.apsDoctor__cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.apsDoctor__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  height: 60px;
  padding: 0 30px;
  background: #6BB347;
  color: #fff;
  font-size: 18px;
  letter-spacing: .22em;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(0, 0, 0, .12);
}

.apsDoctor__btn:hover {
  filter: brightness(.98);
  transform: translateY(-1px);
}

.apsFlow {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.apsFlow__block {
  padding: 26px 0 40px;
  border-top: 2px solid #6BB347;
}

.apsFlow__block+.apsFlow__block {
  margin-top: 30px;
}

.apsFlow__title {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .08em;
}

.apsFlow__item {
  margin-top: 40px;
}

.apsFlow__subhead {
  margin: 0 0 10px;
  padding-left: 14px;
  position: relative;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .06em;
}

.apsFlow__subhead::before {
  content: "";
  position: absolute;
  left: 0;
  top: .25em;
  width: 3px;
  height: 1.1em;
  background: #6BB347;
  border-radius: 2px;
}


.apsFlow__text {
  margin: 0;
  font-size: 16px;
  line-height: 2.2;
  letter-spacing: .06em;
  opacity: .92;
}

.apsFlow__olist {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.apsFlow__olist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .06em;
  opacity: .92;
}

.apsFlow__num {
  flex: 0 0 auto;
  width: 2.2em;
}

.apsFlow__liText {
  flex: 1 1 auto;
  min-width: 0;
}

.apsFlow__note {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 2.2;
  letter-spacing: .06em;
  opacity: .82;
}

.apsbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-align: center;
  margin-top: 40px;
  height: 80px;
  padding: 0 50px;
  background: #6BB347;
  color: #fff;
  text-decoration: none;
  letter-spacing: .1em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
}

.apsbtnrap {
  max-width: 1000px;
  display: flex;
  justify-content: center
}

/* =========================================================
  RESPONSIVE
========================================================= */

@media (max-width: 900px) {
  .apsYoutube {
    flex-direction: column;
  }

  .apsAbout {
    flex-direction: column;
  }

  .apsBtn {
    width: 100%;
  }
}

@media (max-width: 820px) {
  .apsDoctor {
    padding: 0 16px 18px;
  }

  .apsDoctor__row {
    flex-direction: column;
    gap: 16px;
  }

  .apsDoctor__photo {
    max-width: 520px;
    width: 100%;
  }

  .apsDoctor__cta {
    justify-content: center;
  }

  .apsDoctor__btn {
    width: min(320px, 100%);
  }
}

@media (max-width: 560px) {
  .tocBox {
    max-width: 100%;
  }

  .tocList {
    padding: 10px 12px 12px;
  }

  .tocLink {
    padding: 11px 4px;
    font-size: 16px;
  }

  .tocNum {
    width: 24px;
    flex-basis: 24px;
  }

  .apsFlow {
    padding: 0 16px 60px;
  }

  .apsFlow__title {
    font-size: 16px;
  }

  .apsFlow__text,
  .apsFlow__olist li {
    font-size: 16px;
    line-height: 2.1;
    gap: 5px;
  }

  .apsDoctor__photo {
    flex: 0 0 80px;
  }

  .apsDoctor__meta {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 30px;
  }

  .apsDoctor__meta span {
    font-size: 14px;
    line-height: 1.4;
  }

  .tocBox {
    margin: 80px auto 0;
  }
}

/* =========================
  初診の方へ
========================= */

.bringSec {
  padding: 0 20px 80px;
}

.bringSec__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.bringSec__title {
  margin: 0 0 40px;
  padding-left: 20px;
  position: relative;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .08em;
}

.bringSec__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: .25em;
  width: 3px;
  height: 1.1em;
  background: #6BB347;
  border-radius: 2px;
}

/* 2カラム箇条書き */
.bringSec__lists {
  display: flex;
  gap: 90px;
  align-items: flex-start;
  margin: 0 0 18px;
}

.bringSec__list {
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1 1 0;
  min-width: 0;
  /* はみ出し対策 */
}

.bringSec__list li {
  position: relative;
  padding-left: 20px;
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .06em;
  opacity: .92;
}

.bringSec__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  opacity: .9;
}

.bringSec__note {
  font-size: 16px;
  letter-spacing: .06em;
  opacity: .85;
}

.bringSec__note p {
  margin: 0 0 8px;
}

.flow {
  padding: 80px 20px 0;
  max-width: 1000px;
  margin: 0 auto;

}

.flow__timeline {
  position: relative;
}

.flow__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100px;
  width: 2px;
  background:
    repeating-linear-gradient(to bottom,
      #6BB347 0 6px,
      transparent 6px 12px);
}

.flow__item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 56px;
  position: relative;
}

.flow__dot {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  z-index: 2;
  flex-shrink: 0;
}

.flow__dot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flow__right {
  flex: 1;
  min-width: 0;
  padding-top: 6px;
}

.flow__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 5px;
  padding: 40px 0;
}

.flow__lead {
  font-size: 18px;
  line-height: 2.0;
}

.flow_line {
  font-size: 18px;
  border-bottom: 5px solid #D9D9D9;
  text-align: center;
  padding-bottom: 20px;
}

.flow__qr {
  width: 86px;
  flex: 0 0 86px;
}

.flow__qr img {
  width: 100%;
  height: auto;
  display: block;
}

.flow__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 12px 0 8px;
  padding: 10px 20px;
  background: #6BB347;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  border-radius: 2px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .12);
}

.flow__note {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 2.0;
  opacity: .9;
}

.flow__rule {
  position: relative;
  margin-top: 20px;
  padding: 20px 0;
}

.flowlink_border {
  border-bottom: 1px solid #2f4b82;
  ;
  padding: 5px 0;
}

.flow__rule::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 5px;
  background: rgba(0, 0, 0, .12);
  /* カンプの薄グレー線 */
  transform: translateY(-50%);
}

.flow__ruleText {
  position: relative;
  display: inline-block;
  padding: 0 20px;
  font-size: 18px;
  letter-spacing: .12em;
  text-align: center;
}

.flow__rule {
  text-align: center;
}

.flow__link {
  display: inline-block;
  margin: 10px 0 6px;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.flow__desc {
  margin: 40px 0;
  font-size: 16px;
  line-height: 2.0;
  color: #2f4b82;
  opacity: .9;
}

.flow__item:last-child {
  margin-bottom: 0;
}

.carey {
  padding: 0 20px 160px;
  max-width: 1000px;
  margin: 0 auto;

}

.accessnote_bg {
  background-color: #2b4c7e;

}

.accessnote_rap {
  max-width: 730px;
  margin: 0 auto;
  padding: 160px 0;
  letter-spacing: 0.3rem;
}

.accessnote {
  font-size: 24px;
  color: #fff;
  text-align: center;
  padding-bottom: 40px;
}

.accessnote__text {
  font-size: 16px;
  color: #fff;
  line-height: 1.8;
  padding: 20px;
}

.accessSec {
  padding: 0px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.accessSec__title {
  margin: 20px 0 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .12em;
}

.accessSec__line {
  display: inline-block;
  width: 120px;
  margin-top: 14px;
  border-bottom: 3px dotted #7CB342;
}

.accessTop {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin: 0 0 40px;
}

.accessTop__photo {
  flex: 0 0 46%;
  margin: 0;
}

.accessTop__photo img {
  width: 100%;
  height: auto;
  display: block;
}

.accessTop__info {
  flex: 1 1 auto;
}

.accessBlock {
  padding-top: 10px;
}

.accessBlock__head {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .12em;
  position: relative;
  padding-left: 18px;
}

.accessBlock__head::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35em;
  width: 4px;
  height: 14px;
  background: #6BB347;
  border-radius: 1px;
}

.accessBlock__text {
  margin: 0;
  font-size: 16px;
  line-height: 2.1;
  letter-spacing: .04em;
  opacity: .95;
}

.accessList {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 16px;
  line-height: 2.0;
  opacity: .95;
}

.accessList li {
  position: relative;
  padding-left: 20px;
}

.accessList li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.accessMaps {
  padding: 0 20px;
}

.accessMaps__row {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 34px;
  align-items: flex-start;
}

.accessMaps__col {
  flex: 1 1 0;
  min-width: 0;
}

.accessMaps__title {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .08em;
  position: relative;
  padding-left: 14px;
}

.accessMaps__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: .25em;
  width: 4px;
  height: 1.1em;
  background: #6BB347;
  border-radius: 2px;
}

.accessMaps__box {
  width: 100%;
  height: 400px;
  background: #fff;
  overflow: hidden;
}

.accessMaps__box--map iframe {
  width: 100%;
  height: 100% !important;
  border: 0;
  display: block;
}

.accessMaps__box--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================================
  RESPONSIVE
========================================================= */

@media (max-width: 680px) {
  .flow__line {
    left: 30px;
  }

  .flow__dot {
    width: 80px;
    height: 80px;
  }

  .flow__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .flow__qr {
    width: 96px;
    flex-basis: auto;
  }

  .flow__item {
    gap: 15px;
  }

  .flow__rule {
    margin-top: 0;
  }

  .flow__ruleText {
    text-align: left;
  }
}

@media (max-width: 860px) {
  .accessMaps__row {
    flex-direction: column;
    gap: 40px;
  }

  .accessMaps__box {
    height: 300px;
  }

  .accessTop {
    flex-direction: column;
    gap: 18px;
  }

  .accessTop__photo {
    flex: none;
    max-width: 680px;
  }

  .accessMapRow {
    flex-direction: column;
  }
}

@media (max-width: 820px) {
  .bringSec__lists {
    gap: 34px;
  }
}

@media (max-width: 560px) {
  .bringSec {
    padding: 0 16px 60px;
  }

  .bringSec__lists {
    flex-direction: column;
    gap: 6px;
  }

  .accessSec {
    padding: 40px 20px 0;
  }

  .accessSec__title {
    font-size: 22px;
  }

  .accessBlock__text,
  .accessList {
    font-size: 16px;
  }

  .carey {
    padding: 0 20px 80px;
  }

  .flow {
    padding: 0px 20px;
  }

  .flow_line {
    font-size: 16px;
    text-align: left;
  }

  .flow__note {
    font-size: 14px;
  }

  .accessnote_rap {
    padding: 80px 0;
  }
}

/* =========================
  Bone
========================= */

.featuresSec {
  padding: 160px 20px 0;
}

.featuresInner {
  max-width: 980px;
  margin: 0 auto;
}

.secHead {
  text-align: center;
}

.secHead__en {
  margin: 0;
  font-size: 14px;
  letter-spacing: .14em;
  color: #6BB347;
}

.secHead__jp {
  margin: 10px 0 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .14em;
}

.secHead__line {
  display: inline-block;
  width: 54px;
  margin-top: 10px;
  border-bottom: 3px dotted #6BB347;
}

.featureItem {
  display: flex;
  justify-content: space-between;
  gap: 34px;
}

.featureTitle {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .10em;
  position: relative;
  padding-left: 20px;
}

.featureTitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: .25em;
  width: 4px;
  height: 1.2em;
  background: #6BB347;
  border-radius: 2px;
}

.featureDesc {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .06em;
  opacity: .92;
}

.featureMedia {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.featureMedia--double {
  gap: 14px;
}

.featureImg {
  margin: 0;
  width: 300px;
  height: auto;
  border-radius: 2px;
  overflow: hidden;
}

.featureImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.featureItem--stack {
  flex-direction: column;
  gap: 18px;
  padding-top: 40px;
}

.mriHero {
  position: relative;
  width: 100%;
  margin-top: 6px;
}

.mriHero__img {
  margin: 0;
  width: 100%;
  height: 280px;
  background: #eee;
  overflow: hidden;
}

.mriHero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mriHero__box {
  width: min(720px, 92%);
  margin: -34px auto 0;
  background: #fff;
  border: 1px solid rgba(47, 75, 130, .55);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .10);
  padding: 18px 22px;
}

.mriHero__boxText {
  margin: 0;
  font-size: 12px;
  line-height: 2.2;
  letter-spacing: .06em;
}

/* =========================================================
  RESPONSIVE
========================================================= */

@media (max-width: 860px) {
  .featureItem {
    flex-direction: column;
    gap: 16px;
  }

  .featureMedia {
    flex: none;
    justify-content: flex-start;
  }

  .featureImg {
    width: 48%;
    height: 90px;
  }

  .featureMedia--double {
    width: 100%;
  }

  .mriHero__img {
    height: 220px;
  }
}

@media (max-width: 560px) {
  .featuresSec {
    padding: 80px 20px 0;
  }

  .secHead__jp {
    font-size: 20px;
  }

  .featureDesc,
  .mriHero__boxText {
    font-size: 16px;
  }

  .featureImg {
    height: 80px;
  }
}

/* =========================
  Lymphedema block
========================= */

.lympSec {
  padding: 0 20px;
}

.lympInner {
  max-width: 1000px;
  margin: 0 auto;
}

.lympTop {
  display: flex;
  gap: 26px;
  align-items: flex-start;
  padding-bottom: 80px;
  
}

.lympTop__img {
  flex: 0 0 220px;
  max-width: 220px;
  margin: 0;
}

.lympTop__img img {
  width: 100%;
  height: auto;
  display: block;
}


.lympTop__text {
  flex: 1 1 auto;
  line-height: 2.2;
  text-align: left;
}

.lympCard_text_rap {
  background: #FFF;
  border: 1px solid #A0C3CD;
  padding: 30px 22px;
}

.lympTop__text p {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 2.2;
  letter-spacing: .06em;
  opacity: .95;
}

.lympCards {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 26px 34px;
}

.lympCard {
  flex: 1 1 calc(50% - 17px);
  min-width: 320px;
}

.lympCard__title {
  text-align: center;
  font-size: 16px;
  letter-spacing: .12em;
  color: #FFF;
}


.lympCard_title_rap {
  background-color: #A0C3CD;
  padding: 7px;
}

.lympCard__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: .06em;
  opacity: .95;
  text-align: left;
}

.symptomSec {
  padding: 80px 20px 160px;
}

.symptomInner {
  max-width: 1000px;
  margin: 0 auto;
}

.symptomTitle {
  margin: 80px 0;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .18em;
  position: relative;
  padding-bottom: 14px;
}

.symptomTitle::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 380px;
  max-width: 80%;
  height: 1px;
  background: rgba(47, 75, 130, .7);
}

.symptomGrid {
  display: flex;
  gap: 46px;
  align-items: stretch;
  justify-content: center;
}

.symptomBox {
  flex: 1 1 0;
  min-width: 0;
  border: 1px solid rgba(47, 75, 130, .75);
  background: #fff;
  padding: 22px 28px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, .10);
  text-align: left;
}

.symptomList {
  margin: 0;
  padding-left: 18px;
  font-size: 11px;
  line-height: 2.3;
  letter-spacing: .06em;
}

.symptomNote {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 2.2;
  letter-spacing: .12em;
}

.symptomNote__em {
  font-weight: 800;
  font-size: 18px;
}

.symptomSubTitle {
  margin: 80px 0 40px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .18em;
}

.dangerGrid {
  display: flex;
  gap: 34px;
  align-items: flex-start;
  justify-content: center;
}

.dangerItem {
  flex: 1 1 0;
  min-width: 0;
  text-align: left;
}

.dangerItem_b {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
}

.dangerLabel {
  display: inline-block;
  margin: 0 0 10px;
  padding: 10px 20px;
  background: #2f4b82;
  color: #fff;
  font-size: 16px;
  letter-spacing: .12em;
}

.dangerText {
  margin: 20px 0 20px;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .06em;
  opacity: .95;
}

.dangerText_b {
  margin: 20px 0 20px;
  font-size: 16px;
  color: #FFF;
  line-height: 1.8;
  letter-spacing: .06em;
  opacity: .95;
}

.dangerLink {
  margin: 10px 0 0;
  display: inline-block;
  font-size: 16px;
  letter-spacing: .12em;
  padding-bottom: 6px;
  font-weight: 700;
  border-bottom: 1px solid rgba(47, 75, 130, .7);
}

.dangerLink_b {
  margin: 10px 0 0;
  display: inline-block;
  font-size: 16px;
  letter-spacing: .12em;
  padding-bottom: 10px;
  color: #FFF;
}

.adangerLink_rap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 160px 0;
  letter-spacing: 0.3rem;
}

.symptomList_text {
  font-size: 16px;
}

/* =========================================================
  RESPONSIVE
========================================================= */

@media (max-width: 860px) {
  .lympTop {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .lympTop__img {
    flex-basis: auto;
    max-width: 240px;
  }

  .lympCards {
    gap: 16px;
  }

  .lympCard {
    flex-basis: 100%;
    min-width: 0;
  }

  .symptomGrid {
    flex-direction: column;
    gap: 18px;
  }

  .dangerGrid {
    flex-direction: column;
    gap: 20px;
  }

  .adangerLink_rap{
    padding: 80px 0;
  }
}

/* =========================
  sport
========================= */

.Intro__text {
  text-align: center;
  font-size: 24px;
  padding: 160px 0 80px;
}

.supportSec {
  padding: 0 20px 80px;
}

.supportInner {
  max-width: 1000px;
  margin: 0 auto;
}

.supportBox {
  max-width: 760px;
  margin: 0 auto 80px;
  border: 1px solid #6BB347;
  padding: 40px 80px;
  background: #fff;
}

.supportList_number {
  color: #6BB347;
  font-size: 18px;
  padding-right: 20px;
}

.supportList {
  font-size: 18px;
  line-height: 2.0;
}

.supportText {
  margin: 0;
  text-align: center;
  font-size: 18px;
  line-height: 2.0;
  letter-spacing: .12em;
}

.policySec {
  padding: 80px 20px 160px;
}

.policyInner {
  max-width: 1000px;
  margin: 0 auto;
}

.policyGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 80px 40px;
  margin-bottom: 160px;
}

.policyCard {
  width: calc((100% - 46px) / 2);
  min-width: 0;
}

.policyCard--img {
  border-radius: 2px;
  overflow: hidden;
}

.policyCard--img img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  display: block;
}

.policyCard__tag {
  margin: 0 0 10px;
  display: inline-block;
  padding: 10px 40px;
  min-height: 30px;
  background: #CDC4A0;
  color: #fff;
  font-size: 18px;
  letter-spacing: .08em;
}

.policyCard__text {
  margin: 0;
  font-size: 16px;
  line-height: 2.3;
  letter-spacing: .08em;
  opacity: .95;
}

.policyCta {
  border: 1px solid #2f4b82;
  padding: 80px 20px 80px;
  text-align: center;
}

.policyCta__text {
  margin: 0 0 40px;
  font-size: 20px;
  line-height: 2.2;
  letter-spacing: .12em;
}

.policyCta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  height: 60px;
  padding: 20px 20px;
  background: #6BB347;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: .14em;
  box-shadow: 0 6px 14px rgba(0, 0, 0, .18);
}

.policyCta__btn:hover {
  filter: brightness(.98);
  transform: translateY(-1px);
}


.mriInner {
  max-width: 900px;
  margin: 0 auto;
}

.mriLead {
  text-align: center;
  font-size: 20px;
  line-height: 2.0;
  letter-spacing: .10em;
}

.mriCompare {
  position: relative;
  padding: 80px 0;
}

.mriCompare::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 55%;
  background: #2f446f;
  z-index: 0;
}

.mriCompare__inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.mriImages {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}

.mriImages figcaption {
  padding-top: 20px;
  font-size: 16px;

}

.mriImages img {
  display: block;
  width: 240px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .15);
}


.mriBand__note {
  margin: 0;
  text-align: center;
  color: #fff;
  line-height: 2.2;
  letter-spacing: .08em;
  opacity: .95;
}

.mriText {
  margin: 40px 0 20px;
  text-align: center;
  line-height: 2.0;
}

.mriText_b {
  margin: 80px 20px;
  text-align: center;
  font-size: 20px;
  line-height: 2.0;
}

.mriTableWrap {
  display: flex;
  justify-content: center;
  padding-bottom: 80px;
}

.mriTableWrap {
  padding-bottom: 0px;
}

.mriTable {
  width: min(520px, 100%);
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 16px;
}

.mriTable th,
.mriTable td {
  border: 1px solid rgba(47, 75, 130, .55);
  padding: 10px 12px;
}

.mriTable th {
  width: 46%;
  font-weight: 600;
}

.mriTable td {
  width: 54%;
  text-align: right;
  white-space: nowrap;
}

.mriTable__head th {
  background: #2f446f;
  color: #fff;
  text-align: center;
  letter-spacing: .12em;
  font-weight: 700;
  font-size: 20px;
}

.srBlock {
  max-width: 980px;
  margin: 0 auto;
  padding: 70px 20px 80px;
}

.srHead {
  text-align: center;
  margin: 0 0 34px;
}

.srHead--spaced {
  margin-top: 56px;
}

.srHead__en {
  margin: 0;
  font-size: 14px;
  letter-spacing: .12em;
  color: #6BB347;
  font-weight: 600;
}

.srHead__jp {
  margin: 10px 0 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .14em;
}

.srHead__dot {
  display: inline-block;
  width: 70px;
  margin-top: 12px;
  border-bottom: 3px dotted #6BB347;
}

.srFeatureRow {
  display: flex;
  gap: 40px;
  align-items: center;
}

.srFeatureRow__img {
  flex: 0 0 220px;
  max-width: 220px;
  margin: 0;
}

.srFeatureRow__img img {
  width: 100%;
  height: auto;
  display: block;
}

.srFeatureRow__texts {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.srBox {
  border: 1px solid rgba(47, 75, 130, .65);
  background: #fff;
  padding: 20px 20px;
  font-size: 16px;
  letter-spacing: .06em;
}

.rehabProc {
  max-width: 980px;
  margin: 0 auto;
  padding: 70px 20px 0;
}

.rehabProc__head {
  text-align: center;
  margin: 0 0 36px;
}

.rehabProc__en {
  margin: 0;
  font-size: 14px;
  letter-spacing: .12em;
  color: #6BB347;
  font-weight: 600;
}

.rehabProc__jp {
  margin: 10px 0 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .14em;
}

.rehabProc__dot {
  display: inline-block;
  width: 70px;
  margin-top: 12px;
  border-bottom: 3px dotted #6BB347;
}

.rehabProcGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 30px;
}

.rehabProcItem {
  width: calc((100% - 72px) / 3);
  min-width: 0;
}

.rehabProc_title {
  font-size: 24px;
  text-align: center;
  padding: 160px 0 80px;
  font-weight: 700;

}

.rehabProcItem__label {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .10em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rehabProcItem__bar {
  width: 3px;
  height: 14px;
  background: #6BB347;
  flex: 0 0 auto;
}


.rehabProcItem__img {
  margin: 0;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .10);
}

.rehabProcItem__img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.equipSec {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 10px;
}

.equipGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 20px;
}

.equipThumb {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  width: calc((100% - 66px) / 4);
  min-width: 0;
  border-radius: 2px;
  overflow: hidden;
  outline: none;
  position: relative;
}

.equipThumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.equipThumb.is-active {
  box-shadow: 0 0 0 3px rgba(124, 179, 66, .45);
}

.equipThumb:hover {
  transform: translateY(-1px);
}

.equipDesc {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(47, 75, 130, .18);
  text-align: left;
}

.equipDesc__title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .08em;
}

.equipDesc__text {
  margin: 0;
  font-size: 14px;
  line-height: 2.2;
  letter-spacing: .06em;
  opacity: .95;
}

.instSec {
  padding: 80px 20px 0;
}

.instInner {
  max-width: 980px;
  margin: 0 auto;
}

.instTitle {
  text-align: center;
  margin-bottom: 36px;
}

.instTitle__en {
  margin: 0;
  font-size: 12px;
  letter-spacing: .18em;
  color: #6BB347;
}

.instTitle__jp {
  margin: 10px 0 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .12em;
}

.instTitle__dot {
  display: inline-block;
  width: 64px;
  margin-top: 10px;
  border-bottom: 3px dotted #6BB347;
}

.instGrid {
  display: flex;
  gap: 42px;
  align-items: flex-start;
}

.instPhotos {
  flex: 0 0 48%;
  max-width: 48%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.instPhoto {
  margin: 0;
  border-radius: 2px;
  overflow: hidden;
  background: #f5f5f5;
}

.instPhoto img {
  width: 100%;
  height: auto;
  display: block;
}

.instBody {
  flex: 1 1 auto;
}

.instBlock {
  padding-bottom: 20px;
}

.instHead {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .06em;
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-left: 12px;
  position: relative;
  font-family: "Inter", "Noto Sans JP", sans-serif;
}

.instHead::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 5px;
  height: 20px;
  background: #6BB347;
}

.instHead__jp {
  font-size: 12px;
  font-weight: 700;
  opacity: .85;
}

.instYear {
  margin: 10px 0 6px;
  font-size: 12px;
  letter-spacing: .12em;
  opacity: .9;
}

.instList {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  line-height: 1.9;
  letter-spacing: .04em;
}

.instList--small {
  font-size: 11.5px;
  opacity: .95;
}

.instNote {
  margin: 10px 0 0;
  font-size: 11.5px;
  line-height: 2.2;
  letter-spacing: .06em;
  opacity: .9;
}


.sportsGridSec {
  padding: 0 20px;
}

.sportsGridInner {
  max-width: 980px;
  margin: 0 auto;
}

.sportsGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 22px;
}

.sportsCard {
  border: 2px solid #2f4b82;
  background: #fff;
  padding: 20px 15px 20px;
}

.sportsCard__title {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 8px;
  border-bottom: 2px solid #6BB347;
  font-family: "Inter", "Noto Sans JP", sans-serif;
}

.sportsCard__list {
  margin: 0;
  padding-left: 1.2em;
  font-size: 14px;
  line-height: 2.0;
  letter-spacing: .05em;
}

/* =========================================================
  RESPONSIVE
========================================================= */

@media (max-width: 920px) {
  .rehabProcItem {
    width: calc((100% - 36px) / 2);
  }

  .equipThumb {
    width: calc((100% - 44px) / 3);
  }
}

@media (max-width: 900px) {
  .sportsGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .instGrid {
    flex-direction: column;
    gap: 22px;
  }

  .instPhotos {
    max-width: 100%;
    flex-basis: auto;
  }

  .srFeatureRow {
    flex-direction: column;
    gap: 40px;
  }

  .srFeatureRow__img {
    max-width: 360px;
    width: 100%;
  }

  .policyGrid {
    gap: 40px;
  }

  .policyCard {
    width: 100%;
  }

  .policyCard--img img {
    height: 220px;
  }

  .policyCta__btn {
    width: 100%;
    min-width: 0;
    max-width: 360px;
  }
}

@media (max-width: 640px) {
  .equipThumb {
    width: calc((100% - 22px) / 2);
  }

  .equipThumb img {
    height: 110px;
  }
}

@media (max-width: 560px) {
  .policySec {
    padding: 80px 20px 40px;
  }

  .policyTitle__jp {
    font-size: 20px;
  }

  .policyGrid {
    margin-bottom: 80px;
  }

  .policyCard__tag {
    font-size: 14px;
    padding: 10px 10px;
  }

  .policyCard__text {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: .06em;
  }

  .policyCta {
    padding: 40px 20px;
  }

  .policyCta__text {
    font-size: 16px;
    line-height: 1.8;
  }

  .supportBox {
    padding: 16px 14px;
  }

  .supportText {
    font-size: 16px;
  }

  .mriBand {
    padding: 26px 14px 18px;
  }

  .mriBand__imgs {
    gap: 18px;
  }

  .mriImg img {
    width: 124px;
    height: 124px;
  }

  .srBlock {
    padding: 80px 20px 0;
  }

  .mriLead,
  .mriText {
    letter-spacing: .06em;
    padding: 0 20px;
  }

  .rehabProc {
    padding: 80px 20px 40px;
  }

  .rehabProcItem {
    width: 100%;
    /* 1列 */
  }

  .rehabProc_title {
    padding: 80px 0 40px;
  }

  .instSec {
    padding: 0 20px 80px;
  }

  .rehabProcItem__img img {
    height: 210px;
  }

  .sportsGrid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sportsCard {
    padding: 12px 14px 14px;
  }

  .sportsCard__title {
    font-size: 13px;
  }

  .sportsCard__list {
    font-size: 11px;
    line-height: 1.9;
  }

  .mriImages img {
    max-width: 150px;
  }

  .mriCompare::before {
    bottom: 50px;
  }

  .Intro__text {
    padding: 80px 0 40px;
  }

  .supportSec {
    padding: 0;
  }

  .supportList {
    font-size: 16px;
  }

  .supportBox {
    margin: 0 auto 40px;
  }
}

/* =========================
  プライバシーポリシー
========================= */

.policyrap {
  padding: 160px 20px;
}

.policy_title {
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 20px;
}

/* =========================================================
  RESPONSIVE
========================================================= */

@media (max-width: 560px) {
  .taSec {
    padding: 80px 20px;
  }

  .policy_title {
    font-size: 18px;
  }
  .policyrap{
    padding: 80px 20px;

  }
}

/* =========================
  当院のリハビリテーション
========================= */

.symptomSec {
  padding: 160px 20px 80px;
}

.symptomInner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.rehabilitationTitle {
  font-size: 24px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 80px;
  border-bottom: 3px solid #384A75;

}

.rehabilitation__tag {
  margin: 0 0 10px;
  display: inline-block;
  padding: 10px 40px;
  min-height: 30px;
  background: #6BB347;
  color: #fff;
  font-size: 18px;
  letter-spacing: .08em;
}

.symptomGrid {
  display: flex;
  gap: 22px;
}

.symptomCard {
  flex: 1 1 0;
  min-width: 0;
  background: #6BB347;
  color: #fff;
  text-align: center;
  padding: 30px 10px;
  border-radius: 5px;
  font-size: 16px;
  line-height: 1.7;
  box-shadow: 0 8px 14px rgba(0, 0, 0, .12);
}

.rehabilitationCta {
  border: 1px solid #2f4b82;
  padding: 40px 20px;
  text-align: center;
}

.rehabilitationCta__text {
  font-size: 16px;
  line-height: 2.2;
  letter-spacing: .12em;
}

.rehabDetailSec {
  padding: 0 20px 160px;
}

.rehabDetailInner {
  max-width: 1000px;
  margin: 0 auto;
}

.rehabDetailHead {
  text-align: center;
  margin-bottom: 26px;
}

.rehabDetailEn {
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: .14em;
  color: #6BB347;
}

.rehabDetailTitle {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .12em;
}

.rehabDetailDots {
  display: inline-block;
  width: 60px;
  margin-top: 16px;
  border-bottom: 3px dotted #6BB347;
}

.rehabDetailLead {
  margin: 0 auto 40px;
  max-width: 860px;
  text-align: center;
  font-size: 18px;
  line-height: 2.0;
  letter-spacing: .06em;

  opacity: .9;
}

.rehabDetailRow {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.rehabDetailCol {
  flex: 1 1 0;
  min-width: 0;
}

.rehabDetailCol--right {
  flex: 0 0 48%;
}

.rehabDetailBlock {
  margin: 0 0 40px;
}

.rehabDetailTag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 20px;
  font-size: 16px;
  letter-spacing: .12em;
  color: #fff;
  border-radius: 2px;
  margin: 0 0 14px;
}

.rehabDetailTag--green {
  background: #6BB347;
}

.rehabDetailTag--teal {
  background: #47A1B3;
}

.rehabDetailTag--pink {
  background: #B85A7A;
}

.rehabDetailText {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .06em;
  opacity: .9;
}

.rehabDetailPhoto {
  margin: 20px 0 0;
}

.rehabDetailPhoto img {
  width: 100%;
  height: auto;
  display: block;
}


.selfcareSec {
  background: #d9d9d9;
  padding: 160px 20px 160px;
}

.selfcareInner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.selfcareTitle {
  margin: 0 0 80px;
  font-size: 24px;
  font-weight: 700;
  line-height: 2.1;
  letter-spacing: .14em;
  color: #2f4b82;
}

.selfcareLead {
  margin: 0 auto 80px;
  max-width: 720px;
  font-size: 16px;
  line-height: 2.0;
  letter-spacing: .08em;
  opacity: .9;
}

.selfcareCards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.selfcareCard {
  width: 200px;
  min-height: 150px;
  background: #fff;
  border: 1px solid #e6e6e6;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 0 rgba(0, 0, 0, .08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.selfcareCardText {
  display: block;
  font-size: 16px;
  line-height: 1.6;
}

.rehabilitationThumb {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  width: calc((100% - 66px) / 4);
  min-width: 0;
  border-radius: 2px;
  overflow: hidden;
  outline: none;
  position: relative;
}

.rehabilitationThumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.rehabilitationThumb {
  box-shadow: none;
}

.rehabilitationThumb.is-active {
  box-shadow: 0 0 0 3px rgba(124, 179, 66, .45);
}

.rehabilitationThumb:hover {
  transform: translateY(-1px);
}


.rehabGuideSec {
  padding: 160px 20px 0;
}

.rehabGuideInner {
  max-width: 1000px;
  margin: 0 auto;
}

.rehabGuideEyebrow {
  margin: 0 0 6px;
  text-align: center;
  color: #6BB347;
  font-size: 20px;
  letter-spacing: .14em;
}

.rehabGuideTitle {
  margin: 0;
  text-align: center;
  font-size: 24px;
  letter-spacing: .16em;
  font-weight: 700;
}

.rehabGuideDots {
  width: 60px;
  height: 6px;
  margin: 14px auto 50px;
  border-bottom: 2px dotted #6BB347;
}

.rehabRow {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 62px;
}

.rehabRow--reverse {
  flex-direction: row-reverse;
}

.rehabMedia {
  flex: 1.15;
  min-width: 0;
}

.rehabContent {
  flex: 0.85;
  min-width: 0;
}

.rehabRowLead {
  margin: 0 0 14px;
  font-size: 16px;
  letter-spacing: .12em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.rehabLeadIcon {
  width: 18px;
  height: 18px;
  background: #6BB347;
  display: inline-block;
}

.rehabPhoto {
  width: 100%;
}

.rehabPhoto img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.rehabHeading {
  margin: 0 0 18px;
  font-size: 18px;
  letter-spacing: .14em;
  font-weight: 700;
}

.rehabHeading--large {
  font-size: 20px;
}

.rehabText {
  margin: 0 0 60px;
  font-size: 16px;
  letter-spacing: .10em;
  line-height: 2.3;
  opacity: .95;
}

.rehabBtnRow {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}

.rehabBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 340px;
  height: 60px;
  padding: 0 18px;
  background: #2f476f;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: .12em;
  box-shadow: 0 2px 0 rgba(0, 0, 0, .10);
}

/* =========================================================
  RESPONSIVE
========================================================= */

@media (max-width: 860px) {
  .rehabRow {
    flex-direction: column;
    gap: 18px;
    margin-bottom: 52px;
  }

  .rehabRow--reverse {
    flex-direction: column;
  }

  .rehabContent {
    padding-top: 0;
  }

  .rehabBtn {
    min-width: 100%;
    font-size: 14px;
  }

  .rehabBtnRow {
    gap: 12px;
  }

  .rehabBtn--small {
    min-width: calc(50% - 6px);
  }

  .symptomGrid {
    flex-wrap: wrap;
  }

  .symptomCard {
    flex: 1 1 calc(50% - 11px);
  }

  .rehabDetailRow {
    flex-direction: column;
    gap: 28px;
  }

  .rehabDetailCol--right {
    flex-basis: auto;
  }

  .rehabDetailLead {
    text-align: left;
  }

  .selfcareSec {
    padding: 56px 16px 64px;
  }

  .selfcareTitle {
    font-size: 18px;
    margin: 0 0 40px;
  }

  .selfcareLead {
    text-align: left;
    margin: 0 auto 40px;
  }
}

@media (max-width: 520px) {
  .selfcareCards {
    gap: 14px;
  }

  .rehabRowLead {
    letter-spacing: 0rem;
  }

  .rehabText {
    margin: 0 0 40px;
  }

  .rehabGuideSec {
    padding: 80px 20px 0;
  }

  .selfcareCard {
    width: calc(50% - 7px);
    min-height: 92px;
  }

  .selfcareCardText {
    font-size: 14px;
  }
}

@media (max-width: 560px) {
  .rehabDetailSec {
    padding: 40px 20px;
  }

  .rehabDetailTitle {
    font-size: 18px;
  }

  .rehabDetailLead {
    font-size: 16px;
    line-height: 2.0;
  }

  .rehabDetailText {
    font-size: 16px;
    line-height: 2.0;
  }

  .symptomTitle {
    font-size: 18px;
        margin: 0 0 80px;
  }

  .symptomCard {
    flex: 1 1 100%;
    font-size: 13px;
  }

  .rehabilitation__tag {
    font-size: 14px;
    padding: 10px 10px;
  }

  .rehabilitationCta {
    padding: 40px 20px;
  }

  .rehabilitationCta__text {
    font-size: 16px;
    line-height: 1.8;
  }

  .rehabBtn--small {
    min-width: 100%;
  }

  .symptomSec {
    padding: 80px 20px;
  }
  .accessnote {
     font-size: 18px;
  }

  .rehabilitationThumb{
    width: calc((100% - 30px) / 2);
  }

  .rehabilitationThumb img {
  height: 150px;
}
}

/* =========================
  医師紹介
========================= */

.memberIntro__lead {
  text-align: center;
  font-size: 20px;
  padding-bottom: 80px;
}

.docCards {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  padding-bottom: 80px;
}

.docCard {
  width: 240px;
  border: 1px solid #aeb9d0;
  background: #fff;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.docCard__head {
  background: #2f4368;
  color: #fff;
  padding: 15px 16px;
  min-height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
}


.docCard__headText {
  text-align: center;
  font-size: 14px;
  line-height: 1.9;
}

.docCard__photo {
  height: 160px;
  overflow: hidden;
}

.docCard__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.docCard__foot {
  text-align: center;
  padding: 14px;
}

.docCard__name {
  font-size: 16px;
  color: #2f4368;
}

.docCard__role{
  color: #2f4368;

}

.doctorModal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: .25s;
}

.doctorModal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.doctorModal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
}

/* モーダル本体 */
.doctorModal__panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -48%) scale(.98);
  width: min(900px, calc(100% - 32px));
  max-height: calc(100% - 32px);
  overflow: auto;
  background: #DFE8DA;
  border: 1px solid #aeb9d0;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
  transition: .25s;
}

.doctorModal.is-open .doctorModal__panel {
  transform: translate(-50%, -50%) scale(1);
}

/* 閉じるボタン */
.doctorModal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 28px;
  border: 0;
  background: none;
  cursor: pointer;
}

/* モーダル内容 */
.doctorModal__content {
  padding: 40px;
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
}

.doctorModal__img {
  max-width: 280px;
  display: block;
  margin: 0 auto 20px;
}

.doctorModal__name {
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #2b4c7e;
}

.doctorModal__block {
  margin-top: 16px;

}

#doctorModalSpec {
  font-size: 15px;
  font-weight: 600;
}

pre {
  white-space: pre-wrap;
  font-size: 15px;
}

.Intro_b {
  padding: 80px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.deptInner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.deptGrid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 56px 56px;
}

.deptItem {
  flex: 0 1 calc(50% - 28px);
  max-width: 520px;
}

.deptTitle {
  margin: 0 0 14px;
  text-align: center;
  font-size: 20px;
  letter-spacing: .18em;
  font-weight: 600;
}

.deptCard {
  background: #d9d9d9;
  padding: 40px 20px;
}

.deptCard_b {
  padding: 40px 20px;
}

.deptPhoto img {
  display: block;
  width: 100%;
  height: auto;
}

.deptText {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .06em;
}

/* =========================================================
  RESPONSIVE
========================================================= */

@media (max-width: 860px) {
  .deptGrid {
    gap: 40px;
  }

  .deptItem {
    flex-basis: 100%;
    max-width: 560px;
  }
}

@media (max-width: 560px) {
  .deptSec {
    padding: 40px 0 0;
  }

  .deptTitle {
    font-size: 18px;
  }

  .deptCard {
    padding: 20px;
  }

  .deptText {
    font-size: 16px;
    line-height: 1.6;
  }

  .memberIntro__lead {
    font-size: 16px;
    padding-bottom: 40px;
  }

  .bringSec__title {
    font-size: 18px;
  }

  .Intro_b {
    padding: 0 20px;
  }
}