@charset "UTF-8";
/* リキッドレイアウト対応 */
.u-desktop {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}

.u-small {
  display: none;
}
@media screen and (max-width: 385px) {
  .u-small {
    display: block;
  }
}

.text {
  display: block;
}

.u-col--blue {
  color: #3C9ED1;
}

.u-bg--blue {
  background-color: #EFF8FD;
}

.u-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .u-column {
    gap: 0.375rem;
  }
}
.u-column > * {
  display: block;
}

.u-flex--end {
  display: flex;
  align-items: flex-end;
}

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

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

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

.u-fs-40 {
  font-size: 2.5rem;
}
@media only screen and (min-width: 1440px) {
  .u-fs-40 {
    font-size: 2.6875rem;
  }
}
@media screen and (max-width: 767px) {
  .u-fs-40 {
    font-size: 1.5625rem;
  }
}
@media screen and (max-width: 385px) {
  .u-fs-40 {
    font-size: 1.25rem;
  }
}

.u-mt-lg {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .u-mt-lg {
    margin-top: 2.5rem;
  }
}

.u-mt-md {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .u-mt-md {
    margin-top: 1.875rem;
  }
}

.u-mt-sm {
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .u-mt-sm {
    margin-top: 1.25rem;
  }
}

.u-mt-xs {
  margin-top: 0.625rem;
}

html {
  font-size: 16px;
}
@media (max-width: 1126px) {
  html {
    font-size: 1.4209591474vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
  color: inherit;
}

body.is-fixed {
  height: 100%;
  overflow: hidden !important;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  color: #444444;
  font-weight: 500;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /* Safari */
  counter-reset: number 0; /* number のカウンタを 0 にセット */
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}
body {
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
          animation: fadeIn 2s ease 0s 1 normal;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
*,
*::before,
*::after {
  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;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* 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]) {
  text-decoration-skip-ink: auto;
}

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

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

button {
  padding: 0;
  color: inherit;
}

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;
}

.c-breadcrumb {
  padding: 2.5rem 5rem;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    padding: 1.5rem;
  }
}

.c-breadcrumb__lists {
  display: flex;
  align-items: center;
  gap: 1.25rem 0.625rem;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}

@media (any-hover: hover) {
  .c-breadcrumb__item a:hover {
    opacity: 0.5;
  }
}
.c-breadcrumb__item a span {
  text-decoration: underline;
}
.c-breadcrumb__item span {
  color: #7a7368;
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.c-breadcrumb__item:not(:first-child) {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.c-breadcrumb__item:not(:first-child)::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 1px;
  border-radius: 2px;
}

.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  width: 100%;
  height: 100%;
  border-radius: 3.125rem;
  background-color: #3C9ED1;
  color: #ffffff;
  padding: 0.3125rem;
}
.c-btn .name {
  width: -webkit-fit-content;
  width: fit-content;
  padding: 0.6875rem 1.40625rem;
  background-color: #fff;
  color: #3C9ED1;
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 600;
  border-radius: 2.5rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-btn .name {
    font-size: 0.8125rem;
    padding: 0.5rem 0.9375rem;
    border-radius: 1.875rem;
  }
}
.c-btn .c-btn-icon {
  width: 1.375rem;
  height: 1.8125rem;
  display: inline-block;
  margin-left: 0.625rem;
}
@media screen and (max-width: 767px) {
  .c-btn .c-btn-icon {
    margin-left: 0.3125rem;
  }
}
.c-btn .c-btn-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .c-btn .c-btn-icon {
    width: 1rem;
    height: 1.3125rem;
  }
}
.c-btn .text {
  margin-top: 0.1875rem;
  font-size: 1.5625rem;
  line-height: 1.3;
  font-weight: 900;
  font-family: "Avenir", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}
@media screen and (max-width: 767px) {
  .c-btn .text {
    font-size: 1.125rem;
  }
}
@media (any-hover: hover) {
  .c-btn:hover, .c-btn:focus {
    opacity: 0.7;
  }
}

.c-btn--rounded {
  padding: 0.8125rem 1.0625rem;
  justify-content: flex-end;
  gap: 0.9125rem;
}
.c-btn--rounded .text {
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 500;
  margin-top: 0.25rem;
}
.c-btn--rounded .icon {
  width: 1.875rem;
  height: 1.875rem;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-btn--rounded .arrow {
  display: block;
  width: 0.875rem;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ハンバーガーボタン
------------------------------------------------ */
.c-hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-hamburger {
    display: block;
    width: 1.4375rem;
    height: 1.75rem;
    border-radius: 50%;
    position: relative;
    z-index: 21;
  }
}

.c-hamburger span {
  position: relative;
  display: block;
  height: 0.125rem;
  width: 100%;
  background-color: #444444;
  transition: 0.3s ease-in-out;
}

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

.c-hamburger span:nth-child(2) {
  margin: 0.5rem 0;
}
@media screen and (max-width: 767px) {
  .c-hamburger span:nth-child(2) {
    margin: 0.4375rem 0;
  }
}

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

.c-hamburger.open span:nth-child(1) {
  top: 0.5625rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .c-hamburger.open span:nth-child(1) {
    top: 0.5rem;
  }
}

.c-hamburger.open span:nth-child(2) {
  background-color: transparent;
  box-shadow: none;
}

.c-hamburger.open span:nth-child(3) {
  top: -0.625rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c-schedule__table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  overflow: hidden;
}

@media screen and (max-width: 480px) {
  .c-schedule__table th {
    font-size: 0.5625rem;
  }
}

.c-schedule__table th.c-schedule__sub-title {
  width: 27%;
  font-size: 0.9375rem;
}
@media screen and (max-width: 480px) {
  .c-schedule__table th.c-schedule__sub-title {
    font-size: 0.75rem;
    width: 30%;
  }
}
@media only screen and (max-width: 380px) {
  .c-schedule__table th.c-schedule__sub-title {
    font-size: 0.6875rem;
  }
}

.c-schedule__table td {
  font-size: 0.9375rem;
}
@media screen and (max-width: 480px) {
  .c-schedule__table td {
    font-size: 0.5625rem;
  }
}

.c-schedule__table th,
.c-schedule__table td {
  text-align: center;
  padding: 0.625rem 0.5rem;
  font-weight: 350;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 480px) {
  .c-schedule__table th,
  .c-schedule__table td {
    padding: 0.3125rem 0.25rem;
  }
}

.c-schedule__table tr {
  border-bottom: 0.0625rem solid rgba(60, 158, 209, .59);
}
.c-schedule__table tr:last-child {
  border-bottom: none;
}

.c-schedule__table thead th {
  border-bottom: 0.0625rem solid rgba(60, 158, 209, .59);
}

/***************************************
* タイトル
****************************************/
.c-title__line {
  font-size: 1.125rem;
  line-height: 1.25;
  letter-spacing: 0.06em;
  font-weight: 500;
  position: relative;
  padding-left: 0.875rem;
}
@media screen and (max-width: 767px) {
  .c-title__line {
    font-size: 0.875rem;
    padding-left: 0.625rem;
  }
}
.c-title__line::before {
  content: "";
  display: block;
  width: 0.4375rem;
  height: 90%;
  background-color: #3C9ED1;
  border-radius: 0.0625rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 767px) {
  .c-title__line::before {
    width: 0.25rem;
    height: 75%;
  }
}

.c-title__left-box {
  position: relative;
  padding-left: 1.4375rem;
  font-size: 1.5625rem;
  line-height: 1.4;
  font-weight: 700;
  height: -webkit-fit-content;
  height: fit-content;
}
@media screen and (max-width: 767px) {
  .c-title__left-box {
    font-size: 1.125rem;
    padding-left: 1.125rem;
  }
}
.c-title__left-box::before {
  content: "";
  display: block;
  width: 0.8125rem;
  height: 0.8125rem;
  background-color: #3C9ED1;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 767px) {
  .c-title__left-box::before {
    width: 0.75rem;
    height: 0.75rem;
    margin-top: 0.0625rem;
  }
}

.c-title__left-box--large {
  position: relative;
  padding-left: 2.1875rem;
  font-size: 1.875rem;
  line-height: 1.4;
  font-weight: 700;
  height: -webkit-fit-content;
  height: fit-content;
}
@media screen and (max-width: 767px) {
  .c-title__left-box--large {
    font-size: 1.125rem;
    padding-left: 1.0625rem;
  }
}
.c-title__left-box--large::before {
  content: "";
  display: block;
  width: 1.1875rem;
  height: 1.1875rem;
  background-color: #3C9ED1;
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .c-title__left-box--large::before {
    width: 0.75rem;
    height: 0.75rem;
    margin-top: 0.40625rem;
  }
}

.c-title__main {
  position: relative;
  font-size: clamp(1.563rem, 1.089rem + 2.02vw, 2.813rem);
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
  padding-inline: 2.6875rem;
}
@media screen and (max-width: 767px) {
  .c-title__main.--page {
    font-size: 1.5625rem;
    padding-inline: 1.375rem;
  }
}
@media screen and (max-width: 385px) {
  .c-title__main.--page {
    font-size: 1.25rem;
    padding-inline: 1.25rem;
  }
}
.c-title__main.--small {
  font-size: 2.5rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .c-title__main.--small {
    font-size: 1.5625rem;
    letter-spacing: 0.06em;
  }
}
@media screen and (max-width: 385px) {
  .c-title__main.--small {
    font-size: 1.25rem;
  }
}
.c-title__main::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 0.8125rem;
  height: 0.8125rem;
  background-color: #3C9ED1;
}
@media screen and (max-width: 767px) {
  .c-title__main::before {
    width: 0.625rem;
    height: 0.625rem;
  }
}
.c-title__main::after {
  content: "";
  position: absolute;
  top: 0.55em;
  right: 0;
  width: 0.8125rem;
  height: 0.8125rem;
  background-color: #3C9ED1;
}
@media screen and (max-width: 767px) {
  .c-title__main::after {
    width: 0.625rem;
    height: 0.625rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title__main {
    font-size: 2.1875rem;
    padding-inline: 1.5625rem;
  }
}

.c-title__sub {
  display: inline-block;
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: #3C9ED1;
}
@media screen and (max-width: 767px) {
  .c-title__sub {
    font-size: 0.8125rem;
  }
}

.c-title__side-line {
  position: relative;
  width: -webkit-fit-content;
  width: fit-content;
  padding-inline: 2rem;
}
.c-title__side-line::before {
  content: "";
  display: block;
  width: 1.375rem;
  height: 0.1875rem;
  background-color: #3C9ED1;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-title__side-line::before {
    width: 0.875rem;
    height: 0.1875rem;
  }
}
.c-title__side-line::after {
  content: "";
  display: block;
  width: 1.375rem;
  height: 0.1875rem;
  background-color: #3C9ED1;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-title__side-line::after {
    width: 0.875rem;
    height: 0.1875rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title__side-line {
    padding-inline: 1.25rem;
  }
}

.l-inner {
  width: 100%;
  max-width: 1174px;
  padding-inline: 24px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 648px;
    padding-inline: 24px;
  }
}

/***************************************
* ページ共通 text
****************************************/
.l-page__text {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .l-page__text {
    font-size: 0.8125rem;
    line-height: 1.6;
  }
}

/***************************************
* ページ共通 MV 
****************************************/
.l-page__mv {
  width: 100%;
  padding-top: 5.5rem;
}
@media screen and (max-width: 767px) {
  .l-page__mv {
    padding-top: 3.125rem;
  }
}

.l-page__mv-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.l-page__mv-img {
  width: 100%;
}
.l-page__mv-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.l-page__mv-content {
  width: 100%;
  position: absolute;
  top: 52%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.l-page__mv-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 0.1875rem 1.625rem rgba(0, 0, 0, .16);
}
.l-page__mv-title .l-page__mv-title-main {
  font-size: 3.125rem;
  line-height: 1.4;
  letter-spacing: 0.06em;
}
@media only screen and (max-width: 1188px) {
  .l-page__mv-title .l-page__mv-title-main {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-page__mv-title .l-page__mv-title-main {
    font-size: 1.25rem;
    line-height: 1.4;
    text-align: center;
  }
}
.l-page__mv-title .l-page__mv-title-sub {
  font-size: 1.875rem;
  line-height: 2.3;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .l-page__mv-title .l-page__mv-title-sub {
    font-size: 0.875rem;
    line-height: 2.3;
  }
}

/***************************************
* ページ共通 heading
****************************************/
.l-page__heading {
  width: 100%;
  padding-block: 5.3125rem 4.375rem;
  position: relative;
}
.l-page__heading::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../../assets/images/bg/page-bg02.webp) no-repeat top left/contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .l-page__heading::before {
    background: none;
  }
}
@media screen and (max-width: 767px) {
  .l-page__heading {
    padding-block: 2.1875rem;
  }
}

.l-page__heading-inner {
  width: 100%;
  max-width: calc(100% - 48px);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-page__heading-inner {
    max-width: 648px;
    padding-inline: 24px;
  }
}

.l-page__heading-title {
  font-size: 2.8125rem;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
}
@media only screen and (max-width: 1285px) {
  .l-page__heading-title {
    font-size: 2.375rem;
  }
}
@media screen and (max-width: 767px) {
  .l-page__heading-title {
    font-size: 1.125rem;
  }
}

.l-page__heading-content {
  margin-top: 2.5rem;
  width: 100%;
  max-width: 70.375rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-page__heading-content {
    max-width: 100%;
    margin-top: 1.25rem;
  }
}

.l-page__heading-img {
  width: 100%;
}
.l-page__heading-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}

.l-page__heading-content-title {
  font-size: 1.875rem;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .l-page__heading-content-title {
    margin-top: 1.25rem;
    font-size: 1.125rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 385px) {
  .l-page__heading-content-title {
    font-size: 1rem;
  }
}

.l-page__heading-content-title + .l-page__heading-text {
  margin-top: 0.625rem;
}

.l-page__heading-text {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .l-page__heading-text {
    margin-top: 1.25rem;
    font-size: 0.8125rem;
    line-height: 2.3;
    text-align: left;
  }
}
.l-page__heading-text > span {
  display: block;
}
.l-page__heading-text > span:not(:first-child) {
  margin-top: 1.3em;
}
@media screen and (max-width: 767px) {
  .l-page__heading-text > span:not(:first-child) {
    margin-top: 1em;
  }
}

/***************************************
* ページ共通 media
****************************************/
.l-page__media {
  margin-top: 1.6875rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .l-page__media {
    margin-top: 1.25rem;
    flex-direction: column;
    gap: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .l-page__media.--reverse {
    flex-direction: column-reverse;
  }
}

.l-page__media-img {
  flex: 0 0 32.125rem;
}
@media screen and (max-width: 767px) {
  .l-page__media-img {
    flex: 1 1 auto;
    width: 80%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 480px) {
  .l-page__media-img {
    width: 100%;
  }
}
.l-page__media-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}

.l-page__media-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .l-page__media-content {
    width: 100%;
  }
}

.l-page__media-title {
  font-size: 2.5rem;
  line-height: 1.4;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-page__media-title {
    font-size: 1.125rem;
    text-align: center;
  }
}

.l-page__media-text {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.06em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-page__media-text {
    font-size: 0.8125rem;
    line-height: 2.3;
  }
}
.l-page__media-text > span {
  display: block;
}
.l-page__media-text > span:not(:first-child) {
  margin-top: 1.3em;
}
@media screen and (max-width: 767px) {
  .l-page__media-text > span:not(:first-child) {
    margin-top: 1em;
  }
}

/***************************************
* ページ共通 list
****************************************/
.l-page__list-wrap {
  padding: 1.5625rem 2.1875rem 1.5625rem 4.375rem;
}
@media screen and (max-width: 767px) {
  .l-page__list-wrap {
    padding: 1.25rem 0.9375rem;
  }
}
.l-page__list-wrap.--bg-blue {
  background-color: #EFF8FD;
  border-radius: 0.625rem;
}
.l-page__list-wrap.--bg-white {
  background-color: #fff;
  border-radius: 0.625rem;
  padding: 1.5625rem 2.875rem;
}
@media screen and (max-width: 767px) {
  .l-page__list-wrap.--bg-white {
    padding: 1.25rem 0.9375rem;
  }
}

.l-page__list-title ~ .l-page__list {
  margin-top: 1em;
}

.l-page__list-item {
  position: relative;
  padding-left: 0.875rem;
}
.l-page__list-item::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  aspect-ratio: 1/1;
  background-color: #3C9ED1;
  border-radius: 50%;
  position: absolute;
  top: 0.7em;
  left: 0;
}
@media screen and (max-width: 385px) {
  .l-page__list-item::before {
    top: 0.6em;
  }
}

.l-page__list-text {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.l-page__list-text :not(:first-child) {
  text-indent: 1em;
  padding-left: -1em;
}
@media screen and (max-width: 767px) {
  .l-page__list-text {
    font-size: 0.8125rem;
  }
}

/***************************************
* ページ共通 faq
****************************************/
.l-page__faq {
  margin-top: 1.5625rem;
  border: 0.125rem solid #3C9ED1;
  border-radius: 0.625rem;
  padding: 2rem 5.625rem 2.5rem 5.625rem;
}
@media screen and (max-width: 767px) {
  .l-page__faq {
    margin-top: 1.25rem;
    padding: 1.875rem;
  }
}
@media screen and (max-width: 480px) {
  .l-page__faq {
    padding: 1.875rem 0.625rem;
  }
}

.l-page__faq-item {
  border-bottom: 0.125rem solid #3C9ED1;
  padding-block: 1.25rem;
}
.l-page__faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.l-page__faq-item:first-child {
  padding-top: 0;
}

.l-page__faq-item-inner {
  width: min(100%, 44.375rem);
  margin-inline: auto;
}

.l-page__faq-item-title,
.l-page__faq-item-text {
  display: flex;
  gap: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .l-page__faq-item-title,
  .l-page__faq-item-text {
    gap: 0.625rem;
  }
}
.l-page__faq-item-title .icon,
.l-page__faq-item-text .icon {
  font-size: 1.5625rem;
  line-height: 1.4;
  font-weight: 700;
  color: #3C9ED1;
}
@media screen and (max-width: 767px) {
  .l-page__faq-item-title .icon,
  .l-page__faq-item-text .icon {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 480px) {
  .l-page__faq-item-title .icon,
  .l-page__faq-item-text .icon {
    font-size: 1rem;
  }
}

.l-page__faq-item-title {
  font-size: 1.5625rem;
  line-height: 1.4;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-page__faq-item-title {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .l-page__faq-item-title {
    font-size: 0.8125rem;
    line-height: 2;
  }
}

.l-page__faq-item-text {
  margin-top: 0.4375rem;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.06em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-page__faq-item-text {
    font-size: 0.8125rem;
  }
}
.l-page__faq-item-text .text {
  display: block;
  margin-top: 0.1875rem;
}

/***************************************
* ページ共通 flow
****************************************/
.l-page__flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.0625rem;
  position: relative;
}
@media screen and (max-width: 480px) {
  .l-page__flow-item {
    gap: 0.4375rem;
  }
}
.l-page__flow-item:last-child .l-page__flow-img::before {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-page__flow-item {
    gap: 0.625rem;
  }
  .l-page__flow-item::before {
    content: "";
    display: block;
    width: 0.125rem;
    height: 3.125rem;
    background-color: #3C9ED1;
    position: absolute;
    left: 50%;
    bottom: -1.875rem;
    -webkit-transform: translate(-50%, 50%);
            transform: translate(-50%, 50%);
    z-index: 1;
  }
  .l-page__flow-item:last-of-type::before {
    display: none;
  }
}

.l-page__flow-img {
  width: 9.375rem;
  height: 9.375rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 0.125rem solid #3C9ED1;
  display: grid;
  place-items: center;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.l-page__flow-img::before {
  content: "";
  display: block;
  width: 9.0625rem;
  height: 0.125rem;
  background-color: #3C9ED1;
  position: absolute;
  top: 50%;
  right: -50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-page__flow-img::before {
    display: none;
  }
}
.l-page__flow-img img {
  width: 55%;
  height: 70%;
  -o-object-fit: contain;
     object-fit: contain;
}

.l-page__flow-text {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .l-page__flow-text {
    font-size: 1rem;
    white-space: normal;
  }
}

/* アーカイブページのページ送り */
.nav-links {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .nav-links {
    width: min(14.6875rem, 68%);
    gap: 0.9375rem;
  }
}
@media screen and (max-width: 480px) {
  .nav-links {
    margin-top: 1.25rem;
  }
}

.page-numbers {
  display: grid;
  place-items: center;
  color: #3C9ED1;
  border: 0.0625rem solid #3C9ED1;
  width: 2rem;
  height: 2rem;
}
.page-numbers.current {
  color: #ffffff;
  background-color: #3C9ED1;
}
.page-numbersa {
  cursor: pointer;
  transition: all 0.3s;
}
.page-numbers .text {
  font-size: 0.9375rem;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.nav-links .prev,
.nav-links .next {
  display: none;
}

/* -----------------------------------------------------------------
  swiper カスタマイズ
----------------------------------------------------------------- */
/***************************************
* company
****************************************/
.woman-swiper-slide img,
.medicine-swiper-slide img {
  width: 100%;
  aspect-ratio: 993/541;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .woman-swiper-slide img,
  .medicine-swiper-slide img {
    aspect-ratio: 4/3;
  }
}

.p-company__introduction-content-button {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-company__introduction-content-button .button-next,
.p-company__introduction-content-button .button-prev {
  z-index: 3;
  cursor: pointer;
  transition: all 0.3s;
}
@media (any-hover: hover) {
  .p-company__introduction-content-button .button-next:hover,
  .p-company__introduction-content-button .button-prev:hover {
    opacity: 0.7;
  }
}
.p-company__introduction-content-button .button-prev-icon,
.p-company__introduction-content-button .button-next-icon {
  position: relative;
  display: block;
  width: 3.4375rem;
  height: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .p-company__introduction-content-button .button-prev-icon,
  .p-company__introduction-content-button .button-next-icon {
    width: 1.875rem;
    height: 1.875rem;
  }
}
.p-company__introduction-content-button .button-next-icon::before, .p-company__introduction-content-button .button-next-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 2.0625rem;
  height: 0.3125rem;
  border-radius: 9999px;
  background-color: #3C9ED1;
  -webkit-transform-origin: calc(100% - 1.5px) 50%;
          transform-origin: calc(100% - 1.5px) 50%;
}
@media screen and (max-width: 767px) {
  .p-company__introduction-content-button .button-next-icon::before, .p-company__introduction-content-button .button-next-icon::after {
    width: 1.25rem;
    height: 0.25rem;
  }
}
.p-company__introduction-content-button .button-next-icon::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.p-company__introduction-content-button .button-next-icon::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.p-company__introduction-content-button .button-prev-icon::before, .p-company__introduction-content-button .button-prev-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.875rem;
  height: 0.3125rem;
  border-radius: 9999px;
  background-color: #3C9ED1;
  -webkit-transform-origin: 1.5px 50%;
          transform-origin: 1.5px 50%;
}
@media screen and (max-width: 767px) {
  .p-company__introduction-content-button .button-prev-icon::before, .p-company__introduction-content-button .button-prev-icon::after {
    width: 1.25rem;
    height: 0.25rem;
  }
}
.p-company__introduction-content-button .button-prev-icon::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.p-company__introduction-content-button .button-prev-icon::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/***************************************
* 中絶
****************************************/
.p-abortion .u-col--blue {
  font-weight: 800;
}

.p-abortion__feature {
  margin-top: 4.75rem;
  padding-block: 3.75rem;
  background-color: #EFF8FD;
}
@media screen and (max-width: 767px) {
  .p-abortion__feature {
    margin-top: 2.5rem;
    padding-block: 2.1875rem;
  }
}
.p-abortion__feature .l-page__media-content {
  gap: 2.125rem;
  align-self: flex-start;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-abortion__feature .l-page__media-content {
    margin-top: 0;
    align-self: center;
    gap: 0.9375rem;
  }
}

.p-abortion__method {
  padding-block: 4.375rem 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-abortion__method {
    padding-block: 2.5rem;
  }
}
.p-abortion__method .l-page__media-content {
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-abortion__method .l-page__media-content {
    gap: 0.9375rem;
  }
}

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

.p-abortion__flow-item {
  border-top: 0.125rem solid #3C9ED1;
  padding-block: 1.875rem;
  display: flex;
  justify-content: center;
  gap: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-abortion__flow-item {
    gap: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .p-abortion__flow-item {
    padding-block: 1.25rem;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
  }
}
.p-abortion__flow-item:last-child {
  border-bottom: 0.125rem solid #3C9ED1;
}

.p-abortion__flow-item-img {
  flex: 0 0 6.375rem;
  width: 6.375rem;
  height: 6.375rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 0.125rem solid #3C9ED1;
  display: grid;
  place-items: center;
  background-color: #fff;
}
.p-abortion__flow-item-img img {
  display: block;
  width: 55%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-abortion__flow-item-img {
    flex: 0 0 3.75rem;
    height: 3.75rem;
    width: 3.75rem;
  }
}
@media screen and (max-width: 480px) {
  .p-abortion__flow-item-img {
    flex: 1 1 auto;
    max-width: 3.75rem;
  }
}

.p-abortion__flow-item-body {
  flex: 0 0 59%;
}
@media screen and (max-width: 767px) {
  .p-abortion__flow-item-body {
    flex: 0 0 70%;
  }
}
@media screen and (max-width: 480px) {
  .p-abortion__flow-item-body {
    flex: 1 1 auto;
    width: 80%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 385px) {
  .p-abortion__flow-item-body {
    width: 100%;
  }
}

.p-abortion__flow-item-text {
  margin-top: 1.125rem;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.06em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-abortion__flow-item-text {
    margin-top: 0.625rem;
    font-size: 0.8125rem;
  }
}

.p-abortion__cost {
  margin-top: 4.75rem;
  padding-block: 2.875rem 3.125rem;
  background-color: #EFF8FD;
}
@media screen and (max-width: 767px) {
  .p-abortion__cost {
    margin-top: 2.5rem;
    padding-block: 2.1875rem;
  }
}

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

.p-abortion__cost-text {
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-abortion__cost-text {
    margin-top: 0.9375rem;
  }
}

.p-abortion__cost-level {
  margin-top: 0.8125rem;
  width: 63%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-abortion__cost-level {
    width: 90%;
  }
}
@media screen and (max-width: 480px) {
  .p-abortion__cost-level {
    width: 100%;
  }
}

.p-abortion__cost-level-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-abortion__cost-level-title {
  flex: 0 0 34%;
  background-color: #3C9ED1;
  color: #fff;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.06em;
  font-weight: 500;
  padding: 0.9375rem 1.875rem;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-abortion__cost-level-title {
    flex: 0 0 50%;
    font-size: 0.8125rem;
    padding: 0.9375rem 0.625rem;
  }
}

.p-abortion__cost-level-text {
  flex: 0 0 66%;
  font-size: 1rem;
  padding: 0.9375rem 1.25rem;
  letter-spacing: 0.06em;
  line-height: 2;
  font-weight: 500;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-abortion__cost-level-text {
    flex: 0 0 50%;
    font-size: 0.8125rem;
    padding: 0.9375rem 0.625rem;
  }
}
.p-abortion__cost-level-text .text-small {
  font-size: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .p-abortion__cost-level-text .text-small {
    font-size: 0.625rem;
  }
}

.p-abortion__faq {
  padding-block: 5rem 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-abortion__faq {
    padding-block: 2.5rem;
  }
}

.p-abortion__price-text {
  margin-top: 1.625rem;
}
@media screen and (max-width: 767px) {
  .p-abortion__price-text {
    margin-top: 1.25rem;
  }
}

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

.p-company__about {
  scroll-margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-company__about {
    scroll-margin-top: 3.75rem;
  }
}

/***************************************
* 特徴
****************************************/
.p-company__Feature {
  padding-block: 4.1875rem 5.875rem;
  position: relative;
}
.p-company__Feature::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../../assets/images/bg/company-bg01.webp) no-repeat 100% 100%/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-company__Feature {
    padding-block: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-feature__content.--company .p-feature__item:nth-child(2) {
    flex-direction: column-reverse;
  }
}
.p-feature__content.--company .p-feature__item-number {
  text-align: left;
}
.p-feature__content.--company .p-feature__item-title {
  margin-left: 2.5rem;
  margin-top: 1.875rem;
}
@media only screen and (max-width: 1150px) {
  .p-feature__content.--company .p-feature__item-title {
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-feature__content.--company .p-feature__item-title {
    margin-top: 1.25rem;
  }
}
.p-feature__content.--company .p-feature__item-text {
  margin-left: 2.5rem;
  margin-top: 1.5625rem;
  max-width: 100%;
  width: 88%;
}
@media only screen and (max-width: 1150px) {
  .p-feature__content.--company .p-feature__item-text {
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-feature__content.--company .p-feature__item-text {
    margin-top: 0.9375rem;
    width: 100%;
  }
}

/***************************************
* ドクターご紹介
****************************************/
.p-company__doctor {
  padding-block: 5rem 8.125rem;
}
@media screen and (max-width: 767px) {
  .p-company__doctor {
    padding-block: 2.5rem;
  }
}

.p-company__doctor-content {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-company__doctor-content {
    margin-top: 3.75rem;
  }
}
.p-company__doctor-content:first-of-type {
  margin-top: 1.5625rem;
}

.p-company__doctor-content-heading {
  display: flex;
  align-items: flex-end;
  gap: 1.25rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid #3C9ED1;
}
@media screen and (max-width: 767px) {
  .p-company__doctor-content-heading {
    gap: 0.625rem;
    flex-direction: column;
    align-items: flex-start;
  }
}

.p-company__doctor-content-sub-title {
  font-size: 0.875rem;
  line-height: 1.3;
  letter-spacing: 0.24em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-company__doctor-content-sub-title {
    font-size: 0.75rem;
    line-height: 1.3;
    letter-spacing: 0.2em;
  }
}

.p-company__doctor-content-item {
  width: 75%;
  margin-inline: auto;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-company__doctor-content-item {
    width: 100%;
    margin-top: 1.5625rem;
  }
}

.p-company__doctor-content-item + .p-company__doctor-content-item {
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-company__doctor-content-item + .p-company__doctor-content-item {
    margin-top: 2.1875rem;
  }
}

.doctor-name {
  font-size: 2.1875rem;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .doctor-name {
    font-size: 1.125rem;
  }
}

.doctor-career-wrap {
  margin-top: 0.9375rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .doctor-career-wrap {
    margin-top: 0.625rem;
    grid-template-columns: repeat(1, 1fr);
  }
}

.doctor-career-item .text {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.06em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .doctor-career-item .text {
    font-size: 0.8125rem;
    line-height: 2.3;
  }
}

.doctor-message-title {
  margin-top: 0.625rem;
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .doctor-message-title {
    font-size: 1.125rem;
  }
}

.doctor-message {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.06em;
  font-weight: 500;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .doctor-message {
    font-size: 0.8125rem;
    line-height: 2.3;
  }
}

/***************************************
* 医院紹介
****************************************/
.p-company__introduction {
  padding-block: 4.5rem 6.25rem;
  background: #EFF8FD;
}
@media screen and (max-width: 767px) {
  .p-company__introduction {
    padding-block: 2.5rem 3.75rem;
  }
}

.p-company__introduction-content {
  margin-top: 4.75rem;
}
@media screen and (max-width: 767px) {
  .p-company__introduction-content {
    margin-top: 2.5rem;
  }
}
.p-company__introduction-content:first-of-type {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-company__introduction-content:first-of-type {
    margin-top: 1.5625rem;
  }
}

.p-company__introduction-content-heading {
  display: flex;
  align-items: flex-end;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-company__introduction-content-heading {
    gap: 0.3125rem;
    flex-direction: column;
    align-items: flex-start;
  }
}

.p-company__introduction-content-item {
  margin-top: 1.5625rem;
  padding-inline: 4.0625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-company__introduction-content-item {
    padding-inline: 1.875rem;
  }
}
.p-company__introduction-content-item .swiper-slide {
  position: relative;
}
.p-company__introduction-content-item .swiper-slide p {
  display: block;
  width: 100%;
  height: 3.5rem;
  display: grid;
  place-items: center;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.06em;
  font-weight: 500;
  background-color: rgba(68, 68, 68, .38);
  color: #ffffff;
  border-radius: 0 0 0.75rem 0.75rem;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 100;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-company__introduction-content-item .swiper-slide p {
    width: 100%;
    height: 1.875rem;
    font-size: 0.8125rem;
    line-height: 2.3;
  }
}
@media screen and (max-width: 480px) {
  .p-company__introduction-content-item .swiper-slide p {
    font-size: 0.625rem;
  }
}
@media screen and (max-width: 385px) {
  .p-company__introduction-content-item .swiper-slide p {
    font-size: 0.5rem;
  }
}

/***************************************
* 施設紹介
****************************************/
.p-company__facility {
  padding-block: 4.25rem 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-company__facility {
    padding-block: 2.5rem;
  }
}

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

.p-company__facility-content-item {
  margin-top: 1.875rem;
  display: flex;
  align-items: stretch;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-company__facility-content-item {
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
    justify-content: center;
  }
}
.p-company__facility-content-item:first-of-type {
  margin-top: 0;
}

.p-company__facility-content-img {
  flex: 0 0 22.375rem;
  width: 22.375rem;
}
@media screen and (max-width: 767px) {
  .p-company__facility-content-img {
    flex: 1 1 auto;
  }
}
@media screen and (max-width: 480px) {
  .p-company__facility-content-img {
    width: 100%;
  }
}
.p-company__facility-content-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}

.p-company__facility-content-body {
  flex: 1;
  border-bottom: 1px solid #3C9ED1;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-company__facility-content-body {
    flex: 1 1 auto;
    width: 80%;
    margin-inline: auto;
    margin-bottom: 0;
    padding-bottom: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .p-company__facility-content-body {
    width: 100%;
  }
}

.p-company__facility-content-title {
  font-size: 1.875rem;
  line-height: 1.4;
  font-weight: 500;
  position: relative;
  padding-left: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-company__facility-content-title {
    font-size: 1.125rem;
    line-height: 1.4;
    padding-left: 0.875rem;
  }
}
.p-company__facility-content-title::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 70%;
  background-color: #444444;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-company__facility-content-title::before {
    width: 0.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-company__facility-content-title {
    font-size: 1.125rem;
    line-height: 1.4;
  }
}

.p-company__facility-content-text {
  margin-top: 1.5625rem;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-company__facility-content-text {
    margin-top: 0.9375rem;
    font-size: 0.8125rem;
    line-height: 2.3;
  }
}

/* -----------------------------------------------------------------
  ドロワーメニュー
----------------------------------------------------------------- */
.p-drawer {
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  visibility: hidden;
  opacity: 0;
  background-color: #ffffff;
  transition: all 0.3s;
}
.p-drawer.open {
  visibility: visible;
  opacity: 1;
}

.p-drawer__wrap {
  height: 100vh;
  overflow-y: scroll;
  padding-block: 3.1875rem 3.75rem;
}

.p-drawer__logo {
  width: 11.4375rem;
  margin-inline: auto;
}
.p-drawer__logo img {
  display: block;
  width: 100%;
  aspect-ratio: 183/227;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-drawer__nav {
  margin-top: 1.9375rem;
  width: min(95vw, 17.8125rem);
  margin-inline: auto;
}

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

.p-drawer__nav-item {
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.p-drawer__nav-item a {
  display: block;
  color: #444444;
  width: 100%;
  padding-block: 0.625rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (any-hover: hover) {
  .p-drawer__nav-item a:hover {
    color: #3C9ED1;
  }
}

.p-drawer__btn-wrap {
  margin-top: 2.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.p-drawer__btn {
  width: 100%;
  max-width: 18.25rem;
  margin-inline: auto;
  height: 3.3125rem;
}
.p-drawer__btn .text {
  font-size: 1.125rem;
}

.p-footer {
  width: 100%;
  height: 100%;
  min-height: 14.375rem;
  padding-block: 4.0625rem 1rem;
}
@media screen and (max-width: 767px) {
  .p-footer {
    min-height: auto;
    padding-block: 2.5rem 0.875rem;
  }
}

.p-footer__inner {
  width: 100%;
  max-width: 51.875rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8%;
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    flex-direction: column;
    gap: 1.875rem;
  }
}

.p-footer__nav {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav {
    gap: 0 2.5rem;
  }
}

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

.p-footer__nav-link {
  display: block;
  width: 100%;
  padding-block: 0.625rem;
}
@media (any-hover: hover) {
  .p-footer__nav-link:hover .text::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}
.p-footer__nav-link .text {
  display: inline-block;
  width: -webkit-fit-content;
  width: fit-content;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.6923076923;
  white-space: nowrap;
  position: relative;
}
.p-footer__nav-link .text::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.0625rem;
  background-color: #444444;
  position: absolute;
  bottom: -0.3125rem;
  left: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  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;
  -webkit-transform-origin: right;
          transform-origin: right;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-link .text {
    font-size: 0.875rem;
    line-height: 1.5714285714;
  }
}

.p-footer__banner {
  display: grid;
  place-items: center;
}

.p-footer__banner-item {
  display: block;
  width: 100%;
  max-width: 12.4375rem;
}
.p-footer__banner-item img {
  display: block;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s;
}
@media (any-hover: hover) {
  .p-footer__banner-item:hover img, .p-footer__banner-item:focus img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.p-footer__copyright {
  width: -webkit-fit-content;
  width: fit-content;
  margin-top: 1.875rem;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  padding-right: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    margin-top: 1.75rem;
    padding-right: 0.6875rem;
  }
}
.p-footer__copyright .text {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 2.25;
}

.p-mv {
  width: 100%;
  padding-top: 5.5rem;
}
@media screen and (max-width: 767px) {
  .p-mv {
    padding-top: 3.125rem;
  }
}

.p-mv__inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.p-mv__img {
  width: 100%;
}
.p-mv__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-mv__content {
  position: absolute;
  top: 5.125rem;
  left: 3%;
}
@media screen and (max-width: 767px) {
  .p-mv__content {
    top: 2.9375rem;
    left: 1.5rem;
    width: 87.6923076923%;
    max-width: 21.375rem;
  }
}

.p-mv__title {
  width: 33.125rem;
  aspect-ratio: 530/38;
}
@media screen and (max-width: 767px) {
  .p-mv__title {
    width: min(100%, 21.375rem);
    aspect-ratio: 342/24;
  }
}
.p-mv__title img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-mv__text {
  font-family: "Shippori Mincho B1", serif;
  margin-top: 1.25rem;
  color: #fff;
  font-weight: 700;
  text-shadow: 0px 1px 15px rgba(2, 34, 80, .82);
}
@media screen and (max-width: 767px) {
  .p-mv__text {
    margin-top: 0.75rem;
  }
}
.p-mv__text .text {
  font-size: clamp(1.563rem, 1.1rem + 1.972vw, 2.875rem);
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .p-mv__text .text {
    line-height: 1.46;
  }
}
.p-mv__text.--sub {
  margin-top: 1.5rem;
}
.p-mv__text.--sub .text {
  font-size: clamp(1rem, 0.692rem + 1.315vw, 1.875rem);
}

/***************************************
* アクセス
****************************************/
.p-access {
  width: 100%;
  margin-top: 5.0625rem;
  padding-bottom: 4.1875rem;
  position: relative;
  scroll-margin-top: -6.25rem;
}
@media screen and (max-width: 767px) {
  .p-access {
    scroll-margin-top: -3.75rem;
    margin-top: 3.3125rem;
    padding-bottom: 4rem;
  }
}
.p-access::before {
  content: "";
  width: 100%;
  height: 100%;
  margin-top: 5.0625rem;
  background: url(../../assets/images/bg/front-bg01.webp) no-repeat top center/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-access::before {
    margin-top: 6.25rem;
    background: url(../../assets/images/bg/front-bg-sp01.webp) no-repeat top center/cover;
  }
}

.p-access__inner {
  display: flex;
  flex-direction: column;
  gap: 4.125rem;
}
@media screen and (max-width: 767px) {
  .p-access__inner {
    gap: 2.6875rem;
  }
}

.p-access__map-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-access__map-wrap {
    flex-direction: column;
    gap: 1.21875rem;
  }
}

.p-access__info {
  flex: 1 1 auto;
}

.p-access__logo {
  width: 23.3125rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-access__logo {
    width: 60%;
  }
}
@media screen and (max-width: 480px) {
  .p-access__logo {
    width: 85%;
  }
}
.p-access__logo img {
  width: 100%;
  aspect-ratio: 373/72;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-access__info-body {
  margin-top: 3.5625rem;
}
@media screen and (max-width: 480px) {
  .p-access__info-body {
    margin-top: 0.84375rem;
  }
}

.p-access__info-text {
  font-size: 1.125rem;
  line-height: 1.25;
  letter-spacing: 0.06em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-access__info-text {
    font-size: 0.8125rem;
    margin-top: 0.25rem;
  }
}

.p-access__info-title {
  margin-top: 1.625rem;
}

.p-access__info-detail {
  margin-top: 0.3125rem;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: 0.06em;
  font-weight: 500;
  padding-left: 0.875rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-access__info-detail {
    font-size: 0.8125rem;
    margin-top: 0.25rem;
    padding-left: 0.625rem;
  }
}

.p-access__map {
  flex: 1 1 45%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-access__map {
    width: -webkit-fit-content;
    width: fit-content;
  }
}
.p-access__map iframe {
  width: min(100%, 32.8125rem);
  height: 20.875rem;
  aspect-ratio: 525/334;
  -o-object-fit: contain;
     object-fit: contain;
  box-sizing: border-box;
  border-radius: 0.625rem;
  box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, .16);
}
@media screen and (max-width: 767px) {
  .p-access__map iframe {
    width: min(100%, 21.3125rem);
    aspect-ratio: 341/217;
    height: 13.5625rem;
  }
}

.p-access__department {
  width: 100%;
  border-radius: 0.625rem;
  background-color: #fff;
  padding: 2.6875rem 2.875rem 3.0625rem 2.875rem;
  box-shadow: 0 0.1875rem 1.625rem rgb(199, 212, 217);
}
@media screen and (max-width: 767px) {
  .p-access__department {
    padding: 1.25rem 1.25rem;
  }
}

.p-access__department-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.625rem;
  position: relative;
}
.p-access__department-list::before {
  content: "";
  width: 0.0625rem;
  height: 100%;
  background-color: #85c2e2;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-access__department-list::before {
    width: 100%;
    height: 0.0625rem;
    top: calc(50% + 0.5rem);
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  .p-access__department-list {
    grid-template-columns: 1fr;
    gap: 2.8125rem;
  }
}

.p-access__department-item {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.p-access__department-heading {
  display: flex;
  justify-content: space-between;
  gap: 0.625rem;
}

.p-access__department-table-title.c-title__line {
  margin-top: 0.5rem;
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-access__department-table-title.c-title__line {
    font-size: 0.8125rem;
    line-height: 1.4;
  }
}
.p-access__department-table-title.c-title__line::before {
  background-color: #444444;
}

.p-access__department-sub-title {
  font-size: 0.875rem;
  line-height: 1.3;
  letter-spacing: 0.24em;
  font-weight: 500;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-access__department-sub-title {
    font-size: 0.625rem;
    line-height: 1.5;
  }
}

.p-access__department-text {
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-access__department-text {
    margin-top: 0.3125rem;
  }
}
.p-access__department-text .text {
  font-size: 0.875rem;
  line-height: 1.3;
  letter-spacing: 0.03em;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .p-access__department-text .text {
    font-size: 0.8125rem;
  }
}
.p-access__department-text + .p-access__department-text {
  margin-top: 0.125rem;
}

.p-access__btn {
  margin-top: 2rem;
  width: 100%;
  max-width: 27.5rem;
  aspect-ratio: 440/65;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-access__btn {
    max-width: 18.25rem;
    aspect-ratio: 292/45;
  }
}

/***************************************
メディカルインフォメーション
****************************************/
.p-medical {
  width: 100%;
  padding-block: 3.5625rem 5rem;
  background: linear-gradient(to bottom, #D9EEF7, #BEE5F7);
  scroll-margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-medical {
    padding-block: 2.5rem 3.5rem;
    scroll-margin-top: 3.75rem;
  }
}

.p-medical__content {
  margin-top: 2.0625rem;
}
@media screen and (max-width: 767px) {
  .p-medical__content {
    margin-top: 1.125rem;
  }
}

.p-medical__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-medical__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5625rem 0.75rem;
  }
}

.p-medical__item {
  width: 100%;
  gap: 0.9375rem;
}

.p-medical__item-link {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 1.25rem;
  background-color: #fff;
  border-radius: 0.625rem;
  padding: 2.125rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-medical__item-link {
    padding: 1.25rem 0.9375rem;
    gap: 0.625rem;
  }
}
@media (any-hover: hover) {
  .p-medical__item-link:hover, .p-medical__item-link:focus {
    background-color: #EFF8FD;
  }
  .p-medical__item-link:hover .p-medical__icon img, .p-medical__item-link:focus .p-medical__icon img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.p-medical__icon {
  width: 100%;
  max-width: 7.625rem;
}
@media screen and (max-width: 767px) {
  .p-medical__icon {
    max-width: 4.6875rem;
  }
}
@media only screen and (max-width: 380px) {
  .p-medical__icon {
    max-width: 3.4375rem;
  }
}
.p-medical__icon img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.p-medical__item-content {
  width: 100%;
  display: flex;
  align-items: center;
}

.p-medical__item-title {
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 500;
  width: -webkit-fit-content;
  width: fit-content;
  padding-left: 1.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-medical__item-title {
    font-size: 0.8125rem;
  }
}

.p-medical__arrow {
  justify-self: flex-end;
  width: 1.5rem;
  height: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-medical__arrow {
    width: 1rem;
    height: 1rem;
  }
}
.p-medical__arrow svg {
  display: block;
  width: -webkit-fit-content;
  width: fit-content;
}

/***************************************
お知らせ
****************************************/
.p-news {
  width: 100%;
  padding-block: 5.4375rem 5.9375rem;
  position: relative;
}
.p-news::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../../assets/images/bg/front-bg03.webp) repeat center/contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-news::before {
    background: url(../../assets/images/bg/front-bg-sp03.webp) no-repeat 100% 100%/cover;
  }
}
@media screen and (max-width: 767px) {
  .p-news {
    padding-block: 3rem;
  }
}

.p-news__heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-news__heading {
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-news__heading .c-title__left-box {
  font-size: 2.8125rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  padding-left: 2.6875rem;
}
@media screen and (max-width: 767px) {
  .p-news__heading .c-title__left-box {
    font-size: 2.1875rem;
    padding-left: 1.5625rem;
  }
}

.p-news__btn {
  width: -webkit-fit-content;
  width: fit-content;
  min-width: 14.8125rem;
  height: 3.3125rem;
  aspect-ratio: 237/53;
}

@media screen and (max-width: 767px) {
  .p-news__btn-pc {
    display: none;
  }
}

.p-news__btn-mobile {
  margin-top: 1.875rem;
  margin-inline: auto;
}
@media only screen and (min-width: 768px) {
  .p-news__btn-mobile {
    display: none;
  }
}

.p-news__content {
  width: 100%;
  padding: 3rem 2rem;
  margin-top: 3rem;
  background-color: #ffffff;
  border-radius: 0.625rem;
  box-shadow: 0 0.1875rem 1.8125rem rgb(199, 212, 217);
}
@media screen and (max-width: 767px) {
  .p-news__content {
    padding: 2rem 1.5rem;
    margin-top: 2rem;
  }
}

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

.p-news__item-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1rem;
  border-bottom: 1px solid rgba(68, 68, 68, .3);
}
@media screen and (max-width: 767px) {
  .p-news__item-link {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding: 0.75rem 0.375rem;
  }
}
@media (any-hover: hover) {
  .p-news__item-link:hover, .p-news__item-link:focus {
    color: #3C9ED1;
  }
}

.p-news__item-img {
  width: 100%;
}
.p-news__item-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}
.p-news__item-img img.no-image {
  border-radius: 0;
}

.p-news__item-date {
  font-size: 0.875rem;
  line-height: 1.4;
  letter-spacing: 0.06em;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .p-news__item-date {
    font-size: 0.8125rem;
  }
}

.p-news__item-title {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.06em;
}

/***************************************
  featured
  ****************************************/
.p-feature {
  width: 100%;
  padding-block: 4.375rem 6.25rem;
  position: relative;
}
.p-feature::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../../assets/images/bg/front-bg02.webp) no-repeat 100% 100%/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}

.p-feature__title .main-title {
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-feature__title .main-title {
    font-size: 1.875rem;
    letter-spacing: normal;
  }
}
@media only screen and (max-width: 380px) {
  .p-feature__title .main-title {
    font-size: 1.5625rem;
  }
}

.p-feature__content {
  margin-top: 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-feature__content {
    gap: 1.875rem;
  }
}

.p-feature__item {
  width: 100%;
  background-color: #ffffff;
  border-radius: 0.625rem;
  box-shadow: 0 0.1875rem 1.8125rem rgb(199, 212, 217);
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-feature__item {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 767px) {
  .p-feature__item--02 {
    flex-direction: column;
  }
}
.p-feature__item--02 .p-feature__item-content {
  padding: 1rem 1.1875rem 1rem 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-feature__item--02 .p-feature__item-content {
    padding: 1.0625rem 1.0625rem 1.9375rem;
  }
}
.p-feature__item--02 .p-feature__item-number {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-feature__item--02 .p-feature__item-number {
    text-align: left;
  }
}

.p-feature__item-content {
  flex: 1 1 auto;
  padding: 1rem 1.75rem 1rem 1.1875rem;
}
@media screen and (max-width: 767px) {
  .p-feature__item-content {
    width: 100%;
    padding: 1.0625rem 1.0625rem 1.9375rem;
  }
}

.p-feature__item-number {
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.24em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-feature__item-number {
    font-size: 0.8125rem;
  }
}

.p-feature__item-title.c-title__side-line {
  margin-top: 1.5rem;
  margin-left: auto;
  font-size: 1.875rem;
  line-height: 1.4;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-feature__item-title.c-title__side-line {
    font-size: 1.125rem;
    margin-top: 0.8125rem;
    margin-inline: auto;
    text-align: center;
  }
}
@media only screen and (max-width: 380px) {
  .p-feature__item-title.c-title__side-line {
    font-size: 1rem;
  }
}

.p-feature__item-text {
  margin-top: 2.75rem;
  width: 100%;
  max-width: 28.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-feature__item-text {
    margin-top: 1.25rem;
  }
}
.p-feature__item-text .text {
  display: block;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.06em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-feature__item-text .text {
    font-size: 0.8125rem;
    line-height: 2.5;
  }
}

.p-feature__item-img {
  flex: 0 0 44%;
}
@media screen and (max-width: 767px) {
  .p-feature__item-img {
    flex: 1 1 auto;
  }
}
.p-feature__item-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem 0.625rem 0 0;
}
@media screen and (max-width: 480px) {
  .p-feature__item-img img {
    aspect-ratio: 342/202;
  }
}

/* -----------------------------------------------------------------
  頭痛外来
----------------------------------------------------------------- */
.p-headacheclinic .u-col--blue {
  font-weight: 700;
}

.p-headacheclinic__feature {
  padding-block: 3.5rem 3.875rem;
  background-color: #EFF8FD;
}
@media screen and (max-width: 767px) {
  .p-headacheclinic__feature {
    padding-block: 2.1875rem;
  }
}
.p-headacheclinic__feature .l-page__media-content {
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-headacheclinic__feature .l-page__media-content {
    gap: 0.9375rem;
  }
}
.p-headacheclinic__feature .l-page__media-title {
  font-size: 2.5rem;
  line-height: 1.4;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-headacheclinic__feature .l-page__media-title {
    margin-top: 0.625rem;
    font-size: 1.125rem;
  }
}
.p-headacheclinic__feature .l-page__media-text {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-headacheclinic__feature .l-page__media-text {
    margin-top: 0.3125rem;
  }
}
.p-headacheclinic__feature .c-title__line::before {
  background-color: #444444;
}

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

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

.p-headacheclinic__medical-title {
  font-size: clamp(1.563rem, 1.089rem + 2.02vw, 2.813rem);
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-headacheclinic__medical-title {
    font-size: 1.5625rem;
  }
}
@media screen and (max-width: 480px) {
  .p-headacheclinic__medical-title {
    font-size: 1.5rem;
    letter-spacing: 0.02em;
  }
}
@media screen and (max-width: 385px) {
  .p-headacheclinic__medical-title {
    font-size: 1.1875rem;
    letter-spacing: 0.06em;
  }
}

.p-headacheclinic__symptom-list {
  background-color: #EFF8FD;
  padding: 2.5rem 8.125rem;
  border-radius: 0.625rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-headacheclinic__symptom-list {
    padding: 1.25rem 0.9375rem;
  }
}

.p-headacheclinic__symptom-list-inner {
  display: flex;
  justify-content: center;
  gap: 7.1875rem;
}
@media screen and (max-width: 767px) {
  .p-headacheclinic__symptom-list-inner {
    flex-direction: column;
    gap: 0;
  }
}

.p-headacheclinic__flow {
  padding-block: 3.75rem;
  background-color: #EFF8FD;
}
@media screen and (max-width: 767px) {
  .p-headacheclinic__flow {
    padding-block: 2.1875rem;
  }
}

.p-headacheclinic__flow-content {
  margin-top: 3.125rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: subgrid;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-headacheclinic__flow-content {
    margin-top: 1.5625rem;
    grid-template-columns: 1fr;
    gap: 3.125rem;
  }
}
@media only screen and (max-width: 1200px) {
  .p-headacheclinic__flow-content .l-page__flow-text {
    white-space: normal;
  }
}

.p-headacheclinic__faq {
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-headacheclinic__faq {
    padding-top: 2.5rem;
  }
}
.p-headacheclinic__faq .l-page__faq-item-inner {
  width: min(100%, 51.875rem);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-headacheclinic__faq .l-page__faq-item-inner {
    width: 100%;
  }
}

.p-header {
  width: 100%;
  height: 5.5rem;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
}
@media screen and (max-width: 767px) {
  .p-header {
    height: 3.125rem;
  }
}

.p-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
  padding-inline: 2rem 3.1875rem;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    align-items: center;
    padding-inline: 0.9375rem 1.4375rem;
  }
}

.p-header__logo {
  width: 12.8125rem;
  aspect-ratio: 205/54;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: 6.375rem;
    aspect-ratio: 102/27;
  }
}

.p-header__logo a {
  display: block;
  width: 100%;
  height: 100%;
}
@media (any-hover: hover) {
  .p-header__logo a:hover {
    opacity: 0.7;
  }
}

.p-header__logo a img {
  width: 100%;
  height: auto;
}

.p-header__nav {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__list {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  height: 100%;
}

.p-header__item {
  font-size: 0.9375rem;
  line-height: 1;
  white-space: nowrap;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  display: flex;
  align-items: center;
}

.p-header__link {
  display: block;
  color: inherit;
  padding-block: 2.25rem;
  position: relative;
}
@media (any-hover: hover) {
  .p-header__link:hover .p-header__link-text::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}

.p-header__link-text {
  display: inline-block;
  position: relative;
}
.p-header__link-text::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.0625rem;
  background-color: #444444;
  position: absolute;
  bottom: -0.625rem;
  left: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  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;
  -webkit-transform-origin: right;
          transform-origin: right;
}

.p-header__btn {
  width: 16.4375rem;
  height: 4.5rem;
}

.p-header__item.--child {
  position: relative;
  cursor: pointer;
}

.p-header__child-wrap {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  top: 5.3125rem;
  left: -1.875rem;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out, transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out, transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  z-index: 30;
}
.p-header__child-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  height: 0.9375rem;
  background: transparent;
}

.p-header__item.--child:hover .p-header__child-wrap,
.p-header__item.--child .p-header__child-wrap:hover .p-header__child-wrap {
  opacity: 1;
  visibility: visible;
}

.p-header__child-list {
  color: #444444;
  min-width: 7.5rem;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  white-space: nowrap;
}

.p-header__child-item {
  width: 7.5rem;
  height: 2.75rem;
  background-color: #fff;
  box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, .3);
  transition: all 0.3s ease;
}

.p-header__child-link {
  display: block;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  place-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s;
}
@media (any-hover: hover) {
  .p-header__child-link:hover {
    background-color: #EFF8FD;
    color: #444444;
  }
}

/***************************************
* 内科
****************************************/
.p-internalmedicine__symptom {
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-internalmedicine__symptom {
    padding-top: 2.5rem;
  }
}

.p-internalmedicine__symptom-item {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-internalmedicine__symptom-item {
    margin-top: 1.875rem;
  }
}
.p-internalmedicine__symptom-item:first-of-type {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-internalmedicine__symptom-item:first-of-type {
    margin-top: 1.875rem;
  }
}

.p-internalmedicine__symptom-content {
  width: 100%;
  background-color: #EFF8FD;
  padding: 2.5rem 5.625rem;
  border-radius: 0.625rem;
  margin-top: 0.5rem;
}
@media only screen and (max-width: 1023px) {
  .p-internalmedicine__symptom-content {
    padding: 2.5rem 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-internalmedicine__symptom-content {
    padding: 1.25rem 0.9375rem;
  }
}

.p-internalmedicine__symptom-content-inner {
  display: flex;
  justify-content: center;
  gap: 7.1875rem;
}
@media screen and (max-width: 767px) {
  .p-internalmedicine__symptom-content-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.p-internalmedicine__symptom-content-inner .l-page__list-text {
  white-space: nowrap;
}
@media screen and (max-width: 480px) {
  .p-internalmedicine__symptom-content-inner .l-page__list-text {
    white-space: normal;
  }
}

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

.p-internalmedicine__medical-content {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-internalmedicine__medical-content {
    margin-top: 3.125rem;
  }
}
.p-internalmedicine__medical-content:first-of-type {
  margin-top: 0;
}

.p-internalmedicine__medical-list {
  margin-top: 1.5625rem;
  background-color: #EFF8FD;
  padding: 2.5rem 8.125rem;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-internalmedicine__medical-list {
    padding: 1.25rem 0.9375rem;
  }
}

.p-internalmedicine__medical-list-inner {
  display: flex;
  gap: 7.1875rem;
}
@media screen and (max-width: 767px) {
  .p-internalmedicine__medical-list-inner {
    flex-direction: column;
    gap: 0;
  }
}

/***************************************
* 健康診断
****************************************/
.p-medicalcheckup__feature {
  padding-block: 3.5rem 5.625rem;
  background-color: #EFF8FD;
}
@media screen and (max-width: 767px) {
  .p-medicalcheckup__feature {
    padding-block: 2.1875rem;
  }
}
.p-medicalcheckup__feature .l-page__media-content {
  align-self: flex-start;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-medicalcheckup__feature .l-page__media-content {
    margin-top: 0;
    align-self: center;
  }
}

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

.p-medicalcheckup__menu-content {
  margin-top: 1.875rem;
  display: flex;
  gap: 5%;
}
@media screen and (max-width: 767px) {
  .p-medicalcheckup__menu-content {
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.25rem;
  }
}

.p-medicalcheckup__menu-text-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-medicalcheckup__menu-text-body {
    width: 100%;
    gap: 1.25rem;
  }
}

.p-medicalcheckup__menu-text-item .l-page__list-wrap {
  padding: 1.5625rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-medicalcheckup__menu-text-item .l-page__list-wrap {
    padding: 1.25rem 0.625rem 1.25rem 1.125rem;
  }
}

.p-medicalcheckup__menu-text-item-list {
  margin-top: 1.375rem;
  padding-left: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-medicalcheckup__menu-text-item-list {
    margin-top: 0.9375rem;
    padding-left: 1.125rem;
  }
}
@media screen and (max-width: 480px) {
  .p-medicalcheckup__menu-text-item-list {
    padding-left: 0;
  }
}

.p-medicalcheckup__menu-images {
  flex: 0 0 29.1875rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-medicalcheckup__menu-images {
    flex: 1 1 auto;
  }
}

.p-medicalcheckup__menu-images-item img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-medicalcheckup__medical-list {
  margin-top: 1.625rem;
  background-color: #EFF8FD;
  padding: 2.5rem 8.125rem;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-medicalcheckup__medical-list {
    padding: 1.25rem 0.9375rem;
  }
}

.p-medicalcheckup__medical-list-inner {
  display: flex;
  gap: 7.1875rem;
}
@media screen and (max-width: 767px) {
  .p-medicalcheckup__medical-list-inner {
    flex-direction: column;
    gap: 0;
  }
}

.p-medicalcheckup__medical-text {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-medicalcheckup__medical-text {
    text-align: left;
  }
}

.p-medicalcheckup__flow {
  margin-top: 5rem;
  padding-block: 3.75rem 4.375rem;
  background-color: #EFF8FD;
}
@media screen and (max-width: 767px) {
  .p-medicalcheckup__flow {
    margin-top: 2.5rem;
    padding-block: 2.1875rem;
  }
}

.p-medicalcheckup__flow-content {
  width: min(100%, 67.9375rem);
  margin-inline: auto;
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: subgrid;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-medicalcheckup__flow-content {
    margin-top: 1.5625rem;
    grid-template-columns: 1fr;
    gap: 3.125rem;
  }
}

.p-medicalcheckup__medical {
  padding-block: 4.375rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-medicalcheckup__medical {
    padding-block: 2.5rem;
  }
}

/***************************************
* 神経内科
****************************************/
.p-medicine {
  width: 100%;
}

.p-medicine__symptom .c-title__left-box--large {
  margin-top: 1.5625rem;
}
.p-medicine__symptom .c-title__left-box--large:first-of-type {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-medicine__symptom .c-title__left-box--large:first-of-type {
    margin-top: 1.5625rem;
  }
}

.p-medicine__symptom-content {
  width: 100%;
  margin-top: 0.5rem;
  background-color: #EFF8FD;
  padding: 2.5rem 5.625rem;
  border-radius: 0.625rem;
}
@media only screen and (max-width: 1023px) {
  .p-medicine__symptom-content {
    padding: 2.5rem 6.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-medicine__symptom-content {
    padding: 1.375rem;
  }
}

.p-medicine__symptom-content-inner {
  display: flex;
  justify-content: center;
  gap: 7.1875rem;
}
@media screen and (max-width: 767px) {
  .p-medicine__symptom-content-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.p-medicine__symptom-content-inner .l-page__list-text {
  white-space: nowrap;
}
@media screen and (max-width: 480px) {
  .p-medicine__symptom-content-inner .l-page__list-text {
    white-space: normal;
  }
}

.p-medicine__consultation {
  margin-top: 4.375rem;
  width: 100%;
  background-color: #EFF8FD;
  padding-block: 2.25rem 3rem;
}
@media screen and (max-width: 767px) {
  .p-medicine__consultation {
    padding: 1.25rem 0;
  }
}
.p-medicine__consultation .l-page__text {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-medicine__consultation .l-page__text {
    text-align: left;
  }
}

.p-medicine__consultation-img {
  width: 100%;
  margin-top: 1.5rem;
}
.p-medicine__consultation-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-medicine__medical {
  padding-block: 4.375rem 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-medicine__medical {
    padding-block: 2.5rem;
  }
}

.p-medicine__medical-content {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-medicine__medical-content {
    margin-top: 2.5rem;
  }
}
.p-medicine__medical-content:first-of-type {
  margin-top: 0;
}

.p-news-list {
  width: 100%;
  padding-block: 5.375rem 4.4375rem;
  position: relative;
}
.p-news-list::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../../assets/images/bg/page-bg02.webp) no-repeat top left/contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-news-list {
    padding-block: 3.25rem 5.25rem;
  }
  .p-news-list::before {
    background: none;
  }
}

.p-news-list__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1rem;
  border-bottom: 1px solid rgba(68, 68, 68, .3);
}
@media screen and (max-width: 767px) {
  .p-news-list__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding: 0.75rem 0.375rem;
  }
}
@media (any-hover: hover) {
  .p-news-list__item:hover {
    color: #3C9ED1;
  }
  .p-news-list__item:hover .p-news-list__img img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.p-news-list__date {
  font-size: 0.875rem;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-news-list__date {
    font-size: 0.75rem;
  }
}

.p-news-list__title {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-news-list__title {
    font-size: 0.875rem;
  }
}

.p-post__news {
  width: 100%;
  padding-block: 5rem;
  position: relative;
}
.p-post__news::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../../assets/images/bg/page-bg02.webp) no-repeat top left/contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-post__news::before {
    background: none;
  }
}
@media screen and (max-width: 767px) {
  .p-post__news {
    padding-block: 2.1875rem 3.75rem;
  }
}

.p-post__news-inner {
  display: flex;
  justify-content: space-between;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-post__news-inner {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
}

.p-post__news-content {
  flex: 1 1 auto;
}

.p-post__news-content-heading {
  display: flex;
  flex-direction: column;
}

.p-post__news-content-date {
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-post__news-content-date {
    font-size: 0.8125rem;
  }
}

.p-post__news-content-title {
  font-size: 1.875rem;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-post__news-content-title {
    font-size: 1.125rem;
  }
}

.p-post__news-content-img {
  margin-top: 1.375rem;
  width: 100%;
}
.p-post__news-content-img img {
  width: 100%;
  border-radius: 0.625rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-post__news-content-text {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-post__news-content-text {
    margin-top: 0.9375rem;
  }
}
.p-post__news-content-text h2,
.p-post__news-content-text h3 {
  font-weight: bold;
  line-height: 1.5;
  margin-block: 2rem 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #3c9ed1;
}
.p-post__news-content-text h2 {
  font-size: 1.25rem;
}
.p-post__news-content-text h3 {
  font-size: 1.125rem;
}
.p-post__news-content-text a {
  color: #3c9ed1;
  text-decoration: underline;
}
@media (any-hover: hover) {
  .p-post__news-content-text a:hover {
    text-decoration: none;
  }
}
.p-post__news-content-text ul,
.p-post__news-content-text ol {
  margin-top: 1rem;
}
.p-post__news-content-text ul {
  list-style: disc;
  padding-left: 1.25rem;
}
.p-post__news-content-text ol {
  list-style: decimal;
  padding-left: 1.25rem;
}
.p-post__news-content-text figure {
  margin-top: 1rem;
}
.p-post__news-content-text img {
  display: block;
  margin-top: 1rem;
}
.p-post__news-content-text p {
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-post__news-content-text p {
    font-size: 1rem;
  }
}

.p-post__news-btn {
  text-align: center;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-post__news-btn {
    margin-top: 4rem;
  }
}
.p-post__news-btn .c-btn {
  display: inline-flex;
  width: 12.5rem;
}

.p-post__news-aside {
  margin-top: 5.625rem;
  flex: 0 0 32%;
}
@media screen and (max-width: 767px) {
  .p-post__news-aside {
    margin-top: 0;
    flex: 1 1 auto;
    width: 100%;
  }
}

.p-post__news-aside-inner {
  position: sticky;
  top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-post__news-aside-inner {
    position: relative;
    top: 0;
  }
}

.p-post__news-aside-label {
  aspect-ratio: 356/50;
  padding-block: 0.75rem;
  padding-inline: 1.25rem;
  background-color: #3C9ED1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.3125rem;
}
.p-post__news-aside-label .text {
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: bold;
  letter-spacing: 0.02em;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-post__news-aside-label .text {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.p-post__news-aside-link {
  display: flex;
  flex-direction: column;
  padding-inline: 0.9375rem;
  padding-block: 0.5625rem;
  border-bottom: 1px solid #3C9ED1;
}
@media (any-hover: hover) {
  .p-post__news-aside-link:hover .text {
    color: #3C9ED1;
  }
}
@media screen and (max-width: 767px) {
  .p-post__news-aside-link {
    padding-block: 0.625rem;
  }
}
.p-post__news-aside-link .p-post__news-aside-date {
  font-size: 0.875rem;
  line-height: 1.7857142857;
  font-weight: 400;
  letter-spacing: 0.01em;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-post__news-aside-link .p-post__news-aside-date {
    font-size: 0.8125rem;
    line-height: 1.9230769231;
  }
}
.p-post__news-aside-link .text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .p-post__news-aside-link .text {
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}

/* -----------------------------------------------------------------
  クリニック情報
----------------------------------------------------------------- */
.p-clinic-info {
  width: 100%;
  padding-block: 5.125rem 4.125rem;
  position: relative;
}
.p-clinic-info::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../../assets/images/bg/front-bg03.webp) repeat center/contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-clinic-info::before {
    background: url(../../assets/images/bg/front-bg-sp03.webp) no-repeat 100% 100%/cover;
  }
}
@media screen and (max-width: 767px) {
  .p-clinic-info {
    padding-block: 3.125rem 3.5rem;
  }
}

.p-clinic-info__details-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10%;
}
@media only screen and (max-width: 1023px) {
  .p-clinic-info__details-wrap {
    gap: 5%;
  }
}
@media screen and (max-width: 767px) {
  .p-clinic-info__details-wrap {
    flex-direction: column;
    justify-content: center;
    gap: 1.4375rem;
  }
}

.p-clinic-info__logo {
  flex: 0 0 11.6875rem;
}
@media screen and (max-width: 767px) {
  .p-clinic-info__logo {
    flex: 1 1 auto;
    width: 40%;
  }
}
.p-clinic-info__logo img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-clinic-info__details {
  flex: 1 1 auto;
  width: 68%;
}
@media screen and (max-width: 767px) {
  .p-clinic-info__details {
    width: 100%;
  }
}

.p-clinic-info__clinic-name {
  gap: 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-clinic-info__clinic-name {
    display: none;
  }
}
.p-clinic-info__clinic-name .name-jp {
  font-size: 2.8125rem;
  line-height: 1.25;
  letter-spacing: 0.06em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-clinic-info__clinic-name .name-jp {
    font-size: 1.875rem;
    line-height: 1.5;
  }
}
.p-clinic-info__clinic-name .name-en {
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0.24em;
}
@media screen and (max-width: 767px) {
  .p-clinic-info__clinic-name .name-en {
    font-size: 1.125rem;
  }
}

.p-clinic-info__address {
  margin-top: 0.8125rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-clinic-info__address {
    margin-top: 0.5rem;
  }
}

.postal-code {
  display: flex;
  gap: 0.625rem;
  font-size: 1.125rem;
  line-height: 1.25;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .postal-code {
    font-size: 0.8125rem;
    line-height: 1.5;
  }
}

.access {
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: 0.06em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .access {
    font-size: 0.8125rem;
    line-height: 1.5;
  }
}

.access-train {
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .access-train {
    margin-top: 1.25rem;
  }
}

.p-clinic-info__btn-wrap {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-clinic-info__btn-wrap {
    margin-top: 1.5625rem;
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-clinic-info__btn {
  width: 100%;
  max-width: 25.75rem;
  margin-inline: auto;
  height: 4.0625rem;
}
@media screen and (max-width: 767px) {
  .p-clinic-info__btn {
    max-width: 18.25rem;
    height: 2.8125rem;
  }
}

.p-clinic-info__department {
  margin-top: 3.3125rem;
  width: 100%;
  background-color: #fff;
  border-radius: 0.625rem;
  padding: 2.125rem 1.5rem;
  box-shadow: 0 0.1875rem 1.625rem rgb(199, 212, 217);
  border: 0.0625rem solid #3C9ED1;
}
@media screen and (max-width: 767px) {
  .p-clinic-info__department {
    margin-top: 2.8125rem;
    padding: 1.25rem 1.25rem;
  }
}

.p-clinic-info__department-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5.625rem;
  position: relative;
}
.p-clinic-info__department-list::before {
  content: "";
  width: 0.0625rem;
  height: 100%;
  background-color: #85c2e2;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-clinic-info__department-list::before {
    width: 100%;
    height: 0.0625rem;
    top: calc(50% + 0.5rem);
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  .p-clinic-info__department-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.8125rem;
  }
}

.p-clinic-info__department-heading {
  display: flex;
  justify-content: space-between;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-clinic-info__department-heading {
    gap: 0.3125rem;
  }
}
.p-clinic-info__department-heading .c-title__left-box {
  font-size: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-clinic-info__department-heading .c-title__left-box {
    font-size: 1.125rem;
  }
}
.p-clinic-info__department-heading .p-clinic-info__department-heading-text {
  text-align: right;
}
.p-clinic-info__department-heading .p-clinic-info__department-heading-text .text {
  font-size: 0.875rem;
  line-height: 1.3;
  letter-spacing: 0.24em;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .p-clinic-info__department-heading .p-clinic-info__department-heading-text .text {
    font-size: 0.625rem;
    line-height: 1.5;
  }
}

.p-clinic-info__department-text .text {
  font-size: 0.875rem;
  line-height: 1.3;
  letter-spacing: 0.06em;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .p-clinic-info__department-text .text {
    font-size: 0.8125rem;
  }
}
.p-clinic-info__department-text + .p-clinic-info__department-text {
  margin-top: 0.125rem;
}

.p-clinic-info__department-table-title.c-title__line {
  margin-top: 0.5rem;
}
.p-clinic-info__department-table-title.c-title__line::before {
  background-color: #444444;
}

/***************************************
* 産婦人科
****************************************/
.p-woman .u-col--blue {
  font-weight: 800;
}

.p-woman__feature {
  width: 100%;
  padding-block: 3.5rem 4.875rem;
  position: relative;
}
.p-woman__feature::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../../assets/images/bg/page-bg01.webp) no-repeat 100% 100%/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-woman__feature {
    padding-block: 1.875rem 2.3125rem;
  }
}

.p-woman__concern {
  width: 100%;
  padding-block: 4.375rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-woman__concern {
    padding-block: 2.5rem;
  }
}

.p-woman__concern-text {
  margin-top: 2.0625rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-woman__concern-text {
    margin-top: 0.9375rem;
  }
}

.p-woman__concern-content {
  margin-top: 1.875rem;
  width: 100%;
  border-radius: 0.625rem;
  background-color: #EFF8FD;
  padding: 2.5rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-woman__concern-content {
    margin-top: 1.25rem;
    padding: 1.375rem 0.9375rem;
  }
}

.p-woman__concern-content-inner {
  width: min(100%, 56.25rem);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-woman__concern-content-inner {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.p-woman__medical {
  width: 100%;
  padding-block: 3.5rem 4.5rem;
  background: #EFF8FD;
}
@media screen and (max-width: 767px) {
  .p-woman__medical {
    padding-block: 1.875rem 2.5rem;
  }
}

.p-woman__medical-content {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-woman__medical-content {
    margin-top: 2.1875rem;
  }
}
.p-woman__medical-content:first-of-type {
  margin-top: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .p-woman__medical-content:first-of-type {
    margin-top: 1.40625rem;
  }
}

.p-woman__medical-item {
  width: 100%;
  margin-top: 0.8625rem;
  border-radius: 0.625rem;
  background-color: #fff;
  padding: 1.75rem 5.75rem;
}
@media screen and (max-width: 767px) {
  .p-woman__medical-item {
    padding: 1.25rem 1.875rem;
  }
}
@media screen and (max-width: 385px) {
  .p-woman__medical-item {
    padding: 1.25rem;
  }
}

.p-woman__medical-item-inner {
  width: min(100%, 27.5rem);
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-woman__medical-item-inner {
    flex-direction: column;
    gap: 0;
  }
}

.p-woman__medical-text {
  margin-top: 0.8625rem;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.06em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-woman__medical-text {
    margin-top: 0.625rem;
    font-size: 0.8125rem;
    line-height: 2.3;
  }
}

.p-woman__medical-item + .p-woman__medical-text {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-woman__medical-item + .p-woman__medical-text {
    margin-top: 0.9375rem;
  }
}

.p-woman__doctor {
  width: 100%;
  padding-block: 4.375rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-woman__doctor {
    padding-block: 2.5rem;
  }
}

.p-woman__doctor-title {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-woman__doctor-title {
    margin-top: 2.5rem;
  }
}
.p-woman__doctor-title:first-of-type {
  margin-top: 0;
}

.p-woman__doctor .l-media-text {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.06em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-woman__doctor .l-media-text {
    font-size: 0.8125rem;
  }
}
/*# sourceMappingURL=style.css.map */
