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

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

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: #333333;
  --clr_main: #079B9F;
  --clr_sub01: #0073BB;
  --clr_sub02: #4AAC64;
  --clr_sub03: #C7D3C1;
  --clr_sub04: #2AC8CE;
  --clr_sub05: #EAF5DB;
  --clr_sub06: #D92F2F;
  --clr_sub07: #E8F2F9;
  --clr_sub08: #E6992F;
  --clr_sub09: #F2F5F0;
  --clr_sub10: #475455;
  --clr_sub11: #223B3C;
  --clr_sub12: #DCDCDC;
  --clr_sub13: #FFEBEB;
  --clr_sub14: #FFE93C;
}

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

.red {
  color: #f00;
}

.blue {
  color: #00f;
}

.uline {
  text-decoration: underline;
}

.link_txt {
  color: var(--clr_sub01);
  border-bottom: 1px var(--clr_sub01) solid;
}
.link_txt::before {
  content: "≫";
}
.link_txt:hover {
  color: var(--clr_sub02);
  border-bottom: 1px var(--clr_sub02) solid;
}

.highlight {
  font-weight: 500;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(55%, transparent), color-stop(55%, var(--clr_sub14)));
  background: linear-gradient(transparent 55%, var(--clr_sub14) 55%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.img_c {
  margin: 1rem auto;
  width: auto;
}

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

.tate {
  max-width: 80%;
}

.bnr {
  margin: 5rem auto 0;
  display: block;
}
.bnr img {
  margin: 0 auto;
  width: 80%;
}

@media screen and (min-width: 48em), print {
  .img_l {
    float: left;
    margin: 0 2rem 2rem 0;
    border-radius: 10px;
  }
  .img_r {
    float: right;
    margin: 0 0 2rem 2rem;
    border-radius: 10px;
  }
  .tate {
    max-width: 25% !important;
  }
  .bnr {
    margin: 11rem auto 0;
  }
  .bnr img {
    width: auto;
  }
  .bnr img:hover {
    opacity: 0.8;
  }
}
.sp_n {
  display: none;
}

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

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

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

.mt15 {
  margin-top: 1.5rem !important;
}

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

.mg0 {
  margin: 0 !important;
}

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

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

.main > section > section section ~ section, .flex2 > section > section section ~ section {
  margin-top: 2rem;
}

.main > section > section > section section ~ section, .flex2 > section > section > section section ~ section {
  margin-top: 2rem;
}

@media screen and (min-width: 48em), print {
  .mt40 {
    margin-top: 8rem !important;
  }
  .mt30 {
    margin-top: 6rem !important;
  }
  .mt20 {
    margin-top: 4rem !important;
  }
  .mt15 {
    margin-top: 3rem !important;
  }
  .mt10 {
    margin-top: 2rem !important;
  }
  .main > section ~ section, .flex2 > section ~ section {
    margin-top: 8rem;
  }
  .main > section section ~ section, .flex2 > section section ~ section {
    margin-top: 6rem;
  }
  .main > section > section section ~ section, .flex2 > section > section section ~ section {
    margin-top: 4rem;
  }
  .main > section > section > section section ~ section, .flex2 > section > section > section section ~ section {
    margin-top: 2rem;
  }
}
.tbl_time {
  width: 100%;
  border-spacing: 0;
  font-size: 1.4rem;
}
.tbl_time caption {
  caption-side: bottom;
  text-align: left;
  margin-top: 1rem;
  font-size: 1.4rem;
  color: var(--clr_sub10);
}
.tbl_time caption span {
  color: #fff;
  background: var(--clr_sub02);
  padding: 0.2rem 1rem;
  margin: 0 0.6rem 0 0;
}
.tbl_time tr th[scope=col] {
  padding: 0.8rem 0;
  text-align: center;
  background: var(--clr_sub02);
  border-right: 0.1rem var(--clr_sub03) solid;
  color: #fff;
  font-weight: 500;
}
.tbl_time tr th[scope=col]:first-child {
  width: 30%;
  text-align: center;
  white-space: nowrap;
  border-left: 0.1rem var(--clr_sub03) solid;
  font-size: 90%;
}
.tbl_time tr th.time {
  text-align: center;
  border-bottom: 0.1rem var(--clr_sub03) solid;
  border-left: 0.1rem var(--clr_sub03) solid;
  border-right: 0.1rem var(--clr_sub03) solid;
  color: var(--clr_sub10);
  background: #fff;
  font-weight: 500;
}
.tbl_time tr td {
  text-align: center;
  padding: 1.2rem 0.4rem;
  line-height: 1;
  color: var(--clr_sub10);
  border-bottom: 0.1rem var(--clr_sub03) solid;
  border-right: 0.1rem var(--clr_sub03) solid;
  background: #fff;
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    table-layout: fixed;
    font-size: 1.8rem;
  }
  .tbl_time caption {
    text-align: left;
    margin: 1.2rem 0 0 0;
    font-size: 1.8rem;
  }
  .tbl_time caption span {
    margin: 0 0.8rem 0 0;
    padding: 0.35rem 1.8rem;
  }
  .tbl_time tr th[scope=col] {
    padding: 1.742rem 0;
  }
  .tbl_time tr th[scope=col]:first-child {
    font-size: 100%;
  }
  .tbl_time tr td {
    padding: 2.05rem 0;
  }
}
.tit_01 {
  background: url("../img/tit_01.webp") no-repeat center center/cover;
  font-size: 2.4rem;
  padding: 3rem 1rem;
  text-align: center;
  margin: 0 0 1rem;
  letter-spacing: 0.15rem;
  line-height: 1.3;
  color: var(--clr_sub11);
  font-weight: 500;
}

.tit_02 {
  font-size: 2.2rem;
  text-align: center;
  line-height: 1.3;
  margin: 0 auto 1.5rem;
  color: var(--clr_sub01);
  font-weight: 700;
  padding: 0 0 1rem;
  position: relative;
}

.tit_03 {
  font-size: 2rem;
  line-height: 1.3;
  margin: 0 0 1.6rem;
  color: #fff;
  font-weight: 700;
  padding: 0.7rem 0.8rem;
  background: var(--clr_sub02);
  border-radius: 0.6rem;
}

.tit_04 {
  font-size: 1.8rem;
  line-height: 1.3;
  margin: 0 0 1.6rem;
  font-weight: 700;
  padding: 0 0 0.7rem;
  position: relative;
  border-bottom: solid 0.2rem var(--clr_sub12);
}
.tit_04::after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 0.2rem var(--clr_sub01);
  bottom: -0.2rem;
  width: 20%;
}

.tit_05 {
  font-size: 1.8rem;
  line-height: 1.3;
  margin: 0 0 1.4rem;
  font-weight: 700;
  color: var(--clr_main);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0 0 1.3rem;
}
.tit_05::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  content: "";
  background: var(--clr_main);
  width: 0.6rem;
  height: 100%;
}

.tit_06 {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.3;
  margin: 0 0 1rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  color: var(--clr_sub11);
  background: var(--clr_sub03);
  border-radius: 0.4rem;
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    font-size: 3.8rem;
    padding: 0;
    height: 25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-line-pack: center;
        align-content: center;
    margin: 0 0 1rem;
  }
  .tit_02 {
    font-size: 3.2rem;
    margin: 0 auto 3.7rem;
  }
  .tit_03 {
    font-size: 3rem;
    margin: 0 0 2rem;
    padding: 1.5rem 2rem;
  }
  .tit_04 {
    font-size: 2.6rem;
    margin: 0 0 1.8rem;
    padding: 0 0 1rem;
    border-bottom: solid 0.3rem var(--clr_sub12);
  }
  .tit_04::after {
    position: absolute;
    content: " ";
    display: block;
    border-bottom: solid 0.3rem var(--clr_sub01);
    bottom: -0.3rem;
    width: 14rem;
  }
  .tit_05 {
    font-size: 2.2rem;
    margin: 0 0 1.6rem;
  }
  .tit_05::before {
    width: 0.8rem;
  }
  .tit_06 {
    font-size: 2rem;
    margin: 0 0 1.4rem;
    padding: 1rem 1.2rem;
  }
}
.lst {
  line-height: 1.4;
  margin: 1rem 0;
}
.lst > li {
  position: relative;
}
.lst > li:not(:last-child) {
  margin: 0 0 1rem;
}

.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_sub01);
  position: absolute;
  top: 0.1rem;
  left: 0;
  font-size: 1rem;
}
.lst_ul.kome {
  display: flow-root;
}
.lst_ul.kome > li::before {
  content: "※";
  color: var(--clr_txt);
}

.lst_ul_disc {
  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_sub02);
}

.lst_ol {
  counter-reset: my-counter;
  list-style: none;
  padding: 0;
}
.lst_ol li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}
.lst_ol li::before {
  content: counter(my-counter);
  counter-increment: my-counter;
  background-color: #3B6D34;
  color: #fff;
  display: block;
  float: left;
  line-height: 24px;
  margin-left: -30px;
  margin-top: 3px;
  text-align: center;
  height: 22px;
  width: 22px;
  border-radius: 50%;
}

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

.lst_dl02 {
  margin-top: 2rem;
}
.lst_dl02 dt {
  background: #3B6D34;
  padding: 0.4rem 1rem;
  border-top: 1px solid #B8AB9B;
  border-right: 1px solid #B8AB9B;
  border-left: 1px solid #B8AB9B;
  color: #fff;
}
.lst_dl02 dd {
  margin: 0 0 1.5rem;
  padding: 0.6rem 1rem;
  border-right: 1px solid #B8AB9B;
  border-left: 1px solid #B8AB9B;
  border-bottom: 1px solid #B8AB9B;
}

.lst_dl03 {
  margin-top: 2rem;
}
.lst_dl03 dt {
  padding: 0.4rem 1rem;
  border-right: 1px solid #1DA7F1;
  border-left: 1px solid #1DA7F1;
  background: #DBF3FF;
}
.lst_dl03 dt:first-of-type {
  border-top: 1px solid #1DA7F1;
}
.lst_dl03 dd {
  border-top: 1px solid #1DA7F1;
}
.lst_dl03 dd ul li {
  padding: 0.6rem 1rem;
  border-bottom: 1px dashed #1DA7F1;
  border-right: 1px solid #1DA7F1;
  border-left: 1px solid #1DA7F1;
  line-height: 1.3;
}
.lst_dl03 dd ul li:last-of-type {
  border-bottom: 1px solid #1DA7F1;
}

@media screen and (min-width: 48em), print {
  .lst_ul > li::before {
    top: 0.5rem;
  }
  .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: 14%;
  }
  .lst_dl01 dd {
    width: 86%;
    padding: 0 0 0 1rem;
  }
  .lst_dl02 {
    border-bottom: 1px solid #B8AB9B;
    margin-top: 3rem;
  }
  .lst_dl02 dt {
    width: 100%;
    padding: 1.5rem 2.5rem;
  }
  .lst_dl02 dd {
    width: 100%;
    margin: 0;
    padding: 1.5rem 2.5rem;
    border-bottom: none;
  }
  .lst_dl03 {
    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;
    margin-top: 3rem;
  }
  .lst_dl03 dt {
    width: 20%;
    padding: 1rem 2.5rem;
    border-right: none;
    border-bottom: 1px solid #1DA7F1;
  }
  .lst_dl03 dd {
    width: 80%;
  }
  .lst_dl03 dd:not(:first-of-type) {
    border-top: none;
  }
  .lst_dl03 dd ul li {
    padding: 1rem 2.5rem;
  }
  .lst_dl03 dd ul li:first-of-type {
    border-top: none;
  }
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 3rem;
}

.flex2 > li:first-child {
  margin: 0 0 2rem;
}
.flex2 > li img {
  border-radius: 10px;
}
.flex2.center li {
  width: 80%;
  margin: 2rem auto;
}

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

.flex1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.flex1 > li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 2.5rem 0.6em 0 !important;
}

@media screen and (min-width: 48em), print {
  .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 > ul {
    width: 48%;
    margin-top: 0 !important;
  }
  .flex2 > section:first-child, .flex2 > li:first-child, .flex2 > ul:first-child {
    margin: 0;
  }
  .flex2.center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 4rem;
  }
  .flex2.center li {
    width: 40%;
    margin: 0;
  }
  .flex3 {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .flex3 li {
    width: calc((100% - 4rem) / 3);
  }
  .flex3 li:not(:nth-child(3n)) {
    margin: 0 2rem 0 0;
  }
  .flex3_1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .flex3_1 li {
    width: calc((100% - 2rem) / 3);
  }
  .flex3_1 li:not(:nth-child(3n)) {
    margin: 0 1rem 0 0;
  }
  .flex1 > li {
    width: auto;
    min-width: 0;
    margin-right: 2rem !important;
  }
}
.tel {
  color: var(--clr_sub02);
  font-family: "Spectral", serif;
  font-weight: 400;
  font-style: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}
.tel::before {
  font-family: "fontello";
  content: "\e809";
  padding-right: 0.3rem;
  display: inline-block;
  font-size: 81.25%;
}
@media screen and (min-width: 48em), print {
  .tel {
    pointer-events: none;
    font-size: 2.8rem;
  }
  .tel::before {
    padding-right: 0.5rem;
  }
  .tel a {
    pointer-events: auto;
  }
}

.rsv {
  display: inline-block;
  -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_sub08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem 0;
}
.rsv::before {
  font-family: "fontello";
  content: "\e819";
  display: inline-block;
  margin: 0 0.8rem 0 0;
}
.rsv.btn {
  background: var(--clr_sub01);
  -webkit-box-shadow: 0 0 0 2px var(--clr_sub01);
          box-shadow: 0 0 0 2px var(--clr_sub01);
  border: 1px solid #FFDAC2;
}
.rsv.btn:hover {
  border: 1px solid #8BE0F1;
}
.rsv:hover {
  background: var(--clr_sub06);
}

.box {
  padding: 1rem;
  border-radius: 0.8rem;
}
@media screen and (min-width: 48em), print {
  .box {
    padding: 2rem;
  }
}
.box.box_blue {
  background: var(--clr_sub07);
}
.box.box_green {
  background: var(--clr_sub05);
}
.box.plain {
  border: 1px var(--clr_sub11) solid;
  padding: 0 0.8rem;
  border-radius: 0;
}

.btn {
  margin: 0.1rem 0.5rem;
  padding: 0.6rem 3.4rem;
  text-decoration: none !important;
  letter-spacing: 0.1rem;
  cursor: pointer;
  position: relative;
  color: #fff;
  font-size: 1.4rem;
  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;
  background: var(--clr_sub02);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 3rem;
}
.btn.btn_red {
  background: var(--clr_sub06);
}
@media screen and (min-width: 48em), print {
  .btn {
    margin: 0;
    padding: 1rem 5rem;
    letter-spacing: 0.2rem;
    font-size: 1.8rem;
  }
  .btn:hover {
    background: var(--clr_sub01);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .btn.btn_red:hover {
    background: var(--clr_sub06);
    opacity: 0.8;
  }
}

.lnk {
  display: inline-block;
  text-decoration: underline;
  letter-spacing: 0.05rem;
  cursor: pointer;
  color: #00B2D5;
}
.lnk::before {
  font-family: "fontello";
  content: "\e807";
  padding-right: 0.2rem;
  display: inline-block;
}
@media screen and (min-width: 48em), print {
  .lnk::before {
    padding-right: 0.5rem;
  }
}
.lnk:hover {
  color: var(--clr_sub01);
  text-decoration: underline !important;
  opacity: 1;
}
.lnk:hover::before {
  color: var(--clr_sub01);
}
.lnk.maru::before {
  content: "●";
}
.lnk.scr::before {
  font-family: "fontello";
  content: "\e806";
  padding-right: 0.5rem;
  font-size: 1.1rem;
}
@media screen and (min-width: 48em), print {
  .lnk.scr::before {
    font-size: 1.5rem;
    margin-left: 1rem;
  }
}

.linkout {
  display: inline-block;
  color: var(--clr_txt);
  text-decoration: underline !important;
  margin: 0 0.2em;
}
.linkout::after {
  font-family: "fontello";
  content: "\f08e";
  font-size: 0.8em;
  margin-left: 0.4rem;
}
.linkout:hover {
  color: var(--clr_sub06);
}

.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;
  position: relative;
  z-index: 92;
}
.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_sub02);
}
.slick-dots li button:hover, .slick-dots li button:focus {
  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: 3.125vw;
}

body {
  background: #fff;
  color: var(--clr_txt);
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-weight: 500;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}
body::after {
  visibility: hidden;
  width: 100vw;
  height: 100vh;
  content: "";
  background: rgba(255, 255, 255, 0.8);
  position: fixed;
  top: 0;
  z-index: 2;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
body.spnav_modal {
  height: 100%;
  overflow: hidden;
}
body.spnav_modal::after {
  visibility: visible;
  opacity: 1;
}

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

.main {
  font-size: 1.4rem;
  line-height: 1.6;
  margin: 3rem auto 0;
}

.wrap {
  margin: 0 1rem;
}

@media screen and (min-width: 48em), print {
  html {
    font-size: 62.5%;
  }
  body {
    min-width: calc(1098px + 40px);
  }
  body::after {
    display: none;
  }
  a, button {
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  a:hover, button:hover {
    opacity: 0.8;
  }
  .main {
    font-size: 1.6rem;
    line-height: 1.8;
    overflow-x: clip;
    margin: 5.97rem auto 0;
  }
  .main a:not([class*=btn]):hover {
    opacity: 1;
    text-decoration: none;
  }
  .wrap {
    width: 1098px;
    margin: 0 auto;
  }
}
:target::before {
  content: "";
  display: block;
  height: 8rem;
  margin: -8rem 0 0;
  visibility: hidden;
}
@media screen and (min-width: 48em), print {
  :target::before {
    height: 10rem;
    margin: -10rem 0 0;
  }
}

.header {
  width: 100%;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header .wrap {
  padding: 0.8rem 0;
}
.header .wrap .logo {
  height: 4rem;
  padding: 0;
}
.header .wrap .logo a {
  display: block;
  width: calc(100% - 5.6rem);
  height: 100%;
  background: url(../img/logo.svg) center left/contain no-repeat;
}
.header .wrap .logo a .clip {
  display: block;
  height: 100%;
  overflow: hidden;
  clip-path: inset(50%);
  color: transparent;
}
.header .wrap .headR {
  display: none;
}

@media screen and (min-width: 48em), print {
  .header {
    position: static;
    overflow-x: clip;
    border-bottom: 1px var(--clr_sub01) dotted;
    height: 11.474rem;
  }
  .header .wrap {
    margin: 0 auto;
    padding: 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;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .header .wrap .logo {
    width: 52rem;
    height: 7.5rem;
    padding: 0;
  }
  .header .wrap .logo a {
    background: url(../img/logo.svg) center left/contain no-repeat;
    width: 100%;
  }
  .header .wrap .headR {
    margin: 0 0 0 auto;
    display: block;
    position: relative;
  }
  .header .wrap .headR .acs_parking {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 1.4rem;
    padding: 1.2rem 2rem;
    background: var(--clr_sub01);
    border-radius: 0 0 0 0.8rem;
    position: absolute;
    top: 0;
    width: 100rem;
    right: calc(50% - 70rem);
  }
  .header .wrap .headR .acs_parking p {
    line-height: 1;
    margin: 0;
    color: #fff;
    font-size: 1.8rem;
  }
  .header .wrap .headR .acs_parking p span {
    font-size: 2.2rem;
    font-weight: 700;
  }
  .header .wrap .headR .acs_parking p.acs::before {
    font-family: "fontello";
    content: "\e80b";
  }
  .header .wrap .headR .acs_parking p.parking::before {
    font-family: "fontello";
    content: "\e80c";
    margin: 0 0.6rem 0 0;
  }
  .header .wrap .headR p {
    margin: 0;
  }
  .header .wrap .headR p .tel {
    margin: 6.6rem 0 0 0;
    font-size: 3.2rem;
  }
}
.fixed_nav {
  display: none;
}

@media screen and (min-width: 48em), print {
  .fixed_nav {
    display: block;
    position: fixed;
    top: 22vh;
    right: 1rem;
    z-index: 9999999;
  }
  .fixed_nav li {
    display: block;
    padding: 0;
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
    overflow: hidden;
    -webkit-box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.2);
    border-radius: 4rem;
  }
  .fixed_nav li a {
    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;
    -ms-flex-line-pack: center;
        align-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
    width: 6rem;
    border-radius: 4rem;
    font-size: 2rem;
    padding: 3rem 0;
    line-height: 1.2;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
            writing-mode: vertical-rl;
    text-orientation: upright;
  }
  .fixed_nav li a.rsv {
    background: var(--clr_sub08);
    border: 1px #fff solid;
    color: #fff;
  }
  .fixed_nav li a.rsv::before {
    font-family: "fontello";
    content: "\e819";
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    line-height: 1;
    margin: 0 auto 1rem;
    width: 100%;
    font-size: 2.2rem;
  }
}
#nav {
  width: 100vw;
}
#nav #sp_menu {
  width: 4.5rem;
  height: 4.5rem;
  background: #fff;
  border-radius: 0;
  text-align: center;
  line-height: 1;
  font-size: 0.9rem;
  color: var(--clr_sub02);
  position: fixed;
  top: 0.6rem;
  right: 1rem;
  z-index: 101;
}
#nav #sp_menu::before {
  display: block;
  font-family: "fontello";
  content: "\e802";
  font-size: 3.8rem;
}
#nav #sp_menu::after {
  font-family: "Spectral", serif;
  font-weight: 400;
  font-style: normal;
  content: "MENU";
  white-space: nowrap;
  display: block;
  margin: -0.4rem 0 0 0;
}
#nav #sp_menu.close::before {
  font-family: "fontello";
  content: "\e806";
}
#nav #sp_menu.close::after {
  content: "CLOSE";
  white-space: nowrap;
}
#nav #sp_menu span {
  display: none;
}
#nav .gnav_subnav {
  display: none;
  width: 94vw;
  max-height: 75vh;
  overflow-y: auto;
  background: #fff;
  padding: 1.6rem;
  position: fixed;
  top: 6rem;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 101;
  -webkit-box-shadow: 0 0 0.4rem rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 0.4rem rgba(0, 0, 0, 0.3);
  border-radius: 1rem;
}
#nav .gnav_subnav .gnav > li {
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
#nav .gnav_subnav .gnav > li:not(:last-child) {
  border-bottom: 1px solid var(--clr_sub02);
}
#nav .gnav_subnav .gnav > li a, #nav .gnav_subnav .gnav > li .sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-size: 1.4rem;
}
#nav .gnav_subnav .gnav > li a span::after, #nav .gnav_subnav .gnav > li .sub span::after {
  display: inline-block;
  content: attr(data-txt);
  font-family: "Spectral", serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 600;
  margin: 0 0 0 0.6rem;
  font-size: 1rem;
  color: var(--clr_sub2);
}
#nav .gnav_subnav .gnav > li .sub::after {
  font-family: "fontello";
  content: "\e8a3";
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  color: var(--clr_txt);
  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;
  margin: 0 0 0 auto;
  font-size: 1rem;
  color: var(--clr_sub02);
}
#nav .gnav_subnav .gnav > li .sub.close::after {
  font-family: "fontello";
  content: "\e8a3";
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
#nav .gnav_subnav .gnav > li .subbox {
  display: none;
}
#nav .gnav_subnav .gnav > li .subbox .subnav {
  margin-top: 0;
}
#nav .gnav_subnav .gnav > li .subbox .subnav li:not(:last-child) {
  border-bottom: 0.1rem #fff solid;
}
#nav .gnav_subnav .gnav > li .subbox .subnav li a {
  display: block;
  padding: 0.7rem 1rem 0.7rem 2rem;
  color: var(--clr_txt);
  font-size: 1.2rem;
  text-align: left;
  border-radius: 0.6rem;
}
#nav .gnav_subnav .gnav > li .subbox .subnav li a::before {
  display: none;
}
#nav .gnav_subnav .gnav > li .subbox .subnav li a span span {
  display: inline;
}
#nav .gnav_subnav .gnav > li .subbox .subnav li a.current {
  background: var(--clr_sub02);
  color: #fff;
}

@media screen and (min-width: 48em), print {
  #nav {
    width: 100%;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 999;
    padding: 0;
  }
  #nav #sp_menu {
    display: none;
  }
  #nav .gnav_subnav {
    display: block !important;
    width: 1098px;
    margin: 0 auto;
    overflow-y: visible;
    padding: 0;
    position: static;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 0;
  }
  #nav .gnav_subnav .gnav {
    width: 100%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 7.8rem;
    border: none;
  }
  #nav .gnav_subnav .gnav li {
    position: relative;
    padding: 1.56rem 0;
  }
  #nav .gnav_subnav .gnav li:not(:last-child) {
    border-bottom: none;
  }
  #nav .gnav_subnav .gnav li.treatment {
    display: block;
  }
  #nav .gnav_subnav .gnav li a, #nav .gnav_subnav .gnav li .sub {
    display: block;
    font-size: 2rem;
    text-align: center;
    margin: 0 auto;
    cursor: pointer;
    position: relative;
    padding: 0;
    width: auto;
    min-width: 7.3rem;
    white-space: nowrap;
  }
  #nav .gnav_subnav .gnav li a span, #nav .gnav_subnav .gnav li .sub span {
    display: inline-block;
  }
  #nav .gnav_subnav .gnav li a span::after, #nav .gnav_subnav .gnav li .sub span::after {
    display: block;
    font-size: 1.2rem;
    margin: 0;
  }
  #nav .gnav_subnav .gnav li a:is(:hover, :focus-visible, .current), #nav .gnav_subnav .gnav li .sub:is(:hover, :focus-visible, .current) {
    color: var(--clr_sub02);
  }
  #nav .gnav_subnav .gnav li a:is(:hover, :focus-visible, .current)::before, #nav .gnav_subnav .gnav li .sub:is(:hover, :focus-visible, .current)::before {
    display: block;
    margin: auto;
    content: "";
    background: var(--clr_sub02);
    width: 7.3rem;
    height: 1px;
    position: absolute;
    top: 3rem;
    left: 0;
    right: 0;
  }
  #nav .gnav_subnav .gnav li .sub::after {
    display: none;
    /*
    font-size: 1.3rem;
    position: absolute;
    top: .4rem;
    right: 3.5rem;
    */
  }
  #nav .gnav_subnav .gnav li .subbox {
    width: auto;
    position: absolute;
    top: 6rem;
    left: -2.3rem;
    width: 53.5rem;
    z-index: 99;
    background: #fff;
    border-radius: 1rem;
    -webkit-box-shadow: 0 0.4rem 1.8rem -0.1rem rgba(0, 0, 0, 0.4);
            box-shadow: 0 0.4rem 1.8rem -0.1rem rgba(0, 0, 0, 0.4);
    padding: 2rem 1.7rem;
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav li {
    width: 28.3rem;
    padding: 0;
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav li:nth-child(even) {
    width: 21.8rem;
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav li a, #nav .gnav_subnav .gnav li .subbox > .subnav li .sub {
    font-size: 2rem;
    width: 100%;
    padding: 0.4rem 1.72rem;
    border-right: none;
    border-left: none !important;
    text-align: left;
    border-radius: 0.8rem;
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav li a span::after, #nav .gnav_subnav .gnav li .subbox > .subnav li .sub span::after {
    display: none;
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav li a::after, #nav .gnav_subnav .gnav li .subbox > .subnav li .sub::after {
    top: 1.7rem;
    right: 1.5rem;
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav li a:is(:hover, :focus-visible, .current), #nav .gnav_subnav .gnav li .subbox > .subnav li .sub:is(:hover, :focus-visible, .current) {
    background: var(--clr_sub02);
    color: #fff;
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav li a:is(:hover, :focus-visible, .current)::before, #nav .gnav_subnav .gnav li .subbox > .subnav li .sub:is(:hover, :focus-visible, .current)::before {
    display: none;
  }
  #nav .gnav_subnav .gnav li .subbox > .subnav li a:is(:hover, :focus-visible, .current)::after, #nav .gnav_subnav .gnav li .subbox > .subnav li .sub:is(:hover, :focus-visible, .current)::after {
    color: #fff;
  }
}
.overview {
  padding: 4rem 1rem;
  line-height: 1.4;
  background: var(--clr_sub09);
}
.overview > .wrap {
  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;
  margin: 0 auto;
}
.overview > .wrap .clinic_name {
  text-align: center;
  margin: 0 auto 2rem;
  width: 100%;
}
.overview > .wrap .clinic_name img {
  width: 80%;
  height: 4rem;
  margin: 0 auto;
}
.overview > .wrap .overviewL .gaiyo {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: inherit;
      -ms-flex-align: inherit;
          align-items: inherit;
  margin: 0;
  line-height: 1.65;
  font-size: 1.4rem;
}
.overview > .wrap .overviewL .gaiyo dt, .overview > .wrap .overviewL .gaiyo dd {
  border-bottom: 1px var(--clr_sub03) solid;
}
.overview > .wrap .overviewL .gaiyo dt:first-of-type, .overview > .wrap .overviewL .gaiyo dd:first-of-type {
  border-top: 1px var(--clr_sub03) solid;
}
.overview > .wrap .overviewL .gaiyo dt:not(:last-of-type), .overview > .wrap .overviewL .gaiyo dd:not(:last-of-type) {
  margin: 0 0 1rem;
}
.overview > .wrap .overviewL .gaiyo dt {
  width: 28%;
  color: var(--clr_sub10);
  font-weight: 700;
  padding: 0 0 1rem 1rem;
}
.overview > .wrap .overviewL .gaiyo dt:first-of-type {
  padding: 1rem 0 1rem 1rem;
}
.overview > .wrap .overviewL .gaiyo dd {
  width: 72%;
  padding: 0 0 1rem;
}
.overview > .wrap .overviewL .gaiyo dd:first-of-type {
  padding: 1rem 0;
}
.overview > .wrap .overviewR {
  margin: 2rem 0 0 0;
  width: 100%;
}
.overview > .wrap .overviewR .gmap {
  width: 100%;
  height: 100vw;
  margin: 2rem auto 0;
}
.overview > .wrap .overviewR figure {
  margin: 2rem auto 0;
}
.overview > .wrap .overviewR .btn {
  background: var(--clr_main);
  padding: 0;
  margin: 1rem auto 0;
  width: 70%;
  height: 3.5rem;
}
.overview > .wrap .tbl_time {
  margin: 2rem 0 0 0;
}

@media screen and (min-width: 48em), print {
  .overview {
    margin: 0 auto;
    padding: 7.97rem 0 6.35rem;
  }
  .overview > .wrap {
    gap: 0 1.8rem;
  }
  .overview > .wrap .clinic_name {
    margin: 0 auto 4rem;
  }
  .overview > .wrap .clinic_name img {
    width: 40rem;
    height: 6.9rem;
  }
  .overview > .wrap .overviewL, .overview > .wrap .overviewR {
    width: 54rem;
  }
  .overview > .wrap .overviewL .gaiyo {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    font-size: 1.8rem;
  }
  .overview > .wrap .overviewL .gaiyo dt:not(:last-of-type), .overview > .wrap .overviewL .gaiyo dd:not(:last-of-type) {
    margin: 0 0 1.416rem;
  }
  .overview > .wrap .overviewL .gaiyo dt {
    width: 16.9rem;
    padding: 0 0 1.416rem 2rem;
  }
  .overview > .wrap .overviewL .gaiyo dt:first-of-type {
    padding: 1.416rem 0 1.416rem 2rem;
  }
  .overview > .wrap .overviewL .gaiyo dd {
    width: 37.1rem;
    padding: 0 0 1.416rem;
  }
  .overview > .wrap .overviewL .gaiyo dd:first-of-type {
    padding: 1.416rem 0;
  }
  .overview > .wrap .overviewR {
    margin: 0;
    padding: 0;
  }
  .overview > .wrap .overviewR .gmap {
    margin: 0;
    height: 52.9rem;
  }
  .overview > .wrap .overviewR figure {
    margin: 0;
  }
  .overview > .wrap .overviewR .btn {
    margin: 2rem auto 0;
    width: 30rem;
    height: 5rem;
  }
  .overview > .wrap .tbl_time {
    margin: 4rem 0 0 0;
  }
}
#tel_up {
  width: 100%;
  height: 3.5rem;
  background: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  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;
}
#tel_up .tel_rsv {
  width: 85%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
#tel_up .tel_rsv li {
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}
#tel_up .tel_rsv li:first-child {
  border-right: 0.1rem #fff solid;
}
#tel_up .tel_rsv li .tel {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.6rem;
  padding: 0;
  color: #fff;
  background: var(--clr_sub02);
  font-family: "Spectral", serif;
  font-weight: 400;
  font-style: normal;
  height: 100%;
}
#tel_up .tel_rsv li .rsv {
  font-size: 1.3rem;
  padding: 0;
  background: var(--clr_sub08);
  height: 100%;
}
#tel_up .tel_rsv li .rsv::after {
  right: 0.8rem;
}
#tel_up #pageup {
  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;
  width: 15%;
  height: 100%;
  position: relative;
  right: 0;
  bottom: 0;
  background: #fff;
  border: 0.1rem var(--clr_main) solid;
  padding: 0.2rem 0 0 0;
}
#tel_up #pageup::before {
  font-family: "fontello";
  content: "\e816";
  color: var(--clr_main);
  font-size: 1.2rem;
  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 #pageup span {
  display: none;
}

@media screen and (min-width: 48em), print {
  #tel_up {
    width: auto;
    height: auto;
    background: none;
  }
  #tel_up ul {
    display: none;
  }
  #tel_up .tel_rsv {
    display: none;
  }
  #tel_up #pageup {
    width: 6rem;
    height: 6rem;
    position: fixed;
    bottom: 7rem;
    right: 4rem;
    padding: 0 0 0 0;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #tel_up #pageup::before {
    font-size: 2.3rem;
  }
}
.footer {
  padding: 0 0 3.5rem;
}
.footer .copy {
  display: block;
  background: var(--clr_sub10);
  padding: 0.6rem 1rem;
  font-size: 1.4rem;
  text-align: center;
  color: #fff;
}
.footer ul {
  display: none;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 0;
    background: var(--clr_sub09);
  }
  .footer .copy {
    margin: 5.9rem 0 0;
    padding: 2.65rem 0;
  }
  .footer .copy span {
    display: block;
    font-size: 1.8rem;
    width: 1098px;
  }
  .footer .inner {
    width: 1098px;
    margin: 0 auto;
    padding: 5.65rem 0 0 0;
    border-top: 1px var(--clr_sub03) solid;
  }
  .footer .inner ul {
    display: block;
    width: 1098px;
    margin: 0 auto;
    text-align: center;
  }
  .footer .inner ul li {
    display: inline-block;
    font-size: 1.8rem;
    -webkit-text-size-adjust: none;
  }
  .footer .inner ul li:not(:last-child)::after {
    content: "";
    display: inline-block;
    background: var(--clr_txt);
    width: 1px;
    height: 1.8rem;
    margin: 0 1.2rem;
  }
  .footer .inner ul li a {
    opacity: 1;
    color: var(--clr_txt);
  }
  .footer .inner ul li a br {
    display: none;
  }
  .footer .inner ul li a:hover {
    text-decoration: underline;
  }
  .footer .inner ul li.treatment, .footer .inner ul li.medical1, .footer .inner ul li.medical2, .footer .inner ul li.medical3 {
    display: none;
  }
  .footer .inner ul.subnav {
    margin: 1.8rem auto 0;
  }
}
.keyvsl {
  width: 100%;
  position: relative;
  margin: 0;
  overflow-x: clip;
}
.keyvsl::before, .keyvsl::after {
  content: "";
  display: block;
  position: absolute;
}
.keyvsl::before {
  top: 0;
  right: 0;
  background: url("../img/kv_top.svg") no-repeat center/cover;
  z-index: 1;
}
.keyvsl::after {
  bottom: 0;
  left: 0;
  background: url("../img/kv_bottom.svg") no-repeat center/cover;
  z-index: 2;
}
.keyvsl #keyvsl {
  width: 100%;
  height: 23rem;
  overflow: visible;
  visibility: hidden;
}
.keyvsl #keyvsl .slick-list div img {
  height: 23rem !important;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.keyvsl .wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 15rem 1rem 0;
  height: 100%;
}
.keyvsl .wrap p.catch {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  margin: auto;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: 0.023rem;
  position: absolute;
  top: 1rem;
  left: 1rem;
  text-shadow: 0 0 1rem rgba(0, 0, 0, 0.6);
}
.keyvsl .wrap .open_event {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 1rem;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}
.keyvsl .wrap .open_event li {
  color: #fff;
  text-align: center;
  background: rgba(0, 115, 187, 0.9);
  border-radius: 0.6rem;
  padding: 0.8rem 0.5rem;
  font-size: 1.4rem;
}
.keyvsl .wrap .open_event li span {
  display: block;
  border-bottom: 1px #fff dotted;
  font-family: "Spectral", serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  font-size: 1.6rem;
}
.keyvsl .wrap .open_event li span span {
  display: inline-block;
  border-bottom: none;
  font-size: 1.8rem;
}
.keyvsl .wrap .open_event li span span.yu {
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-weight: 500;
  font-size: 1.4rem;
}
.keyvsl .wrap .open_event li:last-child {
  background: rgba(74, 172, 100, 0.9);
}

@media screen and (min-width: 48em), print {
  .keyvsl {
    max-width: 200rem;
    margin: 0 auto;
    height: 76rem;
  }
  .keyvsl::before {
    width: 100rem;
    height: 22.3rem;
    right: calc(50% - 100rem);
  }
  .keyvsl::after {
    width: 66rem;
    height: 22.9rem;
    left: calc(50% - 55rem);
  }
  .keyvsl #keyvsl {
    height: 76rem;
  }
  .keyvsl #keyvsl .slick-list div img {
    height: 76rem !important;
    -o-object-position: center !important;
       object-position: center !important;
  }
  .keyvsl .wrap {
    width: 1098px;
    margin: 0 auto;
    padding: 0;
  }
  .keyvsl .wrap p.catch {
    font-size: 6rem;
    top: 6rem;
    line-height: 1.54;
  }
  .keyvsl .wrap .open_event {
    gap: 0 1rem;
  }
  .keyvsl .wrap .open_event li {
    padding: 3rem 1.5rem;
    font-size: 2.6rem;
  }
  .keyvsl .wrap .open_event li span {
    font-size: 3rem;
  }
  .keyvsl .wrap .open_event li span span {
    font-size: 4rem;
  }
  .keyvsl .wrap .open_event li span span.yu {
    font-size: 2.6rem;
  }
}
.top_tit02 {
  color: var(--clr_sub11);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
  text-align: left;
  position: relative;
  z-index: 0;
  margin: 0 0 3rem;
}
.top_tit02::after {
  z-index: -1;
  display: block;
  position: absolute;
  bottom: -1rem;
  left: 0;
  content: "";
  background: url("../img/ttl_line01.svg") no-repeat center/contain;
  width: 16.5rem;
  height: 1.65rem;
}
.top_tit02 span {
  color: var(--clr_sub02);
}

@media screen and (min-width: 48em), print {
  .top_tit02 {
    font-size: 4.6rem;
    margin: 0 0 6.2rem;
  }
  .top_tit02::after {
    bottom: -2rem;
    left: 0;
    width: 33rem;
    height: 3.3rem;
  }
}
.aboutFever {
  margin-top: 0 !important;
  padding: 0 1rem 1rem;
}
.aboutFever .box {
  background: var(--clr_sub13);
  border-radius: 0.8rem;
  padding: 2rem 1rem;
}
.aboutFever .box figure {
  margin: 0 0 2rem;
}
.aboutFever .box figure img {
  width: 50%;
  margin: 0 auto;
}
.aboutFever .box .txt p {
  margin: 0;
  font-size: 1.4rem;
}
.aboutFever .box .txt p.tit {
  font-size: 1.8rem;
  margin: 0 0 1rem;
  color: var(--clr_sub06);
  border-bottom: 1px var(--clr_sub06) solid;
}
.aboutFever .box .txt .btn {
  margin: 1rem auto 0;
}

@media screen and (min-width: 48em), print {
  .aboutFever {
    padding: 0;
  }
  .aboutFever .box {
    width: 104.2rem;
    height: 36rem;
    margin: 0 auto;
    padding: 4.8rem 3.1rem 0 6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 4rem;
  }
  .aboutFever .box figure {
    width: 26.4rem;
    height: 26.4rem;
    margin: 0;
  }
  .aboutFever .box figure img {
    width: auto;
    margin: 0;
  }
  .aboutFever .box .txt {
    width: 64.7rem;
  }
  .aboutFever .box .txt p {
    font-size: 1.8rem;
  }
  .aboutFever .box .txt p.tit {
    font-size: 3.2rem;
    margin: 0 0 1.95rem;
  }
  .aboutFever .box .txt .btn {
    margin: 2.7rem 0 0 0;
  }
}
.info {
  margin: 0;
  padding: 4rem 1rem;
  padding: 0 1rem 4rem;
  margin: 3rem auto 0;
  margin-top: 3rem !important;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(60%, #fff), color-stop(60%, #F2F5F0), to(#F2F5F0));
  background: linear-gradient(180deg, #fff 0%, #fff 60%, #F2F5F0 60%, #F2F5F0 100%);
}
.info .inner {
  background: #fff;
  border-radius: 1rem;
  border: 0.2rem var(--clr_sub09) solid;
  padding: 3rem 0;
}
.info .inner .info_02 {
  margin: 0 0 1rem;
  font-family: "Spectral", serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  font-size: 2.2rem;
}
.info .inner .info_02 span {
  color: var(--clr_main);
}
.info .inner .info_02::before {
  font-family: "fontello";
  content: "\e80a";
  color: var(--clr_main);
  font-size: 2.2rem;
  margin: 0 0.4rem 0 0;
}
.info .inner .news_blog .news {
  width: 90%;
  margin: 0 auto;
}
.info .inner .news_blog .news dl {
  line-height: 1.6;
  margin: 0 auto;
  scrollbar-color: var(--clr_sub12) #FFF;
  overflow-y: auto;
}
.info .inner .news_blog .news dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.6;
  cursor: pointer;
  padding: 1.2rem 0 1rem;
  color: var(--clr_sub02);
  border-top: 1px var(--clr_sub03) solid;
}
.info .inner .news_blog .news dl dt::before {
  font-family: "fontello";
  content: "\e800";
  color: var(--clr_sub02);
  margin-right: 0.6rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.info .inner .news_blog .news dl dt.open::before {
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}
.info .inner .news_blog .news dl dt:last-child {
  border-bottom: 1px var(--clr_sub03) solid;
}
.info .inner .news_blog .news dl dt.open:last-child {
  border-bottom: none;
}
.info .inner .news_blog .news dl dt.open {
  padding: 1.2rem 0 0.8rem;
}
.info .inner .news_blog .news dl dt.open:first-child {
  padding: 1.2rem 0 0.8rem;
}
.info .inner .news_blog .news dl dt .date {
  color: #888;
  font-family: "Spectral", serif;
  font-weight: 400;
  font-style: normal;
  background: var(--clr_sub09);
  border-radius: 3rem;
  line-height: 1;
  font-size: 1.2rem;
  margin: 0 0 0 0.5rem;
  padding: 0 0.8rem;
}
.info .inner .news_blog .news dl dd {
  font-weight: 400;
  font-size: 1.4rem;
  padding: 0 0 1rem 2rem;
}
.info .inner .news_blog .news dl dd:last-child {
  border-bottom: 1px var(--clr_sub03) solid;
}
.info .inner .news_blog .news dl dd:nth-of-type(n+2) {
  display: none;
}
.info .inner .news_blog .blog {
  margin: 3rem auto 0;
  width: 90%;
}
.info .inner .news_blog .blog ul {
  margin: 0 auto;
  line-height: 1.3;
  font-size: 1.4rem;
  overflow-y: auto;
  scrollbar-color: var(--clr_sub12) #FFF;
}
.info .inner .news_blog .blog ul li {
  border-top: 1px var(--clr_sub03) solid;
  padding: 1.2rem 0 1rem;
}
.info .inner .news_blog .blog ul li a {
  text-decoration: underline;
  color: var(--clr_sub01);
}
.info .inner .news_blog .blog ul li .date {
  color: #888;
  font-family: "Spectral", serif;
  font-weight: 400;
  font-style: normal;
  background: var(--clr_sub09);
  border-radius: 3rem;
  line-height: 1;
  font-size: 1.2rem;
  margin: 0 0 0 0.5rem;
  padding: 0 0.8rem;
}

@media screen and (min-width: 48em), print {
  .info {
    padding: 0 0 12.3rem;
    margin: 8rem auto 0;
    margin-top: 8rem !important;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(17.4rem, #fff), color-stop(17.4rem, #F2F5F0), to(#F2F5F0));
    background: linear-gradient(180deg, #fff 0%, #fff 17.4rem, #F2F5F0 17.4rem, #F2F5F0 100%);
  }
  .info .inner {
    width: 110rem;
    margin: 0 auto;
    border: 0.4rem var(--clr_sub09) solid;
    padding: 6.1rem 0 6.93rem;
  }
  .info .inner .info_02 {
    font-size: 3rem;
    margin: 0 0 1.93rem;
  }
  .info .inner .info_02::before {
    font-size: 3.53rem;
    margin: 0 0.45rem 0 0;
  }
  .info .inner .news_blog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 4rem;
  }
  .info .inner .news_blog .news {
    width: 47rem;
    margin: 0;
  }
  .info .inner .news_blog .news dl {
    width: 100%;
    height: 30rem;
  }
  .info .inner .news_blog .news dl dt {
    -webkit-transition: 0.2s;
    transition: 0.2s;
    font-size: 2rem;
    width: 45rem;
    padding: 2.1rem 0 1.8rem;
  }
  .info .inner .news_blog .news dl dt::before {
    margin: 0 1rem 0 0;
  }
  .info .inner .news_blog .news dl dt.open {
    padding: 2.1rem 0 0.8rem;
  }
  .info .inner .news_blog .news dl dt:first-child {
    padding: 1.85rem 0 1.8rem;
  }
  .info .inner .news_blog .news dl dt.open:first-child {
    padding: 1.85rem 0 0.8rem;
  }
  .info .inner .news_blog .news dl dt:is(:hover, :focus-visible) {
    color: var(--clr_main);
  }
  .info .inner .news_blog .news dl dt .date {
    font-size: 2rem;
    margin: 0 0 0 1.5rem;
    padding: 0 1.1rem;
  }
  .info .inner .news_blog .news dl dd {
    width: 45rem;
    font-size: 1.8rem;
    padding: 0 0 1.7rem 3rem;
  }
  .info .inner .news_blog .blog {
    width: 47rem;
    margin: 0;
  }
  .info .inner .news_blog .blog ul {
    font-size: 2rem;
    height: 30rem;
    margin: 0 auto;
  }
  .info .inner .news_blog .blog ul li {
    width: 45rem;
    padding: 2.05rem 0 1.95rem;
  }
  .info .inner .news_blog .blog ul li a {
    font-size: 2rem;
  }
  .info .inner .news_blog .blog ul li a:hover {
    opacity: 0.8;
  }
  .info .inner .news_blog .blog ul li .date {
    font-size: 2rem;
    padding: 0 1.1rem;
    margin: 0 0 0 1.5rem;
  }
}
.greeting {
  margin-top: 0 !important;
  padding: 4rem 1rem;
  overflow: clip;
}
.greeting .inner {
  position: relative;
}
.greeting .inner::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: calc(50% - 22rem);
  content: "";
  background: url("../img/greeting_logo.svg") no-repeat center/contain;
  width: 23.15rem;
  height: 20.45rem;
}
.greeting .inner figure img {
  width: 60%;
  margin: 0 auto 1rem;
}
.greeting .inner figure figcaption {
  text-align: center;
  font-size: 1.6rem;
}
.greeting .inner .txt {
  margin: 2rem 0 0 0;
}
.greeting .inner .txt p {
  line-height: 1.8;
  margin: 0 0 1.8rem;
  font-size: 1.4rem;
}
.greeting .inner .txt .btn {
  width: 70%;
  height: 4rem;
  margin: 1rem auto 0;
}

@media screen and (min-width: 48em), print {
  .greeting {
    padding: 11.5rem 0 12rem;
  }
  .greeting .inner {
    width: 1098px;
    margin: 0 auto;
  }
  .greeting .inner::before {
    width: 46.3rem;
    height: 40.9rem;
    left: calc(50% - 78rem);
  }
  .greeting .inner figure {
    float: right;
  }
  .greeting .inner figure img {
    width: auto;
    margin: 0 0 2.8rem;
  }
  .greeting .inner figure figcaption {
    font-size: 2rem;
  }
  .greeting .inner .txt {
    width: 70rem;
    margin: 0;
  }
  .greeting .inner .txt p {
    margin: 0 0 2.542rem;
    line-height: 2;
    font-size: 1.8rem;
  }
  .greeting .inner .txt .btn {
    width: 24rem;
    height: 5rem;
    margin: 7.3rem 0 0 auto;
  }
}
.features {
  margin-top: 0 !important;
  padding: 4rem 2rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#e8f2f9), color-stop(20rem, #ffffff));
  background: linear-gradient(to bottom, #e8f2f9 0%, #ffffff 20rem);
  position: relative;
}
.features::after {
  position: absolute;
  display: block;
  bottom: 0;
  right: calc(50% - 13rem);
  content: "";
  background: url("../img/feature_cloud.svg") no-repeat center/contain;
  width: 30.6888888889rem;
  height: 12.84rem;
}
.features::before {
  position: absolute;
  display: block;
  top: 2rem;
  right: 0;
  content: "";
  background: url("../img/feature_airplane.svg") no-repeat center/contain;
  width: 13.1rem;
  height: 9.98rem;
}
.features .inner {
  position: relative;
  z-index: 3;
}
.features .inner .box {
  margin: 0 0 2rem;
  padding: 0;
}
.features .inner .box img {
  margin: 0 auto 1.4rem;
  width: 90%;
}
.features .inner .box .txt p {
  margin: 1.2rem 0 0 0;
  line-height: 1.856;
  font-size: 1.4rem;
}
.features .inner .box .txt p.tit {
  margin: 0;
  font-size: 2rem;
  padding: 0 0 1rem;
  line-height: 1;
  color: var(--clr_sub01);
  margin: 0;
  border-bottom: 1px var(--clr_sub01) dotted;
  position: relative;
}
.features .inner .box .txt p.tit::after {
  position: absolute;
  top: 2.3rem;
  right: 0;
  content: "";
  background: url("../img/icon06.svg") no-repeat center/contain;
  width: 1.49rem;
  height: 1.5rem;
}

@media screen and (min-width: 48em), print {
  .features {
    padding: 12rem 0 11.5rem;
    width: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(#e8f2f9), color-stop(50rem, #ffffff));
    background: linear-gradient(to bottom, #e8f2f9 0%, #ffffff 50rem);
  }
  .features::after {
    right: calc(50% - 39rem);
    width: 138.1rem;
    height: 64.2rem;
  }
  .features::before {
    top: 10rem;
    right: calc(50% - 99rem);
    width: 65.5rem;
    height: 49.9rem;
  }
  .features .inner {
    width: 1098px;
    margin: 0 auto;
  }
  .features .inner .box {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0 7.59rem;
    margin: 0 0 6rem;
  }
  .features .inner .box img {
    margin: 0;
    width: auto;
  }
  .features .inner .box .txt {
    width: 43.724rem;
    padding: 3.2rem 0 0 0;
  }
  .features .inner .box .txt p {
    margin: 2.87rem 0 0 0;
    font-size: 1.8rem;
    width: 43rem;
  }
  .features .inner .box .txt p.tit {
    font-size: 3.6rem;
    margin: 0;
    padding: 0 0 1.4rem;
  }
  .features .inner .box .txt p.tit::after {
    top: 3.9rem;
    right: -2.9rem;
    width: 2.319rem;
    height: 2.3rem;
  }
  .features .inner .even {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .features .inner .even .box {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .features .inner .even .box .txt {
    padding: 7.2rem 0 0 0;
  }
}
.medical {
  margin-top: 0 !important;
  padding: 4rem 1rem;
  background: url("../img/tre_bg.webp") no-repeat top center/cover;
}
.medical .top_tit02 {
  text-align: center;
  letter-spacing: 0.02em;
}
.medical .top_tit02::after {
  left: 0;
  right: 0;
  margin: auto;
}
.medical .subnav {
  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 2.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 2rem 0 0 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 1rem;
  border: 1px #fff solid;
}
.medical .subnav li {
  text-align: center;
  width: 45%;
  height: auto;
}
.medical .subnav li.top_medical_none {
  display: none;
}
.medical .subnav li a {
  text-decoration: none;
  color: var(--clr_sub10);
  width: 100%;
  height: 100%;
  display: block;
  line-height: 1.2;
  text-align: center;
  position: relative;
}
.medical .subnav li a span {
  position: relative;
  display: inline-block;
  width: 100%;
}
.medical .subnav li a span span {
  display: block;
  white-space: nowrap;
}
.medical .subnav li a span span::before {
  display: none;
}
.medical .subnav li a span::before {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -10rem;
  z-index: 1;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 100%;
  height: 6rem;
}
.medical .subnav li a::before {
  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;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-color: var(--clr_sub07);
  color: var(--clr_sub01);
  margin: 0 auto;
  width: 100%;
  height: 12rem;
  margin: 0 auto 1rem;
  border-radius: 0.6rem;
}
.medical .subnav li a.sb01 span::before {
  background-image: url("../img/icon07.svg");
}
.medical .subnav li a.sb02 span::before {
  background-image: url("../img/icon08.svg");
}
.medical .subnav li a.sb03 span::before {
  background-image: url("../img/icon09.svg");
}
.medical .subnav li a.sb04 span::before {
  background-image: url("../img/icon10.svg");
}
.medical .subnav li a.sb05 span::before {
  background-image: url("../img/icon11.svg");
}
.medical .subnav li a.sb06 span::before {
  background-image: url("../img/icon12.svg");
}
.medical .subnav li a.sb07 span::before {
  background-image: url("../img/icon13.svg");
}
.medical .subnav li a.sb08 span::before {
  background-image: url("../img/icon14.svg");
}
.medical .subnav li a.sb09 span::before {
  background-image: url("../img/icon15.svg");
}
.medical .subnav li a::after {
  display: block;
  content: "";
  background: #fff;
  border-radius: 50%;
  width: 9rem;
  height: 9rem;
  position: absolute;
  top: 1.4rem;
  left: 0;
  right: 0;
  margin: auto;
}

@media screen and (min-width: 48em), print {
  .medical {
    padding: 11.87rem 0 12.04rem;
  }
  .medical .subnav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 3.5rem 0;
    font-size: 2rem;
    width: 1098px;
    padding: 6rem 4.8rem;
    margin: 0 auto;
  }
  .medical .subnav li {
    width: 20rem;
    height: auto;
  }
  .medical .subnav li a {
    overflow: hidden;
  }
  .medical .subnav li a span::before {
    font-size: 9rem;
    top: -15.5rem;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s;
    height: 10rem;
  }
  .medical .subnav li a::before {
    width: 18rem;
    height: 18rem;
    margin: 0 auto 1.4rem;
  }
  .medical .subnav li a::after {
    top: 3rem;
  }
  .medical .subnav li a:is(:hover, :focus-visible) span::before {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .medical .subnav li a::after {
    width: 12rem;
    height: 12rem;
    top: 3rem;
  }
}
.trouble {
  margin-top: 0 !important;
  padding: 4rem 1rem;
}
.trouble .t02 {
  text-align: center;
  color: var(--clr_sub01);
  font-size: 2rem;
  font-weight: 500;
  background: var(--clr_sub07);
  border-radius: 1rem;
  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;
  padding: 1rem 0;
  margin: 0 0 2rem;
  position: relative;
}
.trouble .t02::after {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.9rem;
  margin: auto;
  content: "";
  background: url("../img/arrow.svg") no-repeat center/contain;
  width: 1.4rem;
  height: 0.95rem;
}
.trouble .inner .box {
  padding: 0;
  border-bottom: 1px var(--clr_sub01) dotted;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1.4rem;
  height: 11rem;
  margin: 0 0 1rem;
}
.trouble .inner .box img {
  width: 30%;
}
.trouble .inner .box .txt {
  line-height: 1.459;
  font-size: 1.6rem;
}
.trouble .inner .box .txt span {
  color: var(--clr_sub01);
  font-weight: 700;
}

@media screen and (min-width: 48em), print {
  .trouble {
    padding: 9.33rem 0 12.2rem;
  }
  .trouble .t02 {
    font-size: 3.2rem;
    width: 1098px;
    margin: 0 auto 3.9rem;
    padding: 0;
    height: 8.2rem;
  }
  .trouble .t02::after {
    bottom: -1.9rem;
    width: 2.8rem;
    height: 1.9rem;
  }
  .trouble .inner {
    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: 3rem 1.9rem;
    width: 1098px;
    margin: 0 auto;
  }
  .trouble .inner .box {
    width: 53.95rem;
    height: 19.1rem;
    gap: 0 3.5rem;
    margin: 0;
  }
  .trouble .inner .box img {
    width: auto;
  }
  .trouble .inner .box .txt {
    font-size: 2.4rem;
  }
}
body:not(.index) .main {
  margin: 0 0rem 6rem;
  color: var(--clr_sub11);
}
body:not(.index) .main p {
  margin: 0 0 1.6rem;
  letter-spacing: 0.06rem;
  line-height: 1.8;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main {
    margin: 7rem 0 16rem;
    font-size: 1.8rem;
  }
  body:not(.index) .main p {
    margin: 0 0 2.542rem;
  }
  body:not(.index) .cf .img_l, body:not(.index) .cf .img_r {
    max-width: 40rem;
    height: auto;
  }
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.2rem;
  margin: 0 1rem 3rem;
}
.breadcrumb li:not(:first-child)::before {
  display: inline-block;
  content: ">";
  margin: 0 0.4rem;
}
.breadcrumb li a {
  text-decoration: underline;
}

@media screen and (min-width: 48em), print {
  .breadcrumb {
    font-size: 1.6rem;
    width: 1098px;
    margin: 0 auto 2.4rem;
  }
  .breadcrumb li:not(:first-child)::before {
    margin: 0 0.8rem;
  }
}
.doctor .main .dr_name {
  text-align: right;
}
.doctor .main .dr_name span {
  font-size: 120%;
}
@media screen and (min-width: 48em), print {
  .doctor .main .dr_name {
    padding: 0 32rem 0 0;
  }
}

.clinic .txt_blue.bold {
  font-size: 1.2rem;
  margin: -0.5rem 0 1.5rem;
}
@media screen and (min-width: 48em), print {
  .clinic .txt_blue.bold {
    font-size: 150%;
    text-align: center;
    margin-bottom: 3rem;
  }
}

.gallery {
  width: 85%;
  margin: auto;
  visibility: hidden;
}
.gallery .gallery_slider div {
  position: relative;
}
.gallery .gallery_slider div .cap {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  padding: 0.4rem;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  width: 100%;
  margin: 0;
  color: #fff;
}
.gallery .gallery_slider div .slick-current .cap {
  opacity: 1;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  background: rgba(103, 173, 211, 0.8);
}
.gallery .gallery_slider div:first-child .cap {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.gallery .gallery_slider .slick-arrow {
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 39%;
  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;
  border-radius: 50%;
  color: #fff;
  background: none;
  z-index: 1;
}
.gallery .gallery_slider .slick-arrow::before {
  font-family: "fontello";
  content: "\f006";
  color: var(--clr_sub01);
  font-size: 2.4rem;
}
.gallery .gallery_slider .slick-arrow.slick-next {
  right: -2.5rem;
}
.gallery .gallery_slider .slick-arrow.slick-prev {
  left: -2.5rem;
}
.gallery .gallery_slider .slick-arrow.slick-prev::before {
  font-family: "fontello";
  content: "\f007";
}
.gallery .gallery_slider .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;
}
.gallery .gallery_slider .slick-dots li {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 0.2rem;
}
.gallery .gallery_slider .slick-dots li button {
  padding: 50%;
  display: block;
  font-size: 0;
  cursor: pointer;
  opacity: 0.25;
  border-radius: 50%;
  background: var(--clr_sub01);
}
.gallery .gallery_slider .slick-dots li button:hover, .gallery .gallery_slider .slick-dots li button:focus {
  opacity: 0.8;
}
.gallery .gallery_slider .slick-dots li.slick-active button {
  opacity: 0.75;
}
.gallery .gallery_thum div img {
  cursor: pointer;
  border: 2px solid transparent;
}
.gallery .gallery_thum .slick-current div img {
  border: 2px solid var(--clr_sub01);
}
.gallery #device .slick-track {
  -webkit-transform: translate3d(0px, 0px, 0px) !important;
          transform: translate3d(0px, 0px, 0px) !important;
}

@media screen and (min-width: 48em), print {
  .gallery {
    width: 75rem;
    margin: auto;
  }
  .gallery .gallery_slider {
    font-size: 1.6em;
  }
  .gallery .gallery_slider .slick-arrow {
    width: 5rem;
    height: 5rem;
    top: 43%;
  }
  .gallery .gallery_slider .slick-arrow::before {
    font-size: 4.4rem;
  }
  .gallery .gallery_slider .slick-arrow.slick-next {
    right: -6rem;
  }
  .gallery .gallery_slider .slick-arrow.slick-prev {
    left: -6rem;
  }
  .gallery .gallery_slider .slick-dots {
    bottom: 1rem;
    margin: 1.6rem auto;
  }
  .gallery .gallery_slider .slick-dots li {
    width: 1.4rem;
    height: 1.4rem;
    margin: 0 0.6rem;
  }
  .gallery .gallery_thum {
    width: calc(100% + 0.6rem);
  }
  .gallery .gallery_thum .slick-track .slick-slide div img {
    cursor: pointer;
    border: 4px solid transparent;
  }
  .gallery .gallery_thum .slick-track .slick-slide.slick-current div img {
    border: 4px solid var(--clr_sub01);
  }
  .gallery #device .gallery_thum {
    width: calc(100% + 0.6rem);
  }
  .gallery #device .gallery_thum .slick-track {
    -webkit-transform: translate3d(0px, 0px, 0px) !important;
            transform: translate3d(0px, 0px, 0px) !important;
  }
}
.machine_flex .equip {
  margin: 0 0 3rem;
}
.machine_flex .equip p {
  margin: 0;
}
@media screen and (min-width: 48em), print {
  .machine_flex {
    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: 3rem 4.8rem;
  }
  .machine_flex .equip {
    width: 48%;
  }
  .machine_flex .equip p {
    font-size: 1.6rem;
  }
}

.access .main .gmap {
  height: 30rem;
}
.access .main figure img {
  margin-inline: auto;
}
@media screen and (min-width: 48em), print {
  .access .main .gmap {
    height: 50rem;
  }
}

.tbl_price, .tbl_lst, .tbl_lst2 {
  width: 100%;
  border-collapse: collapse;
}
.tbl_price caption, .tbl_lst caption, .tbl_lst2 caption {
  text-align: left;
  font-size: 85%;
}
.tbl_price th, .tbl_lst th, .tbl_lst2 th, .tbl_price td, .tbl_lst td, .tbl_lst2 td {
  padding: 0.4rem 1rem;
}
.tbl_price th, .tbl_lst th, .tbl_lst2 th {
  background: var(--clr_sub05);
  border: 1px solid var(--clr_sub03);
  text-align: center;
  font-weight: normal;
  width: 40%;
}
.tbl_price td, .tbl_lst td, .tbl_lst2 td {
  border: 1px solid var(--clr_sub03);
  text-align: right;
  width: 60%;
}

.tbl_lst, .tbl_lst2 {
  table-layout: fixed;
}
.tbl_lst th, .tbl_lst2 th, .tbl_lst td, .tbl_lst2 td {
  padding: 1rem;
}
.tbl_lst th, .tbl_lst2 th {
  width: 30%;
}
.tbl_lst td, .tbl_lst2 td {
  text-align: left;
  width: auto;
}
@media screen and (min-width: 48em), print {
  .tbl_lst th, .tbl_lst2 th, .tbl_lst td, .tbl_lst2 td {
    padding: 1.43rem 1rem;
  }
}

.tbl_lst2 th {
  background: var(--clr_sub02);
  color: #fff;
  width: auto;
}
.tbl_lst2 td:first-child {
  background: var(--clr_sub09);
  text-align: center;
}

.lst_flow dt {
  margin: 0;
  padding: 1.6rem 1.6rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.9rem;
  color: var(--clr_main);
  font-size: 120%;
  border-left: 1px var(--clr_sub03) solid;
  border-right: 1px var(--clr_sub03) solid;
  border-top: 1px var(--clr_sub03) solid;
  border-radius: 1rem 1rem 0 0;
}
.lst_flow dt span {
  color: var(--clr_sub01);
  font-weight: 700;
}
.lst_flow dd {
  margin: 0;
  padding: 1rem 1.6rem 2rem;
  position: relative;
  text-align: justify;
  font-weight: 500;
  border-left: 1px var(--clr_sub03) solid;
  border-right: 1px var(--clr_sub03) solid;
  border-bottom: 1px var(--clr_sub03) solid;
  border-radius: 0 0 1rem 1rem;
}
.lst_flow dd:not(:last-child) {
  margin: 0 0 6rem;
}
.lst_flow dd:not(:last-child)::after {
  display: block;
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  bottom: -6rem;
  left: 0;
  right: 0;
  border-top: 1.8rem solid var(--clr_sub01);
  border-right: 3.5rem solid transparent;
  border-bottom: 1.8rem solid transparent;
  border-left: 3.5rem solid transparent;
  margin: auto;
}

@media screen and (min-width: 48em), print {
  .lst_flow dt {
    padding: 2.6rem 3.2rem 0;
  }
  .lst_flow dt span {
    font-size: 1.8rem;
  }
  .lst_flow dd {
    padding: 1.4rem 3.2rem 2.8rem;
  }
  .lst_flow dd:not(:last-child) {
    margin: 0 0 9rem;
  }
  .lst_flow dd:not(:last-child)::after {
    bottom: -9rem;
    border-top: 2.6rem solid var(--clr_sub01);
    border-right: 7rem solid transparent;
    border-bottom: 2.6rem solid transparent;
    border-left: 7rem solid transparent;
  }
}
.anc {
  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: 1rem 0;
}
.anc > li {
  width: 100%;
}
.anc > li .btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--clr_sub02);
  padding: 0.88rem 0;
  margin: 0;
  color: #fff;
  position: relative;
}
.anc > li .btn::after {
  font-family: "fontello";
  content: "\f004";
  color: #fff;
  position: absolute;
  right: 1rem;
}

@media screen and (min-width: 48em), print {
  .anc {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2rem;
  }
  .anc > li {
    width: 24rem;
  }
  .anc > li .btn {
    margin: 0;
  }
  .anc > li .btn::after {
    right: 1.69rem;
  }
  .anc > li .btn:hover {
    background: var(--clr_sub01);
  }
}
/*# sourceMappingURL=style.css.map */