@charset "UTF-8";

/* * {
  outline: 2px solid blue;
} */

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

/* SP専用表示（PCでは非表示） */
.sp-only {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp-only {
    display: inline;
  }
}

html {
  scroll-behavior: smooth;
}

/* 0316修正 */
body {
  margin: 0 auto;
  background-color: #fff;
  color: #333;
  min-width: auto;
  font-family:
    "Noto Sans JP",
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Yu Gothic",
    "Yu Gothic Medium",
    "Meiryo",
    sans-serif;
  overflow-x: hidden;
  font-size: 1rem;
}

/* リンク設定 */
a {
  color: inherit;
  text-decoration: none;
  transition-duration: 0.5s;
}

/* 画像 */
img {
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}

/* タイトル見出し */
.p-section-heading {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin: 0 auto;
  padding-bottom: 24px;
  text-align: center;
  color: #787878;
}

.p-section-heading__jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: 0;
}

.p-section-heading__en {
  font-family: "Helvetica Neue", "Roboto", sans-serif;
  font-size: 64px;
  line-height: 1.2;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #787878;
  text-transform: uppercase;
}

.p-section-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #787878;
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .p-section-heading {
    gap: 0.25rem;
    padding-bottom: 1rem;
  }

  .p-section-heading__jp {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }

  .p-section-heading__en {
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: 0.08em;
  }

  .p-section-heading::after {
    width: 30px;
  }
}





/* ------------------------------------------------------------------
------------------0316 予約タブ------------------------------------------ */
.p-reservation__inner {
  padding-block: 6.25rem;
}

.p-reservation-tabs {
  padding-top: 80px;
  background: #fff;
}

.p-reservation-tabs__inner {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 0 20px;
}

.p-reservation-tabs__lead {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 12px;
  margin-bottom: 28px;
}

.p-reservation-tabs__lead-item {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  flex: 1 1 30%;
  min-width: 280px;
}

.p-reservation-tabs__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.45em;
}

.p-reservation-tabs__lead-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-reservation-tabs__lead-old {
  font-size: 14px;
  color: #555;
}

.p-reservation-tabs__lead-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #333;
}

.p-reservation-tabs__lead-item.is-west .p-reservation-tabs__dot,
.p-reservation-tabs__tab.is-west.is-active {
  background: #ED7300;
}

.p-reservation-tabs__lead-item.is-south .p-reservation-tabs__dot,
.p-reservation-tabs__tab.is-south.is-active {
  background: #DE0078;
}

.p-reservation-tabs__lead-item.is-east .p-reservation-tabs__dot,
.p-reservation-tabs__tab.is-east.is-active {
  background: #00987D;
}

.p-reservation-tabs__lead-item.is-west .p-reservation-tabs__lead-title {
  color: #ED7300;
}

.p-reservation-tabs__lead-item.is-south .p-reservation-tabs__lead-title {
  color: #DE0078;
}

.p-reservation-tabs__lead-item.is-east .p-reservation-tabs__lead-title {
  color: #00987D;
}

.p-reservation-tabs__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.p-reservation-tabs__tab {
  appearance: none;
  border-bottom: none;
  border: none;
  background: #f3f3f3;
  padding: 10px 10px 13px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  cursor: pointer;
  transition: opacity .25s ease, background .25s ease, color .25s ease;
}

.p-reservation-tabs__tab-main {
  display: block;
}

.p-reservation-tabs__tab-sub {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
}

.p-reservation-tabs__tab:hover {
  opacity: 0.85;
}

.p-reservation-tabs__tab.is-west {
  background: rgba(237, 115, 0, .1);
  color: #ED7300;
}

.p-reservation-tabs__tab.is-south {
  background: rgba(222, 0, 120, .1);
  color: #DE0078;
}

.p-reservation-tabs__tab.is-east {
  background: rgba(0, 152, 125, .1);
  color: #00987D;

}

.p-reservation-tabs__tab.is-active {
  color: #fff;
  border-color: transparent;
}

.p-reservation-tabs__content {
  padding: 0;
  height: 267px;
  overflow: hidden;
  border: 1px solid #ED7300;
}

.p-reservation-tabs__content.is-west {
  border-color: #ED7300;
}

.p-reservation-tabs__content.is-south {
  border-color: #DE0078;
}

.p-reservation-tabs__content.is-east {
  border-color: #00987D;
}
.p-reservation-tabs__panel {
  display: none;
  padding: 30px;
  height: 285px;
}

.p-reservation-tabs__panel.is-active {
  display: block;
}

.p-reservation-tabs__panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media screen and (max-width: 991px) {
  .p-reservation-tabs__inner {
    padding: 0 0;
  }

  .p-reservation-tabs__tab {
    font-size: 1rem;
    padding: 18px 12px 16px;
  }

  .p-reservation-tabs__panel {
    padding: 20px;
  }
}

/* 0316修正 */
@media screen and (max-width: 767px) {
	  .p-reservation-tabs__dot {
    margin-top: 4px;
  }
	.p-reservation__inner {
		padding-block: 3.125rem;
	}
	.p-reservation-tabs__lead {
		gap: 10px 12px;
		margin-bottom: 20px;
	}
  .p-reservation-tabs {
    padding-top: 30px;
  }

  .p-reservation-tabs__tab {
    font-size: 0.625rem;
    padding: 10px 1px 10px;
  }

  .p-reservation-tabs__content {
    height: 200px;
  }

  .p-reservation-tabs__panel {
    padding: 10px;
    height: 250px;
  }

  .p-reservation-tabs__panel.is-active {
    display: block;
  }

  .p-reservation-tabs__lead-title {
    font-size: 0.75rem;
  }

  .p-reservation-tabs__lead-old {
    font-size: 0.6875rem;
  }

  .p-reservation-tabs__lead-text {
    font-size: 0.75rem;
  }
.p-reservation-tabs__tab-sub {
  font-size: 0.4375rem;
}
}




/* -----------------------------------------------------------------------------
----------------注意文言-------------------------------------------------- */
.p-reservation-notes {
  margin-top: 24px;
  padding: 0 20px;
  width: min(100%, 900px);
  margin-left: auto;
  margin-right: auto;
}

.p-reservation-notes__text {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  color: #333;
}

/* -----------------------------------------------------------------------------
----------------相談タブ（インプラント・矯正）--------------------------------- */
.p-consultation-tabs {
  margin-top: 40px;
  width: min(100%, 900px);
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.p-consultation-tabs__inner {
  width: 100%;
}

.p-consultation-tabs__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.p-consultation-tabs__tab {
  appearance: none;
  border: none;
  padding: 18px 10px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  cursor: pointer;
  transition: opacity .25s ease, background .25s ease, color .25s ease;
}

.p-consultation-tabs__tab:hover {
  opacity: 0.85;
}

/* インプラント相談：青 */
.p-consultation-tabs__tab.is-implant {
  background: rgba(0, 80, 162, .1);
  color: #0050A2;
}

.p-consultation-tabs__tab.is-implant.is-active {
  background: #0050A2;
  color: #fff;
}

/* 矯正相談：オレンジ */
.p-consultation-tabs__tab.is-ortho {
  background: #FEF8F2;
  color: #ED7300;
}

.p-consultation-tabs__tab.is-ortho.is-active {
  background: #ED7300;
  color: #fff;
}

/* コンテンツ枠 */
.p-consultation-tabs__content {
  padding: 0;
  height: 267px;
  overflow: hidden;
  border: 1px solid #0050A2;
}

.p-consultation-tabs__content.is-implant {
  border-color: #0050A2;
}

.p-consultation-tabs__content.is-ortho {
  border-color: #ED7300;
}

.p-consultation-tabs__panel {
  display: none;
  padding: 30px;
  height: 285px;
}

.p-consultation-tabs__panel.is-active {
  display: block;
}

.p-consultation-tabs__panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media screen and (max-width: 991px) {
  .p-consultation-tabs {
    padding: 0;
  }

  .p-consultation-tabs__tab {
    font-size: 1rem;
    padding: 18px 12px 16px;
  }

  .p-consultation-tabs__panel {
    padding: 20px;
  }
}

@media screen and (max-width: 767px) {
  .p-reservation-notes {
    margin-top: 16px;
    padding: 0;
  }

  .p-reservation-notes__text {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.7;
  }

  .p-consultation-tabs {
    margin-top: 24px;
    padding: 0;
  }

  .p-consultation-tabs__tab {
    font-size: 0.75rem;
    padding: 12px 4px;
  }

  .p-consultation-tabs__content {
    height: 200px;
  }

  .p-consultation-tabs__panel {
    padding: 10px;
    height: 250px;
  }
}

/* -----------------------------------------------------------------------------
----------------コンセプト-------------------------------------------------- */
.p-concept {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.p-concept__bg {
  position: relative;
  width: 100%;
  height: 33.75rem;
  background: url("../images/p-concept-bg-image.webp") center top / cover no-repeat;
}

.p-concept__bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.10) 40.91%, rgba(255, 255, 255, 0.50) 69.02%, rgba(255, 255, 255, 0.80) 82.79%, #FFF 100%);
  pointer-events: none;
}



.p-concept__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, 68.75rem);
  margin: -3rem auto 0 auto;
  /* タイトルを写真に少しかぶせる */
}

/* 0316修正 */
@media screen and (max-width: 767px) {
 .p-concept__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 0;
  }

  .p-concept__bg::after {
background-position: center 0px;
  }

  .p-concept__inner {
    position: relative;
    z-index: 1;
    width: calc(100% - 1.5rem);
    margin-top: 0;
    padding-top: 41vw;
  }
}

.p-concept-message__inner {
  width: 100%;
  margin: 0 auto;
  padding-block: 3.75rem 6.25rem;
}

.p-concept-message__lead {
  margin: 0 0 3.75rem;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.p-concept-message__text {
  text-align: center;
}

.p-concept-message__text p {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.5;
  letter-spacing: 0.04em;
}

.p-concept-message__text p+p {
  margin-top: 0.25rem;
}

.p-concept-message__space {
  margin-top: 2.75rem !important;
}

.p-concept-message__cert {
  width: 100%;
  margin: 5rem auto 0;
  display: grid;
  grid-template-columns: 1.5fr 0.5fr 1.5fr;
  align-items: center;
  column-gap: 2rem;
  padding: 1.25rem 2.75rem;
  border: 1px solid #a9a9a9;
  border-radius: 0.625rem;
  background: #fff;
}

.p-concept-message__cert-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-concept-message__cert-item img {
  display: block;
  width: 100%;
  max-width: 18.75rem;
  height: auto;
  object-fit: contain;
}

/* 0316修正 */
@media screen and (max-width: 767px) {
  .p-concept-message__inner {
    width: calc(100% - 1.5rem);
padding-block: 1.875rem 3.125rem;
  }

  .p-concept-message__lead {
    margin-bottom: 2rem;
    font-size: 1.25rem;
    line-height: 1.7;
  }

  .p-concept-message__text p {
    font-size: 0.9375rem;
    line-height: 2;
  }

  .p-concept-message__space {
    margin-top: 2rem !important;
  }

/* 	0316修正 */
 .p-concept-message__cert {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
    padding: 1.5rem 1rem;
  }

  .p-concept-message__cert-item {
    justify-content: flex-start;
  }

  .p-concept-message__cert-item img {
    max-width: 300px;
  }

  .p-concept-message__cert-item--02 img {
    max-width: 7rem;
  }
}

/* コンセプト リンクボタン */
.p-concept-message__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 3.75rem;
}

.p-concept-message__link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  border: 1px solid #d7d7d7;
  border-radius: 0.3125rem;
  background: #fff;
  color: #333;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.p-concept-message__link-btn:hover {
  background: #f5f5f5;
  border-color: #ababab;
}

.p-concept-message__link-icon {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background: #787878;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.p-concept-message__link-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.35rem;
  height: 0.35rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-60%, -50%) rotate(45deg);
}

/* 0316修正 */
@media screen and (max-width: 767px) {
	.p-concept-message__cert {
    margin: 30px auto 0;
	grid-template-columns: 1fr;
    gap: 13px;
    padding: 20px;
	}
  .p-concept-message__links {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2.5rem;
  }

  .p-concept-message__link-btn {
    justify-content: space-between;
    padding: 0.875rem 1.25rem;
    font-size: 0.875rem;
  }
}


/* -----------------------------------------------------------------------------
----------------全ての歯科分野をこの村で-------------------------------------------------- */
.p-village {
  padding-block: 6.25rem;
  background: #FAFAFA;
}

/* 見出し */
.p-village__heading {
  margin-bottom: 3.75rem;
}

/* 説明文 */
.p-village__lead {
  margin-bottom: 3.75rem;
  color: #4a4a4a;
  text-align: center;
}

.p-village__lead p {
  margin: 0;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.04em;
}

.p-village__lead-strong {
  margin-top: 0.75rem !important;
  font-size: 1.5rem !important;
  font-weight: 400;
  line-height: 1.7 !important;
  letter-spacing: 0.04em;
}

/* 図版 */
.p-village__diagram picture {
  display: block;
  width: 100%;
}

.p-village__diagram img {
  display: block;
  width: 100%;
  height: auto;
}
.p-village__diagram {
  width: 100%;
  margin: 0 auto;
}

.p-village__diagram img {
  display: block;
  width: 100%;
  height: auto;
}

/* ボタン */
.p-village__btn-wrap {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

/* 0316修正 */
.p-village__btn {
    min-width: 14rem;
    height: 3.375rem;
    padding: 0px .75rem 0 4.25rem;
    border-radius: 0.5rem;
    background: #787878;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.p-village__btn:hover {
  background: #0050A2;
}

.p-village__btn-text {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}

.p-village__btn-icon {
  position: relative;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}

.p-village__btn-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.3125rem;
  height: 0.3125rem;
  border-top: 1px solid #7d7d7d;
  border-right: 1px solid #7d7d7d;
  transform: translate(-60%, -50%) rotate(45deg);
}

@media screen and (max-width: 767px) {
  .p-village {
    padding-block: 3.125rem;
  }

  /* 見出し */
  .p-village__heading {
    margin-bottom: 2.25rem;
  }

  /* 説明文 */
  .p-village__lead {
    margin-bottom: 2.25rem;
  }

  .p-village__lead p {
    font-size: 0.9375rem;
    line-height: 2;
  }

  .p-village__lead-strong {
    margin-top: 0.75rem !important;
    font-size: 1.125rem !important;
    font-weight: 500;
    line-height: 1.8 !important;
  }

  /* 図版 */
  .p-village__diagram {
    width: min(100%, 32.8125rem);
  }

  /* ボタン */
  .p-village__btn-wrap {
    margin-top: 2rem;
  }

/* 	0316修正 */
.p-village__btn {
width: 17.5rem;
        min-width: auto;
        height: 3.4375rem;
        min-height: auto;
        padding: 0 0.875rem 0 1.5rem;
        border-radius: 0.875rem;
        box-shadow: 0 0.375rem 1rem rgba(0, 0, 0, 0.16);
        gap: 2.875rem;
        justify-content: end;
    }
    .p-top-news .p-village__btn {
        width: 17.5rem;
        min-width: auto;
        height: 3.4375rem;
        min-height: auto;
        padding: 0 0.875rem 0 1.5rem;
        border-radius: 0.875rem;
        box-shadow: 0 0.375rem 1rem rgba(0, 0, 0, 0.16);
        gap: 3.875rem;
        justify-content: end;
    }

  .p-village__btn-text {
    font-size: 1rem;
  }

  .p-village__btn-icon {
    width: 1.5625rem;
    height: 1.5625rem;
  }

  .p-village__btn-icon::before {
    width: 0.3125rem;
    height: 0.3125rem;
    border-top: 1.5px solid #7d7d7d;
    border-right: 1.5px solid #7d7d7d;
  }
}

/* -----------------------------------------------------------------------------
----------------地域連携セクション-------------------------------------------------- */
.p-community {
  padding: 6.25rem 0;
}

.p-community__inner {
  width: min(100% - 2.5rem, 68.75rem);
  margin: 0 auto;
}

.p-community__box {
  border: 1px solid #00987D;
  border-radius: 1.25rem;
  padding: 2.3125rem 2.25rem 2.5rem;
  background: #fff;
}

.p-community__block+.p-community__block {
  margin-top: 2.375rem;
}

.p-community__title {
  margin: 0 0 1.5rem;
  padding: 1.1875rem 1rem;
  background: #00987D;
  border-radius: 0.625rem;
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.p-community__text {
  color: #333;
}

.p-community__text p {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
}

.p-community__text p+p {
  margin-top: 1.75rem;
}

.p-community__logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.1875rem;
  margin-top: 1.25rem;
}

.p-community__logo {
  height: 6.25rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid #d9d9d9;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.p-community__logo:first-child img {
  max-width: 240px;
}

.p-community__logo:last-child img {
  max-width: 24.375rem;
}

@media screen and (max-width: 767px) {
  .p-community {
    padding: 3.75rem 0;
  }

  .p-community__inner {
    width: calc(100% - 1.5rem);
  }

  .p-community__box {
    border-radius: 1.25rem;
    padding: 1.25rem 0.9375rem 1.75rem;
  }

  .p-community__block+.p-community__block {
    margin-top: 1.875rem;
  }

  .p-community__title {
    margin-bottom: 1rem;
    padding: 0.875rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }

  .p-community__text p {
    font-size: 0.875rem;
    line-height: 2;
    letter-spacing: 0.04em;
  }

  .p-community__text p+p {
    margin-top: 1.5rem;
  }

  .p-community__logos {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 0.875rem;
  }

  .p-community__logo {
    height: 65px;
    padding: 0.875rem 1rem;
  }

  .p-community__logo:first-child img {
    max-width: 155px;
  }

  .p-community__logo:last-child img {
    max-width: 245px;
  }
}


/* -----------------------------------------------------------------------------
----------------お知らせ-------------------------------------------------- */
.p-top-news__panels__bg {
  width: 100%;
  background: #FCFCFC;
  padding: 80px 0;
}

.p-top-news__inner .p-archive__contents {
  width: 100%;
  max-width: 73.75rem;
  background: #FCFCFC;
  padding: 0 2.5rem;
  margin: 0 auto;
}

/* お知らせ */
.p-archive__card--news .p-archive__card-category {
  background: #00987D;
}

/* 活動報告 */
.p-archive__card--blog .p-archive__card-category {
  background: #E10078;
}

/* 症例 */
.p-archive__card--sample .p-archive__card-category {
  background: #0050A2;
}

/* コラム */
.p-archive__card--column .p-archive__card-category {
  background: #ED7300;
}

/* 0316修正 */
@media screen and (max-width: 767px) {
	.p-top-news__panels__bg {
    padding: 40px 0;
}
}

/* -----------------------------------------------------------------------------
----------------施設基準・口コミ案内セクション----------------------------------- */
.p-standard {
  padding: 6.25rem 0;
}

.p-standard__inner {
  width: min(100% - 2.5rem, 75rem);
  margin: 0 auto;
}

/* 上部の小リンク */
.p-standard__toplink {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 4.75rem;
}

.p-standard__toplink-anchor {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}

.p-standard__toplink-text {
  color: #787878;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-decoration-thickness: 0.0625rem;
  text-underline-offset: 0.18em;
}

.p-standard__toplink-icon,
.p-standard__bottomlink-icon {
  position: relative;
  width: 1.4375rem;
  height: 1.4375rem;
  border-radius: 50%;
  background: #7d7d7d;
  flex-shrink: 0;
}

.p-standard__toplink-icon::before,
.p-standard__bottomlink-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.3125rem;
  height: 0.3125rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translate(-60%, -50%) rotate(45deg);
}

/* カード全体 */
.p-standard__card {
  border: 1px solid #a9a9a9;
  border-radius: 1.25rem;
  background: #fff;
  padding: 2.75rem 1.75rem 1.5rem 1.75rem;
}

.p-standard__card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.3s ease;
}

.p-standard__card-link:hover {
  background: #f5f5f5;
}

.p-standard__content {
  display: grid;
  grid-template-columns: 1fr 25.625rem;
  gap: 2.5rem;
  align-items: center;
}

.p-standard__body {
  padding: 0 0 0 0.75rem;
}

.p-standard__title {
  margin: 0 0 1.625rem;
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
  transition: opacity 0.3s ease;
}

.p-standard__text p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.1;
  letter-spacing: 0.04em;
}

.p-standard__image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-standard__image img {
  display: block;
  width: 100%;
  max-width: 22.5rem;
  height: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.p-standard__bottomlink {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.25rem;
  padding-right: 0.5rem;
}

.p-standard__bottomlink-anchor {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}

.p-standard__bottomlink-text {
  color: #787878;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-decoration-thickness: 0.0625rem;
  text-underline-offset: 0.18em;
}

.p-standard__card-link:hover .p-standard__title,
.p-standard__card-link:hover .p-standard__image img,
.p-standard__card-link:hover .p-standard__bottomlink-anchor {
  opacity: 0.8;
}


@media screen and (max-width: 767px) {
  .p-standard {
    padding: 3.75rem 0;
  }

  .p-standard__inner {
    width: calc(100% - 1.5rem);
  }

  /* 上部リンク */
  .p-standard__toplink {
    justify-content: flex-end;
    margin-bottom: 1.75rem;
  }

  .p-standard__toplink-anchor {
    gap: 0.5rem;
  }

  .p-standard__toplink-text {
    font-size: 1rem;
    line-height: 1.5;
    text-underline-offset: 0.14em;
  }

  .p-standard__toplink-icon,
  .p-standard__bottomlink-icon {
    width: 1.5625rem;
    height: 1.5625rem;
  }

  .p-standard__toplink-icon::before,
  .p-standard__bottomlink-icon::before {
    width: 0.3125rem;
    height: 0.3125rem;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }

  /* カード */
  .p-standard__card {
    border-radius: 1rem;
    padding: 1.25rem 1rem 1rem;
  }

  .p-standard__content {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .p-standard__image {
    order: 1;
    margin-bottom: 1.5rem;
  }

  .p-standard__image img {
    max-width: 16.875rem;
    margin: 0 auto;
  }

  .p-standard__body {
    order: 2;
    padding: 0;
  }

  .p-standard__title {
    margin: 0 0 1rem;
    font-size: 1rem;
    line-height: 1.5;
  }

  .p-standard__text p {
    font-size: 0.9375rem;
    line-height: 2;
  }

  /* 下部リンク */
  .p-standard__bottomlink {
    justify-content: flex-end;
    margin-top: 1rem;
    padding-right: 0;
  }

  .p-standard__bottomlink-anchor {
    gap: 0.5rem;
  }

  .p-standard__bottomlink-text {
    font-size: 1rem;
    line-height: 1.5;
    text-underline-offset: 0.14em;
  }
}


/* -----------------------------------------------------------------------------
----------------TOPICS---------------------------------------------------------- */
.p-topics {
  padding: 6.25rem 0;
  background: #fafafa;
  overflow: hidden;
}

.p-topics__inner {
  width: min(100% - 2.5rem, 100%);
  margin: 0 auto;
}

/* スライダー全体 */
.p-topics__slider {
  position: relative;
  width: min(100%, 83.75rem);
  /* 1340px */
  margin: 3.75rem auto 0;
  padding-inline: 3.625rem;
  /* 左右ボタン分 */
  box-sizing: border-box;
}

/* 3枚目が少し切れるようにする */
.p-topics__viewport {
 width: min(100%, 68.75rem); /* 1100px */
  margin: 0 auto;
  overflow: hidden;
}

.p-topics__track {
  display: flex;
  gap: 2.25rem;
  padding: 0;
  margin: 0;
  list-style: none;
  transition: transform 0.4s ease;
  will-change: transform;
}

/* 3等分をやめて固定寄りにする */
.p-topics__slide {
  flex: 0 0 23.75rem; /* 380px */
  min-width: 23.75rem;
}

/* カード */
.p-topics-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 31.25rem; /* 500px */
  border-radius: 1.125rem;
  text-decoration: none;
  overflow: hidden;
  background: #fff;
  border: 1px solid transparent;
}

.p-topics-card.is-pink {
  border-color: #E10078;
}

.p-topics-card.is-green {
  border-color: #00987D;
}

.p-topics-card.is-blue {
  border-color: #0050A2;
}

.p-topics-card.is-orange {
  border-color: #ED7300;
}

.p-topics-card__label {
  display: inline-flex;
  align-items: center;
  min-height: 3.1875rem;
  padding: 0.75rem 1.375rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  border-bottom-right-radius: 1rem;
    position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.p-topics-card.is-pink .p-topics-card__label {
  background: #E10078;
}

.p-topics-card.is-green .p-topics-card__label {
  background: #00987D;
}

.p-topics-card.is-blue .p-topics-card__label {
  background: #0050A2;
}

.p-topics-card.is-orange .p-topics-card__label {
  background: #ED7300;
}

.p-topics-card__image {
  flex: 1;
  min-height: 0;
  background: #f3f3f3;
  width: 100%;
  overflow: hidden;
}

.p-topics-card__image img {
  display: block;
  width: 100%;
  object-fit: contain;
  object-position: center center;
  background: #f3f3f3;
}

.p-topics-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5rem;
  padding: 1.125rem 1.375rem;
}

.p-topics-card.is-pink .p-topics-card__bottom {
  background: #E10078;
}

.p-topics-card.is-green .p-topics-card__bottom {
  background: #00987D;
}

.p-topics-card.is-blue .p-topics-card__bottom {
  background: #0050A2;
}

.p-topics-card.is-orange .p-topics-card__bottom {
  background: #ED7300;
}

.p-topics-card__title {
  margin: 0;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.p-topics-card__icon {
  position: relative;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}

.p-topics-card__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.375rem;
  height: 0.375rem;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: translate(-60%, -50%) rotate(45deg);
}

.p-topics-card.is-pink .p-topics-card__icon::before {
  color: #E10078;
}

.p-topics-card.is-green .p-topics-card__icon::before {
  color: #00987D;
}

.p-topics-card.is-blue .p-topics-card__icon::before {
  color: #0050A2;
}

.p-topics-card.is-orange .p-topics-card__icon::before {
  color: #ED7300;
}

/* ナビ */
.p-topics__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 3.625rem;
  height: 3.625rem;
  border-radius: 50%;
  border: 1px solid #9a9a9a;
  background: #fafafa;
  transform: translateY(-50%);
  cursor: pointer;
}

.p-topics__nav--prev {
  left: 0;
}

.p-topics__nav--next {
  right: 0;
}

.p-topics__nav span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.75rem;
  height: 0.75rem;
  border-top: 1px solid #9a9a9a;
  border-right: 1px solid #9a9a9a;
}

.p-topics__nav--prev span {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.p-topics__nav--next span {
  transform: translate(-65%, -50%) rotate(45deg);
}

/* hover */
.p-topics-card:hover {
  opacity: 0.9;
}

.p-topics__nav:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .p-topics {
    padding: 3.75rem 0;
  }

  .p-topics__inner {
    width: calc(100% - 1.5rem);
  }

  .p-topics__slider {
    width: 100%;
    margin: 2rem auto 0;
    padding-inline: 0;
  }

  .p-topics__viewport {
   width: 100%;
    margin: 0 auto;
    overflow: hidden;
  }

  .p-topics__track {
    gap: 1.875rem;
  }

  .p-topics__slide {
    flex: 0 0 240px;
    min-width: 240px;
  }

  .p-topics-card {
    border-radius: 1rem;
    height: 306px;
  }

  .p-topics-card__label {
    min-height: 2.5rem;
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem;
    border-bottom-right-radius: 0.875rem;
  }

  .p-topics-card__image {
    aspect-ratio: 275 / 307;
  }

  .p-topics-card__bottom {
    min-height: 66px;
    padding: 0.875rem 1rem;
  }

  .p-topics-card__title {
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
  }

  .p-topics-card__icon {
    width: 1.75rem;
    height: 1.75rem;
  }

  .p-topics-card__icon::before {
    width: 0.3125rem;
    height: 0.3125rem;
  }

  .p-topics__nav {
    width: 1.875rem;
    height: 1.875rem;
    background: #fff;
    top: 54%;
  }

  .p-topics__nav--prev {
    left: 0.5rem;
  }

  .p-topics__nav--next {
    right: 0.5rem;
  }

  .p-topics__nav span {
    width: 0.5rem;
    height: 0.5rem;
  }

}

/* -----------------------------------------------------------------------------
----------------6つの特徴------------------------------------------------------ */
.p-reasons {
  padding: 0;
}

.p-reasons__inner {
  width: 100%;
  margin: 0 auto;
}

.p-reasons__hero {
  margin-bottom: 2.5rem;
}

.p-reasons__hero img {
  display: block;
  width: 100%;
  min-height: 380px;
  object-fit: cover;
}

.p-reasons__intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.75rem;
  /* 60px */
  max-width: 68.75rem;
  /* 1100px */
  margin: 0 auto;
  padding: 0 0 2.5rem;
  border-bottom: 1px solid #d6d6d6;
}

.p-reasons__intro-left {
  flex: 0 0 28rem;
  /* 448px */
  width: 28rem;
  max-width: 28rem;
}

.p-reasons__intro-right {
  flex: 0 0 36.25rem;
  /* 580px */
  width: 36.25rem;
  max-width: 36.25rem;
}

/* 左テキスト */
.p-information-v2__text-left {
  text-align: center;
}

.p-information-v2__text-left p {
  margin: 0;
  color: #333;
  font-weight: 400;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.p-information-v2__text1 {
  font-size: 2rem;
  line-height: 1.45;
}

.p-information-v2__text1 em {
  display: inline-block;
  color: #00987D;
  font-size: 3.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  padding: 0 0.25rem;
  background: linear-gradient(transparent 72%, rgba(92, 182, 163, 0.12) 72%);
}

.p-information-v2__text1 span {
  display: inline-block;
  margin: 0 0.5rem;
  font-size: 2.5rem;
  line-height: 1;
  vertical-align: middle;
}

.p-information-v2__text2 {
  margin-top: 0.75rem !important;
  font-size: 2rem;
  line-height: 1.45;
}

.p-information-v2__text3 {
  margin-top: 0.75rem !important;
  font-size: 2rem;
  line-height: 1.2;
}

.p-information-v2__text3 em {
  display: inline-block;
  color: #00987D;
  font-size: 5.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  vertical-align: baseline;
  margin-right: 0.25rem;
  background: linear-gradient(transparent 72%, rgba(92, 182, 163, 0.12) 72%);
}

.p-information-v2__text3 span {
  display: inline-block;
  font-size: 4rem;
  line-height: 1;
  margin-left: 0.25rem;
}

.p-reasons__intro-right p {
  margin: 0;
  font-size: 1rem;
  line-height: 2.5;
  letter-spacing: 0.04em;
}

/* 0316修正 */
@media screen and (max-width: 900px) {
  .p-reasons__intro {
    flex-direction: column;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem 1.875rem;
    border-bottom: 1px solid #d6d6d6;
    gap: 1.5rem
  }

  .p-reasons__hero img {
    min-height: 200px;
  }

  .p-reasons__intro-left {
    width: 100%;
    max-width: 100%;
    flex: none;
    margin-bottom: 1.5rem;
  }

  .p-reasons__intro-right {
    width: 100%;
    max-width: 100%;
    flex: none;
  }

  /* 左テキスト */
  .p-information-v2__text-left {
    text-align: center;

  }

  .p-information-v2__text-left p {
    white-space: normal;
    letter-spacing: 0.04em;
  }

  .p-information-v2__text1 {
    font-size: 1.25rem;
    line-height: 1.45;
  }

  .p-information-v2__text1 em {
    font-size: 2rem;
    padding: 0 0.125rem;
  }

  .p-information-v2__text1 span {
    margin: 0 0.25rem;
    font-size: 2rem;
  }

  .p-information-v2__text2 {
    margin-top: 0.5rem !important;
    font-size: 1.5rem;
    line-height: 1.45;
  }

  .p-information-v2__text3 {
    margin-top: 0.5rem !important;
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .p-information-v2__text3 em {
    font-size: 4rem;
    margin-right: 0.125rem;
  }

  .p-information-v2__text3 span {
    font-size: 3rem;
    margin-left: 0.125rem;
  }

  .p-reasons__intro-right p {
    font-size: 0.9375rem;
    line-height: 2;
    letter-spacing: 0.04em;
  }
}

/* 6つの丸 */
.p-information-v2__icon-area {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
  padding: 0;
  list-style: none;
}

.p-information-v2__icon {
  align-items: center;
  border: 1px solid;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  height: 11.25rem;
  justify-content: center;
  position: relative;
  text-align: center;
  width: 11.25rem;
  box-sizing: border-box;
}

.p-information-v2__icon:nth-child(n+2) {
  margin-left: -0.5rem;
}

.p-information-v2__icon.is-green {
  border-color: #00987D;
  color: #00987D;
}

.p-information-v2__icon.is-blue {
  border-color: #0050A2;
  color: #0050A2;
}

.p-information-v2__icon span {
  font-family: "Helvetica Neue", "Roboto", sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.p-information-v2__icon p {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.55;
}

@media screen and (max-width: 767px) {
  .p-information-v2__icon-area {
    flex-wrap: wrap;
    margin-top: 1.25rem;
  }

  .p-information-v2__icon {
    width: 7.8125rem;
    height: 7.8125rem;
    gap: 0.125rem;
    padding: 0.5rem;
  }

  .p-information-v2__icon:nth-child(n+2) {
    margin-left: -0.625rem;
  }

  .p-information-v2__icon:nth-child(n+4) {
    margin-top: -0.625rem;
  }

  .p-information-v2__icon span {
    font-size: 0.625rem;
    line-height: 1.2;
  }

  .p-information-v2__icon p {
    font-size: 0.75rem;
    line-height: 1.35;
  }
}

/* 6ブロック */
.p-reasons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 100px;
}

.p-reasons-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}

.p-reasons-card__label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  min-width: 5rem;
  padding: 0.5rem 0.875rem;
  background: #fff;
  border-bottom-right-radius: 0.5rem;
  font-size: 1rem;
  line-height: 1.2;
}

.p-reasons-card.is-green .p-reasons-card__label {
  color: #00987D;
}

.p-reasons-card.is-blue .p-reasons-card__label {
  color: #7ea2e5;
}

.p-reasons-card__bg,
.p-reasons-card__overlay {
  position: absolute;
  inset: 0;
}

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

.p-reasons-card__content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 3.5rem 2rem 2rem;
  color: #fff;
}

.p-reasons-card__title {
  margin: 0 0 1.5rem;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.p-reasons-card__text {
  margin: 0;
  font-size: 1rem;
  line-height: 2.1;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 767px) {
  .p-reasons__grid {
    grid-template-columns: 1fr;
    margin-top: 3.75rem;
  }

  .p-reasons-card {
    min-height: 20rem;
  }

  .p-reasons-card__label {
    min-width: auto;
    padding: 0.375rem 0.75rem;
    border-bottom-right-radius: 0.375rem;
    font-size: 1rem;
    line-height: 1.2;
  }

  .p-reasons-card__content {
    padding: 3.125rem 1.5rem 1.75rem;
  }

  .p-reasons-card__title {
    margin: 0 0 1rem;
    font-size: 1.125rem;
    line-height: 1.5;
    font-weight: 500;
  }

  .p-reasons-card__text {
    font-size: 0.875rem;
    line-height: 2;
  }
}






































/* TOPに戻るボタン */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 1.25rem;
  z-index: 999;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 0;
  width: auto;
  height: auto;
  padding: 0;
  background: none;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(10px);
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top__text {
  color: #787878;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: #FFF;
  paint-order: stroke fill;
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 1.6px;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  white-space: nowrap;
}

.back-to-top__line {
  display: block;
  width: 1px;
  height: 4.5rem;
  background: #787878;
  box-shadow: -1px 0 0 #fff, 1px 0 0 #fff;
  position: relative;
  flex-shrink: 0;
  margin-left: 0.5rem;
}

/* 上端の矢印（約60°の開き） */
.back-to-top__line::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1rem;
  height: 1px;
  background: #787878;
  box-shadow: 0 -1px 0 #fff, 0 1px 0 #fff;
  transform-origin: right center;
  transform: rotate(-30deg);
}

.back-to-top:hover {
  opacity: 0.6 !important;
}

@media screen and (max-width: 768px) {
  .back-to-top {
    display: none !important;
  }
}

/* ------------------------------------------------
   縦型フローティングボタン
------------------------------------------------ */
.p-floating-side {
  position: fixed;
  top: 8rem;
  right: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 3.125rem;
  height: 30.75rem;
}

.p-floating-side__item {
  padding: 0.875rem 0.5rem 1rem;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #8d8d8d;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  text-decoration: none;
  color: #7a7a7a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: opacity 0.3s ease;
}

.p-floating-side__item:hover {
  opacity: 0.8;
}

.p-floating-side__icon {
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.p-floating-side__icon img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.p-floating-side__line {
  width: 2.1875rem;
  height: 1px;
  background: #b8b8b8;
  margin: 0.3125rem 0 0.3125rem;
  flex-shrink: 0;
}

.p-floating-side__text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #7a7a7a;
}

.p-floating-side__line-text {
  display: inline-block;
}

.p-floating-side {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.p-floating-side.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* SPでは非表示例 */
@media screen and (max-width: 767px) {
  .p-floating-side {
    display: none;
  }
}

/* ---------------------------------
----------下固定ボタン-------- */
.p-fixed-bottom {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  transform: none;
  z-index: 300;
  width: 100%;
  height: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.625rem;
  box-sizing: border-box;
  background: #fff;
}

.p-fixed-bottom__item {
  height: 3.125rem;
  padding: 0.375rem 0.25rem 0.3125rem;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #8d8d8d;
  border-radius: 5px;
  text-decoration: none;
  color: #7a7a7a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  width: 100%;
  margin-top: 5px;
}

.p-fixed-bottom__item:hover {
  opacity: 0.85;
}

.p-fixed-bottom__icon {
  width: 1.25rem;
  /* 20px */
  height: 1.25rem;
  /* 20px */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.p-fixed-bottom__line {
  width: 2rem;
  height: 1px;
  background: #8d8d8d;
  margin: 0.25rem 0 0.3125rem;
  flex-shrink: 0;
}

.p-fixed-bottom__text {
  font-size: 0.625rem;
  line-height: 1.3;
  color: #7a7a7a;
  text-align: center;
  letter-spacing: 0;
  white-space: nowrap;
}

/* PCでは非表示 */
@media screen and (min-width: 769px) {
  .p-fixed-bottom {
    display: none;
  }
}

/* ------------------------------------------------
---------------- SERVICE --------------------------
------------------------------------------------ */
.p-service {
  position: relative;
  padding: 7.5rem 0 6.25rem;
  background: #fafafa;
  overflow: hidden;
}

.p-service__inner {
  width: min(100% - 2.5rem, 90rem);
  margin: 0 auto;
  position: relative;
}
/* リード文 */
.p-service__lead {
  margin-top: 3rem;
  text-align: center;
}

.p-service__lead p {
  margin: 0;
  color: #555;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 2.1;
  letter-spacing: 0.02em;
}

.p-service__lead p + p {
  margin-top: 0.5rem;
}

/* コンテンツ */
.p-service__content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1.25rem;
  margin-top: 4.5rem;
}

/* 画像側 */
.p-service__image-wrap {
  position: relative;
  flex: 0 0 34.125rem;
  max-width: 34.125rem;
  padding-top: 0.5625rem;
}

.p-service__cross {
  position: absolute;
  top: 0;
  right: -2.0625rem;
  width: 23.0625rem;
  height: 1px;
  background: #7fb6ff;
}

.p-service__cross::before,
.p-service__cross::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22.625rem;
  width: 1.75rem;
  height: 1px;
  background: #7fb6ff;
  transform-origin: center;
}

.p-service__cross::before {
  transform: translateY(-50%) rotate(45deg);
}

.p-service__cross::after {
  transform: translateY(-50%) rotate(-45deg);
}

.p-service__image {
  position: relative;
  z-index: 1;
}

.p-service__image img {
  display: block;
  width: 100%;
  height: auto;
}

/* テキスト側 */
.p-service__body {
  flex: 0 0 27.5rem;
  max-width: 27.5rem;
  padding-top: 4rem;
}

.p-service__title {
  margin: 0;
  color: #333;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.p-service__text {
  margin: 2.125rem 0 0;
  color: #555;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.02em;
}

/* ボタン */
.p-service__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  min-width: 17.5rem;
  min-height: 3.875rem;
  margin-top: 3rem;
  padding: 0.75rem 1.5rem 0.75rem 2rem;
  border-radius: 0.625rem;
  background: #8e8e8e;
  box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.15);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.p-service__btn:hover {
  opacity: 0.85;
}

.p-service__btn-text {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
}

.p-service__btn-icon {
  position: relative;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}

.p-service__btn-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.375rem;
  height: 0.375rem;
  border-top: 1.5px solid #8e8e8e;
  border-right: 1.5px solid #8e8e8e;
  transform: translate(-60%, -50%) rotate(45deg);
}

/* 背景英字 */
.p-service::after {
  content: "LIFE MEDICAL GROUP";
  position: absolute;
  left: 50%;
  bottom: -1.2rem;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 7rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

@media screen and (max-width: 767px) {
  .p-service {
    padding: 3.75rem 0 3.125rem;
  }

  .p-service__inner {
    width: calc(100% - 1.5rem);
  }

  .p-service__lead {
    margin-top: 1.5rem;
  }

  .p-service__lead p {
    font-size: 0.9375rem;
    line-height: 1.8;
  }

  .p-service__content {
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
  }

  .p-service__image-wrap {
    flex: none;
    max-width: 100%;
  }

  .p-service__cross {
    display: none;
  }

  .p-service__body {
    flex: none;
    max-width: 100%;
    padding-top: 0;
  }

  .p-service__title {
    font-size: 1.5rem;
  }

  .p-service__text {
    font-size: 1rem;
    line-height: 1.8;
  }

  .p-service__btn {
    width: 100%;
    justify-content: center;
  }

  .p-service__btn-text {
    font-size: 1.125rem;
  }

  .p-service::after {
    font-size: 3rem;
    bottom: -0.5rem;
  }
}


/* ------------------------------------------------
   SEARCH（治療を探す）
   ------------------------------------------------ */
.p-search {
  padding: 6.25rem 0;
  background: #fff;
}

.p-search__inner {
  width: min(100% - 2.5rem, 68.75rem);
  margin: 0 auto;
}

/* タブ */
.p-search__tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 3rem;
}

.p-search__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 15.625rem;
  padding: 1.125rem 2.5rem;
  border: none;
  background: #e1f0ed;
  color: #00987d;
  font-size: 1.25rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.p-search__tab:first-child {
  border-radius: 0.3125rem 0 0 0.3125rem;
}

.p-search__tab:last-child {
  border-radius: 0 0.3125rem 0.3125rem 0;
}

.p-search__tab.is-active {
  background: #0050a2;
  color: #fff;
}

/* パネル */
.p-search__panel {
  display: none;
  margin-top: 0;
  padding: 2.5rem;
  background: #f2f6fa;
  border-radius: 0 0 0.625rem 0.625rem;
}

.p-search__panel.is-active {
  display: block;
}

/* カテゴリ */
.p-search__category {
  margin-top: 2rem;
}

.p-search__category:first-child {
  margin-top: 0;
}

.p-search__category-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #333;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #00987d;
  margin-bottom: 1.5rem;
}

/* グリッド */
.p-search__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

/* カード */
.p-search__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  aspect-ratio: 1 / 1;
  padding: 1.5rem 0.75rem;
  background: #fff;
  border-radius: 0.625rem;
  text-decoration: none;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.p-search__card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.p-search__card-badge {
  position: absolute;
  top: -0.5rem;
  left: 0.5rem;
  padding: 0.125rem 0.5rem;
  border-radius: 0.1875rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
}

.p-search__card-badge.is-insurance {
  background: #ED7300;
}

.p-search__card-badge.is-private {
  background: #DE0078;
}

.p-search__card-icon {
  font-size: 2rem;
  color: #787878;
  line-height: 1;
}

.p-search__card-label {
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  color: #333;
}

/* ボタン */
.p-search__buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.p-search__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 2rem;
  background: #787878;
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.3s ease;
}

.p-search__btn:hover {
  opacity: 0.85;
}

.p-search__btn .p-search__btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5625rem;
  height: 1.5625rem;
  border-radius: 50%;
  background: #fff;
}

.p-search__btn.is-gray {
  background: #787878;
}

.p-search__btn.is-dark {
  background: #787878;
}

@media screen and (max-width: 767px) {
  .p-search {
    padding: 3.75rem 0;
  }

  .p-search__inner {
    width: calc(100% - 1.5rem);
  }

  .p-search__tabs {
    margin-top: 2rem;
  }

  .p-search__tab {
    flex: 1;
    min-width: 0;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
  }

  .p-search__panel {
    padding: 1.25rem;
    margin-top: 1.25rem;
  }

  .p-search__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem;
  }

  .p-search__card {
    padding: 1rem 0.5rem;
    gap: 0.5rem;
  }

  .p-search__card-icon {
    font-size: 1.5rem;
  }

  .p-search__card-label {
    font-size: 0.8125rem;
  }

  .p-search__buttons {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .p-search__btn {
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }
}


/* ------------------------------------------------
   特化診療
   ------------------------------------------------ */
.p-specialty {
  background: #fff;
  overflow: hidden;
}

.p-specialty__inner {
  width: 100%;
}

/* ヒーロー画像 */
.p-specialty__hero {
  width: 100%;
  overflow: hidden;
}

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

/* 3つの円 + キャッチ */
.p-specialty__intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  max-width: 75rem;
  margin: -4rem auto 0;
  padding: 0 2.5rem 5rem;
  position: relative;
  z-index: 1;
}

.p-specialty__circles {
  display: grid;
  grid-template-columns: repeat(2, 9rem);
  grid-template-rows: repeat(2, 9rem);
  gap: 0.5rem;
}

.p-specialty__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  text-align: center;
}

.p-specialty__circle span {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}

.p-specialty__circle.is-blue {
  background: #0050a2;
}

.p-specialty__circle.is-green {
  background: #00987d;
}

.p-specialty__circle.is-orange {
  background: #ed7300;
}

.p-specialty__circle.is-white {
  background: #fff;
  border: 1px solid #d7d7d7;
}

.p-specialty__circle.is-white img {
  width: 5rem;
  height: auto;
}

/* キャッチテキスト */
.p-specialty__catch {
  text-align: left;
}

.p-specialty__catch p {
  margin: 0;
  color: #333;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.p-specialty__catch-text1 {
  font-size: 2rem;
  line-height: 1.45;
}

.p-specialty__catch-text1 em {
  display: inline-block;
  color: #00987d;
  font-size: 3.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  padding: 0 0.25rem;
  background: linear-gradient(transparent 72%, rgba(92, 182, 163, 0.12) 72%);
}

.p-specialty__catch-text1 span {
  display: inline-block;
  margin: 0 0.5rem;
  font-size: 2.5rem;
  line-height: 1;
}

.p-specialty__catch-text2 {
  font-size: 2rem;
  line-height: 1.45;
  margin-top: 0.75rem !important;
}

.p-specialty__catch-text3 {
  font-size: 2rem;
  line-height: 1.2;
  margin-top: 0.75rem !important;
}

.p-specialty__catch-text3 em {
  display: inline-block;
  color: #00987d;
  font-size: 5.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  margin-right: 0.25rem;
  background: linear-gradient(transparent 72%, rgba(92, 182, 163, 0.12) 72%);
}

.p-specialty__catch-text3 span {
  display: inline-block;
  font-size: 4rem;
  line-height: 1;
  margin-left: 0.25rem;
}

/* 各治療ブロック */
.p-specialty__item {
  padding: 5rem 0 3.75rem;
}

.p-specialty__item + .p-specialty__item {
  border-top: 1px solid #e9e9e9;
}

/* ヘッダー（番号 + タイトル + テキスト + 丸画像）*/
.p-specialty__item-header {
  display: flex;
  align-items: flex-start;
  gap: 3.75rem;
  max-width: 68.75rem;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.p-specialty__item-header.is-reverse {
  flex-direction: row-reverse;
}

.p-specialty__item-header-inner {
  flex: 1;
}

.p-specialty__item-number-wrap {
  margin-bottom: 0.5rem;
}

.p-specialty__item-number {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.02em;
}

.p-specialty__item-number.is-blue {
  color: #0050a2;
}

.p-specialty__item-number.is-green {
  color: #00987d;
}

.p-specialty__item-number.is-orange {
  color: #ed7300;
}

.p-specialty__item-title {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.p-specialty__item-title.is-blue {
  color: #0050a2;
}

.p-specialty__item-title.is-green {
  color: #00987d;
}

.p-specialty__item-title.is-orange {
  color: #ed7300;
}

.p-specialty__item-subtitle {
  margin: 1.5rem 0 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  line-height: 1.6;
}

.p-specialty__item-desc {
  margin: 1.25rem 0 0;
  font-size: 1rem;
  line-height: 2;
  color: #333;
}

/* ヒーロー画像（丸形クリップ）*/
.p-specialty__item-hero-image {
  flex: 0 0 22rem;
  max-width: 22rem;
}

.p-specialty__item-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

/* サブ治療カード */
.p-specialty__sub-treatments {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 68.75rem;
  margin: 3.75rem auto 0;
  padding: 0 2.5rem;
}

.p-specialty__sub-card {
  background: #fff;
  overflow: hidden;
}

.p-specialty__sub-card-image {
  overflow: hidden;
  border-radius: 50%;
  width: 70%;
  max-width: 18rem;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
}

.p-specialty__sub-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-specialty__sub-card-body {
  padding: 1.5rem 0 0;
  text-align: center;
}

.p-specialty__sub-card-en {
  font-size: 1.5rem;
  font-weight: 200;
  color: #787878;
  margin: 0;
  line-height: 1.3;
}

.p-specialty__sub-card-title {
  margin: 0.5rem 0 0;
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  line-height: 1.3;
}

.p-specialty__sub-card-text {
  margin: 1rem 0 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  text-align: left;
}

/* CASE カード */
.p-specialty__cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 68.75rem;
  margin: 3.75rem auto 0;
  padding: 0 2.5rem;
}

.p-specialty__case-card {
  background: #f8f8f8;
  border-radius: 0.5rem;
  overflow: hidden;
  padding-bottom: 1.25rem;
}

.p-specialty__case-label {
  padding: 0.75rem 1.25rem;
  font-size: 2.5rem;
  font-weight: 300;
  color: #787878;
  line-height: 1;
}

.p-specialty__case-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

.p-specialty__case-title {
  margin: 0.75rem 1.25rem 0;
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
}

.p-specialty__case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem 0.5rem;
  margin: 0.75rem 1.25rem 0;
  font-size: 0.8125rem;
  color: #555;
  align-items: center;
}

.p-specialty__case-tag {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  background: #e9e9e9;
  border-radius: 0.1875rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #555;
}

.p-specialty__item-link {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

/* --- レスポンシブ --- */
@media screen and (max-width: 900px) {
  .p-specialty__intro {
    flex-direction: column;
    gap: 2rem;
    margin-top: -2rem;
    padding: 0 1.25rem 3rem;
  }

  .p-specialty__circles {
    grid-template-columns: repeat(2, 7rem);
    grid-template-rows: repeat(2, 7rem);
    gap: 0.375rem;
  }

  .p-specialty__circle {
    width: 7rem;
    height: 7rem;
  }

  .p-specialty__circle span {
    font-size: 0.75rem;
  }

  .p-specialty__catch {
    text-align: center;
  }

  .p-specialty__catch-text1 {
    font-size: 1.25rem;
  }

  .p-specialty__catch-text1 em {
    font-size: 2rem;
  }

  .p-specialty__catch-text1 span {
    font-size: 2rem;
    margin: 0 0.25rem;
  }

  .p-specialty__catch-text2 {
    font-size: 1.5rem;
    margin-top: 0.5rem !important;
  }

  .p-specialty__catch-text3 {
    font-size: 1.5rem;
    margin-top: 0.5rem !important;
  }

  .p-specialty__catch-text3 em {
    font-size: 4rem;
  }

  .p-specialty__catch-text3 span {
    font-size: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .p-specialty__item {
    padding: 3rem 0 2.5rem;
  }

  .p-specialty__item-header {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1.25rem;
  }

  .p-specialty__item-header.is-reverse {
    flex-direction: column;
  }

  .p-specialty__item-hero-image {
    flex: none;
    max-width: 14rem;
    margin: 0 auto;
  }

  .p-specialty__item-title {
    font-size: 1.75rem;
  }

  .p-specialty__item-subtitle {
    font-size: 1.125rem;
  }

  .p-specialty__item-number {
    font-size: 2rem;
  }

  .p-specialty__sub-treatments {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
    padding: 0 1.25rem;
  }

  .p-specialty__sub-card-image {
    width: 60%;
    max-width: 14rem;
  }

  .p-specialty__sub-card-title {
    font-size: 1.75rem;
  }

  .p-specialty__sub-card-en {
    font-size: 1.125rem;
  }

  .p-specialty__cases {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2.5rem;
    padding: 0 1.25rem;
  }

  .p-specialty__case-label {
    font-size: 1.75rem;
    padding: 0.625rem 1rem;
  }

  .p-specialty__item-link {
    margin-top: 1.5rem;
  }

  .p-specialty__item-link .p-service__btn {
    width: calc(100% - 2.5rem);
    justify-content: center;
  }
}





































/* ---------------------------------------
--------ヘッダー---------------------
--------------------------------------- */
/* ヘッダー全体 */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 55px;
    z-index: 1002;
    background: transparent;
  }
}

/* 上段 */
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  height: 80px;
  padding-right: 20px;
}

@media screen and (max-width: 768px) {
  .header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 55px;
    padding: 0;
    gap: 0;
  }
}

/* ロゴ */
.header-logo {
  background: #FFF;
  width: 192px;
  border-radius: 0 0 10px 0;
  padding-left: 15px;
  box-sizing: border-box;
  flex-shrink: 0;
}

.header-logo__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.header-logo h1 {
  font-size: 8px;
  margin: 0 0 7px;
  padding-top: 20px;
  padding-right: 20px;
  font-weight: 400;
  line-height: 1.25;
}

.header-logo img {
  display: block;
  width: 151px;
  height: 55px;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .header-logo {
    width: 105px;
    min-height: 55px;
    height: auto;
    padding-left: 8px;
    border-radius: 0 0 10px 0;
  }

  .header-logo h1 {
    font-size: 4.5px;
    margin-bottom: 5px;
    padding-top: 7px;
  }

  .header-logo img {
    width: 68.636px;
    height: 25px;
    margin-bottom: 6px;
  }
}

/* ヘッダー右側 */
.header-right {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0.625rem;
  height: 5rem;
  flex-shrink: 0;
}

/* 下層ページ：2列 */
.header-right--2col {
  gap: 0.625rem;
}

.header-tel {
  display: block;
  text-decoration: none;
  flex-shrink: 0;
}

/* ボタン本体 */
.header-tel-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  z-index: 3;
  width: 13.4375rem;
  /* 215px */
  height: 5rem;
  /* 80px */
  padding: 0 1.5rem;
  box-sizing: border-box;
  border-bottom-left-radius: 0.3125rem;
  border-bottom-right-radius: 0.3125rem;
  transition: opacity 0.3s ease;
}

.header-tel--pink .header-tel-box {
  background: #E10078;
}

.header-tel--blue .header-tel-box {
  background: #0050A2;
}

.header-tel--green .header-tel-box {
  background: #00987D;
}

.header-tel:hover .header-tel-box {
  opacity: 0.85;
}

.header-tel-box-text {
  margin: 0;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}

.header-tel-box-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.header-tel-box-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* スクロール時 */
.scroll-nav .header-logo img {
  margin-top: 0;
}

/* ---------------------------------
----------ナビゲーションヘッダー--------
--------------------------------- */
.headerNav {
  width: 100%;
  padding-block: 0;
  background: #787878;
}

/* PCではハンバーガー・オーバーレイ・スライドメニューを非表示 */
.hamburger-toggle-wrap {
  display: none;
}

.slideout-nav-bg {
  display: none;
}

.slideout-nav {
  display: none;
}

/* PC ナビゲーション */
.pc-nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  padding: 14px 0 13px;
}

.pc-nav-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1096px;
  margin: 0 auto;
  padding: 0;
  gap: 0;
  list-style: none;
}

.pc-nav-item {
  position: relative;
  flex: 1 1 auto;
  margin: 0;
  padding: 0;
  text-align: center;
  list-style: none;
}

/* 縦線 */
.pc-nav-item + .pc-nav-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 1rem;
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%);
}

.pc-nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0 0.5rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.pc-nav-link:hover {
  color: #fff;
  opacity: 0.8;
}

/* 固定用クラス */
.header-content {
  position: relative;
  opacity: 1;
  visibility: visible;
  transition: top 0.3s ease;
}

/* PCでのスクロール固定（ヘッダーメニューを追従） */
.site-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
}

@media screen and (max-width: 991px) {
  .header-tel-box {
    width: 11rem;
    height: 5rem;
    padding: 0 1rem;
  }

  .header-tel-box-text {
    font-size: 1.0625rem;
  }
}

@media screen and (max-width: 840px) {
  .header-tel--pink {
    display: none;
  }

  .header-tel-box {
    width: 13.4375rem;
    height: 5rem;
    padding: 0 1.5rem;
  }

  .header-tel-box-text {
    font-size: 1.25rem;
  }
}

/* ---------------------------------
----------モバイル版--------
--------------------------------- */
@media screen and (max-width: 768px) {
  /* SP: スクロール時もヘッダーの見た目を変えない */
  .scroll-nav .header-right {
    display: flex;
  }

  .scroll-nav h1 {
    display: block;
  }

  .scroll-nav .header-logo {
    padding-top: 0;
    display: block;
    padding-left: 8px;
  }

  .scroll-nav .header-logo img {
    margin-top: 0;
  }

  .header-right {
    display: flex;
    align-items: flex-start;
    gap: 0.3125rem;
    height: 3.4375rem;
    margin-left: auto;
    margin-right: 3.75rem;
    /* ハンバーガー分を逃がす */
    flex-shrink: 0;
  }

  .header-tel-box {
    width: 5.375rem;
    /* 86px */
    height: 3.4375rem;
    /* 55px */
    padding: 0 0.4rem;
    gap: 0.1875rem;
    border-radius: 0 0 10px 10px;
  }

  .header-tel-box-icon {
    width: 0.9375rem;
    height: 0.9375rem;
  }

  .header-tel-box-text {
    font-size: 0.75rem;
    line-height: 1.3;
    text-align: center;
    white-space: normal;
  }

  .headerNav {
    display: none;
  }

  /* ハンバーガーボタン */
  .hamburger-toggle-wrap {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1003;
    width: 3.4375rem;
    height: 3.4375rem;
    margin: 0;
    padding: 0;
  }

  .menu-toggle-button {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1004;
    width: 55px;
    height: 55px;
    padding: 0;
    border: none;
    background: #787878;
    cursor: pointer;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }

  .menu-toggle-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 25px;
    height: 23px;
    margin: 0;
  }

  .menu-toggle-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  }

  .menu-toggle-line:nth-child(1) {
    top: 0;
  }

  .menu-toggle-line:nth-child(2) {
    top: 9px;
  }

  .menu-toggle-line:nth-child(3) {
    top: 18px;
  }

  .menu-toggle-button.active .menu-toggle-line {
    background-color: #fff;
  }

  .menu-toggle-button.active .menu-toggle-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle-button.active .menu-toggle-line:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
  }

  .menu-toggle-button.active .menu-toggle-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* SPのスライドメニュー（全画面オーバーレイ） */
  .slideout-nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    padding-top: 55px;
    background: #fff;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    visibility: hidden;
  }

  .slideout-nav.active {
    visibility: visible;
    transform: translateX(0);
  }

  /* オーバーレイ背景（全画面メニューでは不要だが念のため） */
  .slideout-nav-bg {
    display: none;
  }

  .slideout-nav-bg.active {
    display: none;
  }

  /* メニュー開時のスクロール禁止 */
  body.menu-open {
    overflow: hidden;
  }

  .slideout-nav-inner {
    display: block;
    padding: 0 0 100px;
  }

  .slideout-nav-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-width: none;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .slideout-nav-item {
    flex: none;
    text-align: left;
    border-bottom: 1px solid #c8c8c8;
    padding: 0;
    margin: 0 7% 0;
  }

  .slideout-nav-item + .slideout-nav-item::before {
    display: none;
  }

  /* 通常リンク */
  .slideout-nav-item > .slideout-nav-link {
    display: block;
    padding: 18px 0;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    text-decoration: none;
  }

  .slideout-nav-link:hover {
    color: inherit !important;
    opacity: 1;
  }

  /* アコーディオン付きメニュー */
  .slideout-nav-link-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .slideout-nav-link-wrap .slideout-nav-link {
    display: block;
    flex: 1;
    padding: 18px 0;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    text-decoration: none;
  }

  /* +/- トグルボタン */
  .submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border: none;
    border-radius: 50%;
    background: #c8c8c8;
    cursor: pointer;
    position: relative;
    transition: background 0.2s;
  }

  .submenu-toggle__icon {
    display: block;
    position: relative;
    width: 14px;
    height: 14px;
  }

  .submenu-toggle__icon::before,
  .submenu-toggle__icon::after {
    content: "";
    position: absolute;
    background: #fff;
    transition: transform 0.3s ease;
  }

  /* 横線（常に表示） */
  .submenu-toggle__icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
  }

  /* 縦線（開くと回転して消える） */
  .submenu-toggle__icon::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
  }

  /* 開いた状態：縦線を回転させて−にする */
  .slideout-nav-item.open .submenu-toggle__icon::after {
    transform: translateX(-50%) rotate(90deg);
  }

  /* サブメニュー */
  .slideout-submenu {
    display: none;
    list-style: none;
    margin: 0 0 5px;
    padding: 12px 20px 16px;
    background: #f0f0f0;
    border-radius: 4px;
  }

  .slideout-nav-item.open .slideout-submenu {
    display: block;
  }

  .slideout-submenu li {
    margin: 0;
    padding: 0;
  }

  .slideout-submenu li a {
    display: block;
    padding: 8px 0;
    color: #555;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    text-decoration: none;
  }

  .slideout-submenu li a:hover {
    color: #333;
  }

  /* アコーディオンごとのサブメニュー背景色 */
  .slideout-nav-item--clinic .slideout-submenu {
    background: #F5F5F5;
    border-radius: 10px;
  }

  .slideout-nav-item--guide .slideout-submenu {
    background: #F2F9FF;
    border-radius: 10px;
  }

  .slideout-nav-item--case .slideout-submenu {
    background: #FFF7EF;
    border-radius: 10px;
  }

  .slideout-nav-item--recruit .slideout-submenu {
    background: #F2FFFC;
    border-radius: 10px;
  }
}

/* ----------------------------------------
--------------------フッター------------------ */
footer {
  width: 100%;
  margin: 0 auto;
}

.footer-top-bg {
  width: 100%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.50);
  height: 600px;
}

.footer-top-bg img {
  width: 100%;
  object-fit: cover;
}

/* ------------------------------------------------
-------------スライダー--------------------- */
/* .main-visual {
  position: relative;
  width: 100%;
  height: 47.125rem;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-top: -9.25rem;
  overflow: hidden;
  z-index: 1;
  position: relative;
}

.mv-slider,
.main-image-swiper,
.main-image-swiper .swiper-wrapper,
.main-image-swiper .swiper-slide,
.main-image-swiper picture,
.main-image-swiper img {
  width: 100%;
  height: 100%;
} */

.main-image-swiper {
  width: 100%;
  height: 100%;
}

.main-image-swiper .swiper-wrapper {
  height: 100%;
}

.main-image-swiper .swiper-slide {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.main-image-swiper picture {
  display: block;
  width: 100%;
  height: 100%;
}

.main-image-swiper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* スライダー内のテキスト */
.hero-layout {
  position: absolute;
  left: 50%;
  bottom: 2.125rem;
  /* 34px */
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0;
  width: 100%;
  max-width: 81.5rem;
  min-height: 14.9375rem;
  /* 239px */
  transform: translateX(-50%);
}

.hero-content {
  flex: 1 1 auto;
  max-width: 704px;
}

.hero-title {
  margin: 0;
  color: #fff;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.15;
  text-shadow: 0 0.125rem 0.2875rem rgba(0, 0, 0, 0.9), 0 0.25rem 0.4375rem rgba(0, 0, 0, 0.18);
}

.hero-title__nowrap {
  white-space: nowrap;
}

.hero-subtitle {
  margin: 1.25rem 0 0;
  color: #fff;
  font-size: 1.5rem;
  /* 24px */
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-shadow: 0 0.125rem 0.2875rem rgba(0, 0, 0, 0.9), 0 0.25rem 0.4375rem rgba(0, 0, 0, 0.18);
}

@media screen and (max-width: 1249px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

.feature-circles {
  display: flex;
  align-items: center;
  gap: 1rem;
  /* 16px */
  flex: 0 1 auto;
  min-width: 0;
}

.feature-circle {
  width: clamp(8rem, 10vw, 10.625rem);
  aspect-ratio: 1;
  background: #fff;
  border: 0.375rem solid #fff;
  /* 外側の白フチ */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  flex-shrink: 1;
}

@media screen and (max-width: 1249px) {
  .feature-circle {
    border-width: 0.3125rem;
  }
}

.feature-circle-inner {
  width: 100%;
  height: 100%;
  border: 1px solid;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
}

.feature-circle:nth-child(1) .feature-circle-inner {
  border-color: #005194;
}

.feature-circle:nth-child(2) .feature-circle-inner {
  border-color: #00987D;
}

.feature-circle:nth-child(3) .feature-circle-inner {
  border-color: #E10078;
}

.feature-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(5rem, 7vw, 7.5rem);
  font-weight: 500;
  line-height: 1;
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
}

.feature-circle:nth-child(1) .feature-number {
  color: #6f95da;
}

.feature-circle:nth-child(2) .feature-number {
  color: #72cabb;
}

.feature-circle:nth-child(3) .feature-number {
  color: #ef6db4;
}

.feature-text {
  position: relative;
  z-index: 1;
  text-align: center;
}

.feature-main {
  margin: 0 0 0.25rem;
  color: #333;
  font-size: clamp(1.125rem, 1.4vw, 1.5rem);
  font-weight: 700;
  line-height: 1.25;
}

.feature-main__small {
  font-size: clamp(0.75rem, 1vw, 1rem);
}

.feature-main--sm {
  font-size: clamp(0.8125rem, 1vw, 1.0625rem);
  line-height: 1.3;
}

.feature-main--sm .feature-main__small {
  font-size: clamp(0.6875rem, 0.9vw, 0.9375rem);
}

.feature-divider {
  width: clamp(4rem, 6vw, 6.25rem);
  height: 1px;
  background: #DDDDDD;
  margin: 0.5rem auto 0.375rem;
}

.feature-sub {
  font-size: clamp(0.75rem, 1vw, 1rem);
  font-weight: 700;
  line-height: 1.4;
}

.feature-circle:nth-child(1) .feature-sub {
  color: #6f95da;
}

.feature-circle:nth-child(2) .feature-sub {
  color: #72cabb;
}

.feature-circle:nth-child(3) .feature-sub {
  color: #ef6db4;
}

@media screen and (max-width: 900px) {
  .main-visual {
    width: 100vw;
    height: calc(100vh - 115px);
    /* ヘッダー55px + 追従フッター60px を引いた高さ */
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: -3.4375rem;
    /* 55px */
    overflow: hidden;
  }

  .mv-slider {
    position: relative;
    width: 100%;
    height: 100%;
  }

  /* 画像の下部に白フェードグラデーション */
  .mv-slider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 1;
    pointer-events: none;
  }

  .main-image-swiper img {
    object-fit: cover;
    object-position: center top;
  }

  .hero-layout {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 1rem;
    width: auto;
    max-width: none;
    min-height: auto;
    transform: none;
    padding: 0 1rem 1.25rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: 2rem;
    /* 32px */
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0;
    color: #fff;
    text-shadow: 0 0 15px rgba(51, 51, 51, 0.20), 0 0 6px #333;
  }

  .hero-subtitle {
    font-size: 1rem;
    /* 16px */
    font-weight: 400;
    line-height: normal;
    color: #fff;
    text-shadow: 0 0 5px #333;
  }

  .feature-circles {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
  }

  .feature-circle {
    width: 6.875rem;
    height: 6.875rem;
    flex: 0 0 6.875rem;
    background: #fff;
  }

  .feature-circle-inner {
    width: 100%;
    height: 100%;
  }

  .feature-number {
    font-size: 4.5rem;
    opacity: 0.09;
  }

  .feature-main {
    margin: 0 0 0.1875rem;
    font-size: 1rem;
    line-height: 1.2;
  }

  .feature-main__small {
    font-size: 0.6875rem;
  }

  .feature-main--sm {
    font-size: 0.75rem;
    line-height: 1.2;
  }

  .feature-main--sm .feature-main__small {
    font-size: 0.625rem;
  }

  .feature-divider {
    width: 4rem;
    margin: 0.3125rem auto 0.25rem;
  }

  .feature-sub {
    font-size: 0.75rem;
    line-height: 1.3;
  }
}

/* 小さいスマホ画面でのサークルサイズ調整 */
@media screen and (max-width: 374px) {
  .feature-circle {
    width: 5.75rem;
    height: 5.75rem;
    flex: 0 0 5.75rem;
  }

  .feature-main {
    font-size: 0.8125rem;
  }

  .feature-main--sm {
    font-size: 0.75rem;
  }

  .feature-number {
    font-size: 3.5rem;
  }

  .feature-sub {
    font-size: 0.6875rem;
  }
}

/* ===== アンカーリンクボタン ===== */
.p-anchor-links {
  background: #f8f8f8;
  padding: 20px 0;
}

.p-anchor-links__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

.p-anchor-links__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: #fff;
  border: 1px solid #2c7dba;
  border-radius: 30px;
  color: #2c7dba;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  min-width: 140px;
  text-align: center;
}

.p-anchor-links__btn:hover {
  background: #2c7dba;
  color: #fff;
}

.p-anchor-links__btn::after {
  content: "▼";
  font-size: 10px;
  margin-left: 6px;
}

/* ----------スマホ---------------------------
-------------ここから--------------------- */
@media screen and (max-width: 480px) {
  body {
    max-width: 480px;
    max-width: 100%;
    overflow-x: hidden;
  }

  .p-anchor-links__inner {
    padding: 0 10px;
  }

  .p-anchor-links__btn {
    font-size: 12px;
    padding: 8px 14px;
    min-width: 120px;
  }

/* クリニックCTA */
.clinic-cta-wrap {
  margin: 20px 0;
}

.clinic-cta {
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  border: 1px #787878 solid;
}

.clinic-cta p {
  margin-bottom: 15px;
  font-weight: bold;
}

.clinic-cta-btn {
  display: inline-block;
  padding: 12px 28px;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: .3s;
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.clinic-cta-btn:hover {
  opacity: 0.85;
}

/* ボタンカラー */
.clinic-east .clinic-cta-btn {
  background: #00987D;
}

.clinic-west .clinic-cta-btn {
  background: #ED7300;
}

.clinic-yashio .clinic-cta-btn {
  background: #DE0078;
}

@media screen and (max-width: 650px) {
  .clinic-cta-btn {
    padding: 15px;
  }
}


/* ------------------------------------------------------------------
   クリニック4院カード
------------------------------------------------------------------ */
.p-clinics {
  padding: 6.25rem 0;
  background: #f2f6fa;
}

.p-clinics__inner {
  width: min(100% - 2.5rem, 75rem);
  margin: 0 auto;
}

.p-clinics .p-section-heading {
  color: #0050a2;
}

.p-clinics .p-section-heading__en {
  color: #0050a2;
}

.p-clinics .p-section-heading::after {
  background: #0050a2;
}

.p-clinics__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3.75rem;
}

.p-clinic-card {
  background: #fff;
  border-radius: 0.625rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.p-clinic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.p-clinic-card__image {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.p-clinic-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.p-clinic-card:hover .p-clinic-card__image img {
  transform: scale(1.03);
}

.p-clinic-card__body {
  padding: 1.75rem 2rem 2rem;
}

.p-clinic-card__tag {
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
}

.p-clinic-card.is-west .p-clinic-card__tag { background: #ED7300; }
.p-clinic-card.is-south .p-clinic-card__tag { background: #DE0078; }
.p-clinic-card.is-east .p-clinic-card__tag { background: #00987D; }
.p-clinic-card.is-north .p-clinic-card__tag { background: #0050A2; }

.p-clinic-card__name {
  margin-top: 0.75rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.p-clinic-card__name span {
  font-size: 1.25rem;
  font-weight: 500;
}

.p-clinic-card.is-west .p-clinic-card__name { color: #ED7300; }
.p-clinic-card.is-south .p-clinic-card__name { color: #DE0078; }
.p-clinic-card.is-east .p-clinic-card__name { color: #00987D; }
.p-clinic-card.is-north .p-clinic-card__name { color: #0050A2; }

.p-clinic-card__official {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: #787878;
}

.p-clinic-card__catch {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.02em;
}

.p-clinic-card__text {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8;
  color: #3c3c3c;
}

.p-clinic-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #0050a2;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.p-clinic-card__link:hover {
  opacity: 0.7;
}

.p-clinic-card__arrow {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background: #787878;
  border-radius: 50%;
  position: relative;
}

.p-clinic-card__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.35rem;
  height: 0.35rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-60%, -50%) rotate(45deg);
}

@media screen and (max-width: 767px) {
  .p-clinics {
    padding: 3.75rem 0;
  }

  .p-clinics__inner {
    width: calc(100% - 1.5rem);
  }

  .p-clinics__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .p-clinic-card__body {
    padding: 1.25rem 1.25rem 1.5rem;
  }

  .p-clinic-card__name {
    font-size: 1.5rem;
  }

  .p-clinic-card__name span {
    font-size: 1rem;
  }

  .p-clinic-card__text {
    font-size: 0.8125rem;
  }
}
}

/* TOP COLUMN コラム */
.p-top-column {
  padding: 6.25rem 0;
  background: #fafafa;
}

.p-top-column__inner {
  width: min(100% - 2.5rem, 75rem);
  margin: 0 auto;
}

.p-top-column__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.125rem 2rem;
  margin-top: 3.75rem;
  padding: 0;
  list-style: none;
}

.p-top-column__card {
  min-width: 0;
}

.p-top-column__card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.p-top-column__card-image-wrap {
  flex-shrink: 0;
  width: 21.25rem;
  height: 12.5rem;
  display: block;
}

.p-top-column__card-image {
  width: 340px;
  height: 200px;
  margin: auto;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.p-top-column__card-image img {
  width: 330px;
  height: 190px;
  object-fit: cover;
  display: block;
}

.p-top-column__card-meta {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.875rem;
}

.p-top-column__card-date {
  color: #787878;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.2px;
}

.p-top-column__card-category {
  display: inline-block;
  padding: 0.1875rem 0.5625rem;
  border-radius: 9999px;
  background: #ED7300;
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.p-top-column__card-title {
  margin-top: 0.625rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #333333;
  word-break: break-word;
}

.p-top-column__button {
  margin-top: 3.75rem;
}

.p-top-column__button .p-village__btn-wrap {
  margin-top: 0;
  justify-content: center;
}

/* hover */
.p-top-column__card-link:hover .p-top-column__card-image,
.p-top-column__card-link:focus-visible .p-top-column__card-image {
  opacity: 0.85;
}

.p-top-column__card-link:hover .p-top-column__card-title,
.p-top-column__card-link:focus-visible .p-top-column__card-title {
  color: #ED7300;
}

.p-top-column__card-link:focus-visible {
  outline: none;
}

/* SP */
@media screen and (max-width: 767px) {
  .p-top-column {
    padding: 3.125rem 0;
  }

  .p-top-column__inner {
    margin: 0 auto;
  }

  .p-top-column__cards {
    grid-template-columns: 1fr;
    gap: 1.875rem;
    margin-top: 1.875rem;
  }

  .p-top-column__card {
    width: 100%;
  }

  .p-top-column__card-link {
    display: block;
    width: 100%;
  }

  .p-top-column__card-image-wrap {
    width: 100%;
    height: auto;
    box-sizing: border-box;
  }

  .p-top-column__card-image {
    width: 100%;
    height: auto;
    aspect-ratio: 340 / 220;
    display: grid;
    place-items: center;
    overflow: hidden;
  }

  .p-top-column__card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .p-top-column__card-meta {
    margin-top: 0.625rem;
    gap: 0.3125rem;
  }

  .p-top-column__card-date {
    font-size: 0.6875rem;
  }

  .p-top-column__card-category {
    font-size: 0.625rem;
    padding: 0.1875rem 0.5rem;
  }

  .p-top-column__card-title {
    margin-top: 0.5rem;
    font-size: 1rem;
    line-height: 1.5;
  }

  .p-top-column__button {
    margin-top: 1.875rem;
  }
}