@charset "UTF-8";
/* --------------------------------

  CSS Reset

-------------------------------- */
html, body,
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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: 400;
  font-style: normal;
}

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

:root {
  --font-family: 'Noto Sans JP', sans-serif;
  --color-text: #484848;
  --color-link: #ef7792;
  --color-hover: #cfb8a9;
  --color-base: #ef7792;
  --color-main: #a68773;
  --color-sub1: #fdfaf8;
  --color-sub2: #faf2ed;
  --color-sub3: #ece1da;
  --color-sub4: #cfb8a9;
  --color-sub5: #fff7f0;
  --color-sub6: #ffc6dd;
  --color-sub7: #00948d;
  --color-sub8: #06c755;
  --color-sub9: #fff3f8;
  --color-sub10: #00bfb6;
  --color-sub11: #06e35f;
  --color-sub12: #6f6666;
  --color-sub13: #7e6554;
  --color-sub14: #ff8b00;
  --color-sub15: #726d63;
  --color-sub16: #06beb6;
  --color-sub17: #d6f0ef;
  --color-sub18: #e7dbd4;
  --color-sub19: #f7f7f7;
  --color-grd1: rgba(236, 225, 218, 0);
  --color-grd2: rgba(236, 225, 218, 1);
  --transition: 0.3s;
  --inner-width: 110rem;
  --inner-width2: 130rem;
  --inner-width3: 160rem;
  --box-shadow: 0 0 3px 0 rgba(0, 0, 0, .3);
  --box-shadow2: 0 0 4px 0 rgba(0, 0, 0, .5);
  --box-shadow3: 0 0 4px 0 rgba(0, 0, 0, .2);
  --box-shadow4: 0 0 4px 0 rgba(0, 0, 0, .1);
  --box-shadow5: 0 0 3px 5px rgba(255, 255, 255, 1);
  --text-shadow: 0 0 4px rgba(255,255,255,.4), 0 0 4px rgba(255,255,255,.2), 0 0 4px rgba(255,255,255,.1);
}

* {
  scroll-behavior: auto !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

a {
  color: var(--color-link);
  border: none;
  text-decoration: none;
}

a:hover {
  color: var(--color-hover);
  text-decoration: underline;
}

img, video, iframe {
  max-width: 100%;
}

img {
  height: auto;
  border: none;
  vertical-align: top;
}

blockquote,
q {
  quotes: none;
}

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

a, area, button, [role=button], input:not([type=range]), label, select, summary, textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

button {
  border: none;
  background: none;
}
button:hover, button:active, button:focus {
  outline: none;
}
button:active, button:focus {
  box-shadow: none;
}

/* --------------------------------

  共通スタイル

-------------------------------- */
html,
body {
  height: 100%;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
@media screen and (min-width: 1100px), print {
  html {
    overflow-y: scroll;
  }
}

body {
  min-width: 32rem;
  line-height: 1.5;
  font-size: 1.4rem;
  font-family: var(--font-family);
  color: var(--color-text);
  text-align: left;
  letter-spacing: 0.05em;
  background-color: #fff;
}
@media screen and (min-width: 768px), print {
  body {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 1099.98px) {
  html.nav-open {
    position: relative;
    width: 100%;
    height: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
  }
}

/* 共通セクション */
.c-section {
  line-height: 1.8;
}
.c-section__secondary {
  line-height: 1.8;
}
@media screen and (min-width: 1100px), print {
  .c-section__secondary {
    max-width: var(--inner-width);
    margin-inline: auto;
  }
}
.c-section__secondary:not(:last-child) {
  margin-bottom: 10rem;
}
@media screen and (min-width: 1100px), print {
  .c-section__secondary:not(:last-child) {
    margin-bottom: 15rem;
  }
}

/* 共通ヘッダー */
.c-header {
  position: relative;
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px), print {
  .c-header {
    margin-bottom: 6rem;
  }
}

/* 共通見出し */
.c-heading {
  position: relative;
  line-height: 1.2;
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 0.2em;
  font-feature-settings: "palt" 1;
}
@media screen and (min-width: 768px), print {
  .c-heading {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-heading {
    font-size: 2.6rem;
  }
}
.c-heading.__h2 {
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  font-weight: 100;
  font-size: 3.8rem;
  letter-spacing: 0.1em;
  border-bottom: 2px dashed rgba(166, 135, 115, 0.5);
}
@media screen and (min-width: 768px), print {
  .c-heading.__h2 {
    margin-bottom: 3.5rem;
    padding-bottom: 2rem;
    font-size: 4.8rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-heading.__h2 {
    margin-bottom: 5rem;
    padding-bottom: 3.5rem;
    font-size: 6.4rem;
    border-bottom-width: 3px;
  }
}
.c-heading.__h3 {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  font-weight: 300;
  font-size: 2.6rem;
  letter-spacing: 0.1em;
  border-bottom: 2px dashed rgba(166, 135, 115, 0.5);
}
@media screen and (min-width: 768px), print {
  .c-heading.__h3 {
    padding-bottom: 2rem;
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-heading.__h3 {
    margin-bottom: 5rem;
    padding-bottom: 3rem;
    font-size: 4rem;
    border-bottom-width: 3px;
  }
}
.c-heading.__h4 {
  margin-bottom: 2.5rem;
  padding: 0.7ch 0.5rem;
  color: #fff;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1100px), print {
  .c-heading.__h4 {
    margin-bottom: 3rem;
    font-size: 2.8rem;
  }
}
.c-heading.__h5 {
  margin-bottom: 2.5rem;
  padding: 1.2ch 0.5rem;
  color: #fff;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px), print {
  .c-heading.__h5 {
    margin-bottom: 3rem;
    font-size: 2rem;
  }
}
.c-heading__en {
  display: block;
  line-height: 1em;
  font-size: 3em;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px), print {
  .c-heading__en {
    font-size: 3.8em;
  }
}

/* リンクボタン */
.c-link-button {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 1.4rem 4rem 1.4rem 2.5rem;
  color: var(--color-link);
  line-height: 1.2;
  text-align: center;
  border-radius: 10em;
  border: 1px dashed currentColor;
  background-color: #fff;
  transition: color var(--transition), border-color var(--transition), background-color var(--transition);
}
@media screen and (min-width: 1100px), print {
  .c-link-button {
    font-size: 1.8rem;
  }
}
.c-link-button::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 2.1rem;
  bottom: 0;
  width: 1rem;
  height: 1rem;
  margin: auto;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}
/* 共通リンクボタン（ホバー）*/
.c-link-button[href]:hover {
  text-decoration: none;
  color: var(--color-link);
}
@media (hover: hover) and (pointer: fine) {
  .c-link-button[href]:hover {
    color: #fff;
    border-color: var(--color-hover);
    background-color: var(--color-hover);
  }
}

/* リンクマージン */
.c-link-more {
  margin-top: 5rem;
}

/* テキストリンク */
.c-text-link {
  text-decoration: underline;
}
.c-text-link:hover {
  text-decoration: none;
}
.c-text-link__primary {
  color: var(--color-link);
}
.c-text-link__primary:hover {
  color: var(--color-link);
}
.c-text-link__secondary {
  color: var(--color-sub7);
}
.c-text-link__secondary:hover {
  color: var(--color-sub7);
}

/* コンテンツ画面中央寄せ */
.c-inner {
  position: relative;
  max-width: var(--inner-width);
  margin-inline: auto;
}
.c-inner::after {
  content: "";
  display: table;
  clear: both;
}
.c-inner__lg {
  max-width: var(--inner-width2);
}
.c-inner__xl {
  max-width: var(--inner-width3);
}

/* Google Maps */
.c-map-area {
  position: relative;
  height: 40rem;
}
.c-map-area iframe {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* 共通テーブル */
.c-table {
  display: block;
  margin-inline: -4px;
  line-height: 1.5;
}
.c-table tbody {
  display: block;
}
.c-table tr {
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 4px 0;
}
.c-table th,
.c-table td {
  vertical-align: middle;
  padding: 2rem 1rem;
  border-bottom-width: 1px;
  border-style: solid;
}
.c-table th {
  padding-right: 0;
  color: var(--color-main);
  border-color: currentColor;
}
.c-table td {
  border-color: var(--color-sub4);
}
.c-table .tel-link[href] {
  color: currentColor;
}
.c-table .tel-link[href]:hover {
  color: var(--color-link);
}
@media screen and (max-width: 767.98px) {
  .c-table {
    margin-inline: 0;
  }
  .c-table tr,
  .c-table th,
  .c-table td {
    display: block;
  }
  .c-table tr + tr {
    margin-top: 3rem;
  }
  .c-table th,
  .c-table td {
    border-top-width: 1px;
    border-bottom: none;
  }
  .c-table th {
    width: auto !important;
    padding: 1rem 1rem;
    font-size: 1.6rem;
  }
  .c-table td {
    padding: 1.5rem 1rem 0 1rem;
  }
}

/* 共通コンテンツ */
.c-content__primary {
  margin-top: 6.4rem;
  padding: 0 2rem 3rem;
}
.c-content__secondary {
  padding: 4rem 2rem;
}
.c-content__secondary:not(:first-child) {
  margin-top: 4rem;
}
.c-content__container {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
}
.c-content__col {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  margin-top: 2.4rem;
}
.c-content__full {
  grid-column: 1/-1;
  margin-top: 2.4rem;
}
.c-content__title {
  display: grid;
  place-content: center;
  margin-top: -2.4rem;
  margin-inline: auto;
  font-size: 1.8rem;
  text-align: center;
}
.c-content__col .c-content__title.c-heading {
  height: 100%;
}
@media screen and (min-width: 768px), print {
  .c-content__primary {
    padding: 0 3rem 3rem;
  }
  .c-content__secondary {
    padding: 4rem 3rem;
  }
  .c-content__container {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-content__title {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-content__primary {
    margin-top: 8rem;
    padding: 0 4rem 4rem;
  }
  .c-content__secondary {
    padding: 5rem 4rem;
  }
  .c-content__container {
    grid-column-gap: 4rem;
    grid-row-gap: 5rem;
  }
  .c-content__col {
    margin-top: 3rem;
  }
  .c-content__full {
    margin-top: 3rem;
  }
  .c-content__title {
    max-width: 30ch;
    margin-top: -3rem;
  }
}

/* チェックリスト付コンテンツ */
.c-checklist {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.c-checklist__row {
  position: relative;
  padding-left: 4rem;
}
.c-checklist__row:not(:last-child) {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px dashed var(--color-sub18);
}
.c-checklist__title {
  margin-bottom: 0.5rem;
  line-height: 1.3;
  font-size: 2rem;
}
.c-checklist__title::before {
  content: "";
  aspect-ratio: 40/36;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  background: url(../img/base/icon-check_pnk.svg) center no-repeat;
  background-size: cover;
}
.c-checklist__text {
  margin-left: 0.5ch;
}
@media screen and (min-width: 768px), print {
  .c-checklist__row {
    padding-left: 6rem;
  }
  .c-checklist__title {
    font-size: 2.2rem;
  }
  .c-checklist__title::before {
    left: 1rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-checklist {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .c-checklist__row {
    padding-left: 8rem;
  }
  .c-checklist__row:not(:last-child) {
    margin-bottom: 2.4rem;
    padding-bottom: 2.4rem;
  }
  .c-checklist__title {
    font-size: 2.8rem;
  }
  .c-checklist__title::before {
    left: 2rem;
    width: 4rem;
  }
}

/* 共通お問い合わせ（電話）*/
.c-global-tel__num {
  display: inline-flex;
  align-items: center;
  vertical-align: top;
  line-height: 1em;
  font-weight: 500;
  font-size: 2.2rem;
}
.c-global-tel__num::before {
  content: "";
  aspect-ratio: 1/1;
  display: block;
  width: 1.6ch;
  margin: 0 1rem 0 0;
  background: url(../img/base/icon-tel_pnk.svg) no-repeat center;
  background-size: cover;
}
.c-global-tel .tel-link {
  display: inline-block;
  vertical-align: top;
  padding: 1.5ch 3ch 1.5ch 3.5ch;
  color: var(--color-link);
  border-radius: 10em;
  border: 1px dashed currentColor;
}
.c-global-tel .tel-link[href]:hover {
  text-decoration: none;
}
@media screen and (min-width: 375px), print {
  .c-global-tel__num {
    font-size: 2.6rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-global-tel__num {
    font-size: 3rem;
  }
}

/* --------------------------------

  汎用スタイル

-------------------------------- */
.u-list {
  padding-left: 2em;
}
.u-list-unstyled {
  list-style: none;
}
.u-list-disc {
  list-style-type: none;
  padding-left: 0;
  line-height: 1.5;
}
.u-list-disc li {
  position: relative;
  padding-left: 3ch;
}
.u-list-disc li + li {
  margin-top: 0.7ch;
}
.u-list-disc li::before {
  content: "●";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-sub4);
}
.u-list-decimal {
  counter-reset: list_decimal;
  list-style-type: none;
  padding-left: 0;
  font-size: 1.8rem;
}
.u-list-decimal li {
  position: relative;
  padding-left: 4rem;
  line-height: 1.5;
}
.u-list-decimal li:not(:last-child) {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--color-sub18);
}
.u-list-decimal .counter {
  display: grid;
  place-content: center;
  position: absolute;
  top: 0.1ch;
  left: 0;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 100%;
}
.u-list-decimal .counter::before {
  counter-increment: list_decimal;
  content: counter(list_decimal);
}
@media screen and (min-width: 768px), print {
  .u-list {
    padding-left: 2.5em;
  }
  .u-list-decimal li {
    padding-left: 5rem;
  }
  .u-list-decimal .counter {
    left: 1rem;
  }
}
@media screen and (min-width: 1100px), print {
  .u-list-decimal {
    font-size: 2.2rem;
  }
  .u-list-decimal li {
    padding-left: 6rem;
  }
  .u-list-decimal li:not(:last-child) {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .u-list-decimal .counter {
    top: 0.15ch;
    left: 1.5rem;
    width: 3rem;
    height: 3rem;
    padding: 0 0 0.1ch;
  }
}

.u-text-left {
  text-align: left;
}
.u-text-center {
  text-align: center;
}
.u-text-right {
  text-align: right;
}
.u-text-indent {
  text-indent: 1em;
}
.u-text-link {
  color: currentColor;
}
@media screen and (min-width: 768px), print {
  .u-text-md-left {
    text-align: left;
  }
  .u-text-md-center {
    text-align: center;
  }
}
@media screen and (min-width: 1100px), print {
  .u-text-lg-left {
    text-align: left;
  }
  .u-text-lg-center {
    text-align: center;
  }
}

.u-d-none {
  display: none;
}
.u-d-block {
  display: block;
}
.u-d-flex {
  display: flex;
}
@media screen and (min-width: 480px), print {
  .u-d-sm-none {
    display: none;
  }
  .u-d-sm-block {
    display: block;
  }
  .u-d-sm-flex {
    display: flex;
  }
}
@media screen and (min-width: 768px), print {
  .u-d-md-none {
    display: none;
  }
  .u-d-md-block {
    display: block;
  }
  .u-d-md-flex {
    display: flex;
  }
  .u-d-md-inline {
    display: inline;
  }
}
@media screen and (min-width: 1100px), print {
  .u-d-lg-none {
    display: none;
  }
  .u-d-lg-block {
    display: block;
  }
  .u-d-lg-flex {
    display: flex;
  }
  .u-d-lg-inline {
    display: inline;
  }
}
@media screen and (min-width: 1600px), print {
  .u-d-xl-none {
    display: none;
  }
  .u-d-xl-block {
    display: block;
  }
  .u-d-xl-flex {
    display: flex;
  }
}

.u-ft-mplus1c {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-style: normal;
}
.u-fs__sm {
  font-size: 1.2rem;
}
@media screen and (min-width: 1100px), print {
  .u-fs__sm {
    font-size: 1.4rem;
  }
}
.u-fs__lg {
  font-size: 1.6rem;
}
@media screen and (min-width: 1100px), print {
  .u-fs__lg {
    font-size: 1.8rem;
  }
}
.u-fs__xl {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px), print {
  .u-fs__xl {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1100px), print {
  .u-fs__xl {
    font-size: 2rem;
  }
}

.u-fw-thin {
  font-weight: 100;
}
.u-fw-thin * {
  font-weight: 100;
}
.u-fw-medium {
  font-weight: 500;
}
.u-fw-medium * {
  font-weight: 500;
}
.u-fw-bold {
  font-weight: 700;
}
.u-fw-bold * {
  font-weight: 700;
}
.u-fw-exbold {
  font-weight: 800;
}
.u-fw-exbold * {
  font-weight: 800;
}
.u-bg-dark {
  background-color: var(--color-sub2);
}
.u-bg-light {
  background-color: var(--color-sub1);
}
.u-bg-base {
  background-color: var(--color-base);
}
.u-bg-main {
  background-color: var(--color-main);
}
.u-bg-white {
  background-color: #fff;
}
.u-bg-gray {
  background-color: var(--color-text);
}
.u-bg-pink {
  background-color: var(--color-sub6);
}
.u-bg-orange {
  background-color: var(--color-sub14);
}
.u-bg-sub1 {
  background-color: var(--color-sub4);
}
.u-bg-sub2 {
  background-color: var(--color-sub3);
}
.u-bg-sub3 {
  background-color: var(--color-sub16);
}
.u-bg-sub4 {
  background-color: var(--color-sub17);
}
.u-bg-sub5 {
  background-color: var(--color-sub12);
}
.u-bg-sub6 {
  background-color: var(--color-sub13);
}
.u-bg-sub7 {
  background-color: var(--color-sub15);
}
.u-bg-line {
  background-color: var(--color-sub8);
}
.u-bg-logo {
  background-color: var(--color-sub7);
}

.u-color-base {
  color: var(--color-base);
}
.u-color-main {
  color: var(--color-main);
}
.u-color-white {
  color: #fff;
}
.u-color-danger {
  color: #b22c00;
}
.u-color-line {
  color: var(--color-sub8);
}
.u-color-logo {
  color: var(--color-sub7);
}

.u-flex-1 {
  flex: 1;
}

.u-clearfix::after {
  content: "";
  clear: both;
  display: block;
}

.u-lh__sm {
  line-height: 1.2;
}
.u-lh__base {
  line-height: 1.5;
}
.u-lh__lg {
  line-height: 1.8;
}
@media screen and (min-width: 768px), print {
  .u-lh__lg {
    line-height: 2;
  }
}
.u-lh__xl {
  line-height: 2;
}

.u-indent {
  margin-left: 1em;
  text-indent: -1em;
}

.u-anchor-point::before {
  content: "";
  display: block;
  position: relative;
  height: 1px;
  margin-top: -13rem;
  margin-bottom: 13rem;
  background: transparent;
  pointer-events: none;
  z-index: -100;
}
@media screen and (min-width: 1100px), print {
  .u-anchor-point::before {
    margin-top: -19rem;
    margin-bottom: 19rem;
  }
}

.u-scroll-top {
  scroll-margin-top: 13rem;
}
@media screen and (min-width: 1100px), print {
  .u-scroll-top {
    scroll-margin-top: 19rem;
  }
}

.u-box-radius {
  border-radius: 1rem;
}
.u-box-radius__md {
  border-radius: 1rem;
}
@media screen and (min-width: 768px), print {
  .u-box-radius__md {
    border-radius: 2rem;
  }
}
.u-box-radius__top {
  border-radius: 1rem 1rem 0 0;
}
.u-box-radius__top-right {
  border-radius: 0 1rem 0 0;
}
.u-box-radius__bottom {
  border-radius: 0 0 1rem 1rem;
}

.u-img-wrap {
  aspect-ratio: 4/3;
  display: block;
  position: relative;
}

.u-img-cover {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.u-img-style {
  position: relative;
}
.u-img-style::before {
  content: "";
  aspect-ratio: 1/1;
  display: block;
  position: absolute;
  right: -1rem;
  bottom: 0;
  width: 25%;
  border-radius: 1rem;
  pointer-events: none;
  background: url(../img/base/bg_img1.png) no-repeat center;
  background-size: cover;
}
.u-img-style img {
  height: calc(100% - 1rem);
}
@media screen and (min-width: 768px), print {
  .u-img-style::before {
    right: -2rem;
    width: 10rem;
    border-radius: 2rem;
  }
  .u-img-style img {
    height: calc(100% - 2rem);
  }
}

.u-img-radius {
  border-radius: 2rem 0 0 0;
}
@media screen and (min-width: 768px), print {
  .u-float-md-right {
    float: right;
  }
}
.u-border {
  border: 1px solid var(--color-sub3);
}

.u-marker {
  display: inline;
  background: linear-gradient(var(--color-grd1) 70%, var(--color-grd2) 0%);
}

.u-height-100 {
  height: 100%;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

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

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

.justify-content-center {
  justify-content: center;
}

.font-feature-settings {
  font-feature-settings: "palt" 1;
}

/* ios高さ100%用 */
.full-height {
  height: calc(var(--vh, 1vh) * 100);
}

/* --------------------------------

  wrapper

-------------------------------- */
.l-wrapper {
  position: relative;
  padding-bottom: 8rem;
  overflow: hidden;
}
@media screen and (min-width: 768px), print {
  .l-wrapper {
    padding-bottom: 7rem;
  }
}
@media screen and (min-width: 1100px), print {
  .l-wrapper {
    padding-bottom: 0;
  }
}

/* --------------------------------

  header

-------------------------------- */
.l-header {
  padding-top: 8rem;
}
.l-header__container {
  display: grid;
  place-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  font-size: 100%;
  background-color: #fff;
  z-index: 900;
}
.l-header__button {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  z-index: 900;
}
.l-header__title {
  padding-bottom: 5rem;
  background-color: var(--color-sub1);
}
@media screen and (min-width: 768px), print {
  .l-header {
    padding-top: 22rem;
  }
  .l-header__container {
    position: absolute;
    height: auto;
    padding: 0;
    background: none;
    z-index: 1010;
  }
  .l-header__logo {
    position: relative;
  }
}
@media screen and (min-width: 1100px), print {
  .l-header {
    padding-top: 12rem;
  }
  .l-header__container {
    display: block;
  }
  .l-header__button {
    top: 0;
    bottom: auto;
    width: 8rem;
    height: auto;
    margin-top: 16rem;
    z-index: 1020;
  }
  .l-header__title {
    padding-bottom: 10rem;
  }
}

/* ヘッダーロゴ */
.c-header-logo img {
  display: block;
  width: 21rem;
  margin-right: 1.5rem;
}
@media screen and (min-width: 768px), print {
  .c-header-logo img {
    width: 28rem;
    margin: 4rem 0 0;
  }
}
@media screen and (min-width: 1100px), print {
  .c-header-logo a {
    display: block;
    position: absolute;
    top: 3.1rem;
    left: 2rem;
  }
  .c-header-logo img {
    width: 28rem;
    margin: 0;
  }
}
@media screen and (min-width: 1280px), print {
  .c-header-logo a {
    top: 2.3rem;
    left: 3.5rem;
  }
  .c-header-logo img {
    width: 35.3rem;
  }
}

/* お問い合わせボタン（電話）*/
.c-tel-button {
  display: block;
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 6rem;
  height: 6rem;
  overflow: hidden;
  cursor: pointer;
  z-index: 990;
}
@media screen and (min-width: 768px), print {
  .c-tel-button {
    display: none;
  }
}
.c-tel-button a {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-color: var(--color-base);
}
.c-tel-button a:hover {
  text-decoration: none;
}
.c-tel-button a::before {
  content: "";
  display: block;
  position: absolute;
  top: 1.2rem;
  right: 0;
  left: 0;
  width: 2.2rem;
  height: 2.2rem;
  margin: auto;
  background: url(../img/base/icon-tel_wht.svg) center no-repeat;
  background-size: cover;
}
.c-tel-button a::after {
  content: "TEL";
  display: block;
  position: absolute;
  bottom: 0.8rem;
  left: 0;
  width: 100%;
  line-height: 1;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: inherit;
  color: #fff;
  text-align: center;
  letter-spacing: 0.15em;
}

/* 予約ボタン */
.c-header-button__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 1rem;
  grid-row-gap: 0px;
  padding: 0 1rem;
}
.c-header-button__link {
  display: grid;
  place-content: center;
  height: 7rem;
  line-height: 1.2;
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
  border-radius: 1rem 1rem 0 0;
  background-color: #ccc;
  box-shadow: var(--box-shadow2);
  transition: background-color var(--transition);
}
.c-header-button__link:hover {
  text-decoration: none;
  color: #fff;
}
.c-header-button__label {
  display: block;
}
.c-header-button__label::before {
  content: "";
  aspect-ratio: 1/1;
  display: block;
  width: 2rem;
  margin: 0.5rem auto 0.7rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.c-header-button__reserve .c-header-button__link {
  background-color: var(--color-sub7);
}
@media (hover: hover) and (pointer: fine) {
  .c-header-button__reserve .c-header-button__link:hover {
    background-color: var(--color-sub10);
  }
}
.c-header-button__reserve .c-header-button__label::before {
  background-image: url(../img/base/icon-calendar_wht.svg);
}
.c-header-button__line .c-header-button__link {
  background-color: var(--color-sub8);
}
@media (hover: hover) and (pointer: fine) {
  .c-header-button__line .c-header-button__link:hover {
    background-color: var(--color-sub11);
  }
}
.c-header-button__line .c-header-button__label::before {
  background-image: url(../img/base/icon-line_wht.svg);
}
.c-header-button__hours .c-header-button__link {
  background-color: var(--color-base);
}
.c-header-button__hours .c-header-button__label::before {
  background-image: url(../img/base/icon-time_wht.svg);
}
@media screen and (min-width: 768px), print {
  .c-header-button__link {
    height: 6rem;
    font-size: 2rem;
  }
  .c-header-button__label {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .c-header-button__label::before {
    width: 2.6rem;
    margin: 0 2rem 0 0;
  }
  .c-header-button__reserve .c-header-button__label::before {
    aspect-ratio: 25/26;
  }
  .c-header-button__line .c-header-button__label::before {
    aspect-ratio: 25/22;
  }
}
@media screen and (min-width: 1100px), print {
  .c-header-button__list {
    display: block;
    padding: 0;
  }
  .c-header-button__item + .c-header-button__item {
    margin-top: 1rem;
  }
  .c-header-button__link {
    height: 14rem;
    font-size: 1.8rem;
    border-radius: 1rem 0 0 1rem;
  }
  .c-header-button__label {
    display: block;
  }
  .c-header-button__label::before {
    margin: 0 auto 0.9rem;
  }
  .c-header-button__hours {
    display: none;
  }
}

/* スクロール時固定用 */
@media screen and (max-width: 1099.98px) {
  .is-fixed .l-header__container {
    box-shadow: var(--box-shadow);
  }
}
@media screen and (min-width: 1100px), print {
  .is-fixed .l-header__container {
    position: fixed;
    top: -60px;
    transform: translateY(60px);
    transition: transform var(--transition);
  }
}

/* --------------------------------

  nav

-------------------------------- */
.l-nav {
  display: block;
  position: fixed;
  top: 0;
  left: -30rem;
  width: 30rem;
  height: 100%;
  z-index: 1000;
}
.l-nav__container {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #fff;
  z-index: 10;
}
.l-nav__info {
  padding: 4rem 2rem 5rem;
}
@media screen and (min-width: 768px), print {
  .l-nav {
    position: absolute;
    left: auto;
    width: 100%;
    height: auto;
    background-color: #fff;
  }
  .l-nav__container {
    background-color: transparent;
    overflow: visible;
  }
  .l-nav__info {
    display: none;
  }
}
@media screen and (min-width: 1100px), print {
  .l-nav__container {
    display: flex;
  }
}
@media screen and (max-width: 767.98px) {
  .l-nav {
    transition: left 0.3s;
  }
  .nav-open .l-nav {
    left: 0;
  }
}

/* メインナビ */
.c-nav {
  position: relative;
  padding: 8rem 1rem 0;
}
.c-nav::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 2rem);
  height: 1rem;
  border-radius: 0 1rem 0 0;
  background: url(../img/menu/nav_bg.png) repeat right;
  background-size: 1rem auto;
}
.c-nav__item {
  position: relative;
}
.c-nav__link, .c-nav__label {
  display: flex;
  align-items: center;
  position: relative;
  height: 6rem;
  padding: 0 1rem 0 0.8rem;
  font-weight: 500;
  font-size: 1.8rem;
  color: var(--color-text);
  letter-spacing: normal;
}
.c-nav__link:hover {
  text-decoration: none;
  color: var(--color-text);
}
.c-nav__link::before, .c-nav__label::before {
  content: "";
  display: block;
  width: 3.4rem;
  height: 3.4rem;
  margin-right: 1.5rem;
  border-radius: 100%;
  background-color: var(--color-sub4);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 55% auto;
}
.c-nav__item--home .c-nav__link::before {
  background-image: url(../img/menu/nav1.svg);
}
.c-nav__item--news .c-nav__link::before {
  background-image: url(../img/menu/nav2.svg);
}
.c-nav__item--info .c-nav__label::before {
  background-image: url(../img/menu/nav3.svg);
  background-position: 60% 60%;
  background-size: 50% auto;
}
.c-nav__item--medical .c-nav__label::before {
  background-image: url(../img/menu/nav4.svg);
}
.c-nav__item--access .c-nav__link::before {
  background-image: url(../img/menu/nav5.svg);
}
.c-nav__item--recruit .c-nav__link::before {
  background-image: url(../img/menu/nav6.svg);
}
.c-nav__item--group .c-nav__link::before {
  background-image: url(../img/menu/nav7.svg);
}
@media screen and (min-width: 768px), print {
  .c-nav {
    display: flex;
    justify-content: center;
    padding: 11rem 0 0;
  }
  .c-nav::before {
    left: 2rem;
    height: 1.5rem;
    border-radius: 0 0 0 2rem;
    background-size: 1.5rem auto;
  }
  .c-nav__item + .c-nav__item {
    margin-left: 3rem;
  }
  .c-nav__link, .c-nav__label {
    flex-direction: column;
    justify-content: center;
    height: 10rem;
    padding: 0;
    font-size: 1.6rem;
  }
  .c-nav__link::before, .c-nav__label::before {
    margin: 0 auto 0.5rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-nav {
    display: flex;
    justify-content: flex-start;
    margin: 0 0 0 auto;
    padding: 1.4rem 2rem 0.6rem;
  }
  .c-nav::before {
    left: 0;
    width: 100%;
  }
  .c-nav__item + .c-nav__item {
    margin-left: 1.5rem;
  }
  .c-nav__link, .c-nav__label {
    padding-top: 0.6rem;
    font-size: 1.9rem;
  }
  .c-nav__item.is-current .c-nav__link, .c-nav__item.is-current .c-nav__label {
    color: var(--color-link);
  }
  .c-nav__item.is-current .c-nav__link::before, .c-nav__item.is-current .c-nav__label::before {
    background-color: var(--color-link);
  }
  .c-nav__item.is-current .dropdown-toggle::before {
    border-color: var(--color-link);
  }
}
@media screen and (min-width: 1280px), print {
  .c-nav {
    padding-right: 4rem;
    padding-left: 4rem;
  }
  .c-nav__item + .c-nav__item {
    margin-left: 2.5rem;
  }
}
@media screen and (min-width: 1100px) and (hover: hover) and (pointer: fine), print {
  .c-nav__link:hover {
    color: var(--color-link);
  }
  .c-nav__link:hover::before {
    background-color: var(--color-link);
  }
}

/* サブメニュー */
.c-subnav {
  margin: 0 1rem 1rem;
  border-radius: 2rem;
  overflow: hidden;
}
.c-subnav__link {
  display: block;
  padding: 1.5rem 0;
  line-height: 1.2;
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
  background-color: var(--color-base);
  transition: color var(--transition), background-color var(--transition);
}
.c-subnav__link:hover {
  text-decoration: none;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .c-subnav__link:hover {
    color: var(--color-link);
    background-color: var(--color-sub9);
  }
}
@media screen and (min-width: 768px), print {
  .c-subnav {
    position: relative;
    left: 50%;
    width: 24rem;
    margin: 0 0 0 -12rem;
    border-radius: 2rem;
  }
  .c-subnav__link {
    display: grid;
    place-content: center;
    height: 6rem;
    padding: 0;
  }
}
@media screen and (min-width: 1100px), print {
  .c-subnav__link {
    height: 5rem;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1440px), print {
  .c-subnav {
    width: 30rem;
    margin: 0 0 0 -15rem;
    border-radius: 3rem;
  }
  .c-subnav__link {
    height: 6rem;
    font-size: 2.1rem;
  }
}

/* 医院情報 */
.c-nav-info {
  text-align: center;
}
.c-nav-info__logo {
  margin: 0 1rem 1rem;
}
.c-nav-info__add {
  margin-bottom: 2rem;
}
.c-nav-info__tel {
  margin-bottom: 3rem;
}
.c-nav-info__tel .c-global-tel__num {
  font-size: 2rem;
}
.c-nav-info__time {
  width: calc(100% + 1rem);
  margin: -0.5rem;
  line-height: 1.2;
  font-size: 1.6rem;
  border-collapse: separate;
  border-spacing: 0.5rem;
}
.c-nav-info__time caption {
  caption-side: top;
  margin: 0 0.5rem;
  padding: 0.8rem 0;
  color: #fff;
  border-radius: 0.5rem;
  background-color: var(--color-main);
}
.c-nav-info__time th,
.c-nav-info__time td {
  vertical-align: middle;
  padding: 0.8rem 0;
  border-radius: 0.5rem;
}
.c-nav-info__time th {
  width: 9rem;
  color: #fff;
  background-color: var(--color-sub4);
}
.c-nav-info__time td {
  text-align: center;
  background-color: var(--color-sub3);
}
.c-nav-info__time--note {
  margin-top: 1rem;
  font-size: 1.2rem;
  text-align: left;
}

/* ナビゲーション開閉ボタン */
.c-nav-button {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 7rem;
  height: 8rem;
  line-height: 1;
  font-family: inherit;
  background-color: transparent;
  cursor: pointer;
  z-index: 910;
}
@media screen and (min-width: 768px), print {
  .c-nav-button {
    display: none;
  }
}
.c-nav-button::before {
  content: "MENU";
  display: block;
  position: absolute;
  bottom: 1.8rem;
  left: 0;
  width: 100%;
  line-height: 1;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-main);
  text-align: center;
}
.c-nav-button__icon {
  display: block;
  position: absolute;
  inset: 0;
  top: -2rem;
  width: 3.2rem;
  height: 2rem;
  margin: auto;
  border-top: 2px solid var(--color-main);
  border-bottom: 2px solid var(--color-main);
}
.c-nav-button__icon::before, .c-nav-button__icon::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 2px;
  margin: auto;
  border-top: 2px solid var(--color-main);
}
.c-nav-button__icon::after {
  display: none;
}
.c-nav-button__close {
  position: absolute;
  top: 1rem;
  z-index: 10;
}
@media screen and (max-width: 767.98px) {
  .nav-open .c-nav-button__close {
    display: block;
  }
}
.c-nav-button__close::before {
  content: "CLOSE";
}
.c-nav-button__close .c-nav-button__icon {
  border: none;
}
.c-nav-button__close .c-nav-button__icon::before {
  transform: rotate(45deg);
}
.c-nav-button__close .c-nav-button__icon::after {
  display: block;
  transform: rotate(-45deg);
}

/* ナビゲーション背景 */
@media screen and (min-width: 768px), print {
  .o-nav-screen {
    display: none;
  }
}
.o-nav-screen__overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}
.nav-open .o-nav-screen__overlay {
  pointer-events: auto;
  opacity: 0.35;
  cursor: pointer;
}

/* ドロップダウン：ボタン */
.dropdown-toggle {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 6rem;
  background: transparent;
  z-index: 10;
}
.dropdown-toggle:hover {
  cursor: pointer;
}
.dropdown-toggle::before {
  content: "";
  display: block;
  position: absolute;
  top: 2.4rem;
  right: 2rem;
  width: 1rem;
  height: 1rem;
  border-top: 2px solid #ccc;
  border-right: 2px solid #ccc;
  transform: rotate(135deg);
}
.dropdown-toggle.show::before {
  top: 2.8rem;
  border-color: var(--color-link);
  transform: rotate(-45deg);
}
.dropdown-toggle.show + .c-nav__link, .dropdown-toggle.show + .c-nav__label {
  color: var(--color-link);
}
.dropdown-toggle.show + .c-nav__link::before, .dropdown-toggle.show + .c-nav__label::before {
  background-color: var(--color-link);
}
.dropdown-toggle::after {
  display: none;
}
@media screen and (min-width: 768px), print {
  .dropdown-toggle {
    height: 100%;
    z-index: 30;
  }
  .dropdown-toggle::before {
    top: auto;
    right: 0;
    bottom: 0.5rem;
    left: 0;
    width: 0.9rem;
    height: 0.9rem;
    margin: auto;
    border-color: var(--color-text);
  }
  .dropdown-toggle.show::before {
    top: auto;
    bottom: 0.1rem;
  }
}
@media screen and (min-width: 1100px) and (hover: hover) and (pointer: fine), print {
  .dropdown-toggle:hover::before {
    border-color: var(--color-link);
  }
  .dropdown-toggle:hover + .c-nav__link, .dropdown-toggle:hover + .c-nav__label {
    color: var(--color-link);
  }
  .dropdown-toggle:hover + .c-nav__link::before, .dropdown-toggle:hover + .c-nav__label::before {
    background-color: var(--color-link);
  }
}

/* ドロップダウン：メニュー */
.dropdown-menu {
  display: block !important;
  position: absolute;
  min-width: 0;
  width: 100%;
  margin: 0;
  margin-top: -10px !important;
  padding: 0;
  font-size: 100%;
  color: var(--color-text);
  text-align: left;
  list-style: none;
  border: none;
  border-radius: 0;
  background-color: transparent;
  background-clip: padding-box;
  z-index: 1000;
}
@media screen and (max-width: 767.98px) {
  .dropdown-menu {
    position: static !important;
    margin-top: 0 !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
  }
  .dropdown-menu.show {
    inset: auto !important;
    transform: none !important;
    max-height: var(--max-height);
  }
}
@media screen and (min-width: 768px), print {
  .dropdown-menu {
    margin-top: -10px !important;
    transition: margin-top var(--transition), opacity var(--transition);
    opacity: 0;
    pointer-events: none;
  }
  .dropdown-menu.show {
    margin-top: 20px !important;
    opacity: 1;
    pointer-events: auto;
  }
}

/* スクロール時固定用 */
@media screen and (min-width: 1100px), print {
  .is-fixed .l-nav {
    position: fixed;
    top: -60px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: var(--box-shadow);
    transform: translateY(60px);
    transition: transform var(--transition);
  }
}

/* --------------------------------

  main

-------------------------------- */
.l-main {
  padding: 0 2rem 10rem;
  background-color: var(--color-sub1);
}
@media screen and (min-width: 1100px), print {
  .l-main {
    padding: 0 5rem 15rem;
  }
}

/* --------------------------------

  footer

-------------------------------- */
.l-footer {
  background-color: #fff;
}
.l-footer__container {
  padding: 0 2rem;
}
.l-footer__info {
  padding: 5rem 0;
}
.l-footer__access {
  margin-bottom: 5rem;
}
.l-footer__nav {
  margin: 0 -1rem -1rem 0;
  padding: 5rem 0;
  overflow: hidden;
}
.l-footer__group {
  margin: 0 -2rem;
  padding: 5rem 2rem;
  text-align: center;
  background-color: var(--color-sub1);
}
@media screen and (min-width: 1100px), print {
  .l-footer__container {
    padding: 0 5rem;
  }
  .l-footer__info {
    padding: 6rem 0;
  }
  .l-footer__access {
    margin-bottom: 0;
  }
  .l-footer__timetable {
    position: fixed;
    top: 0;
    right: -82rem;
    width: 90rem;
    margin: 46rem 0 0 0;
    z-index: 1020;
    transition: right 0.35s;
  }
  .l-footer__timetable:hover {
    right: 0;
  }
  .l-footer__nav {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 4rem 0;
  }
  .l-footer__group {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 -5rem;
    padding: 4rem 0;
    text-align: left;
  }
}

/* フッターロゴ */
.c-footer-logo {
  display: inline-block;
  vertical-align: top;
}
/* 医院情報 */
.c-footer-info {
  text-align: center;
}
.c-footer-info__logo {
  margin-bottom: 2rem;
}
.c-footer-info__logo img {
  width: 30rem;
}
.c-footer-info__add {
  margin-bottom: 2rem;
}
.c-footer-info__add .label {
  display: grid;
  place-content: center;
  width: 8rem;
  height: 3rem;
  margin: 0 auto 1rem;
  border-radius: 10em;
}
@media screen and (min-width: 768px), print {
  .c-footer-info__logo img {
    width: 34rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-footer-info__logo {
    margin-bottom: 3rem;
  }
  .c-footer-info__add {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 3rem;
  }
  .c-footer-info__add .label {
    width: 8.4rem;
    height: 3.1rem;
    margin: 0 2rem 0 0;
    padding: 0 0 0.2ch;
  }
}
@media screen and (min-width: 1280px), print {
  .c-footer-info__add {
    display: inline-flex;
    vertical-align: middle;
    margin: 0 3rem 0 0;
  }
  .c-footer-info__tel {
    display: inline-block;
    vertical-align: middle;
  }
}
@media screen and (min-width: 1440px), print {
  .c-footer-info {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: var(--inner-width2);
    text-align: left;
  }
  .c-footer-info__logo {
    margin-bottom: 0;
  }
  .c-footer-info__add {
    display: flex;
    margin: 0 5rem;
  }
  .c-footer-info__tel {
    display: block;
  }
}
@media screen and (min-width: 1600px), print {
  .c-footer-info__logo img {
    width: 38.2rem;
  }
  .c-footer-info__add {
    flex: 1;
    margin: 0;
  }
}

/* アクセス */
.c-footer-access {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  padding: 2rem;
  border-radius: 1rem;
  background-color: var(--color-sub1);
}
.c-footer-access__title {
  position: relative;
  margin-bottom: 1.5rem;
  padding: 0 0 1.5rem 1.2em;
  line-height: 1.2;
  font-size: 1.8rem;
  border-bottom: 2px dashed var(--color-sub4);
}
.c-footer-access__title::before {
  content: "●";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.c-footer-access__item + .c-footer-access__item {
  margin-top: 0.85rem;
}
@media screen and (min-width: 768px), print {
  .c-footer-access {
    grid-row-gap: 3rem;
    padding: 3rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-footer-access {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 5rem;
    grid-row-gap: 0px;
    max-width: var(--inner-width2);
    padding: 2.5rem 5rem;
  }
  .c-footer-access__item {
    font-size: 1.4rem;
  }
}

/* 診療時間表 */
.c-footer-timetable__container {
  margin: 0 -2rem;
  padding: 1rem;
  background-color: var(--color-base);
}
.c-footer-timetable__label {
  display: none;
}
.c-footer-timetable__body {
  padding: 1rem;
  border-radius: 1rem;
  background-color: #fff;
}
@media screen and (min-width: 768px), print {
  .c-footer-timetable__container {
    padding: 2rem;
  }
  .c-footer-timetable__body {
    padding: 3rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-footer-timetable__container {
    display: flex;
    margin: 0;
    padding: 2rem 0 2rem 0;
    border-radius: 1rem 0 0 1rem;
    box-shadow: var(--box-shadow2);
  }
  .c-footer-timetable__header {
    display: grid;
    place-content: center;
    width: 8rem;
  }
  .c-footer-timetable__label {
    display: block;
    line-height: 1.2;
    font-size: 1.8rem;
    color: #fff;
    text-align: center;
  }
  .c-footer-timetable__label::before {
    content: "";
    aspect-ratio: 1/1;
    display: block;
    width: 2.6rem;
    margin: -1rem auto 1rem;
    background: url(../img/base/icon-time_wht.svg) no-repeat center;
    background-size: cover;
  }
  .c-footer-timetable__body {
    border-radius: 1rem 0 0 1rem;
  }
  .c-footer-timetable__body .c-timetable td {
    width: 8rem;
  }
}

/* フッターナビ */
.c-footer-nav__list {
  display: inline;
}
.c-footer-nav__item {
  float: left;
  width: 50%;
  padding: 0 1rem 1rem 0;
}
.c-footer-nav__link {
  display: block;
  padding: 1rem 0;
  color: var(--color-text);
  text-align: center;
  border-radius: 0.5rem;
  border: 1px solid var(--color-hover);
}
.c-footer-nav__link:hover {
  text-decoration: none;
  color: var(--color-link);
}
@media screen and (min-width: 768px), print {
  .c-footer-nav__item {
    width: 33.33333%;
  }
}
@media screen and (min-width: 1100px), print {
  .c-footer-nav__list {
    display: block;
  }
  .c-footer-nav__list + .c-footer-nav__list {
    margin-left: 12rem;
  }
  .c-footer-nav__item {
    float: none;
    width: auto;
    padding: 0;
  }
  .c-footer-nav__item + .c-footer-nav__item {
    margin-top: 2rem;
  }
  .c-footer-nav__link {
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: -1rem -1rem -1rem 0;
    padding: 1rem 1rem 1rem 2.5ch;
    text-align: left;
    border-radius: 0;
    border: none;
  }
  .c-footer-nav__link:hover {
    text-decoration: none;
    color: var(--color-link);
  }
  .c-footer-nav__link::before {
    content: "";
    display: block;
    position: absolute;
    top: calc(1rem + 0.85ch);
    left: 0;
    width: 1rem;
    height: 1rem;
    border-radius: 100%;
    background-color: var(--color-sub6);
  }
}
@media screen and (min-width: 1280px), print {
  .c-footer-nav__list + .c-footer-nav__list {
    margin-left: 20rem;
  }
}

/* グループ */
.c-footer-group__logo {
  margin-bottom: 4rem;
}
.c-footer-group__list + .c-footer-group__list {
  margin-top: 1.5rem;
}
.c-footer-group__item + .c-footer-group__item {
  margin-top: 1.5rem;
}
.c-footer-group__link {
  display: inline-block;
  vertical-align: top;
  margin: -1rem;
  padding: 1rem;
  color: var(--color-text);
}
.c-footer-group__link:hover {
  color: var(--color-link);
}
@media screen and (min-width: 1100px), print {
  .c-footer-group__logo {
    margin: 0 12rem 0 0;
  }
  .c-footer-group__list + .c-footer-group__list {
    margin: 0 0 0 12rem;
  }
}

/* ページの先頭へ */
.c-footer-pagetop {
  display: block;
  position: fixed;
  right: 1rem;
  bottom: 9rem;
  width: 4.5rem;
  height: 4.5rem;
  overflow: hidden;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px), print {
  .c-footer-pagetop {
    right: 1rem;
    bottom: 9rem;
    width: 5rem;
    height: 5rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-footer-pagetop {
    right: 1rem;
    bottom: 1rem;
  }
}
.is-fixed .c-footer-pagetop {
  opacity: 1;
  pointer-events: auto;
}
.c-footer-pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  background-color: var(--color-link);
  transition: background-color var(--transition);
}
.c-footer-pagetop a:hover {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .c-footer-pagetop a:hover {
    background-color: var(--color-hover);
  }
}
.c-footer-pagetop a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.8rem;
  right: 0;
  bottom: 0;
  left: 0;
  width: 1.2rem;
  height: 1.2rem;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
}

/* コピーライト */
.c-footer-copy {
  display: grid;
  place-content: center;
  height: 4.5rem;
  text-align: center;
  background-color: var(--color-sub3);
}
.c-footer-copy small {
  display: block;
  font-size: 1.2rem;
  color: var(--color-main);
  letter-spacing: 0.05em;
}
.c-footer-copy span {
  display: none;
}
@media screen and (min-width: 768px), print {
  .c-footer-copy small {
    font-size: 1.4rem;
  }
  .c-footer-copy span {
    display: inline;
  }
}
@media screen and (min-width: 1100px), print {
  .c-footer-copy small {
    font-size: 1.6rem;
  }
}

/* --------------------------------

  ページタイトル

-------------------------------- */
.c-page-title {
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: 70% 0%;
  background-size: cover;
}
.c-page-title__container {
  display: grid;
  place-content: center left;
  position: relative;
  aspect-ratio: 2/1;
}
.c-page-title__heading {
  display: inline-block;
  vertical-align: top;
  min-width: 12ch;
  padding: 0.6ch 1.4ch;
  line-height: 1em;
  font-size: 3rem;
  text-align: center;
  border-radius: 0 0.5rem 0.5rem 0;
  background-color: rgba(255, 255, 255, 0.9);
}
@media screen and (min-width: 768px), print {
  .c-page-title__container {
    height: 30rem;
  }
  .c-page-title__heading {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .c-page-title__container {
    height: 35rem;
  }
  .c-page-title__heading {
    font-size: 4.4rem;
  }
}

/* --------------------------------

  診療時間表

-------------------------------- */
.c-timetable {
  width: calc(100% + 1rem);
  margin: -0.5rem;
  line-height: 1.2;
  font-size: 1.8rem;
  border-collapse: separate;
  border-spacing: 0.5rem;
}
.c-timetable th,
.c-timetable td {
  vertical-align: middle;
  padding: 1.2rem 0;
  color: #fff;
  border-radius: 0.5rem;
}
.c-timetable th {
  padding-left: 1.6rem;
}
.c-timetable td {
  width: 8rem;
}
.c-timetable thead th,
.c-timetable thead td {
  background-color: var(--color-main);
}
.c-timetable thead td {
  text-align: center;
}
.c-timetable tbody th {
  background-color: var(--color-sub4);
}
.c-timetable tbody td {
  text-align: center;
  background-color: var(--color-sub3);
}
.c-timetable .td-open {
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  margin: auto;
  border-radius: 100%;
  background-color: var(--color-base);
}
.c-timetable .td-closed {
  display: block;
  width: 1.5rem;
  height: 0.3rem;
  margin: auto;
  background-color: var(--color-text);
}
.c-timetable__note {
  margin-top: 1rem;
  line-height: 1.5;
  font-size: 1.4rem;
}
@media screen and (max-width: 1099.98px) {
  .c-timetable td {
    width: 6rem;
  }
}
@media screen and (max-width: 767.98px) {
  .c-timetable {
    font-size: 1.4rem;
  }
  .c-timetable td {
    width: 11%;
  }
  .c-timetable thead th,
  .c-timetable thead td {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 1.4rem;
  }
  .c-timetable thead th {
    width: auto;
    padding-right: 0;
    padding-left: 0;
    text-align: center;
  }
  .c-timetable tbody th {
    padding: 1rem;
    text-align: center;
  }
  .c-timetable tbody td {
    padding: 1rem 0;
  }
  .c-timetable .td-open {
    width: 1rem;
    height: 1rem;
  }
  .c-timetable .td-closed {
    width: 1.2rem;
    height: 0.3rem;
  }
  .c-timetable__note {
    font-size: 1.2rem;
  }
}
/* --------------------------------

  ローディング

-------------------------------- */
.loader {
  display: grid;
  place-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  opacity: 1;
  pointer-events: none;
}
.loader.is-loaded {
  animation: fadeOut 1s forwards;
}
.loader.is-reloaded {
  animation: fadeOut 0.3s forwards;
}
.loader-logo {
  display: block;
  width: 21rem;
  opacity: 0;
  transform: translateY(100px);
}
.loader-logo.is-loaded {
  animation: fadeInUp 0.5s forwards;
}
@media screen and (min-width: 768px), print {
  .loader-logo {
    width: 30rem;
  }
}

/* --------------------------------

  アニメーション

-------------------------------- */
.js-anime {
  pointer-events: none;
}
.js-anime.is-active {
  pointer-events: auto;
}
.js-anime.fadeIn {
  opacity: 0;
}
.js-anime.fadeIn.is-active {
  animation: fadeIn 0.75s forwards;
}
.js-anime.fadeInUp {
  opacity: 0;
  transform: translateY(100px);
}
.js-anime.fadeInUp.is-active {
  animation: fadeInUp 0.75s forwards;
}
.js-anime.fadeZoomIn {
  opacity: 0;
  transform: scale(1.4);
}
.js-anime.fadeZoomIn.is-active {
  animation: fadeZoomIn 0.75s forwards;
}
.js-anime.fadeInRight {
  opacity: 0;
  transform: translateX(100px);
}
.js-anime.fadeInRight.is-active {
  animation: fadeInRight 0.75s forwards;
}
.js-anime.fadeInLeft {
  opacity: 0;
  transform: translateX(-100px);
}
.js-anime.fadeInLeft.is-active {
  animation: fadeInLeft 0.75s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeZoomIn {
  from {
    opacity: 0;
    transform: scale(1.4);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
/* --------------------------------

  トップページ

-------------------------------- */
/* メイングラフィック */
.p-mv__section {
  position: relative;
  margin: 0 -2rem;
}
.p-mv__container {
  display: flex;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 0 2rem;
  z-index: 10;
  opacity: 0;
}
.p-mv__container.is-loaded {
  animation: fadeInLeft 1s forwards;
}
.p-mv__container.is-reloaded {
  opacity: 1;
}
.p-mv__inner {
  position: static;
  width: 100%;
}
.p-mv__catch {
  margin-bottom: 1rem;
}
.p-mv__catch--item {
  display: inline-block;
  vertical-align: top;
  padding: 0.6ch 1.4ch;
  line-height: 1em;
  font-size: calc(1.8rem + 1.4vw);
  letter-spacing: normal;
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.9);
}
.p-mv__catch--item:not(:last-child) {
  margin-bottom: 1rem;
}
.p-mv__text {
  line-height: 1.5;
  font-size: calc(0.6rem + 1.4vw);
  color: #000;
  letter-spacing: normal;
  text-shadow: var(--text-shadow);
}
.p-mv__badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 30%;
  max-width: 16rem;
}
.p-mv__badge img {
  width: 100%;
}
@media screen and (min-width: 768px), print {
  .p-mv__container {
    padding: 0 5rem;
  }
  .p-mv__catch {
    margin-bottom: 2rem;
  }
  .p-mv__catch--item {
    font-size: calc(2rem + 2vw);
  }
  .p-mv__catch--item:not(:last-child) {
    margin-bottom: 1.6rem;
  }
  .p-mv__text {
    line-height: 1.8;
  }
  .p-mv__badge {
    right: 1.8rem;
    bottom: 1.8rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-mv__section {
    margin: 0 -5rem;
  }
  .p-mv__container {
    padding: 0 10rem;
  }
  .p-mv__inner {
    position: relative;
  }
  .p-mv__catch--item {
    padding: 1rem 3rem;
    font-size: 4.4rem;
  }
  .p-mv__text {
    font-size: 2.2rem;
  }
  .p-mv__badge {
    position: static;
    max-width: none;
    width: 15.5rem;
    margin-top: 1.6rem;
  }
}

/* スライダー */
.p-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.p-slider .swiper-wrapper {
  height: 100%;
}
.p-slider .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.p-slider__container, .p-slider__img {
  aspect-ratio: 1.2/1;
}
.p-slider__container {
  position: relative;
  overflow: hidden;
  opacity: 0;
}
.p-slider__container.is-loaded {
  animation: fadeIn 1s forwards;
}
.p-slider__container.is-reloaded {
  opacity: 1;
}
.p-slider__img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.p-slider__img img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.p-slider__pagination.swiper-pagination {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 1.5rem;
}
.p-slider__pagination .swiper-pagination-bullet {
  display: block !important;
  width: 1.2rem;
  height: 1.2rem;
  margin: 0 0.6rem !important;
  background-color: #fff;
  opacity: 1;
}
.p-slider__pagination .swiper-pagination-bullet-active {
  background-color: var(--color-base);
}
@media screen and (min-width: 768px), print {
  .p-slider__container, .p-slider__img {
    aspect-ratio: 3/2;
  }
  .p-slider__pagination.swiper-pagination {
    bottom: 2rem;
  }
  .p-slider__pagination .swiper-pagination-bullet {
    width: 1.5rem;
    height: 1.5rem;
    margin: 0 0.75rem !important;
  }
}
@media screen and (min-width: 1100px), print {
  .p-slider__container, .p-slider__img {
    aspect-ratio: auto;
    height: 70rem;
  }
  .p-slider__pagination.swiper-pagination {
    bottom: 3.5rem;
  }
  .p-slider__pagination .swiper-pagination-bullet {
    width: 2rem;
    height: 2rem;
    margin: 0 1rem !important;
  }
}

/* お知らせ */
.p-top-news__section {
  margin: 0 -2rem;
  padding: 3rem 2rem;
  background: url(../img/top/bg_news.png) no-repeat top;
  background-size: cover;
}
.p-top-news__container {
  border-radius: 1rem;
  box-shadow: var(--box-shadow4);
  overflow: hidden;
}
.p-top-news__header {
  display: grid;
  place-content: center;
  height: 5.5rem;
  background-color: rgba(239, 119, 146, 0.7);
}
.p-top-news__heading {
  font-size: 2rem;
  letter-spacing: 0.1em;
}
.p-top-news__heading a {
  color: #fff;
}
.p-top-news__body {
  background-color: #fff;
}
.p-top-news__link {
  font-size: 1.6rem;
}
.p-top-news__link:hover {
  text-decoration: none;
  color: var(--color-link);
}
.p-top-news__date {
  font-size: 1.4rem;
  color: var(--color-text);
}
.p-top-news__title {
  word-break: break-all;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.p-top-news__link:hover .p-top-news__date {
  color: var(--color-link);
}
.p-top-news__link:hover .p-top-news__title {
  text-decoration: underline;
}
.p-top-news__slider {
  height: 12ch;
}
.p-top-news__slider .swiper-wrapper,
.p-top-news__slider .swiper-slide {
  height: 100%;
}
.p-top-news__slider .swiper-slide {
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
}
@media screen and (min-width: 768px), print {
  .p-top-news__container {
    display: flex;
  }
  .p-top-news__header {
    width: 16rem;
    height: 6.8rem;
  }
  .p-top-news__body {
    width: calc(100% - 16rem);
  }
  .p-top-news__link {
    display: flex;
  }
  .p-top-news__date {
    width: 11rem;
    font-size: 1.6rem;
  }
  .p-top-news__title {
    flex: 1;
    -webkit-line-clamp: 1;
  }
  .p-top-news__slider {
    height: 100%;
  }
  .p-top-news__slider .swiper-slide {
    padding: 0 3.2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-top-news__section {
    margin: 0 -5rem;
    padding: 3.6rem 5rem;
  }
  .p-top-news__heading {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1280px), print {
  .p-top-news__date {
    width: 14rem;
  }
}

/* 当院の特徴 */
.p-top-intro__container {
  padding: 5rem 0 0;
}
.p-top-intro__caption {
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
}
.p-top-intro__text {
  font-size: 1.6rem;
}
.p-top-intro__service {
  margin-top: 3.5rem;
  padding: 3rem 2rem;
}
.p-top-intro__more {
  padding: 3rem 0;
}
@media screen and (min-width: 768px), print {
  .p-top-intro__service {
    margin-top: 4rem;
    padding: 4rem 3rem;
  }
  .p-top-intro__caption {
    font-size: 2.8rem;
  }
  .p-top-intro__more {
    padding: 4rem 0;
  }
}
@media screen and (min-width: 1100px), print {
  .p-top-intro__container {
    padding: 13rem 0 0;
  }
  .p-top-intro__caption {
    font-size: 3.6rem;
  }
  .p-top-intro__text {
    font-size: 2rem;
  }
  .p-top-intro__service {
    margin-top: 5rem;
    padding: 5rem;
  }
  .p-top-intro__more {
    padding: 6rem 0;
  }
}

/* 特徴一覧 */
.p-top-service__list {
  counter-reset: top_menu_list;
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-column-gap: 0px;
  grid-row-gap: 3rem;
}
.p-top-service__header {
  margin-bottom: 1.5rem;
  text-align: center;
}
.p-top-service__header::before {
  counter-increment: top_menu_list;
  content: counter(top_menu_list);
  display: grid;
  place-content: center;
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  font-weight: 500;
  font-size: 2em;
  color: #fff;
  border-radius: 100%;
  background-color: var(--color-base);
}
.p-top-service__heading {
  font-size: 2.2rem;
}
.p-top-service__img {
  display: block;
  position: relative;
  margin-bottom: 2rem;
}
.p-top-service__img::before {
  content: "";
  aspect-ratio: 1/1;
  display: block;
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  width: 25%;
  border-radius: 1rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  pointer-events: none;
}
.p-top-service__img .u-img-wrap {
  aspect-ratio: 520/300;
}
.p-top-service__img img {
  border-radius: 2rem 0 0 0;
}
.p-top-service__item:nth-child(odd) .p-top-service__img::before {
  background-image: url(../img/base/bg_img1.png);
}
.p-top-service__item:nth-child(even) .p-top-service__img::before {
  background-image: url(../img/base/bg_img2.png);
}
@media screen and (min-width: 768px), print {
  .p-top-service__list {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 3rem;
    grid-row-gap: 5rem;
  }
  .p-top-service__heading {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-top-service__list {
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 5rem;
  }
  .p-top-service__item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    gap: 0px;
  }
  .p-top-service__header {
    display: grid;
    place-content: center;
    position: relative;
    padding-top: 6rem;
  }
  .p-top-service__header::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 5rem;
    height: 5rem;
    margin: auto;
    font-size: 3.6rem;
  }
  .p-top-service__img {
    margin-bottom: 3rem;
  }
  .p-top-service__img::before {
    right: -2rem;
    bottom: -2rem;
    width: 10rem;
    border-radius: 2rem;
  }
}
@media screen and (min-width: 1600px), print {
  .p-top-service__heading {
    font-size: 2.8rem;
  }
  .p-top-service__text {
    margin-right: -1ch;
    font-size: 1.8rem;
  }
}

/* 診療案内 */
.p-top-info__section {
  margin: 0 -2rem;
  padding: 0 2rem;
}
.p-top-info__container {
  padding: 5rem 0;
}
.p-top-info__hours {
  margin-bottom: 5rem;
  padding: 2rem;
}
.p-top-info__list {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-column-gap: 1rem;
  grid-row-gap: 2rem;
}
.p-top-info__item {
  position: relative;
  color: #fff;
  background-color: var(--color-link);
  overflow: hidden;
  transition: color var(--transition), background-color var(--transition);
}
.p-top-info__img {
  aspect-ratio: 2/1;
  background-color: #fff;
}
.p-top-info__img img {
  transition: opacity var(--transition), transform var(--transition);
}
.p-top-info__title {
  position: relative;
  padding: 1.5rem 0 2rem;
  line-height: 1.2;
  font-size: calc(1.8rem + 2vw);
  text-align: center;
}
.p-top-info__title .subtitle {
  margin-top: 0.5em;
  font-size: 0.45em;
  letter-spacing: 0.3em;
}
.p-top-info__more a:hover {
  text-decoration: none;
}
.p-top-info__more a::before {
  content: "";
  display: block;
  width: 3.4rem;
  height: 3.4rem;
  margin: -0.5em auto 1.4rem;
  border-radius: 100%;
  background: var(--color-sub6) url(../img/base/icon-arrow_wht.svg) no-repeat center;
  background-size: 60% auto;
  pointer-events: none;
  transition: background-color var(--transition);
}
.p-top-info__more a::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 10;
}
@media (hover: hover) and (pointer: fine) {
  .p-top-info__item:hover {
    color: var(--color-link);
    background-color: var(--color-sub6);
  }
  .p-top-info__item:hover .p-top-info__img img {
    opacity: 0.75;
    transform: scale(1.05);
  }
  .p-top-info__item:hover .p-top-info__more a::before {
    background-color: var(--color-link);
  }
}
@media screen and (min-width: 768px), print {
  .p-top-info__hours {
    padding: 3rem;
  }
  .p-top-info__list {
    grid-template-columns: repeat(3, 1fr);
  }
  .p-top-info__img {
    aspect-ratio: 1/1;
  }
  .p-top-info__title {
    font-size: calc(1.4rem + 1.2vw);
  }
}
@media screen and (min-width: 1100px), print {
  .p-top-info__section {
    margin: 0 -5rem;
    padding: 0 5rem;
  }
  .p-top-info__container {
    padding: 12rem 0 10rem;
  }
  .p-top-info__hours {
    padding: 4.5rem 7.5rem 4rem;
  }
  .p-top-info__list {
    grid-column-gap: 2rem;
  }
  .p-top-info__img {
    aspect-ratio: 410/430;
  }
  .p-top-info__title {
    padding: 2rem 0 2.5rem;
    font-size: 3rem;
  }
  .p-top-info__more a::before {
    width: 4.2rem;
    height: 4.2rem;
  }
}
@media screen and (min-width: 1280px), print {
  .p-top-info__list {
    grid-column-gap: 3.5rem;
  }
  .p-top-info__title {
    padding: 2rem 0 2.5rem 2rem;
    text-align: left;
  }
  .p-top-info__more a::before {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    margin: 0;
    background-size: 70% auto;
  }
}
@media screen and (min-width: 1600px), print {
  .p-top-info__title {
    padding: 2.5rem 0 3rem 3.5rem;
    font-size: 3.6rem;
  }
}

/* 子どもの整形治療 */
.p-top-child__section {
  position: relative;
  margin: 0 -2rem;
  overflow: hidden;
}
.p-top-child__container {
  padding: 20% 2rem 3rem;
}
.p-top-child__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.p-top-child__img .u-img-wrap {
  aspect-ratio: auto;
  height: 100%;
}
.p-top-child__img::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgb(255, 198, 221) 30%, rgba(255, 198, 221, 0) 100%);
}
.p-top-child__main {
  position: relative;
  text-align: center;
  z-index: 1;
  text-shadow: var(--text-shadow);
}
.p-top-child__heading {
  margin-bottom: 2rem;
  font-size: calc(1.4rem + 3vw);
}
.p-top-child__text {
  font-size: 1.6rem;
}
.p-top-child__more {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px), print {
  .p-top-child__container {
    padding: 5rem;
  }
  .p-top-child__img {
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    width: 54%;
  }
  .p-top-child__img::after {
    top: 0;
    bottom: auto;
    width: 30%;
    background: linear-gradient(to right, rgb(255, 198, 221) 0%, rgba(255, 198, 221, 0) 100%);
  }
  .p-top-child__main {
    text-align: left;
  }
  .p-top-child__heading {
    font-size: 3.8rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-top-child__section {
    margin: 0 -5rem;
    padding: 0 5rem;
  }
  .p-top-child__container {
    position: static;
    padding: 7rem 0;
  }
  .p-top-child__heading {
    margin-bottom: 2.5rem;
    font-size: 4.2rem;
  }
  .p-top-child__more {
    margin: 2.5rem 0 0 2rem;
  }
}

/* 採用情報 */
.p-top-recruit__section {
  margin: 0 -2rem;
  padding: 5rem 0 0;
}
.p-top-recruit__container {
  padding: 5rem 2rem;
  background: url(../img/top/bg_recruit.png) repeat top;
  background-size: 15rem auto;
}
.p-top-recruit__inner {
  padding: 5rem 0;
  border-radius: 1rem;
  background-color: #fff;
  box-shadow: var(--box-shadow3);
}
.p-top-recruit__heading {
  margin-bottom: 2rem;
  color: var(--color-sub4);
}
.p-top-recruit__text {
  font-size: 1.6rem;
}
.p-top-recruit__more {
  margin-top: 3.5rem;
}
.p-top-recruit__more .c-link-button {
  color: var(--color-sub4);
}
@media screen and (min-width: 768px), print {
  .p-top-recruit__container {
    padding: 5rem 3rem;
  }
  .p-top-recruit__text {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-top-recruit__section {
    margin: 0 -5rem;
    padding: 5rem 5rem 0;
  }
  .p-top-recruit__container {
    padding: 10rem 5rem;
    border-radius: 2rem;
  }
  .p-top-recruit__inner {
    padding: 6rem 0;
    border-radius: 2rem;
  }
  .p-top-recruit__heading {
    margin-bottom: 1rem;
  }
  .p-top-recruit__text {
    font-size: 2rem;
  }
}

/* アクセス */
.p-top-access__section {
  margin: 0 -2rem -10rem;
  padding: 5rem 2rem 0;
}
.p-top-access__map {
  margin-inline: -2rem;
}
@media screen and (min-width: 1100px), print {
  .p-top-access__section {
    margin: 0 -5rem -15rem;
    padding: 8rem 5rem 0;
  }
  .p-top-access__map {
    margin-inline: 0;
  }
  .p-top-access__map .c-map-area {
    height: 45rem;
  }
}

/* --------------------------------

  お知らせ

-------------------------------- */
.news-body {
  margin-top: 1rem;
  line-height: 1.8;
  word-break: break-all;
  word-wrap: break-word;
}
.news-body * {
  word-break: break-all;
  word-wrap: break-word;
}
.news-body::after {
  content: "";
  display: table;
  clear: both;
}
.news-more {
  margin-top: 3rem;
  text-align: center;
}
.news-back {
  margin-top: 5rem;
  text-align: center;
}
.news-topics + .news-topics {
  margin-top: 2rem;
}
.news-link {
  display: block;
  position: relative;
  font-size: 1.6rem;
  border-radius: 1rem;
  box-shadow: var(--box-shadow4);
  overflow: hidden;
}
.news-link:hover {
  text-decoration: none;
}
.news-link:hover .news-date {
  color: #fff;
}
.news-link:hover .news-title {
  color: var(--color-link);
  text-decoration: underline;
}
.news-date {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  color: #fff;
  letter-spacing: 0.1em;
  background-color: rgba(239, 119, 146, 0.7);
}
.news-title {
  word-break: break-all;
  word-wrap: break-word;
  padding: 1.6rem 2rem;
  background-color: #fff;
}
.news-img {
  position: relative;
  overflow: hidden;
}
.news-img img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
@media screen and (min-width: 768px), print {
  .news-link {
    display: flex;
  }
  .news-date {
    width: 16ch;
    height: auto;
  }
  .news-title {
    flex: 1;
  }
}
@media screen and (min-width: 1100px), print {
  .news-link {
    font-size: 1.8rem;
  }
  .news-title {
    padding: 2.4rem 3rem;
  }
  .news-body {
    font-size: 1.8rem;
  }
  .news-back {
    margin-top: 10rem;
  }
}

/* topics_paging */
#topics_paging {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -2rem;
}
#topics_paging_all {
  margin-top: 5rem;
  margin-bottom: 1rem;
  text-align: center;
}
#topics_paging li {
  display: flex;
  align-items: center;
  margin: 0 0.25rem;
  padding: 1rem 1.5rem;
  line-height: 1.2;
  color: var(--color-text);
  text-align: center;
  border-radius: 0.5rem;
  border: 1px solid var(--color-link);
  background-color: #fff;
  list-style-type: none;
  list-style-image: none;
}
#topics_paging a {
  display: block;
  margin: -1rem -1.5rem;
  padding: 1rem 1.5rem;
  color: var(--color-text);
}
#topics_paging a:hover {
  text-decoration: none;
  color: #fff;
  border-radius: 0.35rem;
  background-color: var(--color-link);
}

#calculated_page {
  margin-left: -1rem;
}

#total_pages {
  margin-right: 1rem;
}

/* --------------------------------

  下層ページ

-------------------------------- */
/* 当院の4つの特徴 */
.p-feature {
  counter-reset: feature;
  grid-row-gap: 2rem;
}
.p-feature__col {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0px;
  position: relative;
  margin-top: 0;
  padding-top: 2.5rem;
}
.p-feature__title {
  display: grid;
  place-content: center;
  padding: 4.8rem 0 1.5rem;
  line-height: 1.3;
  font-size: 2.2rem;
  text-align: center;
}
.p-feature__title::before {
  counter-increment: feature;
  content: counter(feature);
  display: grid;
  place-content: center;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 6rem;
  height: 6rem;
  margin: auto;
  padding: 0.05ch 0 0 0.05ch;
  font-size: 3.6rem;
  color: #fff;
  border-radius: 100%;
  border: 3px solid #fff;
  background-color: var(--color-base);
}
.p-feature__img {
  aspect-ratio: 530/300;
  margin: -1.6rem -2rem 1.5rem;
}
.p-feature__text {
  padding: 1.6rem 2rem;
  border-top: none;
}
@media screen and (min-width: 1100px), print {
  .p-feature {
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 3rem;
    grid-row-gap: 4rem;
  }
}
@media screen and (min-width: 1280px), print {
  .p-feature__title {
    font-size: 2.4rem;
  }
}

/* 院長紹介 */
.p-doctor__img {
  max-width: 30rem;
  margin: 0 auto 2rem;
}
.p-doctor__name {
  margin-top: 2rem;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px), print {
  .p-doctor__img {
    max-width: 40rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-doctor__img {
    width: 40rem;
    margin: 0 0 0 3.5rem;
  }
  .p-doctor__name {
    margin-top: 3rem;
  }
}

/* 設備紹介 */
.p-facility__caption {
  margin-top: 1rem;
  margin-bottom: -1ch;
}
@media screen and (min-width: 1100px), print {
  .p-facility__caption {
    margin-top: 2rem;
  }
}

/* リハビリ機器 */
.p-facility-rehab {
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 1rem;
  grid-row-gap: 3rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px), print {
  .p-facility-rehab {
    grid-column-gap: 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-facility-rehab {
    grid-column-gap: 3rem;
    grid-row-gap: 3.5rem;
    margin-top: 3rem;
  }
}

/* 当院概要・アクセス */
.p-access__main {
  margin-bottom: 5rem;
}
.p-access__img {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -1rem -1rem 0;
}
.p-access__photo {
  width: 50%;
  padding: 0 1rem 1rem 0;
}
.p-access__outline {
  margin-top: 3rem;
}
.p-access__outline th {
  width: 17rem;
}
.p-access__guide {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
}
.p-access__map {
  height: 45rem;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px), print {
  .p-access__img {
    margin: 0 -2rem -2rem 0;
  }
  .p-access__photo {
    width: 33.33333%;
    padding: 0 2rem 2rem 0;
  }
  .p-access__outline {
    margin-top: 2rem;
  }
  .p-access__guide {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-access__guide--parking {
    grid-area: 1/1/2/2;
  }
  .p-access__guide--public {
    grid-area: 1/2/2/3;
  }
  .p-access__guide--map {
    grid-area: 2/1/3/3;
  }
}
@media screen and (min-width: 1100px), print {
  .p-access__img {
    display: block;
    width: 37rem;
    margin: 0 0 0 4rem;
  }
  .p-access__photo {
    width: auto;
    padding: 0;
  }
  .p-access__photo + .p-access__photo {
    margin-top: 1rem;
  }
  .p-access__outline {
    margin-top: 0;
  }
  .p-access__guide {
    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
  }
}

/* 診療案内 */
.p-medical__main {
  margin-bottom: 5rem;
}
.p-medical__img {
  max-width: 40rem;
  margin: 0 auto 3rem;
}
.p-medical__img01 .u-img-wrap {
  aspect-ratio: 505/300;
}
.p-medical__img02 .u-img-wrap {
  aspect-ratio: 505/460;
}
.p-medical__img03 .u-img-wrap {
  aspect-ratio: 505/400;
}
.p-medical__img04 .u-img-wrap {
  aspect-ratio: 505/310;
}
.p-medical__text {
  margin-bottom: -1rem;
}
.p-medical__more {
  margin-top: 5rem;
}
@media screen and (min-width: 768px), print {
  .p-medical__img {
    max-width: 45rem;
    margin-bottom: 4rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-medical__img {
    width: 50.5rem;
    max-width: none;
    margin: 0 7rem 0 0;
  }
}

/* 診療案内アンカーリンク */
.p-medical-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 1rem;
  grid-row-gap: 3rem;
  margin-top: 5rem;
}
.p-medical-menu__link {
  display: grid;
  place-content: center;
  position: relative;
  height: 8rem;
  padding: 0 1rem;
  line-height: 1.2;
  font-size: 2rem;
  color: #fff;
  text-align: center;
  background-color: var(--color-link);
}
.p-medical-menu__link::before {
  content: "";
  aspect-ratio: 1/1;
  display: block;
  position: absolute;
  right: 0;
  bottom: -1.5rem;
  left: 0;
  width: 3rem;
  margin: auto;
  border-radius: 100%;
  background: var(--color-sub6) url(../img/base/icon-arrow_wht.svg) center no-repeat;
  background-size: 66% auto;
  transform: rotate(90deg);
}
.p-medical-menu__link:hover {
  text-decoration: none;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .p-medical-menu__link:hover {
    color: var(--color-link);
    background-color: var(--color-sub6);
  }
  .p-medical-menu__link:hover::before {
    background-color: currentColor;
  }
}
@media screen and (min-width: 768px), print {
  .p-medical-menu {
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-medical-menu {
    grid-row-gap: 2rem;
    margin-top: 10rem;
  }
  .p-medical-menu__link {
    font-size: 2.2rem;
  }
  .p-medical-menu__link::before {
    bottom: -2rem;
    width: 4rem;
  }
}
@media screen and (min-width: 1280px), print {
  .p-medical-menu__link {
    font-size: 2.4rem;
  }
}

/* 診療詳細ページ */
.p-medical-intro__img {
  margin: 0 1rem 2rem 0;
}
.p-medical-intro__img .u-img-wrap {
  aspect-ratio: 615/300;
}
.p-medical-intro__img .u-img-cover {
  object-position: 80% 50%;
}
.p-medical-intro__heading {
  margin-bottom: 2rem;
  line-height: 1.3;
  font-size: 2.4rem;
}
@media screen and (min-width: 768px), print {
  .p-medical-intro__img {
    width: 35rem;
    margin: 0 2rem 0 2rem;
  }
  .p-medical-intro__img .u-img-wrap {
    aspect-ratio: 4/3;
  }
}
@media screen and (min-width: 1100px), print {
  .p-medical-intro__main {
    margin-bottom: 5rem;
  }
  .p-medical-intro__img {
    width: 59.5rem;
    margin: 0 2rem 0 3rem;
  }
  .p-medical-intro__img .u-img-wrap {
    aspect-ratio: 615/320;
  }
  .p-medical-intro__img .u-img-cover {
    object-position: 50% 50%;
  }
  .p-medical-intro__heading {
    margin: 0 1rem 2rem 0;
    font-size: 3.6rem;
  }
}

/* 交通事故の取り扱い */
.p-accident__list {
  margin-bottom: 3rem;
}
.p-accident__attention {
  padding: 2rem;
}
.p-accident__attention::before {
  content: "";
  aspect-ratio: 30/27;
  display: block;
  width: 3rem;
  margin: 0 auto 1.2rem;
  background: url(../img/base/icon-alert_brn.svg) center no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px), print {
  .p-accident__attention {
    padding: 2rem 3rem;
  }
  .p-accident__attention::before {
    margin: 0 2.6rem 0 0;
  }
}
@media screen and (min-width: 1100px), print {
  .p-accident__list {
    margin-bottom: 5rem;
  }
  .p-accident__attention {
    padding: 2.6rem 4rem;
  }
}

/* 対象となる主な病気・症状 */
.p-child-target {
  grid-row-gap: 3rem;
}
/* 受診を迷っている保護者様へ */
.p-parents__img {
  max-width: 42rem;
  margin: 0 auto 2rem;
}
.p-parents__title {
  margin-bottom: 1.5rem;
  line-height: 1.4;
  font-size: 2rem;
}
.p-parents__list {
  margin-left: 0.2ch;
}
.p-parents__answer {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.p-parents__answer--icon {
  aspect-ratio: 39/29;
  display: block;
  width: 3rem;
  margin-bottom: 1rem;
  background: url(../img/base/icon-voice_brn.svg) no-repeat center;
  background-size: contain;
}
@media screen and (min-width: 768px), print {
  .p-parents__answer--icon {
    margin: 0 1.5rem 0 0;
  }
}
@media screen and (min-width: 1100px), print {
  .p-parents__img {
    width: 42rem;
    margin: 0 2rem;
  }
  .p-parents__title {
    margin-bottom: 2rem;
    font-size: 2.2rem;
  }
  .p-parents__answer {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  .p-parents__answer--icon {
    width: 4rem;
  }
}
@media screen and (min-width: 1280px), print {
  .p-parents__title {
    font-size: 2.4rem;
  }
}

/* 小児向けリハビリ */
.p-child-rehab {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-column-gap: 1.5rem;
  grid-row-gap: 3rem;
}
.p-child-rehab__col {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
}
.p-child-rehab__head {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.75rem;
}
.p-child-rehab__img {
  aspect-ratio: 330/250;
  margin-bottom: 1.5rem;
}
.p-child-rehab__title {
  flex: 1;
  display: grid;
  place-content: center;
  line-height: 1.3;
  font-size: 2rem;
}
@media screen and (min-width: 768px), print {
  .p-child-rehab {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* よくある質問 */
.p-faq__row {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.p-faq__question {
  margin-bottom: 2rem;
}
.p-faq__answer {
  padding: 2rem;
}
.p-faq__icon {
  display: grid;
  place-content: center;
  width: 3rem;
  height: 3rem;
  margin-right: 2rem;
  padding: 0 0 0.2ch;
  font-size: 2rem;
  border-radius: 100%;
}
.p-faq__icon--question::before {
  content: "Q";
}
.p-faq__icon--answer::before {
  content: "A";
}
.p-faq__title {
  display: block;
  line-height: 1.4;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px), print {
  .p-faq__title {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-faq__row {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  .p-faq__answer {
    padding: 2.4rem 3rem;
  }
  .p-faq__icon {
    margin-top: 0.15ch;
  }
  .p-faq__icon--answer {
    margin-right: 3rem;
  }
  .p-faq__title {
    font-size: 2.2rem;
  }
}

/* リハビリ方法 */
.p-how-rehab {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}
.p-how-rehab__row {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
  padding: 2rem;
}
.p-how-rehab__title {
  display: grid;
  place-content: center left;
  margin: 0 0 1.6rem -2rem;
  padding: 1.4rem 1rem 1.4rem 2rem;
  line-height: 1.2;
  font-size: 2rem;
}
.p-how-rehab__img {
  aspect-ratio: 430/300;
}
.p-how-rehab__img:not(:last-child) {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px), print {
  .p-how-rehab {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-how-rehab__title {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-how-rehab__row {
    padding: 3.5rem;
  }
  .p-how-rehab__title {
    margin: 0 0 2.5rem -3.5rem;
    padding: 2.4rem 2rem 2.4rem 4rem;
    font-size: 2.6rem;
  }
}

/* ご予約について */
.p-reserve__intro {
  padding-top: 5rem;
}
/* LINE予約 */
.p-line-reserve__heading {
  margin-bottom: 0.5rem;
  line-height: 1.3;
  font-size: 2.2rem;
}
.p-line-reserve__link {
  display: inline-flex;
  align-items: center;
  padding: 2rem 3.5rem;
  font-weight: 700;
  font-size: 2rem;
  color: var(--color-sub8);
  border-style: solid;
  border-color: var(--color-sub8);
}
.p-line-reserve__link::before {
  position: static;
  width: 4rem;
  height: 4rem;
  margin-right: 2.5rem;
  border: none;
  background: url(../img/base/line.png) no-repeat center;
  background-size: contain;
  transform: none;
}
.p-line-reserve__link[href]:hover {
  color: var(--color-sub8);
}
@media (hover: hover) and (pointer: fine) {
  .p-line-reserve__link[href]:hover {
    color: var(--color-sub8);
    border-color: var(--color-sub8);
    background-color: #fff;
  }
}
.p-line-reserve__more {
  margin: 4rem 0 5rem;
}
@media screen and (min-width: 768px), print {
  .p-line-reserve__link {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-line-reserve__heading {
    font-size: 2.4rem;
  }
  .p-line-reserve__link {
    padding: 2.5rem 5rem;
    font-size: 2.4rem;
  }
  .p-line-reserve__link::before {
    width: 5rem;
    height: 5rem;
    margin-right: 3.4rem;
  }
}

/* 宮近整形グループ */
.p-group__heading {
  margin-bottom: 4rem;
  line-height: 1.2;
  font-size: 3rem;
  letter-spacing: 0.1em;
}
.p-group__heading--jp {
  display: block;
}
.p-group__heading--en {
  font-size: 0.65em;
}
@media screen and (min-width: 768px), print {
  .p-group__heading {
    font-size: 3.5rem;
  }
}
@media screen and (min-width: 1100px), print {
  .p-group__heading {
    font-size: 4rem;
  }
}

/* 宮近整形グループ理念 */
.p-group-intro__logo {
  width: 16rem;
  margin: 0 auto 3rem;
}
.p-group-intro__img {
  margin: 4rem calc(50% - 50vw - 30rem);
}
.p-group-intro__text:not(:first-child) {
  margin-top: 3rem;
}
.p-group-intro__text:not(:last-child) {
  margin-bottom: 3rem;
}
@media screen and (min-width: 1100px), print {
  .p-group-intro__logo {
    width: 20rem;
    margin-bottom: 5rem;
  }
  .p-group-intro__img {
    margin: 0 calc(50% - 50vw);
    padding: 0 5rem;
  }
  .p-group-intro__text:not(:first-child) {
    margin-top: 4.5rem;
  }
  .p-group-intro__text:not(:last-child) {
    margin-bottom: 4.5rem;
  }
}

/* 宮近整形グループの強み */
.p-group-strengths__section {
  max-width: none;
  margin-inline: -2rem;
  padding: 0 2rem;
  background-color: var(--color-sub19);
}
.p-group-strengths__inner {
  padding: 10rem 0 12rem;
}
.p-group-strengths__detail {
  counter-reset: strengths;
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}
.p-group-strengths__row {
  padding: 2rem;
}
.p-group-strengths__title {
  margin: -2rem 0 1.5rem;
  padding: 0.5rem 0 1.5rem;
  line-height: 1.3;
  font-size: 2rem;
  text-align: center;
  letter-spacing: normal;
  border-bottom: 1px solid #fff;
}
.p-group-strengths__title::before {
  counter-increment: strengths;
  content: counter(strengths) ".";
  display: block;
  font-size: 5rem;
}
@media screen and (min-width: 768px), print {
  .p-group-strengths__detail {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1100px), print {
  .p-group-strengths__section {
    margin-inline: -5rem;
    padding: 0 5rem;
  }
  .p-group-strengths__inner {
    padding: 12rem 0 16rem;
  }
  .p-group-strengths__row {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    gap: 0px;
  }
  .p-group-strengths__title {
    display: grid;
    place-content: center left;
    position: relative;
    margin: 0 0 2.5rem 6.5rem;
    padding: 1rem 0 1.5rem;
    text-align: left;
    border-bottom-width: 2px;
  }
  .p-group-strengths__title::before {
    position: absolute;
    bottom: -1.75rem;
    left: -6.5rem;
    font-size: 6.4rem;
  }
}
@media screen and (min-width: 1280px), print {
  .p-group-strengths__row {
    padding-left: 3rem;
  }
  .p-group-strengths__title {
    font-size: 2.2rem;
  }
}

/* 宮近整形グループ施設紹介 */
.p-group-facility__logo {
  margin-bottom: 2.5rem;
}
.p-group-facility__row {
  align-items: flex-start;
}
.p-group-facility__row + .p-group-facility__row {
  margin-top: 2rem;
}
.p-group-facility__title {
  display: grid;
  place-content: center;
  width: 10rem;
  height: 3.6rem;
  margin-bottom: 1rem;
  border-radius: 10em;
}
.p-group-facility__list {
  padding-left: 1rem;
}
.p-group-facility__list:not(:last-child) {
  margin-bottom: 1.5rem;
}
.p-group-facility__feature {
  padding: 2rem;
}
@media screen and (min-width: 768px), print {
  .p-group-facility__row + .p-group-facility__row {
    margin-top: 1.5rem;
  }
  .p-group-facility__title {
    margin: -0.4rem 2rem 0 0;
  }
  .p-group-facility__list {
    padding: 0.1ch 0 0;
  }
}
@media screen and (min-width: 1100px), print {
  .p-group-facility__body {
    position: relative;
  }
  .p-group-facility__logo {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    z-index: 1;
  }
  .p-group-facility__title {
    margin-top: -0.3rem;
  }
  .p-group-facility__feature {
    padding: 2rem 2.5rem;
  }
}

/* --------------------------------

  プリント

-------------------------------- */
@media print {
  html, body {
    width: var(--inner-width);
    background: none;
  }
}
/* --------------------------------

  修正・追加用

-------------------------------- */