@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: #333;
  --clr_main: #66BF8B;
  --clr_sub: #5691D5;
  --clr_sub01: #50AF7D;
  --clr_sub02: #A7DABC;
  --clr_sub03: #D3ECDD;
  --clr_sub04: #E9F5EE;
  --clr_sub05: #F2F9F5;
  --clr_sub06: #2E82B6;
  --clr_sub07: #9EC0E7;
  --clr_sub08: #D5E3F4;
  --clr_sub09: #F1F5FB;
  --clr_sub10: #F4F8FC;
  --clr_sub11: #8EA8B0;
  --clr_sub12: #A7BFC3;
  --clr_sub13: #A18045;
  --clr_sub14: #CAB289;
  --clr_sub15: #EAC200;
  --clr_sub16: #FEF756;
  --clr_sub17: #F9F7F2;
  --clr_sub18: #F19470;
}

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

.uline {
  text-decoration: underline;
}

.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: 1rem !important;
}

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

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

.mt40 {
  margin-top: 4rem !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 {
  .mt00 {
    margin-top: 0rem !important;
  }
  .mt10 {
    margin-top: 2rem !important;
  }
  .mt20 {
    margin-top: 4rem !important;
  }
  .mt30 {
    margin-top: 6rem !important;
  }
  .mt40 {
    margin-top: 8rem !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-collapse: separate;
  border-spacing: 0;
  font-size: 1.4rem;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
}
.tbl_time caption {
  caption-side: bottom;
  text-align: left;
  font-weight: normal;
  margin-top: 0.4rem;
}
.tbl_time caption .notice {
  margin-top: 3rem;
}
.tbl_time caption span {
  color: var(--clr_main);
  border: 1px var(--clr_main) solid;
  border-radius: 0.6rem;
  padding: 0.1rem 0.6rem;
  color: var(--clr_txt);
}
.tbl_time caption span.orange {
  color: var(--clr_sub18);
  border: none;
  padding: 0;
}
.tbl_time caption .fl_r {
  float: right;
  text-align: right;
}
.tbl_time tr th[scope=col] {
  padding: 0.6rem 0;
  color: #fff;
  background: var(--clr_main);
  font-size: 90%;
  text-align: center;
  font-weight: 500;
}
.tbl_time tr th[scope=col]:first-child {
  width: 35%;
  border-radius: 1.4rem 0 0 0;
}
.tbl_time tr th[scope=col]:last-child {
  border-radius: 0 1.4rem 0 0;
}
.tbl_time tr th[scope=row] {
  padding: 0.6rem 0;
  background: #fff;
  font-weight: 400;
  background: var(--clr_sub10);
}
.tbl_time tr td {
  text-align: center;
  padding: 1.4rem 0.4rem;
  color: var(--clr_main);
  background: var(--clr_sub10);
  line-height: 1;
}
.tbl_time tr td span {
  color: var(--clr_sub18);
}
.tbl_time tr:nth-child(2) th[scope=row] {
  border-bottom: 1px solid #ccc;
}
.tbl_time tr:nth-child(2) td {
  border-bottom: 1px solid #ccc;
}
.tbl_time tr:last-child th[scope=row] {
  border-radius: 0 0 0 1.4rem;
}
.tbl_time tr:last-child td:last-child {
  border-radius: 0 0 1.4rem;
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    table-layout: fixed;
    font-size: 1.8rem;
  }
  .tbl_time caption {
    margin: 1.4rem 0 0 0;
  }
  .tbl_time caption .notice {
    margin-top: 3.5rem;
  }
  .tbl_time caption span {
    padding: 0.1rem 1rem;
  }
  .tbl_time tr th[scope=col] {
    padding: 1.7rem 0;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 25%;
    border-radius: 2.5rem 0 0 0;
  }
  .tbl_time tr th[scope=col]:last-child {
    border-radius: 0 2.5rem 0 0;
  }
  .tbl_time tr td {
    padding: 2.05rem 0;
  }
  .tbl_time tr:last-child th[scope=row] {
    border-radius: 0 0 0 3rem;
  }
  .tbl_time tr:last-child td:last-child {
    border-radius: 0 0 3rem;
  }
}
.gmap {
  width: 100%;
}

.tit_01 {
  min-height: 10rem;
  background: url(../img/tit_01.webp) no-repeat center bottom/cover, var(--clr_sub09);
  width: 100%;
  padding: 1rem 1rem 5rem;
  position: relative;
  border-bottom: 1rem var(--clr_main) solid;
}
.tit_01::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 2.4rem;
  margin: auto;
  background: url("../img/bg_wave_tit_01.svg") no-repeat center/cover;
}
.tit_01 span {
  font-size: 2.4rem;
  line-height: 1;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
  color: var(--clr_main);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  background: var(--clr_sub17);
  border-radius: 4rem;
  border: 0.4rem var(--clr_main) solid;
  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: 1.4rem 1rem;
  position: relative;
}
@media screen and (min-width: 48em), print {
  .tit_01 span {
    border-radius: 10rem;
  }
}
.tit_01 span::after {
  display: block;
  content: "";
  background: url(../img/tree.svg) no-repeat center/contain;
  width: 10rem;
  height: 4.93rem;
  position: absolute;
  bottom: -7.8rem;
  right: 0;
  z-index: 1;
}

.tit_02 {
  font-size: 2.2rem;
  line-height: 1.2;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
  color: var(--clr_txt);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
  margin: 0 auto 2rem;
}
.tit_02 span::after {
  content: attr(data-txt);
  display: block;
  color: var(--clr_main);
  font-size: 50%;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
  margin: 0.8rem auto 0;
}

.tit_03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1rem;
  font-size: 2rem;
  color: #fff;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  background: var(--clr_main);
  line-height: 1.4;
  border-radius: 0.6rem;
  padding: 0.4rem 1rem;
  margin: 0 0 2rem;
}
@media screen and (min-width: 48em), print {
  .tit_03 {
    border-radius: 1.2rem;
  }
}
.tit_03::before {
  display: inline-block;
  content: "";
  width: 0.2em;
  height: 0.8em;
  background: var(--clr_sub02);
  border-radius: 0.2rem;
}
@media screen and (min-width: 48em), print {
  .tit_03::before {
    border-radius: 0.4rem;
  }
}

.tit_04 {
  font-size: 1.8rem;
  line-height: 1.4;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  margin: 0 0 2rem;
  padding: 0 0 0.7rem;
  border-bottom: 0.2rem var(--clr_main) solid;
}

.tit_05 {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 500;
  margin: 0 0 2rem;
  padding: 0 0 0.7rem;
  border-bottom: 0.2rem var(--clr_main) dotted;
}

.tit_06 {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 500;
  margin: 0 0 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.6rem;
}
.tit_06::before {
  display: inline-block;
  content: "";
  background: url("../img/logo_mark.svg") no-repeat center/contain;
  width: 1.1rem;
  height: 1.3rem;
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    background: url(../img/tit_01.webp) no-repeat center bottom/auto, var(--clr_sub09);
    height: 44rem;
    margin: auto;
    padding: 0;
    border-bottom: 2rem var(--clr_main) solid;
  }
  .tit_01::after {
    height: 14rem;
    background: url("../img/bg_wave_tit_01.svg") no-repeat center/auto;
  }
  .tit_01 span {
    width: 1200px;
    margin: 0 auto;
    font-size: 4.8rem;
    border: 1rem var(--clr_main) solid;
    height: 24rem;
    padding: 0;
  }
  .tit_01 span::after {
    width: 30rem;
    height: 14.8rem;
    bottom: -27rem;
    right: 6rem;
  }
  .tit_02 {
    font-size: 3.6rem;
    margin: 0 auto 4rem;
    line-height: 1;
  }
  .tit_02 span::after {
    margin: 1.4rem auto 0;
  }
  .tit_03 {
    font-size: 3rem;
    padding: 0.9rem 2rem;
    margin: 0 0 3rem;
    gap: 0 1.6rem;
  }
  .tit_03::before {
    width: 0.5rem;
    height: 3.6rem;
  }
  .tit_04 {
    font-size: 2.4rem;
    padding: 0 0 1rem;
    margin: 0 0 3rem;
  }
  .tit_05 {
    font-size: 2rem;
    margin: 0 0 3rem;
    padding: 0 0 1rem;
  }
  .tit_06 {
    font-size: 2rem;
    margin: 0 0 3rem;
    gap: 0 1rem;
  }
  .tit_06::before {
    width: 2.2rem;
    height: 2.6rem;
  }
}
.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_sub02);
  position: absolute;
  left: 0;
  font-size: 70%;
}
.lst_ul.kome > li::before {
  content: "※";
  color: var(--clr_txt);
}
@media screen and (min-width: 48em), print {
  .lst_ul > li::before {
    top: 0.4rem;
  }
}

.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_sub);
}

.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: 20%;
  }
  .lst_dl01 dd {
    width: 80%;
    padding: 0 0 0 1rem;
  }
}
.lst_dl02 dt {
  background: var(--clr_main);
  color: #fff;
  padding: 0.2rem 2rem;
  font-size: 110%;
}
.lst_dl02 dd {
  padding: 1rem 2rem;
  border-left: 1px #ccc solid;
  border-right: 1px #ccc solid;
}
.lst_dl02 dd p.sub {
  margin: 0 0 1rem;
  padding: 2rem;
  width: 100%;
  background: var(--clr_sub10);
}
.lst_dl02 dd:last-child {
  border-bottom: 1px #ccc solid;
}

@media screen and (min-width: 48em), print {
  .lst_dl02 dt {
    padding: 0.4rem 3rem;
  }
  .lst_dl02 dd {
    padding: 2rem 3rem;
  }
}
.box_lgreen, .box_lbrown {
  padding: 1rem;
  background: var(--clr_sub05);
  border-radius: 1.6rem;
}
@media screen and (min-width: 48em), print {
  .box_lgreen, .box_lbrown {
    border-radius: 3rem;
  }
}
@media screen and (min-width: 48em), print {
  .box_lgreen, .box_lbrown {
    padding: 3rem;
  }
}

.box_lbrown {
  background: var(--clr_sub17);
}

.box_border {
  border: 1px #ccc solid;
  padding: 1rem;
}
@media screen and (min-width: 48em), print {
  .box_border {
    padding: 3rem;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 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: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  text-align: center;
  gap: 0 0.4rem;
  line-height: 1;
}
.tel::before {
  font-family: "fontello";
  content: "\e80b";
  color: var(--clr_main);
  font-size: 80%;
}
.tel a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.btn_detail, .btn_detail2 {
  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 1rem;
  background: #fff;
  border: 1px solid var(--clr_main);
  color: var(--clr_main);
  border-radius: 1.6rem;
  text-decoration: none;
  font-weight: 500;
}
@media screen and (min-width: 48em), print {
  .btn_detail, .btn_detail2 {
    border-radius: 3rem;
  }
}
.btn_detail::after, .btn_detail2::after {
  font-family: "fontello";
  content: "\e4a2";
}
@media screen and (min-width: 48em), print {
  .btn_detail:is(:hover, :focus-visible), .btn_detail2:is(:hover, :focus-visible) {
    background: var(--clr_main);
    color: #fff;
    opacity: 1;
  }
  .btn_detail:is(:hover, :focus-visible)::after, .btn_detail2:is(:hover, :focus-visible)::after {
    color: #fff;
  }
}

.btn_detail2 {
  background: var(--clr_main);
  color: #fff;
  position: relative;
}
.btn_detail2::after {
  position: absolute;
  right: 1rem;
}
@media screen and (min-width: 48em), print {
  .btn_detail2::after {
    right: 2rem;
  }
  .btn_detail2:is(:hover, :focus-visible) {
    background: #fff;
    color: var(--clr_main);
  }
  .btn_detail2:is(:hover, :focus-visible)::after {
    color: var(--clr_main);
  }
}

.btn_rsv {
  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 1rem;
  background: var(--clr_sub15);
  color: #fff;
  border-radius: 2.4rem;
  text-decoration: none;
  font-weight: 500;
  border: 1px var(--clr_sub15) solid;
}
@media screen and (min-width: 48em), print {
  .btn_rsv {
    border-radius: 3rem;
  }
}
.btn_rsv::before {
  font-family: "fontello";
  content: "\e809";
}
@media screen and (min-width: 48em), print {
  .btn_rsv:is(:hover, :focus-visible) {
    background: #fff;
    color: var(--clr_sub15);
  }
}

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

.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;
  border-radius: 50%;
  color: #fff;
  background: var(--clr_main);
  z-index: 5;
}
.slick-arrow::before {
  font-size: 1.2rem;
}
.slick-arrow.slick-prev {
  left: -2.6rem;
}
.slick-arrow.slick-prev::before {
  font-family: "fontello";
  content: "\f007";
}
.slick-arrow.slick-next {
  right: -2.6rem;
}
.slick-arrow.slick-next::before {
  font-family: "fontello";
  content: "\f006";
}

@media screen and (min-width: 48em), print {
  .slick-arrow {
    width: 5rem;
    height: 5rem;
    border: 1px solid var(--clr_main);
    top: 26rem;
  }
  .slick-arrow::before {
    font-size: 2.4rem;
  }
  .slick-arrow.slick-prev {
    left: -6rem;
  }
  .slick-arrow.slick-next {
    right: -6rem;
  }
  .slick-arrow:is(:hover, :focus-visible) {
    color: var(--clr_main);
    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_sub);
}
.slick-dots li button:is(:hover, :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);
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}
body::after {
  visibility: hidden;
  width: 100vw;
  height: 100vh;
  content: "";
  background: rgba(248, 248, 251, 0.6);
  position: fixed;
  top: 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:hover, button:hover {
    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: 13rem;
}
@media screen and (min-width: 48em), print {
  :target {
    scroll-margin-top: 11rem;
  }
}

.header {
  position: relative;
  background: var(--clr_sub09);
}
.header > .wrap .logo {
  width: 100%;
  height: 6.6rem;
  padding: 1rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: var(--clr_sub09);
  -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_yoko.svg) no-repeat center center/contain;
}
.header > .wrap .logo a .clip {
  display: block;
  height: 100%;
  overflow: hidden;
  clip-path: inset(50%);
  color: transparent;
}
.header > .wrap .headR .acs, .header > .wrap .headR .add_tel {
  display: none;
}

@media screen and (min-width: 48em), print {
  .header {
    z-index: 2;
    height: 21rem;
  }
  .header > .wrap {
    padding: 2rem 0 2.28rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .header > .wrap .logo {
    width: 35rem;
    height: 16.721rem;
    padding: 0;
    position: relative;
    z-index: 101;
    background: none;
  }
  .header > .wrap .logo a {
    width: 100%;
    background: url(../img/logo_tate.svg) no-repeat center center/contain;
  }
  .header > .wrap .headR {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 0;
    display: block;
  }
  .header > .wrap .headR .acs {
    display: block;
    font-size: 1.8rem;
    margin: 0;
    text-align: right;
  }
  .header > .wrap .headR .acs::before {
    font-family: "fontello";
    content: "\e807";
    color: var(--clr_main);
    margin: 0 0.89rem 0 0;
  }
  .header > .wrap .headR .acs span {
    font-weight: 500;
  }
  .header > .wrap .headR .add_tel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 1rem;
    height: 6rem;
    margin: 2.6rem 0 0 0;
  }
  .header > .wrap .headR .add_tel li.telno {
    border: 1px var(--clr_main) solid;
    display: -ms-grid;
    display: grid;
    place-content: center;
    width: 28rem;
    height: 6rem;
    background: #fff;
    font-size: 3rem;
    font-weight: 500;
    border-radius: 1rem;
  }
}
@media screen and (min-width: 48em) and (min-width: 48em), print {
  .header > .wrap .headR .add_tel li.telno {
    border-radius: 3rem;
  }
}
@media screen and (min-width: 48em), print {
  .header > .wrap .headR .add_tel li .btn_rsv {
    width: 28rem;
    height: 6rem;
    font-size: 2.4rem;
  }
}
#nav {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: #fff;
}
#nav #sp_menu {
  width: 4.6rem;
  height: 4.6rem;
  background: var(--clr_main);
  color: #fff;
  text-align: center;
  line-height: 1;
  font-size: 1.1rem;
  padding: 0;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 100;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  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-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
}
#nav #sp_menu.hide {
  -webkit-transform: translateY(-220%);
          transform: translateY(-220%);
}
#nav #sp_menu::before {
  display: block;
  font-family: "fontello";
  content: "\e802";
  font-size: 3rem;
  margin: 0;
  line-height: 0.8;
}
#nav #sp_menu::after {
  display: block;
  content: "MENU";
  margin: 0;
}
#nav #sp_menu.close::before {
  font-family: "fontello";
  content: "\e806";
}
#nav #sp_menu.close::after {
  content: "CLOSE";
}
#nav #sp_menu span {
  display: none;
}
#nav .gnav_subnav {
  display: none;
  width: 94vw;
  max-height: calc(var(--vh, 1vh) * 100 - 8rem);
  overflow-y: auto;
  background: #fff;
  -webkit-box-shadow: 0 0.2rem 0.2rem 0.2rem rgba(204, 204, 204, 0.2);
          box-shadow: 0 0.2rem 0.2rem 0.2rem rgba(204, 204, 204, 0.2);
  padding: 1.6rem;
  margin: auto;
  position: absolute;
  top: 6.6rem;
  left: 0;
  right: 0;
  z-index: 100;
}
#nav .gnav_subnav .gnav > li:not(:last-child) {
  border-bottom: 1px var(--clr_sub12) solid;
}
#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: 0 0.4rem;
  padding: 0.4rem 1rem;
  margin: 0.4rem 0;
  font-size: 1.6rem;
  font-weight: 500;
}
#nav .gnav_subnav .gnav > li .sub {
  width: 100%;
}
#nav .gnav_subnav .gnav > li .sub::after {
  font-family: "fontello";
  content: "\e800";
  color: var(--clr_txt);
  font-size: 1.6rem;
  display: inline-block;
  margin: 0;
}
#nav .gnav_subnav .gnav > li .sub.close::after {
  font-family: "fontello";
  content: "\e803";
}
#nav .gnav_subnav .gnav > li .subbox {
  display: none;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li:not(:last-child) {
  border-bottom: 1px #fff solid;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a, #nav .gnav_subnav .gnav > li .subbox > .subnav li .child_sub {
  display: block;
  padding: 1rem;
  font-size: 1.4rem;
  margin: 0;
  text-align: center;
  font-weight: 500;
  color: var(--clr_txt);
  background: #fff;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a br, #nav .gnav_subnav .gnav > li .subbox > .subnav li .child_sub br {
  display: none;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a.current, #nav .gnav_subnav .gnav > li .subbox > .subnav li .child_sub.current {
  background: var(--clr_main);
  color: #fff;
}
#nav .gnav_subnav #menu_close {
  display: block;
  width: 70%;
  font-size: 1.4rem;
  color: #fff;
  background: var(--clr_sub);
  text-align: center;
  padding: 0.6rem 0;
  margin: 1rem auto 0;
}
#nav .gnav_subnav #menu_close::before {
  font-family: "fontello";
  content: "\e806";
  margin: 0 0.6rem 0 0;
}

@media screen and (min-width: 48em), print {
  #nav {
    width: auto;
    margin: 2.2rem 0 0;
    position: static;
    background: transparent;
  }
  #nav #sp_menu {
    display: none;
  }
  #nav .gnav_subnav {
    display: block !important;
    width: 100%;
    background: transparent;
    max-height: inherit;
    -webkit-box-shadow: none;
            box-shadow: none;
    overflow-y: visible;
    padding: 0;
    position: static;
  }
  #nav .gnav_subnav .gnav {
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: none;
  }
  #nav .gnav_subnav .gnav > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
  #nav .gnav_subnav .gnav > li:not(:first-child)::before {
    content: "|";
    font-size: 1.8rem;
    margin: 0 0.65em;
    color: #ccc;
  }
  #nav .gnav_subnav .gnav > li:not(:last-child) {
    border-bottom: none;
  }
  #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: 1.8em;
    padding: 0;
    margin: 0;
    cursor: pointer;
  }
  #nav .gnav_subnav .gnav > li a::before, #nav .gnav_subnav .gnav > li .sub::before {
    content: "";
    display: block;
    width: 100%;
    height: 0.2rem;
    background: var(--clr_main);
    position: absolute;
    top: 3rem;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: center top;
            transform-origin: center top;
  }
  #nav .gnav_subnav .gnav > li a:is(:hover, :focus-visible), #nav .gnav_subnav .gnav > li .sub:is(:hover, :focus-visible) {
    opacity: 1;
  }
  #nav .gnav_subnav .gnav > li a:is(:hover, :focus-visible)::before, #nav .gnav_subnav .gnav > li .sub:is(:hover, :focus-visible)::before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  #nav .gnav_subnav .gnav > li a.current, #nav .gnav_subnav .gnav > li .sub.current {
    padding: 0;
    color: var(--clr_main);
  }
  #nav .gnav_subnav .gnav > li a.current::before, #nav .gnav_subnav .gnav > li .sub.current::before {
    width: 100%;
    background: var(--clr_main);
    -webkit-transition: 0s;
    transition: 0s;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  #nav .gnav_subnav .gnav > li .subbox {
    display: none;
    width: 24rem;
    position: absolute;
    top: 5rem;
    left: 1.6rem;
    z-index: 100;
    background: #fff;
    padding: 0;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.2rem 0;
    padding: 0;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li {
    width: 100%;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a {
    font-size: 1.8rem;
    padding: 0.8rem;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a::before {
    display: none;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a:is(:hover, :focus-visible) {
    color: #fff;
    background: var(--clr_sub07);
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a.current {
    -webkit-transition: 0s;
    transition: 0s;
  }
  #nav .gnav_subnav #menu_close {
    display: none;
  }
  #nav.sticky {
    padding: 2rem 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
  #nav.sticky .gnav_subnav {
    width: 1200px;
    margin: auto;
  }
  #nav.sticky .gnav_subnav .gnav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 2rem;
  }
  #nav.sticky .gnav_subnav .gnav > li::before {
    margin: 0 1.6em 0 0.6em;
  }
  #nav.sticky .gnav_subnav .gnav > li a, #nav.sticky .gnav_subnav .gnav > li .sub {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    font-size: 2rem;
  }
  #nav.sticky .gnav_subnav .gnav > li .subbox > .subnav li a {
    width: 100%;
  }
}
.overview {
  padding: 8rem 1.6rem 5rem;
  background: url("../img/bg_overview.webp") no-repeat center top 33rem/330%, -webkit-gradient(linear, left top, left bottom, from(#f1f5fb), color-stop(50%, #f1f5fb), color-stop(50%, #66bf8b), to(#66bf8b));
  background: url("../img/bg_overview.webp") no-repeat center top 33rem/330%, linear-gradient(to bottom, #f1f5fb 0%, #f1f5fb 50%, #66bf8b 50%, #66bf8b 100%);
  font-size: 1.4rem;
  line-height: 1.6;
  position: relative;
}
.overview::after {
  display: block;
  position: absolute;
  bottom: 27.9rem;
  left: 0;
  right: 0;
  margin: auto;
  background: url("../img/bg_wave_footer.svg") no-repeat center/contain;
  width: 100%;
  height: 2.6rem;
  content: "";
}
.overview > .wrap {
  padding: 1rem 1.6rem 4rem;
  background: #fff;
  border-radius: 2rem;
  position: relative;
  z-index: 9;
}
@media screen and (min-width: 48em), print {
  .overview > .wrap {
    border-radius: 6rem;
  }
}
.overview > .wrap .clinic_name {
  margin: -4.5rem auto 3rem;
}
.overview > .wrap .clinic_name img {
  max-width: 60%;
  margin: auto;
}
.overview > .wrap .overviewL {
  margin: 0;
}
.overview > .wrap .overviewL .flex2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.overview > .wrap .overviewL .flex2 li {
  width: 48%;
}
.overview > .wrap .overviewL .flex2 li .tel {
  border: 1px var(--clr_main) solid;
  border-radius: 2.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;
  font-weight: 500;
  width: 100%;
  height: 4rem;
  font-size: 1.8rem;
}
@media screen and (min-width: 48em), print {
  .overview > .wrap .overviewL .flex2 li .tel {
    border-radius: 3rem;
  }
}
.overview > .wrap .overviewL .flex2 li .btn_rsv {
  width: 100%;
  height: 4rem;
  font-size: 1.6rem;
}
.overview > .wrap .overviewL .tbl_time {
  margin: 2rem 0 0;
}
.overview > .wrap .overviewR {
  margin: 2rem 0 0;
}
.overview > .wrap .overviewR .gaiyo {
  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;
}
.overview > .wrap .overviewR .gaiyo dt, .overview > .wrap .overviewR .gaiyo dd {
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  margin: 0 0 1rem;
}
.overview > .wrap .overviewR .gaiyo dt {
  width: 27%;
  background: var(--clr_sub07);
  border-radius: 0.6rem;
  color: #fff;
  font-weight: 500;
  display: -ms-grid;
  display: grid;
  place-content: center;
}
@media screen and (min-width: 48em), print {
  .overview > .wrap .overviewR .gaiyo dt {
    border-radius: 0.8rem;
  }
}
.overview > .wrap .overviewR .gaiyo dd {
  width: 70%;
}
.overview > .wrap .gmap {
  margin: 1rem 0 0 0;
  height: calc(100vw - 6.4rem);
}
.overview > .wrap .gmap iframe {
  border-radius: 1.6rem;
}
@media screen and (min-width: 48em), print {
  .overview > .wrap .gmap iframe {
    border-radius: 4rem;
  }
}

@media screen and (min-width: 48em), print {
  .overview {
    padding: 11rem 0 0 0;
    background: url("../img/bg_overview.webp") no-repeat center top 21rem/auto, -webkit-gradient(linear, left top, left bottom, from(#f1f5fb), color-stop(50%, #f1f5fb), color-stop(50%, #66bf8b), to(#66bf8b));
    background: url("../img/bg_overview.webp") no-repeat center top 21rem/auto, linear-gradient(to bottom, #f1f5fb 0%, #f1f5fb 50%, #66bf8b 50%, #66bf8b 100%);
    font-size: 1.8rem;
  }
  .overview::after {
    background: url("../img/bg_wave_footer.svg") no-repeat center/auto;
    height: 14rem;
    bottom: 20rem;
  }
  .overview > .wrap {
    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;
    padding: 0 6rem 6rem;
  }
  .overview > .wrap .clinic_name {
    width: 100%;
    margin: -4.5rem auto 4.11rem;
  }
  .overview > .wrap .clinic_name img {
    max-width: 30rem;
  }
  .overview > .wrap .overviewL, .overview > .wrap .overviewR {
    width: 51rem;
  }
  .overview > .wrap .overviewL .flex2 li .tel {
    width: 25rem;
    height: 6rem;
    font-size: 3rem;
  }
  .overview > .wrap .overviewL .flex2 li .btn_rsv {
    width: 25rem;
    height: 6rem;
    font-size: 2.4rem;
  }
  .overview > .wrap .overviewL .tbl_time {
    margin: 3rem 0 0 0;
  }
  .overview > .wrap .overviewR {
    margin: 0;
  }
  .overview > .wrap .overviewR .gaiyo dt, .overview > .wrap .overviewR .gaiyo dd {
    font-size: 1.8rem;
    margin: 0 0 2rem;
  }
  .overview > .wrap .overviewR .gaiyo dt {
    width: 10rem;
    height: 4rem;
  }
  .overview > .wrap .overviewR .gaiyo dd {
    width: 38.6rem;
  }
  .overview > .wrap .gmap {
    height: 40rem;
    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%;
  width: 50%;
}
#tel_up .tel_rsv li:first-child {
  border-right: 0.1rem #fff solid;
}
#tel_up .tel_rsv li .tel, #tel_up .tel_rsv li .rsv {
  font-size: 1.6rem;
  padding: 0;
  color: #fff;
  width: 100%;
  height: 100%;
}
#tel_up .tel_rsv li .tel {
  background: var(--clr_main);
}
#tel_up .tel_rsv li .tel::before {
  color: #fff;
}
#tel_up .tel_rsv li .rsv {
  background: var(--clr_sub15);
  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;
  gap: 0 0.4rem;
}
#tel_up .tel_rsv li .rsv::before {
  font-family: "fontello";
  content: "\e809";
}
#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;
  color: var(--clr_main);
  background: var(--clr_sub03);
  padding: 0.2rem 0 0 0;
}
#tel_up #pageup::before {
  font-family: "fontello";
  content: "\e8a3";
  font-size: 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;
  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 .rsv, #tel_up ul .tel {
    display: none !important;
  }
  #tel_up #pageup {
    width: 6rem;
    height: 6rem;
    position: fixed;
    bottom: 7rem;
    right: 4rem;
    padding: 0 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-radius: 50%;
  }
  #tel_up #pageup::before {
    font-size: 3.2rem;
  }
}
.footer {
  padding: 0 0 3.5rem;
  text-align: center;
  background: var(--clr_main);
}
.footer .copy {
  display: block;
  background: var(--clr_main);
  color: #fff;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
  padding: 0.6rem 1rem;
  font-size: 1.2rem;
}
.footer ul {
  display: none;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 3rem 0 0;
  }
  .footer .copy {
    font-size: 1.8rem;
    padding: 3.7rem 0 4.7rem;
    margin: 0;
  }
  .footer ul {
    display: block;
    text-align: center;
  }
  .footer ul li {
    display: inline-block;
    font-size: 1.8rem;
    color: #fff;
    margin: 0 0 1.2rem;
    -webkit-text-size-adjust: none;
  }
  .footer ul li:not(:last-child)::after {
    content: "|";
    margin: 0 0.5em;
  }
  .footer ul li a {
    opacity: 1;
  }
  .footer ul li a:hover {
    text-decoration: underline;
  }
  .footer ul li.treatment {
    display: none;
  }
}
.keyvsl {
  width: 100%;
  position: relative;
  overflow-x: clip;
  margin: 6.7rem 0 0 0;
}
.keyvsl #keyvsl {
  max-width: 100%;
  height: 26rem;
  padding: 0 0.7rem;
  background: url("../img/bg_index_keyv.webp") no-repeat center bottom/contain, var(--clr_sub09);
  visibility: hidden;
}
.keyvsl #keyvsl::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 2.6rem;
  margin: auto;
  background: url("../img/kv_wave.png") no-repeat center/cover;
}
.keyvsl #keyvsl div img {
  height: 20rem !important;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
}
.keyvsl #keyvsl .slick-dots {
  display: none !important;
  margin: 0.6rem 0 0;
  position: relative;
  z-index: 2;
}
.keyvsl #keyvsl .slick-dots li {
  width: 1rem;
  height: 1rem;
  margin: 0 0.6rem;
}
.keyvsl > .wrap {
  margin: 0 1.6rem;
  position: absolute;
  top: 2rem;
  left: 0;
  right: 0;
}
.keyvsl > .wrap .catch, .keyvsl > .wrap .catch2 {
  margin: 0;
  color: #fff;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
  text-align: left;
  font-size: 1.6rem;
}
.keyvsl > .wrap .catch span, .keyvsl > .wrap .catch2 span {
  font-size: 80%;
}
.keyvsl > .wrap .catch {
  font-size: 1.5rem;
}
.keyvsl > .wrap .catch::after {
  display: block;
  content: "";
  background: url("../img/deco_catch.png") no-repeat center/contain;
  width: 7.6rem;
  height: 1.9rem;
}
.keyvsl > .wrap .catch2 {
  font-size: 1rem;
  line-height: 1.8;
}
.keyvsl > .wrap .open {
  width: 12rem;
  height: 12rem;
  margin: 1rem 0 0 auto;
  color: #fff;
  text-align: center;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6rem;
  background: url(../img/index_open.png) no-repeat center/95%;
  letter-spacing: 0.05em;
  padding: 1.8rem 0 0 0;
}
.keyvsl > .wrap .open span.txt_small {
  font-size: 80%;
}

@media screen and (min-width: 48em), print {
  .keyvsl {
    margin: 0;
  }
  .keyvsl #keyvsl {
    height: 74rem;
    background: url("../img/bg_index_keyv.webp") no-repeat center bottom/auto, var(--clr_sub09);
    padding: 0;
  }
  .keyvsl #keyvsl::after {
    height: 14rem;
    background: url("../img/kv_wave.png") no-repeat center/auto;
  }
  .keyvsl #keyvsl div img {
    height: 68rem !important;
  }
  .keyvsl #keyvsl .slick-dots {
    margin: 1rem auto 0;
  }
  .keyvsl #keyvsl .slick-dots li {
    width: 1.6rem;
    height: 1.6rem;
    margin: 0 1.2rem;
  }
  .keyvsl > .wrap {
    top: 44.1rem;
    margin: auto;
    padding: 0 6rem;
  }
  .keyvsl > .wrap .catch {
    font-size: 3rem;
  }
  .keyvsl > .wrap .catch::after {
    width: 15.2rem;
    height: 3.8rem;
    margin: 0 0 0 -2rem;
  }
  .keyvsl > .wrap .catch2 {
    font-size: 1.8rem;
  }
  .keyvsl > .wrap .open {
    width: 22rem;
    height: 22rem;
    font-size: 3rem;
    background: url(../img/index_open.png) no-repeat center/contain;
    margin: -16rem 0 0 auto;
    padding: 2.4rem 0 0 0;
  }
  .keyvsl > .wrap .open span.txt_small {
    font-size: 60%;
  }
}
.info {
  margin-top: 0 !important;
  padding: 4rem 1rem 7rem;
  background: url("../img/bg_news.png") no-repeat center top/cover;
  position: relative;
  overflow-x: clip;
}
.info::after {
  display: block;
  position: absolute;
  bottom: -0.1rem;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  background: url("../img/bg_wave_brown.svg") no-repeat center/cover;
  width: 100%;
  height: 3rem;
}
.info .inner {
  background: #fff;
  border-radius: 2.5rem;
}
@media screen and (min-width: 48em), print {
  .info .inner {
    border-radius: 4rem;
  }
}
.info .inner .tit_02 {
  background: var(--clr_sub05);
  margin: 0;
  padding: 1rem 0;
  border-radius: 2.5rem 2.5rem 0 0;
}
.info .inner .tit_02::after {
  display: block;
  margin: 0.8rem auto 0;
  content: "";
  background: url("../img/logo_mark.svg") no-repeat center/contain;
  width: 3.333rem;
  height: 3.933rem;
}
.info .inner .infobox {
  padding: 3rem 1rem;
}
.info .inner .infobox dl {
  padding: 0 1rem 0 0;
  line-height: 1.6;
}
.info .inner .infobox 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;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 120%;
  line-height: 1.6;
  cursor: pointer;
  color: var(--clr_main);
  border-bottom: 1px #ccc solid;
  padding: 0 0 1.3rem;
  margin: 0 0 1rem;
}
.info .inner .infobox dl dt::before {
  font-family: "fontello";
  content: "\e800";
  color: var(--clr_main);
}
.info .inner .infobox dl dt.close::before {
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}
.info .inner .infobox dl dt.close {
  border-bottom: none;
  padding: 0;
  margin: 0 0 0.8rem;
}
.info .inner .infobox dl dd {
  border-bottom: 1px #ccc solid;
  margin: 0 0 1rem;
  padding: 0 0 1.3rem;
}
.info .inner .infobox dl dd:nth-of-type(n+4) {
  display: none;
}

@media screen and (min-width: 48em), print {
  .info {
    padding: 8rem 0 22rem;
    margin: 0 auto;
    background: url("../img/bg_news.png") no-repeat center top/auto var(--clr_main);
  }
  .info::after {
    background: url("../img/bg_wave_brown.svg") no-repeat center/auto;
    height: 14rem;
  }
  .info .inner {
    width: 1200px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .info .inner .tit_02 {
    border-radius: 4rem 0 0 4rem;
    width: 27.4rem;
    padding: 6rem 0 0 0;
    min-height: 32rem;
  }
  .info .inner .tit_02::after {
    width: 10rem;
    height: 11.8rem;
    margin: 4rem auto 0;
  }
  .info .inner .infobox {
    padding: 6rem 6rem 4.5rem;
    width: 92.6rem;
  }
  .info .inner .infobox dl {
    font-size: 1.8rem;
  }
  .info .inner .infobox dl dt {
    -webkit-transition: 0.2s;
    transition: 0.2s;
    padding: 0 0 2.6rem;
    margin: 0 0 2rem;
  }
  .info .inner .infobox dl dt::before {
    margin-right: 0.6rem;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .info .inner .infobox dl dt.close {
    padding: 0;
    margin: 0 0 1rem;
  }
  .info .inner .infobox dl dt:is(:hover, :focus-visible) {
    color: var(--clr_main);
  }
  .info .inner .infobox dl dd {
    margin: 0 0 2rem;
    padding: 0 0 2.6rem;
  }
}
.symptoms {
  margin-top: 0 !important;
  padding: 6rem 1rem 8rem;
  background: var(--clr_sub17);
  position: relative;
  overflow-x: clip;
}
.symptoms::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  background: url("../img/bg_wave_white.svg") no-repeat center/contain;
  width: 100%;
  height: 2.6rem;
}
.symptoms .wrap {
  position: relative;
}
.symptoms .wrap::before {
  display: block;
  content: "";
  background: url("../img/tree.svg") no-repeat center/contain;
  width: 10rem;
  height: 4.93rem;
  position: absolute;
  top: -9.5rem;
  left: 0;
}
.symptoms .wrap .inner {
  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: 3rem 0;
}
.symptoms .wrap .inner .box {
  width: 90%;
}
.symptoms .wrap .inner .box figure {
  background: url("../img/bg_symptoms.svg") no-repeat center/contain;
  display: -ms-grid;
  display: grid;
  place-content: center;
  margin: 0 0 1rem;
  width: 100%;
  height: 22rem;
}
.symptoms .wrap .inner .box figure img {
  margin: 0 auto;
}
.symptoms .wrap .inner .box .txt .check li {
  line-height: 1.56;
  text-indent: -2rem;
  padding-left: 2rem;
  letter-spacing: 0.05em;
}
.symptoms .wrap .inner .box .txt .check li::before {
  font-family: "fontello";
  content: "\e80a";
  color: var(--clr_main);
  margin: 0 0.6rem 0 0;
}
.symptoms .wrap .inner .box .txt .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;
  margin: 1rem 0 0 0;
  gap: 0.6rem 0;
}
.symptoms .wrap .inner .box .txt .flex2 > li {
  width: 48%;
}
.symptoms .wrap .inner .box .txt .flex2 > li .btn_detail {
  width: 100%;
  padding: 0.2rem 0;
  font-size: 1.6rem;
}

@media screen and (min-width: 48em), print {
  .symptoms {
    padding: 8rem 0 26rem;
  }
  .symptoms::after {
    background: url("../img/bg_wave_white.svg") no-repeat center/auto;
    height: 14rem;
  }
  .symptoms .wrap::before {
    width: 30rem;
    height: 14.8rem;
    top: -18.8rem;
    left: 6rem;
  }
  .symptoms .wrap .inner {
    width: 1200px;
    margin: 0 auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 6rem 0;
  }
  .symptoms .wrap .inner .box {
    width: 36rem;
  }
  .symptoms .wrap .inner .box figure {
    height: 26rem;
    margin: 0 0 1.9rem;
  }
  .symptoms .wrap .inner .box .txt .check li {
    text-indent: -3rem;
    padding-left: 3rem;
  }
  .symptoms .wrap .inner .box .txt .check li::before {
    margin: 0 1rem 0 0;
  }
  .symptoms .wrap .inner .box .txt .flex2 {
    margin: 2rem 0 0 0;
    gap: 0.8rem 0;
  }
  .symptoms .wrap .inner .box .txt .flex2 .btn_detail {
    width: 17.6rem;
    height: 4.6rem;
    padding: 0;
    font-size: 1.8rem;
  }
}
.tre {
  padding: 6rem 1rem 8rem;
  background: #fff;
  position: relative;
}
.tre::after {
  display: block;
  position: absolute;
  bottom: -0.1rem;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  background: url("../img/bg_wave_green.svg") no-repeat center/150%;
  width: 100%;
  height: 1.7rem;
}
.tre .wrap {
  position: relative;
}
.tre .wrap::before {
  display: block;
  content: "";
  background: url("../img/tree.svg") no-repeat center/contain;
  width: 10rem;
  height: 4.93rem;
  position: absolute;
  top: -9.5rem;
  right: 0;
}
.tre .wrap .subnav {
  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;
  font-size: 1.6rem;
  font-weight: 500;
}
.tre .wrap .subnav li {
  text-align: center;
  background: url("../img/bg_tre.svg") no-repeat center top/contain;
  width: 48%;
  height: 20rem;
}
.tre .wrap .subnav li a {
  text-decoration: none;
  color: var(--clr_main);
  width: 100%;
  height: 100%;
  display: block;
  padding: 3.3rem 0 0 0;
}
.tre .wrap .subnav li a span::before {
  display: inline-block;
  font-family: "fontello";
  content: "\e4a2";
  color: var(--clr_main);
  margin: 0 0.4rem 0 0;
}
.tre .wrap .subnav li a::before {
  display: block;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin: 0 auto;
  width: 9rem;
  height: 9rem;
  margin: 0 auto 4rem;
}
.tre .wrap .subnav li a.sub01::before {
  background-image: url("../img/menu_01.svg");
}
.tre .wrap .subnav li a.sub02::before {
  background-image: url("../img/menu_02.svg");
}
.tre .wrap .subnav li a.sub03::before {
  background-image: url("../img/menu_03.svg");
}
.tre .wrap .subnav li a.sub04::before {
  background-image: url("../img/menu_04.svg");
}
.tre .wrap .subnav li a.sub05::before {
  background-image: url("../img/menu_05.svg");
}
.tre .wrap .subnav li a.sub06::before {
  background-image: url("../img/menu_06.svg");
}
.tre .wrap .subnav li a.sub07::before {
  background-image: url("../img/menu_07.svg");
}
.tre .wrap .subnav li a.sub08::before {
  background-image: url("../img/menu_08.svg");
}
.tre .wrap .subnav li a.sub09::before {
  background-image: url("../img/menu_09.svg");
}

@media screen and (min-width: 48em), print {
  .tre {
    padding: 8rem 0 18rem;
  }
  .tre::after {
    background: url("../img/bg_wave_green.svg") no-repeat center/auto;
    height: 6rem;
  }
  .tre .wrap::before {
    width: 30rem;
    height: 14.8rem;
    top: -18.8rem;
    right: 6rem;
  }
  .tre .wrap .subnav {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 4rem;
    font-size: 2.4rem;
  }
  .tre .wrap .subnav li {
    width: 20.8rem;
    height: 24.9rem;
  }
  .tre .wrap .subnav li a {
    padding: 5.3rem 0 0 0;
    overflow: hidden;
    /*
    &:is(:hover, :focus-visible, .current) {
    }
    */
  }
  .tre .wrap .subnav li a span::before {
    margin: 0 0.6rem 0 0;
  }
  .tre .wrap .subnav li a::before {
    width: 11rem;
    height: 11rem;
    margin: 0 auto 4rem;
    -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s;
  }
  .tre .wrap .subnav li a:is(:hover, :focus-visible)::before {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.feature {
  margin-top: 0 !important;
  padding: 6rem 1.6rem;
  background: var(--clr_main);
  position: relative;
  overflow-x: clip;
}
.feature::after {
  display: block;
  position: absolute;
  bottom: -0.1rem;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  background: url("../img/bg_wave_white2.svg") no-repeat center/150%;
  width: 100%;
  height: 1.7rem;
}
.feature .wrap {
  position: relative;
}
.feature .wrap::before, .feature .wrap::after {
  display: block;
  content: "";
  position: absolute;
  top: -9.5rem;
}
.feature .wrap::before {
  background: url("../img/castle_l.svg") no-repeat center/contain;
  width: 8rem;
  height: 4.37rem;
  left: 0;
}
.feature .wrap::after {
  background: url("../img/castle_r.svg") no-repeat center/contain;
  width: 5.67rem;
  height: 4.37rem;
  right: 0;
}
.feature .wrap .tit_02 {
  color: #fff;
}
.feature .wrap .tit_02 span::after {
  color: #fff;
}
.feature .wrap .inner {
  counter-reset: number 0;
}
.feature .wrap .inner .box {
  margin: 0 0 2rem;
}
.feature .wrap .inner .box figure {
  position: relative;
}
.feature .wrap .inner .box figure .num {
  position: absolute;
  bottom: 0;
  left: 0.6rem;
}
.feature .wrap .inner .box figure .num::before {
  content: counter(number, decimal-leading-zero) "";
  counter-increment: number 1;
  font-size: 4.5rem;
  display: block;
  line-height: 1;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
  color: var(--clr_sub03);
}
.feature .wrap .inner .box p {
  margin: 0;
  color: #fff;
  letter-spacing: 0.1em;
}
.feature .wrap .inner .box p.tit {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1;
  font-size: 1.8rem;
  margin: 1rem 0 0 0;
}
.feature .wrap .inner .box p.txt {
  line-height: 1.56;
  font-size: 1.4rem;
  margin: 0.6rem 0 0 0;
}

@media screen and (min-width: 48em), print {
  .feature {
    padding: 8rem 0 26rem;
  }
  .feature::after {
    background: url("../img/bg_wave_white2.svg") no-repeat center/auto;
    height: 6rem;
  }
  .feature .wrap::before, .feature .wrap::after {
    top: -17rem;
  }
  .feature .wrap::before {
    width: 24rem;
    height: 13.1rem;
    left: 6rem;
  }
  .feature .wrap::after {
    width: 17rem;
    height: 13.1rem;
    right: 6rem;
  }
  .feature .wrap .inner {
    width: 1200px;
    margin: 0 auto;
    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: 7.6rem 6rem;
  }
  .feature .wrap .inner .box {
    width: 57rem;
    margin: 0;
  }
  .feature .wrap .inner .box figure .num {
    left: 1rem;
  }
  .feature .wrap .inner .box figure .num::before {
    font-size: 8rem;
  }
  .feature .wrap .inner .box p.tit {
    font-size: 3rem;
    margin: 2rem 0 0 0;
  }
  .feature .wrap .inner .box p.txt {
    font-size: 1.8rem;
    margin: 1.2rem 0 0 0;
  }
}
.greeting {
  padding: 4rem 1.6rem 8rem;
  background: #fff;
  position: relative;
}
.greeting::after {
  display: block;
  position: absolute;
  bottom: -0.1rem;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  background: url("../img/bg_wave_blue.svg") no-repeat center/128%;
  width: 100%;
  height: 1.7rem;
}
.greeting .wrap {
  position: relative;
}
.greeting .wrap::before {
  display: block;
  content: "";
  background: url("../img/birds.svg") no-repeat center/contain;
  width: 6.67rem;
  height: 4.03rem;
  position: absolute;
  top: -6.7rem;
  right: 0;
}
.greeting .wrap .txt p {
  margin: 0;
  line-height: 1.62;
}
.greeting .wrap .txt p.tit {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.52;
  font-size: 2rem;
  margin: 0 0 1.4rem;
}
.greeting .wrap .txt p.dr_name {
  margin: 2rem 0 0 0;
}
.greeting .wrap .txt p.dr_name span {
  font-weight: 500;
  font-size: 1.8rem;
}
.greeting .wrap .txt .btn_detail2 {
  width: 60%;
  padding: 0.4rem 1rem;
  margin: 2.05rem auto 0;
  display: block;
  text-align: center;
}

@media screen and (min-width: 48em), print {
  .greeting {
    padding: 8rem 0 18rem;
  }
  .greeting::after {
    background: url("../img/bg_wave_blue.svg") no-repeat center/auto;
    height: 6rem;
  }
  .greeting .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    /*
    > div, figure {
    	width: 57.0rem;
    }
       */
  }
  .greeting .wrap::before {
    width: 20rem;
    height: 12.1rem;
    top: -16.2rem;
    right: 6rem;
  }
  .greeting .wrap .txt p.tit {
    font-size: 3rem;
    margin: 0 0 2rem;
  }
  .greeting .wrap .txt p.dr_name {
    margin: 4rem 0 0 0;
  }
  .greeting .wrap .txt p.dr_name span {
    font-size: 2.4rem;
  }
  .greeting .wrap .txt .btn_detail2 {
    width: 28rem;
    height: 6rem;
    padding: 0;
    margin: 4.1rem 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
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;
  padding: 6.6rem 0 0 0;
}
body:not(.index) .main {
  margin: 4rem 1.6rem 6rem;
}
body:not(.index) .main .tit_02::after {
  display: block;
  width: 6rem;
  height: 0.2rem;
  content: "";
  background: var(--clr_main);
  margin: 1.2rem auto 0;
}
body:not(.index) .main .tel {
  font-size: 120%;
}
body:not(.index) .main .btn_rsv {
  padding: 0.3rem 2rem;
}

@media screen and (min-width: 48em), print {
  body:not(.index) .sub_header {
    padding: 0;
  }
  body:not(.index) .main {
    width: 100rem;
    margin: 6rem auto 8rem;
  }
  body:not(.index) .main .tit_02::after {
    width: 12rem;
    height: 0.4rem;
    margin: 2.4rem auto 0;
  }
  body:not(.index) .main .cf .img_l, body:not(.index) .main .cf .img_r {
    max-width: 40%;
    height: auto;
  }
  body:not(.index) .main .btn_rsv {
    padding: 0.6rem 2rem;
  }
}
.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;
  color: var(--clr_main);
}
.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: 3.4rem 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;
  }
}
body.doctor .main .dr_name {
  text-align: right;
}
body.doctor .main .dr_name span {
  font-weight: 500;
  font-size: 120%;
}
@media screen and (min-width: 48em), print {
  body.doctor .main .dr_name {
    padding: 0 45rem 0 0;
  }
}

.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_main);
  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_main);
}

@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);
  }
  .gallery .gallery_thum .slick-track {
    -webkit-transform: translate3d(0px, 0px, 0px) !important;
            transform: translate3d(0px, 0px, 0px) !important;
  }
}
body.access .main .gmap {
  height: calc(100vw - 3.2rem);
  margin: 2rem 0;
}
@media screen and (min-width: 48em), print {
  body.access .main .tbl_time {
    font-size: 2rem;
  }
  body.access .main .gmap {
    margin: 4rem 0 0;
    height: 50rem;
  }
}

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

.tbl_lst th {
  width: 30%;
  padding: 0.8rem 1rem;
}
.tbl_lst td {
  text-align: left;
  width: 70%;
}

.boxFlow, .boxFlow_lc {
  background: #fff;
  border: 0.2rem var(--clr_sub02) solid;
  padding: 1rem;
  position: relative;
  margin: 0 0 4.5rem;
  border-radius: 1.4rem;
}
.boxFlow h3, .boxFlow_lc h3 {
  color: var(--clr_sub02);
  font-size: 120%;
  margin: 0 0 1rem;
}
.boxFlow p, .boxFlow_lc p {
  margin: 0 !important;
}
.boxFlow::after, .boxFlow_lc::after {
  display: block;
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  bottom: -4rem;
  left: 0;
  right: 0;
  border-top: 2rem solid var(--clr_sub02);
  border-right: 3rem solid transparent;
  border-bottom: 1rem solid transparent;
  border-left: 3rem solid transparent;
  margin: auto;
}

.boxFlow_lc::after {
  display: none;
}

@media screen and (min-width: 48em), print {
  .boxFlow, .boxFlow_lc {
    padding: 3rem;
    margin: 0 0 6.5rem;
    border: 0.4rem var(--clr_sub02) solid;
    border-radius: 3rem;
  }
  .boxFlow::after, .boxFlow_lc::after {
    bottom: -5rem;
    border-right: 4.5rem solid transparent;
    border-left: 4.5rem solid transparent;
  }
}
.notfound .main .btn_detail2 {
  padding: 0 4rem 0 2rem;
}

@media screen and (min-width: 48em), print {
  .notfound .main .btn_detail2 {
    width: 20rem;
    padding: 0 2.8rem 0 0;
  }
}
/*# sourceMappingURL=style.css.map */