@charset "UTF-8";
/* 使い方
・本体
.c-button {
  @include hover-scale(); // 初期値
  @include hover-scale(1.2); // 拡大率を上げる
  }

・子要素のimg
.p-card {
  @include hover-scale-img();
}
*/
:root {
  --base-font-family: "Noto Sans JP", sans-serif;
  --second-font-family: "Noto Serif JP", serif;
  --color-black: #333333;
  --color-white: #fff;
  --color-main: #284e3e;
  --color-sub: #7ab945;
  --color-navy: #171c61;
  --color-background: #f7f7f7;
  --color-background2: #f9f9f9;
  --color-background-green: #eafbdf;
  --color-background-anchor: #f4f9df;
  --color-background-yellow: #f7fbe9;
  --color-background-pink: #fff0fb;
  --color-accent: #ee7c00;
  --color-gray: #ccc;
  --color-border: #cdcece;
  --color-pink: #ffebfa;
  --color-red: #b50d23;
  --color-main-rgb: 40 78 62;
  --border-line:
  linear-gradient(
    to right,
    rgb(var(--color-main-rgb) / 1) 0,
    rgb(var(--color-main-rgb) / 1) 20%,
    rgb(var(--color-main-rgb) / 0.2) 20%,
    rgb(var(--color-main-rgb) / 0.2) 100%
  )
  bottom / 100% 2px no-repeat;
  --header-height: 6.875rem;
}
@media screen and (max-width: 767px) {
  :root {
    --header-height: 3.75rem;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media screen and (max-width: 1440px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 1023px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 1300px) {
  html {
    font-size: 1.2307692308vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 499px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* pcの電話番号発信対応 */
html {
  scrollbar-gutter: stable;
  scroll-padding-top: var(--header-height);
}

body {
  container-type: inline-size;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  color: var(--color-black);
  font-family: var(--base-font-family);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
  overflow-wrap: anywhere;
  /* 収まらない場合に折り返す */
  word-break: normal;
  /* 単語の分割はデフォルトに依存 */
  line-break: strict;
  /* 禁則処理を厳格に適用 */
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

html:has(body.is-fixed),
body.is-fixed {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

/* hover指定できるPCを想定したスタイル */
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}
/* hoverが使えないタッチ端末を想定した装飾 */
@media (hover: none) {
  a:active {
    opacity: 0.7;
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 0) and (-webkit-min-device-pixel-ratio: 0), screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}
button {
  color: inherit;
}

address,
em {
  font-style: normal;
}

.l-anchor-link {
  margin-top: 2.9375rem;
}

.l-breadcrumb {
  margin-top: 0.8125rem;
}

.l-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1001;
  width: 100%;
  height: var(--header-height);
}

.l-inner {
  margin-inline: auto;
  width: 100%;
  padding-inline: 3.125rem;
  max-width: 81.25rem;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 39.125rem;
    padding-inline: 0.8125rem;
  }
}

.l-margin-30 {
  margin-top: 1.875rem;
}

.l-margin-20 {
  margin-top: 1.25rem;
}

.l-margin-10 {
  margin-top: 0.625rem;
}

.l-mv {
  margin-top: var(--header-height);
}

.l-sub-content {
  margin-block: 4.25rem 5.9375rem;
}
@media screen and (max-width: 767px) {
  .l-sub-content {
    margin-block: 3.125rem 5rem;
  }
}

.l-sub-content + .l-sub-content {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .l-sub-content + .l-sub-content {
    margin-top: 5rem;
  }
}

.l-sub-content[data-type=introduction] {
  margin-block: 4.25rem 0;
}
@media screen and (max-width: 767px) {
  .l-sub-content[data-type=introduction] {
    margin-block: 3.125rem 0;
  }
}

.l-sub-content[data-type=introduction] + .l-sub-content {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .l-sub-content[data-type=introduction] + .l-sub-content {
    margin-top: 1.875rem;
  }
}

.l-top-important {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .l-top-important {
    margin-top: 2.5rem;
  }
}

.l-top-info {
  margin-top: 4.1875rem;
}
@media screen and (max-width: 767px) {
  .l-top-info {
    margin-top: 3.3125rem;
  }
}

.l-top-news {
  margin-top: 4.1875rem;
}
@media screen and (max-width: 767px) {
  .l-top-news {
    margin-top: 2.5rem;
  }
}

.l-top-recruit {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .l-top-recruit {
    margin-top: 2.8125rem;
  }
}

.l-top-specialized-center {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .l-top-specialized-center {
    margin-top: 2.5rem;
  }
}

.c-accordion::details-content {
  content-visibility: unset;
  display: block grid;
}

@media (prefers-reduced-motion: no-preference) {
  .c-accordion::details-content {
    -webkit-transition: grid-template-rows 0.3s ease-in-out;
    transition: grid-template-rows 0.3s ease-in-out;
    transition: grid-template-rows 0.3s ease-in-out, -ms-grid-rows 0.3s ease-in-out;
  }
}
.c-accordion:not([open])::details-content {
  grid-template-rows: 0fr;
}

.c-accordion[open]::details-content {
  grid-template-rows: 1fr;
}

.c-accordion + .c-accordion {
  margin-top: 1.875rem;
}

.c-accordion {
  border: 1px solid var(--color-black);
  border-radius: 0.625rem;
  padding: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-accordion {
    border-radius: 0.3125rem;
    padding: 0.625rem;
  }
}

.c-accordion__summary {
  list-style: none;
  position: relative;
  cursor: pointer;
  font-size: max(1.125rem, 10px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  padding-right: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .c-accordion__summary {
    font-size: max(1rem, 10px);
    padding-right: 1.5625rem;
  }
}

.c-accordion__summary span.c-accordion__number {
  margin-top: -0.9375rem;
}
@media screen and (max-width: 767px) {
  .c-accordion__summary span.c-accordion__number {
    margin-top: -0.125rem;
  }
}

.c-accordion__number {
  font-size: max(1.875rem, 10px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
  color: var(--color-main);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-accordion__number {
    font-size: max(1.25rem, 10px);
  }
}

.c-accordion__summary::before,
.c-accordion__summary::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 1.25rem;
  height: 1px;
  background-color: var(--color-black);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .c-accordion__summary::before,
  .c-accordion__summary::after {
    width: 0.9375rem;
  }
}

.c-accordion__summary::before {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.c-accordion[open] .c-accordion__summary::before {
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}

.c-accordion__body {
  overflow: hidden;
}

.c-accordion__wrap {
  padding-top: 1.875rem;
  padding-left: 2.8125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-accordion__wrap {
    padding-top: 1.25rem;
    padding-left: 2.1875rem;
  }
}

.c-accordion__wrap .c-accordion__number {
  content: "";
  position: absolute;
  top: 0.9375rem;
  left: -0.125rem;
  width: 1.875rem;
  height: 4.375rem;
}
@media screen and (max-width: 767px) {
  .c-accordion__wrap .c-accordion__number {
    top: 0.9375rem;
  }
}

.c-arrow-button {
  width: 100%;
  max-width: 26.25rem;
  padding: 1.25rem;
  display: inline-block;
  font-size: max(1.125rem, 10px);
  line-height: 1;
  color: var(--color-white);
  background-color: var(--color-main);
  border: 1px solid var(--color-main);
  text-align: center;
  border-radius: 1.875rem;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-arrow-button {
    max-width: 20.625rem;
    font-size: max(0.875rem, 10px);
    padding: 1.375rem;
  }
}

.c-arrow-button:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.875rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}

@media (any-hover: hover) {
  .c-arrow-button:hover {
    opacity: 1;
  }
  .c-arrow-button:hover:after {
    right: 1.25rem;
  }
}
.c-button-list {
  background-image: url(../images/common/background-image.webp);
  background-repeat: repeat;
  background-size: auto;
  border-radius: 0.5rem;
  padding: 2.8125rem 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
}
@media screen and (max-width: 767px) {
  .c-button-list {
    display: grid;
    gap: 0.625rem;
    grid-template-columns: repeat(2, 1fr);
    padding: 1.375rem 1.25rem;
  }
}

.c-button-list[data-columns="2"] {
  padding-inline: 7.5rem;
}
@media screen and (max-width: 767px) {
  .c-button-list[data-columns="2"] {
    padding-inline: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .c-button-list[data-columns=sp1] {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  .c-button-list[data-columns=sp1] .c-button-list__item {
    width: 100%;
    max-width: 25rem;
    margin-inline: auto;
  }
}

.c-button-list__item {
  height: 100%;
}

.c-button-list__item .c-button {
  max-width: 100%;
  width: 20.625rem;
  min-height: 5.125rem;
  background-color: var(--color-white);
  padding: 0.625rem 0.9375rem;
  border: 1px solid #cdcece;
  color: var(--color-main);
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .c-button-list__item .c-button {
    width: 100%;
    min-width: 8.75rem;
    height: 100%;
    font-size: max(1rem, 10px);
    line-height: 1.25;
    padding: 0.6875rem 0.5rem;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.c-button-list__item .c-button::after {
  width: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-button-list__item .c-button::after {
    display: none;
  }
}

.c-button-list__item .c-button[data-size=small] {
  font-size: max(0.9375rem, 10px);
}
@media screen and (max-width: 767px) {
  .c-button-list__item .c-button[data-size=small] {
    font-size: max(0.8125rem, 10px);
  }
}

.c-button-list__item .c-button span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .c-button-list__item .c-button span {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.4375rem;
  }
}

/* 別タブで開くリンクだけ外部リンクアイコンに差し替え */
.c-button-list__item .c-button[target=_blank]::after {
  width: 0.9375rem;
  background-image: url(../images/common/external-link.svg);
}

.c-button-list__item .c-button.is-sm {
  font-size: max(0.75rem, 10px);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-button-list__item .c-button.is-sm {
    font-size: max(0.6875rem, 10px);
  }
}

/* 背景画像が指定されているときだけ span::before を表示 */
.c-button-list__item .c-button[data-nav=doctor-introduction] span::before,
.c-button-list__item .c-button[data-nav=closed-information] span::before,
.c-button-list__item .c-button[data-nav=medical-relation] span::before,
.c-button-list__item .c-button[data-nav=public-lecture] span::before,
.c-button-list__item .c-button[data-nav=public-relation] span::before,
.c-button-list__item .c-button[data-nav=corporate-site] span::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 3.125rem;
  height: auto;
  aspect-ratio: 5/6;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .c-button-list__item .c-button[data-nav=doctor-introduction] span::before,
  .c-button-list__item .c-button[data-nav=closed-information] span::before,
  .c-button-list__item .c-button[data-nav=medical-relation] span::before,
  .c-button-list__item .c-button[data-nav=public-lecture] span::before,
  .c-button-list__item .c-button[data-nav=public-relation] span::before,
  .c-button-list__item .c-button[data-nav=corporate-site] span::before {
    aspect-ratio: 5/3;
  }
}

.c-button-list__item .c-button[data-nav=doctor-introduction] span::before {
  background-image: url(../images/top/info-subicon01.svg);
}

.c-button-list__item .c-button[data-nav=closed-information] span::before {
  background-image: url(../images/top/info-subicon02.svg);
}

.c-button-list__item .c-button[data-nav=medical-relation] span::before {
  background-image: url(../images/top/info-subicon03.svg);
}

.c-button-list__item .c-button[data-nav=public-lecture] span::before {
  background-image: url(../images/top/info-subicon04.svg);
}

.c-button-list__item .c-button[data-nav=public-relation] span::before {
  background-image: url(../images/top/info-subicon05.svg);
}

.c-button-list__item .c-button[data-nav=corporate-site] span::before {
  background-image: url(../images/common/logo-img.svg);
}

@media (any-hover: hover) {
  .c-button-list__item .c-button:hover {
    opacity: 1;
    background-color: var(--color-background-green);
    color: var(--color-main);
  }
}
.c-button-list__item .c-button[data-nav=department] {
  width: 18.75rem;
  min-height: 5rem;
}
@media screen and (max-width: 767px) {
  .c-button-list__item .c-button[data-nav=department] {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.c-button-list__item .c-button[data-nav=orthopedic_surgery] {
  width: 18.75rem;
  min-height: 5rem;
}
@media screen and (max-width: 767px) {
  .c-button-list__item .c-button[data-nav=orthopedic_surgery] {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.c-button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 11rem;
  padding-inline: 1.125rem 0.4375rem;
  padding-block: 0.5625rem;
  display: inline-block;
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.75;
  color: var(--color-main);
  letter-spacing: 0.04em;
  background-color: var(--color-background);
  border: 1px solid var(--color-main);
  border-radius: 0.5rem;
  -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .c-button {
    min-width: 9.625rem;
    font-size: max(0.875rem, 10px);
    padding-block: 0.625rem;
  }
}

.c-button::after {
  content: "";
  width: 0.9375rem;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(../images/common/arrow-green.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transition: background-image 0.3s ease-in-out;
  transition: background-image 0.3s ease-in-out;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (any-hover: hover) {
  .c-button:hover {
    opacity: 1;
    color: var(--color-white);
    background-color: var(--color-main);
  }
}
/* 別タブで開くリンクだけ外部リンクアイコンに差し替え */
.c-button[target=_blank]::after {
  width: 0.9375rem;
  background-image: url(../images/common/external-link.svg);
}

.c-button[data-color=red] {
  color: var(--color-red);
  border-color: var(--color-red);
  background-color: var(--color-white);
}

.c-button[data-color=red]::after {
  background-image: url(../images/common/arrow-red.svg);
}

@media (any-hover: hover) {
  .c-button[data-color=red]:hover {
    opacity: 1;
    color: var(--color-white);
    background-color: var(--color-red);
  }
}
.c-definition-list {
  max-width: 62.5rem;
  margin-inline: auto;
}

.c-definition-list__item {
  display: grid;
  grid-template-columns: 12.5rem 1fr;
  gap: 0.625rem 1.25rem;
  padding-block: 1.5625rem;
  padding-inline: 0.625rem;
  border-bottom: none;
  background: var(--border-line);
}
@media screen and (max-width: 767px) {
  .c-definition-list__item {
    grid-template-columns: 4.0625rem 1fr;
    gap: 0.625rem;
    padding-inline: 0.3125rem;
  }
}

.c-definition-list__item-title,
.c-definition-list__item-value {
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-definition-list__item-title,
  .c-definition-list__item-value {
    font-size: max(0.875rem, 10px);
  }
}

.c-definition-list__value-item + .c-definition-list__value-item {
  margin-top: 0.3125rem;
}

/* 中央スライド強調のギャラリースライダー（Splide） */
.c-gallery-slider-wrap {
  margin-inline: auto;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-gallery-slider-wrap {
    max-width: 31.25rem;
  }
}

.c-gallery-slider .splide__slide {
  opacity: 1;
  -webkit-transition: opacity 0.7s ease;
  transition: opacity 0.7s ease;
}
@media screen and (max-width: 767px) {
  .c-gallery-slider .splide__slide {
    opacity: 1;
  }
}

.c-gallery-slider__figure {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: -webkit-transform 0.7s ease;
  transition: -webkit-transform 0.7s ease;
  transition: transform 0.7s ease;
  transition: transform 0.7s ease, -webkit-transform 0.7s ease;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .c-gallery-slider__figure {
    -webkit-transform: initial;
            transform: initial;
  }
}

.c-gallery-slider__figure img {
  aspect-ratio: 45/30;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
}

/* アクティブ */
.c-gallery-slider .splide__slide.is-active {
  opacity: 1;
}

.c-gallery-slider .splide__slide.is-active .c-gallery-slider__figure {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.c-gallery-slider .splide__slide figcaption,
.c-gallery-slider__caption {
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-top: 0.625rem;
}

.c-history-list {
  max-width: 62.5rem;
  margin-inline: auto;
  position: relative;
  padding: 3.125rem;
  background-image: url(../images/common/background-image.webp);
  background-repeat: repeat;
  background-size: auto;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .c-history-list {
    padding: 1.25rem;
  }
}

.c-history-list__item {
  display: grid;
  grid-template-columns: 11.25rem 1fr;
  gap: 0.75rem 2rem;
  padding-inline: 4.125rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-history-list__item {
    grid-template-columns: 1fr;
    gap: 0.625rem;
    padding-inline: 1.875rem 0;
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  .c-history-list__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0.9375rem;
    height: 0.9375rem;
    background: -webkit-gradient(linear, left top, right top, from(#289139), to(#3e8464));
    background: linear-gradient(to right, #289139, #3e8464);
    border-radius: 50%;
    margin-top: 0.3125rem;
  }
}

.c-history-list__item + .c-history-list__item {
  margin-top: 1.5625rem;
}

.c-history-list__item-date,
.c-history-list__item-desc {
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-history-list__item-date,
  .c-history-list__item-desc {
    font-size: max(0.875rem, 10px);
  }
}

.c-history-list__item-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}

.c-history-list__item-date:before {
  content: "";
  width: 0.9375rem;
  height: 0.9375rem;
  background: -webkit-gradient(linear, left top, right top, from(#289139), to(#3e8464));
  background: linear-gradient(to right, #289139, #3e8464);
  border-radius: 50%;
  margin-top: 0.3125rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .c-history-list__item-date:before {
    content: none;
  }
}

.c-icon-button {
  display: inline-block;
  padding: 0.3125rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 1.875rem;
  font-size: max(1rem, 10px);
  font-weight: 500;
  color: var(--color-main);
  line-height: 1.75;
  letter-spacing: 0.04em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .c-icon-button {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 0.5rem;
    line-height: 1.25;
    padding: 0.625rem 0.3125rem;
    text-align: center;
    gap: 0.1875rem;
  }
}

.c-icon-button::before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "";
  display: block;
  width: 1.1875rem;
  height: auto;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .c-icon-button::before {
    width: 1.3125rem;
    min-height: 1.5625rem;
  }
}

.c-icon-button[data-nav=search]::before {
  aspect-ratio: 1;
  background-image: url(../images/common/search-icon.svg);
}

.c-icon-button[data-nav=contact]::before {
  aspect-ratio: 15/10;
  background-image: url(../images/common/contact-icon.svg);
}

.c-icon-button[data-nav=access]::before {
  aspect-ratio: 15/18;
  background-image: url(../images/common/access-icon.svg);
}

.c-icon-button[data-nav=map]::before {
  width: 1.875rem;
  aspect-ratio: 3/2;
  background-image: url(../images/common/map-icon.svg);
}

.c-icon-button[data-nav=pdf]::before {
  width: 2.125rem;
  aspect-ratio: 34/30;
  background-image: url(../images/common/pdf-icon-red.svg);
}

.c-icon-button[data-nav=doc]::before {
  width: 2.125rem;
  aspect-ratio: 34/30;
  background-image: url(../images/common/doc-icon.svg);
}

.c-icon-button[data-nav=tel]::before {
  width: 1.875rem;
  aspect-ratio: 30/30;
  background-image: url(../images/common/phone-icon.svg);
}

.c-icon-button[data-width="188px"] {
  width: 11.75rem;
}
@media screen and (max-width: 767px) {
  .c-icon-button[data-width="188px"] {
    width: 100%;
  }
}

@media (any-hover: hover) {
  .c-icon-button:hover {
    opacity: 1;
    background-color: var(--color-background-green);
  }
}
.c-inline-padding {
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .c-inline-padding {
    padding-inline: 0.625rem;
  }
}

.c-no-post {
  font-size: max(1.25rem, 10px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-no-post {
    font-size: max(1.125rem, 10px);
  }
}

.c-pagenavi {
  margin-top: 3.125rem;
  text-align: center;
}

.c-pagenavi .nav-links {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-pagenavi .nav-links {
    gap: 0.3125rem;
  }
}

.c-pagenavi a.page-numbers,
.c-pagenavi .page-numbers.current {
  width: 3.125rem;
  height: auto;
  aspect-ratio: 1/1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: max(1rem, 10px);
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-pagenavi a.page-numbers,
  .c-pagenavi .page-numbers.current {
    width: 1.875rem;
    font-size: max(0.875rem, 10px);
  }
}

.c-pagenavi .page-numbers.current {
  background-color: var(--color-main);
  color: var(--color-white);
  border-radius: 50%;
}

.c-pagenavi .page-numbers.next,
.c-pagenavi .page-numbers.prev {
  position: absolute;
  top: 0;
}

.c-pagenavi .page-numbers.next {
  right: -2.8125rem;
}
@media screen and (max-width: 767px) {
  .c-pagenavi .page-numbers.next {
    right: -2.1875rem;
  }
}

.c-pagenavi .page-numbers.prev {
  left: -2.8125rem;
}
@media screen and (max-width: 767px) {
  .c-pagenavi .page-numbers.prev {
    left: -2.1875rem;
  }
}

.c-pagenavi a {
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .c-pagenavi a:hover {
    opacity: 0.5;
  }
}
.mmWrap {
  --mmPad: 3vw;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10010;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100vh;
  opacity: 0;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
  background-color: rgba(17, 17, 17, 0.5);
  backdrop-filter: blur(2px);
}

.mmWrap.-ready {
  opacity: 1;
}

.mmInner {
  position: relative;
  width: 100%;
  max-height: 100vh;
  padding: var(--mmPad);
  overflow: auto;
}

.mmCnt {
  position: relative;
  width: 100%;
  max-width: 62.5rem;
  margin-inline: auto;
  background: var(--color-white);
  border-radius: 0.625rem;
  overflow: hidden;
  outline: none;
}

.mmClose {
  display: none;
}

#searchBox {
  display: none;
}

.searchBox__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 3.125rem;
}
@media screen and (max-width: 767px) {
  .searchBox__wrap {
    padding: 1.25rem 0.625rem;
  }
}

.searchBox__title {
  font-size: max(1.875rem, 10px);
  font-weight: 500;
  color: var(--color-main);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .searchBox__title {
    font-size: max(1.25rem, 10px);
  }
}

.searchBox__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  width: 100%;
  max-width: 43.75rem;
  padding: 0.375rem;
  border-radius: 0.625rem;
  border: 1px solid var(--color-border);
}

.searchBox__input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: max(1.25rem, 10px);
  padding: 0.625rem 1.25rem;
  border-radius: 0.625rem;
  border: none;
}
@media screen and (max-width: 767px) {
  .searchBox__input {
    font-size: max(1rem, 10px);
    padding: 0.625rem 0.625rem;
  }
}

.searchBox__submit,
.searchBox__close {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.625rem 1.875rem;
  font-size: max(1.25rem, 10px);
  font-weight: 500;
  color: var(--color-white);
  background-color: var(--color-main);
  border: 1px solid var(--color-main);
  border-radius: 999px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .searchBox__submit,
  .searchBox__close {
    font-size: max(1rem, 10px);
    padding: 0.625rem 1.25rem;
  }
}

@media (any-hover: hover) {
  .searchBox__submit:hover,
  .searchBox__close:hover {
    background-color: var(--color-white);
    color: var(--color-main);
  }
}
.c-section-title {
  background: -webkit-gradient(linear, left top, right top, from(#289139), to(#3e8464));
  background: linear-gradient(to right, #289139, #3e8464);
  padding-block: 0.875rem 1.125rem;
  padding-inline: 2.625rem;
  color: var(--color-white);
  font-size: max(1.375rem, 10px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  border-radius: 1.875rem 0 1.875rem 0;
}
@media screen and (max-width: 767px) {
  .c-section-title {
    font-size: max(1.25rem, 10px);
    padding-block: 0.625rem 0.875rem;
    padding-inline: 1.25rem;
  }
}

/* h3 */
.c-section-subtitle {
  margin-top: 3rem;
  padding-bottom: 1.5rem;
  padding-inline: 0.625rem;
  font-size: max(1.25rem, 10px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--color-main);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .c-section-subtitle {
    font-size: max(1.125rem, 10px);
    margin-top: 1.875rem;
    padding-bottom: 0.9375rem;
  }
}

.c-section-subtitle::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-image: url(../images/common/sub-title.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 2.125rem;
  height: auto;
  aspect-ratio: 34/33;
}

/* h4 */
.c-section-heading {
  margin-top: 3rem;
  padding: 0.875rem 1.6875rem;
  font-size: max(1.125rem, 10px);
  line-height: 2;
  font-weight: 700;
  letter-spacing: 0.05em;
  background-color: var(--color-background-anchor);
}
@media screen and (max-width: 767px) {
  .c-section-heading {
    margin-top: 1.875rem;
    font-size: max(1rem, 10px);
  }
}

/* スプライド矢印 */
.splide__arrows {
  position: absolute;
  bottom: -2.75rem;
  right: 0.625rem;
  z-index: 10;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .splide__arrows {
    bottom: -3.5625rem;
    right: initial;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.splide__arrow {
  width: 1.25rem;
  height: 2.8125rem;
  position: relative;
  background: transparent;
  -webkit-transform: none;
          transform: none;
  border-radius: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .splide__arrow {
    width: 2.5rem;
    height: 2.8125rem;
  }
}

.splide__arrow.splide__arrow--prev {
  left: 0;
}

.splide__arrow.splide__arrow--next {
  right: 0;
}

.splide__arrow svg {
  display: none;
}

.splide__arrow--next::after,
.splide__arrow--prev::after {
  z-index: 10;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.9375rem;
  height: 0.9375rem;
  border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .splide__arrow--next::after,
  .splide__arrow--prev::after {
    width: 1.5625rem;
    height: 1.5625rem;
    border-width: 0.1875rem;
  }
}

.splide__arrow--prev::after {
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
          transform: translate(-50%, -50%) rotate(-135deg);
}

@media (any-hover: hover) {
  .splide__arrow:hover {
    opacity: 1;
  }
  .splide__arrow--next:hover:after,
  .splide__arrow--prev:hover:after {
    border-color: var(--color-sub);
  }
}
/* ページネーションのスタイル */
.splide__pagination {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  bottom: 1.5625rem;
  position: relative;
  gap: 0.625rem;
}

.splide__pagination__page {
  background-color: var(--color-white);
  border-radius: 50%;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  width: 0.625rem;
  height: 0.625rem;
  display: block;
  padding: 0;
}

.splide__pagination__page.is-active {
  background-color: var(--color-main);
}

.c-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.c-table[data-width="80%"] {
  width: 80%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .c-table[data-width="80%"] {
    width: 100%;
  }
}

.c-table[data-width="50%"] {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .c-table[data-width="50%"] {
    width: 100%;
  }
}

/* 列幅を均等に（2列用）SP100% */
.c-table[data-columns=equal] {
  table-layout: fixed;
}

.c-table[data-columns=equal] td:nth-child(1),
.c-table[data-columns=equal] td:nth-child(2) {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .c-table[data-columns=equal] td:nth-child(1),
  .c-table[data-columns=equal] td:nth-child(2) {
    width: 100%;
  }
}

/* 列幅を均等に（2列用） */
.c-table[data-columns=equal-2] {
  table-layout: fixed;
}

.c-table[data-columns=equal-2] th:nth-child(1),
.c-table[data-columns=equal-2] td:nth-child(1) {
  width: 50%;
}

.c-table[data-columns=equal-2] th:nth-child(2),
.c-table[data-columns=equal-2] td:nth-child(2) {
  width: 50%;
}

/* 列幅を均等に（3列用） */
.c-table[data-columns=equal-3] {
  table-layout: fixed;
}

.c-table[data-columns=equal-3] th:nth-child(1),
.c-table[data-columns=equal-3] td:nth-child(1) {
  width: 33.33%;
}

.c-table[data-columns=equal-3] th:nth-child(2),
.c-table[data-columns=equal-3] td:nth-child(2) {
  width: 33.33%;
}

.c-table[data-columns=equal-3] th:nth-child(3),
.c-table[data-columns=equal-3] td:nth-child(3) {
  width: 33.33%;
}

/* 列幅を均等に（4列用） */
.c-table[data-columns=equal-4] {
  table-layout: fixed;
}

.c-table[data-columns=equal-4] th:nth-child(1),
.c-table[data-columns=equal-4] td:nth-child(1) {
  width: 25%;
}

.c-table[data-columns=equal-4] th:nth-child(2),
.c-table[data-columns=equal-4] td:nth-child(2) {
  width: 25%;
}

.c-table[data-columns=equal-4] th:nth-child(3),
.c-table[data-columns=equal-4] td:nth-child(3) {
  width: 25%;
}

.c-table[data-columns=equal-4] th:nth-child(4),
.c-table[data-columns=equal-4] td:nth-child(4) {
  width: 25%;
}

.c-table[data-columns=equal-4] th:nth-child(5),
.c-table[data-columns=equal-4] td:nth-child(5) {
  width: 25%;
}

/* 列幅を均等に（5列用） */
.c-table[data-columns=equal-5] {
  table-layout: fixed;
}

.c-table[data-columns=equal-5] th:nth-child(1),
.c-table[data-columns=equal-5] td:nth-child(1) {
  width: 20%;
}

.c-table[data-columns=equal-5] th:nth-child(2),
.c-table[data-columns=equal-5] td:nth-child(2) {
  width: 20%;
}

.c-table[data-columns=equal-5] th:nth-child(3),
.c-table[data-columns=equal-5] td:nth-child(3) {
  width: 20%;
}

.c-table[data-columns=equal-5] th:nth-child(4),
.c-table[data-columns=equal-5] td:nth-child(4) {
  width: 20%;
}

.c-table[data-columns=equal-5] th:nth-child(5),
.c-table[data-columns=equal-5] td:nth-child(5) {
  width: 20%;
}

.c-table tr > * {
  border: 1px solid #babbbc;
  padding: 0.5625rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .c-table tr > * {
    padding: 0.75rem 0.3125rem;
  }
}

.c-table[data-position=center] tr > * {
  text-align: center;
}

/* SP縦積み（見出し＋値を1行ずつブロックで積む） */
@media screen and (max-width: 767px) {
  .c-table[data-stack=sp] thead,
  .c-table[data-stack=sp] tbody tr {
    display: block;
  }
  .c-table[data-stack=sp] th,
  .c-table[data-stack=sp] td {
    display: block;
    width: 100% !important;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .c-table[data-stack=sp] tbody td {
    border-top: none;
    border-bottom: none;
  }
  .c-table[data-stack=sp] tbody tr:last-child {
    border-bottom: 1px solid #babbbc;
  }
}

.c-table th {
  background-color: var(--color-main);
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .c-table th {
    font-size: max(0.875rem, 10px);
  }
}

.c-table td ul {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
}
@media screen and (max-width: 767px) {
  .c-table td ul {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
}

.c-table td li {
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .c-table td li {
    font-size: max(0.875rem, 10px);
  }
}

.c-table td li::before {
  content: "・";
}

@media screen and (max-width: 767px) {
  .c-table thead th {
    padding: 0.5625rem 0.625rem;
  }
}

.c-table tr:has(> th) {
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--color-black);
}
@media screen and (max-width: 767px) {
  .c-table tr:has(> th) {
    font-size: max(0.9375rem, 10px);
  }
}

.c-table td span {
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-black);
}
@media screen and (max-width: 767px) {
  .c-table td span {
    font-size: max(0.625rem, 10px);
  }
}

.c-table__caption {
  margin-top: 0.3125rem;
  display: block;
  margin-top: 1rem;
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--color-black);
  text-align: left;
}
@media screen and (max-width: 767px) {
  .c-table__caption {
    font-size: max(0.75rem, 10px);
  }
}

.c-table__caption[data-weight=bold] {
  font-size: max(1.25rem, 10px);
  font-weight: 700;
}

.c-table__caption[data-color=red] {
  color: var(--color-red);
}

.c-table__caption[data-position=right] {
  width: 80%;
  margin-inline: auto;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .c-table__caption[data-position=right] {
    width: 100%;
  }
}

.c-table__caption a:not(.c-table__caption-link) {
  color: #036ea9;
  font-size: max(1.25rem, 10px);
  font-weight: 700;
  display: inline-block;
}

.c-table__caption-link {
  color: #036ea9;
}

/* 1列目が30%の列幅になる */
.c-table[data-columns="30%"] th:nth-child(1) {
  width: 30%;
}

/* 人間ドック：標準日帰りコース検査項目 */
.p-content-section__table-wrap .c-table[data-type=standard] th:nth-child(1), .p-content-section__table-wrap .c-table[data-type=standard] td:nth-child(1) {
  width: 10%;
}
.p-content-section__table-wrap .c-table[data-type=standard] th:nth-child(2), .p-content-section__table-wrap .c-table[data-type=standard] td:nth-child(2) {
  width: 20%;
}
.p-content-section__table-wrap .c-table[data-type=standard] th:nth-child(3), .p-content-section__table-wrap .c-table[data-type=standard] td:nth-child(3) {
  width: 70%;
}
.p-content-section__table-wrap .c-table[data-type=standard] tbody th {
  text-align: center;
}

/* 人間ドック：オプション検査 */
.p-content-section__table-wrap .c-table[data-type=option] th:nth-child(1), .p-content-section__table-wrap .c-table[data-type=option] tbody th:nth-child(1), .p-content-section__table-wrap .c-table[data-type=option] tbody td:nth-child(1) {
  width: 15%;
}
@media screen and (max-width: 767px) {
  .p-content-section__table-wrap .c-table[data-type=option] th:nth-child(1), .p-content-section__table-wrap .c-table[data-type=option] tbody th:nth-child(1), .p-content-section__table-wrap .c-table[data-type=option] tbody td:nth-child(1) {
    width: 10%;
  }
}
.p-content-section__table-wrap .c-table[data-type=option] th:nth-child(2) {
  width: 35%;
}
.p-content-section__table-wrap .c-table[data-type=option] th:nth-child(3) {
  width: 35%;
}
.p-content-section__table-wrap .c-table[data-type=option] tbody th, .p-content-section__table-wrap .c-table[data-type=option] tbody td:last-child, .p-content-section__table-wrap .c-table[data-type=option] tbody th:last-child {
  text-align: center;
}

/* 外来担当医表 */
@media screen and (max-width: 767px) {
  .c-inline-padding:has(.c-table[data-type=week]) {
    -webkit-padding-start: 0;
            padding-inline-start: 0;
  }
}

.p-content-section__table-wrap .c-table[data-type=week] {
  min-width: 43.75rem;
}
.p-content-section__table-wrap .c-table[data-type=week] th:not(:first-child), .p-content-section__table-wrap .c-table[data-type=week] td:not(:first-child) {
  width: 15%;
}

@media screen and (max-width: 767px) {
  /* 外来担当医表のみ：テーブル内で横スクロール（ページ全体はスクロールさせない） */
  .p-content-section__table-wrap:has(.c-table[data-type=week]) {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: scroll;
    padding-bottom: 0.625rem;
    -webkit-overflow-scrolling: touch;
  }
}
.p-content-section__table-wrap .c-table[data-type=week] tr > * {
  text-align: center;
  font-size: max(1.125rem, 10px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  padding: 1.25rem 0.625rem;
  vertical-align: baseline;
}
@media screen and (max-width: 767px) {
  .p-content-section__table-wrap .c-table[data-type=week] tr > * {
    font-size: max(0.9375rem, 10px);
    padding: 1.25rem 0.3125rem;
  }
}

.p-content-section__table-wrap .c-table[data-type=week] a {
  text-decoration: underline;
  text-underline-offset: 0.125rem;
  text-decoration-color: var(--color-main);
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.p-content-section__description {
  margin-top: 0.625rem;
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-content-section__description {
    font-size: max(0.875rem, 10px);
  }
}

@media (any-hover: hover) {
  .p-content-section__table-wrap .c-table[data-type=week] a:hover {
    color: var(--color-main);
    opacity: 1;
  }
}
/* 休診・代診情報 */
@media screen and (max-width: 767px) {
  .p-content-section__table-wrap:has(.c-table[data-type=attendance]) {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: scroll;
    padding-bottom: 0.625rem;
    -webkit-overflow-scrolling: touch;
  }
}

.p-content-section__table-wrap .c-table[data-type=attendance] {
  max-width: 43.75rem;
}
.p-content-section__table-wrap .c-table[data-type=attendance] th:nth-child(1), .p-content-section__table-wrap .c-table[data-type=attendance] th:nth-child(3) {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .p-content-section__table-wrap .c-table[data-type=attendance] {
    min-width: 31.25rem;
  }
}

.p-content-section__table-wrap .c-table[data-type=attendance] tr > * {
  text-align: center;
  font-size: max(1.125rem, 10px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  padding: 1.25rem 0.625rem;
  vertical-align: baseline;
}
@media screen and (max-width: 767px) {
  .p-content-section__table-wrap .c-table[data-type=attendance] tr > * {
    font-size: max(0.9375rem, 10px);
    padding: 1.25rem 0.3125rem;
  }
}

.c-text {
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.7425;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-text {
    font-size: max(0.875rem, 10px);
  }
}

.c-text a {
  color: #036ea9;
}

.c-title {
  font-size: max(1.25rem, 10px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-title {
    font-size: max(1.125rem, 10px);
  }
}

.c-top-section-title {
  color: var(--color-main);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.c-top-section-title__en {
  padding-left: 0.4375rem;
  font-size: max(0.9375rem, 10px);
  font-weight: 500;
  line-height: 1;
  color: currentColor;
  letter-spacing: 0.04em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-top-section-title__en {
    padding-left: 0.3125rem;
  }
}

.c-top-section-title__ja {
  margin-top: 1.0625rem;
  font-size: max(1.875rem, 10px);
  font-weight: 500;
  line-height: 1;
  color: currentColor;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-top-section-title__ja {
    font-size: max(1.625rem, 10px);
    line-height: 1.5;
  }
}

.c-top-section-title__en::before {
  content: "";
  position: absolute;
  top: -0.9375rem;
  left: -0.9375rem;
  -webkit-mask-image: url(../images/common/sub-title.svg);
          mask-image: url(../images/common/sub-title.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  width: 2.125rem;
  height: auto;
  aspect-ratio: 34/33;
  background-color: #687e79;
}

.c-top-section-title:not(:has(.c-top-section-title__en)) {
  position: relative;
}

.c-top-section-title:not(:has(.c-top-section-title__en))::before {
  content: "";
  position: absolute;
  top: -0.9375rem;
  left: -1.875rem;
  -webkit-mask-image: url(../images/common/sub-title.svg);
          mask-image: url(../images/common/sub-title.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  width: 2.125rem;
  height: auto;
  aspect-ratio: 34/33;
  background-color: #687e79;
}

.c-top-section-title[data-position=center] {
  margin-inline: auto;
  text-align: center;
}

.c-top-section-title[data-color=navy] {
  color: var(--color-navy);
}

.c-top-section-title[data-color=navy] .c-top-section-title__en::before {
  background-color: #036ea9;
}

.p-404__content {
  min-height: 25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-404__content {
    min-height: 18.75rem;
    text-align: left;
    gap: 1.875rem;
  }
}

.p-404__text {
  font-size: max(1.25rem, 10px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-404__text {
    font-size: max(1.125rem, 10px);
  }
}

.p-404__button .c-button {
  width: 18.75rem;
  font-size: max(1.25rem, 10px);
  padding-block: 0.9375rem;
  padding-inline: 1.875rem;
  margin-inline: auto;
}

.p-404__button .c-button::after {
  width: 1.5625rem;
}

.p-anchor-link__group-title {
  font-size: max(1rem, 10px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-main);
  margin-bottom: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-anchor-link__group-title {
    font-size: max(0.9375rem, 10px);
    margin-bottom: 0.5rem;
  }
}

.p-anchor-link__group-title::after {
  content: "";
  width: 12.5rem;
  height: 1px;
  background-color: currentColor;
}

.p-anchor-link__group .p-anchor-link__list {
  padding: 0;
  background-color: transparent;
  border-radius: 0;
}

.p-anchor-link__list {
  background-color: var(--color-background-anchor);
  border-radius: 0.5rem;
  padding: 1.25rem 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.25rem 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-anchor-link__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.625rem;
  }
}

/* グループあり時は list-wrap に背景を寄せる */
.p-anchor-link__list-wrap:has(.p-anchor-link__group) {
  background-color: var(--color-background-anchor);
  border-radius: 0 0 0.5rem 0.5rem;
}

.p-anchor-link__group {
  padding: 1.5rem 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-anchor-link__group {
    padding: 1.25rem 1.25rem;
  }
}

.p-anchor-link__item a {
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
  color: var(--color-main);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}

.p-anchor-link__item a:after {
  content: "";
  background-image: url(../images/common/arrow-green.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 1rem;
  height: auto;
  aspect-ratio: 1/1;
}

/* 同一ページ内アンカー：下向き */
.p-anchor-link__item a[href^="#"]:after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.p-anchor-link__body {
  overflow: hidden;
}

/* PC: リスト常時表示、トグル非表示 */
.p-anchor-link__toggle {
  display: none;
}

/* SP: アコーディオン（grid-template-rows で開閉） */
@media screen and (max-width: 767px) {
  .p-anchor-link__toggle {
    display: block;
    width: 100%;
    padding: 0.9375rem 1.25rem;
    font-size: max(1rem, 10px);
    font-weight: 500;
    color: var(--color-main);
    background-color: var(--color-background-anchor);
    border: none;
    border-radius: 0.5rem;
    text-align: left;
    cursor: pointer;
    -webkit-transition: border-radius 0.3s ease-in-out;
    transition: border-radius 0.3s ease-in-out;
  }
  .p-anchor-link__body {
    display: grid;
    grid-template-rows: 0fr;
    -webkit-transition: grid-template-rows 0.3s ease-in-out;
    transition: grid-template-rows 0.3s ease-in-out;
    transition: grid-template-rows 0.3s ease-in-out, -ms-grid-rows 0.3s ease-in-out;
  }
  .p-anchor-link__body > * {
    min-height: 0;
    overflow: hidden;
  }
  .p-anchor-link.is-open .p-anchor-link__body {
    grid-template-rows: 1fr;
  }
  .p-anchor-link.is-open .p-anchor-link__toggle {
    border-radius: 0.5rem 0.5rem 0 0;
  }
  .p-anchor-link.is-open .p-anchor-link__list {
    border-radius: 0 0 0.5rem 0.5rem;
  }
}
/* headerのis-hiddenに連動するアコーディオンナビ */
.p-anchor-accordion {
  position: fixed;
  top: var(--header-height);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 100;
  width: 100%;
  max-width: 87.5rem;
  -webkit-transition: -webkit-transform 0.5s ease-out;
  transition: -webkit-transform 0.5s ease-out;
  transition: transform 0.5s ease-out;
  transition: transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}
.p-anchor-accordion.is-hidden {
  -webkit-transform: translateX(-50%) translateY(calc(-100% - var(--header-height)));
          transform: translateX(-50%) translateY(calc(-100% - var(--header-height)));
}

.p-anchor-accordion__details {
  margin-inline: 1.25rem;
  background-color: var(--color-background-anchor);
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.p-anchor-accordion__details::details-content {
  content-visibility: unset;
  display: block grid;
}

@media (prefers-reduced-motion: no-preference) {
  .p-anchor-accordion__details::details-content {
    -webkit-transition: grid-template-rows 0.3s ease-in-out;
    transition: grid-template-rows 0.3s ease-in-out;
    transition: grid-template-rows 0.3s ease-in-out, -ms-grid-rows 0.3s ease-in-out;
  }
}
.p-anchor-accordion__details:not([open])::details-content {
  grid-template-rows: 0fr;
}

.p-anchor-accordion__details[open]::details-content {
  grid-template-rows: 1fr;
}

.p-anchor-accordion__summary {
  padding: 0.9375rem 1.25rem 0.9375rem 1.25rem;
  font-size: max(1rem, 10px);
  font-weight: 500;
  color: var(--color-main);
  list-style: none;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.p-anchor-accordion__summary::-webkit-details-marker {
  display: none;
}
.p-anchor-accordion__summary::after {
  content: "";
  position: absolute;
  top: 1.25rem;
  right: 3.125rem;
  display: inline-block;
  width: 0.75rem;
  height: 0.5rem;
  background-color: var(--color-main);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform-origin: center;
          transform-origin: center;
}

.p-anchor-accordion__details[open] .p-anchor-accordion__summary::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.p-anchor-accordion__body {
  min-height: 0;
  overflow: hidden;
}

.p-anchor-accordion__group:first-child {
  padding-top: 0.75rem;
}
.p-anchor-accordion__group:not(:first-child) {
  margin-top: 2.5rem;
}

.p-anchor-accordion__group-title {
  font-size: max(0.9375rem, 10px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-main);
  margin-bottom: 0.5rem;
  padding: 0 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
.p-anchor-accordion__group-title::after {
  content: "";
  width: 12.5rem;
  height: 1px;
  background-color: currentColor;
}

.p-anchor-accordion__group .p-anchor-accordion__list {
  padding: 0 1.25rem 0rem;
}

.p-anchor-accordion__group:last-child .p-anchor-accordion__list {
  padding-bottom: 1.25rem;
}

.p-anchor-accordion__list {
  padding: 0 1.25rem 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.625rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-anchor-accordion__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
  }
}

.p-anchor-accordion__item a {
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  color: var(--color-main);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}

.p-anchor-accordion__item a:after {
  content: "";
  background-image: url(../images/common/arrow-green.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 1rem;
  height: auto;
  aspect-ratio: 1/1;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.p-block__content-inner {
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-block__content-inner {
    padding-inline: 0.625rem;
  }
}

.p-block__content h2,
.p-block__content h3:not(.p-flow-content__item-title):not(.wp-block-accordion-heading),
.p-block__content h4:not(.wp-block-accordion h4) {
  margin-inline: -3.125rem;
}
@media screen and (max-width: 767px) {
  .p-block__content h2,
  .p-block__content h3:not(.p-flow-content__item-title):not(.wp-block-accordion-heading),
  .p-block__content h4:not(.wp-block-accordion h4) {
    margin-inline: -0.625rem;
  }
}

.p-block__link-wrap + .p-block__content {
  margin-top: 4.25rem;
}
@media screen and (max-width: 767px) {
  .p-block__link-wrap + .p-block__content {
    margin-top: 3.125rem;
  }
}

.p-block__content + .p-block__content {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-block__content + .p-block__content {
    margin-top: 5rem;
  }
}

.p-block__content h2 {
  margin-block: 5rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-block__content h2 {
    margin-block: 3rem 1.25rem;
  }
}

.p-block__content h3:not(.p-flow-content__item-title):not(.wp-block-accordion-heading) {
  margin-block: 3.75rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-block__content h3:not(.p-flow-content__item-title):not(.wp-block-accordion-heading) {
    margin-block: 2.5rem 1.25rem;
  }
}

.p-block__content h4 {
  margin-block: 1.875rem 0.625rem;
}

.p-block__content h5 {
  margin-block: 1.25rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-block__content h5 {
    margin-block: 0.9375rem 0.625rem;
  }
}

.p-block__content p {
  margin-block: 0.625rem 0.3125rem;
}

.p-block__content figure,
.p-block__content ul,
.p-block__content ol,
.p-block__content .wp-block-table {
  margin-block: 1.5rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-block__content figure,
  .p-block__content ul,
  .p-block__content ol,
  .p-block__content .wp-block-table {
    margin-block: 1.25rem;
  }
}

.p-block__content .wp-block-columns ol {
  margin-block: 0;
}

.wp-block-flexible-table-block-table {
  margin-block: 1.875rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .wp-block-flexible-table-block-table {
    margin-block: 1.25rem 0.9375rem;
  }
}

.p-block__content .p-main-content {
  margin-block: 1.875rem 0.625rem;
}

.p-block__content h2 {
  background: -webkit-gradient(linear, left top, right top, from(#289139), to(#3e8464));
  background: linear-gradient(to right, #289139, #3e8464);
  padding-block: 0.875rem 1.125rem;
  padding-inline: 2.5rem;
  color: var(--color-white);
  font-size: max(1.375rem, 10px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  border-radius: 1.875rem 0 1.875rem 0;
}

.p-block__content h3:not(.wp-block-accordion-heading):not(.p-flow-content__item-title) {
  padding-bottom: 1.5rem;
  padding-inline: 0.625rem;
  font-size: max(1.25rem, 10px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--color-main);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.9375rem;
}

.p-block__content h3::before {
  content: "";
  background-image: url(../images/common/sub-title.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 2.125rem;
  height: auto;
  aspect-ratio: 34/33;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-block__content h4 {
  font-size: max(1.125rem, 10px);
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.05em;
  background-color: var(--color-background-anchor);
  padding: 0.875rem 1.6875rem;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-block__content h4 {
    font-size: max(1rem, 10px);
  }
}

.p-block__content h5 {
  font-size: max(1.125rem, 10px);
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-block__content h5 {
    font-size: max(1rem, 10px);
  }
}

.p-block__content strong {
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  line-height: 1.7711111111;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-block__content strong {
    font-size: max(1rem, 10px);
  }
}

.p-block__content p span:not(.p-flow-content__label span):not(.p-flow-content__item-text span[data-size=large]):not(.p-doctors-single__title-en) {
  color: var(--color-accent);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  line-height: 1.7711111111;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-block__content p span:not(.p-flow-content__label span):not(.p-flow-content__item-text span[data-size=large]):not(.p-doctors-single__title-en) {
    font-size: max(1rem, 10px);
  }
}

.p-block__content a:not(.wp-block-button__link):not(.c-button):not(.p-anchor-link__item a):not(.p-flow-content__link a) {
  color: #036ea9;
  text-decoration: underline;
  text-underline-offset: 0.125rem;
  text-decoration-color: #036ea9;
}

.p-block__content--large a:not(.wp-block-button__link) {
  font-size: max(1.25rem, 10px);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-block__content--large a:not(.wp-block-button__link) {
    font-size: max(1.125rem, 10px);
  }
}

.p-block__content--large a:not(.wp-block-button__link):after {
  content: "";
  width: 1.25rem;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(../images/common/arrow-blue.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.p-block__content a[href$=".pdf"]:not(.wp-block-button__link) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}

.p-block__content a[href$=".pdf"]:not(.wp-block-button__link):not(.c-icon-button) {
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}

.p-block__content a[href$=".pdf"]:not(.wp-block-button__link):not(.c-icon-button)::before {
  content: "";
  width: 1.5625rem;
  height: 1.5625rem;
  background-image: url(../images/common/pdf-icon-red.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-block__content p a[href$=".pdf"]:not(.wp-block-button__link):not(.c-icon-button) {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3125rem;
  margin-inline: 0.3125rem;
  vertical-align: top;
  color: var(--color-black) !important;
}

.p-block__content p a[href$=".pdf"]:not(.wp-block-button__link):not(.c-icon-button)::before {
  content: "";
  width: 1.5625rem;
  height: 1.5625rem;
  background-image: url(../images/common/pdf-icon-red.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-block__content a.wp-block-button__link[target=_blank]::after {
  width: 0.9375rem;
  background-image: url(../images/common/external-link.svg);
}

.p-block__content-link {
  margin-block: 3.125rem 1.875rem;
}

.p-block__content-link .c-button {
  width: 25rem;
  font-size: max(1.25rem, 10px);
  padding-block: 0.75rem;
  padding-inline: 1.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-block__content-link .c-button {
    width: 100%;
    font-size: max(1.125rem, 10px);
    max-width: 18.75rem;
  }
}

.p-block__content-link .c-button:after {
  width: 1.25rem;
  height: 1.25rem;
}

.wp-block-buttons {
  margin-block: 3.125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .wp-block-buttons {
    margin-block: 2.5rem;
  }
}

.wp-block-columns .wp-block-buttons {
  margin-block: 0;
}

.wp-block-button a:not([href*=".pdf"]) {
  padding-block: 0.75rem;
  padding-inline: 2.5rem;
  margin-inline: auto;
  display: inline-block;
  font-size: max(1.25rem, 10px);
  font-weight: 500;
  line-height: 1.75;
  color: var(--color-main);
  letter-spacing: 0.04em;
  background-color: var(--color-background);
  border: 1px solid var(--color-main);
  border-radius: 0.5rem;
  -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .wp-block-button a:not([href*=".pdf"]) {
    font-size: max(1rem, 10px);
    padding-block: 0.625rem;
    padding-inline: 0.625rem;
    text-align: left;
  }
}

.wp-block-button a:not([href*=".pdf"])::after {
  content: "";
  width: 0.9375rem;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(../images/common/arrow-green.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transition: background-image 0.3s ease-in-out;
  transition: background-image 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .wp-block-button a:not([href*=".pdf"]):hover {
    opacity: 1;
    color: var(--color-white);
    background-color: var(--color-main);
  }
}
/* PDF リンクは .p-content-section__content-link と同じスタイル */
.p-block__content .wp-block-button__link[href$=".pdf"] {
  padding: 0;
  margin: 0;
  min-width: 0;
  color: var(--color-black);
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
  background: none;
  border: none;
  border-radius: 0;
  text-decoration: underline;
  text-underline-offset: 0.125rem;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-block__content .wp-block-button__link[href$=".pdf"] {
    font-size: max(0.875rem, 10px);
  }
}

.p-block__content .wp-block-buttons .wp-block-button__link[href*=".pdf"]::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.875rem;
  aspect-ratio: 34/30;
  background-image: url(../images/common/pdf-icon-red.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.p-block__content .wp-block-buttons .wp-block-button__link[href*=".pdf"]::after {
  display: none;
}

@media (any-hover: hover) {
  .p-block__content .wp-block-buttons .wp-block-button__link[href*=".pdf"]:hover {
    opacity: 1;
    color: #036ea9;
    background: none;
  }
}
.p-block__body,
.p-block__content .wp-block-columns {
  margin-block: 3.125rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-block__body,
  .p-block__content .wp-block-columns {
    margin-block: 1.25rem 0.625rem;
  }
}

.wp-block-gallery {
  margin-block: 3.125rem 1.875rem;
  max-width: 62.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .wp-block-gallery {
    margin-block: 1.875rem 1.25rem;
  }
}

.p-block__body.p-block__body--grid {
  margin-block: 3.125rem 1.875rem;
  max-width: 62.5rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 51%;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-block__body.p-block__body--grid {
    margin-block: 1.875rem 1.25rem;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.wp-block-column > figure {
  margin-block: 0;
}

.p-block__body.p-block__body--grid img {
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
  border-radius: 0.5rem;
}

.p-block__body.p-block__body--grid p {
  font-size: max(1.125rem, 10px);
  font-weight: 500;
  line-height: 1.9166666667;
  letter-spacing: 0;
  color: var(--color-main);
}
@media screen and (max-width: 767px) {
  .p-block__body.p-block__body--grid p {
    font-size: max(1rem, 10px);
  }
}

.p-block__content p:not(.c-text) {
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.9925;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-block__content p:not(.c-text) {
    font-size: max(0.875rem, 10px);
  }
}

.p-block__content .wp-block-group {
  margin-block: 3.125rem 1.875rem;
  max-width: 62.5rem;
  margin-inline: auto;
  padding: 1.875rem 3.125rem;
  background-image: url(../images/common/background-image.webp);
  background-repeat: repeat;
  background-size: auto;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-block__content .wp-block-group {
    margin-block: 1.25rem 0.625rem;
    padding: 1.25rem 0.625rem;
  }
}

.p-block__content .wp-block-group .wp-block-group__inner-container > .wp-block-list {
  margin: 0;
}

.p-block__content .wp-block-column > .wp-block-group {
  margin: 0;
}

.p-block__content .wp-block-group.p-notice {
  background-color: var(--color-background-pink);
  border-radius: 0.5rem;
  padding: 1.875rem 1.25rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
  background-image: none;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-block__content .wp-block-group.p-notice {
    padding: 1.25rem 0.625rem;
    text-align: left;
  }
}

.p-block__content .wp-block-group.p-notice p {
  font-size: max(1.125rem, 10px);
  font-weight: 500;
  line-height: 1.9166666667;
  letter-spacing: 0.04em;
  color: var(--color-red);
}
@media screen and (max-width: 767px) {
  .p-block__content .wp-block-group.p-notice p {
    font-size: max(0.875rem, 10px);
  }
}

.p-block__content .wp-block-group.p-notice a {
  color: var(--color-red);
}

.p-block__content .wp-block-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.625rem;
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.7425;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-block__content .wp-block-list li {
    font-size: max(0.875rem, 10px);
  }
}

.p-block__content .wp-block-list.wp-block-list__item--large li {
  font-size: max(1.25rem, 10px);
  font-weight: 700;
  line-height: 1.7711111111;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-block__content .wp-block-list.wp-block-list__item--large li {
    font-size: max(1rem, 10px);
  }
}

.p-block__content ol.wp-block-list.wp-block-list__item--large li::before {
  font-size: max(1.25rem, 10px);
}
@media screen and (max-width: 767px) {
  .p-block__content ol.wp-block-list.wp-block-list__item--large li::before {
    font-size: max(1rem, 10px);
  }
}

.p-block__content .wp-block-list li + li {
  margin-top: 0.625rem;
}

.p-block__content ul.wp-block-list li::before {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  background-color: var(--color-main);
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 0.5rem;
}

/* 連番（ol） */
.p-block__content ol.wp-block-list {
  counter-reset: list-num;
}

.p-block__content ol.wp-block-list li {
  display: grid;
  grid-template-columns: 1.875rem 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.625rem;
  counter-increment: list-num;
}
@media screen and (max-width: 767px) {
  .p-block__content ol.wp-block-list li {
    grid-template-columns: 1.5625rem 1fr;
  }
}

.p-block__content ol.wp-block-list li::before {
  content: counter(list-num) ".";
  font-size: max(1rem, 10px);
  font-weight: 700;
  overflow-wrap: initial;
}

.p-block__content ol.p-content-section__list {
  counter-reset: list-num;
}

.p-block__content img {
  max-width: 100%;
  width: auto;
}

.p-block__content-body {
  margin-block: 2.5rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-block__content-body {
    margin-block: 1.875rem 0.9375rem;
  }
}

.p-block__content-message {
  margin-top: 6.25rem;
  max-width: 62.5rem;
  margin-inline: auto;
  background-image: url(../images/common/background-image.webp);
  background-repeat: repeat;
  background-size: auto;
  padding: 3.125rem;
  border-radius: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-block__content-message {
    margin-top: 3.125rem;
    padding: 1.875rem 1.25rem;
  }
}

.p-block__content table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}

.p-block__content table tr > * {
  border: 1px solid #babbbc;
  padding: 0.625rem 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-block__content table tr > * {
    padding: 0.75rem 0.3125rem;
  }
}

.p-block__content table th {
  background-color: var(--color-main);
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-block__content table th {
    font-size: max(0.875rem, 10px);
  }
}

.p-block__content table td {
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.7425;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-block__content table td {
    font-size: max(0.875rem, 10px);
  }
}

.p-block__content table tr:has(> th) {
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--color-black);
}
@media screen and (max-width: 767px) {
  .p-block__content table tr:has(> th) {
    font-size: max(0.9375rem, 10px);
  }
}

.p-block__content .wp-block-table.c-treatment-table {
  max-width: 62.5rem;
}
.p-block__content .wp-block-table.c-treatment-table th:first-child {
  width: 22%;
}
.p-block__content .wp-block-table.c-treatment-table th:nth-child(2) {
  width: 60%;
}
.p-block__content .wp-block-table.c-treatment-table th:nth-child(3) {
  width: 17%;
}

.p-block__content .wp-block-table.c-treatment-table2 {
  max-width: 62.5rem;
}
.p-block__content .wp-block-table.c-treatment-table2 th:first-child {
  width: 50%;
}

.p-block__content .wp-block-flexible-table-block-table.is-scroll-on-pc {
  overflow-x: auto;
}

.p-block__content .wp-block-accordion {
  margin-block: 3.125rem 1.875rem;
  max-width: 62.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-block__content .wp-block-accordion {
    margin-block: 1.875rem 1.25rem;
  }
}

.p-block__content .wp-block-accordion + .wp-block-accordion {
  margin-top: 0;
}

.p-block__content h3.wp-block-accordion-heading {
  font-size: max(1.25rem, 10px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-block__content h3.wp-block-accordion-heading {
    font-size: max(1.125rem, 10px);
  }
}

.wp-block-accordion-heading__toggle {
  padding: 0.625rem 1.25rem;
  border-radius: 0.625rem;
  border: 1px solid var(--color-main);
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

.wp-block-accordion-heading__toggle-title {
  font-size: max(1.125rem, 10px);
  line-height: 1.5555555556;
  letter-spacing: 0.04em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .wp-block-accordion-heading__toggle-title {
    font-size: max(1rem, 10px);
  }
}

.wp-block-accordion-heading__toggle:hover .wp-block-accordion-heading__toggle-title {
  text-decoration: none;
}

@media (any-hover: hover) {
  .wp-block-accordion-heading__toggle:hover {
    background-color: var(--color-background-green);
  }
}
/* 開閉アニメーション：JS で height を計測して制御（script.js の initBlockAccordion）
 * コアの display:none を上書き */
.p-block__content .wp-block-accordion-panel {
  display: block !important;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-block: 1.25rem 1.875rem;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-block__content .wp-block-accordion-panel {
    margin-block: 0.625rem 1.25rem;
  }
}

.p-block__content .wp-block-accordion-panel[inert] {
  display: block !important;
}

.p-block__content .wp-block-accordion-panel p {
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.9925;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-block__content .wp-block-accordion-panel p {
    font-size: max(0.875rem, 10px);
  }
}

@media (min-width: 768px) {
  .wp-block-columns {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
}
.p-block__content .wp-block-table.wp-block-table--1 th:not(:first-child) {
  width: 15%;
}
.p-block__content .wp-block-table.wp-block-table--1 tr > * {
  text-align: center;
}

.p-block__content .wp-block-table.wp-block-table--2 th:first-child {
  width: 25%;
}
.p-block__content .wp-block-table.wp-block-table--2 tr > * {
  text-align: center;
}

.p-breadcrumb {
  text-align: right;
}

.p-breadcrumb span {
  padding-inline: 0.3125rem;
  font-size: max(0.875rem, 10px);
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  display: inline-block;
}

.p-breadcrumb span.current-item {
  color: var(--color-main);
}

.p-breadcrumb__between {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-top: solid 1px currentColor;
  border-right: solid 1px currentColor;
  -webkit-transform: translateY(-30%) rotate(45deg);
          transform: translateY(-30%) rotate(45deg);
  margin-inline: 0.5rem;
}

.p-contact-banner__content {
  position: relative;
  padding: 3.125rem;
  border-radius: 0.625rem;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-contact-banner__content {
    padding: 2.5rem 1.25rem;
  }
}

.p-contact-banner__content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: url(../images/top/specialized-center-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.6;
  z-index: -1;
}

.p-contact-banner__text {
  margin-top: 3.125rem;
  text-align: center;
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.7425;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-contact-banner__text {
    margin-top: 1.25rem;
    font-size: max(0.875rem, 10px);
  }
}

.p-contact-banner__button-wrap {
  margin-top: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-contact-banner__button-wrap {
    margin-top: 1.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.625rem;
  }
}

.p-contact-banner__button .c-icon-button {
  min-width: 18.75rem;
  padding: 1.25rem 2.5rem;
  font-size: max(1.375rem, 10px);
  border: 2px solid var(--color-main);
  border-radius: 62.4375rem;
  background-color: var(--color-main);
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-contact-banner__button .c-icon-button {
    width: 18.75rem;
    font-size: max(1.125rem, 10px);
    padding: 0.625rem 0.625rem;
  }
}

.p-contact-banner__button .c-icon-button[data-nav=contact]::before {
  width: 2.1875rem;
  background-color: var(--color-white);
  -webkit-mask-image: url(../images/common/contact-icon.svg);
          mask-image: url(../images/common/contact-icon.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-image: none;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-contact-banner__button .c-icon-button[data-nav=contact]::before {
    width: 1.875rem;
  }
}

.p-contact-banner__button .c-icon-button[data-nav=tel]::before {
  width: 2.1875rem;
  background-color: var(--color-white);
  -webkit-mask-image: url(../images/common/phone-icon.svg);
          mask-image: url(../images/common/phone-icon.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-image: none;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-contact-banner__button .c-icon-button[data-nav=tel]::before {
    width: 1.875rem;
  }
}

@media (any-hover: hover) {
  .p-contact-banner__button .c-icon-button:hover {
    opacity: 1;
    background-color: var(--color-white);
    color: var(--color-main);
  }
  .p-contact-banner__button .c-icon-button:hover::before {
    background-color: var(--color-main);
  }
}
.p-contact__status-list {
  margin-top: 3.125rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 25rem;
  width: 100%;
  counter-reset: number;
}
@media screen and (max-width: 767px) {
  .p-contact__status-list {
    margin-top: 1.875rem;
    max-width: 18.75rem;
  }
}

.p-contact__status-item {
  width: 6.25rem;
  height: 6.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  border: 1px solid var(--color-main);
  font-size: max(1.25rem, 10px);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-contact__status-item {
    width: 5rem;
    height: 5rem;
  }
}

.p-contact__status-item.p-contact__status-item--current {
  background-color: var(--color-main);
  color: var(--color-white);
}

.p-contact__attention.c-accordion {
  max-width: 50rem;
  margin-inline: auto;
  margin-top: 3.125rem;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-contact__attention.c-accordion {
    margin-top: 1.875rem;
    padding-inline: 0.625rem;
  }
}

.p-contact__attention-heading.c-accordion__summary {
  font-size: max(1.25rem, 10px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .p-contact__attention-heading.c-accordion__summary {
    font-size: max(1.125rem, 10px);
  }
}

.p-contact__attention .c-accordion__wrap {
  padding-inline: 0;
}

.p-contact__attention-item {
  padding-left: 1em;
  position: relative;
}

.p-contact__attention-item::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.p-contact__form {
  margin-top: 3.125rem;
}

.p-contact__form-message.c-text {
  text-align: center;
}

.p-contact__form-return {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-contact__form-return {
    margin-top: 3.125rem;
  }
}

.p-contact__form-return .c-button {
  width: 18.75rem;
  font-size: max(1.25rem, 10px);
  padding-block: 0.9375rem;
  padding-inline: 1.875rem;
  margin-inline: auto;
}

.p-contact__form-return .c-button::after {
  width: 1.5625rem;
}

.p-content-section__article + .p-content-section__article,
.p-content-section__head + .p-content-section__article {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-content-section__article + .p-content-section__article,
  .p-content-section__head + .p-content-section__article {
    margin-top: 3.125rem;
  }
}

.p-content-section__content {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-content-section__content {
    margin-top: 1.25rem;
  }
}

.p-content-section__content[data-type=grid] {
  display: grid;
  grid-template-columns: 1fr 35%;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-content-section__content[data-type=grid] {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.p-content-section__content[data-type=grid45] {
  display: grid;
  grid-template-columns: 1fr 45%;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-content-section__content[data-type=grid45] {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.p-content-section__content[data-type=grid50] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-content-section__content[data-type=grid50] {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.p-content-section__content[data-type=grid60] > .p-content-section__table-wrap {
  margin-top: 0;
}

.p-content-section__content[data-type=grid60] {
  display: grid;
  grid-template-columns: 1fr 60%;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-content-section__content[data-type=grid60] {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.p-content-section__content[data-type=grid-3col] {
  width: 85%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-content-section__content[data-type=grid-3col] {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 1.25rem 0.625rem;
  }
}

.p-content-section__grid-img {
  width: 100%;
  height: auto;
}

.p-content-section__grid-img img {
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
  width: 100%;
}

.p-content-section__grid-img[data-ratio=vertical] img {
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
}

.p-content-section__grid-map {
  width: 100%;
  height: auto;
}

.p-content-section__grid-map iframe {
  aspect-ratio: 235/155;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  display: block;
}

.p-content-section__grid-img[data-type=radius] img {
  border-radius: 0.5rem;
}

.p-content-section__content-item a:has(img) {
  position: relative;
}
@media (any-hover: hover) {
  .p-content-section__content-item a:has(img) figure {
    overflow: hidden;
  }
  .p-content-section__content-item a:has(img) img {
    -webkit-transition: scale 0.3s ease-in-out;
    transition: scale 0.3s ease-in-out;
  }
  .p-content-section__content-item a:has(img):hover {
    opacity: 1;
  }
  .p-content-section__content-item a:has(img):hover img {
    scale: 1.1;
  }
}
.p-content-section__content-item a:has(img):focus-visible {
  opacity: 1;
}
.p-content-section__content-item a:has(img):focus-visible img {
  scale: 1.1;
}
.p-content-section__content-item a:has(img) {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}

.p-content-section__content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}

.p-content-section__lead {
  font-size: max(1.5rem, 10px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
  color: var(--color-main);
}
@media screen and (max-width: 767px) {
  .p-content-section__lead {
    font-size: max(1.375rem, 10px);
  }
}

.p-content-section__text {
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.7425;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-content-section__text {
    font-size: max(0.875rem, 10px);
  }
}

.p-content-section__text[data-weight=bold] {
  font-weight: 700;
}

.p-content-section__text[data-position=right] {
  text-align: right;
}

.p-content-section__text[data-color=main] {
  color: var(--color-main);
  font-size: max(1.125rem, 10px);
  line-height: 1.9166666667;
}
@media screen and (max-width: 767px) {
  .p-content-section__text[data-color=main] {
    font-size: max(1rem, 10px);
  }
}

.p-content-section__list + .p-content-section__text,
.p-content-section__text + .p-content-section__text {
  margin-top: 1.25rem;
}

.p-content-section__content-wrap .p-content-section__list + .p-content-section__text,
.p-content-section__content-wrap .p-content-section__text + .p-content-section__text,
.p-content-section__content-wrap .p-content-section__content-link {
  margin-top: 0;
}

.p-content-section__content-wrap[data-decoration=true] {
  position: relative;
}

.p-content-section__content-wrap[data-decoration=true]::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 15.625rem;
  height: auto;
  aspect-ratio: 250/264;
  background-image: url(../images/common/bg-logo.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* カード */
.p-content-section__card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-content-section__card {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.p-content-section__card-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0.625rem;
}

.p-content-section__card-img {
  width: 100%;
  height: auto;
}

.p-content-section__card-img img {
  aspect-ratio: 380/226;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
}

.p-content-section__card-title {
  font-size: max(1.25rem, 10px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-content-section__card-title {
    font-size: max(1.125rem, 10px);
  }
}

.p-content-section__card-text {
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.7425;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-content-section__card-text {
    font-size: max(0.875rem, 10px);
  }
}

/* リストのスタイル */
.p-content-section__list {
  margin-top: 1.875rem;
}

.p-content-section__list-item + .p-content-section__list-item {
  margin-top: 0.625rem;
}

.p-content-section__list-item:has(.p-content-section__list-item-title) + .p-content-section__list-item {
  margin-top: 1.875rem;
}

.p-content-section__list-item {
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.7425;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-content-section__list-item {
    font-size: max(0.875rem, 10px);
  }
}

.p-content-section__list-item:not(:has(.p-content-section__list-item-title)) {
  display: grid;
  grid-template-columns: 0.625rem 1fr;
  gap: 0 0.625rem;
}

ul .p-content-section__list-item:not(:has(.p-content-section__list-item-title))::before {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  background-color: var(--color-main);
  border-radius: 50%;
  margin-top: 0.625rem;
}

ol.p-content-section__list {
  counter-reset: list-num;
}

ol .p-content-section__list-item {
  counter-increment: list-num;
  grid-template-columns: 0.9375rem 1fr;
}

ol .p-content-section__list-item::before {
  content: counter(list-num) ".";
  font-size: max(1rem, 10px);
  font-weight: 700;
  overflow-wrap: initial;
}

.p-content-section__list-item-title {
  font-weight: 700;
  display: grid;
  grid-template-columns: 0.625rem 1fr;
  gap: 0 0.625rem;
}

.p-content-section__list-item-title:before {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  background-color: var(--color-main);
  border-radius: 50%;
  margin-top: 0.625rem;
}

.p-content-section__list-item-text {
  margin-top: 0.3125rem;
  padding-left: 1.25rem;
}

.p-content-section__list-item-text + .p-content-section__list-item-text {
  margin-top: 0.625rem;
  padding-top: 0.625rem;
  border-top: 1px solid var(--color-border);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

/* リード＋画像ブロック */
.p-content-section__head {
  margin-top: 1.875rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-content-section__head {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.p-content-section__head-text + .p-content-section__head-text {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-content-section__head-text + .p-content-section__head-text {
    margin-top: 1.25rem;
  }
}

.p-content-section__head-text {
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.7425;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-content-section__head-text {
    font-size: max(0.875rem, 10px);
  }
}

.p-content-section__head-image {
  width: 100%;
  height: auto;
  margin-inline: auto;
}

.p-content-section__head-image[data-width="80%"] {
  width: 80%;
}
@media screen and (max-width: 767px) {
  .p-content-section__head-image[data-width="80%"] {
    width: 100%;
  }
}

.p-content-section__head-image img {
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
  width: 100%;
}

/* 画像 */
.p-content-section__content-img {
  margin-top: 1.875rem;
  margin-inline: auto;
  width: 100%;
  height: auto;
}

.p-content-section__content-img + .p-content-section__content-img {
  margin-top: 1.25rem;
}

.p-content-section__content-img img {
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
  width: 100%;
}

.p-content-section__content-img[data-width="80%"] {
  width: 80%;
}
@media screen and (max-width: 767px) {
  .p-content-section__content-img[data-width="80%"] {
    width: 100%;
  }
}

figcaption {
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.78125;
  letter-spacing: 0.04em;
  margin-top: 0.625rem;
  padding-inline: 0.625rem 0;
}
@media screen and (max-width: 767px) {
  figcaption {
    font-size: max(0.875rem, 10px);
  }
}

figcaption[data-position=right] {
  text-align: right;
}

/* テーブル */
.p-content-section__table-wrap {
  margin-top: 1.875rem;
}

.p-content-section__table-wrap .c-table tbody th,
.p-content-section__table-wrap .c-table tbody td {
  text-align: left;
  vertical-align: middle;
  font-weight: 500;
  font-size: max(1rem, 10px);
  line-height: 1.75;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-content-section__table-wrap .c-table tbody th,
  .p-content-section__table-wrap .c-table tbody td {
    font-size: max(0.875rem, 10px);
  }
}

.p-content-section__table-wrap .c-table[data-position=center] tbody th,
.p-content-section__table-wrap .c-table[data-position=center] tbody td {
  text-align: center;
}

.p-content-section__reception-dial {
  margin-top: 1.5rem;
  font-size: max(1rem, 10px);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-content-section__reception-dial {
    margin-top: 1.25rem;
    font-size: max(0.875rem, 10px);
  }
}

.p-content-section__reception-dial-label {
  font-weight: 700;
}

/* リンク（wrap あり＝wrap のみ margin / wrap なし＝link 自体に margin） */
.p-content-section__content-link-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-content-section__content-link-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.625rem;
  }
}

.p-content-section__content-link-wrap + .p-content-section__content-link-wrap {
  margin-top: 0.625rem;
}

/* wrap 内の link は margin なし（gap で間隔。2本目に + の margin が効かないように打ち消す） */
.p-content-section__content-link-wrap .p-content-section__content-link {
  margin-top: 0;
}

.p-content-section__content-link-wrap .p-content-section__content-link + .p-content-section__content-link {
  margin-top: 0;
}

.p-content-section__content-link-wrap[data-position=center] {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-content-section__content-link-wrap[data-position=center] .p-content-section__content-link a.c-button {
  width: 18.75rem;
  font-size: max(1.25rem, 10px);
  padding-block: 0.9375rem;
  padding-inline: 1.875rem;
}

.p-content-section__content-link[data-size=large] a.c-button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: max(1.25rem, 10px);
  padding-block: 0.9375rem;
  padding-inline: 1.875rem;
}

.p-content-section__content-link[data-size=large] a.c-button::after {
  width: 1.25rem;
}

.p-content-section__content-link {
  margin-top: 1.875rem;
}

.p-content-section__content-link + .p-content-section__content-link {
  margin-top: 0.625rem;
}

.p-content-section__content-link a:not(.c-button) {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--color-black);
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 0.125rem;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-content-section__content-link a:not(.c-button) {
    font-size: max(0.875rem, 10px);
  }
}

/* デフォルトはアイコンなし（::before は幅0でテキストのみ中央） */
.p-content-section__content-link a:not(.c-button)::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 0;
  overflow: hidden;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* PDFなどアイコンありのときだけ ::before に幅を付けて flex で並ぶ */
.p-content-section__content-link a:not(.c-button)[href$=".pdf"]::before {
  width: 1.875rem;
  aspect-ratio: 34/30;
  overflow: visible;
  background-image: url(../images/common/pdf-icon-red.svg);
}

@media (any-hover: hover) {
  .p-content-section__content-link a:not(.c-button):hover {
    opacity: 1;
    color: #036ea9;
  }
}
.p-content-section__map {
  width: 100%;
  height: auto;
}

.p-content-section__map iframe {
  aspect-ratio: 1100/550;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border: none;
}

.p-content-section .gsc-above-wrapper-area,
.p-content-section .gsc-wrapper {
  max-width: 100%;
  width: 100%;
}

/* （the_content()で出力したものへのスタイル） */
/* 要素間の余白 */
.p-content h2 {
  margin-block: 5rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-content h2 {
    margin-block: 3rem 1.25rem;
  }
}

.p-content h3 {
  margin-block: 3.75rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-content h3 {
    margin-block: 1.875rem 1.25rem;
  }
}

.p-content h4 {
  margin-block: 1.875rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-content h4 {
    margin-block: 1.25rem 0.625rem;
  }
}

.p-content h5 {
  margin-block: 1.25rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-content h5 {
    margin-block: 0.9375rem 0.625rem;
  }
}

.p-content p {
  margin-block: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-content p {
    margin-block: 0.625rem;
  }
}

.p-content figure,
.p-content > ul,
.p-content > ol,
.p-content .wp-block-table {
  margin-block: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-content figure,
  .p-content > ul,
  .p-content > ol,
  .p-content .wp-block-table {
    margin-block: 1.25rem;
  }
}

.p-content .wp-block-button {
  margin-block: 1.5rem 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-content .wp-block-button {
    margin-block: 1.25rem 2rem;
  }
}

/* font-size */
.p-content p,
.p-content li,
.p-content th,
.p-content td {
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-content p,
  .p-content li,
  .p-content th,
  .p-content td {
    font-size: max(0.875rem, 10px);
  }
}

.p-content h2 {
  font-size: max(1.375rem, 10px);
  line-height: 2;
  font-weight: 700;
  background: var(--border-line);
}
@media screen and (max-width: 767px) {
  .p-content h2 {
    font-size: max(1.25rem, 10px);
  }
}

.p-content h3 {
  font-size: max(1.25rem, 10px);
  line-height: 2;
  font-weight: 700;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-content h3 {
    font-size: max(1.125rem, 10px);
  }
}

.p-content h3::before {
  content: "";
  width: 0.3125rem;
  height: 1lh;
  border-radius: 0.625rem;
  background-color: var(--color-main);
}

.p-content h4 {
  padding: 0.875rem 1.6875rem;
  font-size: max(1.125rem, 10px);
  line-height: 2;
  font-weight: 700;
  letter-spacing: 0.05em;
  background-color: var(--color-background-anchor);
}
@media screen and (max-width: 767px) {
  .p-content h4 {
    font-size: max(1rem, 10px);
  }
}

.p-content h5 {
  font-size: max(1.0625rem, 10px);
  line-height: 2;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-content h5 {
    font-size: max(1rem, 10px);
  }
}

.p-content a:not(.wp-block-button *) {
  color: var(--color-main);
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}

.p-content a[href^="tel:"] {
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-content a[href^="tel:"] {
    text-decoration: underline;
  }
}

.p-content .wp-block-button__link {
  width: 100%;
  min-width: 12.5rem;
  padding: 1.25rem;
  display: inline-block;
  font-size: max(1rem, 10px);
  line-height: 1;
  color: var(--color-white);
  background-color: var(--color-main);
  border: 1px solid var(--color-main);
  text-align: center;
  border-radius: 1.875rem;
  -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .p-content .wp-block-button__link:hover {
    opacity: 1;
    color: var(--color-main);
    background-color: var(--color-white);
  }
}
.p-content img {
  width: auto;
}

.p-content figure.aligncenter,
.p-content img.aligncenter {
  margin-right: auto;
  margin-left: auto;
}

.p-content figure.alignright,
.p-content img.alignright {
  margin-left: auto;
}

.p-content figcaption {
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-top: 0.625rem;
  padding-inline: 0.625rem;
}

.p-content ol,
.p-content ul {
  list-style: revert;
  padding-left: 1.5em;
}

.p-content li {
  display: list-item;
}

/* table */
.p-content .wp-block-table,
.wp-block-table thead {
  border: none;
}

.p-content .wp-block-table table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}

.p-content .wp-block-table tr > * {
  border: 1px solid var(--color-border);
  padding: 0.625rem;
}

.p-content .wp-block-table tr:has(> th) {
  background-color: var(--color-main);
  color: var(--color-white);
}

.p-content em {
  font-style: italic;
}

.p-doctors-link__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-doctors-link__items {
    gap: 0.625rem 0.3125rem;
  }
}

.p-doctors-link__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 13.125rem;
  padding: 0.5rem 0.3125rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-main);
  border-radius: 1.375rem;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.78125;
  color: var(--color-main);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-doctors-link__item a {
    width: 10.625rem;
    font-size: max(0.8125rem, 10px);
    padding: 0.3125rem;
  }
}

.p-doctors-link__item.is-long a {
  font-size: 0.8125rem;
  line-height: 2.1923076923;
}
@media screen and (max-width: 767px) {
  .p-doctors-link__item.is-long a {
    font-size: max(0.6875rem, 10px);
  }
}

@media (any-hover: hover) {
  .p-doctors-link__item a:hover {
    background-color: var(--color-main);
    color: var(--color-white);
    opacity: 1;
  }
}
.p-doctors-list__items-wrap {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-doctors-list__items-wrap {
    margin-top: 2.5rem;
  }
}

.p-doctors-list__items {
  display: grid;
  gap: 3.125rem 1.875rem;
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 767px) {
  .p-doctors-list__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.875rem;
  }
}

@media (any-hover: hover) {
  .p-doctors-list__link figure {
    overflow: hidden;
  }
  .p-doctors-list__link img {
    -webkit-transition: scale 0.3s ease-in-out;
    transition: scale 0.3s ease-in-out;
  }
  .p-doctors-list__link:hover {
    opacity: 1;
  }
  .p-doctors-list__link:hover img {
    scale: 1.1;
  }
}
.p-doctors-list__link:focus-visible {
  opacity: 1;
}
.p-doctors-list__link:focus-visible img {
  scale: 1.1;
}

.p-doctors-list__img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.p-doctors-list__img img {
  aspect-ratio: 2/3;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
  border-radius: 0.5rem;
}

.p-doctors-list__info {
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-doctors-list__info {
    margin-top: 0.625rem;
  }
}

.p-doctors-list__position {
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--color-main);
}
@media screen and (max-width: 767px) {
  .p-doctors-list__position {
    font-size: max(0.75rem, 10px);
  }
}

.p-doctors-list__name {
  margin-top: 0.625rem;
  font-size: max(1.25rem, 10px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-main);
}
@media screen and (max-width: 767px) {
  .p-doctors-list__name {
    margin-top: 0.3125rem;
    font-size: max(1rem, 10px);
  }
}

.p-doctors-list__name-en {
  display: inline-block;
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: var(--color-main);
}
@media screen and (max-width: 767px) {
  .p-doctors-list__name-en {
    margin-top: 0.3125rem;
    font-size: max(0.875rem, 10px);
  }
}

.p-doctors-single + .p-doctors-single {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-doctors-single + .p-doctors-single {
    margin-top: 3.125rem;
  }
}

.p-doctors-single {
  display: grid;
  gap: 3.125rem;
  grid-template-columns: 20% 1fr;
}
@media screen and (max-width: 767px) {
  .p-doctors-single {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.p-doctors-single__img {
  width: 100%;
  height: auto;
}

.p-doctors-single__img img {
  aspect-ratio: 2/3;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
  border-radius: 0.5rem;
}

.p-doctors-single__content {
  padding-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-doctors-single__content {
    padding-inline: 0.625rem;
  }
}

.p-doctors-single__position {
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-doctors-single__position {
    font-size: max(0.875rem, 10px);
  }
}

.p-block__content p.p-doctors-single__title,
.p-doctors-single__title {
  margin-top: 0.625rem;
  font-size: max(1.5rem, 10px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-block__content p.p-doctors-single__title,
  .p-doctors-single__title {
    font-size: max(1.25rem, 10px);
  }
}

.p-doctors-single__title-en {
  display: inline-block;
  margin-left: 1.25rem;
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-doctors-single__title-en {
    font-size: max(0.875rem, 10px);
  }
}

.p-doctors-single__info-list {
  margin-top: 2.5rem;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, rgb(var(--color-main-rgb)/1)), color-stop(20%, rgb(var(--color-main-rgb)/1)), color-stop(20%, rgb(var(--color-main-rgb)/0.2)), to(rgb(var(--color-main-rgb)/0.2))) top/100% 2px no-repeat;
  background: linear-gradient(to right, rgb(var(--color-main-rgb)/1) 0, rgb(var(--color-main-rgb)/1) 20%, rgb(var(--color-main-rgb)/0.2) 20%, rgb(var(--color-main-rgb)/0.2) 100%) top/100% 2px no-repeat;
}
@media screen and (max-width: 767px) {
  .p-doctors-single__info-list {
    margin-top: 1.25rem;
  }
}

.p-doctors-single__info-item {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 20% 1fr;
  background: var(--border-line);
  padding-block: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-doctors-single__info-item {
    grid-template-columns: 1fr;
    gap: 0.625rem;
  }
}

.p-doctors-single__info-item-title {
  text-align: center;
  color: var(--color-main);
}
@media screen and (max-width: 767px) {
  .p-doctors-single__info-item-title {
    font-size: max(1rem, 10px);
    text-align: left;
  }
}

.p-single__nav.p-doctors-single__nav {
  border: none;
}

.p-documents__content + .p-documents__content {
  margin-top: 6.25rem;
}

.p-documents__content-text {
  margin-top: 1.875rem;
}

.p-documents__content-list {
  padding-inline: 3.125rem;
  margin-top: 1.875rem;
  display: grid;
  gap: 0.3125rem;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (max-width: 767px) {
  .p-documents__content-list {
    padding-inline: 0.625rem;
  }
}

.p-documents__content-item-title {
  margin-top: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  font-size: max(1.125rem, 10px);
  font-weight: 500;
  line-height: 1.5555555556;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-documents__content-item-title {
    font-size: max(1rem, 10px);
    line-height: 1.625;
  }
}

/* PDFリンクのときだけアイコン表示 */
.p-documents__content-item a[href$=".pdf"] .p-documents__content-item-title::before {
  content: "";
  width: 2.125rem;
  height: auto;
  aspect-ratio: 34/30;
  background-image: url(../images/common/pdf-icon-red.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-documents__content-item-title::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-top: solid 1px currentColor;
  border-right: solid 1px currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.p-documents__content-item a {
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .p-documents__content-item a:hover {
    opacity: 1;
    color: #036ea9;
  }
}
.p-facility__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3.125rem;
  max-width: 75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-facility__content {
    grid-template-columns: 1fr;
    max-width: 25rem;
  }
}

.p-facility__content-item {
  border-radius: 0.625rem;
  border: 1px solid var(--color-main);
}

.p-facility__content-item a {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (any-hover: hover) {
  .p-facility__content-item a figure {
    overflow: hidden;
  }
  .p-facility__content-item a img {
    -webkit-transition: scale 0.3s ease-in-out;
    transition: scale 0.3s ease-in-out;
  }
  .p-facility__content-item a:hover {
    opacity: 1;
  }
  .p-facility__content-item a:hover img {
    scale: 1.1;
  }
}
.p-facility__content-item a:focus-visible {
  opacity: 1;
}
.p-facility__content-item a:focus-visible img {
  scale: 1.1;
}

.p-facility__content-item-title {
  font-size: max(1.25rem, 10px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
  padding: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-facility__content-item-title {
    font-size: max(1.125rem, 10px);
  }
}

.p-facility__content-item-title span {
  display: block;
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.7425;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-facility__content-item-title span {
    font-size: max(0.875rem, 10px);
  }
}

.p-facility__content-item-image {
  width: 100%;
  height: auto;
  border-radius: 0 0.5rem 0.5rem 0;
}

.p-facility__content-item-image img {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
  border-radius: 0 0.5rem 0.5rem 0;
}

.p-flow-content[data-target=professional] {
  --label-bg: var(--color-background-anchor);
  --arrow-bg: #284e3e;
}

.p-flow-content[data-target=first] {
  --label-bg: #e6f5ff;
  --arrow-bg: #0091da;
}

.p-flow-content[data-target=repeat] {
  --label-bg: #f4f9df;
  --arrow-bg: #1e8839;
}

.p-flow-content {
  max-width: 62.5rem;
  margin-inline: auto;
  background-image: url(../images/common/background-image.webp);
  background-repeat: repeat;
  background-size: auto;
  border-radius: 0.5rem;
  padding: 1.875rem 1.875rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-flow-content {
    padding: 1.25rem 0.625rem 1.875rem;
  }
}

.p-flow-content__item {
  background-color: var(--color-white);
  border-radius: 0.5rem;
  padding-block: 1.6875rem 2.8125rem;
  padding-inline: 1.25rem;
}

.p-flow-content__item:not(:first-child) {
  margin-top: 2.5rem;
}

.p-flow-content__item:not(:last-child) {
  position: relative;
}

.p-flow-content__item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -1.4375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 3.75rem;
  height: 1.4375rem;
  background-color: var(--arrow-bg);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  pointer-events: none;
}

.p-flow-content__head {
  display: grid;
  gap: 1.375rem;
  grid-template-columns: 5.0625rem 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-flow-content__head {
    grid-template-columns: 3.75rem 1fr;
    gap: 0.5rem;
  }
}

.p-flow-content__label {
  background-color: var(--label-bg);
  width: 5.0625rem;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.3125rem;
  font-size: max(1rem, 10px) !important;
  font-weight: 500;
  line-height: 1 !important;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-flow-content__label {
    width: 3.75rem;
    font-size: max(0.875rem, 10px) !important;
  }
}

.p-flow-content__label span {
  display: block;
  margin-left: 0.3125rem;
  font-size: max(1.375rem, 10px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--arrow-bg);
}
@media screen and (max-width: 767px) {
  .p-flow-content__label span {
    font-size: max(1.25rem, 10px);
  }
}

.p-flow-content__item-title {
  font-size: max(1.25rem, 10px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
  color: var(--color-black);
}
@media screen and (max-width: 767px) {
  .p-flow-content__item-title {
    font-size: max(1.125rem, 10px);
  }
}

.p-flow-content__body {
  margin-top: 0.875rem;
  display: grid;
  gap: 1.25rem 0.625rem;
  grid-template-columns: 1fr;
}
@media screen and (max-width: 767px) {
  .p-flow-content__body {
    gap: 0.625rem 0.3125rem;
  }
}

.p-flow-content__body:has(.p-flow-content__item-text span[data-size=large]) {
  gap: 0;
}

.p-flow-content__body:has(.p-outpatient-flow__content-img) {
  grid-template-columns: 1fr 17.5rem;
}
@media screen and (max-width: 767px) {
  .p-flow-content__body:has(.p-outpatient-flow__content-img) {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.p-outpatient-flow__content-img img {
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
  width: 100%;
  max-width: 25rem;
}

.p-flow-content__body:has(.p-flow-content__item-note-img) {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem 1.25rem;
  width: 80%;
}
@media screen and (max-width: 767px) {
  .p-flow-content__body:has(.p-flow-content__item-note-img) {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.p-flow-content__body:has(.p-flow-content__item-note-img) .p-flow-content__item-text {
  grid-area: 1/1/2/3;
}
@media screen and (max-width: 767px) {
  .p-flow-content__body:has(.p-flow-content__item-note-img) .p-flow-content__item-text {
    grid-area: initial;
  }
}

.p-flow-content__item-note-img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-flow-content__item-note-img {
    width: 100%;
    max-width: 25rem;
  }
}

.p-flow-content__item-note-img img {
  aspect-ratio: 380/235;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
}

.p-flow-content__item-text.c-text {
  padding-top: 1.25rem;
  padding-left: 0.1875rem;
}

.p-flow-content__item-text:not(.c-text) {
  padding-top: 0.625rem;
  padding-left: 0.1875rem;
  font-size: max(0.9375rem, 10px);
  font-weight: 500;
  line-height: 1.7476666667;
  letter-spacing: 0.04em;
  color: var(--color-black);
}
@media screen and (max-width: 767px) {
  .p-flow-content__item-text:not(.c-text) {
    font-size: max(0.875rem, 10px);
  }
}

.p-flow-content__item-text a {
  color: #036ea9;
}

.p-flow-content__item-note-text[data-color=red] {
  color: var(--color-accent);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-flow-content__item-note-text[data-color=red] {
    font-size: max(1rem, 10px);
  }
}

.p-flow-content__item-text span[data-size=large] {
  font-size: max(1.125rem, 10px);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-flow-content__item-text span[data-size=large] {
    font-size: max(1rem, 10px);
  }
}

.p-flow-content__item-text a[href^="tel:"],
.p-flow-content__item-text span[data-color=accent] {
  color: var(--color-accent);
  font-size: max(1.125rem, 10px);
  font-weight: 700;
}

.p-flow-content__item-note-wrap {
  padding-left: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-flow-content__item-note-wrap {
    padding-left: 0;
  }
}

.p-flow-content__item-note {
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  display: grid;
  grid-template-columns: 0.625rem 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.625rem;
}

.p-flow-content__item-note::before {
  content: "";
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  background-color: var(--color-accent);
  border-radius: 50%;
}

.p-flow-content__img-wrap {
  margin-top: 1.875rem;
  max-width: 43.75rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .p-flow-content__img-wrap {
    margin-top: 0;
  }
}

.p-flow-content__img {
  width: 100%;
  height: auto;
}

.p-flow-content__img[data-width="50%"] {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-flow-content__img[data-width="50%"] {
    width: 100%;
    max-width: 25rem;
  }
}

.p-flow-content__img img {
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
  width: 100%;
}

.p-flow-content__link-wrap {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-flow-content__link-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.625rem;
  }
}

.p-flow-content__link .c-icon-button {
  width: 100%;
  border-radius: 0.5rem;
  padding: 0.6875rem 1.4375rem;
  min-height: 3.75rem;
  color: var(--color-black);
}
@media screen and (max-width: 767px) {
  .p-flow-content__link .c-icon-button {
    max-width: 25rem;
    min-height: 2.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0.625rem;
    padding: 0.625rem;
  }
}

.p-flow-content__item-list-wrap {
  margin-top: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-flow-content__item-list-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
  }
}

.p-flow-content__item-list {
  margin-top: 0.625rem;
  border: 1px solid var(--color-border);
  padding: 1.25rem 1.875rem;
  border-radius: 0.5rem;
}

.p-flow-content__item-list-item + .p-flow-content__item-list-item {
  margin-top: 0.625rem;
}

.p-flow-content__item-list-item {
  display: grid;
  grid-template-columns: 0.625rem 1fr;
  gap: 0 0.625rem;
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.515625;
  color: var(--color-main);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-flow-content__item-list-item {
    font-size: max(0.875rem, 10px);
    line-height: 1.7321428571;
  }
}

ul .p-flow-content__item-list-item::before {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  background-color: var(--color-main);
  border-radius: 50%;
  margin-top: 0.625rem;
}

ol.p-flow-content__item-list {
  counter-reset: list-num;
}

ol .p-flow-content__item-list-item {
  counter-increment: list-num;
  grid-template-columns: 0.9375rem 1fr;
}

ol .p-flow-content__item-list-item::before {
  content: counter(list-num) ".";
  font-size: max(1rem, 10px);
  font-weight: 700;
  overflow-wrap: initial;
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  margin-top: 0;
}

.p-footer {
  position: relative;
}

.p-footer-page-top {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 3.25rem;
  height: auto;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-footer-page-top {
    width: 2.5rem;
    bottom: 4.5625rem;
  }
}

.p-footer-page-top a {
  display: block;
  width: 100%;
  height: 100%;
}

.p-footer-page-top img {
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
  width: 100%;
}

.p-footer__nav-wrap {
  background-color: var(--color-background2);
  padding-block: 4.375rem 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-wrap {
    padding-block: 1.0625rem;
  }
}

.p-footer__accordion-trigger {
  display: none;
}
@media screen and (max-width: 1023px) {
  .p-footer__accordion-trigger {
    display: block;
    position: relative;
    width: 97.1428571429%;
    margin-inline: auto;
    padding: 1.0625rem 1.875rem;
    background-color: var(--color-main);
    color: var(--color-white);
    font-size: max(1rem, 10px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.04em;
    text-align: left;
    border-radius: 0.5rem;
    cursor: pointer;
  }
}

@media screen and (max-width: 1023px) {
  .p-footer__accordion-trigger::before,
  .p-footer__accordion-trigger::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 1.875rem;
    width: 1rem;
    height: 2px;
    background-color: var(--color-white);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
}

@media screen and (max-width: 1023px) {
  .p-footer__accordion-trigger::before {
    -webkit-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
  }
}

@media screen and (max-width: 1023px) {
  .p-footer__accordion-trigger.is-open::before {
    -webkit-transform: translateY(-50%) rotate(0deg);
            transform: translateY(-50%) rotate(0deg);
  }
}

.p-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.625rem;
}
@media screen and (max-width: 1023px) {
  .p-footer__nav {
    width: 100%;
    max-width: 62.5rem;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3.125rem 0;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.4s ease-in-out, padding-top 0.4s ease-in-out;
    transition: max-height 0.4s ease-in-out, padding-top 0.4s ease-in-out;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav {
    max-width: 23.4375rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}

@media screen and (max-width: 1023px) {
  .p-footer__nav.is-open {
    max-height: 2000px;
    padding-top: 3.125rem;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__column:nth-child(1) {
    grid-area: 1/1/2/3;
    padding-left: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__column:nth-child(2) {
    margin-top: 2.5rem;
    grid-area: 2/1/3/2;
  }
}

.p-footer__column:nth-child(3) {
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-footer__column:nth-child(3) {
    margin-top: -0.625rem;
    grid-area: 3/1/4/2;
  }
}

.p-footer__column:nth-child(4) {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-footer__column:nth-child(4) {
    margin-top: 4.1875rem;
    grid-area: 2/2/4/3;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__column:nth-child(2) .p-footer__column-subtitle,
  .p-footer__column:nth-child(4) .p-footer__column-subtitle {
    padding-left: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__column:nth-child(2) a,
  .p-footer__column:nth-child(3) a,
  .p-footer__column:nth-child(4) a {
    padding-left: 1.25rem;
  }
}

@media screen and (max-width: 1023px) {
  .p-footer__column:nth-child(5) {
    grid-area: 2/2/3/3;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__column:nth-child(5) {
    margin-top: 3.125rem;
    grid-area: 4/1/5/3;
    padding-left: 1.25rem;
  }
}

@media screen and (max-width: 1023px) {
  .p-footer__column:nth-child(6) {
    grid-area: 2/3/3/4;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__column:nth-child(6) {
    margin-top: 1.25rem;
    grid-area: 5/1/6/3;
    padding-left: 1.25rem;
  }
}

.p-footer__column-group + .p-footer__column-group {
  margin-top: 2.625rem;
}

.p-footer__column-title:not(:has(a)),
.p-footer__column-title a {
  font-size: max(1rem, 10px);
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.04em;
  position: relative;
  color: var(--color-main);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.1875rem;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.125rem;
  -webkit-transition: text-decoration-color 0.3s ease-in-out;
  transition: text-decoration-color 0.3s ease-in-out;
}

.p-footer__column-title:not(:has(a))::before,
.p-footer__column-title a::before {
  content: "";
  margin-top: -1.25rem;
  background-image: url(../images/common/sub-title.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 2rem;
  height: auto;
  aspect-ratio: 32/30;
}

.p-footer__column-list {
  margin-top: 0.75rem;
}

.p-footer__column-subtitle {
  margin-top: 0.9375rem;
  padding-left: 2.8125rem;
  font-size: max(1rem, 10px);
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.04em;
  color: var(--color-main);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3125rem;
}

.p-footer__column-subtitle::before {
  content: "";
  width: 0.3125rem;
  height: 2px;
  background-color: var(--color-main);
}

.p-footer__column-list a {
  display: inline-block;
  padding-left: 2.8125rem;
  padding-block: 0.5rem;
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  line-height: 1.4642857143;
  color: var(--color-black);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.125rem;
  -webkit-transition: text-decoration-color 0.3s ease-in-out;
  transition: text-decoration-color 0.3s ease-in-out;
}

.p-footer__column-list a.p-footer__external-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3125rem;
}

.p-footer__external-link::after {
  content: "";
  width: 0.75rem;
  height: autp;
  aspect-ratio: 1/1;
  background-image: url(../images/common/external-link.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-footer__wrap {
  padding-block: 1.6875rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__wrap {
    padding-block: 1.6875rem 0;
  }
}

.p-footer__wrap-inner.l-inner {
  padding-inline: 5rem;
  display: grid;
  gap: 3.75rem 2.5rem;
  grid-template-columns: 1fr 26.4375rem;
}
@media screen and (max-width: 767px) {
  .p-footer__wrap-inner.l-inner {
    grid-template-columns: 1fr;
    gap: 1.875rem;
    padding-inline: 1rem;
  }
}

.p-footer__left {
  grid-area: 1/1/2/2;
  padding-top: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__left {
    grid-area: initial;
    padding-top: 0;
  }
}

.p-footer__logo {
  max-width: 18.125rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    margin-left: 0.9375rem;
  }
}

.p-footer__logo a {
  padding: 0.625rem 0;
  display: block;
}

.p-footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-footer__address-wrap {
  margin-top: 0.5rem;
  padding-left: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__address-wrap {
    margin-top: 0.375rem;
    padding-left: 1.4375rem;
  }
}

.p-footer__address {
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  line-height: 2.3214285714;
  letter-spacing: 0;
  color: var(--color-black);
}

.p-footer__contact-wrap {
  margin-top: 0.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-footer__contact-wrap {
    margin-top: 0.75rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.875rem;
  }
}

.p-footer__tel a {
  font-size: max(1.25rem, 10px);
  font-weight: 700;
  line-height: 1;
  color: var(--color-black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}

.p-footer__tel a:before {
  content: "";
  width: 1.125rem;
  height: 1.125rem;
  background-image: url(../images/common/phone-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.p-footer__contact .c-icon-button {
  font-size: max(0.875rem, 10px);
  padding-inline: 1.3125rem;
}
@media screen and (max-width: 767px) {
  .p-footer__contact .c-icon-button {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    border-radius: 1.125rem;
    padding-block: 0.3125rem;
  }
}

.p-footer__privacy a {
  margin-top: 0.625rem;
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--color-black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-footer__privacy a {
    margin-top: 1.0625rem;
  }
}

.p-footer__privacy a::before {
  content: "";
  width: 0.3125rem;
  height: 2px;
  background-color: var(--color-black);
}

.p-footer__nav-items {
  display: grid;
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
  grid-template-columns: repeat(2, 1fr);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-footer__nav-item a {
  padding: 0.9375rem 0.625rem;
  display: block;
  font-size: max(1rem, 10px);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item a {
    font-size: max(0.875rem, 10px);
  }
}

.p-footer__right {
  grid-area: 1/2/2/3;
}
@media screen and (max-width: 767px) {
  .p-footer__right {
    grid-area: initial;
    padding-inline: 0.625rem;
  }
}

.p-footer__right-label {
  font-size: max(1.125rem, 10px);
  font-weight: 500;
  line-height: 1;
  color: var(--color-black);
  letter-spacing: 0.04em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-footer__right-label {
    padding-left: 0.625rem;
    gap: 0.625rem;
  }
}

.p-footer__right-label::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.375rem;
  height: auto;
  background-image: url(../images/common/clock-icon.svg);
  aspect-ratio: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.p-footer__table {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-footer__table {
    margin-top: 1.375rem;
  }
}

.p-footer__copyright {
  grid-area: 2/1/3/3;
  border-top: 1px solid var(--color-border);
  text-align: center;
  padding: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    grid-area: initial;
    margin-top: 0.8125rem;
    margin-inline: calc(50% - 50cqi);
    padding: 1.5625rem;
  }
}

.p-footer__copyright small {
  display: block;
  font-size: max(0.75rem, 10px);
  font-weight: 500;
  line-height: 1;
  color: var(--color-black);
}

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

.p-form__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 50rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-form__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-form__wrap.p-form__wrap--textarea {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

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

.p-form__label {
  max-width: 12.5rem;
  width: 100%;
  font-size: max(0.9375rem, 10px);
}

.p-form__wrap.p-form__wrap--textarea .p-form__label {
  margin-top: 0.625rem;
}

.p-form__contents--confirm .p-form__wrap--textarea .p-form__label {
  margin-top: 0;
}

.u-required {
  display: inline-block;
  color: #FF003D;
  margin-left: 0.625rem;
  padding: 0.3125rem;
  border: 1px solid #FF003D;
  font-size: max(0.75rem, 10px);
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .p-form__input,
  .p-form__select,
  .p-form__radio,
  .p-form__checkbox,
  .p-form__textarea {
    margin-top: 0.625rem;
  }
}

.p-form__input,
.p-form__textarea,
.p-form__select {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
}

.p-form__submit-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.875rem;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-form__submit-wrap {
    margin-top: 1.875rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
  }
}

.p-form__submit-wrap > .p-form__submit {
  margin-top: 0;
}

.p-form__submit {
  margin-top: 3.75rem;
  text-align: center;
}

.p-form__input input {
  padding: 0.5rem 0.9375rem;
  width: 100%;
  font-size: max(1rem, 16px);
  line-height: 1;
  border-radius: 0;
  border: 1px solid var(--color-gray);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  background-image: none;
}

.p-form__input input:focus {
  border: 1px solid var(--color-gray);
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.p-form__textarea textarea {
  padding: 0.5rem 0.9375rem;
  width: 100%;
  min-height: 9.375rem;
  font-size: max(0.9375rem, 10px);
  border-radius: 0;
  border: 1px solid var(--color-gray);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  background-image: none;
  field-sizing: content;
  resize: none;
}

.p-form__textarea textarea:focus {
  border: 1px solid var(--color-gray);
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.p-form__select {
  position: relative;
}
.p-form__select::after {
  content: "";
  position: absolute;
  right: 0.9375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 0.3125rem solid transparent;
  border-right: 0.3125rem solid transparent;
  border-top: 0.375rem solid var(--color-black);
  pointer-events: none;
}

.p-form__select select {
  padding: 0.71875rem 3.125rem 0.71875rem 0.9375rem;
  width: 100%;
  font-size: max(0.9375rem, 10px);
  line-height: 1;
  border-radius: 0;
  border: 1px solid var(--color-gray);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  color: var(--color-black);
}

.p-form__select select::-ms-expand {
  display: none;
}

.p-form__select select:focus {
  border: 1px solid var(--color-gray);
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.p-form__radio label {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-form__radio label {
    display: block;
  }
}

.p-form__radio label:not(:first-of-type) {
  margin-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-form__radio label:not(:first-of-type) {
    margin-top: 0.625rem;
    margin-left: 0;
  }
}

.p-form__radio input {
  display: none;
}

.p-form__radio input + span {
  padding: 0 0 0 1.5625rem;
  position: relative;
  display: block;
  font-size: max(0.9375rem, 10px);
  line-height: 1;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-form__radio input + span {
    display: inline-block;
  }
}

.p-form__radio input + span::before {
  content: "";
  width: 0.9375rem;
  height: 0.9375rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: var(--color-white);
  border: 1px solid var(--color-gray);
  border-radius: 50%;
}

.p-form__radio input + span::after {
  content: "";
  padding: 0.125rem;
  width: 0.4375rem;
  height: 0.4375rem;
  position: absolute;
  top: 50%;
  left: 0.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid transparent;
  border-radius: 50%;
  background: #000;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-form__radio input:checked + span::after {
  opacity: 1;
}

.p-form__checkbox label {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-form__checkbox label {
    display: block;
  }
}

.p-form__checkbox label:not(:first-of-type) {
  margin-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-form__checkbox label:not(:first-of-type) {
    margin-top: 0.625rem;
    margin-left: 0;
  }
}

.p-form__checkbox input {
  display: none;
}

.p-form__checkbox input + span {
  cursor: pointer;
  display: inline-block;
  padding: 0 0 0 1.5625rem;
  position: relative;
  font-size: max(0.9375rem, 10px);
  line-height: 1;
}

.p-form__checkbox input + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: var(--color-white);
  border: 1px solid var(--color-gray);
  display: block;
  width: 0.9375rem;
  height: 0.9375rem;
}

.p-form__checkbox input + span::after {
  content: "";
  margin-top: -0.125rem;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  display: block;
  width: 0.9375rem;
  height: 0.5rem;
  border-bottom: 0.1875rem solid #000;
  border-left: 0.1875rem solid #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}

.p-form__checkbox input:checked + span::after {
  opacity: 1;
}

.p-contact__form-privacy {
  margin-top: 1.25rem;
  text-align: center;
}

.p-contact__form-checkbox-text.c-text {
  font-size: max(0.9375rem, 10px);
}
@media screen and (max-width: 767px) {
  .p-contact__form-checkbox-text.c-text {
    max-width: 25.625rem;
    margin-inline: auto;
    font-size: max(0.75rem, 10px);
  }
}

.p-contact__form-checkbox-text.c-text a {
  text-decoration: underline;
  text-decoration-color: var(--color-black);
  text-underline-offset: 1px;
  text-decoration-thickness: 1px;
  color: var(--color-black);
}

.p-contact__form-privacy label {
  margin-top: 1.25rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-contact__form-privacy label {
    margin-top: 0.625rem;
  }
}

.p-contact__form-privacy input + span {
  position: relative;
  padding-left: 1.875rem;
  margin-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-contact__form-privacy input + span {
    font-size: max(0.8125rem, 10px);
    padding-left: 1.5625rem;
    margin-left: 0.625rem;
  }
}

.p-contact__form-privacy input + span::before {
  content: "";
  position: absolute;
  top: 0.1875rem;
  left: 0;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-black);
}
@media screen and (max-width: 767px) {
  .p-contact__form-privacy input + span::before {
    top: 0.0625rem;
  }
}

.p-contact__form-privacy input + span::after {
  content: "";
  margin-top: -0.125rem;
  position: absolute;
  top: 55%;
  left: 0.25rem;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  display: block;
  width: 0.8125rem;
  height: 0.4375rem;
  border-bottom: 2px solid var(--color-black);
  border-left: 2px solid var(--color-black);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}

.p-contact__form-privacy input:checked + span::after {
  opacity: 1;
}

.p-contact__form-submit {
  margin-top: 6.25rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact__form-submit {
    margin-top: 3.125rem;
  }
}

.p-form__submit input {
  display: inline-block;
  padding: 0.9375rem 1.875rem;
  border: 1px solid var(--color-border);
  border-radius: 1.875rem;
  font-size: max(1.25rem, 10px);
  font-weight: 500;
  color: var(--color-main);
  line-height: 1.75;
  letter-spacing: 0.04em;
  width: 18.75rem;
  -webkit-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.p-form__submit input:hover,
.p-form__submit input:focus {
  background-color: var(--color-main);
  color: var(--color-white);
}

.wpcf7 form.invalid .wpcf7-response-output {
  border-color: #FF003D;
  border-radius: 0.625rem;
}

.wpcf7 form .wpcf7-response-output {
  padding: 1.875rem;
  text-align: center;
  font-size: max(1.25rem, 10px);
  color: #FF003D;
  line-height: 1;
  margin: 3.75rem 0 0;
}

.p-header {
  background-color: var(--color-white);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.p-header.is-hidden {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.p-header__inner {
  max-width: 1400px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 0.9375rem 0;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .p-header__inner {
    padding-inline: 0.9375rem;
  }
}

.p-header__logo {
  max-width: 14.125rem;
  width: 100%;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    max-width: 9.75rem;
  }
}

.p-header__logo a {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-header__nav-wrap {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 1023px) {
  .p-header__nav-wrap {
    display: none;
  }
}

.p-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: inherit;
  padding-right: 0.9375rem;
}

.p-header__nav[data-nav=support] {
  position: relative;
}

.p-header__nav[data-nav=support]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100%;
  background: linear-gradient(150deg, var(--color-white) 0% 8%, var(--color-white) 8%, #457248 12%, #457248 100%);
  z-index: -1;
}

.p-header__nav[data-nav=support] .p-header__nav-list {
  max-width: 75rem;
  text-align: right;
}

.p-header__nav[data-nav=support] .p-header__nav-item a {
  padding-inline: 0.875rem;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: max(0.9375rem, 10px);
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.5;
  letter-spacing: 0em;
}

.p-header__nav[data-nav=support] .p-header__nav-item:last-child a {
  padding-right: 0.3125rem;
}

.p-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
}

.p-header__nav-item {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.p-header__nav-item:not(:has(.p-header__nav-button)):not(:last-child):before {
  content: "";
  display: block;
  width: 1px;
  height: 0.9375rem;
  background-color: currentColor;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-header__nav[data-nav=support] .p-header__nav-item:not(:has(.p-header__nav-button)):not(:last-child):before {
  background-color: var(--color-white);
}

.p-header__nav[data-nav=clinical] .p-header__nav-item:not(:has(.p-header__nav-button)):not(:last-child):before {
  background-color: var(--color-black);
}

.p-header__nav-item:not(:has(.p-header__nav-button)) a {
  padding: 0 0.875rem;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  color: var(--color-black);
  line-height: 1.5;
  letter-spacing: 0.04em;
  position: relative;
}

.p-header__nav-item:has(.p-header__nav-button) {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.p-header__nav[data-nav=support] .p-header__nav-list > li > a [data-hover-underline] {
  padding-bottom: 5px;
  background-position: center bottom;
}

.p-header__nav[data-nav=support] .p-header__nav-list > li > a [data-hover-underline].is-expanded {
  -webkit-animation: p-header-expand-underline var(--duration) var(--delay) forwards;
          animation: p-header-expand-underline var(--duration) var(--delay) forwards;
}

.p-header__nav[data-nav=support] .p-header__nav-list > li > a [data-hover-underline].is-contracting {
  -webkit-animation: p-header-contract-underline var(--duration) forwards;
          animation: p-header-contract-underline var(--duration) forwards;
}

@-webkit-keyframes p-header-expand-underline {
  0% {
    background-size: 0% var(--line-width);
    background-position: center bottom;
  }
  100% {
    background-position: center bottom;
    background-size: 80% var(--line-width);
  }
}

@keyframes p-header-expand-underline {
  0% {
    background-size: 0% var(--line-width);
    background-position: center bottom;
  }
  100% {
    background-position: center bottom;
    background-size: 80% var(--line-width);
  }
}
@-webkit-keyframes p-header-contract-underline {
  0% {
    background-size: 80% var(--line-width);
    background-position: center bottom;
  }
  100% {
    background-position: center bottom;
    background-size: 0% var(--line-width);
  }
}
@keyframes p-header-contract-underline {
  0% {
    background-size: 80% var(--line-width);
    background-position: center bottom;
  }
  100% {
    background-position: center bottom;
    background-size: 0% var(--line-width);
  }
}
.p-header__nav[data-nav=support] .p-header__nav-list > li > a.is-current [data-hover-underline] {
  background-size: 80% var(--line-width);
  background-position: center bottom;
}

/* プルダウンメニュー（ホバーで展開） */
.p-header__nav-item.has-dropdown {
  position: relative;
}

.p-header__nav[data-nav=support] .p-header__nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-top: 0;
  min-width: 9.375rem;
  padding: 0.5rem 0;
  background-color: var(--color-white);
  border-radius: 0.5rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  z-index: 100;
}

.p-header__nav[data-nav=support] .p-header__nav-item.has-dropdown:hover .p-header__nav-dropdown {
  opacity: 1;
  visibility: visible;
}

.p-header__nav[data-nav=support] .p-header__nav-dropdown-item {
  border: none;
}
.p-header__nav[data-nav=support] .p-header__nav-dropdown-item::before {
  display: none;
}

.p-header__nav[data-nav=support] .p-header__nav-dropdown-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.25rem;
  padding: 0.625rem 1.25rem;
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  color: var(--color-black) !important;
  line-height: 1.5;
  white-space: nowrap;
}

.p-header__nav[data-nav=support] .p-header__nav-dropdown-item a::after {
  content: "";
  width: 1.25rem;
  height: auto;
  aspect-ratio: 1;
  background-image: url(../images/common/arrow-green.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.p-header__nav-item:has(.p-header__nav-button):last-child {
  margin-left: 0.375rem;
}

.p-header__nav-button.c-icon-button {
  font-size: max(0.875rem, 10px);
  line-height: 1.75;
  padding-block: 0.125rem;
}
@media screen and (max-width: 1023px) {
  .p-header__nav-button.c-icon-button {
    min-height: 26px;
    font-size: 14px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    line-height: 1;
    border-radius: 12.5px;
    padding-block: 0;
    gap: 10px;
    padding-inline: 15px;
  }
}

@media screen and (max-width: 1023px) {
  .p-header__nav-button.c-icon-button::before {
    width: 15px;
  }
}

.p-header__nav-tel a {
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  color: var(--color-black);
  line-height: 1;
  letter-spacing: 0.04em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3125rem;
}

.p-header__nav-tel a::before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "";
  display: block;
  width: 1.125rem;
  height: auto;
  aspect-ratio: 1;
  background-image: url(../images/common/phone-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-header__sp {
  display: none;
  height: inherit;
}
@media screen and (max-width: 1023px) {
  .p-header__sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.625rem;
  }
}

.p-header__nav-item-sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: inherit;
}

.p-header__hamburger {
  position: relative;
  z-index: 999;
  display: block;
  padding: 0;
  width: 48px;
}

.p-header__hamburger span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  background-color: var(--color-main);
  width: 48px;
  height: 27px;
  border-radius: 12.5px;
}

.p-header__hamburger span::before,
.p-header__hamburger span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 18px;
  height: 1px;
  background-color: var(--color-white);
  content: "";
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.p-header__hamburger span::before {
  -webkit-transform: translate(-50%, calc(-3px - 50%));
          transform: translate(-50%, calc(-3px - 50%));
}

.p-header__hamburger span::after {
  -webkit-transform: translate(-50%, calc(3px - 50%));
          transform: translate(-50%, calc(3px - 50%));
}

.p-header__hamburger.is-open span::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.p-header__hamburger.is-open span::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.p-header__drawer {
  display: none;
}
@media screen and (max-width: 1023px) {
  .p-header__drawer {
    position: fixed;
    z-index: 900;
    inset: 0;
    display: block;
    width: 100%;
    height: 100vh;
    background: var(--color-white);
    overflow-y: scroll;
    scrollbar-width: none;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    padding-top: var(--header-height);
  }
}

.p-header__drawer.is-open {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.p-header__drawer::-webkit-scrollbar {
  display: none;
}

.p-header__drawer-nav {
  max-width: 77.1875%;
  margin-inline: auto;
  padding-block: 3.125rem;
}

.p-header__drawer-item a {
  padding-inline: 0.625rem;
  padding-block: 1.25rem;
  display: block;
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1;
  border-bottom: 1px solid var(--color-black);
  text-transform: uppercase;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .p-header__drawer-item a:hover {
    color: var(--color-main);
    opacity: 1;
  }
}
.p-mv {
  height: 40rem;
  display: grid;
  grid-template-columns: 1fr 27.5%;
}
@media screen and (max-width: 767px) {
  .p-mv {
    grid-template-columns: 1fr;
    height: initial;
  }
}

.p-mv__img-wrap {
  position: relative;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .p-mv__img-wrap {
    height: 25rem;
  }
}

.p-mv__img {
  width: 100%;
  height: inherit;
  display: block;
}

.p-mv__img img {
  aspect-ratio: 1330/640;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 78% center;
     object-position: 78% center;
  height: inherit;
  width: 100%;
}

.p-mv__copy {
  width: 100%;
  position: absolute;
  left: 2.5rem;
  bottom: 2.8125rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .p-mv__copy {
    left: 0.9375rem;
    bottom: 1.5625rem;
  }
}

.p-mv__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-mv__title {
    gap: 0.375rem;
  }
}

.p-mv__title-span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  font-size: max(1.5rem, 10px);
  font-family: var(--second-font-family);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--color-white);
  background-color: var(--color-main);
  background: -webkit-gradient(linear, left top, right top, from(#00833a), to(var(--color-main)));
  background: linear-gradient(to right, #00833a 0%, var(--color-main) 100%);
  padding-block: 0 0.1875rem;
  padding-inline: 1.4375rem 0rem;
  border-radius: 2.5rem 0 1.875rem 0;
}
@media screen and (max-width: 767px) {
  .p-mv__title-span {
    font-size: max(1rem, 10px);
    border-radius: 2.25rem 0 2.25rem 0;
  }
}

.p-mv__title-span:last-child {
  margin-left: auto;
  margin-right: -1.875rem;
  padding-block: 0.75rem;
  padding-inline: 1.875rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-mv__title-span:last-child {
    margin-left: 6.875rem;
    padding-block: 0.6875rem;
  }
}

.p-mv__title-span-number {
  display: inline-block;
  font-size: max(2.75rem, 10px);
  font-family: var(--second-font-family);
  font-weight: 600;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-white);
  padding-bottom: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-mv__title-span-number {
    font-size: max(1.875rem, 10px);
  }
}

.p-mv__text {
  width: 11.875rem;
  height: auto;
  margin-top: 1.0625rem;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-mv__text {
    margin-top: 0.625rem;
    width: 9.1875rem;
  }
}

.p-mv__text img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-mv__topics {
  height: inherit;
  padding-block: 1.375rem;
  background-image: url(../images/top/mv-topics-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-mv__topics {
    padding-block: 1.75rem 4.6875rem;
  }
}

.p-mv__topics-inner.l-inner {
  padding-inline: 0.625rem;
}

.p-mv__topics-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-mv__topics-title-wrap {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.9375rem;
  }
}

.p-mv__topics-title-wrap::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 5rem;
  height: auto;
  aspect-ratio: 80/84;
  background-image: url(../images/common/logo-img.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-top: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .p-mv__topics-title-wrap::before {
    width: 4.0625rem;
  }
}

.p-mv__topics-title {
  color: var(--color-white);
  font-size: max(1rem, 10px);
  font-family: var(--second-font-family);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-mv__topics-title {
    gap: 0.75rem;
  }
}

.p-mv__topics-title span {
  display: block;
  font-size: max(1.875rem, 10px);
  line-height: 1.15;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-mv__topics-title span {
    font-size: max(1.5rem, 10px);
  }
}

.p-mv__topics-slider {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-mv__topics-slider {
    margin-top: 1.0625rem;
  }
}

.p-mv__topics-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.9375rem;
  max-width: 20.0625rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-mv__topics-list {
    max-width: 25rem;
  }
}

@media (any-hover: hover) {
  .p-mv__topics-item a figure {
    overflow: hidden;
  }
  .p-mv__topics-item a img {
    -webkit-transition: scale 0.3s ease-in-out;
    transition: scale 0.3s ease-in-out;
  }
  .p-mv__topics-item a:hover {
    opacity: 1;
  }
  .p-mv__topics-item a:hover img {
    scale: 1.1;
  }
}
.p-mv__topics-item a:focus-visible {
  opacity: 1;
}
.p-mv__topics-item a:focus-visible img {
  scale: 1.1;
}
.p-mv__topics-item a {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  border: 1px solid var(--color-main);
}

.p-mv__topics-item img {
  aspect-ratio: 319/142;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
}

.p-nadolive__content-list {
  margin-top: 1.875rem;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 767px) {
  .p-nadolive__content-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.875rem;
  }
}
@media screen and (max-width: 499px) {
  .p-nadolive__content-list {
    grid-template-columns: 1fr;
    gap: 1.875rem;
    padding-inline: 1.25rem;
  }
}

@media (any-hover: hover) {
  .p-nadolive__content-item a figure {
    overflow: hidden;
  }
  .p-nadolive__content-item a img {
    -webkit-transition: scale 0.3s ease-in-out;
    transition: scale 0.3s ease-in-out;
  }
  .p-nadolive__content-item a:hover {
    opacity: 1;
  }
  .p-nadolive__content-item a:hover img {
    scale: 1.1;
  }
}
.p-nadolive__content-item a:focus-visible {
  opacity: 1;
}
.p-nadolive__content-item a:focus-visible img {
  scale: 1.1;
}

.p-nadolive__content-item-img figure {
  width: 100%;
  height: auto;
  border: 1px solid #dbdddc;
  overflow: hidden;
}

.p-nadolive__content-item-img img {
  aspect-ratio: 232/326;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.p-nadolive__content-item-title {
  margin-top: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}

.p-nadolive__content-item-title::before {
  content: "";
  width: 2rem;
  height: auto;
  aspect-ratio: 32/32;
  background-image: url(../images/common/pdf-icon-red.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.p-nadolive__content-item-title::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-top: solid 1px currentColor;
  border-right: solid 1px currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.p-news-list {
  border-top: 1px solid var(--color-border);
}
@media screen and (max-width: 767px) {
  .p-news-list {
    width: 100%;
  }
}

.p-news-list__item a {
  display: block;
  padding-block: 2.3125rem;
  padding-inline: 1.5625rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 6.25rem 1fr 1.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid var(--color-border);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-news-list__item a {
    grid-template-columns: 5.625rem 1fr;
    padding-block: 1.25rem;
    padding-inline: 1.1875rem 0.3125rem;
  }
}

.p-news-list__item a::after {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background-image: url(../images/common/arrow-green.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-news-list__item a::after {
    content: none;
  }
}

.p-news-list__date {
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  line-height: 1.1666666667;
  color: var(--color-main);
}
@media screen and (max-width: 767px) {
  .p-news-list__date {
    font-size: max(1rem, 10px);
    line-height: 1.15625;
  }
}

.p-news-list__content {
  padding-left: 1.25rem;
  position: relative;
}

.p-news-list__content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.0625rem;
  height: 4.6875rem;
  background-color: var(--color-border);
}

.p-news-list__cat-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}

.p-news-list__cat {
  font-size: max(0.875rem, 10px);
  line-height: 1;
  color: var(--color-main);
  background-color: var(--color-white);
  border: 1px solid var(--color-main);
  padding: 0.3125rem 1.25rem;
  border-radius: 0.78125rem;
  min-width: 6.25rem;
  text-align: center;
}

.p-news-list__title {
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-news-list__title {
    font-size: max(0.875rem, 10px);
    line-height: 1.4642857143;
  }
}

.p-news-list__pagenavi {
  margin-top: 3.125rem;
}

.p-notice {
  background-color: var(--color-background-pink);
  border-radius: 0.5rem;
  padding-block: 1.5625rem;
  padding-inline: 1.5625rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-notice {
    padding-block: 1.25rem 1.25rem;
    padding-inline: 0.625rem 0.625rem;
  }
}

.p-notice[data-width=small] {
  max-width: 62.5rem;
}

.p-notice[data-width="500"] {
  max-width: 31.25rem;
  padding: 1.25rem;
}

.p-notice.p-notice-small {
  max-width: 46.25rem;
}

.p-notice__title {
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
  color: var(--color-red);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.8125rem;
}

.p-notice__title::before {
  content: "";
  width: 2.0625rem;
  height: auto;
  aspect-ratio: 33/33;
  background-image: url(../images/common/icon-important.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-top: 0.3125rem;
}

.p-notice__text-wrap {
  margin-top: 1.5rem;
}

.p-notice__text + .p-notice__text {
  margin-top: 1.25rem;
}

.p-notice__text {
  font-size: max(0.9375rem, 10px);
  font-weight: 500;
  line-height: 1.7666666667;
  letter-spacing: 0.04em;
  color: var(--color-black);
}
@media screen and (max-width: 767px) {
  .p-notice__text {
    font-size: max(0.875rem, 10px);
  }
}

.p-notice__text a,
.p-notice__text span {
  color: var(--color-red);
}

.p-notice__link {
  margin-top: 0.6875rem;
}

.p-notice__link .c-button {
  width: 15.9375rem;
  font-size: max(0.9375rem, 10px);
  padding-block: 0.75rem;
  padding-inline: 1.625rem 0.625rem;
}

.p-notice__link .c-button::after {
  width: 1.25rem;
}

.p-notice__list-wrap {
  margin-top: 0.625rem;
  padding-inline: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-notice__list-wrap {
    padding-inline: 0.625rem;
  }
}

.p-notice__list {
  display: grid;
  gap: 0.625rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .p-notice__list {
    grid-template-columns: 1fr;
  }
}

.p-notice__list[data-column="3"] {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .p-notice__list[data-column="3"] {
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-notice__list[data-column="1"] {
  grid-template-columns: 1fr;
}

.p-notice__item {
  font-size: max(0.9375rem, 10px);
  font-weight: 500;
  line-height: 1.7666666667;
  letter-spacing: 0.04em;
  color: var(--color-black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-notice__item {
    font-size: max(0.875rem, 10px);
  }
}

.p-notice__item::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 0.625rem;
  height: 0.625rem;
  background-color: var(--color-red);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-top: 0.4375rem;
}

.p-notice__list + .p-notice__text {
  margin-top: 0.625rem;
}

.p-notice__item[data-color=red] {
  color: var(--color-red);
}

.p-notice:has(.p-notice__tel) {
  padding: 0;
}

.p-notice:has(.p-notice__tel) a {
  padding: 1.25rem;
  display: block;
}

.p-notice__tel-heading {
  font-size: max(1.25rem, 10px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--color-red);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-notice__tel-heading {
    font-size: max(1.125rem, 10px);
  }
}

.p-notice__tel {
  margin-top: 1.25rem;
  font-size: max(1.125rem, 10px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
  color: var(--color-red);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-notice__tel {
    font-size: max(1rem, 10px);
  }
}

.p-notice a:has(.p-notice__tel) {
  position: relative;
}

.p-notice a:has(.p-notice__tel)::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.5625rem;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(../images/common/arrow-red.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.p-outpatient-first__text {
  padding-inline: 2.125rem;
  margin-top: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-outpatient-first__text {
    padding-inline: 0.625rem;
  }
}

.p-outpatient-flow__contents {
  margin-top: 4.0625rem;
  max-width: 62.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-outpatient-flow__contents {
    margin-top: 2.5rem;
  }
}

.p-outpatient-flow__tab-list {
  display: grid;
  gap: 0.625rem;
  grid-template-columns: repeat(2, 1fr);
}

.p-outpatient-flow__tab-btn {
  width: 100%;
  padding: 0.9375rem 2.875rem;
  font-size: max(1.25rem, 10px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
  text-align: left;
  color: currentColor;
  cursor: pointer;
  border-radius: 0.5rem;
  color: var(--color-black);
  -webkit-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-outpatient-flow__tab-btn {
    font-size: max(1rem, 10px);
    padding: 0.625rem 0.625rem;
    text-align: center;
  }
}

.p-outpatient-flow__tab-btn[data-target=first] {
  background-color: #e6f5ff;
}

.p-outpatient-flow__tab-btn[data-target=repeat] {
  background-color: #dff1e3;
}

.p-outpatient-flow__tab-item.is-active .p-outpatient-flow__tab-btn[data-target=first] {
  background-color: #0091da;
  color: var(--color-white);
  position: relative;
}

.p-outpatient-flow__tab-item.is-active .p-outpatient-flow__tab-btn[data-target=repeat] {
  background-color: #1e8839;
  color: var(--color-white);
  position: relative;
}

.p-outpatient-flow__tab-item.is-active .p-outpatient-flow__tab-btn::after {
  content: "";
  position: absolute;
  bottom: -1.375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 3.75rem;
  height: 1.4375rem;
  background-color: #0091da;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-outpatient-flow__tab-item.is-active .p-outpatient-flow__tab-btn::after {
    bottom: -0.875rem;
    width: 2.5rem;
    height: 0.9375rem;
  }
}

.p-outpatient-flow__tab-item.is-active .p-outpatient-flow__tab-btn[data-target=repeat]::after {
  background-color: #1e8839;
}

@media (any-hover: hover) {
  .p-outpatient-flow__tab-btn[data-target=first]:hover {
    background-color: #0091da;
    color: var(--color-white);
  }
  .p-outpatient-flow__tab-btn[data-target=repeat]:hover {
    background-color: #1e8839;
    color: var(--color-white);
  }
}
.p-outpatient-flow__content {
  display: none;
  margin-top: 0.625rem;
}

.p-outpatient-flow__content.is-active {
  display: block;
}

.p-outpatient-info__text {
  margin-top: 2.5rem;
  padding-inline: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-outpatient-info__text {
    margin-top: 1.875rem;
    padding-inline: 0.625rem;
  }
}

.p-outpatient-info__article-wrap {
  margin-top: 0.9375rem;
  display: grid;
  gap: 1.75rem 2.5rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .p-outpatient-info__article-wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}

.p-outpatient-info__article[data-target=location] {
  grid-area: 1/1/2/3;
}
@media screen and (max-width: 767px) {
  .p-outpatient-info__article[data-target=location] {
    grid-area: initial;
  }
}

.p-outpatient-info__article[data-target=time] {
  grid-area: 2/1/3/3;
}
@media screen and (max-width: 767px) {
  .p-outpatient-info__article[data-target=time] {
    grid-area: initial;
  }
}

.p-outpatient-info__article[data-target=method] {
  grid-area: 3/1/4/2;
}
@media screen and (max-width: 767px) {
  .p-outpatient-info__article[data-target=method] {
    grid-area: initial;
  }
}

.p-outpatient-info__article[data-target=reservation] {
  grid-area: 3/2/4/3;
}
@media screen and (max-width: 767px) {
  .p-outpatient-info__article[data-target=reservation] {
    grid-area: initial;
  }
}

.p-outpatient-info__article-img {
  margin-top: 2rem;
  width: 100%;
  max-width: 62.5rem;
  margin-inline: auto;
  height: auto;
}

.p-outpatient-info__article-img img {
  aspect-ratio: 1000/636;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
}

.p-outpatient-info__article-body {
  margin-top: 3.3125rem;
  max-width: 53.4375rem;
  margin-inline: auto;
  display: grid;
  gap: 5rem;
  grid-template-columns: 1fr 12.9375rem;
}
@media screen and (max-width: 767px) {
  .p-outpatient-info__article-body {
    margin-top: 1.875rem;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.p-outpatient-info__article-table .c-table th:nth-child(1) {
  width: 26%;
}
@media screen and (max-width: 767px) {
  .p-outpatient-info__article-table .c-table th:nth-child(1) {
    width: 35%;
  }
}

.p-outpatient-info__article-table .c-table tr > * {
  padding-block: 1.5625rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-outpatient-info__article-table .c-table tr > * {
    padding-block: 0.9375rem;
  }
}

.p-outpatient-info__article-table .c-table tr:has(> th) {
  font-size: max(1.375rem, 10px);
}
@media screen and (max-width: 767px) {
  .p-outpatient-info__article-table .c-table tr:has(> th) {
    font-size: max(0.9375rem, 10px);
  }
}

.p-outpatient-info__article-note {
  margin-top: 0.9375rem;
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  line-height: 1;
  color: var(--color-black);
  letter-spacing: 0;
}

.p-outpatient-info__article[data-target=time] .p-outpatient-info__article-img {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-outpatient-info__article[data-target=time] .p-outpatient-info__article-img {
    display: none;
  }
}

.p-outpatient-info__article[data-target=time] .p-outpatient-info__article-img img {
  aspect-ratio: 207/202;
}

.p-outpatient-info__article-text {
  margin-top: 1.875rem;
  padding-inline: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-outpatient-info__article-text {
    margin-top: 1.25rem;
    padding-inline: 0.625rem;
  }
}

.p-outpatient-info__article[data-target=reservation] .p-outpatient-info__article-text {
  padding-inline: 0.75rem 0;
}
@media screen and (max-width: 767px) {
  .p-outpatient-info__article[data-target=reservation] .p-outpatient-info__article-text {
    padding-inline: 0.625rem;
  }
}

.p-outpatient-info__article-tel {
  margin-top: 1.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.p-outpatient-info__article-tel a {
  font-size: max(1.625rem, 10px);
  font-weight: 700;
  line-height: 1;
  color: var(--color-black);
  letter-spacing: 0.04em;
  display: grid;
  grid-template-columns: 3.625rem 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.9375rem 0.625rem;
  padding: 1.25rem 2.3125rem;
  border-radius: 2.96875rem;
  background-color: #f4f9df;
  -webkit-transition: -webkit-filter 0.3s ease-in-out;
  transition: -webkit-filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-outpatient-info__article-tel a {
    font-size: max(1.25rem, 10px);
    gap: 0.625rem 0.3125rem;
    padding: 0.9375rem 1.25rem;
  }
}

.p-outpatient-info__article-tel a::before {
  content: "";
  margin-left: auto;
  grid-area: 1/1/2/2;
  display: block;
  width: 1.875rem;
  height: auto;
  aspect-ratio: 1;
  background-image: url(../images/common/phone-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-outpatient-info__article-tel-note {
  display: block;
  font-size: max(0.75rem, 10px);
  font-weight: 500;
  line-height: 1;
  color: var(--color-black);
  letter-spacing: 0.04em;
  grid-area: 2/1/3/3;
}
@media screen and (max-width: 767px) {
  .p-outpatient-info__article-tel-note {
    font-size: max(0.625rem, 10px);
  }
}

@media (any-hover: hover) {
  .p-outpatient-info__article-tel a:hover {
    -webkit-filter: brightness(1.1);
            filter: brightness(1.1);
    opacity: 1;
  }
}
.p-outpatient-items__content {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-outpatient-items__content {
    margin-top: 2.5rem;
  }
}

.p-outpatient-items__list {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 767px) {
  .p-outpatient-items__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
  }
}

.p-outpatient-items__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3125rem;
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  padding: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-outpatient-items__item {
    padding: 0.625rem 0.3125rem;
  }
}

.p-outpatient-items__item-icon {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-outpatient-items__item-icon {
    width: 6.0625rem;
  }
}

.p-outpatient-items__item-icon[data-icon=outpatient] {
  width: 10rem;
}

.p-outpatient-items__item-icon[data-icon=hospitalization] {
  width: 7.5rem;
}

.p-outpatient-items__item-icon img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-outpatient-items__item-text {
  font-size: max(1.125rem, 10px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-black);
  min-height: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-outpatient-items__item-text {
    font-size: max(0.9375rem, 10px);
    min-height: 2.5rem;
  }
}

.p-outpatient-items__notice {
  margin-top: 2.5rem;
  max-width: 62.5rem;
  margin-inline: auto;
}

.p-outpatient-items__note {
  margin-top: 1.25rem;
}

.p-outpatient-items__note-text {
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.7057142857;
  letter-spacing: 0.04em;
  color: var(--color-black);
}

.p-outpatient-items__note-text[data-color=red] {
  color: var(--color-red);
}

.p-outpatient-time__contents {
  margin-top: 3.4375rem;
  padding-inline: 0.625rem;
  display: grid;
  gap: 1.875rem;
  grid-template-columns: 50% 47.4576271186%;
}
@media screen and (max-width: 767px) {
  .p-outpatient-time__contents {
    grid-template-columns: 1fr;
  }
}

.p-outpatient-time__table .c-table tr > * {
  padding-block: 1.3125rem;
}

.p-outpatient-time__table .c-table tbody tr > * {
  padding-block: 1.125rem;
  text-align: center;
}

.p-outpatient-time__table .c-table tr:has(> th) {
  font-size: max(1.375rem, 10px);
}
@media screen and (max-width: 767px) {
  .p-outpatient-time__table .c-table tr:has(> th) {
    font-size: max(0.9375rem, 10px);
  }
}

.p-outpatient-time__table-note {
  margin-top: 1.0625rem;
  padding-left: 0.3125rem;
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.6175;
  color: var(--color-black);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-outpatient-time__table-note {
    font-size: max(0.625rem, 10px);
    margin-top: 0.625rem;
    padding-left: 0rem;
  }
}

@media screen and (max-width: 767px) {
  .p-post-list {
    background-color: var(--color-background-yellow);
  }
}

.p-post-list__content {
  background-color: var(--color-background-yellow);
  padding: 4.375rem 3.75rem;
  border-radius: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-post-list__content {
    padding: 2.9375rem 0 3.125rem;
  }
}

.p-post-list__content .p-top-news__tabs {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-post-list__content .p-top-news__tabs {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

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

.p-privacy__item + .p-privacy__item {
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-privacy__item + .p-privacy__item {
    margin-top: 2.5625rem;
  }
}

.p-privacy__heading {
  font-size: max(1.25rem, 10px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-privacy__heading {
    font-size: max(1.125rem, 10px);
  }
}

.p-privacy__text {
  margin-top: 0.625rem;
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.7425;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-privacy__text {
    font-size: max(0.875rem, 10px);
  }
}

.p-privacy__link {
  margin-top: 3.125rem;
}

.p-privacy__link .c-button {
  width: 18.75rem;
  font-size: max(1.25rem, 10px);
  padding-block: 0.9375rem;
  padding-inline: 1.875rem;
  margin-inline: auto;
}

.p-privacy__link .c-button::after {
  width: 1.5625rem;
}

.p-professional-flow__content {
  margin-top: 3.125rem;
}

.p-professional-work__contents {
  margin-top: 2.5rem;
  padding: 1.5625rem 2.8125rem;
  background-image: url(../images/professional/professional-work-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-professional-work__contents {
    background-image: none;
    padding: 0;
  }
}

.p-professional-work__list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: rgba(255, 255, 255, 0.9);
  padding-block: 1.75rem;
  padding-inline: 2.1875rem 2.8125rem;
  border-radius: 0.75rem;
  border: 1px solid #ccd100;
}
@media screen and (max-width: 767px) {
  .p-professional-work__list {
    width: 100%;
    padding-block: 1.75rem;
    padding-inline: 1.25rem 0.9375rem;
  }
}

.p-professional-work__item {
  font-size: max(1.0625rem, 10px);
  font-weight: 700;
  line-height: 1.64;
  color: var(--color-black);
  letter-spacing: 0.04em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-professional-work__item {
    font-size: max(0.875rem, 10px);
    line-height: 1.9914285714;
  }
}

.p-professional-work__item + .p-professional-work__item {
  margin-top: 1.15625rem;
}

.p-professional-work__item::before {
  content: "";
  width: 1.5625rem;
  height: auto;
  aspect-ratio: 25/34;
  background-image: url(../images/common/list-icon.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-professional-work__item::before {
    width: 1.5625rem;
  }
}

.p-professional-work__image {
  position: relative;
  z-index: -1;
  margin-top: -1.25rem;
  margin-inline: calc(50% - 50cqi);
  width: 100cqi;
  height: auto;
}

.p-professional-work__image img {
  aspect-ratio: 375/200;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
}

.p-professional-work__contact {
  margin-top: 3.625rem;
  max-width: 49.1875rem;
  margin-inline: auto;
  padding-block: 1.9375rem 2.3125rem;
  padding-inline: 2.6875rem 2.8125rem;
  background-color: var(--color-white);
  border-radius: 0.5rem;
  border: 1px solid #cdcece;
}
@media screen and (max-width: 767px) {
  .p-professional-work__contact {
    margin-top: 1.875rem;
    padding-block: 1.25rem 1.5625rem;
    padding-inline: 0.625rem;
  }
}

.p-professional-work__contact-title {
  font-size: max(1.375rem, 10px);
  font-weight: 500;
  line-height: 1.3863636364;
  color: var(--color-main);
  letter-spacing: 0.04em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-professional-work__contact-title {
    font-size: max(1.25rem, 10px);
  }
}

.p-professional-work__contact-title::after {
  content: "";
  position: absolute;
  bottom: 0.75rem;
  left: 10.1875rem;
  width: calc(100% - 10.1875rem);
  background-color: var(--color-accent);
  height: 1px;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-professional-work__contact-title::after {
    bottom: 0.625rem;
    left: 8.125rem;
    width: calc(100% - 8.125rem);
  }
}

.p-professional-work__contact-list-wrap {
  margin-top: 2.1875rem;
  padding-inline: 1.1875rem;
}
@media screen and (max-width: 767px) {
  .p-professional-work__contact-list-wrap {
    margin-top: 1.25rem;
    padding-inline: 0;
  }
}

.p-professional-work__contact-list {
  display: grid;
  gap: 1.4375rem;
  grid-template-columns: 4.8125rem 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-professional-work__contact-list {
    gap: 0.625rem;
    grid-template-columns: 3.75rem 1fr;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.p-professional-work__contact-list + .p-professional-work__contact-list {
  margin-top: 1rem;
}

.p-professional-work__contact-item-title {
  width: 100%;
  background-color: var(--color-main);
  padding: 0.4375rem 0.1875rem;
  border-radius: 0.9375rem;
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-professional-work__contact-item-title {
    font-size: max(0.75rem, 10px);
    padding: 0.3125rem 0.125rem;
    margin-top: 0.5rem;
  }
}

.p-professional-work__contact-item-text {
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 2.0625;
  color: var(--color-black);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-professional-work__contact-item-text {
    font-size: max(0.875rem, 10px);
    line-height: 2.3571428571;
  }
}

.p-professional-work__contact-item-text span,
.p-professional-work__contact-item-text a {
  color: var(--color-accent);
  font-size: max(1.3125rem, 10px);
  font-weight: 700;
  line-height: 1.5714285714;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-professional-work__contact-item-text span,
  .p-professional-work__contact-item-text a {
    font-size: max(1.125rem, 10px);
    line-height: 1.8333333333;
  }
}

.p-professional-work__contact-note {
  margin-top: 1.4375rem;
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.6875;
  color: var(--color-black);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-professional-work__contact-note {
    font-size: max(0.875rem, 10px);
    line-height: 1.9285714286;
  }
}

.p-single__head {
  padding-bottom: 1.875rem;
  padding-inline: 1.25rem;
  border-bottom: 1px solid var(--color-border);
}

.p-single__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}

.p-single__date {
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}

.p-single__cat-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}

.p-single__cat {
  font-size: max(0.875rem, 10px);
  line-height: 1;
  color: var(--color-main);
  background-color: var(--color-white);
  border: 1px solid var(--color-main);
  padding: 0.625rem 1.25rem;
  border-radius: 1.5625rem;
  min-width: 6.25rem;
  text-align: center;
}

.p-single__title {
  margin-top: 1.375rem;
  font-size: max(1.375rem, 10px);
  font-weight: 700;
  color: var(--color-main);
}

.p-single__thumb {
  margin-top: 1.25rem;
  width: 100%;
  height: auto;
}

.p-single__thumb img {
  width: auto;
  height: auto;
}

.p-single__content {
  margin-top: 3.125rem;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-single__content {
    margin-top: 1.875rem;
  }
}

.p-single__nav {
  margin-top: 5rem;
  padding-top: 1.875rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-single__nav {
    margin-top: 3.125rem;
  }
}

.p-single__nav-prev a,
.p-single__nav-next a,
.p-single__nav-center a {
  display: inline-block;
  font-size: max(1rem, 10px);
  font-weight: 500;
  letter-spacing: 0.05em;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  padding: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-single__nav-prev a,
  .p-single__nav-next a,
  .p-single__nav-center a {
    font-size: max(0.875rem, 10px);
  }
}

.p-single__nav-prev {
  position: absolute;
  left: 0;
  bottom: 0;
}

.p-single__nav-next {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (any-hover: hover) {
  .p-single__nav-prev a:hover,
  .p-single__nav-next a:hover,
  .p-single__nav-center a:hover {
    color: var(--color-main);
    opacity: 1;
  }
}
.p-doctors-single__nav .c-button {
  width: 18.75rem;
  font-size: max(1.25rem, 10px);
  padding-block: 0.9375rem;
  padding-inline: 1.875rem;
  margin-inline: auto;
}

.p-doctors-single__nav .c-button::after {
  width: 1.25rem;
}

.p-sub-mv {
  width: 100%;
  height: 14.0625rem;
  background-image: url(../images/common/background-image.webp);
  background-repeat: repeat;
  background-size: auto;
}
@media screen and (max-width: 767px) {
  .p-sub-mv {
    height: 11.25rem;
  }
}

.p-sub-mv__inner.l-inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-sub-mv__inner.l-inner {
    padding-inline: 0.8125rem 1.25rem;
  }
}

.p-sub-mv__title {
  font-size: max(2.125rem, 10px);
  font-weight: 500;
  line-height: 1.7647058824;
  letter-spacing: 0.04em;
  color: var(--color-main);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-sub-mv__title {
    font-size: max(1.5rem, 10px);
  }
}

.p-sub-mv__title::before {
  content: "";
  background-image: url(../images/common/sub-mv-img.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 10.5rem;
  height: auto;
  aspect-ratio: 168/176;
  margin-right: -1.25rem;
}
@media screen and (max-width: 767px) {
  .p-sub-mv__title::before {
    width: 6.25rem;
    margin-right: -2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-important {
    background-color: var(--color-background-yellow);
  }
}

.p-top-important__content {
  background-color: var(--color-background-yellow);
  padding-block: 2.3125rem;
  padding-inline: 7.3125rem 6.5625rem;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-important__content {
    padding-inline: initial;
    padding-block: 2.0625rem 2.8125rem;
  }
}

.p-top-important__title {
  margin-left: -0.875rem;
  font-size: max(1.125rem, 10px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-red);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-important__title {
    margin-left: 0.75rem;
  }
}

.p-top-important__title::before {
  content: "";
  width: 2.0625rem;
  height: auto;
  aspect-ratio: 33/33;
  background-image: url(../images/common/icon-important.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.p-top-important__list-wrap {
  margin-top: 2.1875rem;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-top-important__list-wrap {
    margin-top: 2.0625rem;
    gap: 0.9375rem;
  }
}

.p-top-important__list-progress-bar {
  margin-top: -0.625rem;
  width: 0.3125rem;
  height: 117%;
  background-color: var(--color-border);
  border-radius: 0.625rem;
  position: relative;
}

.p-top-important__list-progress-bar-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: var(--color-red);
  border-radius: 0.625rem;
  -webkit-transition: height 0.1s ease-out;
  transition: height 0.1s ease-out;
}

.p-top-important__list {
  border-top: 1px solid var(--color-border);
  color: var(--color-red);
  max-height: 10.875rem;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@media screen and (max-width: 767px) {
  .p-top-important__list {
    max-height: 15.375rem;
  }
}

.p-top-important__list::-webkit-scrollbar {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-top-important__list-content {
    display: contents;
  }
}

.p-top-important__list-item a {
  display: block;
  padding-block: 0.9375rem;
  padding-inline: 0.3125rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
  display: grid;
  gap: 1.875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: 5.3125rem 1fr 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-important__list-item a {
    grid-template-columns: 5.3125rem 1fr;
    gap: 0.625rem 1.375rem;
    padding-inline: 0.9375rem 1.25rem;
    padding-block: 0.9375rem 1.375rem;
  }
}

.p-top-important__list-item a:after {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background-image: url(../images/common/arrow-red.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-top-important__list-item a:after {
    content: none;
  }
}

.p-top-important__list-cat-wrap {
  width: 6.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-important__list-cat-wrap {
    grid-area: 1/1/2/2;
  }
}

.p-top-important__list-cat {
  width: 5.3125rem;
  font-size: max(0.875rem, 10px);
  line-height: 1;
  color: var(--color-red);
  background-color: var(--color-white);
  border: 1px solid var(--color-red);
  border-radius: 1.875rem;
  padding: 0.3125rem;
  text-align: center;
}

.p-top-important__list-date,
.p-top-important__list-title {
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  color: currentColor;
}
@media screen and (max-width: 767px) {
  .p-top-important__list-date,
  .p-top-important__list-title {
    line-height: 1.78125;
  }
}

@media screen and (max-width: 767px) {
  .p-top-important__list-date {
    grid-area: 1/2/2/3;
  }
}

.p-top-important__list-title {
  margin-top: 0.4375rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-important__list-title {
    margin-top: 0;
    grid-area: 2/1/3/3;
    -webkit-line-clamp: 2;
  }
}

.p-top-important__button {
  margin-top: 2.5rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-top-important__button {
    margin-top: 3.5625rem;
  }
}

.p-top-important__button .c-button {
  max-width: 12.875rem;
  padding-left: 1.1875rem;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-top-important__button .c-button {
    margin-inline: auto;
    font-size: max(1rem, 10px);
  }
}

.p-top-info__inner.l-inner {
  padding-inline: 3.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-info__inner.l-inner {
    padding-inline: 0.8125rem;
  }
}

.p-top-info__title {
  padding-left: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .p-top-info__title {
    padding-left: 1.375rem;
  }
}

.p-top-info__grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.6875rem;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 767px) {
  .p-top-info__grid {
    margin-top: 2rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9375rem;
  }
}

.p-top-info__item {
  height: 100%;
}

.p-top-info__item a {
  height: 100%;
  background-color: var(--color-background-green);
  border: 1px solid var(--color-sub);
  border-radius: 0.5rem;
  padding: 1.5625rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-info__item a {
    padding: 0.625rem 0.3125rem;
    gap: 0.625rem;
  }
}

.p-top-info__item a::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(30, 144, 57, 0.85);
  border-radius: 0.5rem;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.p-top-info__item a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 5.9375rem;
  height: auto;
  aspect-ratio: 95/86;
  background-image: url(../images/common/view-more.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .p-top-info__item a:hover {
    opacity: 1;
  }
  .p-top-info__item a:hover::before,
  .p-top-info__item a:hover::after {
    visibility: visible;
    opacity: 1;
  }
}
.p-top-info__text {
  height: 100%;
  min-height: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: max(1.1875rem, 10px);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-main);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-top-info__text {
    font-size: max(1rem, 10px);
    line-height: 1.40125;
    min-height: 2.5rem;
  }
}

.p-top-info__icon {
  width: 7.5rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-top-info__icon {
    width: 4.375rem;
  }
}

.p-top-info__icon img {
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-top-info__sub-links-wrap {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-info__sub-links-wrap {
    margin-top: 2.25rem;
  }
}

.p-top-info__vaccine-links {
  margin-top: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-top-info__vaccine-links {
    margin-top: 2.5rem;
    width: 92%;
    margin-inline: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-info__vaccine-item {
    width: 100%;
  }
}

.p-top-info__vaccine-item a {
  width: 27.5rem;
  display: inline-block;
  border: 1px solid var(--color-main);
  border-radius: 0.5rem;
  -webkit-transition: -webkit-filter 0.3s ease-in-out;
  transition: -webkit-filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-top-info__vaccine-item a {
    width: 100%;
    max-width: 20rem;
    margin-inline: auto;
  }
}

.p-top-info__vaccine-item a::before {
  content: "";
  width: 14.4375rem;
  height: auto;
  aspect-ratio: 231/140;
  background-image: url(../images/top/info-vaccine01.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 0.5rem 0 0 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-info__vaccine-item a::before {
    width: 9.875rem;
    aspect-ratio: 158/104;
    background-image: url(../images/top/info-vaccine01-sp.webp);
  }
}

.p-top-info__vaccine-item a span {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-block: 0.9375rem;
  padding-inline: 0 0.9375rem;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.625rem;
  font-size: max(1.25rem, 10px);
  font-weight: 700;
  line-height: 1.65;
  color: var(--color-main);
  letter-spacing: 0.04em;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-top-info__vaccine-item a span {
    font-size: max(1rem, 10px);
    line-height: 1.5625;
    padding-block: 0.75rem;
    padding-inline: 0 0.625rem;
    gap: 0.3125rem;
  }
}

.p-top-info__vaccine-item a span::after {
  content: "";
  width: 1.25rem;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(../images/common/arrow-green.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-top-info__vaccine-item a span::after {
    width: 0.9375rem;
  }
}

@media (any-hover: hover) {
  .p-top-info__vaccine-item a:hover {
    opacity: 1;
    -webkit-filter: brightness(1.1);
            filter: brightness(1.1);
  }
  .p-top-info__vaccine-item a:hover span {
    opacity: 0.7;
  }
}
.p-top-info__vaccine-item[data-color=orange] a {
  border-color: var(--color-accent);
}

.p-top-info__vaccine-item[data-color=orange] a::before {
  background-image: url(../images/top/info-vaccine02.webp);
}
@media screen and (max-width: 767px) {
  .p-top-info__vaccine-item[data-color=orange] a::before {
    background-image: url(../images/top/info-vaccine02-sp.webp);
  }
}

.p-top-info__vaccine-item[data-color=orange] a span {
  color: var(--color-accent);
}

.p-top-info__vaccine-item[data-color=orange] a span::after {
  background-image: url(../images/common/arrow-orange.svg);
}

@media screen and (max-width: 767px) {
  .p-top-news {
    background-color: var(--color-background-yellow);
  }
}

.p-top-news__head .c-top-section-title__ja {
  font-size: max(1.5rem, 10px);
  margin-top: 1.4375rem;
}

.p-top-news__content {
  background-color: var(--color-background-yellow);
  padding: 3.4375rem 3.9375rem 4.375rem 3.25rem;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__content {
    padding: 2.9375rem 0 3.125rem;
  }
}

.p-top-news__tab-content {
  min-width: 0;
  width: 100%;
}

.p-top-news__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__head {
    display: contents;
  }
}

.p-top-news__head .c-top-section-title {
  padding-left: 2.0625rem;
}

.p-top-news__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__tabs {
    margin-top: 2.1875rem;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: scroll;
    padding-bottom: 0.625rem;
    -webkit-overflow-scrolling: touch;
  }
}

.p-top-news__tab-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 13.125rem;
  padding: 0.5rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-main);
  border-radius: 1.375rem;
  cursor: pointer;
  -webkit-transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.78125;
  color: var(--color-main);
  letter-spacing: 0.04em;
}

.p-top-news__tab-btn.is-active {
  background-color: var(--color-main);
  color: var(--color-white);
}

@media (any-hover: hover) {
  .p-top-news__tab-btn:hover {
    opacity: 1;
    background-color: var(--color-main);
    color: var(--color-white);
  }
}
.p-top-news__list-wrap {
  margin-top: 1.4375rem;
  display: grid;
  gap: 4.375rem;
  grid-template-columns: 11rem 1fr;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .p-top-news__list-wrap {
    margin-top: 0.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.5625rem;
  }
}

/* タブコンテンツ（デフォルト非表示） */
.p-top-news__tab-content {
  display: none;
}

/* アクティブなタブコンテンツ */
.p-top-news__tab-content.is-active {
  display: block;
}

@media screen and (max-width: 767px) {
  .p-top-news__button .c-button {
    width: 11rem;
    font-size: max(1rem, 10px);
    line-height: 1.625;
  }
}

.p-top-overview {
  background-color: var(--color-main);
  padding-block: 2.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-overview {
    padding-block: 2rem;
  }
}

.p-top-overview__grid {
  background-color: var(--color-white);
  border-radius: 0.625rem;
  padding: 2.1875rem 3.75rem 2.5rem;
  display: grid;
  grid-template-columns: 35% 42.5% 16.5%;
  gap: 3%;
}
@media screen and (max-width: 767px) {
  .p-top-overview__grid {
    display: block;
    padding: 1.6875rem 0.9375rem 2.5rem;
  }
}

.p-top-overview__item:not(:first-child) {
  border-left: 1px solid var(--color-border);
  padding-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-top-overview__item:not(:first-child) {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--color-border);
    padding-top: 1.6875rem;
    margin-top: 1.6875rem;
  }
}

.p-top-overview__label {
  font-size: max(1.125rem, 10px);
  font-weight: 500;
  line-height: 1;
  color: var(--color-black);
  letter-spacing: 0.04em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-top-overview__label {
    padding-left: 0.625rem;
    gap: 0.625rem;
  }
}

.p-top-overview__label::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.375rem;
  height: auto;
  aspect-ratio: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.p-top-overview__item[data-type=contact] .p-top-overview__label::before {
  background-image: url(../images/common/phone-icon.svg);
}

.p-top-overview__item[data-type=hours] .p-top-overview__label::before {
  background-image: url(../images/common/clock-icon.svg);
}

.p-top-overview__item[data-type=holiday] .p-top-overview__label::before {
  background-image: url(../images/common/calendar-icon.svg);
  aspect-ratio: 21/18;
}

.p-top-overview__tel {
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-top-overview__tel {
    padding-left: 0.625rem;
  }
}

.p-top-overview__tel a {
  display: block;
  font-size: max(1.625rem, 10px);
  font-weight: 700;
  line-height: 1;
  color: var(--color-black);
  letter-spacing: 0.04em;
}

.p-top-overview__note {
  margin-top: 1.4375rem;
  background-color: var(--color-pink);
  border-radius: 0.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .p-top-overview__note {
    width: 100%;
    margin-top: 1.125rem;
  }
}

.p-top-overview__note a {
  padding: 0.75rem 1.4375rem;
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  line-height: 1.3214285714;
  color: var(--color-red);
  letter-spacing: 0.04em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-overview__note a {
    width: 100%;
    padding: 0.75rem 1.4375rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-top-overview__note a::after {
  content: "";
  width: 1.25rem;
  height: auto;
  aspect-ratio: 1;
  background-image: url(../images/common/arrow-red.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.p-top-overview__button-list {
  margin-top: 1.5625rem;
  display: grid;
  gap: 1.0625rem;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (max-width: 767px) {
  .p-top-overview__button-list {
    margin-top: 1.3125rem;
    padding-inline: 0.4375rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-top-overview__button-item a {
  height: 100%;
}

.p-top-overview__table {
  margin-top: 1.875rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-overview__table {
    margin-top: 1.375rem;
  }
}

.p-top-overview__table-note {
  margin-top: 0.625rem;
  font-size: max(0.875rem, 10px);
  font-weight: 500;
  line-height: 1.3214285714;
  color: var(--color-black);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-top-overview__table-note {
    font-size: max(0.75rem, 10px);
    line-height: 1.5416666667;
    margin-top: 0.9375rem;
  }
}

.p-top-overview__link-list {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-overview__link-list {
    gap: 0.625rem;
  }
}

.p-top-overview__holiday-text {
  margin-top: 0.9375rem;
  font-size: max(1.25rem, 10px);
  font-weight: 700;
  line-height: 1.75;
  color: var(--color-black);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-top-overview__holiday-text {
    margin-top: 0.8125rem;
    padding-left: 0.625rem;
  }
}

.p-top-recruit {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-recruit {
    margin-bottom: 2.3125rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-recruit__inner.l-inner {
    padding-inline: 1.125rem;
  }
}

.p-top-recruit::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 48%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  aspect-ratio: 1400/425;
  background-image: url(../images/top/recruit-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-top-recruit::before {
    background-image: url(../images/top/recruit-bg-sp.webp);
    aspect-ratio: 375/190;
    top: initial;
    -webkit-transform: initial;
            transform: initial;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

.p-top-recruit__content {
  position: relative;
  z-index: 0;
  max-width: 39.375rem;
  height: 29rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__content {
    width: 100%;
    height: 20.875rem;
    max-width: 23.4375rem;
  }
}

.p-top-recruit__content::before {
  position: absolute;
  z-index: 0;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 630/464;
  background-image: url(../images/top/recruit-content-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__content::before {
    aspect-ratio: 340/225;
    background-image: url(../images/top/recruit-content-bg-sp.webp);
  }
}

.p-top-recruit__content::after {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  width: 100%;
  height: 12.5rem;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(30, 156, 57, 0)), color-stop(20%, #1e9c39), to(#1e9c39));
  background: linear-gradient(to bottom, rgba(30, 156, 57, 0) 0%, #1e9c39 20%, #1e9c39 100%);
  border-radius: 0 0 1.25rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__content::after {
    height: 12.0625rem;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(30, 156, 57, 0)), color-stop(40%, #1e9c39), to(#1e9c39));
    background: linear-gradient(to bottom, rgba(30, 156, 57, 0) 0%, #1e9c39 40%, #1e9c39 100%);
  }
}

.p-top-recruit__content a {
  height: 100%;
  display: block;
  position: relative;
  z-index: 2;
  padding: 3.125rem 1.25rem;
  border-radius: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__content a {
    padding-block: 3rem;
    padding-inline: 1rem 0.625rem;
  }
}

.p-top-recruit__content a:after {
  content: "";
  position: absolute;
  z-index: 3;
  bottom: 2.5rem;
  right: 2.5rem;
  background-image: url(../images/common/arrow-white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 2.375rem;
  height: auto;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__content a:after {
    width: 2rem;
    bottom: 1.25rem;
    right: 1.25rem;
  }
}

@media (any-hover: hover) {
  .p-top-recruit__content a:hover {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    opacity: 1;
  }
}
.p-top-recruit__content-title {
  width: 34.5625rem;
  margin-inline: auto;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__content-title {
    width: 100%;
  }
}

.p-top-recruit__content-title img {
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
  width: 100%;
}

.p-top-recruit__content-text {
  margin-top: 1.125rem;
  padding-left: 2.25rem;
  font-size: max(1rem, 10px);
  font-weight: 500;
  line-height: 1.53125;
  letter-spacing: 0;
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-top-recruit__content-text {
    margin-top: 1rem;
    padding-left: 0;
    font-size: max(0.875rem, 10px);
    line-height: 1.6071428571;
  }
}

.p-top-recruit__image {
  margin-top: -7rem;
  margin-inline: auto;
  -webkit-transform: translateX(60px);
          transform: translateX(60px);
  width: 24.0714285714%;
  height: auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__image {
    margin-top: -5.9375rem;
    width: 69.3333333333%;
    width: 16.25rem;
    -webkit-transform: translateX(27px);
            transform: translateX(27px);
  }
}

.p-top-recruit__image img {
  aspect-ratio: 337/354;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
}

.p-top-specialized-center {
  padding-block: 3.3125rem 4.375rem;
  background-image: url(../images/top/specialized-center-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-top-specialized-center {
    padding-block: 2.5rem 5.625rem;
  }
}

.p-top-specialized-center__inner.l-inner {
  padding-inline: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-specialized-center__inner.l-inner {
    padding-inline: 0.8125rem;
  }
}

.p-top-specialized-center__slider {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-top-specialized-center__slider {
    margin-top: 2.0625rem;
    max-width: 25rem;
    margin-inline: auto;
  }
}

.p-top-specialized-center__item {
  position: relative;
  width: 100%;
  height: auto;
}

@media (any-hover: hover) {
  .p-top-specialized-center__item a figure {
    overflow: hidden;
  }
  .p-top-specialized-center__item a img {
    -webkit-transition: scale 0.3s ease-in-out;
    transition: scale 0.3s ease-in-out;
  }
  .p-top-specialized-center__item a:hover {
    opacity: 1;
  }
  .p-top-specialized-center__item a:hover img {
    scale: 1.1;
  }
}
.p-top-specialized-center__item a:focus-visible {
  opacity: 1;
}
.p-top-specialized-center__item a:focus-visible img {
  scale: 1.1;
}

.p-top-specialized-center__item img {
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
  width: 100%;
}

.p-top-specialized-center__slider .splide__arrows {
  bottom: -3.125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  right: initial;
}
@media screen and (max-width: 767px) {
  .p-top-specialized-center__slider .splide__arrows {
    bottom: -3.75rem;
  }
}

.p-top-specialized-center__slider .splide__arrow {
  width: 1.25rem;
  height: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-top-specialized-center__slider .splide__arrow {
    width: 2.5rem;
    height: 2.8125rem;
  }
}

.p-top-specialized-center__slider .splide__arrow--next::after,
.p-top-specialized-center__slider .splide__arrow--prev::after {
  width: 0.9375rem;
  height: 0.9375rem;
  border-top: 2px solid #717071;
  border-right: 2px solid #717071;
}
@media screen and (max-width: 767px) {
  .p-top-specialized-center__slider .splide__arrow--next::after,
  .p-top-specialized-center__slider .splide__arrow--prev::after {
    width: 1.5625rem;
    height: 1.5625rem;
    border-width: 0.1875rem;
  }
}

@media (any-hover: hover) {
  .p-top-specialized-center__slider .splide__arrow--next:hover:after,
  .p-top-specialized-center__slider .splide__arrow--prev:hover:after {
    border-color: var(--color-navy);
  }
}
[data-hover-underline] {
  --underline-color: currentColor;
  --bottom: 0;
  --duration: 0.4s;
  --delay: 0s;
  --line-width: 1px;
  background-repeat: no-repeat;
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--underline-color)), to(var(--underline-color)));
  background-image: linear-gradient(var(--underline-color), var(--underline-color));
  background-size: 0% var(--line-width);
  background-position: bottom var(--bottom) right;
}

@-webkit-keyframes expand {
  0% {
    background-size: 0% var(--line-width);
    background-position: bottom var(--bottom) left;
  }
  100% {
    background-position: bottom var(--bottom) left;
    background-size: 100% var(--line-width);
  }
}

@keyframes expand {
  0% {
    background-size: 0% var(--line-width);
    background-position: bottom var(--bottom) left;
  }
  100% {
    background-position: bottom var(--bottom) left;
    background-size: 100% var(--line-width);
  }
}
@-webkit-keyframes contract {
  0% {
    background-size: 100% var(--line-width);
    background-position: bottom var(--bottom) right;
  }
  100% {
    background-position: bottom var(--bottom) right;
    background-size: 0% var(--line-width);
  }
}
@keyframes contract {
  0% {
    background-size: 100% var(--line-width);
    background-position: bottom var(--bottom) right;
  }
  100% {
    background-position: bottom var(--bottom) right;
    background-size: 0% var(--line-width);
  }
}
[data-hover-underline].is-expanded {
  -webkit-animation: expand var(--duration) var(--delay) forwards;
          animation: expand var(--duration) var(--delay) forwards;
}

[data-hover-underline].is-contracting {
  -webkit-animation: contract var(--duration) forwards;
          animation: contract var(--duration) forwards;
}

@media (any-hover: hover) {
  a:hover:has([data-hover-underline]) {
    opacity: 1;
  }
}
a:focus-visible:has([data-hover-underline]) {
  opacity: 1;
}

.u-color-red {
  color: var(--color-red);
}

.u-no-image {
  -o-object-fit: contain;
     object-fit: contain;
}

.u-pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }
}