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

a[href=""] {
  pointer-events: none;
}

:root {
  --clr_txt: #00313D;
  --rgb_txt: 0, 49, 61;
  --clr_border: #ccc;
  --rgb_border: 204, 204, 204;
  --clr_shadow: #000;
  --rgb_shadow: 0, 0, 0;
  --clr_white: #fff;
  --rgb_white: 255, 255, 255;
  --clr_green: #37AABA;
  --rgb_green: 55, 170, 186;
  --clr_green_light: #73D1CD;
  --rgb_green_light: 115, 209, 205;
  --clr_green_light02: #EBFDFF;
  --rgb_green_light02: 235, 253, 255;
  --clr_green_light03: #CBE8E9;
  --rgb_green_light03: 203, 232, 233;
  --clr_green_light04: #A0E2EB;
  --rgb_green_light04: 160, 226, 235;
  --clr_green_dark: #456E74;
  --rgb_green_dark: 69, 110, 116;
  --clr_green_dark02: #5D6143;
  --rgb_green_dark02: 93, 97, 67;
  --clr_green_dark03: #39868D;
  --rgb_green_dark03: 57, 134, 141;
  --clr_yellowgreen: #76D489;
  --rgb_yellowgreen: 118, 212, 137;
  --clr_olive: #BFC697;
  --rgb_olive: 191, 198, 151;
  --clr_olive_light: #F2F5E0;
  --rgb_olive_light: 242, 245, 224;
  --clr_olive_light02: #E1E8B7;
  --rgb_olive_light02: 225, 232, 183;
  --clr_olive_dark: #949B6C;
  --rgb_olive_dark: 148, 155, 108;
  --clr_olive_dark02: #98A931;
  --rgb_olive_dark02: 152, 169, 49;
  --clr_orange: #EEBE9D;
  --rgb_orange: 238, 190, 157;
  --clr_brown: #A75922;
  --rgb_brown: 167, 89, 34;
  --clr_gray: #A2B7C0;
  --rgb_gray: 162, 183, 192;
  --clr_gray_light: #E7EFF2;
  --rgb_gray_light: 231, 239, 242;
  --clr_gray_light02: #F3F3F3;
  --rgb_gray_light02: 243, 243, 243;
  --clr_gray_light03: #F9F9F9;
  --rgb_gray_light03: 249, 249, 249;
  --clr_gray_dark: #A5B4B7;
  --rgb_gray_dark: 165, 180, 183;
  --clr_gray_dark02: #EBEBEB;
  --rgb_gray_dark02: 235, 235, 235;
  --clr_gray_dark03: #3A3A3A;
  --rgb_gray_dark03: 58, 58, 58;
  --clr_beige: #D1AF73;
  --rgb_beige: 209, 175, 115;
  --clr_blue: #7399D1;
  --rgb_blue: 115, 153, 209;
  --clr_blue_light: #F1F9F9;
  --rgb_blue_light: 241, 249, 249;
  --clr_pink: #D173A2;
  --rgb_pink: 209, 115, 162;
  --clr_yellow: #f5f341;
  --rgb_yellow: 245, 243, 65;
  --clr_LINE: #00B900;
  --rgb_LINE: 0, 185, 0;
  --clr_LINE_dark: #8BC48B;
  --rgb_LINE_dark: 139, 196, 139;
  --clr_LINE_light: #BDE3BD;
  --rgb_LINE_light: 189, 227, 189;
}

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

@media screen and (min-width: 48em), print {
  .pc-txt_c {
    text-align: center !important;
  }
  .pc-txt_l {
    text-align: left !important;
  }
  .pc-txt_r {
    text-align: right !important;
  }
}
.bold {
  font-weight: 700;
}

.txt_large {
  font-size: 120%;
}

.txt_small {
  font-size: 80%;
}

.txt_green {
  color: var(--clr_green);
}

.txt_gray {
  color: var(--clr_gray_dark03);
}

.line_mark {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(75%, var(--clr_olive_light))) repeat scroll 0 -0.2em;
  background: linear-gradient(transparent 75%, var(--clr_olive_light) 75%) repeat scroll 0 -0.2em;
  padding-left: 0.1rem;
  padding-right: 0.1rem;
}
.line_mark.-color02 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(75%, var(--clr_yellow))) repeat scroll 0 -0.2em;
  background: linear-gradient(transparent 75%, var(--clr_yellow) 75%) repeat scroll 0 -0.2em;
}

.inline {
  display: inline-block;
}

.img_c {
  margin: 1rem auto;
  border-radius: 10px;
}
@media screen and (min-width: 48em), print {
  .img_c {
    border-radius: 20px;
  }
}

.img_l, .img_r {
  max-width: 80%;
  margin: 1rem auto;
  border-radius: 10px;
}
@media screen and (min-width: 48em), print {
  .img_l, .img_r {
    border-radius: 20px;
  }
}

.tate {
  max-width: 60%;
}

@media screen and (min-width: 48em), print {
  .img_l {
    float: left;
    margin: 0 2rem 2rem 0;
    max-width: 40%;
    height: auto;
  }
  .img_r {
    float: right;
    margin: 0 0 2rem 2rem;
    max-width: 40%;
    height: auto;
  }
  .tate {
    max-width: 25% !important;
  }
}
.img_flex .img_content {
  width: 80%;
  margin: 1rem auto;
}
.img_flex .img_content img {
  border-radius: 10px;
}
@media screen and (min-width: 48em), print {
  .img_flex .img_content img {
    border-radius: 20px;
  }
}
@media screen and (min-width: 48em), print {
  .img_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .img_flex .img_content {
    width: 40%;
    margin: 0;
  }
  .img_flex .txt_content {
    width: calc(60% - 2rem);
  }
  .img_flex.-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .img_flex.-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .img_flex.-reverse .img_content img {
    margin: 0 0 0 auto;
  }
}

.sp_n {
  display: none;
}

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

.mt10 {
  margin-top: 1rem;
}

.mt20 {
  margin-top: 2rem;
}

.mt30 {
  margin-top: 3rem;
}

.mt40 {
  margin-top: 4rem;
}

.mt05 {
  margin-top: 0.5rem;
}

.mb00 {
  margin-bottom: 0 !important;
}

.pt00 {
  padding-top: 0 !important;
}

.pb00 {
  padding-bottom: 0 !important;
}

@media screen and (min-width: 48em), print {
  .mt00 {
    margin-top: 0rem;
  }
  .mt10 {
    margin-top: 2rem;
  }
  .mt20 {
    margin-top: 4rem;
  }
  .mt30 {
    margin-top: 6rem;
  }
  .mt40 {
    margin-top: 8rem;
  }
  .mt05 {
    margin-top: 1rem;
  }
}
body:not(.index) .main > section ~ section, body:not(.index) .flex2 > section ~ section {
  margin-top: 4rem;
}
body:not(.index) .main > section section ~ section, body:not(.index) .flex2 > section section ~ section {
  margin-top: 3rem;
}
body:not(.index) .main > section > section section ~ section, body:not(.index) .flex2 > section > section section ~ section {
  margin-top: 2rem;
}
body:not(.index) .main > section > section > section section ~ section, body:not(.index) .flex2 > section > section > section section ~ section {
  margin-top: 2rem;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main > section ~ section, body:not(.index) .flex2 > section ~ section {
    margin-top: 8rem;
  }
  body:not(.index) .main > section section ~ section, body:not(.index) .flex2 > section section ~ section {
    margin-top: 6rem;
  }
  body:not(.index) .main > section > section section ~ section, body:not(.index) .flex2 > section > section section ~ section {
    margin-top: 4rem;
  }
  body:not(.index) .main > section > section > section section ~ section, body:not(.index) .flex2 > section > section > section section ~ section {
    margin-top: 4rem;
  }
}

.tbl_box.-psychosomatic {
  --clr_main:var(--clr_green);
  --clr_tit: var(--clr_green);
  --clr_sub:var(--clr_green_light);
}
.tbl_box.-skin {
  --clr_main:var(--clr_olive);
  --clr_tit: var(--clr_olive_dark);
  --clr_sub:var(--clr_olive_dark);
}
.tbl_box .tbl_tit {
  font-weight: 700;
  margin: 0 0 0.2rem;
  font-size: 1.3rem;
  color: var(--clr_tit);
  letter-spacing: 0.1rem;
}
.tbl_box .tbl_tit::before {
  font-family: "fontello";
  content: "\f111";
  margin-right: 0.2rem;
}
@media screen and (min-width: 48em), print {
  .tbl_box .tbl_tit {
    font-size: 1.8rem;
  }
}

.tbl_time {
  width: 100%;
  border-collapse: separate;
  border-radius: 7px 7px 0 0;
  overflow: hidden;
  border-spacing: 0;
}
.tbl_time caption {
  font-size: 90%;
  caption-side: bottom;
  text-align: left;
  line-height: 1.3;
  margin-top: 0.4rem;
}
.tbl_time caption .sat {
  color: var(--clr_sub);
  margin: 0 0.2rem;
}
.tbl_time tr th {
  font-weight: normal;
  line-height: 1.2;
}
.tbl_time tr th[scope=col] {
  padding: 0.8rem 0;
  text-align: center;
  border-bottom: 1px solid var(--clr_main);
  background: var(--clr_main);
  color: var(--clr_white);
  font-weight: 700;
}
.tbl_time tr th[scope=col]:first-child {
  width: 32%;
}
.tbl_time tr th[scope=col]:last-child {
  width: 15%;
  padding-right: 3%;
}
.tbl_time tr th.time {
  border-bottom: 1px solid var(--clr_main);
}
.tbl_time tr th.time .txt_small {
  font-size: 1rem;
}
.tbl_time tr td {
  text-align: center;
  padding: 1.2rem 0.4rem;
  border-bottom: 1px solid var(--clr_main);
  line-height: 1;
  font-size: 90%;
}
.tbl_time tr td.sat {
  color: var(--clr_sub);
}
.tbl_time tr td:last-child {
  width: 15%;
  padding-right: 3%;
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    table-layout: fixed;
    border-radius: 10px 10px 0 0;
  }
  .tbl_time caption {
    font-size: 1.4rem;
  }
  .tbl_time tr th {
    padding: 1rem 0;
  }
  .tbl_time tr th[scope=col] {
    padding: 1.1rem 0;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 33%;
  }
  .tbl_time tr th[scope=col]:last-child {
    width: 12%;
    padding-right: 2%;
  }
  .tbl_time tr th.time {
    padding: 0.4rem 0;
  }
  .tbl_time tr th.time .txt_small {
    font-size: 70%;
  }
  .tbl_time tr td {
    padding: 1.8rem 0;
  }
  .tbl_time tr td:last-child {
    width: 12%;
    padding-right: 2%;
  }
}
.tbl_cap {
  text-align: center;
  color: var(--clr_white);
  border-radius: 50vh;
  background: var(--clr_sub);
  padding: 0.6rem;
  font-size: 1.3rem;
  margin: 1.4rem auto 1rem;
}
@media screen and (min-width: 48em), print {
  .tbl_cap {
    font-size: 1.8rem;
    margin: 1.5rem auto;
    padding: 1rem;
    letter-spacing: 0.1rem;
  }
}

.gmap {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}
@media screen and (min-width: 48em), print {
  .gmap {
    border-radius: 30px;
  }
}

.tit_01 {
  font-size: 2rem;
  padding: 1rem;
  text-align: center;
  margin-bottom: 1.5rem;
  background: url(../img/tit_01.webp) center/auto 100% no-repeat;
  color: var(--clr_green);
  text-shadow: rgb(255, 255, 255) 1px 0px 0px, rgb(255, 255, 255) 0.540302px 0.841471px 0px, rgb(255, 255, 255) -0.416147px 0.909297px 0px, rgb(255, 255, 255) -0.989992px 0.14112px 0px, rgb(255, 255, 255) -0.653644px -0.756802px 0px, rgb(255, 255, 255) 0.283662px -0.958924px 0px, rgb(255, 255, 255) 0.96017px -0.279415px 0px;
  font-weight: 700;
  line-height: 1.2;
  width: calc(100% - 2rem);
  margin-inline: auto;
  height: 12rem;
  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;
  border: 2px solid var(--clr_green_light03);
  -webkit-box-shadow: 5px 5px 0 var(--clr_green_light03);
          box-shadow: 5px 5px 0 var(--clr_green_light03);
  border-radius: 20px;
  overflow: hidden;
}

.tit_02 {
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 700;
  color: var(--clr_green);
  padding: 1rem 4rem;
  background: url("../img/tit_02L.png") center left/3rem auto no-repeat, url("../img/tit_02R.png") center right/3rem auto no-repeat;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  z-index: 0;
}
.tit_02::after {
  content: "";
  display: block;
  width: calc(100% - 8rem);
  height: 1rem;
  position: absolute;
  bottom: 1rem;
  right: 0;
  left: 0;
  margin: 0 auto;
  background: var(--clr_olive_light);
  z-index: -1;
}

.tit_03 {
  font-size: 1.7rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 700;
  color: var(--clr_white);
  background: var(--clr_green);
  padding: 0.4rem 1rem;
  border-radius: 15px;
}

.tit_04 {
  font-size: 1.6rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: var(--clr_green);
  position: relative;
  padding-left: 1.55em;
}
.tit_04::before {
  content: "";
  display: block;
  width: 1.2em;
  height: 1.2em;
  background: url("../img/tit_04.png") center center/contain no-repeat;
  position: absolute;
  top: 0.1rem;
  left: 0;
}

.tit_05 {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  padding-bottom: 0.4rem;
  color: var(--clr_olive_dark02);
  border-bottom: 1px dashed var(--clr_olive_dark02);
  font-weight: 700;
}

.tit_06 {
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: var(--clr_green_dark);
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(var(--clr_green_light03))) repeat scroll 0 -0.2em;
  background: linear-gradient(transparent calc(100% - 1rem), var(--clr_green_light03) calc(100% - 1rem)) repeat scroll 0 -0.2em;
  padding-bottom: 0.5rem;
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    font-size: 3.6rem;
    width: 1200px;
    height: 35rem;
    border-radius: 30px;
    border-width: 3px;
    -webkit-box-shadow: 10px 10px 0 var(--clr_green_light03);
            box-shadow: 10px 10px 0 var(--clr_green_light03);
    background-size: cover;
    margin-bottom: 3.3rem;
  }
  .tit_02 {
    font-size: 3rem;
    letter-spacing: 0.15rem;
    margin-bottom: 5rem;
    padding: 1.5rem 7rem;
    background: url("../img/tit_02L.png") center left/5rem auto no-repeat, url("../img/tit_02R.png") center right/5rem auto no-repeat;
  }
  .tit_02::after {
    width: calc(100% - 14rem);
    height: 1.6rem;
    bottom: 1rem;
  }
  .tit_03 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
    border-radius: 20px;
    padding: 0.8rem 1.5rem;
  }
  .tit_04 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    padding-left: 3.9rem;
  }
  .tit_04::before {
    width: 3.2rem;
    height: 2.7rem;
    top: 0.2rem;
  }
  .tit_05 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    padding-bottom: 0.6rem;
  }
  .tit_06 {
    font-size: 2.2rem;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(var(--clr_green_light03))) repeat scroll 0 -0.2em;
    background: linear-gradient(transparent calc(100% - 1.5rem), var(--clr_green_light03) calc(100% - 1.5rem)) repeat scroll 0 -0.2em;
    padding-bottom: 1rem;
  }
}
.lst {
  line-height: 1.4;
}
.lst > li:not(:last-child) {
  margin-bottom: 1rem;
}

.lst_ul {
  line-height: 1.4;
}
.lst_ul > li {
  padding-left: 1.4em;
  position: relative;
}
.lst_ul > li:not(:last-child) {
  margin-bottom: 1rem;
}
.lst_ul > li::before {
  content: "";
  display: block;
  background: url("../img/icon_lst.png") center center/contain no-repeat;
  width: 1.15em;
  height: 1.15em;
  position: absolute;
  top: 0.15rem;
  left: -0.2rem;
}
@media screen and (min-width: 48em), print {
  .lst_ul > li::before {
    width: 2rem;
    height: 1.9rem;
    top: 0.2rem;
    left: -0.5rem;
  }
}
.lst_ul.-kome > li::before {
  content: "※";
  background: none;
  color: inherit;
  top: inherit;
  left: 0;
}
.lst_ul.-disc > li::before {
  font-family: "fontello";
  content: "\f111";
  font-size: 40%;
  top: 0.65rem;
  left: 0.6rem;
  color: var(--clr_green);
  background: none;
}
@media screen and (min-width: 48em), print {
  .lst_ul.-disc > li::before {
    top: 0.8rem;
  }
}

.lst_ol {
  line-height: 1.4;
  counter-reset: number 0;
}
.lst_ol > li {
  counter-increment: number 1;
  padding-left: 1.3em;
  position: relative;
}
.lst_ol > li:not(:last-child) {
  margin-bottom: 1rem;
}
.lst_ol > li::before {
  content: counter(number) ".";
  color: var(--clr_green);
  width: 1.3em;
  height: 1.3em;
  line-height: 1;
  position: absolute;
  top: 0.26rem;
  left: 0;
}
@media screen and (min-width: 48em), print {
  .lst_ol > li::before {
    top: 0.34rem;
  }
}

.lst_dl {
  --dl_border: transparent;
}
.lst_dl dt {
  background: var(--clr_green_light03);
  padding: 0.6rem 1rem;
  border-top: 1px solid var(--dl_border);
  border-right: 1px solid var(--dl_border);
  border-left: 1px solid var(--dl_border);
}
.lst_dl dd {
  background: var(--clr_blue_light);
  margin: 0 0 0.5rem;
  padding: 0.8rem 1rem;
  border-top: 1px solid var(--dl_border);
  border-right: 1px solid var(--dl_border);
  border-left: 1px solid var(--dl_border);
  border-bottom: 1px solid var(--dl_border);
}
@media screen and (min-width: 48em), print {
  .lst_dl dt {
    padding: 1rem 2.5rem;
  }
  .lst_dl dd {
    padding: 1.5rem 2.5rem;
  }
}

.lst_dl02 dt {
  font-weight: 700;
}
.lst_dl02 dd {
  margin-bottom: 1rem;
}
.lst_dl02 dd:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 48em), print {
  .lst_dl02 {
    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_dl02 dt {
    width: 8.5em;
  }
  .lst_dl02 dd {
    width: calc(100% - 8.5em);
    padding-left: 1rem;
  }
}

.lst_anc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  border: 2px solid var(--clr_green);
  border-radius: 10px;
  padding: 1.5rem;
}
@media screen and (min-width: 48em), print {
  .lst_anc {
    border-radius: 20px;
  }
}
.lst_anc > li {
  width: 100%;
  padding-left: 1.2em;
  position: relative;
}
.lst_anc > li a::before {
  position: absolute;
  top: 0.1rem;
  left: 0.2rem;
  font-family: "fontello";
  content: "\e81c";
  display: inline-block;
}
@media screen and (min-width: 48em), print {
  .lst_anc {
    border-width: 3px;
    padding: 3rem;
    gap: 1.5rem 3rem;
  }
  .lst_anc > li {
    width: auto;
  }
}

.flow dd {
  margin: 0;
  position: relative;
}
.flow dd:not(:last-child) {
  margin: 0 0 6rem;
}
.flow dd:not(:last-child)::after {
  display: block;
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  bottom: -4rem;
  left: 0;
  right: 0;
  background: url("../img/icon_arrow.svg") center center/contain no-repeat;
  width: 3em;
  height: 1.5em;
  margin: auto;
}
@media screen and (min-width: 48em), print {
  .flow dd:not(:last-child) {
    margin: 0 0 10rem;
  }
  .flow dd:not(:last-child)::after {
    bottom: -8rem;
    width: 6rem;
    height: 3.6em;
  }
}

.flow_ol {
  counter-reset: number 0;
}
.flow_ol > li {
  border-radius: 10px;
  padding: 1.5rem;
  counter-increment: number 1;
  position: relative;
  background: var(--clr_blue_light);
}
@media screen and (min-width: 48em), print {
  .flow_ol > li {
    border-radius: 20px;
  }
}
.flow_ol > li:not(:last-child) {
  margin: 0 0 6rem;
}
.flow_ol > li:not(:last-child)::after {
  display: block;
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  bottom: -4rem;
  left: 0;
  right: 0;
  background: url("../img/icon_arrow.svg") center center/contain no-repeat;
  width: 3em;
  height: 1.5em;
  margin: auto;
}
@media screen and (min-width: 48em), print {
  .flow_ol > li:not(:last-child) {
    margin: 0 0 10rem;
  }
  .flow_ol > li:not(:last-child)::after {
    bottom: -8rem;
    width: 6rem;
    height: 3.6em;
  }
}
.flow_ol > li .flow_tit {
  margin-bottom: 0.8rem;
  display: block;
  color: var(--clr_white);
  background: var(--clr_green);
  font-weight: 700;
  padding: 0.2rem 0.6rem 0.2rem 1.4em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 7px;
}
.flow_ol > li .flow_tit::before {
  display: inline-block;
  content: counter(number) ".";
  position: absolute;
  top: 1.7rem;
  left: 2.2rem;
}
@media screen and (min-width: 48em), print {
  .flow_ol > li {
    padding: 3rem;
  }
  .flow_ol > li .flow_tit {
    margin-bottom: 1.5rem;
    border-radius: 10px;
    padding: 0.2rem 1.4rem 0.2rem 1.8em;
  }
  .flow_ol > li .flow_tit::before {
    top: 3.2rem;
    left: 4.4rem;
  }
}

.faq_lst dt, .faq_lst dd {
  padding-left: 2.4rem;
  position: relative;
}
.faq_lst dt::before, .faq_lst dd::before {
  position: absolute;
  top: -0.25rem;
  left: 0;
  display: block;
  font-size: 120%;
  letter-spacing: 0.1rem;
}
.faq_lst dt {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  line-height: 1.5;
  cursor: pointer;
}
.faq_lst dt::before {
  content: "Q.";
  color: var(--clr_green);
}
.faq_lst dt:not(:first-of-type) {
  margin-top: 2rem;
}
.faq_lst dd {
  line-height: 0;
  height: 0;
  opacity: 0;
  -webkit-transition: height 0.4s, opacity 0.8s;
  transition: height 0.4s, opacity 0.8s;
}
.faq_lst dd::before {
  content: "A.";
  color: var(--clr_green_light);
  left: 0.2rem;
}
.faq_lst dd.open {
  line-height: 1.7;
  height: auto;
  opacity: 1;
}
@media screen and (min-width: 48em), print {
  .faq_lst dt, .faq_lst dd {
    padding-left: 3.4rem;
  }
  .faq_lst dt {
    font-size: 2rem;
  }
  .faq_lst dt:not(:first-of-type) {
    margin-top: 3rem;
  }
}

.flex3, .flex4 {
  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;
}
.flex3 > li, .flex4 > li {
  width: calc(50% - 0.5rem);
}
.flex3 > li:not(:last-child), .flex4 > li:not(:last-child) {
  margin-bottom: inherit;
}

.flex1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.6rem 2rem;
}
.flex1 > li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.flex1 > li:not(:last-child) {
  margin-bottom: inherit;
}

@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;
    gap: 1rem 2rem;
  }
  .flex2 > section, .flex2 > li, .flex2 > div {
    width: calc(50% - 1rem);
    margin-top: 0 !important;
  }
  .flex2 > section:not(:last-child), .flex2 > li:not(:last-child), .flex2 > div:not(:last-child) {
    margin-bottom: inherit;
  }
  .flex3 {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 1rem 2rem;
  }
  .flex3 li {
    width: calc((100% - 4rem) / 3);
  }
  .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;
    gap: 1rem 2rem;
  }
  .flex3_1 li {
    width: calc((100% - 4rem) / 3);
  }
  .flex3_1 li:not(:last-child) {
    margin-bottom: inherit;
  }
  .flex4 {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 1rem 2rem;
  }
  .flex4 li {
    width: calc((100% - 6rem) / 4);
  }
  .flex1 {
    gap: 1rem 3rem;
  }
}
.tel {
  display: inline-block;
  background: var(--clr_gray_light);
  border: 2px solid var(--clr_gray);
  border-radius: 7px;
  padding: 0.8rem 2.5rem;
  font-size: 1.3rem;
  position: relative;
  font-weight: 700;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  font-size: 110%;
  background: var(--clr_green_light02);
  border-color: var(--clr_green);
  padding-left: 1rem;
  padding-right: 1rem;
}
.tel::after {
  font-family: "fontello";
  content: "\f006";
  font-size: 90%;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-42%);
          transform: translateY(-42%);
  right: 0.5rem;
  line-height: 1;
}
@media screen and (min-width: 48em), print {
  .tel {
    padding: 0.7rem 4rem;
    border-radius: 10px;
    font-size: 2rem;
  }
  .tel::after {
    right: 1rem;
  }
  .tel:not(.tel):hover {
    opacity: 1;
    background: var(--clr_green);
    color: var(--clr_white);
  }
}
.tel::after {
  content: none;
}
.tel::before {
  font-family: "fontello";
  content: "\e814";
  margin-right: 0.6rem;
  font-weight: normal;
  display: inline-block;
  color: var(--clr_green);
  font-size: 130%;
  line-height: 1;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}
@media screen and (min-width: 48em), print {
  .tel {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.rsv {
  display: inline-block;
  background: var(--clr_gray_light);
  border: 2px solid var(--clr_gray);
  border-radius: 7px;
  padding: 0.8rem 2.5rem;
  font-size: 1.3rem;
  position: relative;
  font-weight: 700;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  padding-left: 1rem;
  padding-right: 1rem;
}
.rsv::after {
  font-family: "fontello";
  content: "\f006";
  font-size: 90%;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-42%);
          transform: translateY(-42%);
  right: 0.5rem;
  line-height: 1;
}
@media screen and (min-width: 48em), print {
  .rsv {
    padding: 0.7rem 4rem;
    border-radius: 10px;
    font-size: 2rem;
  }
  .rsv::after {
    right: 1rem;
  }
  .rsv:not(.tel):hover {
    opacity: 1;
    background: var(--clr_green);
    color: var(--clr_white);
  }
}
.rsv::after {
  content: none;
}
.rsv::before {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background: url("../img/icon_calendar.svg") center center/contain no-repeat;
  margin-right: 0.6rem;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}
@media screen and (min-width: 48em), print {
  .rsv {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.LINE {
  display: inline-block;
  background: var(--clr_gray_light);
  border: 2px solid var(--clr_gray);
  border-radius: 7px;
  padding: 0.8rem 2.5rem;
  font-size: 1.3rem;
  position: relative;
  font-weight: 700;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  padding-left: 1rem;
  padding-right: 1rem;
  color: var(--clr_txt);
  background: var(--clr_LINE_light);
  border-color: var(--clr_LINE_dark);
}
.LINE::after {
  font-family: "fontello";
  content: "\f006";
  font-size: 90%;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-42%);
          transform: translateY(-42%);
  right: 0.5rem;
  line-height: 1;
}
@media screen and (min-width: 48em), print {
  .LINE {
    padding: 0.7rem 4rem;
    border-radius: 10px;
    font-size: 2rem;
  }
  .LINE::after {
    right: 1rem;
  }
  .LINE:not(.tel):hover {
    opacity: 1;
    background: var(--clr_green);
    color: var(--clr_white);
  }
}
.LINE::after {
  content: none;
}
.LINE::before {
  content: "";
  display: inline-block;
  width: 1.8em;
  height: 1.5em;
  margin-right: 0.2rem;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  line-height: 1;
  background: url("../img/icon_LINE.svg") center center/contain no-repeat;
}
@media screen and (min-width: 48em), print {
  .LINE {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .LINE:hover {
    background: var(--clr_LINE) !important;
  }
}

.btn_lst {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1rem;
}
.btn_lst > li {
  width: calc((100% - 1rem) / 2);
  height: 4.5rem;
}
.btn_lst > li a {
  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;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 0;
  color: var(--clr_white);
  -webkit-box-shadow: 4px 4px 0 rgba(var(--rgb_shadow), 0.1);
          box-shadow: 4px 4px 0 rgba(var(--rgb_shadow), 0.1);
  font-size: 1.6rem;
  background: var(--clr_green);
  border: 2px solid var(--clr_green);
}
.btn_lst > li a.rsv::before {
  width: 1.5em;
  height: 1.5em;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.btn_lst > li a.LINE {
  background: var(--clr_LINE);
  border: 2px solid var(--clr_LINE);
}
.btn_lst > li a.LINE::before {
  width: 1.8em;
  height: 1.8em;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}
@media screen and (min-width: 48em), print {
  .btn_lst {
    gap: 0 3rem;
  }
  .btn_lst > li {
    height: 8rem;
  }
  .btn_lst > li a {
    -webkit-box-shadow: 5px 5px 0 rgba(var(--rgb_shadow), 0.1);
            box-shadow: 5px 5px 0 rgba(var(--rgb_shadow), 0.1);
    font-size: 3rem;
  }
  .btn_lst > li a.rsv::before {
    width: 5rem;
    height: 5rem;
    margin-right: 1.4rem;
  }
  .btn_lst > li a.rsv:hover {
    background: var(--clr_green_light);
  }
  .btn_lst > li a.LINE::before {
    width: 5rem;
    height: 5rem;
    margin-right: 0.6rem;
  }
  .btn_lst > li a.LINE:hover {
    background: var(--clr_LINE_dark) !important;
  }
}

.box {
  padding: 1.5rem;
  border-radius: 10px;
  background: var(--clr_blue_light);
}
@media screen and (min-width: 48em), print {
  .box {
    border-radius: 20px;
  }
}
.box .box_tit {
  font-size: 110%;
  margin: 0 auto 1.5rem;
}
.box.-color02 {
  background: var(--clr_olive_light);
}
@media screen and (min-width: 48em), print {
  .box {
    padding: 3rem;
  }
}

.btn {
  display: inline-block;
  background: var(--clr_gray_light);
  border: 2px solid var(--clr_gray);
  border-radius: 7px;
  padding: 0.8rem 2.5rem;
  font-size: 1.3rem;
  position: relative;
  font-weight: 700;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.btn::after {
  font-family: "fontello";
  content: "\f006";
  font-size: 90%;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-42%);
          transform: translateY(-42%);
  right: 0.5rem;
  line-height: 1;
}
@media screen and (min-width: 48em), print {
  .btn {
    padding: 0.7rem 4rem;
    border-radius: 10px;
    font-size: 2rem;
  }
  .btn::after {
    right: 1rem;
  }
  .btn:not(.tel):hover {
    opacity: 1;
    background: var(--clr_green);
    color: var(--clr_white);
  }
}

.lnk {
  display: inline-block;
  text-decoration: underline;
  cursor: pointer;
  color: var(--clr_olive_dark);
  font-weight: 700;
}
.lnk::after {
  content: ">>";
  padding-left: 0.3rem;
  display: inline-block;
}
@media screen and (min-width: 48em), print {
  .lnk::after {
    padding-left: 0.6rem;
  }
}
.lnk:hover {
  text-decoration: none;
  opacity: 1;
}
.lnk.out::after {
  font-family: "fontello";
  content: "\f08e";
  font-weight: normal;
}
.lnk.pdf::after {
  font-family: "fontello";
  content: "\f1c1";
  font-weight: normal;
}

.lnk_faq {
  color: var(--clr_brown);
  text-decoration: underline;
  margin: 1rem auto;
  letter-spacing: 0.01rem;
}
.lnk_faq:hover {
  text-decoration: none;
}
@media screen and (min-width: 48em), print {
  .lnk_faq {
    letter-spacing: 0.1rem;
  }
}

.tbl {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}
.tbl tr th {
  text-align: center;
  padding: 1rem;
  font-weight: normal;
  border: 1px solid var(--clr_blue_light);
  background: var(--clr_green_light03);
}
.tbl tr td {
  text-align: left;
  padding: 1rem;
  border: 1px solid var(--clr_white);
  background: var(--clr_blue_light);
}
.tbl tr td.price {
  text-align: right;
  width: 8em;
}
.tbl tr .nowrap {
  width: 0;
  white-space: nowrap;
}
.tbl.-color02 thead tr th {
  background: var(--clr_gray_dark);
}
.tbl.-color02 tbody tr th {
  background: var(--clr_gray_light03);
}
.tbl.-color02 th {
  border: 1px solid var(--clr_border);
}
.tbl.-color02 td {
  border: 1px solid var(--clr_border);
  background: var(--clr_white);
}
.tbl.-center tr td {
  text-align: center;
}
.tbl.-sp_small {
  font-size: 90%;
}

@media screen and (min-width: 48em), print {
  .tbl tr th {
    padding: 1rem 2.5rem;
  }
  .tbl tr td {
    padding: 1rem 2.5rem;
  }
  .tbl tr td.price {
    width: 30em;
  }
  .tbl.-sp_small {
    font-size: 100%;
  }
}
.tbl_scroll {
  overflow-x: scroll;
}
.tbl_scroll .tbl {
  white-space: nowrap;
}
@media screen and (min-width: 48em), print {
  .tbl_scroll {
    overflow: inherit;
  }
  .tbl_scroll .tbl {
    white-space: inherit;
  }
}

.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: #000;
}
.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: var(--clr_white);
  color: var(--clr_txt);
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
  word-wrap: break-word;
}
body::after {
  visibility: hidden;
  width: 100vw;
  height: 100vh;
  content: "";
  background: var(--clr_white);
  -webkit-backdrop-filter: blur(0.6rem);
          backdrop-filter: blur(0.6rem);
  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.2rem;
  line-height: 1.7;
}

.wrap {
  margin-right: 1rem;
  margin-left: 1rem;
}

@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;
  }
  .main {
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .main a:not([class*=btn]):hover {
    opacity: 1;
    text-decoration: none;
  }
  .wrap {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}
:target {
  scroll-margin-top: var(--scroll-margin);
}

.header {
  position: relative;
  z-index: 101;
  background: var(--clr_white);
}
.header .wrap {
  padding: 1rem 0 0.5rem;
  margin: 0;
}
.header .wrap .scroll_hreader {
  position: fixed;
  top: 0;
  background: var(--clr_white);
  padding: 1rem 1rem 0;
  width: 100%;
}
.header .wrap .scroll_hreader .logo {
  width: calc(100% - 5.6rem);
  height: 4.6rem;
}
.header .wrap .scroll_hreader .logo a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/logo.svg) no-repeat left center/contain;
}
.header .wrap .scroll_hreader .logo a .clip {
  display: block;
  height: 100%;
  overflow: hidden;
  clip-path: inset(50%);
  color: transparent;
}
.header .wrap .headR {
  margin-top: 4.6rem;
}
.header .wrap .headR .head_add {
  text-align: center;
  font-size: 1.1rem;
  margin: 0.5rem 0;
  letter-spacing: 0.1rem;
}
.header .wrap .headR .head_add::before {
  font-family: "fontello";
  content: "\e80e";
  color: var(--clr_gray);
  margin-right: 0.5rem;
  font-size: 150%;
  line-height: 1;
  display: inline-block;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
.header .wrap .headR ul li .head_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50vh;
  color: var(--clr_white);
  background: var(--clr_green_light);
  font-size: 1.1rem;
  line-height: 1.3;
  padding: 0.5rem 2rem 0.5rem 0.6rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  letter-spacing: 0.1rem;
}
.header .wrap .headR ul li .head_btn::before {
  width: 1.7em;
  height: 1.7em;
  font-size: 1.8rem;
  margin-right: 0.7rem;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-family: "fontello";
  content: "\e811";
  border-radius: 50%;
  background: var(--clr_white);
  color: var(--clr_green);
}
.header .wrap .headR ul li .head_btn.-tel {
  font-size: 1.5rem;
  background: var(--clr_green);
}
.header .wrap .headR ul li .head_btn.-tel::before {
  font-family: "fontello";
  content: "\e814";
}
.header .wrap .headR ul li .head_btn.-tel > span {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  display: inline-block;
}

@media screen and (min-width: 48em), print {
  .header .wrap {
    margin: 0 auto;
    padding: 3rem 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header .wrap .scroll_hreader {
    position: static;
    background: none;
    padding: 0;
    width: auto;
  }
  .header .wrap .scroll_hreader .logo {
    width: 55rem;
    height: 9.32rem;
  }
  .header .wrap .headR {
    width: calc(100% - 55rem);
    margin: 0;
  }
  .header .wrap .headR .head_add {
    font-size: 1.6rem;
    margin: 0.5rem 0;
    letter-spacing: 0.1rem;
  }
  .header .wrap .headR .head_add::before {
    margin-right: 0.5rem;
    font-size: 150%;
    -webkit-transform: translateY(1px);
            transform: translateY(1px);
  }
  .header .wrap .headR ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 1.5rem;
  }
  .header .wrap .headR ul > li .head_btn {
    font-size: 1.6rem;
    line-height: 1.3;
    padding: 0.5rem 2.4rem 0.5rem 0.6rem;
    letter-spacing: 0.1rem;
  }
  .header .wrap .headR ul > li .head_btn::before {
    font-size: 2.6rem;
    margin-right: 0.7rem;
    padding-top: 0.2rem;
  }
  .header .wrap .headR ul > li .head_btn.-tel {
    font-size: 3.6rem;
    line-height: 1.2;
    letter-spacing: 0.15rem;
  }
}
#nav {
  width: 100vw;
}
#nav #sp_menu {
  line-height: 1;
  font-size: 1rem;
  padding: 0;
  position: fixed;
  top: 1rem;
  right: 1.5rem;
  z-index: 102;
}
#nav #sp_menu::before {
  display: block;
  font-family: "fontello";
  content: "\e802";
  font-size: 3.6rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
#nav #sp_menu.close::before {
  font-family: "fontello";
  content: "\e806";
}
#nav #sp_menu span {
  display: none;
}
@media screen and (min-width: 48em), print {
  #nav {
    width: auto;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  #nav #sp_menu {
    display: none;
  }
}

.gnav_subnav {
  display: none;
  width: 100%;
  max-height: calc(100svh - 5.6rem - 4.5rem);
  overflow-y: auto;
  background: var(--clr_white);
  padding: 1rem;
  position: fixed;
  top: 5.5rem;
  left: 0;
  right: 0;
  margin: auto;
  z-index: calc(infinity);
}
.gnav_subnav .gnav > li > a, .gnav_subnav .gnav > li .sub {
  display: block;
  width: 100%;
  font-weight: 700;
  text-align: left;
  padding: 1rem 0 1rem 3.8rem;
  font-size: 1.3rem;
  background-repeat: no-repeat;
  background-position: center left 1rem;
  background-size: 2rem auto;
  background-image: url("../img/nav_deco01.png");
}
.gnav_subnav .gnav > li .sub {
  position: relative;
}
.gnav_subnav .gnav > li .sub::after {
  font-family: "fontello";
  content: "\e813";
  display: inline-block;
  position: absolute;
  right: 0.7rem;
}
.gnav_subnav .gnav > li .sub.close::after {
  font-family: "fontello";
  content: "\e812";
}
.gnav_subnav .gnav > li .subbox {
  display: none;
  background: var(--clr_green_light03);
  border-radius: 10px;
}
@media screen and (min-width: 48em), print {
  .gnav_subnav .gnav > li .subbox {
    border-radius: 20px;
  }
}
.gnav_subnav .gnav > li .subbox .subnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.gnav_subnav .gnav > li .subbox .subnav li {
  width: 50%;
  border-bottom: 1px solid var(--clr_white);
}
.gnav_subnav .gnav > li .subbox .subnav li:nth-of-type(odd) {
  border-right: 1px solid var(--clr_white);
}
.gnav_subnav .gnav > li .subbox .subnav li:last-of-type {
  border-bottom: none;
}
.gnav_subnav .gnav > li .subbox .subnav li:nth-last-child(2):nth-child(odd) {
  border-bottom: none;
}
.gnav_subnav .gnav > li .subbox .subnav li a {
  display: -ms-grid;
  display: grid;
  place-items: center;
  height: 100%;
  line-height: 1.3;
  text-align: center;
  font-size: 1.2rem;
  padding: 1rem;
  color: var(--clr_green_dark);
}
.gnav_subnav .gnav > li:nth-of-type(7n - 5) > a, .gnav_subnav .gnav > li:nth-of-type(7n - 5) .sub {
  background-image: url("../img/nav_deco02.png");
}
.gnav_subnav .gnav > li:nth-of-type(7n - 4) > a, .gnav_subnav .gnav > li:nth-of-type(7n - 4) .sub {
  background-image: url("../img/nav_deco03.png");
}
.gnav_subnav .gnav > li:nth-of-type(7n - 3) > a, .gnav_subnav .gnav > li:nth-of-type(7n - 3) .sub {
  background-image: url("../img/nav_deco04.png");
}
.gnav_subnav .gnav > li:nth-of-type(7n - 2) > a, .gnav_subnav .gnav > li:nth-of-type(7n - 2) .sub {
  background-image: url("../img/nav_deco05.png");
}
.gnav_subnav .gnav > li:nth-of-type(7n - 1) > a, .gnav_subnav .gnav > li:nth-of-type(7n - 1) .sub {
  background-image: url("../img/nav_deco06.png");
}
.gnav_subnav .gnav > li:nth-of-type(7n) > a, .gnav_subnav .gnav > li:nth-of-type(7n) .sub {
  background-image: url("../img/nav_deco07.png");
}
@media screen and (min-width: 48em), print {
  .gnav_subnav {
    display: block !important;
    width: 100%;
    max-height: inherit;
    overflow-y: visible;
    padding: 2.5rem 0;
    position: static;
  }
  .gnav_subnav .gnav {
    width: 1200px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 5.8rem;
  }
  .gnav_subnav .gnav > li {
    position: relative;
  }
  .gnav_subnav .gnav > li::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 3rem;
    height: 4rem;
    left: -4.3rem;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("../img/nav_deco01.png");
  }
  .gnav_subnav .gnav > li:first-of-type::before {
    content: none;
  }
  .gnav_subnav .gnav > li:nth-of-type(7n - 6)::before {
    background-image: url("../img/nav_deco01.png");
  }
  .gnav_subnav .gnav > li:nth-of-type(7n - 5)::before {
    background-image: url("../img/nav_deco02.png");
  }
  .gnav_subnav .gnav > li:nth-of-type(7n - 4)::before {
    background-image: url("../img/nav_deco03.png");
  }
  .gnav_subnav .gnav > li:nth-of-type(7n - 3)::before {
    background-image: url("../img/nav_deco04.png");
  }
  .gnav_subnav .gnav > li:nth-of-type(7n - 2)::before {
    background-image: url("../img/nav_deco05.png");
  }
  .gnav_subnav .gnav > li:nth-of-type(7n - 1)::before {
    background-image: url("../img/nav_deco06.png");
  }
  .gnav_subnav .gnav > li:nth-of-type(7n)::before {
    background-image: url("../img/nav_deco07.png");
  }
  .gnav_subnav .gnav > li > a, .gnav_subnav .gnav > li .sub {
    display: block;
    text-align: center;
    font-size: 2rem;
    margin: 0;
    padding: 0;
    cursor: pointer;
    position: relative;
    background: none !important;
  }
  .gnav_subnav .gnav > li > a::after, .gnav_subnav .gnav > li .sub::after {
    content: none;
  }
  .gnav_subnav .gnav > li > a.close::after, .gnav_subnav .gnav > li .sub.close::after {
    content: none;
  }
  .gnav_subnav .gnav > li > a:hover, .gnav_subnav .gnav > li .sub:hover {
    color: var(--clr_green);
  }
  .gnav_subnav .gnav > li .subbox {
    width: auto;
    position: absolute;
    top: 4rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 52rem;
  }
  .gnav_subnav .gnav > li .subbox > .subnav > li a {
    font-size: 1.8rem;
    text-align: center;
    padding: 1.45rem 0.5rem;
    letter-spacing: 0.1rem;
  }
  .gnav_subnav .gnav > li .subbox > .subnav > li a:hover {
    color: var(--clr_green);
  }
  .gnav_subnav .gnav > li .subbox.-pc_col1 {
    width: 26rem;
  }
  .gnav_subnav .gnav > li .subbox.-pc_col1 > .subnav > li {
    width: 100%;
    border-bottom: 1px solid var(--clr_white);
  }
  .gnav_subnav .gnav > li .subbox.-pc_col1 > .subnav > li:nth-of-type(odd) {
    border-right: none;
  }
  .gnav_subnav .gnav > li .subbox.-pc_col1 > .subnav > li:last-of-type {
    border-bottom: none;
  }
  .gnav_subnav .gnav > li .subbox.-pc_col1 > .subnav > li:nth-last-child(2):nth-child(odd) {
    border-bottom: 1px solid var(--clr_white);
  }
}

.footer_bg {
  background: url("../img/overview_bg.webp") top center/230% auto repeat;
}
@media screen and (min-width: 48em), print {
  .footer_bg {
    background-size: 130rem auto;
    background-position: top left calc(50% - 35rem);
  }
}

.overview {
  padding: 3rem 0 2rem;
  font-size: 1.2rem;
  line-height: 1.6;
}
.overview .clinic_name {
  text-align: center;
  margin: 0 0 2rem;
}
.overview .clinic_name img {
  max-width: 90%;
  margin: auto;
}
.overview .gaiyo {
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 2rem;
}
.overview .gaiyo dt {
  width: 37%;
  padding: 0.4rem 0;
  border-radius: 50vh;
  background: var(--clr_green);
  color: var(--clr_white);
  text-align: center;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.overview .gaiyo dt:not(:last-of-type) {
  margin-bottom: 0.6rem;
}
.overview .gaiyo dd {
  width: 63%;
  padding: 0.4rem 0 0.4rem 1.2rem;
}
.overview .gaiyo dd:not(:last-of-type) {
  margin-bottom: 0.6rem;
}
.overview .gaiyo dd .tel {
  font-size: 120%;
}
.overview .tbl_box {
  margin: 1.4rem 0 1rem;
}
.overview .gmap {
  margin-top: 2rem;
  height: 100vw;
}
.overview .btn_map {
  display: inline-block;
}

@media screen and (min-width: 48em), print {
  .overview {
    padding: 12rem 0 5rem;
    font-size: 1.6rem;
  }
  .overview .clinic_name {
    margin: 0 0 4.5rem;
  }
  .overview .clinic_name img {
    max-width: 55rem;
  }
  .overview .overview_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 auto;
  }
  .overview .overview_flex .overviewL {
    width: 40.5%;
  }
  .overview .overview_flex .overviewR {
    width: 55.5%;
  }
  .overview .gaiyo {
    margin-bottom: 5rem;
  }
  .overview .gaiyo dt {
    width: 15.6rem;
    padding: 0.7rem;
  }
  .overview .gaiyo dt:not(:last-of-type) {
    margin-bottom: 0.6rem;
  }
  .overview .gaiyo dd {
    width: calc(100% - 15.6rem);
    padding: 0.7rem 2rem;
    letter-spacing: 0.1rem;
  }
  .overview .gaiyo dd:not(:last-of-type) {
    margin-bottom: 0.5rem;
  }
  .overview .tbl_box {
    margin: 1.5rem 0 1rem;
  }
  .overview .tbl_box .tbl_time tr th[scope=col]:first-child {
    width: 25%;
  }
  .overview .gmap {
    height: 100%;
    margin-top: 0;
  }
}
#tel_up {
  width: calc(100% - 1rem);
  height: 4.5rem;
  position: fixed;
  bottom: 0;
  right: 0.5rem;
  z-index: 10;
  font-size: 1rem;
  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 ul {
  width: calc(100% - 4.5rem);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  gap: 0.5rem;
}
#tel_up ul li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: calc(100% - 0.5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#tel_up ul li .tel, #tel_up ul li .rsv, #tel_up ul li .LINE {
  width: 100%;
  height: 100%;
  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;
  padding: 0;
  font-size: 1.2rem;
}
#tel_up ul li .tel::before {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
#tel_up ul li .rsv::before {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
#tel_up ul li.sp_n {
  display: none;
}
#tel_up #pageup {
  display: block;
  width: 4rem;
  height: 4rem;
  position: relative;
}
#tel_up #pageup::before {
  display: block;
  font-family: "fontello";
  content: "\f005";
  font-size: 1.8rem;
  width: 100%;
  height: 100%;
  background: var(--clr_gray_light02);
  position: absolute;
  top: 0rem;
  right: 0;
  border-radius: 7px;
  border: 2px solid var(--clr_gray_dark);
  display: -ms-grid;
  display: grid;
  place-items: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
#tel_up #pageup .clip {
  clip-path: inset(50%);
  color: transparent;
  font-size: 0;
}

@media screen and (min-width: 48em), print {
  #tel_up {
    width: auto;
    height: 7rem;
    bottom: 1rem;
    right: 1rem;
    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 ul {
    width: auto;
    gap: 1rem;
    margin-right: 1rem;
  }
  #tel_up ul li {
    min-width: inherit;
    width: 16.2rem;
    height: 100%;
  }
  #tel_up ul li .tel, #tel_up ul li .rsv, #tel_up ul li .LINE {
    font-size: 2rem;
  }
  #tel_up ul li .tel::before {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  #tel_up ul li .rsv::before {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  #tel_up ul li.sp_n {
    display: block;
    width: 23.7rem;
  }
  #tel_up ul li.sp_n .tel {
    font-size: 2.4rem;
    padding: 0 0.5rem;
  }
  #tel_up ul li.pc_n {
    display: none;
  }
  #tel_up #pageup {
    width: 7rem;
    height: 7rem;
  }
  #tel_up #pageup::before {
    font-size: 2.3rem;
  }
  #tel_up #pageup:hover {
    opacity: 1;
  }
  #tel_up #pageup:hover::before {
    background: var(--clr_olive);
    color: var(--clr_white);
  }
}
.footer {
  text-align: center;
  padding: 0 0 4.5rem;
}
.footer .lnk_privacy {
  font-size: 1.1rem;
}
.footer .copy {
  display: block;
  padding: 0 1rem 1rem;
  font-size: 1.2rem;
}
.footer ul {
  display: none;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 3rem 0 0;
  }
  .footer .lnk_privacy {
    font-size: 1.4rem;
  }
  .footer .lnk_privacy:hover {
    text-decoration: underline;
  }
  .footer .copy {
    padding: 0rem 1rem 8rem;
    font-size: 1.6rem;
  }
  .footer ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 75rem;
    margin: 0 auto 1.5rem;
    gap: 2.5rem 0;
  }
  .footer ul li {
    text-align: center;
    font-size: 1.6rem;
    padding: 0 0.9rem;
    letter-spacing: 0.05rem;
    line-height: 1;
    -webkit-text-size-adjust: none;
    position: relative;
  }
  .footer ul li::after {
    content: "|";
    position: absolute;
    right: -0.45rem;
    width: 1rem;
  }
  .footer ul li a {
    opacity: 1;
  }
  .footer ul li a:hover {
    text-decoration: underline;
  }
  .footer ul li.treatment {
    display: none;
  }
  .footer ul li.last-in-row::after {
    content: none;
  }
  .footer ul.subnav {
    margin-top: 2.5rem;
    margin-bottom: 5.5rem;
  }
}
.keyvsl {
  width: 100%;
  position: relative;
}
.keyvsl #keyvsl {
  width: calc(100% - 2rem);
  margin-inline: auto;
  height: 20rem;
  border-radius: 20px;
  overflow: hidden;
  visibility: hidden;
  border: 2px solid var(--clr_green_light03);
  -webkit-box-shadow: 5px 5px 0 var(--clr_green_light03);
          box-shadow: 5px 5px 0 var(--clr_green_light03);
}
.keyvsl #keyvsl .slick-list div img {
  height: 20rem !important;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.keyvsl #keyvsl .slick-dots {
  position: relative;
  z-index: 2;
  margin: -2rem auto;
}
.keyvsl #keyvsl .slick-dots li {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 0.4rem;
}
.keyvsl #keyvsl .slick-dots li button {
  background: var(--clr_white);
}
.keyvsl .catch_copy {
  background: url("../img/logo_mark.svg") bottom -2rem right 1.5rem/6rem auto no-repeat, var(--clr_green_light03);
  margin: 2.5rem 0 2rem;
  padding: 1.5rem 2.5rem;
}
.keyvsl .catch_copy .catch_copy_tit {
  color: var(--clr_green);
  text-shadow: 0 0 10px var(--clr_white), 0 0 10px var(--clr_white), 0 0 10px var(--clr_white), 0 0 10px var(--clr_white), var(--clr_white) 2px 0px 0px, var(--clr_white) 1.75517px 0.958851px 0px, var(--clr_white) 1.0806px 1.68294px 0px, var(--clr_white) 0.141474px 1.99499px 0px, var(--clr_white) -0.832294px 1.81859px 0px, var(--clr_white) -1.60229px 1.19694px 0px, var(--clr_white) -1.97998px 0.28224px 0px, var(--clr_white) -1.87291px -0.701566px 0px, var(--clr_white) -1.30729px -1.5136px 0px, var(--clr_white) -0.421592px -1.95506px 0px, var(--clr_white) 0.567324px -1.91785px 0px, var(--clr_white) 1.41734px -1.41108px 0px, var(--clr_white) 1.92034px -0.558831px 0px;
  font-size: 1.8rem;
  line-height: 1.5;
  margin: 0 auto 1rem;
  letter-spacing: 0.35rem;
  font-weight: 700;
}
.keyvsl .catch_copy .catch_copy_lst {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.6rem;
}
.keyvsl .catch_copy .catch_copy_lst > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.3rem;
  text-shadow: 0 0 7px var(--clr_white), 0 0 7px var(--clr_white), 0 0 7px var(--clr_white), 0 0 7px var(--clr_white), var(--clr_white) 2px 0px 0px, var(--clr_white) 1.75517px 0.958851px 0px, var(--clr_white) 1.0806px 1.68294px 0px, var(--clr_white) 0.141474px 1.99499px 0px, var(--clr_white) -0.832294px 1.81859px 0px, var(--clr_white) -1.60229px 1.19694px 0px, var(--clr_white) -1.97998px 0.28224px 0px, var(--clr_white) -1.87291px -0.701566px 0px, var(--clr_white) -1.30729px -1.5136px 0px, var(--clr_white) -0.421592px -1.95506px 0px, var(--clr_white) 0.567324px -1.91785px 0px, var(--clr_white) 1.41734px -1.41108px 0px, var(--clr_white) 1.92034px -0.558831px 0px;
}
.keyvsl .catch_copy .catch_copy_lst > li::before {
  font-size: 1.8rem;
  width: 1.5em;
  height: 1.5em;
  background: var(--clr_white);
  border-radius: 50%;
  color: var(--clr_green);
  display: -ms-grid;
  display: grid;
  place-items: center;
  margin-right: 0.7rem;
}
.keyvsl .catch_copy .catch_copy_lst > li.-acs::before {
  font-family: "fontello";
  content: "\e80c";
}
.keyvsl .catch_copy .catch_copy_lst > li.-dr::before {
  font-family: "fontello";
  content: "\e80d";
}
.keyvsl .catch_copy .catch_copy_lst > li.-rsv::before {
  font-family: "fontello";
  content: "\e80f";
}
.keyvsl .open_nairan {
  position: absolute;
  right: 0.5rem;
  top: 14rem;
}
.keyvsl .open_nairan li {
  text-align: center;
  line-height: 1.22;
  letter-spacing: 0.15rem;
  color: var(--clr_white);
  background: var(--clr_green_light04);
  font-size: 1.5rem;
  text-shadow: 1px 1px 3px var(--clr_green_dark03);
  border-radius: 50%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  aspect-ratio: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem;
}
.keyvsl .open_nairan li .txt_small {
  margin-bottom: 0.1rem;
}

@media screen and (min-width: 48em), print {
  .keyvsl #keyvsl {
    height: 60rem;
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
    border-width: 3px;
    -webkit-box-shadow: 10px 10px 0 var(--clr_green_light03);
            box-shadow: 10px 10px 0 var(--clr_green_light03);
  }
  .keyvsl #keyvsl .slick-list div img {
    height: 60rem !important;
  }
  .keyvsl #keyvsl .slick-dots {
    margin-top: -3.8rem;
  }
  .keyvsl #keyvsl .slick-dots li {
    width: 1.6rem;
    height: 1.6rem;
    margin: 0 1.2rem;
  }
  .keyvsl .catch_copy {
    width: 1200px;
    margin: 0 auto;
    position: absolute;
    inset: 0;
    background: none;
    padding: 5rem 12rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .keyvsl .catch_copy .catch_copy_tit {
    font-size: 3rem;
    margin: 0 0 2.5rem;
    letter-spacing: 0.6rem;
    line-height: 1.65;
  }
  .keyvsl .catch_copy .catch_copy_lst {
    gap: 1rem;
  }
  .keyvsl .catch_copy .catch_copy_lst > li {
    font-size: 2rem;
    letter-spacing: 0.1rem;
  }
  .keyvsl .catch_copy .catch_copy_lst > li::before {
    font-size: 3.6rem;
    width: 1.5em;
    height: 1.5em;
    margin-right: 1.3rem;
  }
  .keyvsl .open_nairan {
    width: 1200px;
    margin-inline: auto;
    top: auto;
    right: 5.5rem;
    left: 0;
    bottom: 2.5rem;
  }
  .keyvsl .open_nairan > li {
    margin: 0 0 0 auto;
    font-size: 3.4rem;
    padding: 3rem;
    line-height: 1.2;
  }
  .keyvsl .open_nairan > li .txt_small {
    font-size: 2rem;
  }
}
.rsv_timetbl .box {
  margin-bottom: 2rem;
}
.rsv_timetbl .box .rsv_txt {
  text-align: center;
  letter-spacing: 0.2rem;
  color: var(--clr_green);
  line-height: 1.5;
  font-size: 1.4rem;
  margin: 0.8rem 0 1.5rem;
}
.rsv_timetbl .box .btn_lst {
  margin: 1rem auto 1.8rem;
}
.rsv_timetbl .box .acs_add {
  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;
  margin-bottom: 1rem;
}
.rsv_timetbl .box .acs_add dt {
  width: 8.5rem;
  color: var(--clr_green);
  font-weight: 900;
  font-size: 1.4rem;
}
.rsv_timetbl .box .acs_add dt::before {
  font-weight: normal;
  font-size: 120%;
  line-height: 1;
  text-align: center;
  display: inline-block;
  width: 1.3em;
}
.rsv_timetbl .box .acs_add dt.acs::before {
  font-family: "fontello";
  content: "\e811";
}
.rsv_timetbl .box .acs_add dt.add::before {
  font-family: "fontello";
  content: "\e80e";
}
.rsv_timetbl .box .acs_add dt:not(:first-of-type) {
  margin-top: 1rem;
}
.rsv_timetbl .box .acs_add dd {
  padding-top: 0.5rem;
  width: calc(100% - 8.5rem);
  line-height: 1.4;
}
.rsv_timetbl .box .acs_add dd:not(:first-of-type) {
  margin-top: 1rem;
}
.rsv_timetbl .tbl_box {
  margin-top: 1.4rem;
}
@media screen and (min-width: 48em), print {
  .rsv_timetbl {
    margin: 6rem auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .rsv_timetbl > div {
    width: 47.5%;
  }
  .rsv_timetbl > div.box {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .rsv_timetbl > div.box .rsv_txt {
    letter-spacing: 0.1rem;
    line-height: 1.5;
    font-size: 1.7rem;
    margin: 0.8rem 0 1.5rem;
  }
  .rsv_timetbl > div.box .btn_lst {
    margin: 2.5rem auto;
  }
  .rsv_timetbl > div.box .acs_add {
    margin-bottom: 1rem;
  }
  .rsv_timetbl > div.box .acs_add dt {
    width: 11.5rem;
    font-size: 1.8rem;
  }
  .rsv_timetbl > div.box .acs_add dt::before {
    width: 1.3em;
  }
  .rsv_timetbl > div.box .acs_add dt:not(:first-of-type) {
    margin-top: 1rem;
  }
  .rsv_timetbl > div.box .acs_add dd {
    padding-top: 0.5rem;
    width: calc(100% - 11.5rem);
    letter-spacing: 0.1rem;
  }
  .rsv_timetbl > div.box .acs_add dd:not(:first-of-type) {
    margin-top: 1rem;
  }
  .rsv_timetbl > div .tbl_box {
    margin-top: 1.5rem;
  }
  .rsv_timetbl > div .tbl_box:first-of-type {
    margin-top: 0;
  }
}

.index_symptoms {
  overflow: hidden;
  padding: 3rem 0;
}
.index_symptoms .wrap {
  border-radius: 10px;
  background: var(--clr_blue_light);
  padding: 2rem;
  position: relative;
}
@media screen and (min-width: 48em), print {
  .index_symptoms .wrap {
    border-radius: 20px;
  }
}
.index_symptoms .wrap::before, .index_symptoms .wrap::after {
  position: absolute;
  content: "";
  display: block;
  pointer-events: none;
}
.index_symptoms .wrap::before {
  width: 7rem;
  aspect-ratio: 1;
  background: url("../img/index_symptoms_bgL.png") center center/contain no-repeat;
  top: -1.5rem;
  left: -3rem;
}
.index_symptoms .wrap::after {
  width: 11rem;
  aspect-ratio: 3/2;
  background: url("../img/index_symptoms_bgR.png") center center/contain no-repeat;
  bottom: -1rem;
  right: -2rem;
}
.index_symptoms .wrap > section {
  padding: 1.5rem 0;
  background: var(--clr_white);
  border-radius: 10px;
}
@media screen and (min-width: 48em), print {
  .index_symptoms .wrap > section {
    border-radius: 20px;
  }
}
.index_symptoms .wrap > section .lst_symptoms {
  margin: 0 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem;
}
.index_symptoms .wrap > section .lst_symptoms > li {
  font-size: 1.4rem;
  min-height: 6rem;
  line-height: 1.35;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  position: relative;
  letter-spacing: 0.05rem;
}
.index_symptoms .wrap > section .lst_symptoms > li > div {
  width: calc(100% - 7rem);
}
.index_symptoms .wrap > section .lst_symptoms > li::before {
  content: "";
  display: block;
  width: 5.5rem;
  height: 6rem;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 1.5rem;
}
.index_symptoms .wrap > section .lst_symptoms > li:nth-of-type(1)::before {
  background-image: url("../img/index_symptoms01.svg");
}
.index_symptoms .wrap > section .lst_symptoms > li:nth-of-type(2)::before {
  background-image: url("../img/index_symptoms02.svg");
}
.index_symptoms .wrap > section .lst_symptoms > li:nth-of-type(3)::before {
  background-image: url("../img/index_symptoms03.svg");
}
.index_symptoms .wrap > section .lst_symptoms > li:nth-of-type(4)::before {
  background-image: url("../img/index_symptoms04.svg");
}
.index_symptoms .wrap > section .lst_symptoms > li:nth-of-type(5)::before {
  background-image: url("../img/index_symptoms05.svg");
}
.index_symptoms .wrap > section .lst_symptoms > li:nth-of-type(6)::before {
  background-image: url("../img/index_symptoms06.svg");
}
.index_symptoms .wrap > section .lst_symptoms > li:nth-of-type(7)::before {
  background-image: url("../img/index_symptoms07.svg");
}
.index_symptoms .wrap > section .lst_symptoms > li:nth-of-type(8)::before {
  background-image: url("../img/index_symptoms08.svg");
}
.index_symptoms .wrap > section .lst_symptoms > li:nth-of-type(9)::before {
  background-image: url("../img/index_symptoms09.svg");
}
.index_symptoms .wrap > section .lst_symptoms > li:not(:first-of-type):after {
  content: "";
  display: block;
  width: 100%;
  height: 0.4rem;
  background: url("../img/index_symptoms_line_yoko.png") center center/auto 50% repeat-x;
  position: absolute;
  left: 0;
  top: -1.7rem;
}
@media screen and (min-width: 48em), print {
  .index_symptoms .wrap {
    margin: 3rem auto 11rem;
    padding: 10rem;
  }
  .index_symptoms .wrap::before {
    width: 23.664rem;
    aspect-ratio: 1;
    background: url("../img/index_symptoms_bgL.png") center center/contain no-repeat;
    top: 2.5rem;
    left: -9rem;
  }
  .index_symptoms .wrap::after {
    width: 29.571rem;
    bottom: 2rem;
    right: -5rem;
  }
  .index_symptoms .wrap > section {
    padding: 8.5rem 10rem 6rem;
  }
  .index_symptoms .wrap > section .lst_symptoms {
    gap: 4rem 0;
    margin: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
  }
  .index_symptoms .wrap > section .lst_symptoms::after {
    content: "";
    display: block;
    width: 0.4rem;
    height: 100%;
    background: url("../img/index_symptoms_line_tate.png") center center/0.4rem auto repeat-y;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .index_symptoms .wrap > section .lst_symptoms > li {
    width: 50%;
    min-height: 14rem;
    font-size: 2.4rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    letter-spacing: 0.1rem;
  }
  .index_symptoms .wrap > section .lst_symptoms > li > div {
    width: calc(100% - 13rem);
  }
  .index_symptoms .wrap > section .lst_symptoms > li::before {
    width: 10rem;
    height: 12rem;
  }
  .index_symptoms .wrap > section .lst_symptoms > li::after {
    background-size: auto 0.4rem;
  }
  .index_symptoms .wrap > section .lst_symptoms > li:nth-of-type(2)::after {
    content: none;
  }
  .index_symptoms .wrap > section .lst_symptoms > li:nth-of-type(odd) {
    padding-right: 4rem;
  }
  .index_symptoms .wrap > section .lst_symptoms > li:nth-of-type(even) {
    padding-left: 4rem;
  }
}

.treat {
  padding: 3rem 0;
  background: var(--clr_olive_light);
}
.treat .tit_02 {
  color: var(--clr_olive_dark);
}
.treat .tit_02::after {
  background: var(--clr_olive_light02);
}
.treat .subnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  margin-inline: 1rem;
}
.treat .subnav li {
  text-align: center;
  width: calc((100% - 2rem) / 3);
}
.treat .subnav li a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  font-size: 1.3rem;
  line-height: 1.2;
  color: var(--clr_green_dark02);
}
.treat .subnav li a::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid var(--clr_border);
  border-radius: 50%;
  margin-bottom: 0.4rem;
  background-position: center center;
  background-size: 50% auto;
  background-repeat: no-repeat;
  background-image: var(--bg-image);
  background-color: var(--clr_white);
  border: 1px solid var(--clr_border);
}
.treat .subnav li a::after {
  font-family: "fontello";
  content: "\32";
  margin-left: 0.4rem;
}
.treat .subnav li a.maladjustment::before {
  background-image: url("../img/icon_maladjustment.svg");
}
.treat .subnav li a.depression::before {
  background-image: url("../img/icon_depression.svg");
}
.treat .subnav li a.bipolar::before {
  background-image: url("../img/icon_bipolar.svg");
}
.treat .subnav li a.anxiety::before {
  background-image: url("../img/icon_anxiety.svg");
}
.treat .subnav li a.panic::before {
  background-image: url("../img/icon_panic.svg");
}
.treat .subnav li a.obsessive::before {
  background-image: url("../img/icon_obsessive.svg");
}
.treat .subnav li a.insomnia::before {
  background-image: url("../img/icon_insomnia.svg");
}
.treat .subnav li a.dementia::before {
  background-image: url("../img/icon_dementia.svg");
}
.treat .subnav li a.adhd::before {
  background-image: url("../img/icon_adhd.svg");
}
.treat .subnav li a.asd::before {
  background-image: url("../img/icon_asd.svg");
}
.treat .subnav li a.schizophrenia::before {
  background-image: url("../img/icon_schizophrenia.svg");
}
.treat .subnav li a.medical-leave::before {
  background-image: url("../img/icon_medical-leave.svg");
}
.treat .subnav li a.skin::before {
  background-image: url("../img/icon_skin.svg");
}

@media screen and (min-width: 48em), print {
  .treat {
    padding: 10rem 0 12.5rem;
  }
  .treat .subnav {
    width: calc(1200px - 10rem);
    margin: 7rem auto 0;
    gap: 3rem 5rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .treat .subnav li {
    width: 18rem;
  }
  .treat .subnav li a {
    font-size: 1.8rem;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .treat .subnav li a::before {
    margin-bottom: 1rem;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .treat .subnav li a:hover {
    opacity: 1;
    color: var(--clr_green);
    border-color: var(--clr_green_light03);
  }
  .treat .subnav li a:hover::before {
    -webkit-box-shadow: inset 0 0 5px 5px var(--clr_green_light03);
            box-shadow: inset 0 0 5px 5px var(--clr_green_light03);
  }
}
.feature {
  padding: 3rem 0 2rem;
  background: url("../img/index_feature_deco01.png") top 6rem left -0.5rem/3rem auto no-repeat, url("../img/index_feature_deco02.png") top 36rem right -1.5rem/5rem auto no-repeat, url("../img/index_feature_deco03.png") top 57rem left 0.5rem/5rem auto no-repeat, url("../img/index_feature_deco04.png") top 93rem right -0.5rem/3rem auto no-repeat, url("../img/index_feature_deco05.png") top 129rem left -1.5rem/10rem auto no-repeat, url("../img/index_feature_deco06.png") top 160rem right -1.5rem/8rem auto no-repeat;
}
.feature .feature_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.7rem;
}
.feature .feature_flex > section {
  width: calc(100% - 2.3rem);
  padding: 1.5rem;
  border-radius: 10px;
  position: relative;
  z-index: 0;
  margin: 10rem 0.7rem 0 auto;
}
@media screen and (min-width: 48em), print {
  .feature .feature_flex > section {
    border-radius: 20px;
  }
}
.feature .feature_flex > section .top_tit03 {
  color: var(--clr_green);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  line-height: 1.4;
  letter-spacing: 0.04rem;
}
.feature .feature_flex > section p {
  margin: 0;
  line-height: 1.5;
  letter-spacing: 0.02rem;
}
.feature .feature_flex > section::before, .feature .feature_flex > section::after {
  content: "";
  display: block;
  width: 100%;
  border-radius: 10px;
  position: absolute;
  z-index: -1;
}
@media screen and (min-width: 48em), print {
  .feature .feature_flex > section::before, .feature .feature_flex > section::after {
    border-radius: 20px;
  }
}
.feature .feature_flex > section::after {
  height: 100%;
  top: 0;
  left: 0;
  background: var(--clr_blue_light);
  border: 2px solid var(--clr_green_light03);
  -webkit-box-shadow: 0 0 0 3px var(--clr_blue_light), 4px 4px 0 4px var(--clr_green_light03);
          box-shadow: 0 0 0 3px var(--clr_blue_light), 4px 4px 0 4px var(--clr_green_light03);
}
.feature .feature_flex > section::before {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  aspect-ratio: 45/28;
  left: -1.3rem;
  top: -10rem;
}
.feature .feature_flex > section:nth-of-type(1)::before {
  background-image: url("../img/index_feature01.webp");
}
.feature .feature_flex > section:nth-of-type(2)::before {
  background-image: url("../img/index_feature02.webp");
}
.feature .feature_flex > section:nth-of-type(3)::before {
  background-image: url("../img/index_feature03.webp");
}
.feature .feature_flex > section:nth-of-type(4)::before {
  background-image: url("../img/index_feature04.webp");
}
.feature .feature_flex > section:nth-of-type(5)::before {
  background-image: url("../img/index_feature05.webp");
}
.feature .feature_flex > section:nth-of-type(6)::before {
  background-image: url("../img/index_feature06.webp");
}
.feature .feature_flex > section:nth-of-type(7)::before {
  background-image: url("../img/index_feature07.webp");
}
.feature .feature_flex > section:nth-of-type(8)::before {
  background-image: url("../img/index_feature08.webp");
}
.feature .feature_flex > section:nth-of-type(9)::before {
  background-image: url("../img/index_feature09.webp");
}
@media screen and (min-width: 48em), print {
  .feature {
    padding: 13rem 0 7rem;
    background: url("../img/index_feature_deco01.png") top 28.5rem left calc(50% - 87.5rem)/8.172rem auto no-repeat, url("../img/index_feature_deco02.png") top 45rem right calc(50% - 87.5rem)/11.662rem auto no-repeat, url("../img/index_feature_deco03.png") top 75rem left calc(50% - 71rem)/14.363rem auto no-repeat, url("../img/index_feature_deco04.png") top 97rem right calc(50% - 77.5rem)/9.216rem auto no-repeat, url("../img/index_feature_deco05.png") top 120rem left calc(50% - 81rem)/23.507rem auto no-repeat, url("../img/index_feature_deco06.png") top 150rem right calc(50% - 77rem)/22.807rem auto no-repeat;
  }
  .feature .feature_flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 5.5rem 8rem;
  }
  .feature .feature_flex > section {
    width: 45rem;
    padding: 3rem;
    margin: 17.5rem 0 0 11rem;
  }
  .feature .feature_flex > section .top_tit03 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: 0.15rem;
  }
  .feature .feature_flex > section p {
    line-height: 1.35;
    letter-spacing: 0.08rem;
  }
  .feature .feature_flex > section::before, .feature .feature_flex > section::after {
    content: "";
    display: block;
    width: 100%;
    border-radius: 10px;
    position: absolute;
    z-index: -1;
  }
}
@media screen and (min-width: 48em) and (min-width: 48em), print {
  .feature .feature_flex > section::before, .feature .feature_flex > section::after {
    border-radius: 20px;
  }
}
@media screen and (min-width: 48em), print {
  .feature .feature_flex > section::before {
    left: -11rem;
    top: -18rem;
  }
}

.target_age .wrap {
  margin: 1.5rem 0 3rem;
  padding: 3rem 2.5rem;
  background: url("../img/index_target_bg.png") bottom center/auto 80% no-repeat, var(--clr_olive_light);
}
.target_age .wrap .target_tit {
  border-radius: 10px;
  color: var(--clr_olive_dark);
  font-size: 1.7rem;
  text-align: center;
  line-height: 1.4;
  padding: 3rem 0;
  margin-bottom: 2rem;
  background: url("../img/index_target_tit_top.png") top 1rem left/auto 0.9rem repeat-x, url("../img/index_target_tit_bottom.png") bottom 1rem left/auto 0.9rem repeat-x, var(--clr_white);
}
@media screen and (min-width: 48em), print {
  .target_age .wrap .target_tit {
    border-radius: 20px;
  }
}
.target_age .wrap .target_dl dt {
  font-weight: 700;
  color: var(--clr_green);
  font-size: 1.6rem;
}
.target_age .wrap .target_dl dt.-skin {
  color: var(--clr_olive_dark02);
}
.target_age .wrap .target_dl dd {
  line-height: 1.5;
}
.target_age .wrap .target_dl dd:not(:last-of-type) {
  margin-bottom: 2rem;
}
@media screen and (min-width: 48em), print {
  .target_age {
    overflow: hidden;
  }
  .target_age .wrap {
    margin: 3.5rem auto;
    padding: 4.5rem 8rem;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-size: 100% auto;
    position: relative;
  }
}
@media screen and (min-width: 48em) and (min-width: 48em), print {
  .target_age .wrap {
    border-radius: 20px;
  }
}
@media screen and (min-width: 48em), print {
  .target_age .wrap::before, .target_age .wrap::after {
    content: "";
    display: block;
    pointer-events: none;
    position: absolute;
  }
  .target_age .wrap::before {
    width: 13.7rem;
    height: 23.6rem;
    background: url("../img/index_target_deco01.png") center center/contain no-repeat;
    top: -3.5rem;
    left: -29rem;
  }
  .target_age .wrap::after {
    width: 9.528rem;
    height: 6.701rem;
    background: url("../img/index_target_deco02.png") center center/contain no-repeat;
    top: -3.5rem;
    right: -37rem;
  }
  .target_age .wrap .target_tit {
    width: 21.9rem;
    font-size: 3rem;
    margin-bottom: 0;
    letter-spacing: 0.15rem;
    display: -ms-grid;
    display: grid;
    place-items: center;
    background: url("../img/index_target_tit_top.png") top 2rem left/auto 1.3rem repeat-x, url("../img/index_target_tit_bottom.png") bottom 2rem left/auto 1.3rem repeat-x, var(--clr_white);
  }
  .target_age .wrap .target_content {
    margin-left: 8rem;
  }
  .target_age .wrap .target_content .target_dl dt {
    font-size: 2.4rem;
    letter-spacing: 0.1rem;
  }
  .target_age .wrap .target_content .target_dl dd {
    letter-spacing: 0.1rem;
    line-height: 1.4;
  }
  .target_age .wrap .target_content .target_dl dd:not(:last-of-type) {
    margin-bottom: 4rem;
  }
}

.greeting {
  margin: 3rem 1.5rem 2rem;
  padding: 1.8rem;
  background: url("../img/index_greeting_bg.webp") top -3.1rem center/100% auto repeat-y;
}
.greeting > section {
  background: url("../img/index_greeting_bg02.png") top center/calc(100% - 0.2rem) calc(100% - 0.1rem) no-repeat;
  padding: 2rem;
}
.greeting > section .dr_name {
  text-align: right;
  font-size: 1.25rem;
}
.greeting > section .dr_name span {
  display: block;
}
@media screen and (min-width: 48em), print {
  .greeting {
    width: 96.279rem;
    margin: 6.5rem auto 9rem;
    padding: 12.5rem;
    background-position: top -10rem center;
    background-repeat: repeat;
  }
  .greeting > section {
    padding: 8rem 10rem 5rem;
  }
  .greeting > section .tit_02 {
    margin-bottom: 4rem;
  }
  .greeting > section p {
    line-height: 1.9;
    letter-spacing: 0.1rem;
  }
  .greeting > section .dr_name {
    font-size: 1.8rem;
    margin-top: 4rem;
    margin-bottom: 1rem;
  }
  .greeting > section .dr_name span {
    display: inline-block;
  }
}

.info {
  padding: 3rem 0 5rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1rem, var(--clr_white)), color-stop(1rem, var(--clr_green_light03)), color-stop(var(--clr_green_light03)), to(var(--clr_white)));
  background: linear-gradient(to bottom, var(--clr_white) 1rem, var(--clr_green_light03) 1rem, var(--clr_green_light03) calc(100% - 2rem), var(--clr_white) calc(100% - 2rem));
  position: relative;
  z-index: 0;
}
.info::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  background: url("../img/index_info_bgR.png") top left -5rem/70% auto no-repeat, url("../img/index_info_bgL.png") bottom right -7rem/70% auto no-repeat;
  pointer-events: none;
}
.info .info_tit {
  color: var(--clr_white);
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
}
.info .info_tit::before {
  content: attr(data-ruby);
  display: block;
  font-size: 4rem;
  line-height: 1.1;
}
.info .info_dl {
  line-height: 1.4;
  background: var(--clr_white);
  border-radius: 10px;
  padding: 1.5rem;
}
@media screen and (min-width: 48em), print {
  .info .info_dl {
    border-radius: 20px;
  }
}
.info .info_dl:not(:last-of-type) {
  margin-bottom: 1.5rem;
}
.info .info_dl dt {
  font-weight: 700;
  color: var(--clr_green);
  cursor: pointer;
  font-size: 1.6rem;
  position: relative;
  padding-right: 3rem;
}
.info .info_dl dt::after {
  width: 2.5rem;
  height: 2.5rem;
  font-family: "fontello";
  content: "\e812";
  font-weight: normal;
  background: var(--clr_green);
  color: var(--clr_white);
  border-radius: 50%;
  display: -ms-grid;
  display: grid;
  place-items: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  font-size: 85%;
  font-weight: normal;
}
.info .info_dl dt.open::after {
  font-family: "fontello";
  content: "\e813";
}
.info .info_dl dd {
  word-wrap: break-word;
  margin-top: 1rem;
}
.info .info_dl dd a {
  text-decoration: underline;
  color: var(--clr_olive_dark);
}
.info .info_dl dd a:hover {
  opacity: 1;
  text-decoration: none;
}
.info .info_dl:not(:nth-of-type(-n+3)) dd {
  display: none;
}

@media screen and (min-width: 48em), print {
  .info {
    padding: 8rem 0 12rem;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(2.5rem, var(--clr_white)), color-stop(2.5rem, var(--clr_green_light03)), color-stop(var(--clr_green_light03)), to(var(--clr_white)));
    background: linear-gradient(to bottom, var(--clr_white) 2.5rem, var(--clr_green_light03) 2.5rem, var(--clr_green_light03) calc(100% - 5rem), var(--clr_white) calc(100% - 5rem));
  }
  .info::after {
    background: url("../img/index_info_bgR.png") top left calc(50% - 67rem)/57.89rem auto no-repeat, url("../img/index_info_bgL.png") bottom right calc(50% - 72rem)/63.503rem auto no-repeat;
    pointer-events: none;
  }
  .info .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .info .wrap .info_tit {
    font-size: 3rem;
    margin: 11rem 0 0rem;
    text-align: left;
    letter-spacing: 0.15rem;
  }
  .info .wrap .info_tit::before {
    font-size: 8rem;
    line-height: 1.1;
    letter-spacing: 0.3rem;
  }
  .info .wrap > .info_content {
    min-height: 27rem;
  }
  .info .wrap > .info_content .info_dl {
    width: 80rem;
    padding: 2rem 3rem;
  }
  .info .wrap > .info_content .info_dl dt {
    font-size: 2.4rem;
    color: var(--clr_green);
    padding-right: 5rem;
  }
  .info .wrap > .info_content .info_dl dt::after {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.index_merit {
  padding: 1rem 0 3.5rem;
  background: url("../img/index_merit_bg.webp") bottom -1rem left calc(50% - 1rem)/450% auto no-repeat;
}
.index_merit .lst_merit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
}
.index_merit .lst_merit > li {
  width: calc((100% - 1.5rem) / 2);
}
.index_merit .lst_merit > li > span {
  width: 100%;
  border-radius: 50%;
  aspect-ratio: 1;
  display: -ms-grid;
  display: grid;
  place-items: center;
  color: var(--clr_white);
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0.05rem;
  line-height: 1.4;
  -webkit-box-shadow: 5px 5px 0 rgba(var(--rgb_shadow), 0.16);
          box-shadow: 5px 5px 0 rgba(var(--rgb_shadow), 0.16);
  border: 1px solid var(--clr_white);
}
.index_merit .lst_merit > li:nth-of-type(5n - 4) span {
  background: rgba(var(--rgb_green_light), 0.8);
}
.index_merit .lst_merit > li:nth-of-type(5n - 3) span {
  background: rgba(var(--rgb_beige), 0.8);
}
.index_merit .lst_merit > li:nth-of-type(5n - 2) span {
  background: rgba(var(--rgb_blue), 0.8);
}
.index_merit .lst_merit > li:nth-of-type(5n - 1) span {
  background: rgba(var(--rgb_yellowgreen), 0.8);
}
.index_merit .lst_merit > li:nth-of-type(5n) span {
  background: rgba(var(--rgb_pink), 0.8);
}
.index_merit .lst_merit:has(li:nth-child(odd):last-child) > li:first-child {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: -1.5rem;
}
.index_merit .lst_merit:has(li:nth-child(odd):last-child) > li:first-child > span {
  width: calc((100% - 1.5rem) / 2);
}
@media screen and (min-width: 48em), print {
  .index_merit {
    padding: 7rem 0 21rem;
    background-position: center bottom;
    background-size: 200rem auto;
  }
  .index_merit .lst_merit {
    gap: 3rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    width: 107.1rem;
    padding-top: 29rem;
    margin-inline: auto;
  }
  .index_merit .lst_merit > li {
    width: 21.5rem;
  }
  .index_merit .lst_merit > li > span {
    font-size: 2.4rem;
    letter-spacing: 0.05rem;
    line-height: 1.4;
  }
  .index_merit .lst_merit > li:nth-of-type(1), .index_merit .lst_merit > li:nth-of-type(2), .index_merit .lst_merit > li:nth-of-type(3) {
    position: absolute;
  }
  .index_merit .lst_merit > li:nth-of-type(1) {
    top: -1rem;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .index_merit .lst_merit > li:nth-of-type(2) {
    top: 8rem;
    left: 16rem;
  }
  .index_merit .lst_merit > li:nth-of-type(3) {
    top: 8rem;
    right: 16rem;
  }
  .index_merit .lst_merit:has(li:nth-child(odd):last-child) > li:first-child {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: block;
    margin-bottom: inherit;
  }
  .index_merit .lst_merit:has(li:nth-child(odd):last-child) > li:first-child > span {
    width: 21.5rem;
  }
}

body:not(.index) .main {
  margin: 0 1rem 6rem;
}
body:not(.index) .main a:not([class*=btn], [href*="tel:"], [class*=rsv]) {
  text-decoration: underline;
  color: var(--clr_olive_dark);
}
body:not(.index) .main a:not([class*=btn], [href*="tel:"], [class*=rsv]):hover {
  opacity: 1;
  text-decoration: none;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main {
    width: calc(1200px - 10rem);
    margin: 0 auto 8rem;
  }
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.1rem;
  margin: 0 1rem 3rem;
  white-space: nowrap;
  overflow-x: scroll;
}
.breadcrumb li:not(:first-child)::before {
  display: inline-block;
  content: ">";
  margin: 0 0.4rem;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.breadcrumb li br {
  display: none;
}

@media screen and (min-width: 48em), print {
  .breadcrumb {
    font-size: 1.4rem;
    width: calc(1200px - 10rem);
    margin: 0 auto 9.5rem;
    white-space: inherit;
    overflow-x: inherit;
  }
  .breadcrumb li:not(:first-child)::before {
    margin: 0 0.8rem;
  }
  .breadcrumb li a:hover {
    text-decoration: underline !important;
  }
}
.doctor .dr_message {
  letter-spacing: 0.06rem;
  line-height: 1.7;
}
.doctor .dr_message .dr_name {
  text-align: right;
  line-height: 1.45;
}
.doctor .dr02_name {
  margin: -1rem auto 2rem;
  font-size: 1.7rem;
  text-align: center;
}
@media screen and (min-width: 48em), print {
  .doctor .dr_message {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    letter-spacing: 0.12rem;
    margin-inline: auto;
    padding: 5rem;
    line-height: 1.9;
  }
  .doctor .dr_message .dr_name {
    line-height: 1.55;
  }
  .doctor .dr02_name {
    margin: -3rem auto 4rem;
    font-size: 2.6rem;
  }
}

.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}
.gallery > li {
  width: 100%;
}
.gallery > li .gallery_tit {
  font-weight: 700;
  font-size: 120%;
  margin: 0 0.5rem 0.5rem;
}
.gallery > li img {
  margin: 0 auto 0.6rem;
  border-radius: 10px;
}
@media screen and (min-width: 48em), print {
  .gallery > li img {
    border-radius: 20px;
  }
}
@media screen and (min-width: 48em), print {
  .gallery {
    gap: 2rem 4rem;
  }
  .gallery > li {
    width: calc((100% - 4rem) / 2);
  }
}

.access .main .low_timetable .tbl_box:not(:first-of-type) {
  margin-top: 2rem;
}
.access .main .gmap {
  height: 30rem;
  margin: 2rem 0;
}
@media screen and (min-width: 48em), print {
  .access .main .low_timetable .tbl_box:not(:first-of-type) {
    margin-top: 4rem;
  }
  .access .main .low_timetable .tbl_tit {
    font-size: 2rem;
  }
  .access .main .low_timetable .tbl_time {
    font-size: 1.8rem;
  }
  .access .main .low_timetable .tbl_time tr th[scope=col] {
    padding: 1.4rem 0;
  }
  .access .main .low_timetable .tbl_time tr th[scope=col]:first-child {
    width: 25%;
  }
  .access .main .low_timetable .tbl_time tr th[scope=col]:last-child {
    width: auto;
    padding-right: auto;
  }
  .access .main .low_timetable .tbl_time tr td {
    padding: 2.2rem 0;
  }
  .access .main .low_timetable .tbl_time tr td:last-child {
    width: auto;
    padding-right: auto;
  }
  .access .main .gmap {
    margin: 4rem 0 0;
    height: 50rem;
  }
}
/*# sourceMappingURL=style.css.map */