/* ==========================================================================
   CSS変数（カラー・余白）
   ========================================================================== */
:root {
  /* カラー */
  --color-main: #00a0e9;
  --color-main-dark: #0289c7;
  --color-accent: #d3cb15;
  --color-orange: #f4a52f;
  --color-pink: #f691a2;
  --color-green: #02c747;
  --color-purple: #a477e1;
  --color-white: #ffffff;
  --color-bg-gray: #f3f3f3;
  --color-bg-yellow: #faf9da;
  --color-bg-light: #eeeeee;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-border: #999999;
  /* 余白 8px グリッド */
  --space-unit: 8px;
  --space-1: calc(var(--space-unit) * 1);
  /*  8px */
  --space-2: calc(var(--space-unit) * 2);
  /* 16px */
  --space-3: calc(var(--space-unit) * 3);
  /* 24px */
  --space-4: calc(var(--space-unit) * 4);
  /* 32px */
  --space-6: calc(var(--space-unit) * 6);
  /* 48px */
  --space-8: calc(var(--space-unit) * 8);
  /* 64px */
  /* フォント */
  --font-base: "system-ui", "-apple-system", "Avenir Next", Verdana,
    "Hiragino Kaku Gothic ProN", sans-serif;
  --font-noto: "Noto Sans JP", sans-serif;
  --font-quick: "Quicksand", sans-serif;
  /* レイアウト */
  --container-max: 1000px;
  --border-radius: 5px;
}
/* ==========================================================================
   Reset（reset.cssの内容を統合済み）
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 100%;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote::before,
blockquote::after,
q::before,
q::after {
  content: '';
  content: none;
}
a {
  vertical-align: baseline;
}
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: 700;
}
del {
  text-decoration: line-through;
}
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
hr {
  display: block;
  height: 1px;
  border-top: 1px solid #ccc;
  margin: 1em 0;
}
input,
select {
  vertical-align: middle;
}
/* ==========================================================================
   ユーティリティ　上書きはファイル末尾
   ========================================================================== */
.u-sp-only,
.u-pc-only {
  display: none;
}
/* ==========================================================================
   ベース
   ========================================================================== */
/* 62.5% ハック廃止 → font-size: 16px ベース、rem は px 等価に換算済み */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-base);
  line-height: 1.8;
  text-align: center;
  letter-spacing: 1px;
  color: var(--color-text);
  font-size: clamp(16px, 2vw, 18px);
}
@media (max-width: 768px) {
  body {
    letter-spacing: 0;
  }
}
a {
  color: var(--color-text);
  opacity: 1;
  transition: ease 0.3s;
}
a:hover {
  opacity: 0.8;
  text-decoration: none;
}
img {
  display: block;
}
.u-font-noto {
  font-family: var(--font-noto);
  font-weight: 500;
}
.u-font-quick {
  font-family: var(--font-quick);
  font-weight: 700;
}
/* 旧クラス名との後方互換エイリアス */
.noto-sans {
  font-family: var(--font-noto);
  font-weight: 500;
}
.quick {
  font-family: var(--font-quick);
  font-weight: 700;
}
/* ==========================================================================
   MV（旧 #mv）
   ========================================================================== */
.p-mv {
  width: 100%;
  margin: 0;
  background-image:
    linear-gradient(rgba(0, 160, 233, .9), rgba(0, 160, 233, .5)),
    url(../../img/bg_main_tit.png);
  background-repeat: no-repeat, repeat;
  background-position: left bottom, left top;
  background-size: auto 58%, auto;
  position: relative;
}
@media (max-width: 768px) {
  .p-mv {
    background: url(../../img/bg_main_tit.png) left top repeat;
  }
}
.p-mv__photo {
  width: 50%;
  max-width: 800px;
  padding-top: 480px;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 50%;
  height: 110px;
}
@media (max-width: 1000px) {
  .p-mv__photo {
    padding-top: 40%;
  }
}
@media (max-width: 768px) {
  .p-mv__photo {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: none;
    padding-top: 0;
    height: 180px;
    overflow: hidden;
  }
}
.p-mv__photo img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* IE ハック削除 */
  top: 0;
  right: 0;
}
.p-mv__inner {
  width: 94%;
  /* max-width: 1000px; */
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  text-align: left;
}
@media (max-width: 768px) {
  .p-mv__photo img {
    object-position: 0 0;
  }
  .p-mv__inner {
    width: 100%;
    padding-left: 0;
  }
}
.p-mv__heading {
  width: 65%;
  max-width: 650px;
  margin-left: -5%;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  /* 下揃えにすると、はみ出し制御がしやすくなります */
  gap: 15px;
  /* 吹き出しとテキストの間隔 */
}
@media (max-width: 1000px) {
  .p-mv__heading {
    margin-left: -2%;
    width: 75%;
    margin-bottom: 2%;
  }
}
@media (max-width: 768px) {
  .p-mv__heading {
    width: 100%;
    margin-left: 0;
    margin-bottom: 4%;
  }
}
.p-mv__heading img {
  width: 100%;
  height: auto;
}
.p-mv__lead {
  width: 50%;
  text-align: left;
  color: var(--color-white);
  line-height: 1.6;
  padding: 3% 2% 4% 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, .3);
}
@media (max-width: 768px) {
  .p-mv__lead {
    width: 100%;
    padding: 3% 4% 5%;
    background-image: linear-gradient(rgba(0, 160, 233, .9), rgba(0, 160, 233, .5));
    background-repeat: no-repeat;
    background-position: left top;
    background-size: auto;
  }
}
/* ==========================================================================
   Article 共通（旧 article セレクタ → .p-section）
   ========================================================================== */
.p-section {
  width: 100%;
  padding: var(--space-8) 0;
  /* 旧 60px */
}
@media (max-width: 480px) {
  .p-section {
    padding: 5% 0;
  }
}
.p-section__sp-icon {
  display: none;
}
@media (max-width: 480px) {
  .p-section__sp-icon {
    display: block;
  }
  .p-section__sp-icon img {
    width: 50%;
    height: auto;
    display: block;
    margin: 2% auto;
  }
}
.p-section__inner {
  width: 94%;
  max-width: var(--container-max);
  padding: 0;
  margin: 0 auto;
}
.p-section__inner p {
  text-align: left;
}
/* セクション見出し h2 */
.p-section__heading {
  position: relative;
  font-family: var(--font-noto);
  font-size: 1.875rem;
  /* 旧 3rem */
  color: #000;
  text-align: left;
  line-height: 1.4;
  margin-bottom: var(--space-4);
  /* 旧 40px */
  padding-top: 0.5em;
  font-weight: 400;
}
.p-section__heading::before {
  position: absolute;
  content: "";
  width: 10%;
  height: 5px;
  max-width: 50px;
  background: var(--color-main);
  top: 0;
  left: 0;
}
.p-section__heading span {
  font-size: 2.8125rem;
  /* 旧 4.5rem */
  color: var(--color-main);
}
@media (max-width: 768px) {
  .p-section__heading {
    font-size: 1.4rem;
    padding-top: 1em;
  }
  .p-section__heading span {
    font-size: 1.4rem;
  }
}
@media (max-width: 480px) {
  .p-section__heading {
    font-size: 1.3rem;
    margin-bottom: 5%;
  }
  .p-section__heading::before {
    width: 10%;
    height: 3px;
  }
  .p-section__heading span {
    font-size: 1.3rem;
  }
}
/* ==========================================================================
   Art02 スタッフ種別（旧 #art02）
   ========================================================================== */
.p-staff-types {
  background: var(--color-bg-gray);
}
.p-staff-types__list {
  margin-top: 3%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-content: flex-start;
  flex-wrap: wrap;
}
.p-staff-types__item {
  width: 31%;
  align-self: stretch;
  background: var(--color-white);
  border-radius: var(--border-radius);
  padding: var(--space-4) var(--space-3);
  /* 旧 20px */
  margin: 1%;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1000px) {
  .p-staff-types__item {
    width: 48%;
    padding: var(--space-2);
  }
}
@media (max-width: 480px) {
  .p-staff-types__item {
    width: 100%;
    margin: 1.5% 0;
  }
}
/* 番号アイコン（::before） */
.p-staff-types__item::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 100px;
  background: url(../../top/img/icon01_txt.png) no-repeat var(--color-main-dark);
  background-position: 70% 60%;
  top: -20px;
  left: -20px;
}
.p-staff-types__item:nth-child(2)::before {
  background: url(../../top/img/icon02_txt.png) no-repeat #f39501;
  background-position: 70% 60%;
}
.p-staff-types__item:nth-child(3)::before {
  background: url(../../top/img/icon03_txt.png) no-repeat var(--color-green);
  background-position: 70% 60%;
}
.p-staff-types__item:nth-child(4)::before {
  background: url(../../top/img/icon04_txt.png) no-repeat var(--color-pink);
  background-position: 70% 60%;
}
.p-staff-types__item:nth-child(5)::before {
  background: url(../../top/img/icon05_txt.png) no-repeat var(--color-purple);
  background-position: 70% 60%;
}
.p-staff-types__item-heading {
  display: flex;
  justify-content: space-between;
  align-content: center;
  font-size: 1.5rem;
  /* 旧 2.4rem */
  margin-bottom: 3%;
  line-height: 1.4;
}
.p-staff-types__item-heading span {
  align-self: center;
}
@media (max-width: 480px) {
  .p-staff-types__item-heading span {
    flex: 1;
  }
}
.p-staff-types__item-heading i {
  width: 50%;
  align-self: center;
}
@media (max-width: 480px) {
  .p-staff-types__item-heading i {
    width: 20%;
    min-width: 100px;
  }
}
.p-staff-types__item-heading i img {
  width: 100%;
  height: auto;
}
/* ==========================================================================
   Art03 リハビリ種別（旧 #art03）
   ========================================================================== */
.p-rehab-types__list {
  margin-top: 3%;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-content: flex-start;
  flex-wrap: wrap;
}
.p-rehab-types__item {
  width: 32%;
  align-self: stretch;
  background: var(--color-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .p-rehab-types__item {
    width: 48%;
    margin-bottom: 3%;
  }
}
@media (max-width: 480px) {
  .p-rehab-types__item {
    width: 100%;
    margin-bottom: 5%;
  }
}
.p-rehab-types__item-heading {
  background: url(../../img/bg01.png) repeat;
  padding: 10px 0;
  text-align: center;
  color: var(--color-white);
  font-size: 1.25rem;
  /* 旧 2rem */
}
.p-rehab-types__photo {
  width: 100%;
  padding-top: 66%;
  position: relative;
  overflow: hidden;
  margin-bottom: 3%;
}
.p-rehab-types__photo img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  /* IE ハック削除 */
}
.p-rehab-types__point {
  width: 100%;
  margin: 5% auto 0;
  border: 4px solid var(--color-main);
  border-radius: var(--border-radius);
  display: table;
  vertical-align: middle;
  padding: 2%;
}
.p-rehab-types__point-icon {
  width: 13%;
  min-width: 80px;
  color: var(--color-main);
  display: table-cell;
  text-align: center;
  font-style: normal;
}
.p-rehab-types__point-icon .fa-hand-point-right {
  font-size: 3.75rem;
  /* 旧 6rem */
  display: block;
  margin: 0 auto;
}
.p-rehab-types__point p {
  width: inherit;
  display: table-cell;
  vertical-align: middle;
}
.p-rehab-types__point span {
  color: var(--color-pink);
}
/* ==========================================================================
   Art04 リハビリ内容（旧 #art04）
   ========================================================================== */
.p-rehab-content {
  background: url(../../img/bg02.png) repeat;
}
.p-rehab-content__list {
  margin-top: 3%;
  width: 100%;
}
.p-rehab-content__item {
  width: 100%;
  background: var(--color-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  padding: 0;
  margin-bottom: 3%;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, .3);
}
.p-rehab-content__main {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-content: center;
  flex-wrap: nowrap;
}
@media (max-width: 768px) {
  .p-rehab-content__main {
    flex-wrap: wrap;
  }
}
.p-rehab-content__index {
  width: 50%;
  padding: 3%;
  text-align: center;
}
@media (max-width: 768px) {
  .p-rehab-content__index {
    width: 100%;
  }
  .p-rehab-content__main h3 br {
    display: none;
  }
  .p-rehab-content__main h3 {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
@media (max-width: 480px) {
  .p-rehab-content__main h3 br {
    display: block;
  }
}
.p-rehab-content__main h3 span {
  font-size: 2.5rem;
  /* 旧 4rem */
  color: var(--color-main);
}
.p-rehab-content__main h3 {
  font-size: 1.4rem;
}
@media (max-width: 480px) {
  .p-rehab-content__main h3 {
    font-size: 1.5rem;
  }
  .p-rehab-content__main h3 span {
    font-size: 2.125rem;
  }
}
.p-rehab-content__main dl {
  width: 100%;
  background: var(--color-bg-yellow);
}
.p-rehab-content__main dt {
  width: 100%;
  background: var(--color-accent);
  color: var(--color-white);
}
.p-rehab-content__main dd {
  padding: 15px;
  text-align: left;
}
.p-rehab-content__photo {
  width: 50%;
  align-self: stretch;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .p-rehab-content__photo {
    width: 100%;
    padding-top: 40%;
  }
}
.p-rehab-content__photo img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  /* IE ハック削除 */
}
.p-rehab-content__example {
  width: 100%;
}
.p-rehab-content__example h4 {
  width: 100%;
  background: var(--color-main);
  color: var(--color-white);
  padding: 10px 0;
}
.p-rehab-content__example p {
  padding: 2% 3% 3%;
  text-align: left;
}
/* ==========================================================================
   Institution 施設一覧（旧 #institution）
   ========================================================================== */
.p-institution {
  padding-top: 0;
}
.p-institution__heading {
  width: 100%;
  background: linear-gradient(rgba(0, 160, 233, .9), rgba(0, 160, 233, .5));
  color: var(--color-white);
  font-size: 2.5rem;
  /* 旧 4rem */
  margin-bottom: 3%;
  padding: 3% 0;
  text-align: center;
}
.p-institution__heading::before {
  display: none;
}
@media (max-width: 480px) {
  .p-institution__heading {
    font-size: 1.875rem;
    padding: 3%;
  }
}
.p-institution__area-heading {
  font-size: 1.875rem;
  /* 旧 3rem */
  margin-bottom: 20px;
}
.p-institution__box {
  width: 94%;
  max-width: var(--container-max);
  margin: 0 auto 3%;
  background: var(--color-bg-light);
  padding: 2%;
  border-radius: var(--border-radius);
}
.p-institution__name {
  width: 100%;
  padding: 0;
}
.p-institution__name h4 {
  font-size: 1.875rem;
  /* 旧 3rem */
  text-align: center;
}
.p-institution__name h4 span {
  display: block;
  color: var(--color-text-light);
}
.p-institution__icon-list {
  margin: 1% auto;
  text-align: center;
  display: flex;
  justify-content: center;
}
.p-institution__icon-list li {
  margin: 3px;
  width: 10%;
  max-width: 40px;
}
.p-institution__icon-list li img {
  width: 100%;
  height: auto;
}
.p-institution__about {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.p-institution__about-photo {
  width: 49%;
  align-self: stretch;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .p-institution__about-photo {
    width: 100%;
    padding-top: 40%;
    margin-bottom: 3%;
  }
}
.p-institution__about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* IE ハック削除 */
  position: absolute;
  top: 0;
  left: 0;
}
.p-institution__data {
  width: 49%;
  background: var(--color-white);
  border-radius: var(--border-radius);
  padding: 0 2%;
}
@media (max-width: 768px) {
  .p-institution__data {
    width: 100%;
  }
}
.p-institution__data dl {
  width: 100%;
  border-bottom: 1px dashed var(--color-border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 3% 0;
}
.p-institution__data dt {
  width: 25%;
  padding: 1% 2%;
  border-radius: var(--border-radius);
  background: var(--color-main);
  color: var(--color-white);
}
.p-institution__data dd {
  margin-left: 3%;
  width: auto;
  flex: 1;
  text-align: left;
}
.p-institution__data-link {
  display: block;
  padding: 2% 0;
  text-align: right;
}
.p-institution__data a i {
  color: var(--color-main);
}
.p-institution__comment {
  text-align: left;
  margin: 30px 0;
}
.p-institution__merit {
  display: grid;
  grid-template-columns: 20% 1fr 25%;
  grid-template-rows: auto;
  width: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  background: var(--color-white);
  margin-bottom: 3%;
}
.p-institution__merit-label {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  background: url(../../img/bg01.png) repeat;
  text-align: left;
  font-size: 1.25rem;
  color: var(--color-white);
  justify-content: center;
}
.p-institution__merit p {
  grid-column: 2;
  grid-row: 1;
  display: block;
  align-self: center;
  text-align: left;
  padding: 3%;
}
.p-institution__merit-photo {
  grid-column: 3;
  grid-row: 1;
  overflow: hidden;
}
.p-institution__merit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .p-institution__merit {
    grid-template-columns: 1fr 40%;
    grid-template-rows: auto auto;
  }
  .p-institution__merit-label {
    grid-column: 1 / 3;
    grid-row: 1;
    justify-content: center;
    padding: 2% 4%;
  }
  .p-institution__merit-label br {
    display: none;
  }
  .p-institution__merit p {
    grid-column: 1;
    grid-row: 2;
    padding: 3% 3% 3% 3%;
  }
  .p-institution__merit-photo {
    grid-column: 2;
    grid-row: 2;
  }
}
@media (max-width: 480px) {
  .p-institution__merit {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .p-institution__merit-label {
    grid-column: 1;
    grid-row: 1;
  }
  .p-institution__merit p {
    grid-column: 1;
    grid-row: 2;
  }
  .p-institution__merit-photo {
    grid-column: 1;
    grid-row: 3;
    width: 100%;
  }
}
.p-institution__voices {
  width: 100%;
  background: var(--color-white);
  padding: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  border-radius: var(--border-radius);
  overflow: hidden;
}
.p-institution__voices h5 {
  width: 100%;
  background: var(--color-main);
  padding: 1% 0;
  text-align: center;
  color: var(--color-white);
  font-size: 1.25rem;
  /* 旧 2rem */
}
.p-institution__voice-box {
  width: 50%;
  margin: 2% 0 3%;
  padding: 0 3% 3%;
  align-self: stretch;
  border-right: 1px dashed var(--color-border);
}
@media (max-width: 768px) {
  .p-institution__voice-box {
    width: 100%;
    border: none;
    border-bottom: 1px dashed var(--color-border);
  }
}
.p-institution__voice-box:last-child {
  border: none;
}
.p-institution__voice-box h6 {
  text-align: left;
  border-left: 5px solid var(--color-main);
  padding: 0 2%;
  font-size: 1.25rem;
  /* 旧 2rem */
}
.p-institution__voice-box:last-child h6 {
  border-left: 5px solid var(--color-accent);
}
.p-institution__voice-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 3%;
}
.p-institution__voice-photo {
  width: 35%;
  padding-top: 35%;
  border-radius: 200px;
  overflow: hidden;
  position: relative;
  margin-right: 3%;
}
.p-institution__voice-photo img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
@media (max-width: 768px) {
  .p-institution__voice-photo {
    width: 20%;
    padding-top: 20%;
  }
}
.p-institution__voice-name {
  font-size: 1.25rem;
  /* 旧 2rem */
}
.p-institution__voice-prof {
  width: inherit;
  flex: 1;
}
.p-institution__detail-link {
  text-align: right;
  padding: 5px 0;
}
.p-institution__btn-area {
  padding: 2% 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}
.p-institution__btn-area a {
  width: 48%;
  max-width: 440px;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-size: 1.5rem;
  /* 旧 2.4rem */
  padding: 1% 0;
}
@media (max-width: 480px) {
  .p-institution__btn-area a {
    width: 100%;
    max-width: none;
    margin-bottom: 3%;
  }
}
.p-institution__btn-area span {
  font-size: 2.125rem;
  /* 旧 3.4rem */
}
.p-institution__btn-area i {
  margin-left: 15px;
  font-size: 1.5rem;
}
.p-institution__btn-area .btn01 {
  color: #000;
  background: linear-gradient(to bottom, #fcfdff, #dcdddf);
  border: 1px solid #ccc;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .8),
    inset 1px 0 0 rgba(255, 255, 255, .6),
    inset -1px 0 0 rgba(255, 255, 255, .6),
    inset 0 -1px 0 rgba(255, 255, 255, .6),
    0px 1px 8px rgba(0, 0, 0, .5);
  text-shadow:
    0 3px 0 rgba(255, 255, 255, .8),
    3px 0 0 rgba(255, 255, 255, .6),
    -3px 0 0 rgba(255, 255, 255, .6),
    0 -3px 0 rgba(255, 255, 255, .6);
}
.p-institution__btn-area .btn01 span {
  color: var(--color-main);
}
.p-institution__btn-area .btn02 {
  color: var(--color-white);
  background: linear-gradient(to bottom, #f4a52f, #f77915);
  border: 1px solid #f77915;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .5),
    inset 1px 0 0 rgba(255, 255, 255, .3),
    inset -1px 0 0 rgba(255, 255, 255, .3),
    inset 0 -1px 0 rgba(255, 255, 255, .3),
    0px 1px 8px rgba(0, 0, 0, .5);
}
.p-institution__btn-area .btn02 i {
  color: var(--color-white);
}
.p-institution__btn-area .btn01:hover,
.p-institution__btn-area .btn02:hover {
  transform: translateY(-5px);
}
/* サブ見出し（まだまだある） */
.p-institution__sub-heading {
  position: relative;
  font-family: var(--font-noto);
  font-size: 1.875rem;
  /* 旧 3rem */
  color: #000;
  text-align: left;
  line-height: 1.4;
  margin: var(--space-4) auto var(--space-1);
  font-weight: 400;
  background: none;
  width: 94%;
  max-width: var(--container-max);
  padding: 2% 0 0;
}
.p-institution__sub-heading::before {
  display: inherit;
  content: "";
  width: 10%;
  height: 5px;
  max-width: 50px;
  background: var(--color-main);
  top: 0;
  left: 0;
  position: absolute;
}
@media (max-width: 480px) {
  .p-institution__sub-heading {
    font-size: 1.5rem;
  }
  .p-institution__sub-heading::before {
    width: 10%;
    height: 3px;
  }
}
.p-institution__sub-heading span {
  color: var(--color-main);
}
.p-institution__area-box {
  border: 2px solid var(--color-main);
  border-radius: var(--border-radius);
  width: 94%;
  max-width: var(--container-max);
  padding: 2% 3%;
  margin: 0 auto;
}
.p-institution__area-box ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}
.p-institution__area-box li {
  width: 48%;
  text-align: left;
  padding: var(--space-1) 0;
  margin-bottom: var(sp);
}
.p-institution__area-box .fas {
  margin-left: var(--space-1);
}
@media (max-width: 768px) {
  .p-institution__area-box li {
    width: 100%;
  }
}
/* ==========================================================================
   Support（旧 #support）
   ========================================================================== */
.p-support-section {
  width: 100%;
  padding: 0;
  background: var(--color-bg-light);
}
.p-support-section__heading {
  color: var(--color-white);
  font-size: 2.1875rem;
  /* 旧 3.5rem */
  line-height: 1.4;
  margin-bottom: 0;
  background: url(../../img/bg01.png) repeat;
  text-align: center;
  padding: 2% 0;
}
.p-support-section__heading::before {
  display: none;
}
.p-support-section__heading span {
  font-size: 1.5625rem;
  /* 旧 2.5rem */
  color: var(--color-white);
}
.p-support-section__inner {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .p-support-section__inner {
    padding: 0 20px;
  }
}
.p-support-section__body {
  position: relative;
  overflow: hidden;
}
.p-support-section__body h3 {
  text-align: left;
  padding: 0;
  overflow: hidden;
}
.p-support-section__body h3 img {
  width: 80%;
  height: auto;
  max-width: 612px;
  margin-top: -1%;
  margin-bottom: 2%;
}
.p-support-section__photo {
  grid-column: 1;
  grid-row: 1 / 4;
  /* h4・name・本文の行をまたいで左に固定 */
  width: 100%;
  max-width: 247px;
  align-self: start;
}
.p-support-section__message {
  display: grid;
  grid-template-columns: 220px 1fr;
  /* 左:画像列 右:テキスト列 */
  grid-template-rows: auto auto auto;
  column-gap: 5%;
  align-items: start;
  width: 100%;
  text-align: left;
  padding: 3% 0;
}
.p-support-section__message h4 {
  grid-column: 2;
  grid-row: 1;
  font-size: 1.875rem;
  line-height: 1.4;
}
.p-support-section__message .p-support-section__name {
  grid-column: 2;
  grid-row: 2;
  font-size: 1.125rem;
  padding: 8px 0 16px;
}
.p-support-section__message p:not(.p-support-section__name) {
  grid-column: 2;
  grid-row: 3;
  padding: 0 0 16px;
}
@media (max-width: 768px) {
  .p-support-section__heading {
    font-size: 1.5rem;
  }
  .p-support-section__heading span {
    font-size: 1.25rem;
  }
  .p-support-section__inner {
    padding: 0;
  }
  .p-support-section__body h3 {
    padding: 0 2%;
  }
  .p-support-section__body h3 img {
    width: 70%;
    max-width: none;
    margin-bottom: 0;
  }
  .p-support-section__message {
    grid-template-columns: 100px 1fr;
    column-gap: 4%;
    width: 96%;
    margin: 0 auto;
    padding: 4% 0;
  }
  .p-support-section__photo {
    overflow: hidden;
    border-radius: 200px;
  }
  .p-support-section__photo img {
    max-width: 100px;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .p-support-section__message h4 {
    font-size: 1rem;
  }
  .p-support-section__message p {
    padding: 2% 0 4%;
  }
}
/* ==========================================================================
   Flow（旧 #flow）
   ========================================================================== */
.p-flow {
  width: 100%;
  padding: 0;
}
.p-flow__heading {
  font-size: 1.875rem;
  /* 旧 3rem */
  margin-bottom: 3%;
  padding: 1% 0;
  width: 100%;
  text-align: center;
  background: var(--color-accent);
}
.p-flow__heading::before {
  display: none;
}
.p-flow__inner {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .p-flow__inner {
    padding: 0 20px;
  }
}
.p-flow__steps {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: stretch;
  margin: 0 auto 50px;
  overflow: hidden;
}
.p-flow__step {
  width: 23%;
  max-width: 205px;
  background: var(--color-bg-yellow);
  border-radius: var(--border-radius);
  padding: 15px 20px 20px;
  position: relative;
}
.p-flow__step::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid var(--color-accent);
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  position: absolute;
  left: 105%;
  top: 50%;
  margin-top: -20px;
}
.p-flow__step:last-child::after {
  display: none;
}
@media (max-width: 1000px) {
  .p-flow__step::after {
    left: 100%;
  }
}
.p-flow__step h3 {
  font-size: 1.25rem;
  line-height: 1.2;
}
.p-flow__step img {
  height: 100px;
  margin: 20px auto;
}
@media (max-width: 1000px) {
  .p-flow__step img {
    height: 120px;
    width: auto;
    margin: 20px auto;
  }
}
.p-flow__step p {
  text-align: left;
}
/* 問い合わせボックス */
.p-flow__contact {
  width: 100%;
  padding: 10px 30px;
  background: #eee;
  border-radius: var(--border-radius);
  max-width: var(--container-max);
}
@media (max-width: 1000px) {
  .p-flow__contact {
    padding: 10px;
  }
}
.p-flow__contact h3 {
  font-size: 1.875rem;
  color: #000;
}
.p-flow__contact-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin: 20px auto;
}
.p-flow__contact-tel {
  display: block;
  width: 53%;
  max-width: 470px;
  background: var(--color-white);
  border-radius: var(--border-radius);
  padding: 5px 10px 10px;
  border: 1px solid var(--color-main);
}
.p-flow__contact h4 {
  width: 100%;
  font-size: 1.25rem;
  color: #000;
  border-bottom: 1px solid var(--color-main);
  margin-bottom: 10px;
}
.p-flow__contact-tel p {
  padding-left: 30px;
  font-size: 1.25rem;
  color: #000;
  position: relative;
  display: inline-block;
  line-height: 1;
}
.p-flow__contact-tel p::before {
  content: "";
  background: url(../../img/icon_freedial.svg) left top no-repeat;
  background-size: 50px auto;
  width: 50px;
  height: 30px;
  position: absolute;
  left: -25px;
  top: 50%;
  margin-top: -12px;
}
@media (min-width: 1001px) {
  .p-flow__contact-tel p {
    font-size: 40px;
  }
}
.p-flow__contact-tel span {
  display: block;
  width: 100%;
}
.p-flow__mail-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: linear-gradient(to bottom, #f691a2, #eb7185);
  border: 1px solid #eb7185;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, .5),
    inset 2px 0 0 rgba(255, 255, 255, .3),
    inset -2px 0 0 rgba(255, 255, 255, .3),
    inset 0 -2px 0 rgba(255, 255, 255, .3),
    0px 1px 8px rgba(0, 0, 0, .5);
  width: 45%;
  max-width: 380px;
  margin: 0;
  padding: 20px 0;
  font-size: 2rem;
  text-decoration: none;
  border-radius: var(--border-radius);
}
.p-flow__mail-btn:hover {
  transform: translateY(-5px);
}
.p-flow__mail-btn span {
  display: inline-block;
}
@media (min-width: 1001px) {
  .p-flow__mail-btn {
    font-size: 24px;
  }
}
.p-flow__mail-btn i {
  margin: 0 5px;
}
@media (max-width: 768px) {
  .p-flow__heading {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .p-flow__steps {
    display: block;
    margin: 0 auto 20px;
    border-radius: var(--border-radius);
  }
  .p-flow__step {
    width: 100%;
    max-width: none;
    margin-bottom: 3%;
  }
  .p-flow__step::after {
    content: "";
    width: 0;
    height: 0;
    border: none;
    border: 20px solid transparent;
    border-top: 20px solid var(--color-accent);
    position: absolute;
    left: 50%;
    top: 105%;
    margin-left: -20px;
  }
  .p-flow__step:last-child::after {
    display: none;
  }
  .p-flow__step h3 {
    font-size: 1.25rem;
  }
  .p-flow__contact h3 {
    font-size: 20px;
  }
  .p-flow__contact-inner {
    padding: 0 5px;
    /* align-items: stretch; */
    display: block;
  }
  .p-flow__contact-tel p {
    color: var(--color-white);
    font-size: 2rem;
    padding: 5px 0 0;
  }
  .p-flow__contact-tel p.index {
    font-size: 1.5rem;
    padding: 0 0 0 20px;
  }
  .p-flow__contact-tel p::before {
    display: none;
  }
  .p-flow__contact-tel p.index::before {
    display: block;
    content: "";
    background-size: 20px auto;
    width: 20px;
    height: 12px;
    position: absolute;
    left: -5px;
    top: 50%;
    margin-top: -6px;
  }
  .p-flow__tel-btn {
    color: var(--color-white);
    background: linear-gradient(to bottom, #63c4ef, var(--color-main));
    border: 1px solid var(--color-main);
    box-shadow:
      inset 0 2px 0 rgba(255, 255, 255, .5),
      inset 2px 0 0 rgba(255, 255, 255, .3),
      inset -2px 0 0 rgba(255, 255, 255, .3),
      inset 0 -2px 0 rgba(255, 255, 255, .3),
      0px 1px 8px rgba(0, 0, 0, .5);
    width: 57%;
    max-width: 380px;
    margin: 0;
    font-size: 1.4rem;
    text-decoration: none;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 3%;
  }
  .p-flow__tel-btn {
    width: 100%;
    margin-bottom: 3%;
    max-width: none;
  }
  .p-flow__tel-btn i {
    font-size: 1.2rem;
  }
  .p-flow__tel-btn .p-flow__tel-btn-inner {
    display: inline-block;
    vertical-align: middle;
    width: 88%;
    line-height: 1.4em;
  }
  .p-flow__tel-btn-inner span {
    font-size: 1rem;
  }
  .p-flow__mail-btn {
    align-items: center;
    display: flex;
    padding: 15px 2%;
    width: 100%;
    letter-spacing: 0;
    justify-content: space-around;
    font-size: 1.1rem;
  }
  .p-flow__mail-btn i {
    margin: 0 2%;
  }
}
/* 
@media (max-width: 480px) {
  .p-flow__heading {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .p-flow__steps {
    display: block;
    margin: 0 auto 20px;
    border-radius: var(--border-radius);
    background: var(--color-bg-yellow);
  }
  .p-flow__step {
    width: 100%;
    max-width: none;
  }
  .p-flow__step::after {
    display: none;
  }
  .p-flow__step h3 {
    font-size: 1.25rem;
  }
  .p-flow__tel-btn {
    width: 100%;
    margin-bottom: 3%;
    max-width: none;
  }
  .p-flow__contact-tel p {
    font-size: 6vw;
  }
  .p-flow__contact-tel p.index {
    font-size: 3vw;
  }
  .p-flow__mail-btn {
    width: 100%;
    max-width: none;
    justify-content: center;
  }
} */
/* ==========================================================================
   Search Button / Footer / Pagetop
   ========================================================================== */
.c-search-btn {
  display: inline-block;
  color: var(--color-white);
  background: linear-gradient(to bottom, #b08d6c, #9c7147);
  border: 1px solid #9c7147;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, .5),
    inset 2px 0 0 rgba(255, 255, 255, .3),
    inset -2px 0 0 rgba(255, 255, 255, .3),
    inset 0 -2px 0 rgba(255, 255, 255, .3),
    0px 1px 8px rgba(0, 0, 0, .5);
  width: 90%;
  max-width: 700px;
  margin: 0 auto 30px;
  padding: 20px 10px;
  font-size: 2rem;
  text-decoration: none;
  border-radius: var(--border-radius);
}
.c-search-btn:hover {
  transform: translateY(-5px);
}
.c-search-btn i {
  margin-left: 2%;
}
@media (min-width: 1001px) {
  .c-search-btn {
    font-size: 2.1875rem;
  }
}
@media (max-width: 768px) {
  .c-search-btn {
    font-size: 2rem;
    margin: 0 auto 30px;
    padding: 20px 10px;
  }
}
footer {
  width: 100%;
  background: var(--color-white);
  padding: 15px 0;
  text-align: center;
  color: #000;
}
/* ページトップボタン（script.202603.js は .c-pagetop を参照） */
.c-pagetop {
  position: fixed;
  right: 3%;
  bottom: 30%;
  display: block;
  width: 80px;
  height: 80px;
  z-index: 11;
  background: var(--color-accent);
  text-align: center;
  border-radius: 100px;
  font-size: 0.8125rem;
  line-height: 1.2;
  text-decoration: none;
}
.c-pagetop i {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.25rem;
  /* 旧 2rem */
  margin: 5px 0;
  color: var(--color-white);
}
@media (max-width: 768px) {
  .c-pagetop {
    right: 2%;
    bottom: 10px;
    width: 60px;
    height: 60px;
  }
}
/* ==========================================================================
   MV h1 テキスト版（main_tit.png 代替）
   正円吹き出し（右下しっぽ）＋ 大見出し「老人ホームの リハビリ 特集」
   ========================================================================== */
.p-mv__heading--text {
  display: inline-flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.55em;
  padding: 1.6em 0 0;
}
.p-mv__heading-balloon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-family: var(--font-noto);
  font-size: clamp(1rem, 1.5vw, 1rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.55;
  background: var(--color-accent);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  text-align: center;
  transform: rotate(-10deg);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, .3);
  position: relative;
  top: -60px;
}
.p-mv__heading-sub {
  text-align: left;
  display: block;
  font-family: var(--font-noto);
  font-size: clamp(2.1rem, 6vw, 4.2rem);
  font-weight: 900;
  color: #111;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow:
    -2px -2px 0 #fff,
    2px -2px 0 #fff,
    -2px 2px 0 #fff,
    2px 2px 0 #fff,
    0 3px 0 rgba(0, 0, 0, 0.12);
}
.p-mv__heading-reha {
  color: var(--color-main);
  font-size: 1.15em;
  -webkit-text-stroke: 1px var(--color-main-dark);
}
@media (max-width: 768px) {
  .p-mv__heading-balloon {
    border-radius: 0;
    height: auto;
    top: -20px;
    width: 90%;
    padding: .2em;
    text-align: left;
    left: 0;
    transform: rotate(-5deg);
    br {
      display: none;
    }
  }
  .p-mv__heading--text {
    display: block;
    padding: 0;
  }
  .p-mv__heading-sub {
    padding-inline: 1rem;
    br{
      display: none;
    }
  }
  .p-section {
    padding: var(--space-4) 0;
  }
}
@media (max-width: 480px) {
  .p-mv__heading-sub {
    font-size: clamp(1.2rem, 7vw, 1.6rem);
  }
}
/* ==========================================================================
   ユーティリティ 上書き保証（ファイル末尾で!importantにより確実に優先）
   ========================================================================== */
@media (min-width: 769px) {
  .u-pc-only {
    display: block;
  }
}
@media (max-width: 768px) {
  .u-sp-only {
    display: block;
  }
  .u-pc-only {
    display: none;
  }
}
