@charset "UTF-8";



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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  -webkit-print-color-adjust: exact;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-underline-offset: .2em;
  background: #fff;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  color: #646464;
  font-family: 'Noto Sans JP', '游ゴシック体', '游ゴシック', 'Yu Gothic', 'YuGothic', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN', 'メイリオ', 'Meiryo', 'MS Pゴシック', 'MS PGothic', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-break: strict;
  line-height: 1.8;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  vertical-align: baseline;
  margin: 0;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 100%;
}

a {
  display: inline-block;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  color: inherit;
  text-decoration: none;
}

a[href='*'] {
  cursor: pointer;
}

a[href='*']:hover, a[href='*']:focus-visible {
  opacity: .7;
}

img,
svg {
  display: inline-block;
  vertical-align: top;
  border: none;
  width: 100%;
  max-width: 100%;
  height: auto;
}

video {
  width: 100%;
  height: auto;
}

code,
kbd,
pre,
samp {
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
  content: '';
  content: none;
}

address {
  font-style: italic;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  margin: 0;
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
}

abbr,
acronym {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

cite {
  font-style: italic;
}

code,
kbd {
  background-color: #F8F8F8;
  padding: .25em .5em;
}

em {
  font-style: italic;
  font-weight: 700;
}

pre {
  display: block;
  background-color: #F8F8F8;
  padding: 1em 2em;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

var {
  background-color: #F8F8F8;
  padding: .25em .5em;
  font-style: italic;
}

/************************************************************************
* end reset
************************************************************************/
.js-fadeIn {
  visibility: hidden;
  opacity: 0;
}

.js-fadeInUp {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInLeft {
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInRight {
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  visibility: hidden;
  opacity: 0;
}

@-webkit-keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeInLeft,
.fadeInRight,
.fadeInUp,
.fadeIn,
.fadeOut {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.fadeInLeft {
  -webkit-animation-name: fadeinleft;
  animation-name: fadeInLeft;
}

.fadeInRight {
  -webkit-animation-name: fadeinright;
  animation-name: fadeInRight;
}

.fadeInUp {
  -webkit-animation-name: fadeinup;
  animation-name: fadeInUp;
}

.fadeIn {
  -webkit-animation-name: fadein;
  animation-name: fadeIn;
}

.fadeOut {
  opacity: 1;
  -webkit-animation-name: fadeout;
  animation-name: fadeOut;
}

[data-target] {
  cursor: pointer;
}

html {
  scrollbar-gutter: stable;
  font-size: 100%;
}

button {
  color: #646464;
}

/************************************************************************
* layout
************************************************************************/
body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

body[data-color=purple] {
  --color-main: #a54a96;
  --color-sub: #fce9ff;
  --color-accent: #eed4e9;
  --color-bg: #fff1f3;
}

body[data-color=pink] {
  --color-main: #ff6584;
  --color-sub: #ffe1e7;
  --color-accent: #ffbecb;
  --color-bg: #fff1f3;
}

body[data-color=cyan] {
  --color-main: #0bc;
  --color-sub: #d9fcff;
  --color-accent: #9df5fd;
  --color-bg: #d9fcff;
}

body.fadeIn {
  opacity: 0;
}

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

footer {
  margin-top: auto;
}

/************************************************************************
* base
************************************************************************/
a[target=_blank]:not([class]) {
  -webkit-transition: color .3s;
  transition: color .3s;
}

a[target=_blank]:not([class])::after {
  display: inline-block;
  -webkit-mask-image: url('../img/common/icon-outerLink.svg');
  mask-image: url('../img/common/icon-outerLink.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  margin-left: .7647058824em;
  background-color: currentColor;
  width: .8529411765em;
  height: .7647058824em;
  font-weight: 900;
  content: '';
}

a:not([class]) {
  color: #03c;
}

a:not([class]):visited {
  color: #639;
}

a:not([class]):hover {
  text-decoration: underline;
}

table {
  margin-right: auto;
  margin-left: auto;
  border-collapse: collapse;
  border-spacing: 0;
  width: auto;
  min-width: 100%;
  table-layout: fixed;
}

th,
td {
  border: 1px solid;
}

address {
  font-style: normal;
}

details .icon {
  aspect-ratio: 1;
  display: block;
  position: relative;
  width: 24px;
  width: 1.5rem;
}

details .icon::before, details .icon::after {
  inset: 0;
  position: absolute;
  margin: auto;
  background-color: #646464;
  width: 13px;
  width: .8125rem;
  height: 1px;
  content: '';
}

details .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

details[open] > summary .icon::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

details.is-closing[open] > summary .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

summary {

  /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
  display: block;
  cursor: pointer;
}

summary::-webkit-details-marker {

  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}

/************************************************************************
* end base
************************************************************************/
:root {

  /* ウィンドウサイズ */
  --vw: 100vw;
  --vh: 100vh;

  /* 三角形 */
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);

  /**
     * svgをbackgroundで使う
     * 色：#ffffff -> %23ffffff
     */
  --icon-btn-arrow: url('data:image/svg+xml;utf8,<svg width="37" height="6" viewBox="0 0 37 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 5H36L26.2703 1" stroke="%230C4A6E"/></svg>');

  /* ヘッダー高さ */
  --header-height: 64px;
}

/************************************************************************
* overwrite mfp
************************************************************************/
.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
  background-color: #AFA688;
}

.mfp-bg.mfp-ready {
  opacity: .8;
}

.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.mfp-wrap .mfp-arrow {
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-wrap.mfp-ready .mfp-arrow {
  opacity: 1;
}

.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-wrap.mfp-removing .mfp-arrow {
  opacity: 0;
}

/************************************************************************
* overwrite mfp end
************************************************************************/

/************************************************************************
* MW WP Form Over write
************************************************************************/
.mwform-radio-field,
.mwform-checkbox-field {
  display: inline-block;
}

.mw_wp_form_preview .c-select::after {
  content: none;
}

.mw_wp_form_preview .p-hasPlaceholder__text {
  display: none;
}

/************************************************************************
* swiper
************************************************************************/
.swiper-button-prev,
.swiper-button-next {
  aspect-ratio: 1;
  z-index: 1;
  cursor: pointer;
  border-radius: 50%;
  background-color: #ff6584;
  background-image: url(../img/common/chevron-right.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: .625rem;
  width: 30px;
  width: 1.875rem;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: .7;
}

.swiper-button-prev--purple,
.swiper-button-next--purple {
  background-color: #a54a96;
}

.swiper-button-prev--cyan,
.swiper-button-next--cyan {
  background-color: #0bc;
  background-image: url(../img/common/chevron-right-cyan.svg);
}

.swiper-pagination {
  font-size: 0;
}

.swiper-pagination-bullet {
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
  background-color: #d5d5d5;
  width: 5px;
  height: 5px;
}

.swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 5px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #ff6584;
}

/* rtl ******************************************************************/
.swiper[dir=rtl] .swiper-button-prev {
  background-image: url('../img/common/icon-chevron-right.svg');
}

.swiper[dir=rtl] .swiper-button-next {
  background-image: url('../img/common/icon-chevron-left.svg');
}

.swiper[dir=rtl] .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-right: 5px;
  margin-left: 0;
}

/************************************************************************
* swiper end
************************************************************************/
.wpcf7-spinner {
  display: none;
}

.btn-bottom .btn {
  display: inline-block;
  -webkit-transition: .3s ease 0s;
  transition: .3s ease 0s;
  cursor: pointer;
  border: unset;
  border-radius: 38px;
  background: #a54a96;
  padding: 30px 15px 31px;
  width: 100%;
  min-width: unset;
  max-width: 500px;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  text-align: center;
}

.btn.wpcf7-previous,
.btn.btn_back {
  cursor: pointer !important;
  margin-top: 15px;
  background: #707070 !important;
}

.btn.wpcf7-previous:hover,
.btn.btn_back:hover {
  background: #00b8cc !important;
}

/************************************************************************
* Table of Contents Plus
************************************************************************/
#toc_container {
  padding: 30px 20px;
  padding: 1.875rem 1.25rem;
  width: 100% !important;
}

#toc_container .toc_number {
  margin-right: .5em;
  color: #ff6584;
  font-weight: 700;
}

#toc_container .toc_list li {
  color: #646464;
}

#toc_container .toc_list li::before {
  display: none;
  color: #ff6584;
}

#toc_container .toc_list li + li {
  margin-top: .5em;
}

#toc_container .toc_list a {
  color: #646464;
}

.l-businessFacilitySection {
  padding: 45px 0 80px;
  padding: 2.8125rem 0 5rem;
}

.l-container {
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
}

.l-container.l-container--full {
  margin-left: calc((100% - 100vw) / 2);
  width: 100vw;
  max-width: none;
}

.l-header {
  position: -webkit-sticky;
  position: sticky;
  top: -110%;
  left: 0;
  z-index: 20;
  -webkit-transition: top .8s ease 0s;
  transition: top .8s ease 0s;
  -webkit-box-shadow: 0 6px 6px rgba(117, 117, 117, .16);
  box-shadow: 0 6px 6px rgba(117, 117, 117, .16);
  width: 100%;
}

.l-header.is-fixed {
  top: 0;
}

.l-main--page {
  padding-top: 59px;
  padding-top: 3.6875rem;
}

/************************************************************************
* 基本形
************************************************************************/
.c-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  -webkit-transition: .3s ease 0s;
  transition: .3s ease 0s;
  -webkit-transition-property: color, background-color, border-color;
  transition-property: color, background-color, border-color;
  margin: 0;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, .3);
  box-shadow: 0 3px 3px rgba(0, 0, 0, .3);
  border: 1px solid transparent;
  border-radius: 1.875rem;
  background-color: #a54a96;
  background-image: none;
  padding: .8em 2em;
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}

/************************************************************************
* modifier
************************************************************************/
.c-btn--arrowRight {
  position: relative;
  padding-right: 2em;
  padding-left: 1.38em;
}

.c-btn--arrowRight::after {
  position: absolute;
  top: 50%;
  right: .83em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font: var(--fa-font-solid);
  font-weight: 900;
  content: '\f061';
}

.c-btn.c-btn--pink {
  background-color: #ff6584;
}

.c-btn.c-btn--cyan {
  background-color: #0bc;
}

.c-btn.c-btn--purple {
  background-color: #a54a96;
}

/************************************************************************
* バリエーション:角丸ボタン
************************************************************************/
.c-roundedBtn {
  display: inline-block;
  -webkit-transition: .25s;
  transition: .25s;
  border: 2px solid transparent;
  border-radius: 10px;
  border-bottom-color: rgb(255, 50, 91.2662337662);
  background-color: #ff6584;
  padding: 15px 10px;
  width: 236px;
  max-width: 100%;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
}

.c-roundedBtn:hover, .c-roundedBtn:focus {
  border-color: currentColor;
  background-color: #fff;
  color: #ff6584;
}

/************************************************************************
* バリエーション:角丸ボタン
************************************************************************/
.c-roundedBtn {
  display: inline-block;
  -webkit-transition: .25s;
  transition: .25s;
  border: 2px solid transparent;
  border-radius: 10px;
  border-bottom-color: rgb(255, 50, 91.2662337662);
  background-color: #ff6584;
  padding: 15px 10px;
  width: 236px;
  max-width: 100%;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
}

.c-roundedBtn:hover, .c-roundedBtn:focus {
  border-color: currentColor;
  background-color: #fff;
  color: #ff6584;
}

/************************************************************************
* バリエーション：アイコン付き小ボタン
************************************************************************/
.c-beforeIconBtn {
  display: inline-block;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid currentColor;
  padding: .2em .3em;
  color: #ff6584;
  text-decoration: none;
}

.c-beforeIconBtn:hover, .c-beforeIconBtn:focus {
  background-color: #ff6584;
  color: #fff;
}

.c-beforeIconBtn::before {
  display: inline-block;
  margin-right: .5em;
  font: var(--fa-font-solid);
  font-weight: 900;
}

.c-beforeIconBtn--download::before {
  content: '\f019';
}

.c-companyInfo {
  position: relative;
  padding-top: 6px;
  padding-top: .375rem;
  padding-bottom: 6px;
  padding-bottom: .375rem;
}

.c-companyInfo::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-main);
  width: 10px;
  width: .625rem;
  height: 100%;
  content: '';
}

.c-companyInfo--purple::before {
  background-color: #a54a96;
}

.c-companyInfo--pink::before {
  background-color: #ff6584;
}

.c-companyInfo--cyan::before {
  background-color: #0bc;
}

.c-companyInfo__name {
  padding-left: 20px;
  padding-left: 1.25rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2;
}

/************************************************************************
* c-contentCard - コンテンツカードコンポーネント
************************************************************************/
.c-contentCard {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 36px 30px;
  padding: 2.25rem 1.875rem;
  min-height: 240px;
  min-height: 15rem;
}

.c-contentCard::after {
  aspect-ratio: 1;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: #fff1f3;
  width: 240px;
  width: 15rem;
  content: '';
}

.c-contentCard--left::after {
  right: auto;
  left: 0;
}

.c-contentCard__title {
  border-bottom: 3px solid;
  padding-bottom: 14px;
  padding-bottom: .875rem;
  color: #ff6584;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.45;
}

.c-contentCard__text {
  margin-top: 14px;
  margin-top: .875rem;
  font-weight: 400;
  line-height: 2;
}

.c-heading {
  color: var(--color-main);
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}

.c-sectionTitle {
  position: relative;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  text-align: center;
}

.c-sectionTitle--series {
  padding-bottom: 48px;
  padding-bottom: 3rem;
}

.c-sectionTitle--facility {
  text-align: left;
}

.c-sectionTitle--facility .c-sectionTitle__en {
  text-align: right;
}

.c-sectionTitle--news {
  text-align: left;
}

.c-sectionTitle--news .c-sectionTitle__en {
  text-align: right;
}

.c-sectionTitle__en {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  color: #eed4e9;
  font-family: 'Roboto', 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.c-sectionTitle__ja {
  position: relative;
  z-index: 2;
  color: #a54a96;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4583333333;
}

.c-textTitle {
  border-bottom: 1px solid;
  padding-bottom: 11px;
  padding-bottom: .6875rem;
  color: var(--color-main);
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.c-textTitle--purple {
  color: #a54a96;
}

/************************************************************************
* c-titleCard - タイトルカードコンポーネント
************************************************************************/
.c-titleCard {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  background-image: url(../img/top/reason-bg-sp.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 23px 0;
  padding: 1.4375rem 0;
  width: 100%;
  height: 100%;
  min-height: 200px;
  min-height: 12.5rem;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
  text-align: left;
}

.c-titleCard::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background-color: rgba(255, 135, 171, .5);
  content: '';
}

.c-titleCard__title,
.c-titleCard__lead {
  padding-right: 30px;
  padding-right: 1.875rem;
  padding-left: 30px;
  padding-left: 1.875rem;
}

.c-titleCard__title {
  z-index: 3;
  border-bottom: 3px solid #fff;
  padding-bottom: 3px;
  padding-bottom: .1875rem;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4583333333;
}

.c-titleCard__lead {
  z-index: 3;
  margin-top: 9px;
  margin-top: .5625rem;
  padding-bottom: 13px;
  padding-bottom: .8125rem;
  color: rgba(255, 255, 255, .5);
  font-family: 'Roboto', 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
}

/************************************************************************
* Modifier: c-titleCard--medical (医療受入体制)
************************************************************************/
.c-titleCard.c-titleCard--medical {
  background-image: url(../img/top/medical-bg-sp.jpg);
}

.c-titleCard.c-titleCard--medical::before {
  z-index: 2;
  background-color: rgba(0, 187, 204, .5);
}

.c-totop {
  aspect-ratio: 1;
  display: block;
  position: fixed;
  right: 15px;
  right: .9375rem;
  bottom: 80px;
  bottom: 5rem;
  visibility: hidden;
  opacity: 0;
  z-index: 30;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  border-radius: 50%;
  background-color: #0bc;
  width: 40px;
  width: 2.5rem;
}

.c-totop::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -20%) rotate(-45deg);
  transform: translate(-50%, -20%) rotate(-45deg);
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 12px;
  width: .75rem;
  height: 12px;
  height: .75rem;
  content: '';
}

.c-totop.is-active {
  visibility: visible;
  opacity: 1;
}

.p-404 {
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}

.p-404__head {
  text-align: center;
}

.p-404__body {
  text-align: center;
}

.p-404__foot {
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: center;
}

.p-archive__main {
  margin-top: 57px;
  margin-top: 3.5625rem;
  padding-bottom: 70px;
  padding-bottom: 4.375rem;
}

.p-archive__filters {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-archive__filters--pc {
  display: none;
}

.p-archive__filters--sp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-archive__filter {
  gap: 4px;
  gap: .25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-archive__filters--sp .p-archive__filter {
  display: block;
  border: 1px solid #707070;
  padding: 15px 20px 20px;
  padding: .9375rem 1.25rem 1.25rem;
}

.p-archive__filterLabel {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-weight: 700;
}

.p-archive__filterLabel--category {
  color: #ff6584;
}

.p-archive__filterLabel--facility {
  color: #0bc;
}

.p-archive__filterTags {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-archive__filters--sp .p-archive__filterTags {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.p-archive__filterTag {
  display: inline-block;
  -webkit-transition: all .3s;
  transition: all .3s;
  padding: 1px 14px;
  padding: .0625rem .875rem;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 700;
  text-align: center;
}

.p-archive__filters--sp .p-archive__filterTag {
  display: block;
  padding: 8px 14px;
  padding: .5rem .875rem;
  font-size: 14px;
  font-size: .875rem;
}

.p-archive__filterTag--pink {
  border: 1px solid #ff6584;
  background-color: #fff;
  color: #ff6584;
}

.p-archive__filterTag--pink.is-active {
  background-color: #ff6584;
  color: #fff;
}

.p-archive__filterTag--cyan {
  border: 1px solid #0bc;
  background-color: #fff;
  color: #0bc;
}

.p-archive__filterTag--cyan.is-active {
  background-color: #0bc;
  color: #fff;
}

.p-archive__filterButton {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: all .3s;
  transition: all .3s;
  cursor: pointer;
  border: none;
  padding: 0;
  width: 100%;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}

.p-archive__filterButton--category {
  color: #ff6584;
}

.p-archive__filterButton--facility {
  color: #0bc;
}

.p-archive__filterButtonText {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: left;
}

.p-archive__filterButtonIcon {
  aspect-ratio: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  margin-left: 10px;
  margin-left: .625rem;
  border-radius: 50%;
  width: 24px;
  width: 1.5rem;
}

.p-archive__filterButton--category .p-archive__filterButtonIcon {
  background-color: #ff6584;
}

.p-archive__filterButton--facility .p-archive__filterButtonIcon {
  background-color: #0bc;
}

.p-archive__filterButtonIcon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -70%) rotate(135deg);
  transform: translate(-50%, -70%) rotate(135deg);
  -webkit-transition: border-color .3s;
  transition: border-color .3s;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  width: 8px;
  width: .5rem;
  height: 8px;
  height: .5rem;
  content: '';
}

.is-opened .p-archive__filterButtonIcon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.p-archive__filterContent {
  display: none;
  padding-top: 20px;
  padding-top: 1.25rem;
}

.p-archive__list {
  gap: 30px;
  gap: 1.875rem;
  display: grid;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-archive__item {
  border-radius: 1.25rem;
  background-color: #efefef;
}

.p-archive__itemLink {
  display: block;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  border-radius: 1.25rem;
  background-color: #efefef;
  padding: 20px 10px;
  padding: 1.25rem .625rem;
}

.p-archive__itemMeta {
  gap: 6px;
  gap: .375rem;
  display: grid;
}

.p-archive__itemDate {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
}

.p-archive__itemCategories {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-archive__itemCategory {
  display: inline-block;
  padding: 1px 15px;
  padding: .0625rem .9375rem;
  color: #fff;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 700;
}

.p-archive__itemCategory--pink {
  background-color: #ff6584;
}

.p-archive__itemCategory--cyan {
  background-color: #0bc;
}

.p-archive__itemTitle {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-archive__footer {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-archive__empty {
  margin-top: 50px;
  margin-top: 3.125rem;
  text-align: center;
}

.p-article__main {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}

.p-article__container {
  gap: 54px;
  gap: 3.375rem;
  display: grid;
}

.p-article__meta {
  gap: 12px 16px;
  gap: .75rem 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-article__date + .p-article__date {
  margin-left: 20px;
}

.p-article__label {
  margin-left: 20px;
}

.p-article__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4583333333;
}

.p-article__thumbnail {
  margin-top: 20px;
  margin-top: 1.25rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-article__body {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-article__body h1,
.p-article__body h2,
.p-article__body h3,
.p-article__body h4,
.p-article__body h5,
.p-article__body h6 {
  margin-top: 30px;
  margin-top: 1.875rem;
  margin-bottom: 1em;
  font-weight: 700;
}

.p-article__body h1 {
  font-size: 24px;
  font-size: 1.5rem;
}

.p-article__body h2 {
  background-color: #EFEFEF;
  padding: 3px 18px;
  padding: .1875rem 1.125rem;
  font-size: 26px;
  font-size: 1.625rem;
}

.p-article__body h3 {
  font-size: 20px;
  font-size: 1.25rem;
}

.p-article__body h4 {
  font-size: 16px;
  font-size: 1rem;
}

.p-article__body h5 {
  font-size: 16px;
  font-size: 1rem;
}

.p-article__body .c-beforeBar {
  position: relative;
  padding-left: 1.5em;
}

.p-article__body .c-beforeBar::before {
  position: absolute;
  top: 1em;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #000;
  content: 'ー';
}

.p-article__body ul {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-article__body ul li {
  position: relative;
  padding-left: 1.125em;
  text-indent: -1.125px;
  text-indent: -.0703125rem;
}

.p-article__body ul li::before {
  aspect-ratio: 1;
  display: inline-block;
  position: absolute;
  left: 0;
  margin-right: 2px;
  margin-right: .125rem;
  width: 1em;
  content: '・';
}

.p-article__body ol {
  counter-reset: number;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-article__body ol li {
  position: relative;
  padding-left: 1.125em;
  text-indent: -1.125px;
  text-indent: -.0703125rem;
}

.p-article__body ol li::before {
  aspect-ratio: 1;
  display: inline-block;
  position: absolute;
  left: 0;
  counter-increment: number;
  margin-right: 2px;
  margin-right: .125rem;
  width: 1em;
  content: counter(number) '. ';
}

.p-article__body table {
  border: none;
  width: 100%;
}

.p-article__body table th,
.p-article__body table td {
  vertical-align: middle;
  border: none;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 20px;
  padding: 1.25rem;
}

.p-article__body table th {
  border-right: 1px solid #000;
  width: 130px;
  width: 8.125rem;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  text-align: justify;
  -moz-text-align-last: justify;
  text-align-last: justify;
  text-justify: inter-ideograph;
}

.p-article__body p, .p-article__body ul li, .p-article__body ol li, .p-article__body td {
  font-weight: 500;
}

.p-article__body p {
  font-weight: 500;
}

.p-article__body a:not([class]) {
  color: #ff6584;
  text-decoration: underline;
}

.p-article__body figcaption {
  margin-top: 0;
  padding-top: .5em;
  padding-bottom: .5em;
  color: #1A1311;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.p-article__body strong,
.p-article__body b {
  font-weight: 700;
}

.p-article__body blockquote,
.p-article__body q {
  position: relative;
  background-color: #F8F8F8;
  padding: 1em 4em;
}

.p-article__body blockquote::before, .p-article__body blockquote::after,
.p-article__body q::before,
.p-article__body q::after {
  position: absolute;
  color: #b2b2b2;
  font: var(--fa-font-solid);
  font-size: 2em;
  font-weight: 900;
}

.p-article__body blockquote::before,
.p-article__body q::before {
  top: 0;
  left: .5em;
  content: '\f10d';
}

.p-article__body blockquote::after,
.p-article__body q::after {
  right: .5em;
  bottom: 0;
  content: '\f10e';
}

.p-article__body q {
  display: inline-block;
}

.p-article__body dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.p-article__body dt,
.p-article__body dd {
  border-top: 1px solid #e7e0db;
  padding: 20px 10px;
  padding: 1.25rem .625rem;
}

.p-article__body dt:last-of-type,
.p-article__body dd:last-of-type {
  border-bottom: 1px solid #e7e0db;
}

.p-article__body dt {
  width: 33%;
  font-weight: 700;
}

.p-article__body dd {
  width: 67%;
}

.p-article__body pre {
  overflow: auto;
  font-size: 14px;
  font-size: .875rem;
  letter-spacing: 0;
  white-space: pre;
}

.p-article__body .aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.p-article__body .alignleft {
  float: left;
  margin-right: 1em;
}

.p-article__body .alignright {
  float: right;
  margin-left: 1em;
}

.p-article__body .gallery {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-article__body .gallery-columns-4 {
  gap: 20px;
}

.p-article__body .gallery-columns-4 > .gallery-item {
  width: calc((100% - 60px) / 4);
}

.p-article__body .gallery-item {
  margin-top: 0;
}

.p-article__body .gallery-icon {
  text-align: center;
}

.p-article__links {
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: center;
}

.post-page-numbers {
  display: inline-block;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  border: 1px solid #ff6584;
  width: 2em;
  height: 2em;
  color: #ff6584;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 2em;
  text-align: center;
}

.p-article__links .post-page-numbers {
  text-decoration: none;
}

.post-page-numbers + .post-page-numbers {
  margin-left: 10px;
}

.post-page-numbers.current {
  background-color: #ff6584;
  color: #fff;
}

.post-page-numbers.dots {
  border: none;
}

.p-article__categories {
  gap: 8px;
  gap: .5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-article__category {
  display: inline-block;
  padding: 4px 12px;
  padding: .25rem .75rem;
  color: #fff;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 700;
}

.p-article__category--pink {
  background-color: #ff6584;
}

.p-article__category--cyan {
  background-color: #0bc;
}

.p-article__thumbnail {
  margin-top: 20px;
  margin-top: 1.25rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}

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

.p-article__footer {
  margin-top: 54px;
  margin-top: 3.375rem;
}

.p-article__navigation {
  gap: 18px;
  gap: 1.125rem;
  display: grid;
}

.p-article__navItem {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-article__navItem--next {
  border-top: 1px solid;
  padding-top: 18px;
  padding-top: 1.125rem;
}

.p-article__navLink {
  gap: 6px;
  gap: .375rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 500;
  text-decoration: none;
}

.p-article__navIcon {
  display: block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 30px;
  width: 1.875rem;
  height: auto;
}

.p-article__navText {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-breadcrumb {
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 12px;
  font-size: .75rem;
}

.p-breadcrumb__inner {
  gap: 10px;
  gap: .625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-breadcrumb__inner a {
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  font-weight: 700;
}

.p-breadcrumb__inner a:hover {
  opacity: .7;
}

.p-businessFacility {
  overflow-x: clip;
}

.p-businessFacility + .p-businessFacility {
  padding-top: 45px;
  padding-top: 2.8125rem;
}

.p-businessFacility__grid {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
}

.p-businessFacility__image img {
  aspect-ratio: 315/150;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-businessFacility__description {
  line-height: 2;
}

/************************************************************************
* p-businessIntro - 事業内容イントロセクション
* 地域包括型のケア事業の説明
************************************************************************/
.p-businessLink {
  margin-top: 70px;
  margin-top: 4.375rem;
}

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

.p-businessLink__content {
  margin-inline: auto;
  position: relative;
  margin-top: 20px;
  margin-top: 1.25rem;
  padding-top: 22px;
  padding-top: 1.375rem;
  max-width: 400px;
}

.p-businessLink__content::before {
  aspect-ratio: 1;
  position: absolute;
  top: 0;
  left: -30px;
  background-color: #f8f1ff;
  width: 150px;
  width: 9.375rem;
  content: '';
}

.p-businessLink__list {
  gap: .5lh;
  margin-inline: auto;
  display: grid;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-businessLink__item {
  position: relative;
  padding-left: 1em;
  font-weight: 500;
}

.p-businessLink__item::before {
  position: absolute;
  left: 0;
  color: #646464;
  content: '・';
}

.p-businessLink__btn {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}

.p-businessServices {
  margin-top: 40px;
  margin-top: 2.5rem;
  background-color: #f8f1ff;
  padding: 35px 0 40px;
  padding: 2.1875rem 0 2.5rem;
}

.p-businessServices__grid {
  gap: 40px;
  gap: 2.5rem;
  display: grid;
}

.p-businessServices__card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.p-businessServices__image img {
  aspect-ratio: 315/220;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-businessServices__content {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: -50px;
  margin-top: -3.125rem;
  background-color: #fff;
  padding: 20px 11px 26px;
  padding: 1.25rem .6875rem 1.625rem;
  width: 88.8888888889%;
}

.p-businessServices__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}

.p-businessServices__card--pink .p-businessServices__title {
  color: #ff6584;
}

.p-businessServices__card--cyan .p-businessServices__title {
  color: #0bc;
}

.p-businessServices__card--purple .p-businessServices__title {
  color: #a54a96;
}

.p-businessServices__text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: 500;
  line-height: 2;
}

.p-businessServices__btn {
  margin-top: auto;
  text-align: center;
}

/************************************************************************
* p-careServiceIntro - 地域包括型のケア事業イントロブロック
* タイトル + 画像 | テキストの2カラムレイアウト
************************************************************************/
.p-careServiceIntro {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
}

.p-careServiceIntro__left {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
}

.p-careServiceIntro__image {
  margin: 0 calc(50% - 50vw);
}

.p-careServiceIntro__image img {
  aspect-ratio: 375/200;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-careServiceIntro__text {
  gap: 1lh;
  display: grid;
  line-height: 2;
}

/************************************************************************
* モディファイア: --reverse
* 左側にタイトル+テキスト、右側に画像
************************************************************************/

/************************************************************************
* p-colorCards - カラー背景付きカードブロック（汎用）
************************************************************************/
.p-colorCards {
  gap: 15px;
  gap: .9375rem;
  display: grid;
}

.p-colorCards__card {
  padding: 10px;
  padding: .625rem;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
}

.p-colorCards__card--blue {
  background: #d9fcff;
  color: #0bc;
}

.p-colorCards__card--pink {
  background: #ffe1e7;
  color: #ff6584;
}

.p-colorCards__card--purple {
  background: #f8f1ff;
  color: #a54a96;
}

.p-colorCards__title {
  border-bottom: 1px solid;
  padding-bottom: .5em;
  font-weight: 500;
  text-align: center;
}

.p-colorCards__list {
  gap: 10px;
  gap: .625rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 20px;
  margin-top: 1.25rem;
  padding-right: 1em;
  padding-left: 1em;
}

.p-colorCards__item {
  position: relative;
  font-size: 12px;
  font-size: .75rem;
}

.p-drawer {
  z-index: 40;
  margin-left: auto;
}

.p-drawer__icon {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 41;
  cursor: pointer;
  border-radius: 50%;
  background-color: #a54a96;
  padding: 8px 5px;
  padding: .5rem .3125rem;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  line-height: 1;
}

.p-drawer__bars {
  display: inline-block;
  vertical-align: bottom;
  width: 18px;
}

.p-drawer__bar {
  display: block;
  -webkit-transition: all .3s linear 0s;
  transition: all .3s linear 0s;
  margin-top: 5px;
  background: #fff;
  width: 100%;
  height: 1px;
}

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

.is-opened .p-drawer__bar:nth-child(2) {
  background: transparent;
}

.is-opened .p-drawer__bar:first-child {
  -webkit-transform: translateY(6px) rotate(45deg);
  transform: translateY(6px) rotate(45deg);
  width: 100%;
}

.is-opened .p-drawer__bar:last-child {
  -webkit-transform: translateY(-6px) rotate(-45deg);
  transform: translateY(-6px) rotate(-45deg);
  width: 100%;
}

.p-drawer__bg {
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}

.p-drawer__bg.is-opened {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

.p-drawer__content {
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
  z-index: 40;
  -webkit-transition: -webkit-transform .5s ease 0s;
  transition: -webkit-transform .5s ease 0s;
  transition: transform .5s ease 0s;
  transition: transform .5s ease 0s, -webkit-transform .5s ease 0s;
  margin-top: 64px;
  background: #4a4a4a;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
  width: 100%;
  height: calc(100dvh - 64px);
  overflow: auto;
  color: #fff;
  text-align: center;
}

.p-drawer__content.is-opened {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.p-drawer__content--left {
  right: auto;
  left: 0;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}

.p-drawer__content--top {
  top: 0;
  bottom: auto;
  -webkit-transform: translateY(-105%);
  transform: translateY(-105%);
  width: 100%;
  max-width: 100%;
}

.p-drawer__content--cover {
  width: 100%;
  max-width: 100%;
}

.p-drawer__inner {
  padding-right: 30px;
  padding-left: 30px;
  width: 100%;
}

.p-drawer__nav {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-drawer__navList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-drawer__navLink {
  display: block;
  position: relative;
  -webkit-transition: background-color .3s ease;
  transition: background-color .3s ease;
  border-radius: .25rem;
  padding: .5em;
  padding-left: 32px;
  padding-left: 2rem;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: left;
}

.p-drawer__navLink::before {
  position: absolute;
  top: 55%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #ff6584;
  background-image: url(../img/common/chevron-right.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: .5rem;
  width: 23px;
  width: 1.4375rem;
  height: 23px;
  height: 1.4375rem;
  content: '';
}

.p-drawer__submenu {
  padding-left: 32px;
  padding-left: 2rem;
}

.p-drawer__submenuItem:first-child .p-drawer__submenuLink {
  padding-top: 0;
}

.p-drawer__submenuLink {
  display: block;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  padding: .3em;
  padding-left: 0;
  color: #fff;
  font-weight: 700;
  text-align: left;
}

.p-drawer__navItem--instagram {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-drawer__navItem--instagram .p-drawer__navLink {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 12px;
  padding: .75rem;
  padding-left: 32px;
  padding-left: 2rem;
}

.p-drawer__navItem--instagram .p-drawer__navLink::before {
  display: none;
}

.p-drawer__instagram-icon {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  -webkit-transition: opacity .3s ease, -webkit-transform .3s ease;
  transition: opacity .3s ease, -webkit-transform .3s ease;
  transition: opacity .3s ease, transform .3s ease;
  transition: opacity .3s ease, transform .3s ease, -webkit-transform .3s ease;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
}

.p-facilities {
  padding-top: 76px;
  padding-top: 4.75rem;
  overflow-x: clip;
}

.p-facilities__grid {
  gap: 55px;
  gap: 3.4375rem;
  display: grid;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-facilities__map img {
  aspect-ratio: 315/325;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-facilities__details {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
  margin-top: 27px;
  margin-top: 1.6875rem;
  padding-left: 20px;
  padding-left: 1.25rem;
}

.p-facilities__address {
  font-size: 12px;
  font-size: .75rem;
  line-height: 2;
}

.p-facilities__description {
  gap: 16px;
  gap: 1rem;
  display: grid;
  margin-top: 30px;
  margin-top: 1.875rem;
  color: #646464;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.75;
}

.p-facilities__description p {
  margin: 0;
}

.p-facilities__visitingStation {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-fixedButtons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
}

.p-fixedButtons__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 12px;
  padding: .75rem;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}

.p-fixedButtons__item--inquiry {
  background-color: #ff6584;
}

.p-fixedButtons__item--tel {
  background-color: #0bc;
}

.p-fixedButtons__inner {
  gap: 4px;
  gap: .25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
}

.p-fixedButtons__text {
  display: block;
}

.p-fixedButtons__icon {
  aspect-ratio: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
  width: 20px;
  width: 1.25rem;
}

.p-fixedButtons__icon::after {
  aspect-ratio: 8/12;
  display: block;
  -webkit-mask-image: url('../img/common/chevron-right.svg');
  mask-image: url('../img/common/chevron-right.svg');
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  width: 8px;
  width: .5rem;
  content: '';
}

.p-fixedButtons__item--inquiry .p-fixedButtons__icon::after {
  background-color: #ff6584;
}

.p-fixedButtons__item--tel .p-fixedButtons__icon::after {
  background-color: #0bc;
}

.p-footer {
  background-image: url('../img/common/footer_bg_sp.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px 0 100px;
  padding: 1.875rem 0 6.25rem;
  color: #fff;
}

.p-footer__inner {
  margin-inline: auto;
  max-width: 400px;
}

.p-footer__content {
  gap: 32px;
  gap: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-footer__leftColumn {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
}

.p-footer__header {
  gap: 10px;
  gap: .625rem;
  display: grid;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.p-footer__catchphrase {
  font-size: 12px;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.4166666667;
}

.p-footer__logo {
  width: 280px;
  width: 17.5rem;
}

.p-footer__logo img {
  aspect-ratio: 280/60;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-footer__info {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-footer__address {
  font-size: 12px;
  font-size: .75rem;
  font-weight: 700;
  line-height: 2;
}

.p-footer__tel {
  margin-inline: auto;
  display: grid;
  width: 280px;
  width: 17.5rem;
}

.p-footer__telLink {
  display: block;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.p-footer__telLink:hover {
  opacity: .8;
}

.p-footer__telLink img {
  aspect-ratio: 280/50;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-footer__businessHours {
  line-height: 1.5;
  text-align: center;
}

.p-footer__nav {
  gap: 0 50px;
  gap: 0 3.125rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
}

.p-footer__navColumn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-footer__navColumn--top {
  grid-column: 1/-1;
}

.p-footer__navColumn--left {
  grid-column: 1;
}

.p-footer__navColumn--right {
  grid-column: 2;
}

.p-footer__navList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-footer__navItem {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-footer__navLink {
  display: block;
  position: relative;
  -webkit-transition: color .3s ease;
  transition: color .3s ease;
  padding: .2em;
  padding-left: 32px;
  padding-left: 2rem;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
}

.p-footer__navLink:hover {
  color: #ff6584;
}

.p-footer__navLink::before {
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #ff6584;
  background-image: url(../img/common/chevron-right.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: .5rem;
  width: 23px;
  width: 1.4375rem;
  content: '';
}

.p-footer__navSubList {
  padding-left: 32px;
  padding-left: 2rem;
}

.p-footer__navSubLink {
  display: block;
  -webkit-transition: color .3s ease;
  transition: color .3s ease;
  padding: .2em;
  padding-left: 0;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}

.p-footer__navSubLink:hover {
  color: #ff6584;
}

.p-footer__banners {
  gap: 16px 10px;
  gap: 1rem .625rem;
  display: grid;
}

.p-footer__banner {
  display: block;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  -webkit-transition: -webkit-transform .3s ease, -webkit-box-shadow .3s ease;
  transition: -webkit-transform .3s ease, -webkit-box-shadow .3s ease;
  transition: transform .3s ease, box-shadow .3s ease;
  transition: transform .3s ease, box-shadow .3s ease, -webkit-transform .3s ease, -webkit-box-shadow .3s ease;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}

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

.p-footer__copy {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 12px;
  font-size: .75rem;
  line-height: 1.4166666667;
  text-align: center;
}

.p-footer__copy small {
  font-size: inherit;
}

/************************************************************************
* p-fv
************************************************************************/
.p-fv {
  aspect-ratio: 1;
  max-height: calc(100dvh - var(--header-height, 64px));
}

.p-fv.l-container {
  padding: 0;
}

.p-fv__video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-header {
  background-color: #fff;
  height: 64px;
}

.p-header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 22px;
  padding-right: 1.375rem;
  padding-left: 10px;
  padding-left: .625rem;
  height: 100%;
}

.p-header__logo {
  z-index: 41;
  width: 200px;
  width: 12.5rem;
}

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

.p-header__logo img,
.p-header__logo svg {
  width: auto;
  height: inherit;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-header__nav {
  display: none;
}

.p-header__navLinkText {
  position: relative;
  padding: 0 18px;
  padding: 0 1.125rem;
}

.p-header__navLinkText::after {
  position: absolute;
  bottom: -9px;
  bottom: -.5625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: width .3s ease;
  transition: width .3s ease;
  background-color: #a54a96;
  width: 0;
  height: 4px;
  height: .25rem;
  content: '';
}

.p-header__navItem--instagram .p-header__navLink {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 12px;
  padding: .75rem;
}

.p-header__instagram-icon {
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
}

/************************************************************************
* p-infoCards - 情報カードセクション
************************************************************************/
.p-infoCards {
  margin-top: 56px;
  margin-top: 3.5rem;
  background-color: #f8f1ff;
  padding: 40px 0;
  padding: 2.5rem 0;
}

.p-infoCards__grid {
  gap: 43px 10px;
  gap: 2.6875rem .625rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 310px), 1fr));
}

.p-infoCards__image img {
  aspect-ratio: 315/220;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-infoCards__content {
  margin-inline: auto;
  position: relative;
  z-index: 2;
  margin-top: -50px;
  margin-top: -3.125rem;
  background-color: #fff;
  padding: 10px 14px 30px 14px;
  padding: .625rem .875rem 1.875rem .875rem;
  width: 88.8888888889%;
}

.p-infoCards__title {
  margin-top: 10px;
  margin-top: .625rem;
}

.p-infoCards__btn {
  margin-top: 16px;
  margin-top: 1rem;
  text-align: center;
}

.p-lowerFv {
  gap: 15px;
  gap: .9375rem;
  display: grid;
}

.p-lowerFv__content {
  position: relative;
}

.p-lowerFv__inner {
  padding-top: 42px;
  padding-top: 2.625rem;
  padding-bottom: 104px;
  padding-bottom: 6.5rem;
}

.p-lowerFv__inner::after {
  aspect-ratio: 240/300;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 64%;
  max-width: 300px;
  max-width: 18.75rem;
  height: 100%;
  content: '';
}

body[data-page=care] .p-lowerFv__inner::after {
  background-image: url('../img/care/fv-sp.jpg');
}

body[data-page=business] .p-lowerFv__inner::after {
  background-image: url('../img/business/fv-sp.jpg');
}

body[data-page=company] .p-lowerFv__inner::after {
  background-image: url('../img/company/fv-sp.jpg');
}

body[data-page=nursing] .p-lowerFv__inner::after {
  background-image: url('../img/nursing/fv-sp.jpg');
  background-position: top;
}

.p-lowerFv__title {
  color: var(--color-main);
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.45;
}

.p-lowerFv__title::before, .p-lowerFv__title::after {
  aspect-ratio: 1;
  display: block;
  position: absolute;
  opacity: .5;
  content: '';
}

.p-lowerFv__title::after {
  bottom: 56px;
  bottom: 3.5rem;
  left: 81px;
  left: 5.0625rem;
  background-color: var(--color-accent);
  width: 34px;
  width: 2.125rem;
}

.p-lowerFv__title::before {
  bottom: 5px;
  bottom: .3125rem;
  left: 30px;
  left: 1.875rem;
  background-color: var(--color-sub);
  width: 68px;
  width: 4.25rem;
}

.p-lowerFv__subTitle {
  margin-top: 56px;
  margin-top: 3.5rem;
  color: var(--color-sub);
  font-family: 'Roboto', 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
}

.p-lowerFvSub {
  gap: 15px;
  gap: .9375rem;
  display: grid;
}

.p-lowerFvSub__content {
  background-image: url(../img/common/lowerFvSub-sp.jpg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 0;
  padding: 2.5rem 0;
}

.p-lowerFvSub__inner {
  position: relative;
}

.p-lowerFvSub__inner::before, .p-lowerFvSub__inner::after {
  aspect-ratio: 1;
  display: block;
  position: absolute;
  background-color: rgba(255, 255, 255, .5);
  content: '';
}

.p-lowerFvSub__inner::before {
  right: 23px;
  right: 1.4375rem;
  bottom: 0;
  -webkit-transform: translateY(25%);
  transform: translateY(25%);
  width: 50px;
  width: 3.125rem;
}

.p-lowerFvSub__inner::after {
  right: 0;
  bottom: 34px;
  bottom: 2.125rem;
  -webkit-transform: translateY(25%);
  transform: translateY(25%);
  width: 36px;
  width: 2.25rem;
}

.p-lowerFvSub__title {
  color: #fff;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.45;
}

.p-lowerFvSub__subTitle {
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #fff;
  font-family: 'Roboto', 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
  font-size: 30px;
  font-size: 1.875rem;
  text-transform: uppercase;
}

.p-medicalReception {
  margin-top: 74px;
  margin-top: 4.625rem;
  overflow-x: clip;
}

.p-medicalReception__leadArea {
  margin: 0 calc(50% - 50vw);
}

.p-medicalReception__lead {
  margin-top: 20px;
  margin-top: 1.25rem;
  padding-left: 30px;
  padding-left: 1.875rem;
  font-weight: 500;
  line-height: 2;
}

.p-medicalReception__content {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-medicalReception__footer {
  margin-top: 32px;
  margin-top: 2rem;
  text-align: center;
}

/************************************************************************
* p-news - お知らせセクション
************************************************************************/
.p-news {
  margin-top: 40px;
  margin-top: 2.5rem;
  padding-bottom: 70px;
  padding-bottom: 4.375rem;
}

.p-news__title {
  gap: 14px;
  gap: .875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.p-news__titleJa {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4583333333;
}

.p-news__titleEn {
  color: #eed4e9;
  font-family: 'Roboto', 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
}

.p-news__list {
  display: grid;
  border-bottom: 1px solid;
}

.p-news__link {
  gap: 8px;
  gap: .5rem;
  display: grid;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  border-top: 1px solid;
  padding: 16px 0;
  padding: 1rem 0;
}

.p-news__meta {
  gap: 12px;
  gap: .75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.p-news__date {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 500;
  line-height: 1.4166666667;
}

.p-news__categories {
  gap: 6px;
  gap: .375rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-news__category {
  display: inline-block;
  padding: 2px 4px;
  padding: .125rem .25rem;
  color: #fff;
  font-size: 8px;
  font-size: .5rem;
  font-weight: 700;
  line-height: 1.375;
  white-space: nowrap;
}

.p-news__category--pink {
  background: #ff6584;
}

.p-news__category--cyan {
  background: #0bc;
}

.p-news__itemTitle {
  font-weight: 500;
  line-height: 1.5;
}

.p-news__noPost {
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
  text-align: center;
}

.p-news__btn {
  margin-top: 30px;
  margin-top: 1.875rem;
  text-align: center;
}

.p-news__btn a {
  min-width: 180px;
  min-width: 11.25rem;
}

.p-overview {
  padding-top: 40px;
  padding-top: 2.5rem;
}

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

.p-overview__content {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-overview__list {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
}

.p-overview__item {
  gap: 10px;
  gap: .625rem;
  display: grid;
}

.p-overview__label {
  border-bottom: 3px solid;
  color: var(--color-main);
  line-height: 2;
}

.p-overview__value {
  line-height: 1.875;
}

.p-pagination__inner {
  gap: 18px;
  gap: 1.125rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.p-pagination__numbers {
  gap: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  grid-area: 1/1/2/3;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.page-numbers {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all .3s;
  transition: all .3s;
  border-left: 1px solid #646464;
  padding: 4px 21px;
  padding: .25rem 1.3125rem;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.4482758621;
}

.page-numbers:last-child {
  border-right: 1px solid #000;
}

.page-numbers.current {
  color: #ff6584;
  font-weight: 700;
}

.page-numbers.dots {
  cursor: default;
}

.p-pagination__navs {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-pagination__nav {
  gap: 6px;
  gap: .375rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 500;
  text-decoration: none;
}

.p-pagination__nav--disabled {
  visibility: hidden;
}

.p-pagination__nav--next {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.p-pagination__navIcon {
  display: block;
  width: 30px;
  width: 1.875rem;
  height: auto;
}

.p-pagination__navText {
  display: block;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-philosophy {
  padding-top: 59px;
  padding-top: 3.6875rem;
}

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

.p-philosophy__content {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-philosophy__grid {
  gap: 30px;
  gap: 1.875rem;
  display: grid;
}

.p-philosophy__left {
  gap: 16px;
  gap: 1rem;
  display: grid;
}

.p-philosophy__lead {
  color: var(--color-main);
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2;
  text-align: center;
}

.p-philosophy__image {
  margin: 0 calc(50% - 50vw);
}

.p-philosophy__image img {
  aspect-ratio: 375/140;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-philosophy__text {
  gap: 1lh;
  display: grid;
  line-height: 2;
}

/************************************************************************
* p-reasons - 選ばれる理由
************************************************************************/
.p-reasons {
  position: relative;
  margin-top: 63px;
  margin-top: 3.9375rem;
  overflow-x: clip;
}

.p-reasons__grid {
  gap: 44px;
  gap: 2.75rem;
  display: grid;
  grid-template-columns: 1fr;
  margin: 0 calc(50% - 50vw);
}

/************************************************************************
* p-series - 運営施設
************************************************************************/
.p-series {
  margin-top: 30px;
  margin-top: 1.875rem;
  overflow-x: clip;
}

.p-series__text {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.p-series__slider {
  position: relative;
  margin: 0 calc(50% - 50vw);
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-series__btn {
  margin-top: 34px;
  margin-top: 2.125rem;
  text-align: center;
}

/************************************************************************
* p-seriesSlider - 運営施設スライダー
************************************************************************/
.p-seriesSlider {
  position: static;
  font-size: 20px;
  font-size: 1.25rem;
}

.p-seriesSlider__cardImage img {
  aspect-ratio: 314/228;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-seriesSlider__cardName {
  margin-top: 10px;
  margin-top: .625rem;
  color: #a54a96;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}

.p-seriesSlider__button {
  position: absolute;
  top: calc(50% - 1.25rem);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-seriesSlider__button--prev {
  left: 10px;
  left: .625rem;
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.p-seriesSlider__button--next {
  right: 10px;
  right: .625rem;
}

.p-serviceContent {
  padding-bottom: 80px;
  padding-bottom: 5rem;
  overflow-x: clip;
}

.p-serviceContent__detailContent {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
  margin-top: 40px;
  margin-top: 2.5rem;
}

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

.p-serviceContent__description {
  font-weight: 500;
  line-height: 2;
}

.p-serviceContent__boxes {
  gap: 10px;
  gap: .625rem;
  display: grid;
}

.p-serviceContent__box {
  background-color: var(--color-bg);
  padding: 20px 10px;
  padding: 1.25rem .625rem;
}

.p-serviceContent__boxList {
  margin-top: 10px;
  margin-top: .625rem;
}

.p-serviceContent__boxText {
  margin-top: 10px;
  margin-top: .625rem;
  font-weight: 500;
  line-height: 2;
}

.p-serviceContent__activity {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-serviceContent__activityContent {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
}

.p-serviceContent__gallery {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-serviceContent__galleryCaption {
  margin-top: 10px;
  margin-top: .625rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
}

.p-serviceContent__galleryButton.p-serviceContent__galleryButton {
  top: calc(50% - .9375rem);
}

.p-serviceContent__nursingServices {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-serviceContent__nursingServicesInner {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
}

.p-serviceContent__nursingService {
  gap: 10px 15px;
  gap: .625rem .9375rem;
  display: grid;
  grid-template-columns: 1.8fr 1.2fr;
  grid-template-rows: auto 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-serviceContent__nursingServiceIcon {
  grid-column: 2/3;
  grid-row: 1/2;
}

.p-serviceContent__nursingServiceIcon img {
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
}

.p-serviceContent__nursingServiceTitle {
  grid-column: 1/2;
  grid-row: 1/2;
  color: var(--color-main);
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}

.p-serviceContent__nursingServiceTitleText {
  display: block;
  border-bottom: 1px solid;
  padding-bottom: .3em;
}

.p-serviceContent__nursingServiceText {
  grid-column: 1/3;
  grid-row: 2/3;
  font-weight: 500;
  line-height: 2;
}

.p-serviceContent__staff {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-serviceContent__staffContent {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
}

.p-serviceContent__staffImage {
  margin: 0 calc(50% - 50vw);
}

.p-serviceContent__staffImage img {
  aspect-ratio: 375/200;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-serviceContent__staffText {
  font-weight: 500;
  line-height: 2.5;
}

.p-serviceContent__qualifications {
  background-color: var(--color-bg);
  padding: 20px;
  padding: 1.25rem;
  color: var(--color-main);
}

.p-serviceContent__qualificationsTitle {
  border-bottom: 1px solid;
  padding-bottom: 10px;
  padding-bottom: .625rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}

.p-serviceContent__qualifications {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-serviceContent__qualificationsList {
  display: grid;
  margin-top: 20px;
  margin-top: 1.25rem;
  padding-left: calc(1em + .625rem);
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2;
}

.p-serviceContent__qualificationsListItem {
  text-indent: -1em;
}

.p-serviceContent__qualificationsListItem::before {
  display: inline-block;
  border-radius: 50%;
  width: 1em;
  height: 1em;
  color: var(--color-main);
  text-align: center;
  content: '・';
}

.p-sidebar__section + .p-sidebar__section {
  margin-top: 70px;
  margin-top: 4.375rem;
}

.p-sidebar__title {
  border-bottom: 1px solid;
  padding-bottom: 10px;
  padding-bottom: .625rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.45;
}

.p-sidebar__item {
  border-bottom: 1px solid;
}

.p-sidebar__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  padding: 12px 30px;
  padding: .75rem 1.875rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}

.p-sidebar__link::after {
  display: block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-left: 10px;
  margin-left: .625rem;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  width: 10px;
  width: .625rem;
  height: 10px;
  height: .625rem;
  content: '';
}

.p-visitingStation {
  padding: 30px 0 40px;
  padding: 1.875rem 0 2.5rem;
}

.p-visitingStation--cyan {
  background-color: #f7feff;
}

.p-visitingStation--pink {
  background-color: #fff3f6;
}

.p-visitingStation--business {
  padding-top: 0;
  padding-bottom: 0;
}

.p-visitingStation__titleText {
  display: block;
  color: #0bc;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-visitingStation__list {
  gap: 40px;
  gap: 2.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-visitingStation__item {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
}

.p-visitingStation__info {
  gap: 20px;
  gap: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-visitingStation__headWrapper {
  gap: 10px;
  gap: .625rem;
  display: grid;
}

.p-visitingStation__head {
  position: relative;
  padding-top: 6px;
  padding-top: .375rem;
  padding-bottom: 6px;
  padding-bottom: .375rem;
}

.p-visitingStation__head::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #0bc;
  width: 10px;
  width: .625rem;
  height: 100%;
  content: '';
}

.p-visitingStation__name {
  padding-left: 20px;
  padding-left: 1.25rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2;
}

.p-visitingStation__business {
  padding-left: 20px;
  padding-left: 1.25rem;
  font-weight: 700;
}

.p-visitingStation__facilityType {
  font-size: 16px;
  font-size: 1rem;
}

.p-visitingStation__facilityType--cyan {
  background-color: #0bc;
}

.p-visitingStation__facilityType--purple {
  background-color: #a54a96;
}

.p-visitingStation__details {
  gap: 20px;
  gap: 1.25rem;
  display: grid;
  padding-left: 20px;
  padding-left: 1.25rem;
  font-size: 12px;
  font-size: .75rem;
  line-height: 2;
}

.p-visitingStation__details--business {
  gap: 0;
  padding-left: 0;
}

.p-visitingStation__map {
  aspect-ratio: 16/9;
  border-radius: .5rem;
  width: 100%;
  overflow: hidden;
}

.p-visitingStation__map iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

.p-visitingStation__thumbnail {
  width: 100%;
}

.p-visitingStation__thumbnail img {
  aspect-ratio: 315/220;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-visitingStation--cyan .p-visitingStation__titleText {
  color: #0bc;
}

.p-visitingStation--cyan .p-visitingStation__head::before {
  background-color: #0bc;
}

.p-visitingStation--pink .p-visitingStation__titleText {
  color: #ff6584;
}

.p-visitingStation--pink .p-visitingStation__head::before {
  background-color: #ff6584;
}

.p-visitingStation--purple .p-visitingStation__titleText {
  color: #a54a96;
}

.p-visitingStation--purple .p-visitingStation__head::before {
  background-color: #a54a96;
}

.p-visitingStationSlider {
  position: relative;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

.p-visitingStationSlider__slide {
  width: 200px;
  width: 12.5rem;
  height: auto;
}

.p-visitingStationSlider__slide img {
  aspect-ratio: 200/150;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-visitingStationSlider__slide--service img {
  height: 85.8181818182%;
}

.p-visitingStationSlider__slide--company {
  width: 315px;
  width: 19.6875rem;
}

.p-visitingStationSlider__button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-visitingStationSlider__button--prev {
  left: 10px;
  left: .625rem;
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.p-visitingStationSlider__button--next {
  right: 10px;
  right: .625rem;
}

.clearfix::after {
  display: block;
  clear: both;
  content: '';
}

/************************************************************************
* visible device
************************************************************************/
.u-onlyPc {
  display: none;
}

.u-onlyTab {
  display: none;
}

.u-onlySp {
  display: none;
}

.u-inlineBlock {
  display: inline-block !important;
}

.u-block {
  display: block !important;
}

.u-inline {
  display: inline !important;
}

.u-hidden {
  display: none !important;
}

.u-overflowHidden {
  overflow: hidden !important;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  position: absolute;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}

@media screen and (min-width: 550px) {

  .p-colorCards {
    grid-template-columns: 5.97fr 3.87fr;
  }

  .p-colorCards__list--pink {
    grid-template-columns: auto;
  }
}

@media screen and (min-width: 600px) {

  .p-article__body .gallery-columns-4 > .gallery-item {
    width: calc((100% - 20px) / 2);
  }
}

@media screen and (min-width: 768px) {

  body {
    font-size: 20px;
    font-size: 1.25rem;
  }

  html {
    font-size: 1.5732546706vw;
    font-size: calc(var(--vw) / 1017px * 100%);
  }

  :root {
    --header-height: 112px;
  }

  #toc_container {
    padding: 30px 60px;
    padding: 1.875rem 3.75rem;
  }

  .l-businessFacilitySection {
    padding: 70px 0 140px;
    padding: 4.375rem 0 8.75rem;
  }

  .l-container {
    padding-right: 50px;
    padding-left: 50px;
    max-width: 1117px;
  }

  .l-container.l-container--narrow {
    max-width: 1117px;
  }

  .l-container.l-container--wide {
    max-width: 1636px;
  }

  .l-main--page {
    padding-top: 45px;
    padding-top: 2.8125rem;
  }

  .c-btn {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .c-btn:hover, .c-btn:focus-visible {
    outline: none;
    border-color: currentColor;
    background-color: #fff;
    color: #a54a96;
  }

  .c-btn.c-btn--pink:hover, .c-btn.c-btn--pink:focus {
    color: #ff6584;
  }

  .c-btn.c-btn--cyan:hover, .c-btn.c-btn--cyan:focus {
    color: #0bc;
  }

  .c-btn.c-btn--purple:hover, .c-btn.c-btn--purple:focus {
    color: #a54a96;
  }

  .c-companyInfo__name {
    padding-left: 26px;
    padding-left: 1.625rem;
    font-size: 24px;
    font-size: 1.5rem;
  }

  .c-contentCard {
    padding: 50px 30px 0 0;
    padding: 3.125rem 1.875rem 0 0;
    min-height: 360px;
    min-height: 22.5rem;
  }

  .c-contentCard::after {
    width: 250px;
    width: 15.625rem;
  }

  .c-contentCard--left::after {
    right: 0;
    left: auto;
  }

  .c-contentCard__title {
    padding-bottom: 22px;
    padding-bottom: 1.375rem;
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 1.3333333333;
  }

  .c-contentCard__text {
    margin-top: 24px;
    margin-top: 1.5rem;
  }

  .c-heading {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 1.45;
  }

  .c-sectionTitle {
    padding-bottom: 32px;
    padding-bottom: 2rem;
  }

  .c-sectionTitle--series {
    padding-bottom: 32px;
    padding-bottom: 2rem;
  }

  .c-sectionTitle--facility {
    text-align: left;
  }

  .c-sectionTitle--facility .c-sectionTitle__ja,
  .c-sectionTitle--facility .c-sectionTitle__en {
    font-size: 30px;
    font-size: 1.875rem;
    text-align: left;
  }

  .c-sectionTitle--news {
    text-align: center;
  }

  .c-sectionTitle--news .c-sectionTitle__en {
    text-align: center;
  }

  .c-sectionTitle--business {
    margin-top: 8px;
    margin-top: .5rem;
    padding-bottom: 64px;
    padding-bottom: 4rem;
  }

  .c-sectionTitle--business .c-sectionTitle__ja {
    text-align: left;
  }

  .c-sectionTitle--business .c-sectionTitle__en {
    text-align: right;
  }

  .c-sectionTitle__en {
    font-size: 60px;
    font-size: 3.75rem;
  }

  .c-sectionTitle__ja {
    font-size: 40px;
    font-size: 2.5rem;
  }

  .c-textTitle {
    font-size: 40px;
    font-size: 2.5rem;
  }

  .c-textTitle--min {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .c-titleCard {
    aspect-ratio: auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-image: url(../img/top/reason-bg.jpg);
    padding: 44px 10px;
    padding: 2.75rem .625rem;
    text-align: center;
  }

  .c-titleCard--reasons {
    margin-left: -50px;
    width: calc(100% + 50px);
  }

  .c-titleCard__title,
  .c-titleCard__lead {
    padding-right: .5em;
    padding-left: .5em;
  }

  .c-titleCard__title {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 1.45;
  }

  .c-titleCard__lead {
    font-size: 60px;
    font-size: 3.75rem;
  }

  .c-titleCard.c-titleCard--medical {
    gap: 0;
    position: static;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    background-image: none;
    padding-bottom: 0;
  }

  .c-titleCard.c-titleCard--medical::before {
    right: 0;
    left: auto;
    width: 52.3854069224%;
  }

  .c-titleCard.c-titleCard--medical::after {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    background-image: url(../img/top/medical-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 52.3854069224%;
    height: 100%;
    content: '';
  }

  .c-titleCard__title.c-titleCard__title--medical {
    border-bottom: none;
    color: #0bc;
  }

  .c-titleCard__lead.c-titleCard__lead--medical {
    padding-left: 48px;
    padding-left: 3rem;
    color: rgba(60, 193, 205, .5);
  }

  .c-totop {
    right: 20px;
    right: 1.25rem;
    bottom: 30px;
    bottom: 1.875rem;
    width: 50px;
    width: 3.125rem;
  }

  .c-totop::before {
    width: 15px;
    width: .9375rem;
    height: 15px;
    height: .9375rem;
  }

  .c-totop.is-active:hover::before, .c-totop.is-active:focus::before {
    -webkit-transform: translate(-50%, -45%) rotate(-45deg);
    transform: translate(-50%, -45%) rotate(-45deg);
  }

  .p-404 {
    padding-bottom: 60px;
    padding-bottom: 3.75rem;
  }

  .p-404__foot {
    margin-top: 40px;
    margin-top: 2.5rem;
  }

  .p-archive__main {
    margin-top: 42px;
    margin-top: 2.625rem;
    padding-bottom: 140px;
    padding-bottom: 8.75rem;
  }

  .p-archive__filters {
    gap: 36px;
    gap: 2.25rem;
  }

  .p-archive__filters--pc {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .p-archive__filters--sp {
    display: none;
  }

  .p-archive__filter {
    gap: 51px;
    gap: 3.1875rem;
  }

  .p-archive__filterTag {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-archive__filterTag--pink:hover {
    background-color: #ff6584;
    color: #fff;
  }

  .p-archive__filterTag--cyan:hover {
    background-color: #0bc;
    color: #fff;
  }

  .p-archive__itemLink {
    padding: 30px 60px;
    padding: 1.875rem 3.75rem;
  }

  .p-archive__itemLink:hover {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
  }

  .p-archive__itemMeta {
    gap: 50px;
    gap: 3.125rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .p-archive__itemDate {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    min-width: 103px;
    min-width: 6.4375rem;
  }

  .p-archive__itemCategories {
    gap: 15px;
    gap: .9375rem;
  }

  .p-archive__itemCategory {
    padding: 5px 20px;
    padding: .3125rem 1.25rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-archive__itemTitle {
    margin-top: 16px;
    margin-top: 1rem;
  }

  .p-archive__footer {
    margin-top: 80px;
    margin-top: 5rem;
  }

  .p-archive__empty {
    margin-top: 85px;
    margin-top: 5.3125rem;
  }

  .p-article__main {
    padding-top: 60px;
    padding-top: 3.75rem;
    padding-bottom: 150px;
    padding-bottom: 9.375rem;
  }

  .p-article__container {
    gap: 60px;
    gap: 3.75rem;
    grid-template-columns: 1fr 18.75rem;
  }

  .p-article {
    grid-column: 1/2;
  }

  .p-article__meta {
    gap: 16px 20px;
    gap: 1rem 1.25rem;
  }

  .p-article__title {
    font-size: 40px;
    font-size: 2.5rem;
  }

  .p-article__body h2 {
    padding: 6px 51px;
    padding: .375rem 3.1875rem;
    font-size: 36px;
    font-size: 2.25rem;
  }

  .p-article__body h3 {
    font-size: 30px;
    font-size: 1.875rem;
  }

  .p-article__body h4 {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-article__body h5 {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-article__body table th,
  .p-article__body table td {
    padding: 20px 30px;
    padding: 1.25rem 1.875rem;
  }

  .p-article__body table th {
    width: 153px;
    width: 9.5625rem;
  }

  .p-article__body .gallery-columns-4 > .gallery-item {
    width: calc((100% - 40px) / 3);
  }

  .p-article__categories {
    gap: 10px;
    gap: .625rem;
  }

  .p-article__category {
    padding: 6px 16px;
    padding: .375rem 1rem;
    font-size: 14px;
    font-size: .875rem;
  }

  .p-article__thumbnail {
    margin-top: 40px;
    margin-top: 2.5rem;
    margin-bottom: 50px;
    margin-bottom: 3.125rem;
  }

  .p-article__footer {
    margin-top: 115px;
    margin-top: 7.1875rem;
  }

  .p-article__navigation {
    gap: 0;
    grid-template-columns: 1fr 1fr;
    margin: 0 auto;
    max-width: 680px;
    max-width: 42.5rem;
  }

  .p-article__navItem--prev {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-right: 40px;
    padding-right: 2.5rem;
  }

  .p-article__navItem--next {
    border-top: none;
    border-left: 1px solid;
    padding-top: 0;
    padding-left: 40px;
    padding-left: 2.5rem;
  }

  .p-article__navLink {
    gap: 8px;
    gap: .5rem;
    font-size: 14px;
    font-size: .875rem;
  }

  .p-article__navLink:hover {
    opacity: .7;
  }

  .p-article__navText {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-breadcrumb {
    margin-top: 34px;
    margin-top: 2.125rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-businessFacility + .p-businessFacility {
    padding-top: 70px;
    padding-top: 4.375rem;
  }

  .p-businessFacility__title {
    grid-column: 1/2;
    grid-row: 1;
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    align-self: start;
  }

  .p-businessFacility__grid {
    gap: 20px 60px;
    gap: 1.25rem 3.75rem;
    grid-template-columns: 5.8fr 4fr;
    grid-template-rows: auto 1fr;
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
    margin-right: -50px;
  }

  .p-businessFacility__image {
    grid-column: 2/3;
    grid-row: 1/3;
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    align-self: start;
  }

  .p-businessFacility__image img {
    aspect-ratio: 1;
  }

  .p-businessFacility__description {
    grid-column: 1/2;
    grid-row: 2;
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    align-self: start;
  }

  .p-businessLink {
    margin-top: 140px;
    margin-top: 8.75rem;
  }

  .p-businessLink__title {
    text-align: left;
  }

  .p-businessLink__content {
    margin-top: 30px;
    margin-top: 1.875rem;
    padding-top: 45px;
    padding-top: 2.8125rem;
    max-width: 100%;
  }

  .p-businessLink__content::before {
    left: 0;
    width: 360px;
    width: 22.5rem;
  }

  .p-businessLink__list {
    gap: .3lh;
  }

  .p-businessLink__item {
    font-size: 30px;
    font-size: 1.875rem;
  }

  .p-businessLink__btn {
    margin-top: 100px;
    margin-top: 6.25rem;
  }

  .p-businessServices {
    margin-top: 70px;
    margin-top: 4.375rem;
    padding: 70px 0 92px;
    padding: 4.375rem 0 5.75rem;
  }

  .p-businessServices__grid {
    gap: 70px 57px;
    gap: 4.375rem 3.5625rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .p-businessServices__card--purple {
    gap: 30px;
    gap: 1.875rem;
    grid-column: 1/-1;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .p-businessServices__image img {
    aspect-ratio: 480/240;
  }

  .p-businessServices__card--cyan .p-businessServices__image img {
    -o-object-position: top;
    object-position: top;
  }

  .p-businessServices__card--purple .p-businessServices__image {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    z-index: 1;
    margin-right: -80px;
    margin-right: -5rem;
    padding-bottom: 110px;
    padding-bottom: 6.875rem;
    width: 50%;
    min-width: 400px;
    min-width: 25rem;
  }

  .p-businessServices__card--purple .p-businessServices__image img {
    aspect-ratio: 480/240;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .p-businessServices__content {
    gap: 30px;
    gap: 1.875rem;
    margin-top: -46px;
    margin-top: -2.875rem;
    padding: 30px;
    padding: 1.875rem;
  }

  .p-businessServices__card--purple .p-businessServices__content {
    position: relative;
    z-index: 2;
    margin-top: 50px;
    margin-top: 3.125rem;
    margin-left: -62px;
    margin-left: -3.875rem;
    width: 100%;
  }

  .p-businessServices__title {
    font-size: 30px;
    font-size: 1.875rem;
    text-align: left;
  }

  .p-careServiceIntro {
    gap: 24px 109px;
    gap: 1.5rem 6.8125rem;
    grid-template-columns: 4.5fr 5.08fr;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .p-careServiceIntro__left {
    gap: 40px;
    gap: 2.5rem;
  }

  .p-careServiceIntro__image {
    margin: 0;
  }

  .p-careServiceIntro__image img {
    aspect-ratio: 1/1;
  }

  .p-careServiceIntro__text--padding {
    padding-top: 106px;
    padding-top: 6.625rem;
  }

  .p-careServiceIntro--reverse {
    gap: 40px 109px;
    gap: 2.5rem 6.8125rem;
    grid-template-columns: 5.08fr 4.5fr;
    grid-template-rows: auto 1fr;
  }

  .p-careServiceIntro--reverse .p-careServiceIntro__left {
    display: contents;
    grid-column: 1;
    grid-row: 1;
  }

  .p-careServiceIntro--reverse .p-careServiceIntro__heading {
    grid-column: 1;
    grid-row: 1;
  }

  .p-careServiceIntro--reverse .p-careServiceIntro__image {
    grid-column: 2;
    grid-row: 1/3;
  }

  .p-careServiceIntro--reverse .p-careServiceIntro__text {
    grid-column: 1;
    grid-row: 2;
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    align-self: start;
  }

  .p-colorCards {
    gap: 33px;
    gap: 2.0625rem;
    grid-template-columns: 5.97fr 3.87fr;
  }

  .p-colorCards__card {
    padding: 14px;
    padding: .875rem;
    padding-bottom: 40px;
    padding-bottom: 2.5rem;
  }

  .p-colorCards__title {
    font-size: 24px;
    font-size: 1.5rem;
    text-align: left;
  }

  .p-colorCards__list {
    margin-top: 16px;
    margin-top: 1rem;
  }

  .p-colorCards__item {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-drawer__navLink:hover {
    background-color: rgba(255, 255, 255, .1);
  }

  .p-drawer__submenuLink:hover {
    opacity: .7;
  }

  .p-drawer__instagram-icon:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: .7;
  }

  .p-facilities {
    padding-top: 140px;
    padding-top: 8.75rem;
  }

  .p-facilities__grid {
    gap: 126px 43px;
    gap: 7.875rem 2.6875rem;
    grid-template-columns: 3.95fr 6fr;
    margin-top: 100px;
    margin-top: 6.25rem;
  }

  .p-facilities__map {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }

  .p-facilities__map img {
    aspect-ratio: 600/450;
  }

  .p-facilities__details {
    gap: 49px;
    gap: 3.0625rem;
    margin-top: 43px;
    margin-top: 2.6875rem;
    padding-left: 26px;
    padding-left: 1.625rem;
  }

  .p-facilities__address {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-facilities__description {
    gap: 20px;
    gap: 1.25rem;
    margin-top: 50px;
    margin-top: 3.125rem;
    line-height: 2;
  }

  .p-facilities__visitingStation {
    margin-top: 100px;
    margin-top: 6.25rem;
  }

  .p-fixedButtons {
    gap: 15px;
    gap: .9375rem;
    display: grid;
    top: 50%;
    right: 0;
    bottom: auto;
    left: auto;
    grid-template-rows: repeat(2, 1fr);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: auto;
  }

  .p-fixedButtons__item {
    -webkit-box-pack: initial;
    -webkit-justify-content: initial;
    -ms-flex-pack: initial;
    justify-content: initial;
    border-radius: .625rem 0 0 .625rem;
    padding: 20px 10px;
    padding: 1.25rem .625rem;
    width: 60px;
    width: 3.75rem;
    height: 100%;
    overflow: visible;
    font-size: 20px;
    font-size: 1.25rem;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }

  .p-fixedButtons__item::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    border-radius: .625rem 0 0 .625rem;
    background-color: inherit;
    width: 100%;
    content: '';
  }

  .p-fixedButtons__item:hover::before {
    -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
    width: calc(100% + 1.25rem);
  }

  .p-fixedButtons__inner {
    gap: 8px;
    gap: .5rem;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
  }

  .p-fixedButtons__item:hover .p-fixedButtons__inner {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  .p-fixedButtons__text {
    letter-spacing: .05em;
    text-align: center;
  }

  .p-fixedButtons__item--inquiry .p-fixedButtons__text {
    letter-spacing: .4em;
  }

  .p-footer {
    background-image: url('../img/common/footer_bg.jpg');
    padding: 60px 0 32px;
    padding: 3.75rem 0 2rem;
  }

  .p-footer__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .p-footer__leftColumn {
    gap: 28px;
    gap: 1.75rem;
  }

  .p-footer__header {
    -webkit-box-pack: start;
    -webkit-justify-content: start;
    -ms-flex-pack: start;
    justify-content: start;
  }

  .p-footer__catchphrase {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .p-footer__logo {
    width: 100%;
  }

  .p-footer__info {
    gap: 24px;
    gap: 1.5rem;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .p-footer__address {
    font-size: 16px;
    font-size: 1rem;
  }

  .p-footer__tel {
    margin-left: 0;
  }

  .p-footer__businessHours {
    font-size: 16px;
    font-size: 1rem;
    text-align: left;
  }

  .p-footer__nav {
    gap: 0 36px;
    gap: 0 2.25rem;
    margin-top: 26px;
    margin-top: 1.625rem;
  }

  .p-footer__banners {
    gap: 20px;
    gap: 1.25rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .p-footer__banner:hover {
    -webkit-transform: translateY(.125rem);
    transform: translateY(.125rem);
    -webkit-box-shadow: 0 1px 12px rgba(0, 0, 0, .16);
    box-shadow: 0 1px 12px rgba(0, 0, 0, .16);
  }

  .p-footer__copy {
    margin-top: 72px;
    margin-top: 4.5rem;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .p-fv {
    aspect-ratio: 1528/860;
  }

  .p-header {
    height: 112px;
  }

  .p-header__inner {
    padding-right: 50px;
    padding-left: 0;
  }

  .p-header__logo {
    width: 420px;
    width: 26.25rem;
  }

  .p-header__nav {
    display: block;
    margin-left: auto;
  }

  .p-header__navList {
    gap: 6px;
    gap: .375rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-header__navItem {
    position: relative;
  }

  .p-header__navItem.has-submenu:hover .p-header__submenu {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }

  .p-header__navItem.has-submenu:hover .p-header__navLinkText::after {
    width: 100%;
  }

  .p-header__navLink {
    display: grid;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 112px;
    color: #646464;
    font-weight: 500;
  }

  .p-header__navLink:hover .p-header__navLinkText::after {
    width: 100%;
  }

  .p-header__submenu {
    position: absolute;
    top: calc(100% - .625rem);
    left: 0;
    -webkit-transform: translateY(-.25rem);
    transform: translateY(-.25rem);
    visibility: hidden;
    opacity: 0;
    z-index: 30;
    -webkit-transition: opacity .3s ease, visibility .3s ease, -webkit-transform .3s ease;
    transition: opacity .3s ease, visibility .3s ease, -webkit-transform .3s ease;
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease, -webkit-transform .3s ease;
    background: #a54a96;
    width: 100%;
  }

  .p-header__submenuLink {
    display: block;
    -webkit-transition: background-color .3s ease;
    transition: background-color .3s ease;
    padding: .5em;
    color: #fff;
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: 500;
    text-align: center;
  }

  .p-header__submenuLink:hover {
    background-color: rgba(255, 255, 255, .1);
  }

  .p-header__drawer {
    display: none;
  }

  .p-header__instagram-icon:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  .p-infoCards {
    margin-top: 70px;
    margin-top: 4.375rem;
    padding: 70px 0 52px;
    padding: 4.375rem 0 3.25rem;
  }

  .p-infoCards__grid {
    gap: 57px;
    gap: 3.5625rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .p-infoCards__image img {
    aspect-ratio: 480/240;
  }

  .p-infoCards__content {
    padding: 30px 20px;
    padding: 1.875rem 1.25rem;
  }

  .p-infoCards__btn {
    margin-top: 24px;
    margin-top: 1.5rem;
  }

  .p-lowerFv {
    gap: 0;
  }

  .p-lowerFv__breadcrumb {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }

  .p-lowerFv__content {
    position: static;
  }

  .p-lowerFv__inner {
    position: relative;
    padding-top: 163px;
    padding-top: 10.1875rem;
    padding-bottom: 312px;
    padding-bottom: 19.5rem;
  }

  .p-lowerFv__inner::after {
    aspect-ratio: 1;
    width: auto;
    max-width: 100%;
    height: 96.9696969697%;
  }

  body[data-page=care] .p-lowerFv__inner::after {
    background-image: url('../img/care/fv.jpg');
  }

  body[data-page=business] .p-lowerFv__inner::after {
    background-image: url('../img/business/fv.jpg');
  }

  body[data-page=company] .p-lowerFv__inner::after {
    background-image: url('../img/company/fv.jpg');
  }

  body[data-page=nursing] .p-lowerFv__inner::after {
    background-image: url('../img/nursing/fv.jpg');
  }

  .p-lowerFv__title {
    font-size: 64px;
    font-size: 4rem;
  }

  .p-lowerFv__title::after {
    bottom: 135px;
    bottom: 8.4375rem;
    left: calc(8.4375rem + 50px);
    width: 90px;
    width: 5.625rem;
  }

  .p-lowerFv__title::before {
    left: 50px;
    width: 180px;
    width: 11.25rem;
  }

  .p-lowerFv__subTitle {
    margin-top: 36px;
    margin-top: 2.25rem;
  }

  .p-lowerFvSub {
    gap: 0;
  }

  .p-lowerFvSub__breadcrumb {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }

  .p-lowerFvSub__content {
    background-image: url(../img/common/lowerFvSub-pc.jpg);
    padding: 65px 0 87px;
    padding: 4.0625rem 0 5.4375rem;
  }

  .p-lowerFvSub__inner::before {
    right: 40px;
    right: 2.5rem;
    width: 140px;
    width: 8.75rem;
  }

  .p-lowerFvSub__inner::after {
    bottom: 93px;
    bottom: 5.8125rem;
    width: 70px;
    width: 4.375rem;
  }

  .p-lowerFvSub__title {
    font-size: 64px;
    font-size: 4rem;
  }

  .p-lowerFvSub__subTitle {
    margin-top: 32px;
    margin-top: 2rem;
    font-size: 40px;
    font-size: 2.5rem;
  }

  .p-medicalReception {
    margin-top: 120px;
    margin-top: 7.5rem;
  }

  .p-medicalReception__leadArea {
    position: relative;
    margin: 0 -50px 0 auto;
    padding-bottom: 92px;
    padding-bottom: 5.75rem;
  }

  .p-medicalReception__lead {
    position: absolute;
    bottom: 0;
    left: 0;
    margin-top: 0;
    padding-left: 0;
  }

  .p-medicalReception__content {
    margin-top: 64px;
    margin-top: 4rem;
  }

  .p-medicalReception__footer {
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .p-news {
    margin-top: 115px;
    margin-top: 7.1875rem;
    padding-bottom: 132px;
    padding-bottom: 8.25rem;
  }

  .p-news__title {
    gap: 20px;
    gap: 1.25rem;
  }

  .p-news__titleJa {
    font-size: 40px;
    font-size: 2.5rem;
  }

  .p-news__titleEn {
    font-size: 50px;
    font-size: 3.125rem;
  }

  .p-news__content {
    margin-top: 13px;
    margin-top: .8125rem;
  }

  .p-news__link {
    gap: 16px;
    gap: 1rem;
    padding: 20px 0;
    padding: 1.25rem 0;
  }

  .p-news__link:hover {
    padding-left: 12px;
    padding-left: .75rem;
  }

  .p-news__meta {
    gap: 16px;
    gap: 1rem;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .p-news__date {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-news__category {
    padding: 6px 16px;
    padding: .375rem 1rem;
    font-size: 14px;
    font-size: .875rem;
  }

  .p-news__noPost {
    padding: 60px 20px;
    padding: 3.75rem 1.25rem;
  }

  .p-news__btn {
    margin-top: 42px;
    margin-top: 2.625rem;
  }

  .p-news__btn a {
    min-width: 240px;
    min-width: 15rem;
  }

  .p-overview {
    padding-top: 138px;
    padding-top: 8.625rem;
  }

  .p-overview__title {
    text-align: left;
  }

  .p-overview__content {
    margin-top: 55px;
    margin-top: 3.4375rem;
  }

  .p-overview__list {
    gap: 0;
  }

  .p-overview__item {
    gap: 12px;
    gap: .75rem;
    grid-template-columns: 1.64fr 7.2fr;
    min-height: 82px;
    min-height: 5.125rem;
  }

  .p-overview__label {
    display: grid;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-overview__value {
    display: grid;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 3px solid;
    padding-left: 26px;
    padding-left: 1.625rem;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-pagination__inner {
    gap: 40px;
    gap: 2.5rem;
    grid-template-columns: 1fr auto 1fr;
    margin: 0 auto;
    max-width: 680px;
    max-width: 42.5rem;
  }

  .p-pagination__numbers {
    grid-area: 1/2/2/3;
  }

  .page-numbers {
    padding: 0 22px;
    padding: 0 1.375rem;
    min-width: 40px;
    min-width: 2.5rem;
    height: 40px;
    height: 2.5rem;
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-pagination__navs {
    gap: 30px;
    gap: 1.875rem;
  }

  .p-pagination__nav {
    gap: 8px;
    gap: .5rem;
    font-size: 14px;
    font-size: .875rem;
  }

  .p-pagination__nav:hover {
    opacity: .7;
  }

  .p-pagination__navText {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-philosophy {
    padding-top: 45px;
    padding-top: 2.8125rem;
  }

  .p-philosophy__inner {
    padding-left: 0;
  }

  .p-philosophy__title {
    text-align: left;
  }

  .p-philosophy__content {
    margin-top: 60px;
    margin-top: 3.75rem;
  }

  .p-philosophy__grid {
    gap: 68px;
    gap: 4.25rem;
    grid-template-columns: 4fr 6fr;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .p-philosophy__left {
    gap: 48px;
    gap: 3rem;
  }

  .p-philosophy__lead {
    padding-left: 50px;
    padding-left: 3.125rem;
    font-size: min(30px, 2.6vw);
    font-size: min(1.875rem, 2.6vw);
    line-height: 2.3333333333;
    text-align: left;
  }

  .p-philosophy__image {
    margin: 0;
  }

  .p-philosophy__image img {
    aspect-ratio: 1;
  }

  .p-reasons {
    margin-top: 138px;
    margin-top: 8.625rem;
  }

  .p-reasons__grid {
    gap: 44px;
    gap: 2.75rem;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto;
    margin-top: 0;
  }

  .p-series {
    margin-top: 70px;
    margin-top: 4.375rem;
  }

  .p-series__text {
    margin-top: 7px;
    margin-top: .4375rem;
    line-height: 1.45;
  }

  .p-series__sliderArea {
    position: relative;
  }

  .p-series__slider {
    position: static;
    margin-top: 54px;
    margin-top: 3.375rem;
  }

  .p-series__btn {
    margin-top: 55px;
    margin-top: 3.4375rem;
  }

  .p-seriesSlider__card {
    width: 318px;
    width: 19.875rem;
  }

  .p-seriesSlider__cardImage img {
    aspect-ratio: 318/218;
  }

  .p-seriesSlider__cardName {
    text-align: left;
  }

  .p-seriesSlider__button--prev {
    left: 0;
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
    transform: translate(-50%, -50%) rotate(180deg);
  }

  .p-seriesSlider__button--next {
    right: 0;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }

  .p-serviceContent {
    padding-bottom: 140px;
    padding-bottom: 8.75rem;
  }

  .p-serviceContent__intro .l-container {
    padding-right: 0;
  }

  .p-serviceContent__detail .l-container {
    padding-right: 0;
    padding-left: 0;
  }

  .p-serviceContent__detailContent {
    gap: 30px 89px;
    gap: 1.875rem 5.5625rem;
    grid-template-columns: 4.8fr 5.7fr;
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
    margin-top: 70px;
    margin-top: 4.375rem;
  }

  .p-serviceContent__detailImage {
    grid-column: 1/2;
    grid-row: 1/4;
  }

  .p-serviceContent__detailTitle {
    grid-column: 2/3;
    grid-row: 1;
  }

  .p-serviceContent__description {
    grid-column: 2/3;
    grid-row: 2;
  }

  .p-serviceContent__boxes {
    gap: 20px;
    gap: 1.25rem;
    grid-column: 2/3;
    grid-row: 3;
  }

  .p-serviceContent__box {
    padding: 45px 20px;
    padding: 2.8125rem 1.25rem;
  }

  .p-serviceContent__boxList {
    margin-top: 24px;
    margin-top: 1.5rem;
  }

  .p-serviceContent__boxList--nursing {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-serviceContent__boxText {
    margin-top: 16px;
    margin-top: 1rem;
  }

  .p-serviceContent__activity {
    margin-top: 147px;
    margin-top: 9.1875rem;
  }

  .p-serviceContent__activity .l-container {
    padding-right: 0;
  }

  .p-serviceContent__activityContent {
    gap: 30px 89px;
    gap: 1.875rem 5.5625rem;
    grid-template-columns: 5.47fr 4fr;
    grid-template-rows: auto 1fr;
  }

  .p-serviceContent__activityTitle {
    grid-area: 1/1/2/2;
  }

  .p-serviceContent__activityImage {
    grid-area: 1/2/3/3;
  }

  .p-serviceContent__activityText {
    grid-area: 2/1/3/2;
  }

  .p-serviceContent__gallery {
    position: relative;
    margin-top: 70px;
    margin-top: 4.375rem;
  }

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

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

  .p-serviceContent__nursingServices {
    margin-top: 68px;
    margin-top: 4.25rem;
  }

  .p-serviceContent__nursingServicesInner {
    gap: 70px 50px;
    gap: 4.375rem 3.125rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .p-serviceContent__nursingService {
    gap: 32px 26px;
    gap: 2rem 1.625rem;
    grid-template-columns: 2.83fr 2fr;
    grid-template-rows: auto 1fr;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-serviceContent__nursingServiceIcon {
    grid-column: 2/3;
    grid-row: 1/3;
  }

  .p-serviceContent__nursingServiceTitle {
    grid-column: 1/2;
    grid-row: 1/2;
    font-size: 30px;
    font-size: 1.875rem;
  }

  .p-serviceContent__nursingServiceText {
    grid-column: 1/2;
    grid-row: 2/3;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-serviceContent__staff {
    margin-top: 157px;
    margin-top: 9.8125rem;
  }

  .p-serviceContent__staffContent {
    gap: 30px 89px;
    gap: 1.875rem 5.5625rem;
    grid-template-columns: 4.8fr 5.7fr;
    grid-template-rows: auto 1fr;
    margin-left: -50px;
  }

  .p-serviceContent__staffImage {
    grid-area: 1/1/3/2;
    margin: 0;
  }

  .p-serviceContent__staffImage img {
    aspect-ratio: 480/360;
  }

  .p-serviceContent__staffText {
    grid-area: 2/2/3/3;
    line-height: 2;
  }

  .p-serviceContent__qualifications {
    padding-top: 40;
  }

  .p-serviceContent__qualificationsTitle {
    font-size: 30px;
    font-size: 1.875rem;
    text-align: left;
  }

  .p-serviceContent__qualifications {
    margin-top: 70px;
    margin-top: 4.375rem;
  }

  .p-serviceContent__qualificationsList {
    display: block;
    grid-template-columns: repeat(2, 1fr);
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
    margin-top: 30px;
    margin-top: 1.875rem;
    padding-left: calc(1em + 1.25rem);
    font-size: 30px;
    font-size: 1.875rem;
  }

  .p-sidebar {
    grid-column: 2/3;
  }

  .p-sidebar__link:hover {
    opacity: .7;
  }

  .p-visitingStation {
    padding: 70px 0;
    padding: 4.375rem 0;
  }

  .p-visitingStation--business {
    padding-top: 0;
    padding-bottom: 0;
  }

  .p-visitingStation__titleText {
    font-size: 40px;
    font-size: 2.5rem;
  }

  .p-visitingStation__list {
    gap: 70px;
    gap: 4.375rem;
    margin-top: 70px;
    margin-top: 4.375rem;
  }

  .p-visitingStation__item {
    gap: 40px;
    gap: 2.5rem;
    grid-template-columns: 6.07fr 4.2fr;
    grid-template-rows: auto 1fr;
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
    margin-right: -50px;
  }

  .p-visitingStation__item--business {
    grid-auto-rows: -webkit-min-content;
    grid-auto-rows: min-content;
    grid-template-columns: 5.08fr 5.6fr;
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
  }

  .p-visitingStation__item--business .p-visitingStation__info {
    grid-column: 1/2;
    grid-row: 1/2;
  }

  .p-visitingStation__item--business .p-visitingStation__thumbnail {
    grid-column: 2/3;
    grid-row: 1/3;
  }

  .p-visitingStation__info {
    gap: 24px;
    gap: 1.5rem;
  }

  .p-visitingStation__headWrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .p-visitingStation__name {
    padding-left: 26px;
    padding-left: 1.625rem;
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-visitingStation__business {
    padding-bottom: 5px;
    padding-bottom: .3125rem;
    padding-left: 0;
  }

  .p-visitingStation__details {
    gap: 16px;
    gap: 1rem;
    grid-template-columns: 17.8125rem 1fr;
    padding-left: 26px;
    padding-left: 1.625rem;
    font-size: 16px;
    font-size: 1rem;
  }

  .p-visitingStation__details--business {
    gap: 0;
    grid-template-columns: auto;
  }

  .p-visitingStation__map {
    aspect-ratio: 4/3;
  }

  .p-visitingStation__thumbnail {
    margin-top: 0;
  }

  .p-visitingStation__thumbnail img {
    aspect-ratio: 560/420;
  }

  .p-visitingStation__slider {
    position: relative;
  }

  .p-visitingStationSlider {
    position: static;
  }

  .p-visitingStationSlider__slide--service {
    width: 320px;
    width: 20rem;
  }

  .p-visitingStationSlider__slide--company {
    width: 200px;
    width: 12.5rem;
  }

  .p-visitingStationSlider__button--prev {
    left: -50px;
    left: -3.125rem;
    -webkit-transform: translate(0, -50%) rotate(180deg);
    transform: translate(0, -50%) rotate(180deg);
  }

  .p-visitingStationSlider__button--next {
    right: -50px;
    right: -3.125rem;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {

  .u-onlyTab {
    display: block;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {

  .u-hidden--tab {
    display: none !important;
  }
}

@media (min-width: 1017px) {

  html {
    font-size: 100%;
  }
}

@media screen and (min-width: 1024px) {

  .post-page-numbers + .post-page-numbers {
    margin-left: 20px;
  }

  .p-businessFacility__grid {
    gap: 20px 89px;
    gap: 1.25rem 5.5625rem;
    grid-template-columns: 5.12fr 4fr;
  }

  .p-footer__inner {
    margin: auto;
  }

  .p-footer__content {
    gap: 30px;
    gap: 1.875rem;
    grid-template-columns: 1.2fr 1.4fr .8fr;
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
  }

  .p-footer__banners {
    grid-template-columns: auto;
  }

  .p-reasons__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .u-onlyPc {
    display: block;
  }

  .u-hidden--pc {
    display: none !important;
  }
}

@media screen and (min-width: 1440px) {

  .p-footer__content {
    gap: 40px;
    gap: 2.5rem;
    grid-template-columns: 1fr 1.4fr .8fr;
  }

  .p-footer__navLink {
    font-size: 24px;
    font-size: 1.5rem;
  }

  .p-footer__navSubLink {
    font-size: 20px;
    font-size: 1.25rem;
  }

  .p-header__navList {
    gap: 48px;
    gap: 3rem;
  }

  .p-infoCards__content {
    width: 75%;
  }
}

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

  .btn-bottom .btn {
    border-radius: 26px;
    padding: 20px 15px 21px;
    max-width: 300px;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .u-onlySp {
    display: block;
  }

  .u-hidden--sp {
    display: none !important;
  }
}

@media (max-width: 375px) {

  html {
    font-size: 4.2666666667vw;
    font-size: calc(var(--vw) / 375px * 100%);
  }
}
/*# sourceMappingURL=map/style.css.map */