@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;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

body {
  word-wrap: break-word;
}

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

h5, h6 {
  margin: 0;
}

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

p {
  margin: 1em 0;
}

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

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

:root {
  --clr_txt: #462A26;
  --main1: #9559A0;
  --sub1: #7E665B;
  --sub2:#2E2624;
  --sub3:#D70D18;
  --sub4:#CAABCF;
  --sub5:#A1908E;
  --sub6:#C7BAB4;
  --sub7:#DAC2DF;
  --sub8:#C299C9;
  --sub9:#eee;
  --sub10:#2E2624;
  --sub11:#D5BDB2;
  --sub12:#F5EBF6;
  --sub13:#B4A6A0;
  --sub14:#916E69;
  --sub15:#B380BC;
  --bg1: #E7D4E9;
  --bg2:#F6EAF8;
  --bg3:#F3E7E6;
  --line1: #916E69;
  --line_table: #DCDCDC;
  --line_menu: #DCDCDC;
  --lcolor: #9559A0;
  --lcolor_h: #916E69;
  --notes:#D70D18;
  --pcolor: #ffff66;
}

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

.txt_u {
  text-decoration: underline;
}

.bold {
  font-weight: bold;
}

.txt_large {
  font-size: 120%;
}

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

.txt_main {
  color: var(--main1);
}

.txt_small {
  font-size: 80%;
}

i, b {
  font-weight: normal;
  font-style: normal;
}

.w100 {
  width: 100% !important;
}

.img_c {
  margin: 1rem auto;
}

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

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

@media screen and (min-width: 48em), print {
  .img_l {
    float: left;
    padding: 0 3rem 2rem 0;
    margin: 0;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    position: relative;
    z-index: 1;
  }
  .img_r {
    float: right;
    margin: 0;
    padding: 0 0 2rem 3rem;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    position: relative;
    z-index: 1;
  }
  img.tate {
    max-width: 25% !important;
  }
}
.sp_n {
  display: none;
}

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

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

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

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

.mt1em {
  margin-top: 1em !important;
}

.mb1em {
  margin-bottom: 1em !important;
}

.main:where(section ~ section) {
  margin-top: 5rem;
}
.main > section {
  margin-top: 5rem;
}
.main > section:where(section ~ section) {
  margin-top: 5rem;
}
.main > section > section {
  margin-top: 4rem;
}
.main > section > section:where(section ~ section) {
  margin-top: 4rem;
}
.main > section > section > section {
  margin-top: 3rem;
}
.main > section > section > section:where(section ~ section) {
  margin-top: 3rem;
}
.main > section > section > section > section {
  margin-top: 3rem;
}
.main > section > section > section > section:where(section ~ section) {
  margin-top: 3rem;
}

@media screen and (min-width: 48em), print {
  .mt40 {
    margin-top: 8rem !important;
  }
  .mt30 {
    margin-top: 6rem !important;
  }
  .mt20 {
    margin-top: 4rem !important;
  }
  .mt10 {
    margin-top: 2rem !important;
  }
  .main:where(section ~ section) {
    margin-top: 10rem;
  }
  .main > section {
    margin-top: 10rem;
  }
  .main > section:where(section ~ section) {
    margin-top: 8rem;
  }
  .main > section > section {
    margin-top: 6rem;
  }
  .main > section > section:where(section ~ section) {
    margin-top: 6rem;
  }
  .main > section > section > section {
    margin-top: 4rem;
  }
  .main > section > section > section:where(section ~ section) {
    margin-top: 4rem;
  }
  .main > section > section > section > section {
    margin-top: 3rem;
  }
  .main > section > section > section > section:where(section ~ section) {
    margin-top: 3rem;
  }
}
.tbl_time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.tbl_time .close {
  color: var(--sub3);
}
.tbl_time dt {
  margin-top: 1rem;
  font-weight: bold;
}
.tbl_time dt.tit {
  width: 100%;
  color: var(--main1);
  font-weight: bold;
}
@media screen and (min-width: 48em), print {
  .tbl_time {
    table-layout: fixed;
    font-size: 1.8rem;
  }
  .tbl_time caption {
    font-size: 100%;
    margin-top: 1.5rem;
  }
  .tbl_time caption span {
    padding: 0 1em;
    margin-right: 1em;
  }
  .tbl_time tr th[scope=col] {
    padding: 1rem 0;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 30%;
  }
  .tbl_time tr td {
    padding: 2rem 0;
  }
}
.table_0 {
  width: 100%;
  background: #fff;
  border-collapse: collapse;
}
.table_0:not(:first-child) {
  margin-top: 2rem;
}
.table_0:not(:last-child) {
  margin-bottom: 2rem;
}
.table_0 .lst_ul li {
  margin: 0;
}
.table_0 .lst_ul li:not(:last-child) {
  margin: 0;
}
.table_0 caption {
  caption-side: bottom;
  text-align: left;
  margin-top: 0.5rem;
  font-size: 90%;
}
.table_0:not(:last-child) {
  margin-bottom: 2rem;
}
.table_0 th, .table_0 td {
  border: 1px solid var(--main1);
  padding: 0.5rem;
  font-weight: normal;
}
.table_0 th[scope=col] {
  background: var(--main1);
  color: #fff;
}
.table_0 th[scope=col]:not(:last-child) {
  border-right-color: #fff;
}
.table_0 th[scope=row] {
  background: var(--bg1);
}
.table_0.table_1 th, .table_0.table_1 td {
  border-color: var(--sub14);
}
.table_0.table_1 th[scope=col] {
  background: var(--sub14);
}
.table_0.table_1 th[scope=col]:not(:last-child) {
  border-right-color: #fff;
}
.table_0.table_1 th[scope=row] {
  background: var(--bg3);
}
.table_0.table_2 tr:nth-child(2n) th, .table_0.table_2 tr:nth-child(2n) td {
  background: var(--bg2);
}
.table_0.table_2 th[scope=row] {
  background: #fff;
}
.table_0.price th[scope=row] {
  width: 50%;
}
.table_0.price td:last-child {
  text-align: right;
}

@media screen and (min-width: 48em), print {
  .table_0:not(:first-child) {
    margin-top: 2rem;
  }
  .table_0:not(:last-child) {
    margin-bottom: 2rem;
  }
  .table_0 th, .table_0 td {
    padding: 1rem 1.5rem;
  }
  .table_0.price td {
    text-align: center;
  }
}
.scroll-hint {
  width: 100%;
  table-layout: inherit;
  white-space: inherit;
  -webkit-overflow-scrolling: touch; /* スマホでなめらかスクロール */
  overflow-x: scroll; /* 横スクロール処理 */
  white-space: nowrap; /* 自動改行させない */
}

@media screen and (min-width: 48em), print {
  .scroll-hint {
    overflow-x: auto; /* 横スクロール処理 */
    white-space: inherit; /* 自動改行させない */
  }
}
.gmap {
  width: 100%;
}

.tit_01 {
  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;
  min-height: 10rem;
  background: url(../img/tit_01.jpg) no-repeat center center/auto 100%;
  font-size: 2.2rem;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  padding: 1rem;
  text-align: center;
}

.tit_02 {
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  margin: 0 auto 2rem;
  color: var(--main1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: normal;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  line-height: 1;
  gap: 1rem;
}
.tit_02::before {
  font-family: "fontello";
  content: "\e814";
  font-size: 130%;
}
.tit_02::after {
  content: "";
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-bottom: 1px solid;
  margin-bottom: 0.5rem;
}
.tit_02.right::after {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.tit_03 {
  font-size: 1.8rem;
  line-height: 1.4;
  margin: 0 0 2rem;
  background: var(--bg1);
  font-weight: normal;
  padding: 0.5rem 1rem 0.5rem 2rem;
  border-radius: 0.5rem;
  position: relative;
}
.tit_03::before {
  font-family: "fontello";
  content: "\f111";
  color: var(--sub15);
  font-size: 40%;
  position: absolute;
  left: 0.8rem;
  top: 1.2rem;
}

.tit_04 {
  font-size: 1.6rem;
  line-height: 1.4;
  margin: 0 0 1rem;
  padding: 0 0 0.5rem 2rem;
  border-bottom: 1px solid var(--sub13);
  font-weight: normal;
  position: relative;
}
.tit_04::before {
  font-family: "fontello";
  content: "\f111";
  color: var(--sub13);
  font-size: 35%;
  position: absolute;
  left: 0.8rem;
  top: 0.6rem;
}

.tit_05 {
  font-size: 1.6rem;
  line-height: 1.4;
  margin: 0 0 1rem;
  padding: 0 0 0.5rem 2rem;
  border-bottom: 1px dashed var(--sub13);
  font-weight: normal;
  position: relative;
}
.tit_05::before {
  font-family: "fontello";
  content: "\f111";
  color: var(--sub13);
  font-size: 25%;
  position: absolute;
  left: 0.8rem;
  top: 1rem;
}

.tit_06 {
  font-size: 1.4rem;
  line-height: 1.4;
  margin: 0 0 1rem;
  color: var(--main1);
  background: var(--bg1);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.3rem 0.5rem 0.2rem;
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    min-height: 19.6rem;
    background: url(../img/tit_01.jpg) no-repeat center center/auto;
    font-size: 3rem;
  }
  .tit_02 {
    font-size: 3rem;
    margin: 0 auto 4rem;
    gap: 0;
  }
  .tit_02::before {
    font-size: 5.5rem;
    margin-right: 2.3rem;
  }
  .tit_02::after {
    margin-bottom: 0;
    margin-left: 5.7rem;
  }
  .tit_02.right::after {
    margin-left: 0;
    margin-right: 5.7rem;
  }
  .tit_03 {
    font-size: 2.6rem;
    margin: 0 0 3rem;
    padding: 0.6rem 2rem 0.5rem 4.2rem;
    border-radius: 0.4rem;
  }
  .tit_03::before {
    font-size: 1.2rem;
    top: 1.6rem;
    left: 2rem;
  }
  .tit_04 {
    font-size: 2.4rem;
    margin: 0 0 2rem;
    padding: 0 0 0.5rem 4.2rem;
  }
  .tit_04::before {
    font-size: 0.9rem;
    top: 1rem;
    left: 2rem;
  }
  .tit_05 {
    font-size: 2.2rem;
    margin: 0 0 2rem;
    padding: 0 0 0.5rem 4.2rem;
  }
  .tit_05::before {
    font-size: 0.5rem;
    top: 1.2rem;
    left: 2rem;
  }
  .tit_06 {
    font-size: 2rem;
    margin: 0 0 1rem;
  }
}
.lst_ul {
  line-height: 1.4;
  margin: 1rem 0;
}
.lst_ul > li {
  padding: 0 0 0 1.4em;
  position: relative;
}
.lst_ul > li:not(:last-child) {
  margin: 0 0 1rem;
}
.lst_ul > li::before {
  content: "●";
  color: var(--main1);
  position: absolute;
  left: 0;
}
.lst_ul.lst_ul_2 > li::before {
  color: var(--sub1);
}
.lst_ul.kome > li {
  padding-left: 1em;
}
.lst_ul.kome > li::before {
  content: "※";
  color: var(--clr_txt);
}
.lst_ul.notes {
  color: var(--notes);
}
.lst_ul.notes > li::before {
  color: var(--notes);
}
.lst_ul.check > li::before {
  font-family: "fontello";
  content: "\e808";
}
.lst_ul.square > li::before {
  content: "□";
  color: var(--main1);
  font-size: 50%;
  top: 0.8em;
  left: 0.8em;
}

.notes:where(:not(ul)) {
  color: var(--notes);
}

.kome:where(:not(ul)) {
  padding-left: 1em;
  position: relative;
}
.kome:where(:not(ul))::before {
  content: "※";
  position: absolute;
  left: 0;
}

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

.lst_ol {
  line-height: 1.4;
  counter-reset: number 0;
  margin: 1rem 0;
}
.lst_ol > li {
  counter-increment: number 1;
  padding: 0 0 0 1.8em;
  position: relative;
}
.lst_ol > li:not(:last-child) {
  margin: 0 0 1rem;
}
.lst_ol > li::before {
  display: inline-block;
  content: counter(number, decimal-leading-zero) ".";
  color: var(--main1);
  font-weight: bold;
  position: absolute;
  left: 0;
  width: 1.5em;
  text-align: right;
}
.lst_ol.lst_ol_circle > li::before {
  content: counter(number);
  width: 1.3em;
  aspect-ratio: 1/1;
  line-height: 0;
  padding-bottom: 0.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid;
  border-radius: 50%;
  font-size: 90%;
  top: 0.2em;
}
@media screen and (min-width: 48em), print {
  .lst_ol.lst_ol_circle > li::before {
    width: 2rem;
    padding-bottom: 0.3rem;
    font-size: 90%;
  }
}

.lst_dl01 dt {
  font-weight: bold;
  color: var(--main1);
}
.lst_dl01 dd {
  margin: 0 0 1rem;
}
.lst_dl01.lst_dl02 dt, .lst_dl01.lst_dl02 dd {
  padding: 0 0.5rem;
}
.lst_dl01.lst_dl02 dt {
  color: #fff;
  font-weight: normal;
  background: var(--main1);
}

.lst_dl03 {
  margin: 1rem 0;
}
.lst_dl03:last-child {
  margin-bottom: 0;
}
.lst_dl03 dt, .lst_dl03 dd {
  padding: 0.5rem 1rem;
}
.lst_dl03 dt {
  background: var(--main1);
  color: #fff;
}
.lst_dl03 dd {
  border: 1px solid var(--main1);
}

@media screen and (min-width: 48em), print {
  .lst_ul.lst_ul_col2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
  }
  .lst_ul.lst_ul_col2 > li {
    width: calc((100% - 1rem) / 2);
    margin-bottom: 0;
  }
  .lst_ul.lst_ul_col3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
  }
  .lst_ul.lst_ul_col3 > li {
    width: calc((100% - 2rem) / 3);
    margin-bottom: 0;
  }
  .lst_dl01 {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 6em 0 auto;
    grid-template-columns: 6em auto;
    gap: 0;
  }
  .lst_dl01 dd {
    padding: 0 0 0 1rem;
  }
  .lst_dl01.lst_dl02 {
    -ms-grid-columns: 25rem auto;
    grid-template-columns: 25rem auto;
  }
  .lst_dl01.lst_dl02 dt, .lst_dl01.lst_dl02 dd {
    margin-bottom: 1rem;
    padding: 0 1rem;
  }
  .lst_dl01.lst_dl02 dt {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0.5rem;
    letter-spacing: 0.1em;
  }
  .lst_dl01.lst_dl02 dd {
    padding: 0.5rem 0 0.5rem 3rem;
  }
  .lst_dl03 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 13em auto;
    grid-template-columns: 13em auto;
  }
  .lst_dl03 dt, .lst_dl03 dd {
    padding: 1rem 1.5rem;
  }
  .lst_dl03 dt {
    text-align: center;
  }
  .lst_dl03 dt:not(:last-of-type) {
    border-bottom: 1px solid #fff;
  }
  .lst_dl03 dd:not(:first-of-type) {
    border-top: none;
  }
}
.lst_dl_t dt {
  background: var(--main1);
  color: #fff;
  padding: 1rem;
  border: 1px solid var(--main1);
}
.lst_dl_t dd {
  border: 1px solid var(--main1);
  padding: 1rem;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 48em), print {
  .lst_dl_t.lst_dl_t_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .lst_dl_t.lst_dl_t_flex dt {
    width: 10em;
    margin-bottom: 0.5rem;
  }
  .lst_dl_t.lst_dl_t_flex dd {
    width: calc(100% - 10em);
  }
}

.lst_flex {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 1rem;
  margin-top: 1em;
}
.lst_flex li {
  width: 100%;
}
@media screen and (min-width: 48em), print {
  .lst_flex {
    gap: 1rem 3rem;
  }
  .lst_flex li {
    width: auto;
  }
}

.tit_no {
  counter-reset: number 0;
}
.tit_no section, .tit_no div {
  counter-increment: number 1;
}
.tit_no section .no::before, .tit_no div .no::before {
  content: counter(number) ".";
  margin-right: 0.5em;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 2rem;
}
.flex > li:not(:last-child) {
  margin: 0;
}

.flex2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem 0;
}
.flex2 > section, .flex2 > li, .flex2 > div {
  width: 100%;
}
.flex2.flex2_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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem 4rem;
}
.flex2.flex2_ul li {
  width: 100%;
}

.flex3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.flex3 > li {
  width: 46%;
}

@media screen and (min-width: 48em), print {
  .flex {
    gap: 1rem 5rem;
  }
  .flex2 {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 6rem 2rem;
  }
  .flex2 > section, .flex2 > li, .flex2 > div {
    width: 48%;
  }
  .flex2 > section:nth-child(-n+2), .flex2 > li:nth-child(-n+2), .flex2 > div:nth-child(-n+2) {
    margin-top: 0 !important;
  }
  .flex2.flex2_ul {
    gap: 3rem;
    margin-top: 1rem;
  }
  .flex2.flex2_ul li {
    width: auto;
  }
  .flex2.flex2_ul li .btn_detail {
    margin: 0;
  }
  .flex3 {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .flex3 li {
    width: 31%;
  }
  .flex3 li:not(:nth-child(3n)) {
    margin: 0 2rem 0 0;
  }
}
.js-tel {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 0 0.4rem;
}
.js-tel a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.box_ {
  padding: 1rem;
}
@media screen and (min-width: 48em), print {
  .box_ {
    padding: 3rem;
  }
}

.btn_rsv {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.4rem;
  background: var(--main1);
  color: #fff;
  border-radius: 1.5em;
  padding: 0.4rem 1.6rem;
}
.btn_rsv::before {
  font-family: "fontello";
  content: "\e805";
  margin-right: 0.4rem;
}
.btn_detail {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1rem auto;
  padding: 0.4rem 2rem;
  background: var(--lcolor);
  color: #fff;
  text-decoration: none !important;
  border-radius: 1.5em;
  -webkit-box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
}
.btn_detail::after {
  font-family: "fontello";
  content: "\e812";
  margin-left: 0.5rem;
}
@media screen and (min-width: 48em), print {
  .btn_detail {
    min-width: 33.6rem;
    text-align: center;
  }
  .btn_detail:is(:hover, :focus-visible) {
    background: var(--lcolor_h);
  }
}

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

.slick-arrow {
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 9rem;
  cursor: pointer;
  line-height: 0;
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--main1);
  z-index: 5;
}
.slick-arrow::before {
  font-size: 1.2rem;
}
.slick-arrow.slick-prev {
  left: -2.6rem;
}
.slick-arrow.slick-prev::before {
  font-family: "fontello";
  content: "\f007";
}
.slick-arrow.slick-next {
  right: -2.6rem;
}
.slick-arrow.slick-next::before {
  font-family: "fontello";
  content: "\f006";
}

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

@media screen and (min-width: 48em), print {
  .slick-dots {
    margin: 1.6rem auto;
  }
  .slick-dots li {
    width: 1.4rem;
    height: 1.4rem;
    margin: 0 0.6rem;
  }
}
.slide-items {
  width: 100%;
  height: 100%;
}
.slide-items img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, var(--pcolor)));
  background: linear-gradient(transparent 60%, var(--pcolor) 60%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

/* fadeIn */
.fadein {
  opacity: 0;
  -webkit-transition: 1.2s;
  transition: 1.2s;
}

.fade_left {
  -webkit-transform: translate(-80px, 0);
          transform: translate(-80px, 0);
}

.fade_right {
  -webkit-transform: translate(80px, 0);
          transform: translate(80px, 0);
}

.fade_up {
  -webkit-transform: translate(0, 80px);
          transform: translate(0, 80px);
}

.fade_scale {
  -webkit-transform: scale(0.5, 0.5);
          transform: scale(0.5, 0.5);
}

.fadein.parallax {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.txt_box {
  margin: 2rem 0;
  padding: 1rem;
}
.txt_box:last-child {
  margin-bottom: 0;
}
.txt_box.txt_box1 {
  background: var(--bg2);
}
.txt_box.txt_box2 {
  background: var(--bg3);
}

@media screen and (min-width: 48em), print {
  .txt_box {
    padding: 2.5rem 3rem;
  }
}
.nav_menu_box {
  margin-top: 4rem;
}
@media screen and (min-width: 48em), print {
  .nav_menu_box {
    margin-top: 10rem;
  }
}

.nav_menu {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
.nav_menu li {
  width: calc(100% - 1rem);
  text-align: center;
  margin-top: 0.5rem;
}
.nav_menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  background: var(--lcolor);
  color: #fff;
  border-radius: 3rem;
  padding: 0.5rem 2em;
  text-decoration: none !important;
  position: relative;
}
.nav_menu li a::after {
  font-family: "fontello";
  content: "\34";
  position: absolute;
  right: 1rem;
  letter-spacing: 0;
}
@media screen and (min-width: 48em), print {
  .nav_menu li {
    width: calc((100% - 1rem) / 2);
  }
  .nav_menu li a {
    height: 6rem;
  }
  .nav_menu li a:hover {
    background: var(--lcolor_h);
    color: #fff !important;
  }
  .nav_menu li a::after {
    right: 1em;
  }
}

.lt1 {
  padding-left: 1em;
  letter-spacing: 1em;
}

.phtxt_box {
  margin-bottom: 2rem;
}
.phtxt_box .ph {
  margin-bottom: 1rem;
}

@media screen and (min-width: 48em), print {
  .phtxt_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 4rem;
    gap: 4rem;
  }
  .phtxt_box .ph {
    width: 40rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .phtxt_box .txt {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .phtxt_box.phtxt_box_r .ph {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.point::before {
  content: "≫";
  margin-right: 0.5em;
}

.other::after {
  font-family: "fontello";
  content: "\f08e";
  margin-left: 0.5rem;
}

.pdf::after {
  font-family: "fontello";
  content: "\f1c1";
  margin-left: 0.5rem;
}

.faq_box dt {
  background: var(--main1);
  color: #fff;
  position: relative;
  padding: 0.5rem 0.5rem 0.5rem calc(1.5em + 0.5rem);
  margin-bottom: 0.5rem;
}
.faq_box dt::before {
  content: "Q.";
  margin-right: 0.5rem;
  position: absolute;
  left: 0.5rem;
}
.faq_box dd:not(:last-of-type) {
  margin-bottom: 3rem;
}
.faq_box dd {
  padding: 0.5rem 0.5rem 0.5rem calc(1.5em + 0.5rem);
  position: relative;
}
.faq_box dd::before {
  content: "A.";
  margin-right: 0.5rem;
  position: absolute;
  left: 0.5rem;
  color: var(--main1);
}
@media screen and (min-width: 48em), print {
  .faq_box dt {
    padding-left: calc(1.5em + 1rem);
    padding-right: 1rem;
    margin-bottom: 1rem;
  }
  .faq_box dt::before {
    left: 1rem;
  }
  .faq_box dd:not(:last-of-type) {
    margin-bottom: 4rem;
  }
  .faq_box dd {
    padding-left: calc(1.5em + 1rem);
    padding-right: 1rem;
  }
  .faq_box dd::before {
    left: 1rem;
  }
}

@media print {
  .header {
    position: absolute !important;
  }
}
html {
  font-size: 3.125vw;
}

body {
  background: #fff;
  color: var(--clr_txt);
  line-height: 1.2;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

p:where(:first-of-type) {
  margin-top: 0;
}
p:where(:last-of-type) {
  margin-bottom: 0;
}

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

.js-tel::before {
  font-family: "fontello";
  content: "\e806";
  color: var(--main1);
}

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

@media screen and (min-width: 48em), print {
  html {
    font-size: 62.5%;
  }
  body::after {
    display: none;
  }
  a, button {
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  a:hover, button:hover {
    opacity: 0.8;
  }
  .wrap {
    width: 100%;
    max-width: 1080px;
    margin: auto;
  }
  .main {
    font-size: 1.8rem;
    line-height: 1.8;
  }
  .main a:where(:not([class*=btn])) img {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .main a:where(:not([class*=btn])):hover {
    opacity: 1;
    text-decoration: none;
    color: var(--lcolor_h);
  }
  .main a:where(:not([class*=btn])):hover img {
    opacity: 0.8;
  }
}
:target {
  scroll-margin-top: 2rem;
}
@media screen and (min-width: 48em), print {
  :target {
    scroll-margin-top: 4rem;
  }
}

.header {
  position: relative;
}
.header > .wrap {
  padding: 1rem;
}
.header > .wrap .logo {
  width: 100%;
  height: 5.6rem;
  padding-bottom: 1rem;
  position: relative;
  z-index: 100;
  background: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.header > .wrap .logo a {
  display: block;
  width: calc(100% - 5.6rem);
  height: 100%;
  background: url(../img/logo.svg) no-repeat left center/contain;
}
.header > .wrap .logo a .clip {
  display: block;
  height: 100%;
  overflow: hidden;
  clip-path: inset(50%);
  color: transparent;
}
.header > .wrap .headR {
  width: 92%;
  margin: auto;
}
.header > .wrap .headR ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.2rem;
  gap: 0.8rem 1rem;
}
.header > .wrap .headR ul li .js-tel {
  font-size: 1.6rem;
}
.header > .wrap .headR ul li .btn_rsv {
  font-size: 1.4rem;
  -webkit-box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
}
.header > .wrap .headR ul li.acs span {
  color: var(--main1);
}

@media screen and (min-width: 48em), print {
  .header > .wrap {
    padding: 3rem 0 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header > .wrap .logo {
    max-width: 51.7rem;
    width: 50%;
    height: 8.5rem;
    padding: 0;
    position: relative;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    z-index: 101;
    background: none;
  }
  .header > .wrap .logo a {
    width: 100%;
  }
  .header > .wrap .headR {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    margin: 0 0 0 5rem;
  }
  .header > .wrap .headR ul {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    font-size: 1.6rem;
    gap: 0.6rem 2.2rem;
  }
  .header > .wrap .headR ul li .js-tel {
    font-size: 2.4rem;
  }
  .header > .wrap .headR ul li .btn_rsv {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    width: 16.3rem;
    padding: 0.4rem 2rem 0.4rem 2.5rem;
  }
}
#nav {
  width: 100vw;
  position: static;
  top: 0;
  left: 0;
  z-index: 100;
}
#nav #sp_menu {
  width: 4.6rem;
  height: 4.6rem;
  background: var(--main1);
  color: #fff;
  text-align: center;
  line-height: 1;
  font-size: 1rem;
  padding: 0;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 100;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 0 3px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 0 rgba(0, 0, 0, 0.16);
}
#nav #sp_menu::before {
  display: block;
  font-family: "fontello";
  content: "\e822";
  font-size: 2.4rem;
}
#nav #sp_menu::after {
  display: block;
  content: "MENU";
  margin: 0.2rem 0 0;
}
#nav #sp_menu.close::before {
  font-family: "fontello";
  content: "\e823";
}
#nav #sp_menu.close::after {
  content: "CLOSE";
}
#nav #sp_menu span {
  display: none;
}
#nav .gnav_subnav {
  display: none;
  width: 100%;
  overflow-y: auto;
  background: var(--bg1);
  padding: 1.6rem;
  margin: auto;
  position: absolute;
  top: 6.6rem;
  left: 0;
  right: 0;
  z-index: 100;
}
#nav .gnav_subnav .gnav > li > a, #nav .gnav_subnav .gnav > li .sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  text-align: left;
  padding: 1rem 0.5rem;
  font-size: 1.6rem;
}
#nav .gnav_subnav .gnav > li > a::before, #nav .gnav_subnav .gnav > li .sub::before {
  margin-right: 0.4rem;
  color: #fff;
  font-size: 95%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
#nav .gnav_subnav .gnav > li .sub {
  gap: 0.4rem;
}
#nav .gnav_subnav .gnav > li .sub::after {
  font-family: "fontello";
  content: "\34";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 0 auto;
  color: var(--main1);
}
#nav .gnav_subnav .gnav > li .sub.close::after {
  font-family: "fontello";
  content: "\33";
}
#nav .gnav_subnav .gnav > li.home a::before {
  font-family: "fontello";
  content: "\e809";
}
#nav .gnav_subnav .gnav > li.doctor a::before {
  font-family: "fontello";
  content: "\e80a";
}
#nav .gnav_subnav .gnav > li.process a::before {
  font-family: "fontello";
  content: "\e80b";
}
#nav .gnav_subnav .gnav > li.treatment .sub::before {
  font-family: "fontello";
  content: "\e80c";
}
#nav .gnav_subnav .gnav > li.faq a::before {
  font-family: "fontello";
  content: "\e80d";
}
#nav .gnav_subnav .gnav > li.price a::before {
  font-family: "fontello";
  content: "\e80e";
}
#nav .gnav_subnav .gnav > li.access a::before {
  font-family: "fontello";
  content: "\e80f";
}
#nav .gnav_subnav .gnav > li.online_medical_treatment a::before {
  font-family: "fontello";
  content: "\e811";
}
#nav .gnav_subnav .gnav > li.psychiatric-medical-guidance a::before {
  font-family: "fontello";
  content: "\E82A";
}
#nav .gnav_subnav .gnav > li .subbox {
  display: block;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav {
  background: #fff;
  padding: 0.5rem;
  border-radius: 0.5rem;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav div {
  font-size: 1.6rem;
  background: var(--sub8);
  padding: 0.5rem;
  margin: 0.5rem 0.5rem;
  color: #fff;
  width: 100%;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a {
  display: block;
  padding: 1rem;
  color: var(--clr_txt);
  font-size: 1.6rem;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a::before {
  content: "-";
  font-size: 1.8rem;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a.current {
  color: var(--sub3);
}
#nav .gnav_subnav #menu_close {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  color: #fff;
  background: var(--main1);
  text-align: center;
  padding: 0.6rem 0;
  margin: 1rem 0 0;
}
#nav .gnav_subnav #menu_close::before {
  font-family: "fontello";
  content: "\e823";
  margin: 0 0.6rem 0 0;
}

@media screen and (min-width: 48em), print {
  #nav {
    width: auto;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    -webkit-transition: 0.8s;
    transition: 0.8s;
  }
  #nav.fixed {
    opacity: 1;
    z-index: 100;
    position: fixed;
  }
  #nav.hide {
    -webkit-transform: translateY(-300%);
            transform: translateY(-300%);
  }
  #nav #sp_menu {
    display: none;
  }
  #nav .gnav_subnav {
    display: block !important;
    width: 100%;
    max-height: calc(var(--vh, 1vh) * 100);
    overflow-y: visible;
    padding: 0;
    position: static;
  }
  #nav .gnav_subnav .gnav {
    width: 100%;
    max-width: 1080px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: none;
    border-right: 1px solid;
    -o-border-image: linear-gradient(transparent 2rem, var(--line_menu) 2rem, var(--line_menu) calc(100% - 2rem), transparent calc(100% - 2rem)) 1;
       border-image: -webkit-gradient(linear, left top, left bottom, color-stop(2rem, transparent), color-stop(2rem, var(--line_menu)), color-stop(var(--line_menu)), to(transparent)) 1;
       border-image: linear-gradient(transparent 2rem, var(--line_menu) 2rem, var(--line_menu) calc(100% - 2rem), transparent calc(100% - 2rem)) 1;
  }
  #nav .gnav_subnav .gnav > li {
    position: relative;
    border-left: 1px solid;
    -o-border-image: linear-gradient(transparent 2rem, var(--line_menu) 2rem, var(--line_menu) calc(100% - 2rem), transparent calc(100% - 2rem)) 1;
       border-image: -webkit-gradient(linear, left top, left bottom, color-stop(2rem, transparent), color-stop(2rem, var(--line_menu)), color-stop(var(--line_menu)), to(transparent)) 1;
       border-image: linear-gradient(transparent 2rem, var(--line_menu) 2rem, var(--line_menu) calc(100% - 2rem), transparent calc(100% - 2rem)) 1;
  }
  #nav .gnav_subnav .gnav > li:not(:last-child) {
    border-bottom: none;
  }
  #nav .gnav_subnav .gnav > li a, #nav .gnav_subnav .gnav > li .sub {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    font-size: 1.6rem;
    margin: 0;
    cursor: pointer;
  }
  #nav .gnav_subnav .gnav > li a::after, #nav .gnav_subnav .gnav > li .sub::after {
    margin: 0 0 0 0.8rem;
    content: none;
  }
  #nav .gnav_subnav .gnav > li a:is(:hover, :focus-visible), #nav .gnav_subnav .gnav > li .sub:is(:hover, :focus-visible) {
    color: var(--sub3);
    opacity: 1;
  }
  #nav .gnav_subnav .gnav > li a:is(:hover, :focus-visible)::before, #nav .gnav_subnav .gnav > li .sub:is(:hover, :focus-visible)::before {
    color: var(--sub3);
  }
  #nav .gnav_subnav .gnav > li a.close, #nav .gnav_subnav .gnav > li .sub.close {
    color: var(--sub3);
  }
  #nav .gnav_subnav .gnav > li a.close::before, #nav .gnav_subnav .gnav > li .sub.close::before {
    color: var(--sub3);
  }
  #nav .gnav_subnav .gnav > li a.close::after, #nav .gnav_subnav .gnav > li .sub.close::after {
    content: none;
  }
  #nav .gnav_subnav .gnav > li .subbox {
    display: none;
    width: 65rem;
    position: absolute;
    z-index: 100;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav {
    background: none;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.8);
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav div {
    margin: 0;
    padding: 1rem;
    text-align: center;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li {
    width: 25%;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a {
    padding: 1.6rem 0;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a::before {
    content: none;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a:is(:hover, :focus-visible, .current) {
    background: var(--sub12);
    color: var(--sub1);
  }
  #nav .gnav_subnav #menu_close {
    display: none;
  }
}
.overview {
  padding: 2rem 1rem 4rem;
  font-size: 1.4rem;
  line-height: 1.6;
  background: url("../img/bg_overview.jpg") center top no-repeat;
  background-size: cover;
}
.overview .clinic_name {
  margin: 0 0 2rem;
}
.overview .clinic_name img {
  max-width: 80%;
  margin: auto;
}
.overview > .wrap .gaiyo {
  width: 100%;
  margin: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 5em 0 auto;
  grid-template-columns: 5em auto;
  gap: 0;
}
.overview > .wrap .gaiyo dt {
  padding: 0.4rem;
  color: var(--main1);
  font-weight: bold;
}
.overview > .wrap .gaiyo dt.lt1 {
  padding-left: 1em;
  letter-spacing: 1em;
}
.overview > .wrap .gaiyo dd {
  padding: 0.4rem;
}
.overview > .wrap .gaiyo dd b {
  color: var(--main1);
  font-weight: bold;
}
.overview > .wrap .gaiyo dd .js-tel::before {
  content: none;
}
.overview > .wrap .gmap {
  height: 30rem;
}
.overview > .wrap .gmap iframe {
  border-radius: 1rem;
}
.overview > .wrap .btn_map {
  margin-top: 1rem;
}
.overview > .wrap .overviewR {
  margin-top: 3rem;
}
.overview > .wrap .overviewR .tbl_time {
  margin: 2rem 0;
}
.overview .overview_link {
  font-size: 1.2rem;
  margin-top: 2rem;
  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: 1rem;
}
.overview .overview_link span {
  color: var(--main1);
}
.btn_map {
  display: block;
  margin: 0.5rem auto 0;
  padding: 0.5rem 1.5rem;
  border-radius: 1.5em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--main1);
  border: 1px solid var(--main1);
  background: rgba(255, 255, 255, 0.4);
}
.btn_map::after {
  font-family: "fontello";
  content: "\e817";
  margin-left: 1rem;
}

@media screen and (min-width: 48em), print {
  .overview {
    padding: 8rem 0;
    font-size: 1.8rem;
  }
  .overview .clinic_name {
    margin: 0 0 6.9rem;
    width: 100%;
  }
  .overview .clinic_name img {
    max-width: 100%;
    width: 51.7rem;
  }
  .overview > .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .overview > .wrap .gaiyo dt {
    padding: 0 0 1.5rem 0;
  }
  .overview > .wrap .gaiyo dd {
    padding: 0 0 1.5rem 0;
  }
  .overview > .wrap .gaiyo dd span {
    text-align: left;
  }
  .overview > .wrap .overviewL, .overview > .wrap .overviewR {
    width: 48%;
  }
  .overview > .wrap .overviewR {
    margin: 0;
  }
  .overview > .wrap .overviewR .btn_detail {
    margin: 1rem auto 0 0;
  }
  .overview > .wrap .overviewR .tbl_time {
    margin-top: 4rem;
  }
  .overview > .wrap .gmap {
    height: 59rem;
  }
  .overview > .wrap .btn_map {
    margin-top: 3.2rem;
  }
  .overview .overview_link {
    width: 80%;
    margin: 7.9rem auto 0;
    gap: 2.9rem 5.8rem;
    font-size: 1.4rem;
  }
  .overview .overview_link img {
    margin-top: 1rem;
  }
  .overview .overview_link a {
    display: block;
    margin: auto 0 0;
  }
  .overview .overview_link li {
    width: 34rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .btn_map {
    min-width: 25.9rem;
    text-align: center;
    font-size: 1.6rem;
  }
  .btn_map:is(:hover, :focus-visible) {
    background: var(--main1);
    color: #fff;
    opacity: 1;
  }
}
#tel_up {
  width: 100%;
  height: 4rem;
  background: #fff;
  visibility: hidden;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  font-size: 1.4rem;
  display: block;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid var(--main1);
}
#tel_up ul {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  font-size: 1.7rem;
}
#tel_up ul li {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.4rem;
  height: 100%;
  text-align: center;
}
#tel_up ul li .js-tel {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 100%;
  color: var(--main1);
}
#tel_up ul li .js-tel::before {
  display: none;
}
#tel_up ul li .js-tel a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  gap: 0 0.4rem;
}
#tel_up ul li .js-tel a::before {
  font-family: "fontello";
  content: "\e806";
}
#tel_up ul li .btn_rsv {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0;
  padding: 0;
}
#tel_up #pageup {
  position: absolute;
  bottom: 10rem;
  right: 0;
  margin: 0 1rem 0 auto;
  border-radius: 50%;
  display: block;
  width: 5rem;
  height: 5rem;
  font-size: 1.6rem;
  text-align: center;
  padding: 1rem;
  line-height: 1;
  background: var(--main1);
  overflow: hidden;
  position: relative;
  z-index: 101;
  -webkit-box-shadow: 0 3px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 0 rgba(0, 0, 0, 0.16);
}
#tel_up #pageup::before {
  display: block;
  font-family: "fontello";
  content: "\e818";
  color: #fff;
}
#tel_up #pageup .clip {
  display: block;
  font-size: 1rem;
  clip-path: inset(50%);
  color: transparent;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: 0;
}

@media screen and (min-width: 48em), print {
  #tel_up {
    width: 6rem;
    height: 6rem;
    bottom: 4rem;
    right: 4rem;
    left: auto;
    background: none;
    padding: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
  }
  #tel_up ul {
    display: none;
  }
  #tel_up #pageup {
    width: 100%;
    height: 100%;
    font-size: 3rem;
    border-radius: 50%;
    bottom: 0;
  }
  #tel_up #pageup:is(:hover, :focus-visible) {
    background: var(--lcolor_h);
    opacity: 1;
  }
}
.footer {
  text-align: center;
  padding: 0 0 4rem;
}
.footer .copy {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 1.2rem;
}
.footer ul {
  display: none;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 4.7rem 1rem 2.8rem;
    max-width: 1080px;
    width: 100%;
    margin: auto;
  }
  .footer .copy {
    margin: 3rem auto 0;
    padding: 0;
    text-align: left;
  }
  .footer ul {
    display: block;
    text-align: left;
  }
  .footer ul li {
    display: inline-block;
    font-size: 1.4rem;
    margin: 0 0 1.3rem;
    -webkit-text-size-adjust: none;
  }
  .footer ul li a {
    opacity: 1;
  }
  .footer ul li a br {
    display: none;
  }
  .footer ul li a:hover {
    text-decoration: underline;
  }
  .footer ul li.treatment {
    display: none;
  }
  .footer ul.gnav li:not(:first-child)::before {
    content: "|";
    margin: 0 1em;
  }
  .footer ul.subnav li:not(:last-child)::after {
    content: "|";
    margin: 0 1em;
  }
}
@media screen and (min-width: 48em), print {
  body.index > .wrap {
    width: 100%;
    max-width: inherit;
  }
  body.index .main {
    overflow-x: hidden;
  }
}

.keyvsl {
  width: 100%;
  position: relative;
}
.keyvsl #keyvsl {
  max-width: 100%;
  height: 8rem;
  overflow: hidden;
  visibility: hidden;
}
.keyvsl #keyvsl .slick-list div img {
  height: 8rem !important;
  -o-object-fit: cover;
     object-fit: cover;
  margin: auto;
}
.keyvsl #keyvsl .slick-dots {
  margin: 0.6rem 0 0;
  position: relative;
  z-index: 2;
}
.keyvsl #keyvsl .slick-dots li {
  width: 1rem;
  height: 1rem;
  margin: 0 0.6rem;
}
.keyvsl > .wrap .catch {
  background: var(--sub9);
  font-size: 1.3rem;
  padding: 1rem;
  border-radius: 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 2rem auto;
  color: var(--sub10);
}
.keyvsl > .wrap .catch b {
  color: var(--main1);
}
.keyvsl > .wrap .open {
  position: absolute;
  top: 5rem;
  left: 1rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
}
.keyvsl > .wrap .open li {
  aspect-ratio: 1/1;
  width: 6.5em;
  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;
  text-align: center;
  border-radius: 50%;
  background: var(--sub1);
  outline: 1px solid #fff;
  outline-offset: -3px;
}

@media screen and (min-width: 48em), print {
  .keyvsl #keyvsl {
    height: 52.7rem;
  }
  .keyvsl #keyvsl .slick-list div {
    font-size: 0;
  }
  .keyvsl #keyvsl .slick-list div img {
    height: 52.7rem !important;
  }
  .keyvsl #keyvsl .slick-dots {
    margin: 1rem 0 0;
  }
  .keyvsl #keyvsl .slick-dots li {
    width: 1.6rem;
    height: 1.6rem;
    margin: 0 1.2rem;
  }
  .keyvsl > .wrap {
    position: absolute;
    max-width: 1080px;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }
  .keyvsl > .wrap .catch {
    position: absolute;
    z-index: 1;
    background: url("../img/img_kv_txt.svg");
    width: 19.7rem;
    height: 55.4rem;
    right: 2.7rem;
    top: 3.4rem;
    margin: 0;
    overflow: hidden;
  }
  .keyvsl > .wrap .catch span {
    position: absolute;
    left: 100%;
  }
  .keyvsl > .wrap .open {
    top: auto;
    bottom: -3.5rem;
    left: 5.4rem;
  }
  .keyvsl > .wrap .open li {
    width: 15.9rem;
    font-size: 2.5rem;
    outline-offset: -4px;
  }
  .keyvsl > .wrap .open li span {
    font-size: 2.2rem;
  }
}
.bnr_rsv {
  margin: 3rem auto 3rem;
  padding: 0 1rem;
}
@media screen and (min-width: 48em), print {
  .bnr_rsv {
    margin: 6.5rem auto 6rem;
  }
  .bnr_rsv img {
    margin: auto;
  }
}

.index_timetable {
  background: var(--bg1);
  padding: 4rem 0;
  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;
}
.index_timetable > div {
  width: 100%;
}
.index_timetable .map iframe {
  height: 30rem;
}
.index_timetable .timetable {
  padding: 2rem 1rem 0;
}
@media screen and (min-width: 48em), print {
  .index_timetable {
    margin: 0 0 11.2rem;
    padding: 5.4rem 1rem 8rem;
  }
  .index_timetable .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 6.8rem;
  }
  .index_timetable .map {
    width: 47.2rem;
  }
  .index_timetable .map iframe {
    width: 100%;
    height: 43.3rem;
    border-radius: 1rem;
  }
  .index_timetable .timetable {
    width: 50%;
    padding: 0;
    line-height: 1.6;
  }
  .index_timetable .timetable .btn_detail {
    margin: 2rem auto 0 0;
  }
}

.info {
  margin: 4rem 1rem;
}
.info .wrap .info_box {
  position: relative;
}
.info .wrap .info_box::before, .info .wrap .info_box::after {
  content: "";
  display: block;
  width: 1rem;
  background: #fff;
  height: calc(100% - 2rem);
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
}
.info .wrap .info_box::before {
  left: -2px;
}
.info .wrap .info_box::after {
  right: -2px;
}
.info .wrap .info_tit_02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: normal;
  gap: 0.6rem;
  color: var(--main1);
  font-size: 2rem;
  margin-bottom: 2rem;
}
.info .wrap .info_tit_02::before, .info .wrap .info_tit_02::after {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--sub4);
  width: 0.5em;
  margin-top: 0.1rem;
}
.info .wrap dl {
  overscroll-behavior-y: none;
  border: 1px dotted var(--line1);
  padding: 1.4rem 1rem;
  position: relative;
}
.info .wrap dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 0.2rem;
  color: var(--main1);
  cursor: pointer;
  padding-left: 1rem;
  border-left: 2px solid var(--main1);
}
.info .wrap dl dt::after {
  font-family: "fontello";
  content: "\e8a3";
  width: 1.1em;
  text-align: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  margin-left: 0.5rem;
}
.info .wrap dl dt.close::after {
  font-family: "fontello";
  content: "\e8a3";
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.info .wrap dl dt:not(:first-of-type) {
  margin: 2rem 0 0;
}
.info .wrap dl dd {
  margin: 0 0 1.6rem;
  padding: 0.6rem 0 0 1rem;
  border-left: 2px solid var(--main1);
}

@media screen and (min-width: 48em), print {
  .info {
    margin: 8rem 0;
    padding: 0 1rem;
  }
  .info .wrap .info_tit_02 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 3rem;
  }
  .info .wrap dl {
    padding: 4rem 4.3rem;
    font-size: 1.6rem;
  }
  .info .wrap dl dt {
    padding: 0 0 0 1.7rem;
  }
  .info .wrap dl dt::before {
    margin-right: 1rem;
  }
  .info .wrap dl dt:hover div {
    text-decoration: underline;
  }
  .info .wrap dl dd {
    font-size: 1.6rem;
    margin: 0 0 1.6rem;
    padding-left: 1.7rem;
  }
}
.contact {
  position: relative;
  padding: 0 1rem 4rem;
  background: var(--bg1);
}
.contact::before {
  content: "";
  display: block;
  background: #fff;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  height: 3rem;
}
.contact .wrap {
  position: relative;
  z-index: 1;
}
.contact .contact_sinryo.seisin {
  margin-bottom: 2rem;
}
.contact h2 {
  font-size: 2rem;
  font-weight: normal;
  color: var(--main1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.4rem;
  line-height: 1.2;
}
.contact h2::before {
  font-family: "fontello";
  content: "\e813";
  color: var(--sub5);
  font-size: 5rem;
}
.contact img {
  border-radius: 1rem;
  width: 80%;
  margin: 1rem auto;
}
.contact .txt {
  margin-top: 1em;
}
.contact .txt .tit {
  color: var(--main1);
  border-left: 2px solid var(--sub1);
  padding-left: 0.5rem;
  font-weight: bold;
}
.contact .txt .tit.beauty {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: var(--sub1);
}
.contact .txt ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contact .txt ul li {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contact .txt ul li::before {
  content: "・";
}
@media screen and (min-width: 48em), print {
  .contact {
    margin: 0 0 11.2rem;
    padding-bottom: 10.8rem;
    background: #fff;
    overflow: hidden;
  }
  .contact::before {
    background: var(--bg1);
    top: 7rem;
    height: calc(100% - 7rem);
  }
  .contact .wrap {
    position: relative;
  }
  .contact .contact_sinryo {
    width: 85rem;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .contact .contact_sinryo img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .contact .contact_sinryo.seisin {
    margin-bottom: 5.4rem;
  }
  .contact h2 {
    font-size: 3rem;
    padding: 2.3rem 0 0 8.6rem;
    margin-bottom: 5rem;
    position: relative;
    line-height: 1.6;
  }
  .contact h2::before {
    font-size: 9rem;
    position: absolute;
    left: 0;
    top: 0.5rem;
    line-height: 1;
  }
  .contact img {
    border-radius: 8rem;
    width: 39.4rem;
    height: auto;
    margin: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .contact .txt {
    width: 42rem;
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .contact .txt .tit {
    margin: 1.2rem 0 1.2rem 0.6rem;
    padding-left: 0.9rem;
    line-height: 1.5;
  }
  .contact .txt .tit:first-child {
    margin-top: 0;
  }
  .contact .txt ul:first-of-type {
    margin-bottom: 2rem;
  }
}

.index_greeting {
  padding: 3rem 1rem;
}
.index_greeting .img {
  margin-bottom: 2rem;
}
.index_greeting .img img {
  margin: auto;
  border-radius: 1rem;
  width: 80%;
}
.index_greeting .txt ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0.5rem;
}
.index_greeting .txt .dr {
  text-align: right;
  margin-top: 1rem;
}
.index_greeting .txt .btn {
  display: block;
  margin: 0 0 0 auto;
  color: var(--clr_txt);
  border: 1px solid var(--main1);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 2rem;
  border-radius: 1.5em;
  -webkit-box-shadow: 3px 3px 0 var(--bg1);
          box-shadow: 3px 3px 0 var(--bg1);
}
.index_greeting .txt .btn::after {
  font-family: "fontello";
  content: "\e812";
  margin-left: 0.5rem;
}

@media screen and (min-width: 48em), print {
  .index_greeting {
    margin-bottom: 13.6rem;
  }
  .index_greeting .wrap {
    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;
  }
  .index_greeting .tit_02 {
    margin-bottom: 6.3rem;
    width: 100%;
  }
  .index_greeting .img {
    width: 28.3rem;
  }
  .index_greeting .img img {
    width: 100%;
  }
  .index_greeting .txt {
    width: 75.8rem;
    font-size: 1.6rem;
  }
  .index_greeting .txt .dr {
    margin-top: 3.2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .index_greeting .txt .btn {
    padding: 0 1.7rem;
    font-size: 1.4rem;
    margin-left: 2.6rem;
  }
  .index_greeting .txt .btn:is(:hover, :focus-visible) {
    background: var(--main1);
    color: #fff;
  }
}
.tre {
  margin-top: 4rem;
  padding: 4rem 1rem 4rem 1rem;
  background: url("../img/bg_tre.jpg") center top no-repeat;
  background-size: cover;
  position: relative;
}
.tre .tit_02 {
  position: absolute;
  top: -0.8em;
}
.tre .tit_02::before {
  font-family: "fontello";
  content: "\e815";
  font-size: 150%;
}
.tre .tit_02::after {
  content: none;
}
.tre h3 {
  font-weight: normal;
  color: var(--sub1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.tre h3::before {
  font-family: "fontello";
  content: "\e816";
  color: var(--bg1);
}
.tre h3::after {
  content: "";
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-bottom: 1px solid var(--sub7);
}
.tre .dermatology {
  margin-top: 3rem;
}
.tre .beauty {
  margin-top: 3rem;
}
.tre .beauty h3::before {
  color: var(--sub6);
}
.tre .beauty h3::after {
  border-bottom-color: var(--sub6);
}
.tre .subnav {
  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;
  gap: 2rem;
  margin: 0 1rem;
}
.tre .subnav li {
  width: 13rem;
}
.tre .subnav li a {
  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;
  text-decoration: none;
  position: relative;
  text-align: center;
  color: var(--clr_txt);
}
.tre .subnav li a::before {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  width: 100%;
  background: center center var(--main1);
  background-size: contain;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.tre .subnav li a span::after {
  font-family: "fontello";
  content: "\e812";
  margin-left: 0.3rem;
  font-size: 90%;
  color: var(--main1);
}
.tre .subnav .eczema a::before {
  background-image: url("../img/icon_tre_eczema.svg");
}
.tre .subnav .acne a::before {
  background-image: url("../img/icon_tre_acne.svg");
}
.tre .subnav .corn_callus a::before {
  background-image: url("../img/icon_tre_corn_callus.svg");
}
.tre .subnav .urticaria a::before {
  background-image: url("../img/icon_tre_urticaria.svg");
}
.tre .subnav .athletes_foot a::before {
  background-image: url("../img/icon_tre_athletes_foot.svg");
}
.tre .subnav .hyperhidrosis a::before {
  background-image: url("../img/icon_tre_hyperhidrosis.svg");
}
.tre .subnav .contact_dermatitis a::before {
  background-image: url("../img/icon_tre_contact_dermatitis.svg");
}
.tre .subnav .atopic_dermatitis a::before {
  background-image: url("../img/icon_tre_atopic_dermatitis.svg");
}
.tre .subnav .hair_removal a::before {
  background-image: url("../img/icon_tre_hair_removal.svg");
}
.tre .subnav .piercing a::before {
  background-image: url("../img/icon_tre_piercing.svg");
}
.tre .subnav .placenta a::before {
  background-image: url("../img/icon_tre_placenta.svg");
}
.tre .subnav .isotretinoin a::before {
  background-image: url("../img/icon_tre_isotretinoin.svg");
}
.tre .subnav .medicine a::before {
  background-image: url("../img/icon_tre_medicine.svg");
}
.tre .subnav .cream a::before {
  background-image: url("../img/icon_tre_cream.svg");
}
.tre .subnav .iontophoresis a::before {
  background-image: url("../img/icon_tre_iontophoresis.svg");
}
.tre .subnav .chemical_peeling a::before {
  background-image: url("../img/icon_tre_chemical_peeling.svg");
}
.tre .subnav .alopecia_areata a::before {
  background-image: url("../img/icon_tre_alopecia_areata.svg");
}
.tre .subnav .mole a::before {
  background-image: url("../img/icon_tre_mole.svg");
}
.tre .subnav .seborrheic_keratosis a::before {
  background-image: url("../img/icon_tre_seborrheic_keratosis.svg");
}
.tre .subnav .insomnia a::before {
  background-image: url("../img/icon_tre_insomnia.svg");
}
.tre .subnav .depression a::before {
  background-image: url("../img/icon_tre_depression.svg");
}
.tre .subnav .schizophrenia a::before {
  background-image: url("../img/icon_tre_schizophrenia.svg");
}
.tre .subnav .anxiety a::before {
  background-image: url("../img/icon_tre_anxiety.svg");
}
.tre .subnav .panic a::before {
  background-image: url("../img/icon_tre_panic.svg");
}
.tre .subnav .anxiety_disorder a::before {
  background-image: url("../img/icon_tre_anxiety_disorder.svg");
}
.tre .subnav .obsessive a::before {
  background-image: url("../img/icon_tre_obsessive.svg");
}
.tre .subnav .maladjustment a::before {
  background-image: url("../img/icon_tre_maladjustment.svg");
}
.tre .subnav .dysautonomia a::before {
  background-image: url("../img/icon_tre_dysautonomia.svg");
}
.tre .subnav .developmental_disorder a::before {
  background-image: url("../img/icon_tre_developmental_disorder.svg");
}
.tre .subnav .dementia a::before {
  background-image: url("../img/icon_tre_dementia.svg");
}
.tre .subnav .sexual_dysfunction a::before {
  background-image: url("../img/icon_tre_sexual_dysfunction.svg");
}
.tre .subnav .epilepsy a::before {
  background-image: url("../img/icon_tre_epilepsy.svg");
}
.tre .subnav .consultation a::before {
  background-image: url("../img/icon_tre_consultation.svg");
}
.tre .subnav .psychiatric-medical-guidance a::before {
  background-image: url("../img/icon_tre_psychiatric-medical-guidance.svg");
}

@media screen and (min-width: 48em), print {
  .tre {
    padding: 7.6rem 0 9.1rem;
  }
  .tre h3 {
    font-size: 2.4rem;
    gap: 1.5rem;
    margin-bottom: 3.3rem;
  }
  .tre section {
    max-width: 105rem;
    margin: auto;
  }
  .tre .subnav {
    gap: 2.5rem 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin: 0;
  }
  .tre .subnav li {
    width: 25%;
  }
  .tre .subnav li a::before {
    width: 12.4rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .tre .subnav li a span {
    display: block;
    width: 100%;
  }
  .tre .subnav li a:is(:hover, :focus-visible, .current) {
    color: var(--lcolor_h);
  }
  .tre .subnav li a:is(:hover, :focus-visible, .current)::before {
    background-color: var(--lcolor_h);
  }
  .tre .subnav li a:is(:hover, :focus-visible, .current) span::after {
    color: var(--lcolor_h);
  }
  .tre .dermatology {
    margin-top: 4.2rem;
  }
  .tre .beauty {
    margin-top: 4.2rem;
  }
}
.top_rsv2 {
  margin: 4rem 1rem;
}
.top_rsv2 h3 {
  font-weight: normal;
  color: var(--sub1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.top_rsv2 h3::before {
  font-family: "fontello";
  content: "\e816";
  color: var(--bg1);
}
.top_rsv2 h3::after {
  content: "";
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-bottom: 1px solid var(--sub7);
}
.top_rsv2 .hifu {
  margin-top: 2rem;
}
.top_rsv2 .attention li {
  font-size: 1.2rem;
  position: relative;
  padding-left: 1.1em;
}
.top_rsv2 .attention li:first-child {
  margin-top: 0.5rem;
}
.top_rsv2 .attention li::before {
  content: "●";
  color: var(--sub11);
  position: absolute;
  left: 0;
}
.top_rsv2 .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.3rem;
  margin-bottom: 3rem;
}
.top_rsv2 .btn li {
  width: 100%;
}
.top_rsv2 .btn li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: center right no-repeat;
  background-size: cover;
  text-decoration: none;
  position: relative;
  padding: 0 3rem;
  overflow: hidden;
  -webkit-box-shadow: 0 3px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 3px 0 rgba(0, 0, 0, 0.3);
  color: #fff;
}
.top_rsv2 .btn li a span {
  position: relative;
  z-index: 1;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.top_rsv2 .btn li a::after {
  content: "";
  display: block;
  background-image: -webkit-gradient(linear, left top, right top, from(var(--sub8)), color-stop(50%, var(--sub8)), color-stop(70%, transparent));
  background-image: linear-gradient(90deg, var(--sub8) 0%, var(--sub8) 50%, transparent 70%);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.top_rsv2 .btn li.img_01 a, .top_rsv2 .btn li.img_02 a {
  height: 11rem;
  border-radius: 5.5rem;
}
.top_rsv2 .btn li.img_03 a, .top_rsv2 .btn li.img_04 a {
  height: 9rem;
  border-radius: 4.5rem;
}
.top_rsv2 .btn li.img_01 a {
  background-image: url("../img/bg_rsv_01.jpg");
}
.top_rsv2 .btn li.img_02 a {
  background-image: url("../img/bg_rsv_02.jpg");
}
.top_rsv2 .btn li.img_03 a {
  background-position: center right;
  background-image: url("../img/bg_rsv_03.jpg");
}
.top_rsv2 .btn li.img_03 a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top_rsv2 .btn li.img_03 a span::before {
  font-family: "fontello";
  content: "\e805";
  margin-right: 0.5rem;
}
.top_rsv2 .btn li.img_04 a {
  background-image: url("../img/bg_rsv_04.jpg");
  background-position: center right -3rem;
}
.top_rsv2 .btn li.img_04 a span::before {
  font-family: "fontello";
  content: "\e805";
  margin-right: 0.5rem;
}
@media screen and (min-width: 48em), print {
  .top_rsv2 {
    margin: 10.9rem auto 9.2rem;
    width: 75rem;
  }
  .top_rsv2 h3 {
    font-size: 2.4rem;
    gap: 1.5rem;
  }
  .top_rsv2 .hifu {
    margin-top: 4rem;
  }
  .top_rsv2 .attention li {
    font-size: 1.6rem;
  }
  .top_rsv2 .attention li:first-child {
    margin-top: 1.9rem;
  }
  .top_rsv2 .btn {
    margin: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 4rem 4.3rem;
    margin-bottom: 3.7rem;
  }
  .top_rsv2 .btn li a {
    -webkit-box-shadow: 0 4px 0 rgba(0, 0, 0, 0.3);
            box-shadow: 0 4px 0 rgba(0, 0, 0, 0.3);
    font-size: 2rem;
    line-height: 1.3;
  }
  .top_rsv2 .btn li a:is(:hover, :focus-visible) {
    opacity: 0.8;
    color: #fff;
  }
  .top_rsv2 .btn li.img_01, .top_rsv2 .btn li.img_02 {
    width: 36.1rem;
  }
  .top_rsv2 .btn li.img_03, .top_rsv2 .btn li.img_04 {
    width: 75rem;
  }
  .top_rsv2 .btn li.img_03 a, .top_rsv2 .btn li.img_04 a {
    height: 12rem;
    border-radius: 6rem;
    padding: 0 2rem;
  }
  .top_rsv2 .btn li.img_03 a span, .top_rsv2 .btn li.img_04 a span {
    width: 50%;
    text-align: center;
  }
  .top_rsv2 .btn li.img_03 a span {
    display: block;
    width: 70%;
    text-align: center;
  }
  .top_rsv2 .btn li.img_04 a {
    background-position: center right;
  }
  .top_rsv2 .btn li.img_04 a span {
    width: 50%;
    text-align: center;
  }
  .top_rsv2 .lst_pdf {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .top_rsv2 .lst_pdf li {
    width: calc((100% - 2rem) / 2);
  }
  .top_rsv2 .lst_pdf .btn_detail {
    padding: 1rem;
    width: 100%;
  }
}

.feature {
  margin: 4rem 0;
  position: relative;
}
.feature::before {
  content: "";
  display: block;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 1.5rem;
  bottom: 2rem;
  background: var(--bg1);
}
.feature .wrap {
  position: relative;
  z-index: 1;
  padding: 0 3rem;
}
.feature .tit_02 {
  display: block;
  text-align: center;
  margin-bottom: 3rem;
}
.feature .tit_02::before {
  margin-right: 0.5rem;
}
.feature .tit_02::after {
  content: none;
}
.feature ol {
  counter-reset: number 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem;
}
.feature ol li {
  width: 100%;
  counter-increment: number 1;
}
.feature ol li::before {
  content: "";
  display: block;
  height: 12rem;
  border-radius: 9.5rem;
  background: center center no-repeat;
  background-size: cover;
}
.feature ol li h3 {
  margin: 1rem 0 0.8rem;
  text-align: center;
  color: var(--main1);
}
.feature ol li p {
  margin: 0;
}
.feature ol .feature_01::before {
  background-image: url("../img/index_feature01.jpg");
}
.feature ol .feature_02::before {
  background-image: url("../img/index_feature02.jpg");
}
.feature ol .feature_03::before {
  background-image: url("../img/index_feature03.jpg");
}
.feature ol .feature_04::before {
  background-image: url("../img/index_feature04.jpg");
}
.feature ol .feature_05::before {
  background-image: url("../img/index_feature05.jpg");
}

@media screen and (min-width: 48em), print {
  .feature {
    margin-bottom: 12.3rem;
  }
  .feature::before {
    top: 3.7rem;
    height: 61.5rem;
    bottom: auto;
  }
  .feature .tit_02 {
    text-align: right;
    margin-bottom: 6rem;
  }
  .feature .tit_02::before {
    margin-right: 2.3rem;
  }
  .feature ol {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 5rem 8rem;
    margin: auto;
  }
  .feature ol li {
    width: 27.5rem;
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .feature ol li::before {
    width: 25.8rem;
    height: 18.1rem;
    border-radius: 9.05rem;
    margin-bottom: 2rem;
  }
  .feature ol li h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}
.tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.4rem;
}
.tab-list .tab-list-item {
  background: var(--sub1);
  border-width: 1px 1px 0;
  padding: 0.5rem 2rem;
  width: 100%;
  border-radius: 1.5em;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
}
.tab-list .tab-list-item::before {
  font-family: "fontello";
  content: "\e805";
}
.tab-list .tab-list-item.is-btn-active {
  background: var(--main1);
  color: #fff;
}

.tab-contents {
  display: none;
}
.tab-contents.is-contents-active {
  display: block;
}

@media screen and (min-width: 48em), print {
  .tab-list .tab-list-item {
    padding: 1rem;
    width: 40%;
    cursor: pointer;
    gap: 1rem;
  }
}
body:where(:not(.index)) .sub_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
body:where(:not(.index)) .breadnav a {
  color: var(--lcolor);
}
body:where(:not(.index)) .main {
  margin: 0 1rem 6rem;
}
body:where(:not(.index)) .main .js-tel {
  font-size: 120%;
}
body:where(:not(.index)) .main .js-tel::before {
  color: var(--main1);
}
@media screen and (min-width: 48em), print {
  body:where(:not(.index)) .breadnav a:is(:hover, :focus-visible) {
    color: var(--lcolor_h);
  }
  body:where(:not(.index)) .main {
    max-width: 100rem;
    width: 100%;
    padding: 0 1rem;
    margin: 0 auto 8rem;
  }
  body:where(:not(.index)) .main .cf .img_l, body:where(:not(.index)) .main .cf .img_r {
    max-width: 40%;
    height: auto;
    background: #fff;
  }
  body:where(:not(.index)) .main .cf .img_l.img_s, body:where(:not(.index)) .main .cf .img_r.img_s {
    max-width: 30%;
  }
}

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

@media screen and (min-width: 48em), print {
  .breadnav {
    width: 100%;
    max-width: 1080px;
    max-width: 100%;
    width: 1080px;
    margin: 2rem auto 0;
    overflow-x: inherit;
  }
  .breadnav .breadcrumb {
    font-size: 1.4rem;
  }
  .breadnav .breadcrumb li:not(:last-child)::after {
    margin: 0 1rem;
  }
  .breadnav .breadcrumb li a:hover {
    opacity: 1;
    text-decoration: none;
  }
}
@media screen and (min-width: 48em), print {
  .doctor .img_r {
    width: 35%;
  }
  .doctor .dr_lst {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 2rem;
  }
  .doctor .dr_lst .tit_02 {
    width: 100%;
  }
  .doctor .dr_lst .img {
    width: 24rem;
  }
  .doctor .dr_lst section {
    width: calc((100% - 24rem - 4rem) / 2);
    margin: 0;
  }
}

.dr_name {
  text-align: right;
}
.dr_name span {
  font-size: 120%;
}

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

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

@media screen and (min-width: 48em), print {
  .device {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem;
  }
  .device li {
    width: 32%;
  }
  .device li img {
    margin: 0 auto 1rem;
    max-width: 100%;
  }
}
@media screen and (min-width: 48em), print {
  .first .flex2 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5rem;
  }
  .first .flex2 li {
    width: auto;
  }
}

.lst_flow {
  counter-reset: number 0;
}
.lst_flow > li {
  counter-increment: number 1;
  border: 2px solid var(--sub4);
  padding: 1rem;
  position: relative;
}
.lst_flow > li .tit_lst_flow {
  position: relative;
  padding: 0.5rem 1rem 0.5rem 2.3em;
}
.lst_flow > li .tit_lst_flow::before {
  display: inline-block;
  content: counter(number);
  color: #fff;
  background: var(--main1);
  padding: 0 1rem;
  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: 2em;
  aspect-ratio: 1/1;
  line-height: 1;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}
.lst_flow > li p:first-of-type {
  margin-top: 0;
}
.lst_flow > li:not(:last-child) {
  margin: 0 0 6rem;
}
.lst_flow > li:not(:last-child)::after {
  display: block;
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  bottom: -4rem;
  left: 0;
  right: 0;
  background: var(--sub4);
  -webkit-box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 0 rgba(0, 0, 0, 0.1);
  height: 2rem;
  width: 8rem;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  margin: auto;
}

@media screen and (min-width: 48em), print {
  .lst_flow > li {
    padding: 3rem;
  }
  .lst_flow > li .tit_lst_flow {
    font-size: 2rem;
    padding-left: 3em;
    margin-bottom: 3rem;
  }
  .lst_flow > li .tit_lst_flow::before {
    font-size: 2.5rem;
    width: 2em;
    padding-bottom: 0.4rem;
  }
  .lst_flow > li:not(:last-child) {
    margin: 0 0 10rem;
  }
  .lst_flow > li:not(:last-child)::after {
    bottom: -7rem;
    width: 10rem;
    height: 3rem;
  }
  .lst_flow > li .img_r {
    margin-bottom: 0;
  }
}
body.access .main .gmap {
  height: 100vw;
  margin: 2rem 0;
}
@media screen and (min-width: 48em), print {
  body.access .main .tbl_time {
    font-size: 2rem;
  }
  body.access .main .js-tel {
    font-size: 100%;
  }
  body.access .main .js-tel::before {
    content: none;
  }
  body.access .main .gmap {
    margin: 4rem 0 0;
    height: 50rem;
  }
}

.anc li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.2;
  margin: 0 0 1rem;
}
.anc li::before {
  font-family: "fontello";
  content: "\e80c";
  color: var(--clr_txt);
  margin-right: 0.4rem;
}
.anc li a {
  color: var(--clr_txt);
  display: inline-block;
  text-decoration: none !important;
}

@media screen and (min-width: 48em), print {
  .anc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0 2rem;
  }
  .anc li {
    font-size: 110%;
    margin: 0 0 1.6rem;
  }
  .anc li::before {
    margin-right: 0.8rem;
  }
  .anc li a:hover {
    text-decoration: underline !important;
  }
}
body.vaccination .table_1 tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
body.vaccination .table_1 th, body.vaccination .table_1 td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 90%;
}
body.vaccination .table_1 th {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
body.vaccination .table_1 th[scope=col]:first-child {
  width: 100%;
}
body.vaccination .table_1 th[scope=col]:nth-child(2) {
  width: 45%;
}
body.vaccination .table_1 th[scope=col]:nth-child(3) {
  width: 55%;
}
body.vaccination .table_1 th[scope=row] {
  width: 100%;
}
body.vaccination .table_1 td {
  display: block;
}
body.vaccination .table_1 td:nth-child(2) {
  width: 45%;
}
body.vaccination .table_1 td:nth-child(3) {
  width: 55%;
}
@media screen and (min-width: 48em), print {
  body.vaccination .table_1 tr {
    display: table-row;
  }
  body.vaccination .table_1 th, body.vaccination .table_1 td {
    display: table-cell;
    font-size: 100%;
  }
  body.vaccination .table_1 th {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  body.vaccination .table_1 th[scope=col]:first-child {
    width: 30%;
  }
  body.vaccination .table_1 th[scope=col]:nth-child(2) {
    width: 30%;
  }
  body.vaccination .table_1 th[scope=col]:nth-child(3) {
    width: 40%;
  }
  body.vaccination .table_1 th[scope=row] {
    width: 30%;
  }
  body.vaccination .table_1 td:nth-child(2) {
    width: 30%;
  }
  body.vaccination .table_1 td:nth-child(3) {
    width: 40%;
  }
}

@counter-style p-decimal {
  system: extends decimal;
  prefix: "";
  suffix: " ) ";
  speak-as: number;
}
@counter-style p-brackets {
  system: extends decimal;
  prefix: "(";
  suffix: ") ";
  speak-as: number;
}
.privacypolicy .lead {
  margin-bottom: 4.5rem;
}
.privacypolicy h2, .privacypolicy h3 {
  margin-bottom: 0.5em;
}
.privacypolicy ul ul, .privacypolicy ul ol, .privacypolicy ol ul, .privacypolicy ol ol {
  margin-block: 0.5em;
}
.privacypolicy .lst_ul > li::before {
  color: inherit;
  -webkit-transform: scale(0.4);
          transform: scale(0.4);
  content: "●";
}
.privacypolicy .lst_ol > li {
  list-style-type: p-decimal;
  padding: 0;
  margin-left: 1.4em;
}
.privacypolicy .lst_ol > li::marker {
  font-weight: normal;
  font-size: inherit;
  color: inherit;
}
.privacypolicy .lst_ol > li::before {
  content: none;
}
.privacypolicy .lst_ol > li:not(:last-child) {
  margin-left: 1.4em;
}
.privacypolicy .lst_ol > li .lst_ol > li {
  list-style-type: p-brackets;
  padding: 0;
  margin-left: 2em;
}
.privacypolicy .lst_ol > li .lst_ol > li::marker {
  font-weight: normal;
  font-size: inherit;
  color: inherit;
}
.privacypolicy .lst_ol > li .lst_ol > li::before {
  content: none;
}
.privacypolicy .lst_ol > li .lst_ol > li:not(:last-child) {
  margin-left: 2em;
}
.privacypolicy .dl_num dt ~ dt {
  margin-top: 0.8em;
}
.privacypolicy .dl_num > dd {
  padding-left: 1.5em;
}
.privacypolicy .pp_sign {
  margin-top: 5rem;
  text-align: right;
}
.privacypolicy .pp_contactus {
  margin-top: 3rem;
}
.privacypolicy .pp_contactus div {
  word-spacing: 0.5em;
  word-break: auto-phrase;
}
@media screen and (min-width: 48em), print {
  .privacypolicy .lead {
    margin-bottom: 90px;
  }
  .privacypolicy .pp_sign {
    margin-top: 100px;
  }
  .privacypolicy .pp_contactus {
    margin-top: 25px;
  }
  .privacypolicy .pp_contactus div {
    text-align: right;
  }
}

.lst_online {
  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: 1rem;
  margin: 1rem 0;
}
.lst_online li {
  width: 70%;
  text-align: center;
}
@media screen and (min-width: 48em), print {
  .lst_online li {
    width: calc((100% - 3rem) / 4);
  }
}

.psychiatric-medical-guidance .low_table_noframe {
  width: 100%;
}
.psychiatric-medical-guidance .low_table_noframe hr {
  border: 1px solid var(--main1);
}

.wrap_flow > section:not(:last-child)::after {
  content: "\f063";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  font-size: 2em;
  color: var(--main1);
  display: block;
  text-align: center;
  margin: 1rem 0 -2rem;
}
@media screen and (min-width: 48em), print {
  .wrap_flow > section:not(:last-child)::after {
    margin: 2rem 0 -2rem;
  }
}