@charset "UTF-8";
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

*:focus:not(:focus-visible),
*::before:focus:not(:focus-visible),
*::after:focus:not(:focus-visible) {
  outline: none;
}

/* https://medium.com/@matuzo/writing-css-with-accessibility-in-mind-8514a0007939 */
.visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

/* https://www.scottohara.me/blog/2019/01/12/lists-and-safari.html */
.plain-list {
  list-style: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'/%3E");
  padding-left: 0;
}

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

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

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

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

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

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

/* Remove all animations and transitions for people that prefer not to see them */
html {
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-wrap: break-word;
}

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

h5, h6 {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 1em 0;
}

img {
  height: auto;
  border: none;
  -o-object-fit: contain;
     object-fit: contain;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
}

:root {
  --clr_txt: #111;
  --rgb_txt: 17, 17, 17;
  --clr_navy: #12264E;
  --rgb_navy: 18, 38, 78;
  --clr_navy_light01: #354668;
  --rgb_navy_light01: 53, 70, 104;
  --clr_navy_dark01: #00426D;
  --rgb_navy_dark01: 0, 66, 109;
  --clr_red: #CF000E;
  --rgb_red: 207, 0, 14;
  --clr_gray: #F5F6F7;
  --rgb_gray: 245, 246, 247;
  --clr_gray_dark01: #E5E9EC;
  --rgb_gray_dark01: 229, 233, 236;
  --clr_yellow: #FBF7E5;
  --rgb_yellow: 251, 247, 229;
  --clr_yellow_dark: #e5bd00;
  --rgb_yellow_dark: 229, 189, 0;
  --clr_yellow_light: #fff9bf;
  --rgb_yellow_light: 255, 249, 191;
  --clr_green_line: #06C755;
  --rgb_green_line: 6, 199, 85;
  --clr_green_light: #C5F2C5;
  --rgb_green_light: 197, 242, 197;
}

@font-face {
  font-family: "fontello";
  src: url("fontello/font/fontello.woff2") format("woff2");
  font-display: fallback;
}
.cf::before,
.cf::after {
  content: "";
  display: block;
}

.cf::after {
  clear: both;
}

.fl_l {
  float: left;
}

.fl_r {
  float: right;
}

.txt_c {
  text-align: center !important;
}

.txt_l {
  text-align: left !important;
}

.txt_r {
  text-align: right !important;
}

.bold {
  font-weight: bold;
}

.txt_large {
  font-size: 120%;
}

.txt_small {
  font-size: 80%;
}

.txt_red {
  color: var(--clr_red);
}

.img_c {
  margin: 1rem auto;
}

.img_l, .img_r {
  max-width: 80%;
  margin: 1rem auto;
}

img.tate {
  max-width: 60%;
}

@media screen and (min-width: 48em), print {
  .img_l {
    float: left;
    margin: 0 3rem 2rem 0;
  }
  .img_r {
    float: right;
    margin: 0 0 2rem 3rem;
  }
  img.tate {
    max-width: 25% !important;
  }
}
.sp_n {
  display: none;
}

@media screen and (min-width: 48em), print {
  .sp_n {
    display: block;
  }
  .pc_n {
    display: none;
  }
}
.mt00 {
  margin-top: 0rem !important;
}

.mt10 {
  margin-top: 1.2rem !important;
}

.mt20 {
  margin-top: 2.4rem !important;
}

.mt30 {
  margin-top: 3.6rem !important;
}

.mt40 {
  margin-top: 4.8rem !important;
}

.main > section ~ section, .flex2 > section ~ section {
  margin-top: 5rem;
}
.main > section > section ~ section, .main > .flex2 > section ~ section, .flex2 > section > section ~ section, .flex2 > .flex2 > section ~ section {
  margin-top: 4rem;
}
.main > section > section > section ~ section, .main > section > .flex2 > section ~ section, .main > .flex2 > section > section ~ section, .main > .flex2 > .flex2 > section ~ section, .flex2 > section > section > section ~ section, .flex2 > section > .flex2 > section ~ section, .flex2 > .flex2 > section > section ~ section, .flex2 > .flex2 > .flex2 > section ~ section {
  margin-top: 3rem;
}
.main > section > section > section > section ~ section, .main > section > section > .flex2 > section ~ section, .main > section > .flex2 > section > section ~ section, .main > section > .flex2 > .flex2 > section ~ section, .main > .flex2 > section > section > section ~ section, .main > .flex2 > section > .flex2 > section ~ section, .main > .flex2 > .flex2 > section > section ~ section, .main > .flex2 > .flex2 > .flex2 > section ~ section, .flex2 > section > section > section > section ~ section, .flex2 > section > section > .flex2 > section ~ section, .flex2 > section > .flex2 > section > section ~ section, .flex2 > section > .flex2 > .flex2 > section ~ section, .flex2 > .flex2 > section > section > section ~ section, .flex2 > .flex2 > section > .flex2 > section ~ section, .flex2 > .flex2 > .flex2 > section > section ~ section, .flex2 > .flex2 > .flex2 > .flex2 > section ~ section {
  margin-top: 3rem;
}

@media screen and (min-width: 48em), print {
  .mt00 {
    margin-top: 0rem !important;
  }
  .mt10 {
    margin-top: 2.4rem !important;
  }
  .mt20 {
    margin-top: 4.8rem !important;
  }
  .mt30 {
    margin-top: 7.2rem !important;
  }
  .mt40 {
    margin-top: 9.6rem !important;
  }
  .main > section ~ section, .flex2 > section ~ section {
    margin-top: 9rem;
  }
  .main > section > section ~ section, .main > .flex2 > section ~ section, .flex2 > section > section ~ section, .flex2 > .flex2 > section ~ section {
    margin-top: 7rem;
  }
  .main > section > section > section ~ section, .main > section > .flex2 > section ~ section, .main > .flex2 > section > section ~ section, .main > .flex2 > .flex2 > section ~ section, .flex2 > section > section > section ~ section, .flex2 > section > .flex2 > section ~ section, .flex2 > .flex2 > section > section ~ section, .flex2 > .flex2 > .flex2 > section ~ section {
    margin-top: 5rem;
  }
  .main > section > section > section > section ~ section, .main > section > section > .flex2 > section ~ section, .main > section > .flex2 > section > section ~ section, .main > section > .flex2 > .flex2 > section ~ section, .main > .flex2 > section > section > section ~ section, .main > .flex2 > section > .flex2 > section ~ section, .main > .flex2 > .flex2 > section > section ~ section, .main > .flex2 > .flex2 > .flex2 > section ~ section, .flex2 > section > section > section > section ~ section, .flex2 > section > section > .flex2 > section ~ section, .flex2 > section > .flex2 > section > section ~ section, .flex2 > section > .flex2 > .flex2 > section ~ section, .flex2 > .flex2 > section > section > section ~ section, .flex2 > .flex2 > section > .flex2 > section ~ section, .flex2 > .flex2 > .flex2 > section > section ~ section, .flex2 > .flex2 > .flex2 > .flex2 > section ~ section {
    margin-top: 5rem;
  }
}
.tbl_time {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.4rem;
  margin: 0 0 4rem;
}
.tbl_time caption {
  caption-side: bottom;
  text-align: left;
  margin-top: 0.8rem;
}
.tbl_time caption .tit {
  display: inline-block;
  padding: 0 1em;
  line-height: 1.6;
  color: var(--clr_navy);
  font-weight: bold;
  border: 1px solid var(--clr_navy);
  margin: 0 1rem 0 0;
}
.tbl_time tr th[scope=col] {
  padding: 0.4rem 0;
  font-size: 90%;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  background: var(--clr_navy);
}
.tbl_time tr th[scope=col]:first-child {
  width: 35%;
}
.tbl_time tr th[scope=row] {
  font-weight: normal;
  background: #fff;
  line-height: 1.4;
  border-bottom: 1px solid #ccc;
}
.tbl_time tr td {
  background: #fff;
  text-align: center;
  padding: 1.8rem 0.4rem;
  border-bottom: 1px solid #ccc;
  line-height: 1;
  color: var(--clr_navy);
  font-size: 80%;
}
.tbl_time.dr {
  border-collapse: collapse;
  border: 1px solid #ccc;
}
.tbl_time.dr tr th:first-child {
  width: 10%;
}
.tbl_time.dr tr th[scope=row] {
  font-size: 90%;
  border: 1px solid #ccc;
}
.tbl_time.dr tr td {
  border: 1px solid #ccc;
  line-height: 1.4;
}
.tbl_time.dr tr td.close {
  color: var(--clr_red);
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    table-layout: fixed;
    font-size: 1.8rem;
    margin: 0 0 6rem;
  }
  .tbl_time tr th[scope=col] {
    padding: 1rem 0;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 30%;
  }
  .tbl_time tr td {
    padding: 2rem 0;
  }
  .tbl_time.dr tr th:first-child {
    width: auto;
  }
  .tbl_time.dr tr th[scope=row] {
    font-size: 100%;
  }
  .tbl_time.dr tr td {
    font-size: 100%;
  }
}
.gmap {
  width: 100%;
}

.letwbr, .tit_05, .tit_02 {
  white-space: pre-wrap;
  word-break: keep-all;
}

.tit_01 {
  display: -ms-grid;
  display: grid;
  place-content: center;
  place-items: center;
  min-height: 10rem;
  background: var(--clr_navy);
  color: #fff;
  font-size: 2.4rem;
  line-height: 1.4;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  padding: 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tit_01::before, .tit_01::after {
  content: "";
  display: block;
  position: absolute;
}
.tit_01::before {
  width: 17rem;
  height: 200%;
  background: url(../img/tit_01_left.svg) no-repeat center/auto 200%;
  top: -10rem;
  left: -11rem;
}
.tit_01::after {
  width: 10rem;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: 3rem;
  right: -5rem;
}

.tit_02 {
  text-align: center;
  font-size: 2.2rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  margin: 0 auto 2rem;
}
.tit_02::before {
  content: "";
  display: block;
  width: 2em;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(var(--clr_yellow_dark)), color-stop(50%, var(--clr_yellow_light)), to(var(--clr_yellow_dark)));
  background: linear-gradient(to right, var(--clr_yellow_dark) 0%, var(--clr_yellow_light) 50%, var(--clr_yellow_dark) 100%);
  margin: 0 auto 1rem;
}

.tit_03 {
  padding: 0.4rem 1rem 0.4rem 1.4rem;
  background: var(--clr_navy);
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  font-size: 2rem;
  line-height: 1.4;
  margin: 0 0 2rem;
  position: relative;
}
.tit_03::before {
  content: "";
  display: block;
  width: 0.6rem;
  height: 1.2rem;
  background: var(--clr_red);
  border-radius: 0 1.2rem 1.2rem 0;
  position: absolute;
  inset: 1.2rem auto auto 0;
}

.tit_04 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
  color: var(--clr_navy);
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.8rem;
  line-height: 1.4;
  padding: 0 0 0.4rem;
  border-bottom: 1px solid #ccc;
  margin: 0 0 2rem;
}
.tit_04::before {
  content: "";
  display: block;
  width: 2px;
  height: auto;
  background: var(--clr_navy);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 2px;
          flex: 0 0 2px;
}

.tit_05 {
  font-size: 1.6rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  color: var(--clr_red);
  line-height: 1.4;
  margin: 0 0 2rem;
}
.tit_05::after {
  content: "";
  display: block;
  width: 2em;
  height: 0.1rem;
  background: var(--clr_red);
  margin: 0.4rem 0 0;
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    min-height: 26rem;
    font-size: 4.8rem;
  }
  .tit_01::before {
    width: 80rem;
    height: 114rem;
    background: url(../img/tit_01_left.svg) no-repeat center/80rem 114rem;
    top: -40rem;
    left: -50rem;
  }
  .tit_01::after {
    width: 30rem;
    top: 5rem;
    right: -15rem;
  }
  .tit_02 {
    font-size: 4rem;
    margin: 0 auto 4rem;
  }
  .tit_03 {
    font-size: 3.2rem;
    padding: 0.4rem 2rem 0.4rem 2rem;
    margin: 0 0 3rem;
  }
  .tit_03::before {
    width: 1rem;
    height: 2rem;
    border-radius: 0 2rem 2rem 0;
    inset: 1.8rem auto auto 0;
  }
  .tit_04 {
    gap: 1.6rem;
    font-size: 2.8rem;
    padding: 0 0 0.8rem;
    margin: 0 0 3rem;
  }
  .tit_05 {
    font-size: 2.4rem;
    margin: 0 0 3rem;
  }
  .tit_05::after {
    margin: 1rem 0 0;
  }
}
.lst_ul {
  line-height: 1.4;
  margin: 1rem 0;
}
.lst_ul > li {
  padding: 0 0 0 1.4em;
  position: relative;
}
.lst_ul > li:not(:last-child) {
  margin: 0 0 1rem;
}
.lst_ul > li::before {
  content: "●";
  color: var(--clr_navy);
  position: absolute;
  left: 0;
}
.lst_ul.kome > li::before {
  content: "※";
  color: inherit;
}

.lst_ul_disc {
  line-height: 1.4;
  margin: 0 0 0 2rem;
}
.lst_ul_disc > li {
  list-style: disc;
}
.lst_ul_disc > li:not(:last-child) {
  margin: 0 0 1rem;
}
.lst_ul_disc > li::marker {
  color: var(--clr_txt);
}

.lst_ol {
  line-height: 1.4;
  counter-reset: number 0;
  margin: 1rem 0;
}
.lst_ol > li {
  counter-increment: number 1;
  padding: 0 0 0 1.8em;
  position: relative;
}
.lst_ol > li:not(:last-child) {
  margin: 0 0 1rem;
}
.lst_ol > li::before {
  display: inline-block;
  content: counter(number, decimal-leading-zero) ".";
  color: var(--clr_txt);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.lst_dl01 dt {
  font-weight: bold;
}
.lst_dl01 dd {
  margin: 0 0 1rem;
}

@media screen and (min-width: 48em), print {
  .lst_dl01 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .lst_dl01 dt {
    width: 15%;
  }
  .lst_dl01 dd {
    width: 85%;
    padding: 0 0 0 1rem;
  }
}
p.kome {
  padding: 0 0 0 1.2em;
  position: relative;
}
p.kome::before {
  content: "※";
  position: absolute;
  left: 0;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 4rem;
}
.flex3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.flex3 > li {
  width: 46%;
}

@media screen and (min-width: 48em), print {
  .flex {
    gap: 1rem 5rem;
  }
  .flex2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .flex2 > section, .flex2 > li, .flex2 > div {
    width: 48%;
    margin-top: 0 !important;
  }
  .flex3 {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 2rem;
  }
  .flex3 li {
    width: 31%;
  }
}
.tel {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 0 0.6rem;
  line-height: 1;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  color: var(--clr_navy);
}
.tel::before {
  font-family: "fontello";
  content: "\e80b";
  font-size: 80%;
  margin: 0.4rem 0 0;
}

.box_gray {
  padding: 1.6rem;
  background: var(--clr_gray);
}
@media screen and (min-width: 48em), print {
  .box_gray {
    padding: 3rem;
  }
}

.btn_rsv {
  display: block;
}
.btn_rsv span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.4rem;
  color: #fff;
  background: var(--clr_navy);
  outline: 1px solid rgba(255, 255, 255, 0.4);
  outline-offset: -0.3rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: relative;
}
.btn_rsv span::before {
  font-family: "fontello";
  content: "\e80d";
}
.btn_rsv span::after {
  content: "";
  display: block;
  width: 1em;
  aspect-ratio: 1;
  background: var(--clr_red);
  border-radius: 100% 0 0 0;
  position: absolute;
  inset: auto 0 0 auto;
}
@media screen and (min-width: 48em) and (hover: hover), print and (hover: hover) {
  .btn_rsv {
    opacity: 1;
  }
  .btn_rsv:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 1;
  }
  .btn_rsv:where(:any-link, :enabled, summary):hover {
    opacity: 1;
  }
  .btn_rsv:where(:-moz-any-link, :enabled, summary):hover span {
    background: var(--clr_red);
  }
  .btn_rsv:where(:any-link, :enabled, summary):hover span {
    background: var(--clr_red);
  }
}
@media screen and (min-width: 48em), print {
  .btn_rsv:focus-visible {
    opacity: 1;
  }
  .btn_rsv:focus-visible span {
    background: var(--clr_red);
  }
}

.btn_line {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.2rem;
  padding: 2rem 4rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.8rem;
  text-decoration: none !important;
  border: 4px solid var(--clr_green_light);
}
.btn_line::before {
  display: block;
  content: "";
  width: 4rem;
  aspect-ratio: 1;
  background: url(../img/icon_line.svg) no-repeat center/contain;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 4rem;
          flex: 0 0 4rem;
}
@media screen and (min-width: 48em), print {
  .btn_line {
    padding: 2rem 7rem;
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 48em) and (hover: hover), print and (hover: hover) {
  .btn_line {
    opacity: 1;
  }
  .btn_line:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 1;
    color: var(--clr_green_line) !important;
  }
  .btn_line:where(:any-link, :enabled, summary):hover {
    opacity: 1;
    color: var(--clr_green_line) !important;
  }
}
@media screen and (min-width: 48em), print {
  .btn_line:focus-visible {
    opacity: 1;
    color: var(--clr_green_line) !important;
  }
}

.btn_detail {
  display: inline-block;
  padding: 0.6rem 3rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  background: var(--clr_navy);
  color: #fff;
  text-decoration: none !important;
  position: relative;
}
.btn_detail::after {
  content: "";
  display: block;
  width: 1em;
  aspect-ratio: 1;
  background: var(--clr_red);
  border-radius: 100% 0 0 0;
  position: absolute;
  inset: auto 0 0 auto;
}
.btn_detail::before {
  content: "";
  display: block;
  width: calc(100% - 0.4rem);
  height: calc(100% - 0.4rem);
  border: 1px solid rgba(255, 255, 255, 0.4);
  position: absolute;
  inset: 0;
  margin: auto;
}
@media screen and (min-width: 48em) and (hover: hover), print and (hover: hover) {
  .btn_detail {
    opacity: 1;
  }
  .btn_detail:where(:-moz-any-link, :enabled, summary):hover {
    background: rgba(var(--rgb_navy), 0.8);
    opacity: 1;
  }
  .btn_detail:where(:any-link, :enabled, summary):hover {
    background: rgba(var(--rgb_navy), 0.8);
    opacity: 1;
  }
}
@media screen and (min-width: 48em), print {
  .btn_detail:focus-visible {
    background: rgba(var(--rgb_navy), 0.8);
    opacity: 1;
  }
}

.linkout {
  display: inline-block;
  color: var(--clr_txt);
  text-decoration: none !important;
}
.linkout::after {
  font-family: "fontello";
  content: "\f08e";
  font-size: 0.8em;
  margin-left: 0.6rem;
}
@media screen and (min-width: 48em), print {
  .linkout::after {
    margin-left: 1rem;
  }
}

.tbl_lst {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.tbl_lst th[scope=row] {
  width: 28%;
  padding: 0.4rem 1rem;
  font-weight: normal;
  background: var(--clr_gray);
  border: 1px solid #ccc;
}
.tbl_lst td {
  padding: 1rem;
  border: 1px solid #ccc;
}

@media screen and (min-width: 48em), print {
  .tbl_lst th[scope=row] {
    padding: 0.4rem 2rem;
  }
  .tbl_lst td {
    padding: 2rem 3rem;
    border: 1px solid #ccc;
  }
}
.tbl_lst2 {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.tbl_lst2 th {
  padding: 1rem 1rem;
  border: 1px solid #ccc;
}
.tbl_lst2 th[scope=col] {
  color: #fff;
  background: var(--clr_navy);
}
.tbl_lst2 th[scope=row] {
  width: 25%;
  font-weight: normal;
  background: var(--clr_yellow);
}
.tbl_lst2 td {
  padding: 1rem 1rem;
  border: 1px solid #ccc;
}

@media screen and (min-width: 48em), print {
  .tbl_lst2 th, .tbl_lst2 td {
    padding: 1.5rem 2rem;
  }
}
.slick-arrow {
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 9rem;
  cursor: pointer;
  line-height: 0;
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background: var(--clr_navy);
  z-index: 5;
}
.slick-arrow::before {
  font-size: 1.2rem;
  opacity: 1;
}
.slick-arrow.slick-prev {
  left: -2.6rem;
}
.slick-arrow.slick-prev::before {
  font-family: "fontello";
  content: "\71";
}
.slick-arrow.slick-next {
  right: -2.6rem;
}
.slick-arrow.slick-next::before {
  font-family: "fontello";
  content: "\32";
}

@media screen and (min-width: 48em), print {
  .slick-arrow {
    width: 5rem;
    height: 5rem;
    border: 1px solid var(--clr_navy);
    top: 26rem;
  }
  .slick-arrow::before {
    font-size: 2.4rem;
  }
  .slick-arrow.slick-prev {
    left: -6rem;
  }
  .slick-arrow.slick-next {
    right: -6rem;
  }
}
@media screen and (min-width: 48em) and (hover: hover), print and (hover: hover) {
  .slick-arrow {
    opacity: 1;
  }
  .slick-arrow:where(:-moz-any-link, :enabled, summary):hover {
    color: var(--clr_navy);
    background: #fff;
    opacity: 1;
  }
  .slick-arrow:where(:any-link, :enabled, summary):hover {
    color: var(--clr_navy);
    background: #fff;
    opacity: 1;
  }
}
@media screen and (min-width: 48em), print {
  .slick-arrow:focus-visible {
    color: var(--clr_navy);
    background: #fff;
    opacity: 1;
  }
}
.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin: 1rem auto;
}
.slick-dots li {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 0.2rem;
}
.slick-dots li button {
  padding: 50%;
  display: block;
  font-size: 0;
  cursor: pointer;
  opacity: 0.25;
  border-radius: 50%;
  background: var(--clr_navy);
}
@media (hover: hover) {
  .slick-dots li button {
    opacity: 1;
  }
  .slick-dots li button:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.8;
  }
  .slick-dots li button:where(:any-link, :enabled, summary):hover {
    opacity: 0.8;
  }
}
.slick-dots li button:focus-visible {
  opacity: 0.8;
}
.slick-dots li.slick-active button {
  opacity: 0.75;
}

@media screen and (min-width: 48em), print {
  .slick-dots {
    margin: 1.6rem auto;
  }
  .slick-dots li {
    width: 1.4rem;
    height: 1.4rem;
    margin: 0 0.6rem;
  }
}
html {
  font-size: 2.7777777778vw;
}

body {
  background: #fff;
  color: var(--clr_txt);
  font-family: "Hiragino Sans", "Yu Gothic medium", "Yu Gothic", Meiryo, sans-serif;
}
body::after {
  visibility: hidden;
  width: 100vw;
  height: 100vh;
  content: "";
  background: rgba(var(--rgb_navy), 0.6);
  position: fixed;
  inset: 0;
  z-index: 90;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  -webkit-backdrop-filter: blur(0.6rem);
  backdrop-filter: blur(0.6rem);
}
body.spnav_modal {
  overflow: hidden !important;
}
body.spnav_modal::after {
  visibility: visible;
  opacity: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

.main {
  font-size: 1.4rem;
  line-height: 1.8;
}
.main a:not([class*=btn], [href*="tel:"]) {
  text-decoration: underline;
}

@media screen and (min-width: 48em), print {
  html {
    font-size: 62.5%;
  }
  body {
    min-width: calc(1200px + 40px);
  }
  body::after {
    display: none;
  }
  a, button {
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  a img, button img {
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
}
@media screen and (min-width: 48em) and (hover: hover), print and (hover: hover) {
  a, button {
    opacity: 1;
  }
  a:where(:-moz-any-link, :enabled, summary):hover, button:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.8;
  }
  a:where(:any-link, :enabled, summary):hover, button:where(:any-link, :enabled, summary):hover {
    opacity: 0.8;
  }
  a:where(:-moz-any-link, :enabled, summary):hover img, button:where(:-moz-any-link, :enabled, summary):hover img {
    opacity: 0.8;
  }
  a:where(:any-link, :enabled, summary):hover img, button:where(:any-link, :enabled, summary):hover img {
    opacity: 0.8;
  }
}
@media screen and (min-width: 48em), print {
  a:focus-visible, button:focus-visible {
    opacity: 0.8;
  }
  a:focus-visible img, button:focus-visible img {
    opacity: 0.8;
  }
  .wrap {
    width: 1200px;
    margin: auto;
  }
  .main {
    font-size: 1.8rem;
    line-height: 2;
  }
  .main a:not([class*=btn]):hover {
    opacity: 1;
    text-decoration: none;
  }
}
:target {
  scroll-margin-top: 3rem;
}
@media screen and (min-width: 48em), print {
  :target {
    scroll-margin-top: 10rem;
  }
}

.header {
  position: relative;
}
.header > .wrap {
  padding: 1rem;
}
.header > .wrap .logo {
  width: 100%;
  height: 6.6rem;
  padding: 1rem;
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.header > .wrap .logo.hide {
  -webkit-transform: translateY(-150%);
          transform: translateY(-150%);
}
.header > .wrap .logo a {
  display: block;
  width: calc(100% - 5.6rem);
  height: 100%;
  background: url(../img/logo.png) no-repeat left center/contain;
}
.header > .wrap .logo a .clip {
  display: block;
  height: 100%;
  overflow: hidden;
  clip-path: inset(50%);
  color: transparent;
}
.header > .wrap .headR {
  margin: 5.6rem 0 0;
}
.header > .wrap .headR .acs_tel li {
  text-align: center;
}
.header > .wrap .headR .acs_tel li.acs {
  gap: 0.4rem;
  font-size: 1.3rem;
  color: var(--clr_navy_dark01);
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-style: normal;
}
.header > .wrap .headR .acs_tel li.acs::before {
  font-family: "fontello";
  content: "\e80a";
  color: var(--clr_navy);
  margin: 0 0.4rem 0 0;
}
.header > .wrap .headR .acs_tel li.telno {
  margin: 1rem 0 0;
}
.header > .wrap .headR .acs_tel li.telno .tel {
  font-size: 2rem;
}
.header > .wrap .headR .acs_tel li.riha {
  font-size: 1.4rem;
  color: var(--clr_navy);
  margin: 1rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--clr_navy);
}
.header > .wrap .headR .acs_tel li.riha .tel {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 130%;
  margin: 0 0 0 1rem;
}

@media screen and (min-width: 48em), print {
  .header > .wrap {
    padding: 2rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header > .wrap .logo {
    width: 45rem;
    height: 7.6rem;
    padding: 0;
    position: relative;
    z-index: 101;
    background: none;
  }
  .header > .wrap .logo a {
    width: 100%;
  }
  .header > .wrap .headR {
    width: 53%;
    margin: 0;
  }
  .header > .wrap .headR .acs_tel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
  }
  .header > .wrap .headR .acs_tel li.acs {
    width: 100%;
    font-size: 1.7rem;
    padding: 0 0 0 2.2rem;
  }
  .header > .wrap .headR .acs_tel li.acs br {
    display: none;
  }
  .header > .wrap .headR .acs_tel li.telno {
    margin: 0;
  }
  .header > .wrap .headR .acs_tel li.telno .tel {
    font-size: 3.2rem;
  }
  .header > .wrap .headR .acs_tel li.riha {
    font-size: 1.6rem;
    margin: 0 0 0 2rem;
    padding: 0 0 0 1rem;
    border-left: 1px solid var(--clr_navy);
    border-top: none;
  }
  .header > .wrap .headR .acs_tel li.riha .tel {
    font-size: 125%;
  }
}
.pc_fix {
  display: none;
}

@media screen and (min-width: 48em), print {
  .pc_fix {
    width: 6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    inset: 20rem 0 auto auto;
    z-index: 101;
  }
  .pc_fix .btn_rsv span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.4rem;
    font-size: 2rem;
    padding: 3rem 1.5rem;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-orientation: upright;
  }
  .pc_fix .btn_rsv:hover span::after {
    background: var(--clr_navy);
  }
}
#nav {
  width: 100vw;
  background: #fff;
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
}
#nav #sp_menu {
  width: 4.6rem;
  height: 4.6rem;
  color: #fff;
  background: var(--clr_red);
  text-align: center;
  line-height: 1;
  font-size: 1rem;
  padding: 0;
  position: absolute;
  inset: 1rem 1rem auto auto;
  z-index: 100;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#nav #sp_menu.hide {
  -webkit-transform: translateY(-220%);
          transform: translateY(-220%);
}
#nav #sp_menu::before {
  display: block;
  font-family: "fontello";
  content: "\e812";
  font-size: 2.6rem;
}
#nav #sp_menu::after {
  display: block;
  content: "MENU";
  margin: 0.2rem 0 0;
}
#nav #sp_menu.close::before {
  font-family: "fontello";
  content: "\e813";
}
#nav #sp_menu.close::after {
  content: "CLOSE";
}
#nav #sp_menu span {
  display: none;
}
#nav .gnav_subnav {
  display: none;
  width: 94vw;
  max-height: calc(100dvh - 8rem);
  overflow-y: auto;
  background: #fff;
  -webkit-box-shadow: 0 0.4rem 0.6rem 0.2rem rgba(var(--rgb_txt), 0.2);
          box-shadow: 0 0.4rem 0.6rem 0.2rem rgba(var(--rgb_txt), 0.2);
  padding: 1.6rem;
  margin: auto;
  position: absolute;
  inset: 6.6rem 0 auto;
  z-index: 100;
}
#nav .gnav_subnav .gnav > li:not(:last-child) {
  border-bottom: 1px dotted var(--clr_navy);
}
#nav .gnav_subnav .gnav > li > a, #nav .gnav_subnav .gnav > li > .sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  width: 100%;
  text-align: left;
  padding: 1rem 2rem 1.6rem;
  font-size: 1.4rem;
  color: var(--clr_navy);
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-style: normal;
  position: relative;
}
#nav .gnav_subnav .gnav > li > a::before, #nav .gnav_subnav .gnav > li > .sub::before {
  content: "";
  display: block;
  width: 0.8rem;
  height: 1.2rem;
  border-radius: 0 1.2rem 1.2rem 0;
  position: absolute;
  inset: auto auto auto 0.6rem;
}
#nav .gnav_subnav .gnav > li > a.current::before, #nav .gnav_subnav .gnav > li > .sub.current::before {
  background: var(--clr_red);
}
#nav .gnav_subnav .gnav > li .sub::after {
  font-family: "fontello";
  content: "\e80c";
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  margin: 0 0 0 auto;
}
#nav .gnav_subnav .gnav > li .sub.close::after {
  scale: 1 -1;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: var(--clr_navy);
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li {
  width: 50%;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4rem;
  padding: 1rem;
  font-size: 1.2rem;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-style: normal;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a::before {
  content: "_";
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a.current {
  background: var(--clr_red);
}
#nav .gnav_subnav #menu_close {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  color: var(--clr_navy);
  background: rgba(var(--rgb_navy), 0.1);
  text-align: center;
  padding: 0.6rem 0;
  margin: 2rem 0 0;
}
#nav .gnav_subnav #menu_close::before {
  font-family: "fontello";
  content: "\e813";
  margin: 0 0.6rem 0 0;
}

@media screen and (min-width: 48em), print {
  #nav {
    width: auto;
    position: sticky;
    inset: 0 0 auto;
    -webkit-box-shadow: 0 0.2rem 0.2rem rgba(0, 0, 0, 0.16);
            box-shadow: 0 0.2rem 0.2rem rgba(0, 0, 0, 0.16);
    -webkit-transition: 0.8s;
    transition: 0.8s;
  }
  #nav.hide {
    -webkit-transform: translateY(-300%);
            transform: translateY(-300%);
  }
  #nav #sp_menu {
    display: none;
  }
  #nav .gnav_subnav {
    display: block !important;
    width: 100%;
    max-height: inherit;
    -webkit-box-shadow: none;
            box-shadow: none;
    overflow-y: visible;
    background: none;
    padding: 0;
    position: static;
  }
  #nav .gnav_subnav .gnav {
    width: 1200px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: none;
  }
  #nav .gnav_subnav .gnav > li {
    width: 100%;
    position: relative;
  }
  #nav .gnav_subnav .gnav > li:not(:last-child) {
    border-bottom: none;
  }
  #nav .gnav_subnav .gnav > li:not(:last-child)::after {
    content: "";
    display: block;
    width: 0.1rem;
    height: 2rem;
    background: var(--clr_navy);
    position: absolute;
    inset: 1.8rem 0 0 auto;
  }
  #nav .gnav_subnav .gnav > li > a, #nav .gnav_subnav .gnav > li > .sub {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    font-size: 2rem;
    margin: 0;
    cursor: pointer;
  }
  #nav .gnav_subnav .gnav > li > a::before, #nav .gnav_subnav .gnav > li > .sub::before {
    width: 2rem;
    height: 1rem;
    margin: auto;
    border-radius: 2rem 2rem 0 0;
    position: absolute;
    inset: auto 0 0 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #nav .gnav_subnav .gnav > li > a::after, #nav .gnav_subnav .gnav > li > .sub::after {
    margin: 0 0 0 0.6rem;
  }
}
@media screen and (min-width: 48em) and (hover: hover), print and (hover: hover) {
  #nav .gnav_subnav .gnav > li > a, #nav .gnav_subnav .gnav > li > .sub {
    opacity: 1;
  }
  #nav .gnav_subnav .gnav > li > a:where(:-moz-any-link, :enabled, summary):hover, #nav .gnav_subnav .gnav > li > .sub:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 1;
  }
  #nav .gnav_subnav .gnav > li > a:where(:any-link, :enabled, summary):hover, #nav .gnav_subnav .gnav > li > .sub:where(:any-link, :enabled, summary):hover {
    opacity: 1;
  }
  #nav .gnav_subnav .gnav > li > a:where(:-moz-any-link, :enabled, summary):hover::before, #nav .gnav_subnav .gnav > li > .sub:where(:-moz-any-link, :enabled, summary):hover::before {
    background: var(--clr_red);
  }
  #nav .gnav_subnav .gnav > li > a:where(:any-link, :enabled, summary):hover::before, #nav .gnav_subnav .gnav > li > .sub:where(:any-link, :enabled, summary):hover::before {
    background: var(--clr_red);
  }
}
@media screen and (min-width: 48em), print {
  #nav .gnav_subnav .gnav > li > a:focus-visible, #nav .gnav_subnav .gnav > li > .sub:focus-visible {
    opacity: 1;
  }
  #nav .gnav_subnav .gnav > li > a:focus-visible::before, #nav .gnav_subnav .gnav > li > .sub:focus-visible::before {
    background: var(--clr_red);
  }
  #nav .gnav_subnav .gnav > li > a.current, #nav .gnav_subnav .gnav > li > .sub.current {
    -webkit-transition: 0s;
    transition: 0s;
  }
  #nav .gnav_subnav .gnav > li > a.current::before, #nav .gnav_subnav .gnav > li > .sub.current::before {
    background: var(--clr_red);
  }
  #nav .gnav_subnav .gnav > li .subbox {
    display: none;
    width: 47rem;
    position: absolute;
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a {
    font-size: 1.8rem;
    padding: 1.6rem;
  }
}
@media screen and (min-width: 48em) and (hover: hover), print and (hover: hover) {
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a {
    opacity: 1;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a:where(:-moz-any-link, :enabled, summary):hover {
    color: rgba(255, 255, 255, 0.7);
    opacity: 1;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a:where(:any-link, :enabled, summary):hover {
    color: rgba(255, 255, 255, 0.7);
    opacity: 1;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a:where(:-moz-any-link, :enabled, summary):hover::before {
    background: none;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a:where(:any-link, :enabled, summary):hover::before {
    background: none;
  }
}
@media screen and (min-width: 48em), print {
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a:focus-visible {
    color: rgba(255, 255, 255, 0.7);
    opacity: 1;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a:focus-visible::before {
    background: none;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a.current {
    -webkit-transition: 0s;
    transition: 0s;
  }
  #nav .gnav_subnav #menu_close {
    display: none;
  }
  #nav.fix_nav {
    background: #fff;
  }
}
.overview {
  margin: 6rem 0 0;
  padding: 4rem 0 0;
  background: var(--clr_gray);
  font-size: 1.4rem;
  line-height: 1.6;
}
.overview .clinic_name {
  margin: 0 0 3rem;
}
.overview .clinic_name img {
  max-width: 80%;
  margin: auto;
}
.overview > .wrap {
  margin: 0 1.6rem;
}
.overview > .wrap .overviewR {
  margin: 2rem 0 0;
}
.overview > .wrap .overviewR .gaiyo {
  width: 100%;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.overview > .wrap .overviewR .gaiyo dt {
  width: 26%;
  padding: 0 0 0 1rem;
  margin: 0 0 1.6rem;
  color: var(--clr_navy);
  font-weight: bold;
  border-left: 1px solid var(--clr_navy);
}
.overview > .wrap .overviewR .gaiyo dd {
  width: 74%;
  margin: 0 0 1.6rem;
}
.overview > .wrap .overviewR .gaiyo dd .tel {
  font-size: 120%;
}
.overview .gmap {
  margin: 4rem 0 0;
  height: 100vw;
}

@media screen and (min-width: 48em), print {
  .overview {
    margin: 14rem 0 0;
    padding: 6rem 0 0;
    font-size: 1.8rem;
  }
  .overview .clinic_name {
    margin: 0 0 6rem;
  }
  .overview .clinic_name img {
    max-width: 45rem;
  }
  .overview > .wrap {
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .overview > .wrap .overviewL, .overview > .wrap .overviewR {
    width: 48%;
  }
  .overview > .wrap .overviewR {
    margin: 0;
  }
  .overview > .wrap .overviewR .gaiyo dt {
    width: 17%;
    padding: 0 0 0 1.6rem;
  }
  .overview > .wrap .overviewR .gaiyo dd {
    width: 83%;
    padding: 0 0 0 2rem;
  }
  .overview .gmap {
    height: 50rem;
  }
}
#tel_up {
  width: 100%;
  height: 4rem;
  background: #fff;
  visibility: hidden;
  position: fixed;
  inset: auto 0 0;
  z-index: 10;
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 -0.2rem 0.2rem rgba(var(--rgb_txt), 0.2);
          box-shadow: 0 -0.2rem 0.2rem rgba(var(--rgb_txt), 0.2);
}
#tel_up ul {
  width: calc(100% - 4rem);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}
#tel_up ul li {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  height: 100%;
  text-align: center;
}
#tel_up ul li.telno a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  font-size: 1.6rem;
}
#tel_up ul li .btn_rsv {
  height: 100%;
}
#tel_up ul li .btn_rsv span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
#tel_up #pageup {
  display: block;
  width: 4rem;
  height: 100%;
  text-align: center;
  padding: 0 1rem;
  line-height: 1;
  background: #fff;
  border: 1px solid var(--clr_navy);
  overflow: hidden;
  position: relative;
  z-index: 101;
}
#tel_up #pageup::before {
  display: block;
  font-family: "fontello";
  content: "\e809";
  font-size: 1.6rem;
}
#tel_up #pageup .clip {
  display: block;
  font-size: 1rem;
  clip-path: inset(50%);
  color: transparent;
  position: absolute;
  inset: 0;
  z-index: 0;
}

@media screen and (min-width: 48em), print {
  #tel_up {
    display: block;
    width: 6rem;
    height: 6rem;
    inset: auto 4rem 4rem auto;
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  #tel_up ul {
    display: none;
  }
  #tel_up #pageup {
    width: 100%;
    border-radius: 50%;
    padding: 0;
  }
  #tel_up #pageup::before {
    font-size: 3rem;
  }
}
@media screen and (min-width: 48em) and (hover: hover), print and (hover: hover) {
  #tel_up #pageup {
    opacity: 1;
  }
  #tel_up #pageup:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 1;
  }
  #tel_up #pageup:where(:any-link, :enabled, summary):hover {
    opacity: 1;
  }
}
@media screen and (min-width: 48em), print {
  #tel_up #pageup:focus-visible {
    opacity: 1;
  }
}
.footer {
  text-align: center;
  padding: 0 0 4rem;
  color: #fff;
  background: var(--clr_navy);
}
.footer .copy {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 1.2rem;
  opacity: 0.6;
}
.footer ul {
  display: none;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 6rem 0 2rem;
  }
  .footer .copy {
    font-size: 1.8rem;
    margin: 5rem 0 0;
  }
  .footer ul {
    display: block;
    text-align: center;
  }
  .footer ul li {
    display: inline-block;
    font-size: 1.8rem;
    margin: 0 0 1rem;
    -webkit-text-size-adjust: none;
  }
  .footer ul li:not(:last-child)::after {
    content: "|";
    margin: 0 1rem;
  }
}
@media screen and (min-width: 48em) and (hover: hover), print and (hover: hover) {
  .footer ul li a {
    opacity: 1;
  }
  .footer ul li a:where(:-moz-any-link, :enabled, summary):hover {
    text-decoration: underline;
    opacity: 1;
  }
  .footer ul li a:where(:any-link, :enabled, summary):hover {
    text-decoration: underline;
    opacity: 1;
  }
}
@media screen and (min-width: 48em), print {
  .footer ul li a:focus-visible {
    text-decoration: underline;
    opacity: 1;
  }
  .footer ul li.treatment {
    display: none;
  }
}
@media screen and (min-width: 48em), print {
  body.index {
    background: url(../img/index_kv_bg.svg) no-repeat left calc((100% - 1200px) / 2 + 43rem) top -24rem/2650px 1200px;
  }
}

.keyvsl {
  width: 100%;
  position: relative;
}
.keyvsl #keyvsl {
  max-width: 100%;
  height: 30rem;
  overflow: hidden;
  visibility: hidden;
}
.keyvsl #keyvsl div img {
  height: 27rem !important;
  -o-object-fit: cover;
     object-fit: cover;
  margin: auto;
}
.keyvsl #keyvsl .slick-dots {
  margin: 0.6rem 0 0;
  position: relative;
  z-index: 2;
}
.keyvsl #keyvsl .slick-dots li {
  width: 1rem;
  height: 1rem;
  margin: 0 0.6rem;
}
.keyvsl #keyvsl .slick-dots li button {
  background: var(--clr_yellow_dark);
}
.keyvsl > .wrap {
  padding: 1.6rem;
  position: absolute;
  inset: 0;
}
.keyvsl > .wrap .open_nairan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 1rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-style: normal;
  position: absolute;
  inset: auto 1.6rem 4rem auto;
}
.keyvsl > .wrap .open_nairan li {
  min-width: 12.4rem;
  display: -ms-grid;
  display: grid;
  place-content: center;
  place-items: center;
  font-size: 1.4rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.9);
}
.keyvsl > .wrap .open_nairan li span {
  display: block;
  font-size: 80%;
}
.keyvsl > .wrap .open_nairan li.open {
  color: var(--clr_navy_dark01);
  border-top: 2px solid var(--clr_navy);
}

@media screen and (min-width: 48em), print {
  .keyvsl #keyvsl {
    height: 74rem;
  }
  .keyvsl #keyvsl div img {
    height: 70rem !important;
    -o-object-fit: none;
       object-fit: none;
  }
  .keyvsl #keyvsl .slick-dots {
    margin: -4rem auto 0;
  }
  .keyvsl #keyvsl .slick-dots li {
    width: 1.6rem;
    height: 1.6rem;
    margin: 0 1.2rem;
  }
  .keyvsl > .wrap .open_nairan {
    gap: 3rem;
    inset: auto 0 8rem auto;
  }
  .keyvsl > .wrap .open_nairan li {
    min-width: 20rem;
    min-height: 10rem;
    font-size: 2.4rem;
  }
  .keyvsl > .wrap .open_nairan li span {
    font-size: 80%;
  }
}
body.index .main .tit_02::after {
  display: block;
  content: attr(data-txt);
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
  text-indent: 0;
  font-size: 45%;
  margin: 0.6rem 0 0;
}

.sns {
  margin: 6rem 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
.sns li a {
  min-width: 25rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.2rem;
  padding: 2rem 4rem;
  font-size: 2rem;
  text-decoration: none !important;
}
.sns li a::before {
  display: block;
  content: "";
  width: 4rem;
  aspect-ratio: 1;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 4rem;
          flex: 0 0 4rem;
}
.sns li a.insta {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  border: 4px solid var(--clr_gray_dark01);
}
.sns li a.insta::before {
  background: url(../img/icon_insta.jpg) no-repeat center/contain;
}

.doctorsfiles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 800px;
  margin-inline: auto;
  gap: 3em;
}
@media screen and (min-width: 48em), print {
  .doctorsfiles {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (min-width: 48em), print {
  .sns {
    width: 1200px;
    margin: 10rem auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 4rem;
  }
  .sns li a {
    min-width: 33rem;
    padding: 2rem 7rem;
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 48em) and (hover: hover), print and (hover: hover) {
  .sns li a {
    opacity: 1;
  }
  .sns li a:where(:-moz-any-link, :enabled, summary):hover {
    color: var(--clr_red);
  }
  .sns li a:where(:any-link, :enabled, summary):hover {
    color: var(--clr_red);
  }
}
@media screen and (min-width: 48em), print {
  .sns li a:focus-visible {
    color: var(--clr_red);
  }
}
.info {
  margin: 6rem 1.6rem 0;
}
.info dl {
  padding: 0 0.6rem 2rem 0;
  border-bottom: 1px solid #ccc;
}
.info dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 0.6rem;
  margin: 0 0 0.6rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  color: var(--clr_navy);
  font-size: 110%;
  line-height: 1.6;
  cursor: pointer;
}
.info dl dt::before {
  font-family: "fontello";
  content: "\e80f";
}
.info dl dt.close::before {
  scale: 1 -1;
}
.info dl dt:not(:first-of-type) {
  margin: 2rem 0 0.6rem;
  padding: 2rem 0 0;
  border-top: 1px solid #ccc;
}
.info dl dd {
  margin: 0 0 2rem 1.6em;
}
.info dl dd:nth-of-type(n+4) {
  display: none;
}

@media screen and (min-width: 48em), print {
  .info {
    width: 1200px;
    margin: 10rem auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .info .tit_02 {
    width: 35rem;
  }
  .info dl {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .info dl dt {
    gap: 0 1rem;
    margin: 0 0 1rem;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .info dl dt::before {
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .info dl dt:not(:first-of-type) {
    margin: 3rem 0 0.6rem;
    padding: 3rem 0 0;
  }
  .info dl dt:hover, .info dl dt:focus-visible {
    color: var(--clr_red);
  }
  .info dl dd {
    margin: 0 0 3rem 1.6em;
  }
}
.aisatsu {
  margin: 6rem 0 0;
  padding: 0 0 4rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(2.6rem, #fff), color-stop(2.6rem, var(--clr_gray)), to(var(--clr_gray)));
  background: linear-gradient(to bottom, #fff 0%, #fff 2.6rem, var(--clr_gray) 2.6rem, var(--clr_gray) 100%);
  position: relative;
  overflow: hidden;
}
.aisatsu::after {
  content: "";
  display: block;
  width: 24rem;
  aspect-ratio: 1;
  background: url(../img/logo_mark.png) no-repeat center/contain;
  position: absolute;
  inset: auto -1.6rem 9rem auto;
}
.aisatsu .wrap {
  margin: 0 1.6rem;
}
.aisatsu .wrap .photo {
  max-width: 80%;
  margin: 0 auto 2rem;
}
.aisatsu .wrap .name {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  color: var(--clr_navy);
  font-size: 120%;
  text-align: right;
}

@media screen and (min-width: 48em), print {
  .aisatsu {
    margin: 13rem 0 0;
    padding: 0 0 8rem;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(4.4rem, #fff), color-stop(4.4rem, var(--clr_gray)), to(var(--clr_gray)));
    background: linear-gradient(to bottom, #fff 0%, #fff 4.4rem, var(--clr_gray) 4.4rem, var(--clr_gray) 100%);
    position: relative;
    overflow: hidden;
  }
  .aisatsu::after {
    width: 51.6rem;
    position: absolute;
    inset: auto calc((100% - 1200px) / 2 - 10rem) 8rem auto;
  }
  .aisatsu .wrap {
    margin: auto;
  }
  .aisatsu .wrap .photo {
    width: 62.5rem !important;
    margin: 0 auto 4rem;
  }
}
.body_parts {
  padding: 6rem 1.6rem;
  background: url(../img/index_bodypart_bg.jpg) no-repeat center bottom/auto 89%;
  font-size: 1.4rem;
  line-height: 1.8;
}
.body_parts .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  padding: 35rem 0 0;
  background: url(../img/index_bodypart.svg) no-repeat top center/80% auto;
}
.body_parts .inner .lst_parts {
  width: 45%;
}
.body_parts .inner .lst_parts li {
  margin: 0 0 1rem;
  outline: 1px solid rgba(var(--rgb_navy), 0.4);
  outline-offset: -0.4rem;
  background: #fff;
  position: relative;
}
.body_parts .inner .lst_parts li::after {
  content: "";
  display: block;
  width: 1em;
  aspect-ratio: 1;
  background: var(--clr_red);
  border-radius: 100% 0 0 0;
  position: absolute;
  inset: auto 0 0 auto;
}
.body_parts .inner .lst_parts li a {
  display: block;
  text-align: center;
  color: var(--clr_navy);
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  padding: 0.8rem;
  text-decoration: none !important;
  position: relative;
}
.body_parts .inner .lst_parts li a::before {
  content: "";
  display: block;
  width: 3rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, var(--clr_yellow_light) 0%, var(--clr_yellow_dark) 100%);
  opacity: 0.5;
  position: absolute;
}
.body_parts .inner .lst_parts li a.current {
  color: #fff;
  background: var(--clr_red);
}
.body_parts .inner .lst_parts.left li a.shoulder::before {
  top: -29rem;
  left: 4rem;
}
.body_parts .inner .lst_parts.left li a.finger::before {
  top: -24rem;
  left: 1rem;
}
.body_parts .inner .lst_parts.left li a.waist::before {
  top: -34rem;
  left: 8rem;
}
.body_parts .inner .lst_parts.left li a.knees::before {
  top: -29rem;
  left: 5.6rem;
}
.body_parts .inner .lst_parts.left li a.feet::before {
  top: -27rem;
  left: 5.4rem;
}
.body_parts .inner .lst_parts.right li a.head::before {
  top: -35rem;
  right: 8rem;
}
.body_parts .inner .lst_parts.right li a.neck::before {
  top: -37rem;
  right: 5rem;
}
.body_parts .inner .lst_parts.right li a.elbow::before {
  top: -35rem;
  right: 3rem;
}
.body_parts .inner .lst_parts.right li a.hip_joint::before {
  top: -36rem;
  right: 6.6rem;
}
.body_parts .inner .lst_parts.right li a.calf::before {
  top: -30rem;
  right: 5rem;
}

@media screen and (min-width: 48em), print {
  @-webkit-keyframes maru {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 0.8;
    }
    50% {
      -webkit-transform: scale(1.5);
              transform: scale(1.5);
      opacity: 0.8;
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 0.8;
    }
  }
  @keyframes maru {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 0.8;
    }
    50% {
      -webkit-transform: scale(1.5);
              transform: scale(1.5);
      opacity: 0.8;
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 0.8;
    }
  }
  .body_parts {
    padding: 13rem 0;
    background: url(../img/index_bodypart_bg.jpg) no-repeat center top 17.5rem/auto;
    font-size: 1.8rem;
    line-height: 2;
  }
  .body_parts .inner {
    width: 108rem;
    margin: auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 2rem 0;
    background: url(../img/index_bodypart.svg) no-repeat center/auto 47rem;
  }
  .body_parts .inner .lst_parts {
    width: 25rem;
  }
  .body_parts .inner .lst_parts li {
    width: 100%;
    margin: 0 0 3rem;
  }
  .body_parts .inner .lst_parts li a {
    font-size: 2.4rem;
  }
  .body_parts .inner .lst_parts li a::before {
    width: 4rem;
    background: radial-gradient(ellipse at center, var(--clr_yellow_light) 0%, var(--clr_yellow_dark) 100%);
  }
}
@media screen and (min-width: 48em) and (hover: hover), print and (hover: hover) {
  .body_parts .inner .lst_parts li a {
    opacity: 1;
  }
  .body_parts .inner .lst_parts li a:where(:-moz-any-link, :enabled, summary):hover {
    color: #fff;
    background: var(--clr_red);
  }
  .body_parts .inner .lst_parts li a:where(:any-link, :enabled, summary):hover {
    color: #fff;
    background: var(--clr_red);
  }
  .body_parts .inner .lst_parts li a:where(:-moz-any-link, :enabled, summary):hover::before {
    animation: maru 2s ease-out infinite;
  }
  .body_parts .inner .lst_parts li a:where(:any-link, :enabled, summary):hover::before {
    -webkit-animation: maru 2s ease-out infinite;
            animation: maru 2s ease-out infinite;
  }
}
@media screen and (min-width: 48em), print {
  .body_parts .inner .lst_parts li a:focus-visible {
    color: #fff;
    background: var(--clr_red);
  }
  .body_parts .inner .lst_parts li a:focus-visible::before {
    -webkit-animation: maru 2s ease-out infinite;
            animation: maru 2s ease-out infinite;
  }
  .body_parts .inner .lst_parts.left li a.shoulder::before {
    top: 8rem;
    left: 38rem;
  }
  .body_parts .inner .lst_parts.left li a.finger::before {
    top: 14rem;
    left: 37rem;
  }
  .body_parts .inner .lst_parts.left li a.waist::before {
    top: -2rem;
    left: 50rem;
  }
  .body_parts .inner .lst_parts.left li a.knees::before {
    top: 3rem;
    left: 43rem;
  }
  .body_parts .inner .lst_parts.left li a.feet::before {
    top: 5rem;
    left: 39.4rem;
  }
  .body_parts .inner .lst_parts.left li:nth-child(2), .body_parts .inner .lst_parts.left li:nth-child(4) {
    position: relative;
    left: -3rem;
  }
  .body_parts .inner .lst_parts.left li:nth-child(3) {
    position: relative;
    left: -6rem;
  }
  .body_parts .inner .lst_parts.right li a.head::before {
    top: 0rem;
    right: 43rem;
  }
  .body_parts .inner .lst_parts.right li a.neck::before {
    top: -5rem;
    right: 43rem;
  }
  .body_parts .inner .lst_parts.right li a.elbow::before {
    top: -5rem;
    right: 42rem;
  }
  .body_parts .inner .lst_parts.right li a.hip_joint::before {
    top: -7rem;
    right: 45.6rem;
  }
  .body_parts .inner .lst_parts.right li a.calf::before {
    top: -2rem;
    right: 39rem;
  }
  .body_parts .inner .lst_parts.right li:nth-child(2), .body_parts .inner .lst_parts.right li:nth-child(4) {
    position: relative;
    right: -3rem;
  }
  .body_parts .inner .lst_parts.right li:nth-child(3) {
    position: relative;
    right: -6rem;
  }
}
.tre {
  margin: 6rem 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(15rem, #fff), color-stop(15rem, var(--clr_navy)), color-stop(93%, var(--clr_navy)), color-stop(93%, #fff), to(#fff));
  background: linear-gradient(to bottom, #fff 0%, #fff 15rem, var(--clr_navy) 15rem, var(--clr_navy) 93%, #fff 93%, #fff 100%);
}
.tre .subnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  margin: 0 1.6rem;
}
.tre .subnav li {
  width: 43%;
  outline: 1px solid rgba(255, 255, 255, 0.4);
  outline-offset: -0.4rem;
  position: relative;
}
.tre .subnav li::after {
  content: "";
  display: block;
  width: 1em;
  aspect-ratio: 1;
  background: var(--clr_red);
  border-radius: 100% 0 0 0;
  position: absolute;
  inset: auto 0 0 auto;
}
.tre .subnav li a {
  display: block;
  height: 100%;
  color: #fff;
  background: var(--clr_navy_light01);
  font-size: 1.2rem;
  text-align: center;
  padding: 2rem 1rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  text-decoration: none !important;
}
.tre .subnav li a::before {
  content: "";
  display: block;
  width: 40%;
  aspect-ratio: 1;
  margin: 0 auto 1rem;
}
.tre .subnav li a.sports_ortho {
  font-size: 1.4rem;
  background: rgba(var(--rgb_navy_light01), 0.85);
}
.tre .subnav li a.sports_ortho::before {
  width: 5em;
  background: url(../img/icon_sports.svg) no-repeat center/contain;
}
.tre .subnav li a.ortho::before {
  background: url(../img/icon_seikei.svg) no-repeat center/contain;
}
.tre .subnav li a.rehabilitation::before {
  background: url(../img/icon_riha.svg) no-repeat center/contain;
}
.tre .subnav li a.pain::before {
  background: url(../img/icon_pain.svg) no-repeat center/contain;
}
.tre .subnav li a.headache::before {
  background: url(../img/icon_zutsu.svg) no-repeat center/contain;
}
.tre .subnav li a.osteoporosis::before {
  background: url(../img/icon_kotsu.svg) no-repeat center/contain;
}
.tre .subnav li a.traffic_accident::before {
  background: url(../img/icon_jiko.svg) no-repeat center/contain;
}
.tre .subnav li a.free::before {
  background: url(../img/icon_jiyu.svg) no-repeat center/contain;
}
.tre .subnav li a.current {
  background: var(--clr_navy);
}
.tre .subnav li.wide {
  width: calc(100% - 3.6rem);
  background: url(../img/index_tre_sports.jpg) no-repeat center/cover;
}

@media screen and (min-width: 48em), print {
  .tre {
    margin: 13rem 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(26rem, #fff), color-stop(26rem, var(--clr_navy)), color-stop(87%, var(--clr_navy)), color-stop(87%, #fff), to(#fff));
    background: linear-gradient(to bottom, #fff 0%, #fff 26rem, var(--clr_navy) 26rem, var(--clr_navy) 87%, #fff 87%, #fff 100%);
  }
  .tre .subnav {
    width: 1200px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2rem;
    margin: 0 auto;
  }
  .tre .subnav li {
    width: calc(25% - 2rem);
    outline-offset: -0.5rem;
  }
  .tre .subnav li a {
    font-size: 2.4rem;
    padding: 4rem 1rem;
  }
  .tre .subnav li a::before {
    width: 8rem;
    margin: 0 auto 2.6rem;
  }
  .tre .subnav li a.sports_ortho {
    font-size: 3.2rem;
  }
  .tre .subnav li a.sports_ortho::before {
    width: 8rem;
  }
}
@media screen and (min-width: 48em) and (hover: hover), print and (hover: hover) {
  .tre .subnav li a {
    opacity: 1;
  }
  .tre .subnav li a:where(:-moz-any-link, :enabled, summary):hover {
    background: var(--clr_navy);
  }
  .tre .subnav li a:where(:any-link, :enabled, summary):hover {
    background: var(--clr_navy);
  }
}
@media screen and (min-width: 48em), print {
  .tre .subnav li a:focus-visible {
    background: var(--clr_navy);
  }
  .tre .subnav li.wide {
    width: 59rem;
    margin: 0 26%;
  }
}
.feature {
  margin: 6rem 1.6rem !important;
}
.feature .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem 0;
  counter-reset: number 0;
}
.feature .inner section {
  width: 48%;
  padding: 15rem 0 0;
  margin: 0;
  counter-increment: number 1;
  position: relative;
}
.feature .inner section::before {
  width: 4.4rem;
  aspect-ratio: 1;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  content: counter(number, decimal-leading-zero);
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  padding: 0.4em 0 0 0.4em;
  background: var(--clr_navy);
  border-radius: 0 0 100% 0;
  position: absolute;
  inset: 0 auto auto 0;
}
.feature .inner section .tit {
  display: -ms-grid;
  display: grid;
  place-content: center;
  place-items: center;
  min-height: 10rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  color: var(--clr_navy);
  font-size: 1.6rem;
  line-height: 1.4;
  text-align: center;
  padding: 3rem 0 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(50%, white));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 50%);
}
.feature .inner section p::before {
  content: "";
  display: block;
  width: 3em;
  height: 1px;
  background: var(--clr_red);
  margin: 1rem auto 2rem;
}
.feature .inner section.sports {
  background: url(../img/index_feature_sports.jpg) no-repeat center top/100% auto;
}
.feature .inner section.seikei {
  background: url(../img/index_feature_seikei.jpg) no-repeat center top/100% auto;
}
.feature .inner section.kotsu {
  background: url(../img/index_feature_kotsu.jpg) no-repeat center top/100% auto;
}
.feature .inner section.mri {
  background: url(../img/index_feature_mri.jpg) no-repeat center top/100% auto;
}

@media screen and (min-width: 48em), print {
  .feature {
    width: 1200px;
    margin: 13rem auto !important;
  }
  .feature .inner {
    gap: 4rem 0;
  }
  .feature .inner section {
    width: calc(25% - 4rem);
    padding: 28rem 0 0;
  }
  .feature .inner section::before {
    width: 6rem;
    font-size: 3.2rem;
    padding: 0.2em 0 0 0.3em;
  }
  .feature .inner section .tit {
    min-height: 13.1rem;
    font-size: 2.4rem;
  }
}
body:not(.index) .sub_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
body:not(.index) .main {
  margin: 4rem 1.6rem 6rem;
}
body:not(.index) .main .tel {
  font-size: 120%;
}
body:not(.index) .main .btn_rsv span {
  padding: 1rem 3rem;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main {
    width: 100rem;
    margin: 8rem auto;
  }
  body:not(.index) .main .cf .img_l, body:not(.index) .main .cf .img_r {
    max-width: 40%;
    height: auto;
  }
}

.breadnav {
  max-width: 100vw;
  margin: 1rem 1.6rem;
  overflow-x: auto;
}
.breadnav .breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.2rem;
  white-space: nowrap;
}
.breadnav .breadcrumb li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.breadnav .breadcrumb li a {
  text-decoration: underline;
}
.breadnav .breadcrumb li:not(:last-child)::after {
  display: inline-block;
  content: ">";
  font-size: 70%;
  margin: 0 0.6rem;
}

@media screen and (min-width: 48em), print {
  .breadnav {
    width: 1200px;
    max-width: 100%;
    margin: 2rem auto 0;
    overflow-x: inherit;
  }
  .breadnav .breadcrumb {
    font-size: 1.8rem;
  }
  .breadnav .breadcrumb li:not(:last-child)::after {
    margin: 0 1rem;
  }
  .breadnav .breadcrumb li a:hover {
    opacity: 1;
    text-decoration: none;
  }
}
.dr_name {
  text-align: right;
}
.dr_name span {
  font-size: 120%;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
summary.btn_detail {
  cursor: pointer;
}

.reki {
  margin: 3rem 0 0;
  opacity: 0;
  -webkit-animation: fadein 0.4s ease-out 0.3s 1 normal forwards;
          animation: fadein 0.4s ease-out 0.3s 1 normal forwards;
}

.gallery {
  width: 85%;
  margin: auto;
  visibility: hidden;
}
.gallery .gallery_slider div .cap {
  margin: 0.2rem 0 0;
  text-align: center;
  color: #fff;
  padding: 0.4rem;
  font-size: 1.2rem;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: var(--clr_navy);
  line-height: 1.4;
}
.gallery .gallery_slider div .slick-current .cap {
  opacity: 1;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.gallery .gallery_slider div:first-child .cap {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.gallery .gallery_thum div img {
  cursor: pointer;
  border: 4px solid transparent;
}
.gallery .gallery_thum .slick-current div img {
  border: 4px solid var(--clr_navy);
}

@media screen and (min-width: 48em), print {
  .gallery {
    width: 75rem;
    margin: auto;
  }
  .gallery .gallery_slider {
    font-size: 1.6em;
  }
  .gallery .gallery_slider div .cap {
    font-size: 1.8rem;
    padding: 1rem;
  }
  .gallery .gallery_thum {
    width: calc(100% + 0.6rem);
  }
}
.device li {
  margin: 0 0 2rem;
  text-align: center;
}
.device li img {
  margin: 0 auto 0.6rem;
  max-width: 80%;
}

@media screen and (min-width: 48em), print {
  .device {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem;
  }
  .device li {
    width: 32%;
  }
  .device li img {
    margin: 0 auto 1rem;
    max-width: 100%;
  }
}
.full-image {
  font-size: 1.4rem;
}
@media screen and (min-width: 48em), print {
  .full-image {
    font-size: 2rem;
  }
}

.lst_flow {
  counter-reset: number 0;
}
.lst_flow li {
  counter-increment: number 1;
  position: relative;
  padding: 2rem 1rem;
  border-bottom: 1px solid #ccc;
}
.lst_flow li .tit {
  color: var(--clr_navy);
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.8rem;
  line-height: 1.4;
  margin: 0 0 2rem;
  position: relative;
}
.lst_flow li .tit::before {
  display: inline-block;
  content: counter(number, decimal-leading-zero) ".";
  border-bottom: 1px solid var(--clr_navy);
  padding: 0 0 0.6rem;
  margin: 0 0.4rem 0 0;
}
.lst_flow li:not(:last-child) {
  margin: 0 0 6rem;
}
.lst_flow li:not(:last-child)::after {
  display: block;
  content: "";
  width: 2.8rem;
  height: 1.4rem;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  inset: auto 0 -4rem;
  margin: auto;
}
.lst_flow li:nth-child(odd) {
  border-top: 2px solid var(--clr_navy);
}
.lst_flow li:nth-child(odd):not(:last-child)::after {
  background: var(--clr_navy);
}
.lst_flow li:nth-child(even) {
  border-top: 2px solid var(--clr_red);
}
.lst_flow li:nth-child(even) .tit {
  color: var(--clr_red);
}
.lst_flow li:nth-child(even) .tit::before {
  border-bottom: 1px solid var(--clr_red);
}
.lst_flow li:nth-child(even):not(:last-child)::after {
  background: var(--clr_red);
}

@media screen and (min-width: 48em), print {
  .lst_flow li {
    padding: 3rem;
  }
  .lst_flow li .tit {
    font-size: 2.8rem;
  }
  .lst_flow li .tit::before {
    margin: 0 0.8rem 0 0;
  }
  .lst_flow li:not(:last-child) {
    margin: 0 0 10rem;
  }
  .lst_flow li:not(:last-child)::after {
    width: 6rem;
    height: 2rem;
    inset: auto 0 -6rem;
  }
}
body.access .main .park {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.6rem 2rem;
  line-height: 1;
}
body.access .main .park li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
}
body.access .main .park li span {
  display: -ms-grid;
  display: grid;
  place-content: center;
  place-items: center;
  width: 1.6em;
  aspect-ratio: 1;
  color: #fff;
  background: var(--clr_navy);
}
body.access .main .map .gmap {
  height: 110vw;
  border: 1px solid var(--clr_navy_light01);
  border-radius: 0.6rem;
  margin: 2rem 0 0;
  overflow: hidden;
}
@media screen and (min-width: 48em), print {
  body.access .main .map .gmap {
    border-radius: 0.8rem;
  }
}
@media screen and (min-width: 48em), print {
  body.access .main .tbl_time {
    font-size: 2rem;
  }
  body.access .main .park {
    gap: 2rem 4rem;
  }
  body.access .main .map {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  body.access .main .map .gmap {
    margin: 4rem 0 0;
    height: 47rem;
    border: 2px solid var(--clr_navy_light01);
  }
}

.anc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.6rem 2rem;
}
.anc li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 0.6rem;
}
.anc li::before {
  font-family: "fontello";
  content: "\e80c";
  color: var(--clr_txt);
}
.anc li a {
  color: var(--clr_txt);
  display: inline-block;
  text-decoration: none !important;
}

@media screen and (min-width: 48em), print {
  .anc {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.6rem 2rem;
  }
  .anc li {
    font-size: 110%;
  }
}
@media screen and (min-width: 48em) and (hover: hover), print and (hover: hover) {
  .anc li a {
    opacity: 1;
  }
  .anc li a:where(:-moz-any-link, :enabled, summary):hover {
    text-decoration: underline !important;
  }
  .anc li a:where(:any-link, :enabled, summary):hover {
    text-decoration: underline !important;
  }
}
@media screen and (min-width: 48em), print {
  .anc li a:focus-visible {
    text-decoration: underline !important;
  }
}
@media screen and (min-width: 48em), print {
  img.treat_img {
    width: 60%;
  }
}
.lst_sports li {
  margin: 0.5rem 0 !important;
}

.tbl_price {
  width: 100%;
  border-collapse: collapse;
}
.tbl_price th {
  padding: 0.4rem 1rem;
}
.tbl_price th[scope=row] {
  text-align: left;
  background: var(--clr_gray);
  border: 1px solid #ccc;
}
.tbl_price td {
  text-align: right;
  padding: 0.4rem 1rem;
  border: 1px solid #ccc;
}

.lst_infinityflow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
.lst_infinityflow li {
  background: var(--clr_gray);
  padding: 1.6rem;
  overflow: hidden;
}
.lst_infinityflow li img {
  max-width: 40%;
  float: left;
  margin: 0 1.6rem 2rem 0;
}
.lst_infinityflow li .tit_05 {
  display: flow-root;
  margin: 0 0 0.6rem;
}
.lst_infinityflow li p {
  margin: 0;
}

@media screen and (min-width: 48em), print {
  .lst_infinityflow {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 3rem;
  }
  .lst_infinityflow li {
    width: 30%;
    padding: 3rem;
  }
  .lst_infinityflow li img {
    max-width: 55%;
    float: none;
    margin: 0 auto 1.6rem;
  }
  .lst_infinityflow li .tit_05 {
    display: flow-root;
    margin: 0 0 1.6rem;
  }
  .lst_infinityflow li p {
    margin: 0;
  }
}