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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body {
  overflow-wrap: break-word;
}

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

h5, h6 {
  margin: 0;
}

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

p {
  margin: 1em 0;
}

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

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

:root {
  --clr_txt: #4e4e4e;
  --clr_main: #0099db;
  --clr_sub: #b8e2e2;
  --clr_sub01: #afafaf;
  --clr_sub02: #c1c1c1;
  --clr_sub03: #f7fc94;
  --clr_sub04: #dfdfdf;
  --clr_sub05: #fffaee;
  --clr_sub06: #caf3fd;
  --clr_sub07: #b1dc47;
  --clr_sub08: #63c640;
  --clr_sub09: #ffba4a;
  --clr_sub10: #ffa91e;
  --clr_sub11: #5fc9eb;
  --clr_sub12: #ff8b7e;
  --clr_sub13: #d4f4ff;
  --clr_sub14: #ebf3d6;
  --clr_sub15: #63c640;
  --breakpoint: 576px;
}

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

.cf::after {
  clear: both;
}

.fl_l {
  float: left;
}

.fl_r {
  float: right;
}

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

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

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

.bold {
  font-weight: bold;
}

.txt_large {
  font-size: 120%;
}

.txt_small {
  font-size: 80%;
}

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

.link_txt {
  text-decoration: none !important;
  border-bottom: 1px var(--clr_main) solid;
  color: var(--clr_main);
}
.link_txt:hover {
  border-bottom: 1px var(--clr_sub10) solid;
  color: var(--clr_sub10);
}

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

.uline {
  border-bottom: 0.2rem var(--clr_sub08) solid;
}

.img_c {
  margin: 1rem auto;
}

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

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

@media screen and (width >= 36em), print {
  .img_l {
    float: left;
    margin: 0 3rem 2rem 0;
  }
  .img_r {
    float: right;
    margin: 0 0 2rem clamp(3.25rem, 0.25rem + 5.208vw, 6.5rem);
  }
  img.tate {
    max-width: 25% !important;
  }
}
.sp_n {
  display: none !important;
}

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

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

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

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

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

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

@media screen and (width >= 36em), print {
  .mt00 {
    margin-top: 0rem !important;
  }
  .mt10 {
    margin-top: 2.4rem !important;
  }
  .mt20 {
    margin-top: 4.8rem !important;
  }
  .mt30 {
    margin-top: 7.2rem !important;
  }
  .mt40 {
    margin-top: 9.6rem !important;
  }
  .main > section ~ section,
  .flex2 > section ~ section {
    margin-top: 9rem;
  }
  .main > section > section ~ section,
  .main > .flex2 > section ~ section,
  .flex2 > section > section ~ section,
  .flex2 > .flex2 > section ~ section {
    margin-top: 7rem;
  }
  .main > section > section > section ~ section,
  .main > section > .flex2 > section ~ section,
  .main > .flex2 > section > section ~ section,
  .main > .flex2 > .flex2 > section ~ section,
  .flex2 > section > section > section ~ section,
  .flex2 > section > .flex2 > section ~ section,
  .flex2 > .flex2 > section > section ~ section,
  .flex2 > .flex2 > .flex2 > section ~ section {
    margin-top: 5rem;
  }
  .main > section > section > section > section ~ section,
  .main > section > section > .flex2 > section ~ section,
  .main > section > .flex2 > section > section ~ section,
  .main > section > .flex2 > .flex2 > section ~ section,
  .main > .flex2 > section > section > section ~ section,
  .main > .flex2 > section > .flex2 > section ~ section,
  .main > .flex2 > .flex2 > section > section ~ section,
  .main > .flex2 > .flex2 > .flex2 > section ~ section,
  .flex2 > section > section > section > section ~ section,
  .flex2 > section > section > .flex2 > section ~ section,
  .flex2 > section > .flex2 > section > section ~ section,
  .flex2 > section > .flex2 > .flex2 > section ~ section,
  .flex2 > .flex2 > section > section > section ~ section,
  .flex2 > .flex2 > section > .flex2 > section ~ section,
  .flex2 > .flex2 > .flex2 > section > section ~ section,
  .flex2 > .flex2 > .flex2 > .flex2 > section ~ section {
    margin-top: 5rem;
  }
}
.tbl_time {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0 0 4rem;
}
.tbl_time caption {
  caption-side: bottom;
  text-align: left;
  margin-top: 0.8rem;
}
.tbl_time caption p {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.2rem;
  padding: 0 0 0 1rem;
}
.tbl_time caption p img {
  width: 1.6rem;
  margin: 0 0 0 1rem;
}
.tbl_time caption .circle {
  color: var(--clr_sub09);
}
.tbl_time caption table.cap {
  border-spacing: 1rem;
}
.tbl_time caption table.cap tr th {
  background: var(--clr_sub12);
  border-radius: 1rem;
  color: #fff;
  text-align: center;
  padding: 0;
  width: 30%;
  font-size: 90%;
}
.tbl_time caption table.cap tr th.online {
  background: var(--clr_sub08);
}
.tbl_time caption table.cap tr th.mado {
  background: var(--clr_sub11);
}
.tbl_time caption table.cap tr td {
  color: var(--clr_txt);
  text-align: left;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  border-bottom: 0;
  height: auto;
}
.tbl_time tr th[scope=col] {
  padding: 0.8rem 0;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  background: var(--clr_sub11);
}
.tbl_time tr th[scope=col]:first-child {
  border-radius: 1rem 0 0 0;
}
.tbl_time tr th[scope=col]:last-child {
  border-radius: 0 1rem 0 0;
}
.tbl_time tr th[scope=row] {
  font-weight: normal;
  background: #fff;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  border-bottom: 1px solid #b4b4b4;
}
.tbl_time tr th[scope=row] span {
  color: #fff;
  border-radius: 3rem;
  background: var(--clr_sub11);
  line-height: 1;
  padding: 0.2rem 1.2rem;
  display: block;
  width: 60%;
  margin: 0 auto;
}
.tbl_time tr th[scope=row] span.an2 {
  background: var(--clr_sub08);
}
.tbl_time tr th[scope=row] span.an4 {
  background: var(--clr_sub12);
}
.tbl_time tr td {
  background: #fff;
  text-align: center;
  padding: 1.8rem 0.4rem;
  border-bottom: 1px solid #b4b4b4;
  line-height: 1;
  color: var(--clr_sub09);
  font-size: 80%;
  height: 6rem;
}
.tbl_time tr td img {
  margin: 0 auto;
  width: 50%;
}
.tbl_time tr td.close {
  color: var(--clr_sub01);
}

@media screen and (width >= 36em), print {
  .tbl_time {
    table-layout: fixed;
    margin: 0;
  }
  .tbl_time caption {
    margin-top: 2rem;
    font-size: clamp(1.4rem, 1.0308rem + 0.641vw, 1.8rem);
  }
  .tbl_time caption p {
    padding: 0 0 0 clamp(0.4rem, -0.1538rem + 0.962vw, 1rem);
    font-size: clamp(1.1rem, 0.4538rem + 1.122vw, 1.8rem);
    letter-spacing: -0.06em;
    text-indent: -0.06em;
  }
  .tbl_time caption p img {
    margin: 0 0 0 clamp(0.6rem, -3.7385rem + 7.532vw, 5.3rem);
    width: clamp(1.4rem, 0.4769rem + 1.603vw, 2.4rem);
  }
  .tbl_time caption table.cap {
    margin: 1.2rem 0 0 0;
  }
  .tbl_time caption table.cap tr th {
    width: 14rem;
    padding: 0;
  }
  .tbl_time caption table.cap tr th br {
    display: none;
  }
  .tbl_time caption table.cap tr td {
    padding: 0;
  }
  .tbl_time tr th[scope=col] {
    font-size: clamp(1.6rem, 0.8615rem + 1.282vw, 2.4rem);
    padding: 1.8rem 0;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 30%;
  }
  .tbl_time tr th[scope=row] {
    font-size: clamp(1.6rem, 0.6769rem + 1.603vw, 2.6rem);
    padding: clamp(0.8rem, -0.5846rem + 2.404vw, 2.3rem) clamp(0rem, -2.1231rem + 3.686vw, 2.3rem);
  }
  .tbl_time tr th[scope=row] span {
    font-size: clamp(1.2rem, 0.6462rem + 0.962vw, 1.8rem);
    padding: 0.25rem clamp(1rem, 0.6308rem + 0.641vw, 1.4rem);
    margin: 0 clamp(0.8rem, -0.2154rem + 1.763vw, 1.9rem) 0 0;
    display: inline-block;
    width: auto;
  }
  .tbl_time tr td {
    padding: clamp(1.4rem, 0.8462rem + 0.962vw, 2rem) 0;
    font-size: clamp(1.4rem, 1.0308rem + 0.641vw, 1.8rem);
    height: 9.7rem;
  }
  .tbl_time tr td img {
    width: clamp(1.68rem, 0.6462rem + 1.795vw, 2.8rem);
    height: clamp(1.98rem, 0.7615rem + 2.115vw, 3.3rem);
  }
}
.gmap {
  width: 100%;
}

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

.tit_01 {
  display: grid;
  place-content: center;
  place-items: center;
  min-height: 10rem;
  background: url(../img/tit_01.webp) no-repeat center/cover;
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
  overflow: hidden;
}

.tit_02 {
  text-align: center;
  font-size: 2.2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  margin: 0 auto 2rem;
}
.tit_02::after {
  content: "";
  display: block;
  width: clamp(4rem, 1.2308rem + 4.808vw, 7rem);
  height: 2px;
  background: var(--clr_sub11);
  margin: 1rem auto 0;
}

.tit_03 {
  padding: 0.4rem 1rem 0.4rem 1.4rem;
  background: var(--clr_sub11);
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.4;
  margin: 0 0 2rem;
  border-radius: 1rem;
}

.tit_04 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.4;
  padding: 0 0 0.4rem;
  border-bottom: 2px solid #e1e1e1;
  margin: 0 0 2rem;
}
.tit_04::before {
  content: "";
  display: block;
  width: 2px;
  height: auto;
  background: var(--clr_sub09);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 2px;
          flex: 0 0 2px;
  border-radius: 0.3rem;
}

.tit_05 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.4rem;
}
.tit_05::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background: #cde29a;
  border-radius: 0.6rem;
}

.tit_06 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 2rem;
}

@media screen and (width >= 36em), print {
  .tit_01 {
    background: url(../img/tit_01.webp) no-repeat center/auto;
    min-height: clamp(13.85rem, 8.1731rem + 9.856vw, 20rem);
    font-size: clamp(2.2rem, 1.0923rem + 1.923vw, 3.4rem);
    margin: clamp(1rem, 0.0769rem + 1.603vw, 2rem) 0 0 0;
  }
  .tit_02 {
    font-size: clamp(2.6rem, 1.3077rem + 2.244vw, 4rem);
    margin: 0 auto 4rem;
  }
  .tit_03 {
    font-size: clamp(1.43rem, 0.7192rem + 1.234vw, 2.2rem);
    padding: 0.86rem 2rem;
    margin: 0 0 3rem;
  }
  .tit_04 {
    gap: 1.2rem;
    font-size: clamp(1.43rem, 0.7192rem + 1.234vw, 2.2rem);
    padding: 0 0 0.8rem;
    margin: 0 0 3rem;
  }
  .tit_04::before {
    width: 0.6rem;
  }
  .tit_05 {
    font-size: clamp(1.3rem, 0.6538rem + 1.122vw, 2rem);
    margin: 0 0 3rem;
    gap: 0 1rem;
  }
  .tit_05::before {
    width: clamp(1.17rem, 0.5885rem + 1.01vw, 1.8rem);
    height: clamp(1.17rem, 0.5885rem + 1.01vw, 1.8rem);
  }
  .tit_06 {
    font-size: clamp(1.3rem, 0.6538rem + 1.122vw, 2rem);
    margin: 0 0 3rem;
  }
}
.lst_ul {
  line-height: 1.4;
  margin: 1rem 0;
}
.lst_ul > li {
  padding: 0 0 0 1.4em;
  position: relative;
}
.lst_ul > li:not(:last-child) {
  margin: 0 0 1rem;
}
.lst_ul > li::before {
  content: "●";
  color: var(--clr_sub11);
  position: absolute;
  left: 0;
}
.lst_ul.kome > li::before {
  content: "※";
  color: inherit;
}

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

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

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

@media screen and (width >= 36em), print {
  .lst_dl01 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .lst_dl01 dt {
    width: 15%;
  }
  .lst_dl01 dd {
    width: 85%;
    padding: 0 0 0 1rem;
  }
}
.lst_dl02 {
  margin-top: 2rem;
}
.lst_dl02 dt {
  background: var(--clr_sub06);
  padding: 0.4rem 1rem;
  border-top: 1px solid var(--clr_sub06);
  border-right: 1px solid var(--clr_sub06);
  border-left: 1px solid var(--clr_sub06);
}
.lst_dl02 dd {
  margin: 0;
  padding: 1rem;
  border-right: 1px solid #dfdfdf;
  border-left: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
}

.lst_dl_qa {
  margin-top: 2rem;
}
.lst_dl_qa dt {
  background: var(--clr_sub06);
  padding: 0.4rem 1rem;
  border-top: 1px solid var(--clr_sub06);
  border-right: 1px solid var(--clr_sub06);
  border-left: 1px solid var(--clr_sub06);
}
.lst_dl_qa dd {
  margin: 0;
  padding: 1rem 1rem 2rem;
}

p.kome {
  padding: 0 0 0 1.2em;
  position: relative;
}
p.kome::before {
  content: "※";
  position: absolute;
  left: 0;
}

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

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

.box_01, .box_02 {
  padding: 1rem;
  background: var(--clr_sub05);
  border-radius: 0.6rem;
}
@media screen and (width >= 36em), print {
  .box_01, .box_02 {
    padding: 3rem;
    border-radius: 0.8rem;
  }
}

.box_02 {
  background: #effcff;
}

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

/*
.btn_line {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 2.2rem;
  padding: 2rem 4rem;
  @include mincho;
  font-size: 1.8rem;
  text-decoration: none !important;
  border: 4px solid var(--clr_green_light);
  &::before {
    // アイコン
    display: block;
    content: "";
    width: 4rem;
    aspect-ratio: 1;
    background: url(../img/icon_line.svg) no-repeat center / contain;
    flex: 0 0 4rem;
  }
  @include pc {
    padding: 2rem 7rem;
    font-size: 2.8rem;
    @include hover {
      opacity: 1;
      color: var(--clr_green_line) !important;
    }
  }
}
*/
.btn_detail {
  display: inline-block;
  padding: 0.6rem 3rem;
  background: var(--clr_sub11);
  color: #fff;
  text-decoration: none !important;
  border-radius: 3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
}
@media screen and (width >= 36em), print {
  .btn_detail {
    padding: 1.16rem clamp(1.8rem, -2.7231rem + 7.853vw, 6.7rem);
    font-size: clamp(1.2rem, 0.6462rem + 0.962vw, 1.8rem);
  }
  .btn_detail:hover {
    background: #f1be57;
    opacity: 1;
  }
}

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

.tbl_lst {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.tbl_lst th {
  width: 28%;
  padding: 0.4rem 1rem;
  font-weight: normal;
  background: var(--clr_sub05);
  border: 1px solid #dfdfdf;
}
.tbl_lst td {
  padding: 1rem;
  border: 1px solid #dfdfdf;
  font-weight: normal;
}

@media screen and (width >= 36em), print {
  .tbl_lst th {
    padding: 0.4rem 2rem;
  }
  .tbl_lst td {
    padding: 2rem 3rem;
    border: 1px solid #dfdfdf;
  }
}
.tbl_lst2 {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.tbl_lst2 th {
  padding: 1rem 1rem;
  border: 1px solid #dfdfdf;
  background: var(--clr_sub06);
  font-weight: normal;
}
.tbl_lst2 td {
  padding: 1rem 1rem;
  border: 1px solid #dfdfdf;
  font-weight: normal;
}
.tbl_lst2 td:first-of-type {
  background: var(--clr_sub05);
}

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

@media screen and (width >= 36em), print {
  .slick-arrow {
    width: clamp(1.2rem, 0.4615rem + 1.282vw, 2rem);
    height: clamp(1.2rem, 0.4615rem + 1.282vw, 2rem);
    top: clamp(17.3rem, 9.2692rem + 13.942vw, 26rem);
  }
  .slick-arrow::before {
    font-size: clamp(3rem, 1.1538rem + 3.205vw, 5rem);
  }
  .slick-arrow.slick-prev {
    left: clamp(-6rem, -1.3846rem + -3.846vw, -3.6rem);
  }
  .slick-arrow.slick-next {
    right: clamp(-6rem, -1.3846rem + -3.846vw, -3.6rem);
  }
}
@media screen and (width >= 36em) and (hover: hover), print and (hover: hover) {
  .slick-arrow {
    opacity: 1;
  }
  .slick-arrow:where(:-moz-any-link, :enabled, summary):hover {
    color: var(--clr_sub14);
    opacity: 1;
  }
  .slick-arrow:where(:any-link, :enabled, summary):hover {
    color: var(--clr_sub14);
    opacity: 1;
  }
}
@media screen and (width >= 36em), print {
  .slick-arrow:focus-visible {
    color: var(--clr_sub14);
    opacity: 1;
  }
}
.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin: 1rem auto;
}
.slick-dots li {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 0.2rem;
}
.slick-dots li button {
  padding: 50%;
  display: block;
  font-size: 0;
  cursor: pointer;
  opacity: 0.25;
  border-radius: 50%;
  background: var(--clr_sub13);
}
@media (hover: hover) {
  .slick-dots li button {
    opacity: 1;
  }
  .slick-dots li button:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.8;
  }
  .slick-dots li button:where(:any-link, :enabled, summary):hover {
    opacity: 0.8;
  }
}
.slick-dots li button:focus-visible {
  opacity: 0.8;
}
.slick-dots li.slick-active button {
  background: var(--clr_sub11) !important;
}

@media screen and (width >= 36em), print {
  .slick-dots {
    margin: 1.6rem auto;
  }
  .slick-dots li {
    width: 1.4rem;
    height: 1.4rem;
    margin: 0 0.6rem;
  }
}
.fuwa {
  -webkit-animation: fuwa 3s ease-in-out infinite alternate;
          animation: fuwa 3s ease-in-out infinite alternate;
  display: inline-block;
  -webkit-transition: 1.5s ease-in-out;
  transition: 1.5s ease-in-out;
  position: absolute;
  z-index: 10;
}

.yura {
  -webkit-animation: yura 6s ease-in-out infinite alternate;
          animation: yura 6s ease-in-out infinite alternate;
  display: inline-block;
  -webkit-transition: 2.5s ease-in-out;
  transition: 2.5s ease-in-out;
  position: absolute;
  z-index: 10;
}

.puka {
  -webkit-animation: puka 8s ease-in-out infinite alternate;
          animation: puka 8s ease-in-out infinite alternate;
  display: inline-block;
  -webkit-transition: 4s ease-in-out;
  transition: 4s ease-in-out;
  position: absolute;
  z-index: 10;
}

html {
  font-size: 2.7777777778vw;
}

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

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

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

@media screen and (width >= 36em), print {
  html {
    font-size: 62.5%;
  }
  body {
    overflow-x: clip;
  }
  body::after {
    display: none;
  }
  a,
  button {
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  a img,
  button img {
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
}
@media screen and (width >= 36em) and (hover: hover), print and (hover: hover) {
  a,
  button {
    opacity: 1;
  }
  a:where(:-moz-any-link, :enabled, summary):hover, button:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.8;
  }
  a:where(:any-link, :enabled, summary):hover,
  button:where(:any-link, :enabled, summary):hover {
    opacity: 0.8;
  }
  a:where(:-moz-any-link, :enabled, summary):hover img, button:where(:-moz-any-link, :enabled, summary):hover img {
    opacity: 0.8;
  }
  a:where(:any-link, :enabled, summary):hover img,
  button:where(:any-link, :enabled, summary):hover img {
    opacity: 0.8;
  }
}
@media screen and (width >= 36em), print {
  a:focus-visible,
  button:focus-visible {
    opacity: 0.8;
  }
  a:focus-visible img,
  button:focus-visible img {
    opacity: 0.8;
  }
  .wrap {
    max-width: 1200px;
    margin: auto;
  }
  .main {
    font-size: clamp(1.4rem, 1.0308rem + 0.641vw, 1.8rem);
    line-height: 1.7;
  }
  .main a:not([class*=btn]):hover {
    opacity: 1;
    text-decoration: none;
  }
  .main p {
    text-align: justify;
    letter-spacing: 0.05em;
    text-indent: 0.05em;
  }
}
:target {
  scroll-margin-top: 3rem;
}
@media screen and (width >= 36em), print {
  :target {
    scroll-margin-top: 10rem;
  }
}

.header {
  position: relative;
  background: url(../img/bg_header.svg) no-repeat top center/cover;
}
.header > .wrap {
  padding: 1rem;
}
.header > .wrap .logo {
  width: 100%;
  height: 6.6rem;
  padding: 1rem;
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.header > .wrap .logo.hide {
  -webkit-transform: translateY(-150%);
          transform: translateY(-150%);
}
.header > .wrap .logo a {
  display: block;
  width: calc(100% - 5.6rem);
  height: 100%;
  background: url(../img/logo.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 {
  margin: 5.6rem 0 0;
}
.header > .wrap .headR .ads li {
  text-align: center;
  font-size: 1.3rem;
  color: #fff;
  background: var(--clr_sub11);
  border-radius: 3rem;
  letter-spacing: 0.1rem;
}

@media screen and (width >= 36em), print {
  .header > .wrap {
    padding: clamp(1.6rem, 0.9538rem + 1.122vw, 2.3rem) clamp(0rem, 3.8462rem + -3.205vw, 2rem) clamp(1rem, 0.4rem + 1.042vw, 1.65rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header > .wrap .logo {
    width: clamp(24rem, -2.6769rem + 46.314vw, 52.9rem);
    height: 7rem;
    padding: 0;
    position: relative;
    z-index: 101;
    background: none;
  }
  .header > .wrap .logo a {
    width: 100%;
  }
  .header > .wrap .headR {
    width: auto;
    margin: 0;
  }
  .header > .wrap .headR .ads li {
    text-align: center;
    width: clamp(27rem, 13.9846rem + 22.596vw, 41.1rem);
    font-size: clamp(1.2rem, 0.7385rem + 0.801vw, 1.7rem);
    padding: 0.425rem 0;
  }
}
.pc_fix {
  display: none;
}

@media screen and (width >= 36em), print {
  .pc_fix {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 0 clamp(1rem, -0.3846rem + 2.404vw, 2.5rem);
    position: fixed;
    bottom: 0;
    right: clamp(0.1rem, -0.7308rem + 1.442vw, 1rem);
    z-index: 101;
  }
  .pc_fix .btn_tel,
  .pc_fix .btn_rsv_b,
  .pc_fix .btn_monshin,
  .pc_fix .btn_line {
    color: #fff;
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    height: clamp(3rem, -0.6923rem + 6.41vw, 7rem);
    border: 1px #fff solid;
    border-radius: clamp(1rem, -0.8462rem + 3.205vw, 3rem) clamp(1rem, -0.8462rem + 3.205vw, 3rem) 0 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;
    gap: 0 0.5rem;
  }
  .pc_fix .btn_tel::before,
  .pc_fix .btn_rsv_b::before,
  .pc_fix .btn_monshin::before,
  .pc_fix .btn_line::before {
    font-weight: normal;
  }
  .pc_fix .btn_tel:hover,
  .pc_fix .btn_rsv_b:hover,
  .pc_fix .btn_monshin:hover,
  .pc_fix .btn_line:hover {
    opacity: 0.8;
  }
  .pc_fix .btn_tel {
    background: var(--clr_main);
    width: clamp(15.5rem, 1.1923rem + 24.84vw, 31rem);
    font-size: clamp(1.4rem, -0.0769rem + 2.564vw, 3rem);
  }
  .pc_fix .btn_tel::before {
    font-family: "fontello";
    content: "\ec34";
  }
  .pc_fix .btn_rsv_b,
  .pc_fix .btn_monshin,
  .pc_fix .btn_line {
    font-size: clamp(1.4rem, 0.1077rem + 2.244vw, 2.8rem);
  }
  .pc_fix .btn_rsv_b {
    background: var(--clr_sub08);
    width: clamp(11.45rem, 0.8808rem + 18.349vw, 22.9rem);
  }
  .pc_fix .btn_rsv_b::before {
    font-family: "fontello";
    content: "\ecf1";
  }
  .pc_fix .btn_monshin {
    background: var(--clr_sub12);
    width: clamp(13.1rem, 1.0077rem + 20.994vw, 26.2rem);
  }
  .pc_fix .btn_monshin::before {
    font-family: "fontello";
    content: "\ecf2";
  }
  .pc_fix .btn_line {
    background: var(--clr_sub15);
    width: clamp(9rem, 0.6923rem + 14.423vw, 18rem);
  }
  .pc_fix .btn_line::before {
    font-family: "fontello";
    content: "\ecf3";
  }
}
#nav {
  width: 100vw;
  background: #fff;
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
}
#nav #sp_menu {
  width: 4.6rem;
  height: 4.6rem;
  color: #fff;
  background: var(--clr_main);
  text-align: center;
  line-height: 1;
  font-size: 1rem;
  padding: 0;
  position: absolute;
  inset: 1rem 1rem auto auto;
  z-index: 100;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#nav #sp_menu.hide {
  -webkit-transform: translateY(-220%);
          transform: translateY(-220%);
}
#nav #sp_menu::before {
  display: block;
  font-family: "fontello";
  content: "\ecd5";
  font-size: 2.6rem;
}
#nav #sp_menu::after {
  display: block;
  content: "MENU";
  margin: 0.2rem 0 0;
}
#nav #sp_menu.close::before {
  font-family: "fontello";
  content: "\ecd4";
}
#nav #sp_menu.close::after {
  content: "CLOSE";
}
#nav #sp_menu span {
  display: none;
}
#nav .gnav_subnav {
  display: none;
  width: 94vw;
  max-height: calc(100dvh - 8rem);
  overflow-y: auto;
  background: #fff;
  -webkit-box-shadow: 0 0.4rem 0.6rem 0.2rem rgba(var(--rgb_txt), 0.2);
          box-shadow: 0 0.4rem 0.6rem 0.2rem rgba(var(--rgb_txt), 0.2);
  padding: 1.6rem;
  margin: auto;
  position: absolute;
  inset: 6.6rem 0 auto;
  z-index: 100;
}
#nav .gnav_subnav .gnav > li:not(:last-child) {
  border-bottom: 1px dotted var(--clr_sub02);
}
#nav .gnav_subnav .gnav > li > a,
#nav .gnav_subnav .gnav > li > .sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  width: 100%;
  text-align: left;
  padding: 1rem 2rem 1.6rem;
  font-size: 1.4rem;
  position: relative;
}
#nav .gnav_subnav .gnav > li > a::before,
#nav .gnav_subnav .gnav > li > .sub::before {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.2rem;
  position: absolute;
  inset: auto auto auto 0.6rem;
}
#nav .gnav_subnav .gnav > li > a.current::before,
#nav .gnav_subnav .gnav > li > .sub.current::before {
  background: var(--clr_main);
}
#nav .gnav_subnav .gnav > li .sub::after {
  content: "";
  background: url(../img/arrow.svg) no-repeat center/contain;
  width: 1.2rem;
  height: 0.6rem;
  color: var(--clr_sub11);
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  margin: 0 0 0 auto;
}
#nav .gnav_subnav .gnav > li .sub.close::after {
  scale: 1 -1;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: #fff;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li {
  width: 50%;
  border: 1px #edece6 solid;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav 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;
  text-align: center;
  height: 100%;
  gap: 0.4rem;
  padding: 1rem 0.4rem;
  font-size: 1.2rem;
  color: var(--clr_txt);
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a.current {
  background: var(--clr_main);
  color: #fff;
}
#nav .gnav_subnav #menu_close {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  color: var(--clr_sub01);
  background: var(--clr_sub04);
  text-align: center;
  padding: 0.6rem 0;
  margin: 2rem 0 0;
}
#nav .gnav_subnav #menu_close::before {
  font-family: "fontello";
  content: "\ecd4";
  margin: 0 0.6rem 0 0;
}

@media screen and (width >= 36em), print {
  #nav {
    width: auto;
    position: sticky;
    inset: 0 0 auto;
    -webkit-transition: 0.8s;
    transition: 0.8s;
  }
  #nav.hide {
    -webkit-transform: translateY(-300%);
            transform: translateY(-300%);
  }
  #nav #sp_menu {
    display: none;
  }
  #nav .gnav_subnav {
    display: block !important;
    width: 100%;
    max-height: inherit;
    -webkit-box-shadow: none;
            box-shadow: none;
    overflow-y: visible;
    background: none;
    padding: 1rem 0 clamp(0rem, 1.9231rem + -1.603vw, 1rem);
    position: static;
  }
  #nav .gnav_subnav .gnav {
    max-width: 1200px;
    margin: 0 auto clamp(1.4rem, 0.0154rem + 2.404vw, 2.9rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: none;
  }
  #nav .gnav_subnav .gnav > li {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    position: relative;
  }
  #nav .gnav_subnav .gnav > li:not(:last-child) {
    border-bottom: none;
    border-right: var(--clr_sub11) 0.2rem dotted;
    /*
    &::after {
      content: "";              
      display: block;
      width: 0.1rem;
      height: 2rem;
      background: var(--clr_sub11);
      position: absolute;
      inset: 1.8rem 0 0 auto;
    }*/
  }
  #nav .gnav_subnav .gnav > li > a,
  #nav .gnav_subnav .gnav > li > .sub {
    display: block;
    text-align: center;
    font-size: clamp(1rem, 0.2615rem + 1.282vw, 1.8rem);
    padding: 0 clamp(0.1rem, -1.6538rem + 3.045vw, 2rem);
    margin: 0;
    cursor: pointer;
  }
  #nav .gnav_subnav .gnav > li > a::before,
  #nav .gnav_subnav .gnav > li > .sub::before {
    width: 67%;
    height: 0.2rem;
    margin: auto;
    position: absolute;
    top: clamp(3rem, 1.8923rem + 1.923vw, 4.2rem);
    left: 0;
    right: 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  #nav .gnav_subnav .gnav > li > a::after,
  #nav .gnav_subnav .gnav > li > .sub::after {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: clamp(3rem, 2.0769rem + 1.603vw, 4rem);
  }
  #nav .gnav_subnav .gnav > li > a.current,
  #nav .gnav_subnav .gnav > li > .sub.current {
    -webkit-transition: 0s;
    transition: 0s;
  }
  #nav .gnav_subnav .gnav > li > a.current::before,
  #nav .gnav_subnav .gnav > li > .sub.current::before {
    background: var(--clr_sub11);
  }
}
@media screen and (width >= 36em) and (hover: hover), print and (hover: hover) {
  #nav .gnav_subnav .gnav > li a {
    opacity: 1;
  }
  #nav .gnav_subnav .gnav > li a:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 1;
  }
  #nav .gnav_subnav .gnav > li a:where(:any-link, :enabled, summary):hover {
    opacity: 1;
  }
  #nav .gnav_subnav .gnav > li a:where(:-moz-any-link, :enabled, summary):hover::before {
    background: var(--clr_sub11);
  }
  #nav .gnav_subnav .gnav > li a:where(:any-link, :enabled, summary):hover::before {
    background: var(--clr_sub11);
  }
}
@media screen and (width >= 36em), print {
  #nav .gnav_subnav .gnav > li a:focus-visible {
    opacity: 1;
  }
  #nav .gnav_subnav .gnav > li a:focus-visible::before {
    background: var(--clr_sub11);
  }
  #nav .gnav_subnav .gnav > li .subbox {
    display: none;
    width: clamp(19rem, 15.3077rem + 6.41vw, 23rem);
    position: absolute;
    top: clamp(4rem, 1.6923rem + 4.006vw, 6.5rem);
    left: -12%;
    z-index: 100;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav {
    display: block;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li {
    width: 100%;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a {
    font-size: clamp(1.4rem, 1.0308rem + 0.641vw, 1.8rem);
    padding: 1.6rem clamp(1rem, 0.6308rem + 0.641vw, 1.4rem);
  }
}
@media screen and (width >= 36em) and (hover: hover), print and (hover: hover) {
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a {
    opacity: 1;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a:where(:-moz-any-link, :enabled, summary):hover {
    background: var(--clr_sub11);
    color: #fff;
    opacity: 1;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a:where(:any-link, :enabled, summary):hover {
    background: var(--clr_sub11);
    color: #fff;
    opacity: 1;
  }
}
@media screen and (width >= 36em), print {
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a:focus-visible {
    background: var(--clr_sub11);
    color: #fff;
    opacity: 1;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a.current {
    -webkit-transition: 0s;
    transition: 0s;
  }
  #nav .gnav_subnav .gnav > li .subbox_clinic {
    left: -12%;
  }
  #nav .gnav_subnav .gnav > li .subbox_nav {
    left: -34%;
  }
  #nav .gnav_subnav .gnav > li .subbox_symptom {
    width: clamp(36rem, 4.6154rem + 54.487vw, 70rem);
    left: -27rem;
  }
  #nav .gnav_subnav .gnav > li .subbox_symptom > .subnav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #nav .gnav_subnav .gnav > li .subbox_symptom > .subnav li {
    width: 33.3333333333%;
  }
  #nav .gnav_subnav #menu_close {
    display: none;
  }
  #nav.fix_nav {
    background: #fff;
  }
  #nav.fix_nav .gnav_subnav {
    padding: 0.6rem 0 0.1rem;
  }
}
.overview {
  margin: 0;
  padding: 4rem 0 0;
  background: var(--clr_sub05);
  font-size: 1.4rem;
  line-height: 1.6;
}
.overview > .wrap {
  margin: 0 1rem;
  padding: 2rem 1rem;
  background: #fff;
  border-radius: 1rem;
}
.overview > .wrap .overviewR {
  margin: 3rem auto 0;
}
.overview > .wrap .overviewL .clinic_name,
.overview > .wrap .overviewR .clinic_name {
  margin: 0;
}
.overview > .wrap .overviewL .clinic_name img,
.overview > .wrap .overviewR .clinic_name img {
  max-width: 80%;
  margin: auto;
}
.overview > .wrap .overviewL .tel_add,
.overview > .wrap .overviewR .tel_add {
  text-align: center;
  line-height: 1;
  margin: 0.6rem 0 3rem;
}
.overview > .wrap .overviewL .tel_add .tel,
.overview > .wrap .overviewR .tel_add .tel {
  font-size: 1.8rem;
  margin: 0 0 1rem;
}
.overview > .wrap .overviewL .gaiyo,
.overview > .wrap .overviewR .gaiyo {
  width: 100%;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.overview > .wrap .overviewL .gaiyo dt,
.overview > .wrap .overviewR .gaiyo dt {
  width: 26%;
  padding: 0.6rem 0;
  margin: 0 0 1.5rem;
  text-align: center;
  color: #fff;
  background: var(--clr_sub11);
  border-radius: 1rem;
}
.overview > .wrap .overviewL .gaiyo dd,
.overview > .wrap .overviewR .gaiyo dd {
  width: 74%;
  margin: 0 0 1rem;
  padding: 0 0 0 0.8rem;
}
.overview > .wrap .overviewL .gaiyo dd .tel,
.overview > .wrap .overviewR .gaiyo dd .tel {
  font-size: 120%;
}
.overview > .wrap .overviewL .tit,
.overview > .wrap .overviewR .tit {
  color: #fff;
  background: var(--clr_sub11);
  border-radius: 1rem;
  margin: 0;
  padding: 0.6rem 1rem;
}
.overview > .wrap .overviewL .img_pay,
.overview > .wrap .overviewR .img_pay {
  margin: 1rem auto 0;
  width: 80%;
}
.overview > .wrap .overviewL .tbl_time,
.overview > .wrap .overviewR .tbl_time {
  margin: 0;
}
.overview > .wrap .overviewL .tbl_time tr th[scope=row] span,
.overview > .wrap .overviewR .tbl_time tr th[scope=row] span {
  display: block;
  margin: 0 auto;
}
.overview .gmap {
  margin: 4rem 0 0;
  height: 100vw;
}

@media screen and (width >= 36em), print {
  .overview {
    padding: clamp(4rem, 0.3077rem + 6.41vw, 8rem) clamp(0rem, 3.8462rem + -3.205vw, 2rem) 0;
    font-size: clamp(1.6rem, 1.4154rem + 0.321vw, 1.8rem);
  }
  .overview > .wrap {
    border-radius: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: clamp(4rem, 2.1538rem + 3.205vw, 6rem) 0;
    margin: auto;
    padding: clamp(3rem, 0.6923rem + 4.006vw, 5.5rem) clamp(1rem, -2.6923rem + 6.41vw, 5rem);
  }
  .overview > .wrap .overviewL {
    width: 44.5454545455%;
  }
  .overview > .wrap .overviewR {
    width: 50%;
    margin: 0;
  }
  .overview > .wrap .overviewL,
  .overview > .wrap .overviewR {
    margin: 0;
  }
  .overview > .wrap .overviewL .clinic_name img,
  .overview > .wrap .overviewR .clinic_name img {
    max-width: clamp(30rem, 15.7846rem + 24.679vw, 45.4rem);
    width: 100%;
  }
  .overview > .wrap .overviewL .tel_add,
  .overview > .wrap .overviewR .tel_add {
    margin: 0.8rem 0 4.45rem;
    line-height: 1.3;
  }
  .overview > .wrap .overviewL .tel_add .tel,
  .overview > .wrap .overviewR .tel_add .tel {
    font-size: 2.8rem;
    margin: 0 0 1.2rem;
  }
  .overview > .wrap .overviewL .gaiyo dt,
  .overview > .wrap .overviewR .gaiyo dt {
    width: 17.695%;
    padding: 0.921rem 0;
    font-size: 1.6rem;
  }
  .overview > .wrap .overviewL .gaiyo dd,
  .overview > .wrap .overviewR .gaiyo dd {
    width: 82.305%;
    padding: 0.921rem 0 0.921rem 1.7rem;
    font-size: clamp(1.4rem, 1.0308rem + 0.641vw, 1.8rem);
  }
  .overview > .wrap .overviewL .tit,
  .overview > .wrap .overviewR .tit {
    margin: 0.8rem 0 0 0;
    font-size: 1.6rem;
    padding: 0.921rem 0 0.921rem 0.9rem;
  }
  .overview > .wrap .overviewL .img_pay,
  .overview > .wrap .overviewR .img_pay {
    width: auto;
  }
  .overview > .wrap .overviewL .tbl_time caption table.cap tr th,
  .overview > .wrap .overviewR .tbl_time caption table.cap tr th {
    width: 9.4rem;
    padding: 0.521rem 0;
    font-size: clamp(1.2rem, 0.8308rem + 0.641vw, 1.6rem);
  }
  .overview > .wrap .overviewL .tbl_time caption table.cap tr th br,
  .overview > .wrap .overviewR .tbl_time caption table.cap tr th br {
    display: block;
  }
  .overview > .wrap .overviewL .tbl_time caption table.cap tr td,
  .overview > .wrap .overviewR .tbl_time caption table.cap tr td {
    font-size: clamp(1.2rem, 0.6462rem + 0.962vw, 1.8rem);
  }
  .overview > .wrap .overviewL .tbl_time tr th[scope=col],
  .overview > .wrap .overviewR .tbl_time tr th[scope=col] {
    font-size: clamp(1.6rem, 1.0462rem + 0.962vw, 2.2rem);
    padding: 1rem 0;
  }
  .overview > .wrap .overviewL .tbl_time tr th[scope=row],
  .overview > .wrap .overviewR .tbl_time tr th[scope=row] {
    font-size: clamp(1.4rem, 0.6615rem + 1.282vw, 2.2rem);
  }
  .overview > .wrap .overviewL .tbl_time tr th[scope=row] span,
  .overview > .wrap .overviewR .tbl_time tr th[scope=row] span {
    padding: 0.65rem 0;
    width: 6.4rem;
  }
  .overview .gmap {
    margin: 8rem 0 0;
    height: 50rem;
  }
}
#tel_up {
  width: 100%;
  height: 4rem;
  background: #fff;
  visibility: hidden;
  position: fixed;
  inset: auto 0 0;
  z-index: 10;
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 -0.2rem 0.2rem rgba(var(--rgb_txt), 0.2);
          box-shadow: 0 -0.2rem 0.2rem rgba(var(--rgb_txt), 0.2);
}
#tel_up ul {
  width: 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;
}
#tel_up ul li {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  height: 100%;
  text-align: center;
}
#tel_up ul li.telno a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  font-size: 1.4rem;
  background: var(--clr_main);
  color: #fff;
}
#tel_up ul li.telno a::before {
  color: #fff;
}
#tel_up ul li .btn_rsv_s,
#tel_up ul li .btn_monshin,
#tel_up ul li .btn_line {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.3rem;
  font-size: 1.3rem;
}
#tel_up ul li .btn_rsv_s {
  height: 100%;
  background: var(--clr_sub08);
}
#tel_up ul li .btn_rsv_s::before {
  font-family: "fontello";
  content: "\ecf1";
}
#tel_up ul li .btn_monshin {
  height: 100%;
  background: var(--clr_sub12);
}
#tel_up ul li .btn_monshin::before {
  font-family: "fontello";
  content: "\ecf2";
}
#tel_up ul li .btn_line {
  height: 100%;
  background: var(--clr_sub15);
}
#tel_up ul li .btn_line::before {
  font-family: "fontello";
  content: "\ecf3";
}
#tel_up #pageup {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  text-align: center;
  padding: 0 0 0 0.8rem;
  line-height: 1;
  overflow: hidden;
  z-index: 101;
  position: absolute;
  right: 1rem;
  top: -4.5rem;
}
#tel_up #pageup::before {
  display: block;
  content: "";
  background: url(../img/img_pagetop.svg) no-repeat center/contain;
  width: 4rem;
  height: 4rem;
}
#tel_up #pageup .clip {
  display: block;
  font-size: 1.2rem;
  color: var(--clr_txt);
  position: absolute;
  margin: auto;
  inset: 1.4rem 0 0 0.8rem;
  z-index: 0;
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.05em;
  text-indent: -0.05em;
}

@media screen and (width >= 36em), print {
  #tel_up {
    display: block;
    width: clamp(5.88rem, 3.5538rem + 4.038vw, 8.4rem);
    height: clamp(5.88rem, 3.5538rem + 4.038vw, 8.4rem);
    inset: auto 4rem clamp(3rem, -0.6923rem + 6.41vw, 7rem) auto;
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  #tel_up ul {
    display: none;
  }
  #tel_up #pageup {
    width: 100%;
    border-radius: 50%;
    padding: 0;
    top: inherit;
    right: 0;
  }
  #tel_up #pageup::before {
    width: clamp(5.88rem, 3.5538rem + 4.038vw, 8.4rem);
    height: clamp(5.88rem, 3.5538rem + 4.038vw, 8.4rem);
  }
  #tel_up #pageup .clip {
    font-size: clamp(1.4rem, 0.8462rem + 0.962vw, 2rem);
    top: clamp(2.1rem, 1.2692rem + 1.442vw, 3rem);
    inset: clamp(2.1rem, 1.2692rem + 1.442vw, 3rem) 0 0 0;
  }
}
@media screen and (width >= 36em) and (hover: hover), print and (hover: hover) {
  #tel_up #pageup {
    opacity: 1;
  }
  #tel_up #pageup:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.8;
  }
  #tel_up #pageup:where(:any-link, :enabled, summary):hover {
    opacity: 0.8;
  }
}
@media screen and (width >= 36em), print {
  #tel_up #pageup:focus-visible {
    opacity: 0.8;
  }
}
.footer {
  text-align: center;
  padding: 0 0 4rem;
  color: var(__clr_txt);
  background: #fff;
}
.footer .copy {
  background: var(--clr_sub11);
  color: #fff;
  display: block;
  padding: 0.6rem 1rem;
  font-size: 1.2rem;
  text-align: left;
}
.footer ul {
  display: none;
}

@media screen and (width >= 36em), print {
  .footer {
    padding: 4.2rem 0 0;
  }
  .footer .copy {
    margin: 4.7rem 0 0;
    padding: 3.1rem 0;
  }
  .footer .copy div {
    text-align: left;
    font-size: clamp(1.4rem, 1.0308rem + 0.641vw, 1.8rem);
    padding: 0 0 0 clamp(0rem, 3.8462rem + -3.205vw, 2rem);
  }
  .footer ul {
    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;
  }
  .footer ul li {
    display: inline-block;
    font-size: clamp(1.4rem, 1.2154rem + 0.321vw, 1.6rem);
  }
}
@media screen and (width >= 36em) and (hover: hover), print and (hover: hover) {
  .footer ul li a {
    opacity: 1;
  }
  .footer ul li a:where(:-moz-any-link, :enabled, summary):hover {
    text-decoration: underline;
    opacity: 1;
  }
  .footer ul li a:where(:any-link, :enabled, summary):hover {
    text-decoration: underline;
    opacity: 1;
  }
}
@media screen and (width >= 36em), print {
  .footer ul li a:focus-visible {
    text-decoration: underline;
    opacity: 1;
  }
  .footer ul.gnav {
    margin: 0 0 2.4rem;
  }
  .footer ul.gnav li::before {
    font-family: "fontello";
    content: "\ec6b";
    color: var(--clr_sub11);
    margin: 0 clamp(0.4rem, -0.1538rem + 0.962vw, 1rem) 0 0;
  }
  .footer ul.gnav li:not(:last-child) {
    margin: 0 clamp(1rem, -3.6154rem + 8.013vw, 6rem) 0 0;
  }
  .footer ul.subnav li {
    /*
    &.treatment {
      display: none;
    }*/
  }
  .footer ul.subnav li:not(:last-child)::after {
    content: "|";
    margin: 0 1rem;
  }
}
.keyvsl {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: url(../img/bg_kv.svg) no-repeat center center/auto;
}
.keyvsl::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  margin: auto;
  background: url(../img/wave_base.svg) no-repeat center bottom/cover;
  width: 100%;
  height: 2rem;
}
.keyvsl #keyvsl,
.keyvsl #keyvsl_sp {
  max-width: 100%;
  height: 55rem;
  padding: 0 1rem;
  overflow: hidden;
  visibility: hidden;
}
.keyvsl #keyvsl div img,
.keyvsl #keyvsl_sp div img {
  height: 40rem !important;
  -o-object-fit: cover;
     object-fit: cover;
  margin: auto;
}
.keyvsl #keyvsl .slick-dots,
.keyvsl #keyvsl_sp .slick-dots {
  margin: 0.6rem 0 0;
  position: relative;
  z-index: 2;
}
.keyvsl #keyvsl .slick-dots li,
.keyvsl #keyvsl_sp .slick-dots li {
  width: 1rem;
  height: 1rem;
  margin: 0 0.6rem;
}
.keyvsl #keyvsl .slick-dots li button,
.keyvsl #keyvsl_sp .slick-dots li button {
  background: var(--clr_sub13);
}
.keyvsl #keyvsl {
  display: none;
}
.keyvsl .pc_n {
  visibility: visible !important;
}
.keyvsl > .wrap {
  padding: 33rem 0 0 3rem;
  position: absolute;
  inset: 0;
}
.keyvsl > .wrap p {
  font-size: 1.6rem;
  font-weight: 700;
  text-shadow: #fff 0 0 10px, #fff 0 0 10px, #fff 0 0 10px, #fff 0 0 10px, #fff 0 0 10px, #fff 0 0 10px, #fff 0 0 10px, #fff 0 0 10px, #fff 0 0 10px;
}
.keyvsl > .wrap p span {
  color: var(--clr_sub10);
}
.keyvsl .movingwaves {
  overflow: hidden;
  margin: -9rem auto 0;
  width: 100%;
  height: 3rem;
  background: transparent;
}
.keyvsl .movingwaves svg use {
  fill: #59c5ec;
  -webkit-animation: wave linear 50s infinite;
          animation: wave linear 50s infinite;
}
.keyvsl .movingwaves svg use:nth-of-type(2), .keyvsl .movingwaves svg use:nth-of-type(3) {
  opacity: 0.4;
}
.keyvsl .movingwaves svg use:nth-of-type(2) {
  -webkit-animation-duration: 40s;
          animation-duration: 40s;
}
.keyvsl .movingwaves svg use:nth-of-type(3) {
  -webkit-animation-duration: 30s;
          animation-duration: 30s;
}
@media screen and (width >= 36em), print {
  .keyvsl .movingwaves {
    height: 4rem;
  }
}
@-webkit-keyframes wave {
  from {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  to {
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
}
@keyframes wave {
  from {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  to {
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
}
.keyvsl .kamome {
  background: url(../img/img_kamome.svg) no-repeat center center/contain;
  width: 7.6rem;
  height: 6.8rem;
  top: -0.8rem;
  left: 1rem;
}
@media screen and (width >= 36em), print {
  .keyvsl .kamome {
    width: 22.8rem;
    height: 13.6rem;
    top: 5.4rem;
    left: calc(50% - 92rem);
  }
}
.keyvsl .yotto {
  background: url(../img/img_yotto.svg) no-repeat center center/contain;
  width: 5.2rem;
  height: 5.7rem;
  top: 42rem;
  right: 4rem;
}
@media screen and (width >= 36em), print {
  .keyvsl .yotto {
    width: 15.5rem;
    height: 17rem;
    top: 66rem;
    left: calc(50% - 78rem);
    right: inherit;
  }
}
.keyvsl .kv_whale,
.keyvsl .kv_todai {
  position: absolute;
}
.keyvsl .kv_whale::before,
.keyvsl .kv_todai::before {
  display: block;
  content: "";
  z-index: -1;
  position: relative;
}
.keyvsl .kv_whale {
  top: 44rem;
  left: 1rem;
}
.keyvsl .kv_whale::before {
  background: url(../img/img_whale.svg) no-repeat center/contain;
  width: 6.5rem;
  height: 4rem;
}
@media screen and (width >= 36em), print {
  .keyvsl .kv_whale {
    top: 69rem;
    left: calc(50% - 93rem);
  }
  .keyvsl .kv_whale::before {
    width: 13rem;
    height: 8rem;
  }
}
.keyvsl .kv_todai {
  top: 42rem;
  right: 1rem;
}
.keyvsl .kv_todai::before {
  background: url(../img/img_todai.svg) no-repeat center/contain;
  width: 2.1rem;
  height: 5.7rem;
}
@media screen and (width >= 36em), print {
  .keyvsl .kv_todai {
    top: 69rem;
    right: calc(50% - 81rem);
  }
  .keyvsl .kv_todai::before {
    width: 4.2rem;
    height: 11.4rem;
  }
}
@-webkit-keyframes fuwa {
  0% {
    -webkit-transform: translate(0, 0) rotate(-7deg);
            transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    -webkit-transform: translate(0, -7px) rotate(0deg);
            transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(7deg);
            transform: translate(0, 0) rotate(7deg);
  }
}
@keyframes fuwa {
  0% {
    -webkit-transform: translate(0, 0) rotate(-7deg);
            transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    -webkit-transform: translate(0, -7px) rotate(0deg);
            transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(7deg);
            transform: translate(0, 0) rotate(7deg);
  }
}
@-webkit-keyframes yura {
  0% {
    -webkit-transform: translate(0, 0) rotate(10deg);
            transform: translate(0, 0) rotate(10deg);
  }
  50% {
    -webkit-transform: translate(0, 10px) rotate(0deg);
            transform: translate(0, 10px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(-10deg);
            transform: translate(0, 0) rotate(-10deg);
  }
}
@keyframes yura {
  0% {
    -webkit-transform: translate(0, 0) rotate(10deg);
            transform: translate(0, 0) rotate(10deg);
  }
  50% {
    -webkit-transform: translate(0, 10px) rotate(0deg);
            transform: translate(0, 10px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(-10deg);
            transform: translate(0, 0) rotate(-10deg);
  }
}
@-webkit-keyframes puka {
  0% {
    -webkit-transform: translate(0, 0) rotate(20deg);
            transform: translate(0, 0) rotate(20deg);
  }
  50% {
    -webkit-transform: translate(0, -20px) rotate(0deg);
            transform: translate(0, -20px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(20deg);
            transform: translate(0, 0) rotate(20deg);
  }
}
@keyframes puka {
  0% {
    -webkit-transform: translate(0, 0) rotate(20deg);
            transform: translate(0, 0) rotate(20deg);
  }
  50% {
    -webkit-transform: translate(0, -20px) rotate(0deg);
            transform: translate(0, -20px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(20deg);
            transform: translate(0, 0) rotate(20deg);
  }
}

@media screen and (width >= 36em), print {
  .keyvsl {
    background: url(../img/bg_kv.svg) no-repeat top center/auto;
  }
  .keyvsl::after {
    width: 100%;
    height: clamp(3.3rem, -10.2692rem + 23.558vw, 18rem);
  }
  .keyvsl #keyvsl {
    display: block;
    height: clamp(50rem, 12.5231rem + 65.064vw, 90.6rem);
    padding: 0;
  }
}
@media screen and (width >= 36em) and (max-width: 1200px) {
  .keyvsl #keyvsl {
    padding: 0 1rem;
  }
}
@media screen and (width >= 36em), print {
  .keyvsl #keyvsl div img {
    height: clamp(30rem, -6.9231rem + 64.103vw, 70rem) !important;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .keyvsl #keyvsl .slick-dots {
    margin: 1rem auto 0;
  }
  .keyvsl #keyvsl .slick-dots li {
    width: 1.6rem;
    height: 1.6rem;
    margin: 0 1.2rem;
  }
  .keyvsl #keyvsl_sp {
    display: none;
  }
  .keyvsl > .wrap {
    padding: clamp(23rem, -7.4615rem + 52.885vw, 56rem) 0 0 5rem;
  }
  .keyvsl > .wrap p {
    font-size: clamp(2rem, 0.7077rem + 2.244vw, 3.4rem);
  }
  .keyvsl .movingwaves {
    margin: -17rem auto 0;
    width: 200rem;
    height: clamp(6rem, -5.0769rem + 19.231vw, 18rem);
  }
}
body.index .main .tit_02 .tit_h2 .adtxt {
  margin: 0 auto;
  display: inline-block;
}
body.index .main .tit_02 .tit_h2 .adtxt span {
  font-size: 45%;
  letter-spacing: 0;
  text-indent: 0;
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}
body.index .main .tit_02 .tit_h2 .adtxt::first-letter {
  color: var(--clr_sub11);
  font-size: inherit;
  display: inline-block;
}

.info {
  margin: 0;
  padding: 3rem 1rem;
  background: var(--clr_sub06);
  position: relative;
  overflow-x: clip;
}
.info::after {
  content: "";
  background: url(../img/deco_info.svg) no-repeat center center/contain;
  position: absolute;
  width: 200%;
  height: 1.5rem;
  bottom: -1.2rem;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 10;
}
.info .wrap {
  background: #fff;
  border-radius: clamp(1.5rem, 0.1154rem + 2.404vw, 3rem);
  padding: 2rem 1rem;
}
.info .wrap h2 {
  color: var(--clr_main);
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  border-bottom: 1px var(--clr_main) solid;
  line-height: 0.7;
  padding: 0 0 clamp(1.2rem, 0.8308rem + 0.641vw, 1.6rem) 0;
}
.info .wrap h2::before {
  font-family: "fontello";
  content: "\ecf0";
  font-weight: normal;
  margin: 0 0.9rem 0 0;
}
.info .wrap .accordion-container {
  width: 100%;
  margin: 1rem 0 0 0;
  padding: 1.4rem 1.2rem 0 0;
  height: 80vw;
  overflow-y: scroll;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.info .wrap .accordion-container::-webkit-scrollbar {
  width: 0.6rem;
}
.info .wrap .accordion-container::-webkit-scrollbar-track {
  background-color: #f2f2f2;
}
.info .wrap .accordion-container::-webkit-scrollbar-thumb {
  background-color: #caf3fd;
  border-radius: 0;
}
.info .wrap .accordion-container .accordion-item {
  width: 100%;
  margin-bottom: 1.6rem;
  padding: 0 0 1.6rem;
  border: none;
  border-radius: 0;
  color: var(--clr_txt);
  border-bottom: 1px #e9e9e9 solid;
}
.info .wrap .accordion-container .accordion-item summary.accordion-header {
  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;
  padding: 0;
  font-size: 1.8rem;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.info .wrap .accordion-container .accordion-item summary.accordion-header::before {
  color: var(--clr_sub11);
  font-family: "fontello";
  content: "\ec6c";
  font-size: 1.2rem;
}
.info .wrap .accordion-container .accordion-item summary.accordion-header::-webkit-details-marker {
  display: none;
}
.info .wrap .accordion-container .accordion-item[open] summary.accordion-header::before {
  font-family: "fontello";
  content: "\ec69";
}
.info .wrap .accordion-container .accordion-item .accordion-badge,
.info .wrap .accordion-container .accordion-item .accordion-date,
.info .wrap .accordion-container .accordion-item .accordion-title {
  display: inline-block;
  padding: 0;
  margin-left: 0.5em;
}
.info .wrap .accordion-container .accordion-item .accordion-badge {
  background: var(--clr_main);
  color: #fff;
  font-size: 0.75rem;
  border-radius: 4px;
}
.info .wrap .accordion-container .accordion-item .accordion-date {
  color: var(--clr_txt);
  font-size: 1.2rem;
}
.info .wrap .accordion-container .accordion-item .accordion-title {
  color: var(--clr_txt);
  font-weight: 500;
  font-size: 1.4rem;
}
.info .wrap .accordion-container .accordion-item .accordion-content {
  padding: 0;
  font-size: 1.4rem;
  line-height: 1.6;
}

@media screen and (width >= 36em), print {
  .info {
    margin: 0 auto;
    padding: 6rem clamp(0rem, 3.8462rem + -3.205vw, 2rem);
  }
  .info::after {
    width: 200rem;
    height: 3rem;
    bottom: -3rem;
  }
  .info .wrap {
    padding: 3.4rem clamp(3rem, 0.6923rem + 4.006vw, 5.5rem) 4.1rem;
  }
  .info .wrap h2 {
    font-size: clamp(1.8rem, 1.2462rem + 0.962vw, 2.4rem);
  }
  .info .wrap .accordion-container {
    padding: 1.6rem clamp(1.5rem, -0.5308rem + 3.526vw, 3.7rem) 0 0;
    margin: 1.9rem 0 0 0;
    height: 24.8rem;
  }
  .info .wrap .accordion-container .accordion-item {
    margin-bottom: 2.4rem;
    padding: 0 0 2.4rem;
    border-radius: 0;
    overflow: hidden;
  }
  .info .wrap .accordion-container .accordion-item summary.accordion-header {
    font-size: 1.6rem;
  }
  .info .wrap .accordion-container .accordion-item summary.accordion-header::before {
    font-size: 1.8rem;
  }
  .info .wrap .accordion-container .accordion-item summary.accordion-header:hover {
    opacity: 0.8;
  }
  .info .wrap .accordion-container .accordion-item .accordion-badge {
    font-size: 0.75rem;
    border-radius: 4px;
  }
  .info .wrap .accordion-container .accordion-item .accordion-date {
    font-size: 1.6rem;
    margin: 0 0 0 clamp(1rem, 0.4462rem + 0.962vw, 1.6rem);
  }
  .info .wrap .accordion-container .accordion-item .accordion-title {
    font-size: 1.8rem;
  }
  .info .wrap .accordion-container .accordion-item .accordion-content {
    font-size: 1.8rem;
    line-height: 1.8;
  }
}
.blogtop {
  margin: 0;
  padding: 3rem 1rem;
  background: var(--clr_sub05);
  position: relative;
  overflow-x: clip;
}
.blogtop::after {
  content: "";
  background: url(../img/deco_blogtop.svg) no-repeat center center/contain;
  position: absolute;
  width: 200%;
  height: 1.5rem;
  bottom: -1.2rem;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 10;
}
.blogtop .wrap {
  background: #fff;
  border-radius: clamp(1.5rem, 0.1154rem + 2.404vw, 3rem);
  padding: 2rem 1rem;
}
.blogtop .wrap h2 {
  color: var(--clr_sub10);
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  border-bottom: 1px var(--clr_sub10) solid;
  line-height: 0.7;
  padding: 0 0 clamp(1.2rem, 0.8308rem + 0.641vw, 1.6rem) 0;
}
.blogtop .wrap h2::before {
  font-family: "fontello";
  content: "\ecee";
  font-weight: normal;
  margin: 0 0.9rem 0 0;
}
.blogtop .wrap article {
  margin: 1rem 0 0 0;
}
.blogtop .wrap article ul {
  height: 24.8rem;
  overflow-y: scroll;
  margin: 0;
}
.blogtop .wrap article ul::-webkit-scrollbar {
  width: 0.6rem;
}
.blogtop .wrap article ul::-webkit-scrollbar-track {
  background-color: #f2f2f2;
}
.blogtop .wrap article ul::-webkit-scrollbar-thumb {
  background-color: #ffdca4;
  border-radius: 0;
}
.blogtop .wrap article ul li {
  border-bottom: 1px #e9e9e9 solid;
  padding: 1.4rem 0;
}
.blogtop .wrap article ul li a {
  text-decoration: none;
  font-size: 1.4rem;
}
.blogtop .wrap article ul li a span {
  font-size: 1.2rem;
}
.blogtop .wrap article ul li::before {
  color: var(--clr_sub09);
  font-family: "fontello";
  content: "\ec6c";
  font-size: 1.2rem;
}

@media screen and (width >= 36em), print {
  .blogtop {
    margin: 0 auto;
    padding: 9rem clamp(0rem, 3.8462rem + -3.205vw, 2rem) 6rem;
  }
  .blogtop::after {
    width: 200rem;
    height: 3rem;
    bottom: -3rem;
  }
  .blogtop .wrap {
    padding: 3.4rem clamp(3rem, 0.6923rem + 4.006vw, 5.5rem) 4.1rem;
  }
  .blogtop .wrap h2 {
    font-size: clamp(1.8rem, 1.2462rem + 0.962vw, 2.4rem);
  }
  .blogtop .wrap article {
    margin: 1.8rem 0 0 0;
  }
  .blogtop .wrap article ul {
    height: 24.8rem;
    padding: 0 clamp(3rem, 0.2308rem + 4.808vw, 6rem) 0 0;
  }
  .blogtop .wrap article ul li {
    padding: 2.55rem 0;
  }
  .blogtop .wrap article ul li::before {
    margin: 0 1rem 0 0;
    font-size: 1.8rem;
  }
  .blogtop .wrap article ul li a {
    font-size: 1.8rem;
  }
  .blogtop .wrap article ul li a span.date {
    font-size: 1.6rem;
    margin: 0 1rem 0 0;
  }
  .blogtop .wrap article ul li a:hover {
    opacity: 0.8;
  }
}
.timetable {
  background: var(--clr_sub06);
  position: relative;
  overflow-x: clip;
  padding: 5rem 1rem 2rem;
}
.timetable::after {
  content: "";
  background: url(../img/deco_timetable.svg) no-repeat center center/contain;
  position: absolute;
  width: 100%;
  height: 2.2rem;
  bottom: -2rem;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 10;
}
.timetable .wrap {
  border-radius: clamp(1.5rem, 0.1154rem + 2.404vw, 3rem);
  background: #fff;
  position: relative;
}
.timetable .wrap .dolphin {
  background: url(../img/img_dolphin.svg) no-repeat center center/contain;
  width: 10.13rem;
  height: 11.69rem;
  position: absolute;
  bottom: -7.5rem;
  right: 2rem;
  z-index: 9;
}

@media screen and (width >= 36em), print {
  .timetable {
    margin: 0 auto;
    padding: 9rem clamp(0rem, 3.8462rem + -3.205vw, 2rem) clamp(4rem, 2.1538rem + 3.205vw, 6rem);
  }
  .timetable::after {
    width: 100%;
    bottom: clamp(-9rem, 6.3846rem + -12.821vw, -1rem);
    height: clamp(4rem, -3.3846rem + 12.821vw, 12rem);
    min-height: 4rem;
  }
  .timetable .wrap {
    font-size: 1.8rem;
    padding: 5.6rem clamp(2rem, -1.2308rem + 5.609vw, 5.5rem) 4.6rem;
  }
  .timetable .wrap .dolphin {
    width: clamp(13.5rem, 1.0385rem + 21.635vw, 27rem);
    height: clamp(7.6rem, 0.5846rem + 12.179vw, 15.2rem);
    bottom: -3.5rem;
    right: 5rem;
  }
}
.about {
  padding: 7rem 1rem 19rem;
}
.about .wrap {
  position: relative;
}
.about .wrap .fish {
  background: url(../img/img_fish.svg) no-repeat center center/contain;
  width: 10.333rem;
  height: 11.333rem;
  position: absolute;
  z-index: 3;
  top: 36rem;
  left: -1rem;
}
.about .wrap h2 {
  text-align: center;
  letter-spacing: 0.08em;
  text-indent: 0.08em;
  line-height: 1.3;
}
.about .wrap h2 span.a1 {
  color: var(--clr_sub11);
}
.about .wrap h2 span.a2 {
  color: var(--clr_sub12);
}
.about .wrap h2 span.a3 {
  color: var(--clr_sub09);
}
.about .wrap h2 span.a4 {
  color: var(--clr_sub08);
}
.about .wrap h2::before {
  display: block;
  content: "";
  background: url(../img/deco_top_h2.svg) no-repeat center/contain;
}
.about .wrap .txt p {
  letter-spacing: 0.06em;
  text-indent: 0.06em;
}
.about .wrap img {
  position: absolute;
  right: calc(50% - 29rem);
  width: 40rem;
  height: 20rem;
}

@media screen and (width >= 36em), print {
  .about {
    padding: clamp(6rem, -6.9231rem + 22.436vw, 20rem) clamp(0rem, 3.8462rem + -3.205vw, 2rem) clamp(14rem, -12.7692rem + 46.474vw, 43rem);
    background: url(../img/bg_about.svg) no-repeat top 20rem center/auto;
  }
  .about .wrap .fish {
    width: clamp(19.3rem, 10.4385rem + 15.385vw, 28.9rem);
    height: clamp(14.6rem, 7.8615rem + 11.699vw, 21.9rem);
    top: clamp(40rem, 25.2308rem + 25.641vw, 56rem);
    left: clamp(-5.9rem, 7.3692rem + -11.058vw, 1rem);
  }
  .about .wrap h2 {
    font-size: clamp(2.2rem, 0.9077rem + 2.244vw, 3.6rem);
    margin: 0 0 clamp(3rem, -0.6923rem + 6.41vw, 7rem);
    line-height: 1;
  }
  .about .wrap h2::before {
    width: clamp(7.3rem, 0.5615rem + 11.699vw, 14.6rem);
    height: clamp(3.5rem, 0.2692rem + 5.609vw, 7rem);
    margin: 0 auto clamp(1.6rem, -0.2646rem + 3.237vw, 3.62rem);
  }
  .about .wrap h2 br {
    display: none;
  }
  .about .wrap .txt {
    width: clamp(28rem, 1.2308rem + 46.474vw, 57rem);
    margin: 0 auto 0 0;
  }
  .about .wrap img {
    top: clamp(-5rem, -28.0769rem + 40.064vw, 20rem);
    right: inherit;
    left: calc(50% + 4rem);
    width: 105rem;
    height: 60rem;
  }
}
.features {
  background: url(../img/bg_features.svg) no-repeat center/contain;
  padding: 4rem 1rem 2rem;
}
.features .wrap .tit_02 .tit_h2::before, .features .wrap .tit_02 .tit_h2::after {
  display: inline-block;
  content: "";
  width: 5.6rem;
  height: 2.35rem;
}
.features .wrap .tit_02 .tit_h2::before {
  background: url(../img/deco_h2_l.svg) no-repeat center/contain;
}
.features .wrap .tit_02 .tit_h2::after {
  background: url(../img/deco_h2_r.svg) no-repeat center/contain;
}
.features .wrap .inner section {
  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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 0 5rem;
}
.features .wrap .inner section img {
  margin: 0 auto;
}
.features .wrap .inner section .txt {
  letter-spacing: 0.101em;
  text-indent: 0.101em;
  margin: 1.6rem 0 0 0;
}
.features .wrap .inner section .txt .ft {
  font-size: 1.8rem;
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  position: relative;
  margin: 0;
}
.features .wrap .inner section .txt .ft::after {
  display: block;
  position: absolute;
  content: "";
  bottom: -1rem;
  left: 0;
  width: 33.1rem;
  height: 3.6rem;
}
.features .wrap .inner section .txt .ft span {
  font-size: 192.3%;
}
.features .wrap .inner section .txt .tit {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
}
.features .wrap .inner section.sc01 .txt .ft {
  color: var(--clr_sub11);
}
.features .wrap .inner section.sc01 .txt .ft::after {
  background: url(../img/line_features01.svg) no-repeat center/contain;
}
.features .wrap .inner section.sc01 .txt .tit span {
  color: var(--clr_sub11);
}
.features .wrap .inner section.sc02 .txt .ft {
  color: var(--clr_sub08);
}
.features .wrap .inner section.sc02 .txt .ft::after {
  background: url(../img/line_features02.svg) no-repeat center/contain;
}
.features .wrap .inner section.sc02 .txt .tit span {
  color: var(--clr_sub08);
}
.features .wrap .inner section.sc03 {
  margin: 0;
}
.features .wrap .inner section.sc03 .txt .ft {
  color: var(--clr_sub10);
}
.features .wrap .inner section.sc03 .txt .ft::after {
  background: url(../img/line_features03.svg) no-repeat center/contain;
}
.features .wrap .inner section.sc03 .txt .tit span {
  color: var(--clr_sub10);
}

@media screen and (width >= 36em), print {
  .features {
    margin: 5.5rem 0 0 0;
    padding: 0;
    background: url(../img/bg_features.svg) no-repeat top 20rem center/auto;
  }
  .features .wrap .tit_02 {
    margin: 0 0 clamp(2.4rem, 0.0923rem + 4.006vw, 4.9rem);
  }
  .features .wrap .tit_02 .tit_h2::before, .features .wrap .tit_02 .tit_h2::after {
    width: clamp(9.4rem, 2.5692rem + 11.859vw, 16.8rem);
    height: clamp(3.5rem, 0.2692rem + 5.609vw, 7rem);
  }
  .features .wrap .tit_02 .tit_h2::before {
    margin: 0 clamp(1rem, -0.3846rem + 2.404vw, 2.5rem) 0 0;
  }
  .features .wrap .tit_02 .tit_h2::after {
    margin: 0 0 0 clamp(1rem, -0.3846rem + 2.404vw, 2.5rem);
  }
  .features .wrap .tit_02::before {
    margin: 0 0 -2.4rem !important;
  }
  .features .wrap .inner {
    padding: 0 clamp(0rem, 3.8462rem + -3.205vw, 2rem);
  }
  .features .wrap .inner section {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 0 clamp(1rem, -5.4615rem + 11.218vw, 8rem);
    margin: 0 0 clamp(5rem, 1.3077rem + 6.41vw, 9rem);
  }
  .features .wrap .inner section img {
    width: clamp(24rem, -9.2308rem + 57.692vw, 60rem);
  }
  .features .wrap .inner section .txt {
    width: clamp(29.2rem, 8.0615rem + 36.699vw, 52.1rem);
    margin: 0;
  }
  .features .wrap .inner section .txt .ft {
    font-size: clamp(1.8rem, 1.0615rem + 1.282vw, 2.6rem);
  }
  .features .wrap .inner section .txt .ft span {
    margin: 0 0 0 clamp(0.8rem, -0.2154rem + 1.763vw, 1.9rem);
  }
  .features .wrap .inner section .txt .ft::after {
    width: clamp(25rem, -0.0154rem + 43.429vw, 52.1rem);
    height: clamp(1.72rem, -0.0154rem + 3.013vw, 3.6rem);
    bottom: -0.7rem;
  }
  .features .wrap .inner section .txt .tit {
    font-size: clamp(1.4rem, 0.2923rem + 1.923vw, 2.6rem);
    margin: clamp(2rem, 0.8rem + 2.083vw, 3.3rem) 0 0 0;
  }
  .features .wrap .inner section.sc02 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.tre {
  margin: 3rem 0;
  padding: 0 0rem 10rem;
  background: url(../img/bg_treatment.svg) no-repeat center/cover;
}
.tre nav {
  position: relative;
}
.tre nav .subnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  margin: 0 1.6rem;
}
.tre nav .subnav li {
  width: 43%;
}
.tre nav .subnav li a {
  display: block;
  height: 100%;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  padding: 3rem 1rem 1rem 1rem;
  font-weight: 700;
  text-decoration: none !important;
  border-radius: clamp(2rem, -0.7692rem + 4.808vw, 5rem);
  position: relative;
}
.tre nav .subnav li a::before {
  content: "";
  display: block;
  width: 40%;
  aspect-ratio: 1;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
}
.tre nav .subnav li a::after {
  display: block;
  content: "";
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 1.9rem;
  left: 0;
  right: 0;
  margin: auto;
  width: 7rem;
  height: 7rem;
}
.tre nav .subnav li a.pediatrics {
  background: rgba(252, 155, 145, 0.75);
}
.tre nav .subnav li a.pediatrics::before {
  background: url(../img/icon_pediatrics.svg) no-repeat center/contain;
}
.tre nav .subnav li a.vaccination {
  background: rgba(255, 186, 74, 0.75);
}
.tre nav .subnav li a.vaccination::before {
  background: url(../img/icon_vaccination.svg) no-repeat center/contain;
}
.tre nav .subnav li a.infant_checkup {
  background: rgba(177, 220, 71, 0.75);
}
.tre nav .subnav li a.infant_checkup::before {
  background: url(../img/icon_checkup.svg) no-repeat center/contain;
}
.tre nav .subnav li a.short_stature {
  background: rgba(139, 212, 113, 0.75);
}
.tre nav .subnav li a.short_stature::before {
  background: url(../img/icon_short_stature.svg) no-repeat center/contain;
}
.tre nav .subnav li a.allergy {
  background: rgba(121, 186, 242, 0.75);
}
.tre nav .subnav li a.allergy::before {
  background: url(../img/icon_allergy.svg) no-repeat center/contain;
}
.tre nav .subnav li a.development {
  background: rgba(177, 146, 232, 0.75);
}
.tre nav .subnav li a.development::before {
  background: url(../img/icon_development.svg) no-repeat center/contain;
}
.tre nav .subnav li a.current {
  background: var(--clr_navy);
}
.tre .fish_tre {
  background: url(../img/img_fish_tre.svg) no-repeat center center/contain;
  width: 7.8rem;
  height: 5.87rem;
  position: absolute;
  z-index: 3;
  bottom: -8rem;
  left: calc(50% - 16rem);
}
.tre .whale_tre {
  background: url(../img/img_whale_tre.svg) no-repeat center center/contain;
  width: 12.5rem;
  height: 9.75rem;
  position: absolute;
  z-index: 3;
  bottom: -11rem;
  left: calc(50% + 3rem);
}

@media screen and (width >= 36em), print {
  .tre {
    margin: clamp(4rem, -0.4308rem + 7.692vw, 8.8rem) 0 0 0;
    padding: 0rem clamp(0rem, 1.9231rem + -1.603vw, 1rem) 15.6rem;
  }
  .tre nav .subnav {
    max-width: 1200px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: clamp(1rem, -1.7692rem + 4.808vw, 4rem);
    margin: 0 auto;
  }
  .tre nav .subnav li {
    width: clamp(12.3rem, -1.2692rem + 23.558vw, 27rem);
    height: clamp(14.12rem, 6.8462rem + 12.628vw, 22rem);
  }
  .tre nav .subnav li a {
    font-size: clamp(1.6rem, 0.8615rem + 1.282vw, 2.4rem);
    line-height: 1.4;
    padding: clamp(3.3rem, 1.4538rem + 3.205vw, 5.3rem) 1rem;
  }
  .tre nav .subnav li a::before {
    width: clamp(4.26rem, 1.6385rem + 4.551vw, 7.1rem);
    margin: 0 auto clamp(2.04rem, 0.7846rem + 2.179vw, 3.4rem);
  }
  .tre nav .subnav li a::after {
    width: clamp(6.96rem, 2.6769rem + 7.436vw, 11.6rem);
    height: clamp(6.96rem, 2.6769rem + 7.436vw, 11.6rem);
    top: clamp(1.8rem, 0.6923rem + 1.923vw, 3rem);
  }
}
@media screen and (width >= 36em) and (hover: hover), print and (hover: hover) {
  .tre nav .subnav li a {
    opacity: 1;
  }
  .tre nav .subnav li a:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.6;
  }
  .tre nav .subnav li a:where(:any-link, :enabled, summary):hover {
    opacity: 0.6;
  }
}
@media screen and (width >= 36em), print {
  .tre nav .subnav li a:focus-visible {
    opacity: 0.6;
  }
  .tre nav .fish_tre {
    width: clamp(9.4rem, -3.6154rem + 22.596vw, 23.5rem);
    height: clamp(7.04rem, -2.7077rem + 16.923vw, 17.6rem);
    bottom: clamp(-11rem, -9.0769rem + -1.603vw, -10rem);
    left: calc(50% - clamp(22rem, -18.7077rem + 70.673vw, 66.1rem));
  }
  .tre nav .whale_tre {
    width: clamp(20rem, -7.6923rem + 48.077vw, 50rem);
    height: clamp(15.6rem, -6rem + 37.5vw, 39rem);
    bottom: clamp(-21.6rem, 0.7077rem + -18.59vw, -10rem);
    left: calc(50% + clamp(11rem, 0.8462rem + 17.628vw, 22rem));
  }
}
.symptom {
  padding: 3rem 0;
}
.symptom .tab_wrapper {
  width: 100%;
  margin: 2rem auto 0;
}
.symptom .tab_wrapper .tab {
  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 0.3rem;
  position: relative;
}
.symptom .tab_wrapper .tab::before, .symptom .tab_wrapper .tab::after {
  display: block;
  position: absolute;
  content: "";
}
.symptom .tab_wrapper .tab::before {
  background: url(../img/deco_tre_l.svg) no-repeat center/contain;
}
.symptom .tab_wrapper .tab::after {
  background: url(../img/deco_tre_r.svg) no-repeat center/contain;
}
.symptom .tab_wrapper .tab 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;
  background: #fff;
  color: var(--clr_txt);
  font-weight: 700;
  font-size: 1.4rem;
  padding: 0.7rem 0.4rem;
  text-decoration: none;
  text-align: center;
  border-top: 0.3rem var(--clr_sub11) solid;
  border-left: 0.3rem var(--clr_sub11) solid;
  border-right: 0.3rem var(--clr_sub11) solid;
  border-radius: 2rem 2rem 0 0;
  width: 15rem;
  height: 4rem;
}
.symptom .tab_wrapper .tab li.active {
  position: relative;
  /*
  &::after {
    display: block;
    content: "";
    background: url("../img/arrow.svg") no-repeat center center/contain;
    width: 1.13rem;
    height: 0.93rem;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.9rem;
    margin: auto;
    z-index: 9;
  }
  */
}
.symptom .tab_wrapper .tab li.active a {
  background: var(--clr_sub11);
  color: #fff;
  border: none;
}
.symptom .tab_wrapper .tab li:nth-child(2) a {
  border-top: 0.3rem var(--clr_sub08) solid;
  border-left: 0.3rem var(--clr_sub08) solid;
  border-right: 0.3rem var(--clr_sub08) solid;
}
.symptom .tab_wrapper .tab li:nth-child(2).active a {
  background: var(--clr_sub08);
}
.symptom .tab_wrapper .content {
  display: none;
  opacity: 0;
  background: var(--clr_sub06);
  padding: 2rem 1rem 5rem;
  position: relative;
}
.symptom .tab_wrapper .content::after {
  display: block;
  content: "";
  background: url(../img/deco_tre.svg) no-repeat center/cover;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 2rem;
}
.symptom .tab_wrapper .content .flexBtn {
  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: 1rem 1.3rem;
  position: relative;
}
.symptom .tab_wrapper .content .flexBtn::before {
  display: block;
  content: "";
  background: url(../img/img_kusa.svg) no-repeat center/contain;
  position: absolute;
  bottom: -5.2rem;
  right: 0;
  width: 10rem;
  height: 10rem;
  z-index: -1;
}
.symptom .tab_wrapper .content .flexBtn li {
  width: 48%;
  height: 6rem;
  border-radius: 1rem;
  -webkit-box-shadow: 0.2rem 0.2rem 0.2rem 0 rgba(95, 201, 235, 0.35);
          box-shadow: 0.2rem 0.2rem 0.2rem 0 rgba(95, 201, 235, 0.35);
  background: #fff;
}
.symptom .tab_wrapper .content .flexBtn li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 0 1.4rem;
  width: 100%;
  height: 100%;
  color: var(--clr_txt);
  text-decoration: none;
  position: relative;
  font-size: 1.3rem;
}
.symptom .tab_wrapper .content .flexBtn li a::after {
  position: absolute;
  display: block;
  content: "";
  top: 2rem;
  right: 0.6rem;
  font-family: "fontello";
  content: "\ec6b";
  color: var(--clr_sub11);
}
.symptom .tab_wrapper .content::before {
  content: none;
}
.symptom .tab_wrapper .content.is-active {
  display: block; /*表示*/
  -webkit-animation-name: displayAnime;
          animation-name: displayAnime; /*ふわっと表示させるためのアニメーション*/
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.symptom .tab_wrapper #tab_02 {
  background: var(--clr_sub14);
}
.symptom .tab_wrapper #tab_02 .flexBtn::before {
  background: url(../img/img_kusa_green.svg) no-repeat center/contain;
}
.symptom .tab_wrapper #tab_02 .flexBtn li {
  -webkit-box-shadow: 0.2rem 0.2rem 0.2rem 0 rgba(177, 220, 71, 0.35);
          box-shadow: 0.2rem 0.2rem 0.2rem 0 rgba(177, 220, 71, 0.35);
}
.symptom .tab_wrapper #tab_02 .flexBtn li a::after {
  color: var(--clr_sub08);
}
@-webkit-keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media screen and (width >= 36em), print {
  .symptom {
    padding: 13.6rem 0 0 0;
  }
  .symptom .tab_wrapper {
    margin: 5.2rem auto 0;
  }
  .symptom .tab_wrapper .tab {
    gap: 0 1rem;
  }
  .symptom .tab_wrapper .tab::before, .symptom .tab_wrapper .tab::after {
    width: 50rem;
    height: 13rem;
    bottom: 0;
  }
  .symptom .tab_wrapper .tab::before {
    left: calc(50% - 100rem);
  }
  .symptom .tab_wrapper .tab::after {
    right: calc(50% - 100rem);
  }
  .symptom .tab_wrapper .tab li a {
    width: clamp(25rem, 8.3846rem + 28.846vw, 43rem);
    height: clamp(5rem, 2.3231rem + 4.647vw, 7.9rem);
    padding: 0;
    font-size: clamp(1.8rem, 1.2462rem + 0.962vw, 2.4rem);
  }
  .symptom .tab_wrapper .tab li.active::after {
    width: 1.7rem;
    height: 1.4rem;
    bottom: inherit;
  }
  .symptom .tab_wrapper .content {
    padding: clamp(4rem, 1.2308rem + 4.808vw, 7rem) clamp(1rem, 4.8462rem + -3.205vw, 3rem) 11rem;
  }
  .symptom .tab_wrapper .content::after {
    width: 100%;
    max-width: 200rem;
    height: 6rem;
    bottom: -0.1rem;
  }
  .symptom .tab_wrapper .content .flexBtn {
    margin: 0 auto;
    width: clamp(100rem, 80.1538rem + 34.455vw, 121.5rem);
    max-width: 100%;
    gap: clamp(1rem, 0.4462rem + 0.962vw, 1.6rem) clamp(1.5rem, 0.0231rem + 2.564vw, 3.1rem);
  }
  .symptom .tab_wrapper .content .flexBtn::before {
    background: url(../img/img_kusa.svg) no-repeat center/auto;
    width: 32rem;
    height: 30.3rem;
    bottom: -10rem;
    right: calc(50% - 85rem);
  }
  .symptom .tab_wrapper .content .flexBtn li {
    width: clamp(11.4rem, -2.8154rem + 24.679vw, 26.8rem);
    height: clamp(7rem, 4.2308rem + 4.808vw, 10rem);
    border-radius: 2rem;
    -webkit-box-shadow: 0.4rem 0.4rem 0.4rem 0 rgba(95, 201, 235, 0.35);
            box-shadow: 0.4rem 0.4rem 0.4rem 0 rgba(95, 201, 235, 0.35);
  }
  .symptom .tab_wrapper .content .flexBtn li a {
    font-size: clamp(1rem, 0.0769rem + 1.603vw, 2rem);
    width: 100%;
    padding: 0 0 0 clamp(1rem, -0.8462rem + 3.205vw, 3rem);
  }
  .symptom .tab_wrapper .content .flexBtn li a::after {
    top: clamp(2.7rem, 1.7769rem + 1.603vw, 3.7rem);
    right: clamp(1rem, 0.0769rem + 1.603vw, 2rem);
    font-size: clamp(1rem, 0.2615rem + 1.282vw, 1.8rem);
  }
  .symptom .tab_wrapper .content .flexBtn li:hover {
    background: var(--clr_sub05);
  }
}
.aisatsu {
  margin: 2rem 0 0;
  padding: 0 0 6rem;
  background: url(../img/bg_aisatsu.svg) no-repeat bottom center/contain;
}
.aisatsu .wrap {
  margin: 0 1.6rem;
}
.aisatsu .wrap .img_r {
  max-width: 70%;
  margin: 0 auto;
}
.aisatsu .wrap .img_r figcaption {
  text-align: center;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  line-height: 1;
  font-size: 1.8rem;
  margin: 1rem 0 0 0;
}
.aisatsu .wrap .img_r figcaption ruby {
  ruby-position: under;
}
.aisatsu .wrap .img_r figcaption ruby rt {
  font-size: 53.33%;
  letter-spacing: 0;
  text-indent: 0;
  margin: 0.1rem 0 0 0;
}
.aisatsu .wrap .txt {
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  line-height: 1.72;
}
.aisatsu .wrap .txt .btn_detail {
  margin: 1.8rem auto 0;
  display: table;
}

@media screen and (width >= 36em), print {
  .aisatsu {
    margin: clamp(4rem, -3.3846rem + 12.821vw, 12rem) 0 0;
    padding: 0 clamp(2rem, 5.8462rem + -3.205vw, 4rem) 8rem;
    background: url(../img/bg_aisatsu.svg) no-repeat bottom center/auto;
  }
  .aisatsu .wrap {
    margin: auto;
  }
  .aisatsu .wrap .img_r img {
    width: clamp(18rem, -11.5385rem + 51.282vw, 50rem) !important;
  }
  .aisatsu .wrap .img_r figcaption {
    font-size: clamp(1.8rem, 0.6923rem + 1.923vw, 3rem);
    margin: 1.97rem 0 0 0;
  }
  .aisatsu .wrap .txt {
    width: clamp(28rem, -1.5385rem + 51.282vw, 60rem);
    margin: 0 clamp(2rem, -5.3846rem + 12.821vw, 10rem) 0 0;
  }
  .aisatsu .wrap .txt .btn_detail {
    margin: 3rem auto 0;
  }
}
body:not(.index) .sub_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
body:not(.index) .main {
  margin: 4rem 1.6rem 6rem;
}
body:not(.index) .main .tel {
  font-size: 120%;
}
body:not(.index) .main .btn_rsv span {
  padding: 1rem 3rem;
}
@media screen and (width >= 36em), print {
  body:not(.index) .main {
    max-width: 120rem;
    margin: 8rem auto clamp(10rem, -8.4615rem + 32.051vw, 30rem);
    padding: 0;
  }
}
@media screen and (width >= 36em) and (max-width: 1200px) {
  body:not(.index) .main {
    padding: 0 clamp(1rem, 2.9231rem + -1.603vw, 2rem);
  }
}
@media screen and (width >= 36em), print {
  body:not(.index) .main .cf .img_l,
  body:not(.index) .main .cf .img_r {
    max-width: 40%;
    height: auto;
  }
}

.overview {
  position: relative;
}
.overview::before, .overview::after {
  position: absolute;
  bottom: 0;
  display: block;
  content: "";
  z-index: -1;
}
.overview::before {
  background: url(../img/bg_low_l.svg) no-repeat center/contain;
  left: 0;
}
.overview::after {
  background: url(../img/bg_low_r.svg) no-repeat center/contain;
  right: 0;
}
@media screen and (width >= 36em), print {
  .overview::before {
    background: url(../img/bg_low_l.svg) no-repeat center/contain;
    width: clamp(13.5rem, -15.5769rem + 50.481vw, 45rem);
    height: clamp(5.4rem, -6.2308rem + 20.192vw, 18rem);
    top: clamp(-18rem, 6.2308rem + -20.192vw, -5.4rem);
  }
  .overview::after {
    background: url(../img/bg_low_r.svg) no-repeat center/contain;
    width: clamp(10.08rem, -11.6308rem + 37.692vw, 33.6rem);
    height: clamp(10.5rem, -12.1154rem + 39.263vw, 35rem);
    top: clamp(-35rem, 12.1154rem + -39.263vw, -10.5rem);
  }
}

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

@media screen and (width >= 36em), print {
  .breadnav {
    width: 100%;
    padding: 0 clamp(0rem, 7.6923rem + -6.41vw, 4rem);
    max-width: 1200px;
    margin: 0 auto 2rem;
    overflow-x: inherit;
  }
  .breadnav .breadcrumb {
    font-size: clamp(1rem, 0.6308rem + 0.641vw, 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 (width >= 36em), print {
  .clinic .txt {
    width: 65%;
  }
  .clinic .img_r {
    max-width: 30% !important;
  }
}
.clinic .dr_name {
  text-align: right !important;
}
.clinic .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: var(--clr_txt);
  padding: 0.4rem;
  font-size: 1.2rem;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  line-height: 1.4;
}
.gallery .gallery_slider div .slick-current .cap {
  opacity: 1;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.gallery .gallery_slider div:first-child .cap {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.gallery .gallery_thum div img {
  cursor: pointer;
  border: 4px solid transparent;
}
.gallery .gallery_thum .slick-current div img {
  border: 4px solid var(--clr_navy);
}

@media screen and (width >= 36em), print {
  .gallery {
    width: clamp(45rem, 17.3077rem + 48.077vw, 75rem);
    margin: auto;
  }
  .gallery .gallery_slider {
    font-size: 1.6em;
  }
  .gallery .gallery_slider div .cap {
    font-size: clamp(1rem, 0.0769rem + 1.603vw, 2rem);
    padding: 1rem;
  }
  .gallery .gallery_thum {
    width: calc(100% + 0.6rem);
  }
}
.device li {
  margin: 0 0 2rem;
  text-align: center;
  background: var(--clr_sub13);
  border-radius: 2rem;
  padding: 2rem 1rem;
}
.device li p {
  margin: 0;
  text-align: left;
}
.device li p.tit {
  font-size: 180%;
  color: var(--clr_main);
  font-weight: 700;
  margin: 0 0 1rem;
}
.device li img {
  margin: 0 auto 0.6rem;
  max-width: 80%;
}

@media screen and (width >= 36em), 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: 48%;
    padding: clamp(1rem, 0.0769rem + 1.603vw, 2rem);
  }
  .device li img {
    margin: 0 0 1rem clamp(0.8rem, 0.4308rem + 0.641vw, 1.2rem);
    max-width: 50%;
    float: right;
  }
}
.full-image {
  font-size: 1.4rem;
}
@media screen and (width >= 36em), print {
  .full-image {
    font-size: 2rem;
  }
}

.lst_flow {
  counter-reset: number 0;
}
.lst_flow li {
  counter-increment: number 1;
  position: relative;
  padding: 2rem 1rem;
  border: 1px solid #dfdfdf;
  border-radius: 0.8rem;
}
.lst_flow li .tit {
  color: var(--clr_navy);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0 1rem;
  position: relative;
}
.lst_flow li .tit::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  content: counter(number, decimal);
  color: #fff;
  background: var(--clr_sub11);
  border-radius: 50%;
}
.lst_flow li:not(:last-child) {
  margin: 0 0 6rem;
}
.lst_flow li:not(:last-child)::after {
  display: block;
  content: "";
  width: 2.8rem;
  height: 1.4rem;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  inset: auto 0 -4rem;
  margin: auto;
  background: #e8e8e8;
}

@media screen and (width >= 36em), print {
  .lst_flow li {
    padding: clamp(1.5rem, 0.1154rem + 2.404vw, 3rem);
  }
  .lst_flow li .tit {
    font-size: clamp(1.3rem, 0.6538rem + 1.122vw, 2rem);
    gap: 0 2rem;
  }
  .lst_flow li .tit::before {
    font-size: clamp(1.82rem, 0.9154rem + 1.571vw, 2.8rem);
    width: clamp(2.21rem, 1.1115rem + 1.907vw, 3.4rem);
    height: clamp(2.21rem, 1.1115rem + 1.907vw, 3.4rem);
  }
  .lst_flow li .txt {
    padding: 0 0 0 clamp(3.445rem, 1.7327rem + 2.973vw, 5.3rem);
  }
  .lst_flow li:not(:last-child) {
    margin: 0 0 10rem;
  }
  .lst_flow li:not(:last-child)::after {
    width: 6rem;
    height: 2rem;
    inset: auto 0 -6rem;
  }
}
body.access .main .gmap {
  height: 110vw;
  margin: 1rem 0 0 0;
}
body.access .main .flex2 > li:first-child {
  margin: 0 0 1rem;
}
@media screen and (width >= 36em), print {
  body.access .main .gmap {
    height: 50rem;
    margin: 2rem 0 0 0;
  }
  body.access .main .flex2 > li:first-child {
    margin: 0;
  }
}

.anc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 0;
}
.anc > li {
  width: 48%;
}
.anc > li .btn {
  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%;
  text-align: center;
  background: var(--clr_sub07);
  color: #fff;
  position: relative;
  padding: 0.2rem clamp(3rem, 2.0769rem + 1.603vw, 4rem);
  border-radius: 3rem;
}
.anc > li .btn::after {
  font-family: "fontello";
  content: "\74";
  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;
  color: #fff;
  position: absolute;
  right: clamp(0.4rem, -0.1538rem + 0.962vw, 1rem);
  text-align: center;
}

@media screen and (width >= 36em), print {
  .anc {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 2rem 0;
  }
  .anc > li {
    width: 48%;
  }
  .anc > li .btn:hover {
    background: var(--clr_sub08);
    text-decoration: none !important;
  }
}
@media print {
  body {
    width: 1300px !important;
    zoom: 0.8;
  }
}/*# sourceMappingURL=style.css.map */