@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 {
  word-wrap: break-word;
}

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

h5, h6 {
  margin: 0;
}

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

p {
  margin: 1em 0;
}

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

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

:root {
  --clr_txt:#1A1311;
  --clr_txt_red:#f53b3b;
  --clr_txt_blue: #006FB9;
  --clr_dark_blue: #007CCF;
  --clr_blue: #00AFED;
  --clr_txt_pink: #FF5689;
  --clr_dark_pink: #E56F93;
  --clr_pink: #F692B0;
  --clr_light_pink: #FFE5ED;
  --clr_dark_orange: #F38200;
  --clr_orange: #F7A00B;
  --clr_light_orange: #FFC258;
  --clr_darkest_green: #006642;
  --clr_dark_green: #65AB16;
  --clr_green: #7AB438;
  --clr_light_green: #9AE867;
}

@font-face {
  font-family: "fontello";
  src: url("fontello/font/fontello.woff2") format("woff2");
  font-display: fallback;
}
@-webkit-keyframes bgzoom {
  100% {
    background-size: 120% auto;
  }
}
@keyframes bgzoom {
  100% {
    background-size: 120% auto;
  }
}
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@-webkit-keyframes fade_down {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-3rem);
            transform: translateY(-3rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    visibility: visible;
  }
}
@keyframes fade_down {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-3rem);
            transform: translateY(-3rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    visibility: visible;
  }
}
@-webkit-keyframes fade_up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(3rem);
            transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fade_up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(3rem);
            transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fade_right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10rem);
            transform: translateX(10rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fade_right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10rem);
            transform: translateX(10rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes fade_left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10rem);
            transform: translateX(-10rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fade_left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10rem);
            transform: translateX(-10rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes cutin_right {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes cutin_right {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes cutin_left {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes cutin_left {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@-webkit-keyframes balloon {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0.6rem);
            transform: translateY(0.6rem);
  }
}
@keyframes balloon {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0.6rem);
            transform: translateY(0.6rem);
  }
}
@-webkit-keyframes airball {
  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 airball {
  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 poyon {
  0% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
  }
  15% {
    -webkit-transform: scale(0.9, 0.9) translate(0%, 5%);
            transform: scale(0.9, 0.9) translate(0%, 5%);
  }
  30% {
    -webkit-transform: scale(1.3, 0.8) translate(0%, 10%);
            transform: scale(1.3, 0.8) translate(0%, 10%);
  }
  50% {
    -webkit-transform: scale(0.8, 1.3) translate(0%, -10%);
            transform: scale(0.8, 1.3) translate(0%, -10%);
  }
  70% {
    -webkit-transform: scale(1.1, 0.9) translate(0%, 5%);
            transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  100% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
    opacity: 1;
  }
}
@keyframes poyon {
  0% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
  }
  15% {
    -webkit-transform: scale(0.9, 0.9) translate(0%, 5%);
            transform: scale(0.9, 0.9) translate(0%, 5%);
  }
  30% {
    -webkit-transform: scale(1.3, 0.8) translate(0%, 10%);
            transform: scale(1.3, 0.8) translate(0%, 10%);
  }
  50% {
    -webkit-transform: scale(0.8, 1.3) translate(0%, -10%);
            transform: scale(0.8, 1.3) translate(0%, -10%);
  }
  70% {
    -webkit-transform: scale(1.1, 0.9) translate(0%, 5%);
            transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  100% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
    opacity: 1;
  }
}
.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_txt_red);
}

.txt_blue {
  color: var(--clr_txt_blue);
}

.txt_pink {
  color: var(--clr_txt_pink);
}

.txt_strong {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #FFF49E));
  background: linear-gradient(to bottom, transparent 60%, #FFF49E 60%);
}

.kome {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 0.3rem;
}
.kome::before {
  content: "※";
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.img_c,
.img_c_small {
  margin: 1rem auto;
}

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

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

.img_radius {
  border-radius: 0.4rem;
}

@media screen and (min-width: 48em), print {
  .img_c_small {
    width: 40%;
  }
  .img_l {
    float: left;
    margin: 0 3rem 2rem 0;
  }
  .img_r {
    float: right;
    margin: 0 0 2rem 3rem;
  }
  img.tate {
    max-width: 25% !important;
  }
  .img_radius {
    border-radius: 0.8rem;
  }
}
.sp_n {
  display: none;
}

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

.mt30 {
  margin-top: 3rem;
}

.mt20 {
  margin-top: 2rem;
}

.mt10 {
  margin-top: 1rem;
}

.pb40 {
  padding-bottom: 20rem;
}

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

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

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

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

@media screen and (min-width: 48em), print {
  .mt40 {
    margin-top: 8rem;
  }
  .mt30 {
    margin-top: 6rem;
  }
  .mt20 {
    margin-top: 4rem;
  }
  .mt10 {
    margin-top: 2rem;
  }
  .pb40 {
    padding-bottom: 40rem;
  }
  .main > section ~ section, .flex2 > section ~ section {
    margin-top: 8rem;
  }
  .main > section section ~ section, .flex2 > section section ~ section {
    margin-top: 6rem;
  }
  .main > section > section section ~ section, .flex2 > section > section section ~ section {
    margin-top: 4rem;
  }
  .main > section > section > section section ~ section, .flex2 > section > section > section section ~ section {
    margin-top: 2rem;
  }
}
.tbl_time {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.4rem;
  -webkit-text-size-adjust: none;
}
.tbl_time .close {
  color: var(--clr_txt);
}
.tbl_time .sat {
  color: #69AE3E;
}
.tbl_time caption {
  font-size: 85%;
  caption-side: bottom;
  text-align: left;
  margin-top: 1rem;
}
.tbl_time caption > dl > dt {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 0.3rem;
}
.tbl_time caption > dl > dt span {
  background: var(--clr_blue);
  color: #fff;
  display: block;
  border-radius: 100vh;
  padding: 0.2rem 2rem;
  text-align: center;
}
.tbl_time caption > dl > dt span.closed_day {
  background: var(--clr_pink);
}
.tbl_time caption > dl > dd {
  padding: 0.2rem 0.5rem;
  margin: 0 0 1rem;
}
.tbl_time caption > dl > dd ul li span {
  color: var(--clr_txt_blue);
}
.tbl_time tr th {
  font-weight: normal;
}
.tbl_time tr th[scope=col] {
  padding: 0.4rem 0;
  text-align: center;
  background: var(--clr_blue);
  color: #fff;
}
.tbl_time tr th[scope=col]:first-child {
  width: 35%;
  border-radius: 0.5rem 0 0 0;
}
.tbl_time tr th[scope=col]:last-child {
  border-radius: 0 0.5rem 0 0;
}
.tbl_time tr th[scope=col]:not(:first-of-type) {
  border-left: 1px solid #fff;
}
.tbl_time tr th[scope=row] {
  border-top: 1px solid var(--clr_blue);
  background: #fff;
}
.tbl_time tr td {
  text-align: center;
  padding: 1rem 0.4rem;
  border-top: 1px solid var(--clr_blue);
  border-left: 1px solid var(--clr_blue);
  line-height: 1;
  color: var(--clr_txt_blue);
  background: #fff;
}
.tbl_time tr:nth-of-type(2n + 1) th[scope=row],
.tbl_time tr:nth-of-type(2n + 1) td {
  background: #FFFDE9;
}
.tbl_time tr:last-of-type th[scope=row] {
  border-radius: 0 0 0 0.5rem;
}
.tbl_time tr:last-of-type td:last-child {
  border-radius: 0 0 0.5rem 0;
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    table-layout: fixed;
    font-size: 1.6rem;
  }
  .tbl_time caption {
    font-size: 100%;
    margin-top: 1.5rem;
  }
  .tbl_time caption > dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .tbl_time caption > dl > dt {
    width: 22%;
  }
  .tbl_time caption > dl > dd {
    width: 78%;
    padding: 0.2rem 1rem;
    margin: 0 0 1.5rem;
  }
  .tbl_time caption > dl > dd ul li {
    line-height: 1.5;
  }
  .tbl_time caption > dl > dd ul li dl dt {
    width: 19%;
  }
  .tbl_time caption > dl > dd ul li dl dd {
    width: 81%;
  }
  .tbl_time tr th[scope=col] {
    padding: 0.8rem 0;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 28%;
  }
  .tbl_time tr td {
    padding: 1.2rem 0;
  }
}
.gmap {
  width: 100%;
}

.btn_map {
  color: #fff;
  border: 1px solid #fff;
  background: var(--clr_txt_blue);
  padding: 0 3rem;
  border-radius: 100vh;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.btn_map::after {
  font-family: "fontello";
  content: "\e818";
  font-size: 120%;
}
@media screen and (min-width: 48em), print {
  .btn_map {
    padding: 0 4.3rem;
  }
  .btn_map:is(:hover, :focus-visible) {
    background: #fff;
    color: var(--clr_txt_blue);
    opacity: 1;
  }
}

.tit_01 {
  border-radius: 2.5rem;
  margin: 0 1rem;
  min-height: 10rem;
  background: url(../img/tit_01.svg) no-repeat center center/auto 100%;
  font-size: 2.2rem;
  line-height: 1.4;
  padding: 0.5rem;
  text-align: center;
  color: var(--clr_txt_pink);
  font-weight: normal;
}
.tit_01 span {
  border: 2px dotted #FFE284;
  border-radius: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 9.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem;
}

.tit_02 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2rem;
  text-align: center;
  line-height: 1.4;
  margin: 0 auto 2rem;
  color: var(--clr_txt_blue);
  background: url(../img/tit_02_l_up.png) no-repeat left center/3.5rem auto, url(../img/tit_02_r_up.png) no-repeat right center/3.5rem auto;
  padding: 0 3.8rem;
  min-height: 7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: normal;
  -webkit-text-size-adjust: none;
}
.tit_02 span {
  font-family: "Darumadrop One", cursive;
  font-size: 1.4rem;
  color: #97D56E;
  display: block;
}

body:not(.index) .main > section:nth-of-type(2n) .tit_02 {
  background: url(../img/tit_02_l_down.png) no-repeat left center/4rem auto, url(../img/tit_02_r_down.png) no-repeat right center/4rem auto;
}

.tit_03 {
  font-size: 1.8rem;
  line-height: 1.4;
  margin: 0 0 2rem;
  background: var(--clr_blue) url(../img/tit_03.svg) no-repeat left 0.8rem center/2rem auto;
  color: #fff;
  padding: 0.3rem 2rem 0.2rem 3.3rem;
  font-weight: normal;
  border-radius: 100vh;
}

.tit_04 {
  font-size: 1.6rem;
  line-height: 1.4;
  margin: 0 0 2rem;
  background: var(--clr_light_pink) url(../img/tit_04.svg) no-repeat left 0.8rem center/1.8rem auto;
  color: #D86084;
  padding: 0.2rem 2rem 0.1rem 3.3rem;
  font-weight: normal;
  border-radius: 100vh;
}
.tit_04.white {
  background: #fff url(../img/tit_04.svg) no-repeat left 0.8rem center/1.8rem auto;
}

.tit_05 {
  font-size: 1.6rem;
  line-height: 1.4;
  margin: 0 0 2rem;
  color: #69AE3E;
  font-weight: normal;
  padding: 0 1rem 0.2rem 3.3rem;
  border-bottom: 2px solid #D1F3BB;
  position: relative;
}
.tit_05::before {
  content: "●";
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  font-size: 50%;
  color: #97CE75;
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    min-height: 18.5rem;
    width: 110rem;
    margin: 2rem auto 0;
    background: url(../img/tit_01.svg) no-repeat center center/cover;
    font-size: 3.6rem;
    padding: 0.7rem;
    border-radius: 5rem;
  }
  .tit_01 span {
    border: 0.3rem dotted #FFE284;
    min-height: 17.8rem;
    border-radius: 4.5rem;
  }
  .tit_02 {
    font-size: 4.4rem;
    margin: 0 auto 3rem;
    padding: 0 11rem;
    min-height: 15rem;
    background: url(../img/tit_02_l_up.png) no-repeat left center/8.5rem auto, url(../img/tit_02_r_up.png) no-repeat right center/8.5rem auto;
  }
  .tit_02::before, .tit_02::after {
    width: 9rem;
    height: 14rem;
  }
  .tit_02 span {
    font-size: 3.9rem;
  }
  body:not(.index) .main > section:nth-of-type(2n) .tit_02 {
    background: url(../img/tit_02_l_down.png) no-repeat left center/8.5rem auto, url(../img/tit_02_r_down.png) no-repeat right center/8.5rem auto;
  }
  body.index .tit_02 {
    background: url(../img/tit_02_l_up.png) no-repeat left center/9.3rem auto, url(../img/tit_02_r_up.png) no-repeat right center/9.3rem auto;
  }
  .tit_03 {
    font-size: 3rem;
    padding: 0.7rem 1rem 0.6rem 4.8rem;
    margin: 0 0 3rem;
    background: var(--clr_blue) url(../img/tit_03.svg) no-repeat left 1.2rem center/3.5rem auto;
  }
  .tit_04 {
    font-size: 2.6rem;
    padding: 0.3rem 1rem 0.2rem 4.8rem;
    margin: 0 0 3rem;
    background: var(--clr_light_pink) url(../img/tit_04.svg) no-repeat left 1.2rem center/2.5rem auto;
  }
  .tit_04.white {
    background: #fff url(../img/tit_04.svg) no-repeat left 1.2rem center/2.5rem auto;
  }
  .tit_05 {
    font-size: 2.2rem;
    margin: 0 0 3rem;
    padding: 0 1rem 0.5rem 5rem;
  }
  .tit_05::before {
    top: 0.8rem;
    left: 2rem;
  }
}
.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_txt_pink);
  position: absolute;
  left: 0;
}
.lst_ul.kome > li::before {
  content: "※";
  color: var(--clr_txt);
}

.lst_ul_disc {
  margin: 0 0 0 2rem;
}
.lst_ul_disc > li {
  list-style: disc;
}
.lst_ul_disc > li:not(:last-child) {
  margin: 0 0 1rem;
}
.lst_ul_disc > li::marker {
  color: var(--clr_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 (min-width: 48em), print {
  .lst_dl01 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .lst_dl01 dt {
    width: 20%;
  }
  .lst_dl01 dd {
    width: 80%;
    padding: 0 0 0 1rem;
  }
}
.lst_dl02 {
  border: 1px solid var(--clr_pink);
}
.lst_dl02 dt {
  background: #FFF2F6;
  border-bottom: 1px solid var(--clr_pink);
  text-align: center;
  padding: 0.5rem 1rem;
}
.lst_dl02 dt:not(:first-of-type) {
  border-top: 1px solid var(--clr_pink);
}
.lst_dl02 dd {
  padding: 1rem;
}
@media screen and (min-width: 48em), print {
  .lst_dl02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .lst_dl02 dt, .lst_dl02 dd {
    width: 50%;
  }
  .lst_dl02 dt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 1rem;
    border-top: none;
    border-right: 1px solid var(--clr_pink);
  }
  .lst_dl02 dt:last-of-type {
    border-bottom: none;
  }
  .lst_dl02 dt:not(:first-of-type) {
    border-top: none;
  }
  .lst_dl02 dd {
    padding: 1rem 2rem;
  }
  .lst_dl02 dd:not(:last-of-type) {
    border-bottom: 1px solid var(--clr_pink);
  }
}

.lst_flow li {
  border: 3px solid var(--clr_pink);
  border-radius: 0.5rem;
  padding: 1rem;
  position: relative;
}
.lst_flow li:not(:last-of-type) {
  margin-bottom: 5rem;
}
.lst_flow li:not(:last-of-type)::after {
  content: "";
  border: 2rem solid transparent;
  border-top: 2rem solid var(--clr_pink);
  position: absolute;
  bottom: -6rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.lst_flow li .tit {
  background: var(--clr_pink);
  color: #fff;
  font-weight: normal;
  font-size: 1.8rem;
  padding: 0 1rem;
  border-radius: 0.3rem;
}
@media screen and (min-width: 48em), print {
  .lst_flow li {
    border-radius: 1rem;
    padding: 2rem 3rem;
  }
  .lst_flow li:not(:last-of-type) {
    margin-bottom: 9rem;
  }
  .lst_flow li:not(:last-of-type)::after {
    border: 3rem solid transparent;
    border-top: 3rem solid var(--clr_pink);
    bottom: -9rem;
  }
  .lst_flow li .tit {
    font-size: 2.4rem;
    border-radius: 0.7rem;
    padding: 0 2rem;
  }
}

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

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

@media screen and (min-width: 48em), print {
  .flex {
    gap: 1rem 5rem;
  }
  .flex2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .flex2 > section, .flex2 > li, .flex2 > div {
    width: 48%;
    margin-top: 0 !important;
  }
  .flex2.lst_ul > li:nth-last-child(2) {
    margin-bottom: 0;
  }
  .flex2.gap {
    gap: 4rem 0;
  }
  .flex3 {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .flex3 li {
    width: 31%;
  }
  .flex3 li:not(:nth-child(3n)) {
    margin: 0 2rem 0 0;
  }
}
.tel_style {
  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;
  font-family: "Josefin Sans", sans-serif;
  gap: 0 0.4rem;
  padding: 0.2rem 0 0;
  line-height: 1.4;
  font-size: 120%;
}
.tel_style::before {
  font-family: "fontello";
  content: "\e80a";
  color: var(--clr_darkest_green);
  margin: 0 0 0.3rem;
  font-size: 80%;
}
@media screen and (min-width: 48em), print {
  .tel_style {
    padding: 0.4rem 0 0;
  }
  .tel_style::before {
    margin: 0 0 0.6rem;
  }
}

.box_blue,
.box_pink {
  padding: 1rem;
  border-radius: 0.5rem;
}
@media screen and (min-width: 48em), print {
  .box_blue,
  .box_pink {
    padding: 3rem;
    border-radius: 1rem;
  }
}

.box_blue {
  background: #E4F5FD;
}

.box_pink {
  background: var(--clr_light_pink);
}

.btn_rsv {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.4rem;
  background: var(--clr_dark_pink);
  color: #fff;
  padding: 0.3rem 2rem;
  border-radius: 0.5rem;
}
.btn_rsv::before {
  font-family: "fontello";
  content: "\e813";
}
@media screen and (min-width: 48em), print {
  .btn_rsv {
    border-radius: 1rem;
    padding: 0.3rem 1rem;
    gap: 0 1rem;
    border: 0.2rem solid var(--clr_dark_pink);
  }
  .btn_rsv::before {
    font-size: 140%;
  }
  .btn_rsv:is(:hover, :focus-visible) {
    background: #fff;
    color: var(--clr_dark_pink);
  }
}

.btn_monshin {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.4rem;
  background: var(--clr_blue);
  color: #fff;
  padding: 0.3rem 2rem;
  border-radius: 100vh;
}
.btn_monshin::before {
  font-family: "fontello";
  content: "\e81b";
  font-size: 140%;
}
@media screen and (min-width: 48em), print {
  .btn_monshin {
    border-radius: 1rem;
    padding: 0.3rem 1rem;
    gap: 0 1rem;
    border: 0.2rem solid var(--clr_blue);
  }
  .btn_monshin:is(:hover, :focus-visible) {
    background: #fff;
    color: var(--clr_blue);
  }
}

.btn_blue,
.btn_pink {
  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.3rem;
  line-height: 1.4;
  padding: 0.4rem 2rem 0.2rem;
  color: #fff;
  text-decoration: none !important;
  border-radius: 100vh;
}
.btn_blue::before,
.btn_pink::before {
  font-family: "fontello";
  content: "\e81a";
}
.btn_blue.out::before,
.btn_pink.out::before {
  display: none;
}
.btn_blue.out::after,
.btn_pink.out::after {
  font-family: "fontello";
  content: "\f08e";
}
.btn_blue.pdf::before,
.btn_pink.pdf::before {
  display: none;
}
.btn_blue.pdf::after,
.btn_pink.pdf::after {
  font-family: "fontello";
  content: "\f1c1";
}
@media screen and (min-width: 48em), print {
  .btn_blue,
  .btn_pink {
    padding: 1rem 4rem 0.8rem;
  }
}

.btn_blue {
  background: var(--clr_blue);
  border: 2px solid #63D0F6;
}
@media screen and (min-width: 48em), print {
  .btn_blue {
    border: 3px solid #63D0F6;
  }
  .btn_blue:is(:hover, :focus-visible) {
    background: #6BC92D;
    border: 3px solid var(--clr_light_green);
  }
}

.btn_pink {
  background: var(--clr_dark_pink);
  border: 2px solid var(--clr_pink);
}
@media screen and (min-width: 48em), print {
  .btn_pink {
    border: 3px solid var(--clr_pink);
  }
  .btn_pink:is(:hover, :focus-visible) {
    background: var(--clr_orange);
    border: 3px solid var(--clr_light_orange);
  }
}

.link_out {
  padding: 0 0.3rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.3rem;
}
.link_out::after {
  font-family: "fontello";
  content: "\f08e";
}

.lst_anc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}
.lst_anc li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  padding: 0.4rem 2rem 0.2rem;
  color: #fff;
  text-decoration: none !important;
  border-radius: 100vh;
  background: var(--clr_dark_pink);
  border: 2px solid var(--clr_pink);
}
.lst_anc li a::before {
  font-family: "fontello";
  content: "\e81a";
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  font-size: 80%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 48em), print {
  .lst_anc {
    gap: 1rem;
  }
  .lst_anc li a {
    padding: 0.5rem 4rem 0.3rem;
    border: 3px solid var(--clr_pink);
  }
  .lst_anc li a:is(:hover, :focus-visible) {
    background: var(--clr_orange);
    border: 3px solid var(--clr_light_orange);
  }
}

@media screen and (min-width: 48em), print {
  .slick-arrow {
    position: absolute;
    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;
    z-index: 5;
    width: 5rem;
    height: 5rem;
    top: 26rem;
  }
  .slick-arrow::before {
    font-size: 4rem;
    color: var(--clr_blue);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .slick-arrow.slick-prev {
    left: -6rem;
  }
  .slick-arrow.slick-prev::before {
    font-family: "fontello";
    content: "\e81a";
    -webkit-transform: rotateZ(180deg);
            transform: rotateZ(180deg);
  }
  .slick-arrow.slick-next {
    right: -6rem;
  }
  .slick-arrow.slick-next::before {
    font-family: "fontello";
    content: "\e81a";
  }
  .slick-arrow:is(:hover, :focus-visible)::before {
    color: var(--clr_dark_blue);
  }
}
.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_dark_blue);
}
.slick-dots li button:is(:hover, :focus-visible) {
  opacity: 0.8;
}
.slick-dots li.slick-active button {
  opacity: 0.75;
}

@media screen and (min-width: 48em), print {
  .slick-dots {
    margin: 1.6rem auto;
  }
  .slick-dots li {
    width: 1.4rem;
    height: 1.4rem;
    margin: 0 0.6rem;
  }
}
html {
  font-size: 3.125vw;
  scroll-behavior: smooth;
}

body {
  background: url(../img/index_lower_bg01.png) no-repeat center top 29rem/150% auto;
  color: var(--clr_txt);
  font-family: "Kosugi Maru", sans-serif;
}
body::after {
  visibility: hidden;
  width: 100vw;
  height: 100vh;
  content: "";
  background: rgba(0, 175, 237, 0.6);
  position: fixed;
  top: 0;
  z-index: 90;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  backdrop-filter: blur(0.6rem);
}
body.spnav_modal {
  overflow: hidden !important;
}
body.spnav_modal::after {
  visibility: visible;
  opacity: 1;
}

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

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

@media screen and (min-width: 48em), print {
  html {
    font-size: 62.5%;
  }
  body {
    background: url(../img/index_lower_bg01.png) no-repeat center top/200rem auto;
    min-width: calc(1200px + 40px);
    max-width: 200rem;
    margin: auto;
  }
  body::after {
    display: none;
  }
  a, button {
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  a:hover, button:hover {
    opacity: 0.8;
  }
  .wrap {
    width: 1200px;
    margin: auto;
  }
  .main {
    font-size: 1.6rem;
    line-height: 2;
  }
  .main a:not([class*=btn]):hover {
    opacity: 1;
    text-decoration: none;
  }
}
:target {
  scroll-margin-top: 6rem;
}
@media screen and (min-width: 48em), print {
  :target {
    scroll-margin-top: 8rem;
  }
}

.header {
  position: relative;
}
.header > .wrap .logo_mark {
  display: none;
}
.header > .wrap .headR .logo {
  width: 100%;
  height: 6.6rem;
  position: relative;
  z-index: 100;
  background: #fff;
  padding: 1rem 1rem 0;
}
.header > .wrap .headR .logo a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/logo.svg) no-repeat center/contain;
}
.header > .wrap .headR .logo a .clip {
  display: block;
  height: 100%;
  overflow: hidden;
  clip-path: inset(50%);
  color: transparent;
}
.header > .wrap .headR ul {
  display: none;
}

@media screen and (min-width: 48em), print {
  .header > .wrap {
    padding: 2rem 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
  .header > .wrap .logo_mark {
    display: block;
  }
  .header > .wrap .headR {
    width: 80%;
    margin: 0;
  }
  .header > .wrap .headR.change_color .btn_wrap li .btn_rsv {
    position: fixed;
    right: calc((100% - 120rem) / 2);
    top: 0;
    width: 20rem;
    height: 5rem;
    border-radius: 0;
  }
  .header > .wrap .headR .logo {
    height: 6.4rem;
    padding: 0;
    position: relative;
    z-index: 101;
    background: none;
  }
  .header > .wrap .headR .logo a {
    max-width: 56rem;
    background: url(../img/logo.svg) no-repeat left/contain;
  }
  .header > .wrap .headR ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .header > .wrap .headR ul.btn_wrap {
    position: absolute;
    top: 0;
    right: 5rem;
    z-index: 102;
  }
  .header > .wrap .headR ul.btn_wrap li .btn_line {
    border-radius: 0 0 1rem 1rem;
    padding: 1.5rem 0.3rem;
    border: 0.2rem solid #fff;
    background: #fff;
    display: block;
  }
  .header > .wrap .headR ul.btn_wrap li .btn_line img {
    width: 11rem;
  }
  .header > .wrap .headR ul.btn_wrap li .btn_line:is(:hover, :focus-visible) {
    border: 0.2rem solid var(--clr_light_green);
    opacity: 1;
  }
  .header > .wrap .headR ul.btn_wrap li .btn_rsv {
    font-size: 1.8rem;
    border-radius: 0 0 1rem 1rem;
    padding: 1.5rem 1rem;
    -webkit-transition: 0s;
    transition: 0s;
  }
  .header > .wrap .headR ul.btn_wrap li .btn_rsv.hide {
    -webkit-transform: translateY(-300%);
            transform: translateY(-300%);
  }
  .header > .wrap .headR ul.btn_wrap li .btn_monshin {
    font-size: 1.8rem;
    border-radius: 0 0 1rem 1rem;
    padding: 1.5rem 1rem;
    -webkit-transition: 0s;
    transition: 0s;
  }
  .header > .wrap .headR ul li .tel_style {
    font-size: 2.8rem;
  }
  .header > .wrap .headR ul li.add {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.8rem;
    text-align: left;
    gap: 0.5rem;
    line-height: 1.6;
  }
  .header > .wrap .headR ul li.add::before {
    font-family: "fontello";
    content: "\e80b";
    color: var(--clr_green);
  }
  .header > .wrap .headR ul li.add br {
    display: none;
  }
}
#nav {
  width: 100vw;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
}
#nav #sp_menu {
  width: 100%;
  height: 5rem;
  text-align: center;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#nav #sp_menu.change_color {
  background: rgba(255, 255, 255, 0.8);
}
#nav #sp_menu li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  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;
  overflow: hidden;
}
#nav #sp_menu li a {
  color: var(--clr_dark_blue);
}
#nav #sp_menu li a::before {
  display: block;
  font-size: 2rem;
}
#nav #sp_menu li:nth-last-of-type(2n) a {
  color: var(--clr_dark_pink);
}
#nav #sp_menu li .home::before {
  font-family: "fontello";
  content: "\e80b";
}
#nav #sp_menu li .tel_sp::before {
  font-family: "fontello";
  content: "\e80a";
}
#nav #sp_menu li .rsv_sp::before {
  font-family: "fontello";
  content: "\e813";
}
#nav #sp_menu li .rsv_web::before {
  font-family: "fontello";
  content: "\e81b";
}
#nav #sp_menu li .acs::before {
  font-family: "fontello";
  content: "\e805";
}
#nav #sp_menu li #hamburger {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 100%;
  height: 100%;
}
#nav #sp_menu li #hamburger span {
  width: 2.5rem;
  height: 3px;
  position: absolute;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#nav #sp_menu li #hamburger span:nth-of-type(1) {
  top: 1.4rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--clr_dark_orange);
}
#nav #sp_menu li #hamburger span:nth-of-type(2) {
  top: 2.3rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--clr_green);
}
#nav #sp_menu li #hamburger span:nth-of-type(3) {
  top: 3.2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--clr_dark_pink);
}
#nav #sp_menu li #hamburger.close {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}
#nav #sp_menu li #hamburger.close span:nth-of-type(1) {
  -webkit-transform: translate(-1.2rem, 0.9rem) rotate(-45deg);
          transform: translate(-1.2rem, 0.9rem) rotate(-45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  width: 2rem;
}
#nav #sp_menu li #hamburger.close span:nth-of-type(2) {
  display: none;
}
#nav #sp_menu li #hamburger.close span:nth-of-type(3) {
  -webkit-transform: translate(-1.2rem, -0.9rem) rotate(45deg);
          transform: translate(-1.2rem, -0.9rem) rotate(45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  width: 2rem;
}
#nav .gnav_subnav {
  display: none;
  width: 94vw;
  max-height: calc(100dvh - 13rem);
  overflow-y: auto;
  background: #fff;
  padding: 1.6rem;
  margin: auto;
  position: absolute;
  top: 5rem;
  left: 0;
  right: 0;
  z-index: 100;
}
#nav .gnav_subnav .gnav > li {
  border-bottom: 3px dotted #BBB;
}
#nav .gnav_subnav .gnav > li:nth-of-type(2n) > a::before, #nav .gnav_subnav .gnav > li:nth-of-type(2n) .sub::before {
  color: var(--clr_dark_pink);
}
#nav .gnav_subnav .gnav > li:nth-of-type(2n) > a.current, #nav .gnav_subnav .gnav > li:nth-of-type(2n) .sub.current {
  color: var(--clr_txt_pink);
}
#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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-size: 1.4rem;
  gap: 0 1rem;
}
#nav .gnav_subnav .gnav > li > a::before, #nav .gnav_subnav .gnav > li .sub::before {
  color: var(--clr_dark_blue);
}
#nav .gnav_subnav .gnav > li > a.home::before, #nav .gnav_subnav .gnav > li .sub.home::before {
  font-family: "fontello";
  content: "\e80b";
}
#nav .gnav_subnav .gnav > li > a.doctor::before, #nav .gnav_subnav .gnav > li .sub.doctor::before {
  font-family: "fontello";
  content: "\e80c";
}
#nav .gnav_subnav .gnav > li > a.clinic::before, #nav .gnav_subnav .gnav > li .sub.clinic::before {
  font-family: "fontello";
  content: "\e80d";
}
#nav .gnav_subnav .gnav > li > a.sub::before, #nav .gnav_subnav .gnav > li .sub.sub::before {
  font-family: "fontello";
  content: "\e80e";
}
#nav .gnav_subnav .gnav > li > a.first::before, #nav .gnav_subnav .gnav > li .sub.first::before {
  font-family: "fontello";
  content: "\e811";
}
#nav .gnav_subnav .gnav > li > a.access::before, #nav .gnav_subnav .gnav > li .sub.access::before {
  font-family: "fontello";
  content: "\e812";
}
#nav .gnav_subnav .gnav > li > a.current, #nav .gnav_subnav .gnav > li .sub.current {
  color: var(--clr_txt_blue);
}
#nav .gnav_subnav .gnav > li .sub::after {
  font-family: "fontello";
  content: "\e80f";
  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: 80%;
  color: var(--clr_dark_pink);
}
#nav .gnav_subnav .gnav > li .sub.close::after {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}
#nav .gnav_subnav .gnav > li .subbox {
  display: none;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a {
  display: block;
  padding: 1rem;
  color: #fff;
  font-size: 1.2rem;
  background: rgba(101, 171, 22, 0.95);
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a br {
  display: none;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a::before {
  content: "・";
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a.current {
  background: rgba(101, 171, 22, 0.7);
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li:not(:last-of-type) a {
  border-bottom: 1px solid #fff;
}
#nav .gnav_subnav .line_monshin {
  padding: 1rem 0;
}
#nav .gnav_subnav .line_monshin .btn_line {
  display: block;
  margin-bottom: 1rem;
  padding: 1rem;
}
#nav .gnav_subnav .line_monshin .btn_line img {
  margin: auto;
}
#nav .gnav_subnav .line_monshin .btn_monshin {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  margin: auto;
  font-size: 1.4rem;
}
#nav .gnav_subnav #menu_close {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  color: #fff;
  background: rgba(247, 160, 11, 0.7);
  text-align: center;
  padding: 0.6rem 0;
  margin: 2rem 0 0;
  border-radius: 100vh;
}
#nav .gnav_subnav #menu_close::before {
  font-family: "fontello";
  content: "\e806";
  margin: 0 0.6rem 0 0;
}

@media screen and (min-width: 48em), print {
  #nav {
    width: auto;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    -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: calc(var(--vh, 1vh) * 100);
    overflow-y: visible;
    padding: 0;
    position: static;
    background: transparent;
  }
  #nav .gnav_subnav.change_color {
    background: rgba(255, 255, 255, 0.8);
  }
  #nav .gnav_subnav.change_color .gnav {
    padding: 0 20rem 0 0;
  }
  #nav .gnav_subnav .gnav {
    width: 1200px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 5rem 1rem;
    border: none;
  }
  #nav .gnav_subnav .gnav > li {
    width: 100%;
    position: relative;
    border-right: 3px dotted #BBB;
    border-bottom: none;
  }
  #nav .gnav_subnav .gnav > li:first-of-type {
    border-left: 3px dotted #bbb;
  }
  #nav .gnav_subnav .gnav > li:nth-of-type(2n) > a:is(:hover, :focus-visible, .current), #nav .gnav_subnav .gnav > li:nth-of-type(2n) .sub:is(:hover, :focus-visible, .current) {
    color: var(--clr_dark_pink);
  }
  #nav .gnav_subnav .gnav > li > a, #nav .gnav_subnav .gnav > li .sub {
    display: block;
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.4;
    margin: 0;
    padding: 0;
    cursor: pointer;
  }
  #nav .gnav_subnav .gnav > li > a::before, #nav .gnav_subnav .gnav > li .sub::before {
    display: block;
    font-size: 2rem;
  }
  #nav .gnav_subnav .gnav > li > a::after, #nav .gnav_subnav .gnav > li .sub::after {
    margin: 0 0 0 0.8rem;
  }
  #nav .gnav_subnav .gnav > li > a:is(:hover, :focus-visible, .current), #nav .gnav_subnav .gnav > li .sub:is(:hover, :focus-visible, .current) {
    color: var(--clr_txt_blue);
    opacity: 1;
  }
  #nav .gnav_subnav .gnav > li .subbox {
    display: none;
    width: 100%;
    position: absolute;
    top: 120%;
    z-index: 100;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a {
    padding: 0.6rem 0;
    font-size: 1.6rem;
  }
  #nav .gnav_subnav .line_monshin {
    display: none;
  }
  #nav .gnav_subnav #menu_close {
    display: none;
  }
}
body:is(.index) > .overview {
  margin-top: -17rem;
}

.overview {
  padding: 4rem 0 0;
  font-size: 1.4rem;
  line-height: 1.6;
  position: relative;
}
.overview::before {
  content: "";
  width: 100%;
  height: 50rem;
  background: url(../img/overview_warter_group.svg) no-repeat center top/180%;
  position: absolute;
  top: 14rem;
  left: 0;
  right: 0;
  z-index: 1;
}
.overview .clinic_name {
  margin: 0 auto 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 90%;
  gap: 0.5rem;
}
.overview .clinic_name::before {
  content: "";
  width: 4rem;
  height: 4rem;
  background: url(../img/icon_splash_pink.svg) no-repeat center/100% auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.overview .clinic_name::after {
  content: "";
  width: 4rem;
  height: 4rem;
  background: url(../img/icon_splash_blue.svg) no-repeat center/100% auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.overview .clinic_name .img_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.overview .clinic_name .img_wrap img {
  width: 100%;
}
.overview .clinic_name .img_wrap img.logo_mark {
  width: 55%;
}
.overview .overview_inner {
  padding: 2rem 1rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(83%, var(--clr_blue)), color-stop(83%, var(--clr_txt_blue)));
  background: linear-gradient(to bottom, var(--clr_blue) 83%, var(--clr_txt_blue) 83%);
  position: relative;
}
.overview .overview_inner::before {
  content: "";
  width: 100%;
  height: 4rem;
  background: url(../img/overview_round.svg) no-repeat center top/120% auto;
  position: absolute;
  top: -4rem;
  left: 0;
  right: 0;
}
.overview .overview_inner::after {
  content: "";
  width: 100%;
  height: 4rem;
  background: url(../img/overview_round.svg) no-repeat center top/120% auto;
  position: absolute;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  bottom: 18rem;
  left: 0;
  right: 0;
}
.overview .overview_inner .wrap {
  background: #EBFAFF;
  border-radius: 1.5rem;
  padding: 1rem;
  margin: 0 0 2rem;
  position: relative;
  z-index: 2;
}
.overview .overview_inner .wrap::before {
  content: "● Clinic Summary ●";
  font-family: "Darumadrop One", cursive;
  color: #fff;
  font-size: 2.4rem;
  position: absolute;
  top: -4rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  text-align: center;
}
.overview .overview_inner .wrap .overviewL .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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.2rem;
}
.overview .overview_inner .wrap .overviewL .gaiyo dt {
  width: 25%;
  color: var(--clr_txt);
  margin: 0 0 1rem;
}
.overview .overview_inner .wrap .overviewL .gaiyo dt span {
  background: var(--clr_pink);
  display: inline-block;
  padding: 0.2rem 1rem;
  border-radius: 100vh;
  color: #fff;
  width: 100%;
  text-align: center;
}
.overview .overview_inner .wrap .overviewL .gaiyo dd {
  width: 75%;
  padding: 0.2rem 0.4rem;
  margin: 0 0 1rem;
}
.overview .overview_inner .wrap .overviewL ul {
  border-left: 2px solid var(--clr_pink);
  padding: 0 0 0 0.5rem;
  margin: 0 0 1rem;
}
.overview .overview_inner .wrap .overviewL ul li {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.overview .overview_inner .wrap .overviewR .tbl_time {
  margin: 2rem 0;
}
.overview .overview_inner .gmap {
  height: 100vw;
  border-radius: 1.5rem;
  overflow: hidden;
  z-index: 2;
  position: relative;
}
.overview .overview_inner .btn_map {
  margin: 1rem auto;
}

@media screen and (min-width: 48em), print {
  body:is(.index) > .overview {
    margin-top: -42rem;
    padding: 8rem 0 0;
  }
  .overview {
    padding: 4rem 0 0;
  }
  .overview::before {
    height: 117rem;
    background: url(../img/overview_warter_group.svg) no-repeat center top/200rem auto;
    top: 22rem;
  }
  .overview .clinic_name {
    margin: 0 auto 16rem;
  }
  .overview .clinic_name::before, .overview .clinic_name::after {
    width: 8rem;
    height: 8rem;
  }
  .overview .clinic_name .img_wrap img {
    width: 42.5rem;
  }
  .overview .clinic_name .img_wrap img.logo_mark {
    width: 22.6rem;
  }
  .overview .overview_inner {
    padding: 0 0 3rem;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, var(--clr_blue)), color-stop(80%, var(--clr_txt_blue)));
    background: linear-gradient(to bottom, var(--clr_blue) 80%, var(--clr_txt_blue) 80%);
  }
  .overview .overview_inner::before {
    height: 11rem;
    top: -10rem;
    background: url(../img/overview_round.svg) no-repeat center top/200rem auto;
  }
  .overview .overview_inner::after {
    height: 11rem;
    background: url(../img/overview_round.svg) no-repeat center top/200rem auto;
    bottom: 15rem;
  }
  .overview .overview_inner .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 110rem;
    margin: 0 auto 4rem;
    padding: 4.5rem 5rem 3.5rem;
    border-radius: 3rem;
  }
  .overview .overview_inner .wrap::before {
    font-size: 3.4rem;
    top: -6rem;
  }
  .overview .overview_inner .wrap .overviewL, .overview .overview_inner .wrap .overviewR {
    width: 48%;
  }
  .overview .overview_inner .wrap .overviewL .gaiyo {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  .overview .overview_inner .wrap .overviewL .gaiyo dt {
    width: 21%;
  }
  .overview .overview_inner .wrap .overviewL .gaiyo dt:not(:last-of-type) {
    margin: 0 0 2.3rem;
  }
  .overview .overview_inner .wrap .overviewL .gaiyo dt span {
    padding: 0.4rem 1rem;
  }
  .overview .overview_inner .wrap .overviewL .gaiyo dd {
    padding: 0rem 1rem;
    width: 79%;
  }
  .overview .overview_inner .wrap .overviewL .gaiyo dd:not(:last-of-type) {
    margin: 0 0 2.3rem;
  }
  .overview .overview_inner .wrap .overviewL ul {
    margin: 0 0 2rem;
  }
  .overview .overview_inner .wrap .overviewL ul li {
    margin-bottom: 0.3rem;
  }
  .overview .overview_inner .wrap .overviewL ul li {
    font-size: 1.6rem;
  }
  .overview .overview_inner .wrap .overviewR .tbl_time {
    margin: 0;
  }
  .overview .overview_inner .gmap {
    height: 62.4rem;
    width: 110rem;
    margin: auto;
    border-radius: 3rem;
  }
  .overview .overview_inner .btn_map {
    font-size: 1.6rem;
    margin: 2rem auto 0;
  }
}
#tel_up {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 10;
}
#tel_up #pageup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1;
  background: #fff url(../img/footer_pageup.png) no-repeat center bottom 1rem/90% auto;
  border: 1px solid #63D0F6;
  overflow: hidden;
}
#tel_up #pageup::before {
  display: block;
  font-family: "fontello";
  content: "\e819";
  color: var(--clr_blue);
}
#tel_up #pageup .clip {
  display: block;
  font-size: 1rem;
  clip-path: inset(50%);
  color: transparent;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: 0;
}

@media screen and (min-width: 48em), print {
  #tel_up {
    width: 12rem;
    height: 12rem;
    bottom: 4rem;
    right: 4rem;
  }
  #tel_up #pageup {
    width: 100%;
    height: 100%;
    font-size: 3rem;
    background: #fff url(../img/footer_pageup.png) no-repeat center bottom 2rem/92% auto;
    border: 2px solid #63D0F6;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    bottom: 0;
    right: 0;
  }
  #tel_up #pageup::before {
    font-size: 130%;
  }
  #tel_up #pageup:is(:hover, :focus-visible) {
    -webkit-transform: translateY(-1.5rem);
            transform: translateY(-1.5rem);
    opacity: 1;
  }
}
.footer {
  text-align: center;
  padding: 0 0 4rem;
  background: var(--clr_txt_blue);
}
.footer .copy {
  display: block;
  color: #fff;
  padding: 0.6rem 1rem;
  font-size: 1.2rem;
}
.footer ul {
  display: none;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 1rem 0 0;
  }
  .footer .copy {
    padding: 2rem 0 3rem;
  }
  .footer ul {
    display: block;
    text-align: center;
  }
  .footer ul li {
    display: inline-block;
    font-size: 1.6rem;
    margin: 0 0 0.5rem;
    -webkit-text-size-adjust: none;
    color: #fff;
  }
  .footer ul li:not(:last-child)::after {
    content: "|";
    margin: 0 1.7rem;
  }
  .footer ul li a {
    opacity: 1;
  }
  .footer ul li a br {
    display: none;
  }
  .footer ul li a:hover {
    text-decoration: underline;
  }
  .footer ul li.treatment {
    display: none;
  }
}
.faq {
  margin-bottom: 1rem;
}

@media screen and (min-width: 48em), print {
  .faq {
    margin-bottom: 2rem;
  }
}
.faq dt {
  border-bottom: 2px solid var(--clr_blue);
  cursor: pointer;
  position: relative;
  padding: 0rem 0 0 2rem;
}

.faq dt::before {
  content: "Q";
  font-size: 1.8rem;
  font-weight: bold;
  position: absolute;
  top: -0.5rem;
  left: 0;
  padding-right: 1rem;
  color: var(--clr_blue);
}

@media screen and (min-width: 48em), print {
  .faq dt::before {
    font-size: 2.4rem;
    top: -1rem;
  }
}
@media screen and (min-width: 48em), print {
  .faq dt {
    padding: 0rem 0 0 3rem;
  }
}
.faq dd {
  display: none;
  position: relative;
  padding: 1rem 0 0 2rem;
}

.faq dd::before {
  content: "A";
  position: absolute;
  top: 0.5rem;
  left: 0;
  font-size: 1.8rem;
  color: var(--clr_pink);
  padding: 0 1rem 0 0;
  font-weight: bold;
}

@media screen and (min-width: 48em), print {
  .faq dd::before {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 48em), print {
  .faq dd {
    padding: 1rem 0 0 3rem;
  }
}
.keyvsl {
  width: 100%;
  height: 39rem;
  position: relative;
  overflow: hidden;
}
.keyvsl #keyvsl {
  width: 120%;
  height: 27rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  overflow: hidden;
  visibility: hidden;
  clip-path: url(#clip);
}
.keyvsl #keyvsl .slick-list div img {
  height: 27rem !important;
  -o-object-fit: cover;
     object-fit: cover;
  margin: auto;
}
.keyvsl #keyvsl .slick-dots {
  margin: 0.6rem 0 0;
  position: relative;
  z-index: 2;
}
.keyvsl #keyvsl .slick-dots li {
  width: 1rem;
  height: 1rem;
  margin: 0 0.6rem;
}
.keyvsl .clip_shape {
  width: 0;
  position: absolute;
  top: 0;
}
.keyvsl > .wrap {
  position: absolute;
  top: 18rem;
  left: 0;
  right: 0;
  padding: 0 1rem;
}
.keyvsl > .wrap .catch {
  background: #fff;
  border-radius: 100vh;
  padding: 0.3rem 2rem;
  font-size: 1.4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  opacity: 0;
  -webkit-animation: fadein 1s forwards normal;
          animation: fadein 1s forwards normal;
  line-height: 1.4;
}
.keyvsl > .wrap .open {
  width: 50%;
  height: 17rem;
  background: url(../img/index_kv_open_bg.svg) no-repeat center/100% auto;
  position: absolute;
  top: 4rem;
  right: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.3;
  text-align: center;
  opacity: 0;
  -webkit-animation: poyon 1s forwards normal;
          animation: poyon 1s forwards normal;
}
.keyvsl > .wrap .open span {
  display: block;
  color: #FFF9C7;
  font-size: 1.2rem;
  margin: 0.5rem 0 0;
}

@media screen and (min-width: 48em), print {
  .keyvsl {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .keyvsl #keyvsl {
    height: 70rem;
    width: 142rem;
    margin: auto;
    left: auto;
    -webkit-transform: none;
            transform: none;
    max-width: 100%;
  }
  .keyvsl #keyvsl .slick-list div img {
    height: 70rem !important;
  }
  .keyvsl #keyvsl .slick-dots {
    margin: 1rem 0 0;
  }
  .keyvsl #keyvsl .slick-dots li {
    width: 1.6rem;
    height: 1.6rem;
    margin: 0 1.2rem;
  }
  .keyvsl > .wrap {
    top: 58rem;
    padding: 0 5rem;
    z-index: 1;
  }
  .keyvsl > .wrap .catch {
    font-size: 3.2rem;
    margin: 0 3rem 0 auto;
    padding: 0.5rem 2rem;
  }
  .keyvsl > .wrap .open {
    width: 25rem;
    height: 27rem;
    font-size: 2.8rem;
    top: -25rem;
    right: 5rem;
    z-index: -1;
  }
  .keyvsl > .wrap .open span {
    font-size: 2.2rem;
  }
}
.c-modal_bg, #onload-modal_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: rgba(200, 240, 255, 0.8);
  display: none;
}

.c-modal, #onload-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9999;
  width: 90%;
  height: auto;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 10px;
  padding: 2rem 1rem;
  font-size: 1.3rem;
  display: none;
}
.c-modal .tit-basic01, #onload-modal .tit-basic01 {
  font-size: 1.6rem;
  margin: 2rem 0 1.5rem;
}
.c-modal .scroll, #onload-modal .scroll {
  max-height: 70vh;
  padding: 0 1rem;
  overflow-y: scroll;
}
@media screen and (min-width: 48em), print {
  .c-modal, #onload-modal {
    width: 90rem;
    font-size: 2rem;
    padding: 3rem 2rem;
  }
  .c-modal .tit-basic01, #onload-modal .tit-basic01 {
    font-size: 2.6rem;
  }
  .c-modal .scroll, #onload-modal .scroll {
    max-height: 60vh;
    padding: 0 4rem;
    overflow-y: scroll;
  }
}

.c-modal_close, #onload-modal_close {
  display: block;
  cursor: pointer;
  text-align: center;
  padding: 0.5rem 3rem;
  border: 1px solid #ccc;
  border-radius: 50vh;
  line-height: 1;
  margin: 2rem auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.info {
  padding: 0 1rem 1rem;
}
.info .tit {
  font-size: 1.2rem;
  padding: 3rem 0 3rem 3rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  margin: 0 auto 0 2rem;
  background: url(../img/index_info_tit.svg) no-repeat left center/71% auto;
  position: relative;
  z-index: 1;
  font-weight: normal;
}
.info .tit::before {
  content: attr(data-txt);
  color: var(--clr_txt_blue);
  font-size: 2.8rem;
  line-height: 1;
  display: block;
  font-family: "Darumadrop One", cursive;
}
.info .tit span {
  line-height: 1.6;
}
.info .tit span::before {
  font-family: "fontello";
  content: "\e814";
  color: var(--clr_txt_blue);
  font-size: 160%;
  margin: 0 0.3rem 0 0;
}
.info .info_inner {
  background: #FFFAD1;
  padding: 0.5rem;
  border-radius: 2.5rem;
  position: relative;
  z-index: 0;
  margin-top: -3rem;
  opacity: 0;
}
.info .info_inner.trigger {
  -webkit-animation: fade_up 1s forwards normal;
          animation: fade_up 1s forwards normal;
}
.info .info_inner .dl_wrap {
  border: 2px dotted #FFE284;
  border-radius: 2rem;
  padding: 3rem 1rem;
}
.info .info_inner .dl_wrap dl {
  max-height: 100vw;
  overflow-y: auto;
  overscroll-behavior-y: none;
  line-height: 1.6;
  scrollbar-color: #FFE284 #FFFAD1;
}
.info .info_inner .dl_wrap dl::-webkit-scrollbar {
  background-color: #FFFAD1;
  border-radius: 100vw;
  width: 1rem;
}
.info .info_inner .dl_wrap dl::-webkit-scrollbar-thumb {
  background: #FFE284;
  border-radius: 100vw;
}
.info .info_inner .dl_wrap dl dt {
  padding: 0 0 0 2.3rem;
  color: var(--clr_txt_pink);
  cursor: pointer;
  position: relative;
}
.info .info_inner .dl_wrap dl dt::before {
  font-family: "fontello";
  content: "\e819";
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
  position: absolute;
  top: 0.2rem;
  left: 0;
  width: 2rem;
  height: 2rem;
  background: #007CCF;
  border-radius: 50%;
  color: #FFFAD1;
  font-size: 80%;
  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;
}
.info .info_inner .dl_wrap dl dt.close::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.info .info_inner .dl_wrap dl dt:not(:first-of-type) {
  padding: 1.6rem 0 0 2.3rem;
}
.info .info_inner .dl_wrap dl dt:not(:first-of-type)::before {
  top: 1.8rem;
}
.info .info_inner .dl_wrap dl dt .date {
  color: #767676;
  font-size: 1.2rem;
}
.info .info_inner .dl_wrap dl dd {
  padding: 0 0 0 2.3rem;
  display: none;
}

@media screen and (min-width: 48em), print {
  .info {
    padding: 0;
  }
  .info .tit {
    font-size: 2rem;
    padding: 5.5rem 0 6.5rem 5.5rem;
    margin: 0 auto 0 14rem;
  }
  .info .tit::before {
    font-size: 4.4rem;
  }
  .info .info_inner {
    width: 110rem;
    margin: -7.5rem auto auto;
    padding: 0.8rem;
    border-radius: 5rem;
  }
  .info .info_inner .dl_wrap {
    border: 3px dotted #FFE284;
    border-radius: 4.2rem;
    padding: 7.5rem 2rem 6.3rem;
  }
  .info .info_inner .dl_wrap dl {
    padding: 0 4.3rem;
    min-height: 20rem;
    max-height: 40rem;
  }
  .info .info_inner .dl_wrap dl dt {
    padding: 0 0 0 4rem;
    font-size: 2.2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 0 1rem;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .info .info_inner .dl_wrap dl dt::before {
    width: 3rem;
    height: 3rem;
    top: 0;
  }
  .info .info_inner .dl_wrap dl dt:not(:first-of-type) {
    padding: 3rem 0 0 4rem;
  }
  .info .info_inner .dl_wrap dl dt:not(:first-of-type)::before {
    top: 3.2rem;
  }
  .info .info_inner .dl_wrap dl dt > div {
    max-width: 100%;
  }
  .info .info_inner .dl_wrap dl dt .date {
    font-size: 1.6rem;
  }
  .info .info_inner .dl_wrap dl dt:hover {
    color: var(--clr_txt_blue);
  }
  .info .info_inner .dl_wrap dl dd {
    padding: 0 0 0 4rem;
    font-size: 1.8rem;
  }
}
.btn_influenza {
  display: block;
  background: var(--clr_pink);
  width: 90%;
  border-radius: 100vh;
  margin: 1rem auto;
  padding: 0.5rem;
  text-decoration: none !important;
  color: #fff;
  line-height: 1.4;
}
.btn_influenza span {
  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;
  gap: 1rem;
  border: 1px solid #fff;
  border-radius: 100vh;
  padding: 1rem;
}
.btn_influenza span::after {
  content: "";
  width: 2rem;
  height: 2rem;
  background: url(../img/icon_arrow.svg) no-repeat center/100% auto;
}

@media screen and (min-width: 48em), print {
  .btn_influenza {
    width: 100%;
    font-size: 2.4rem;
    margin: 1rem auto;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .btn_influenza span {
    padding: 3rem 0;
  }
  .btn_influenza span::after {
    width: 2.6rem;
    height: 2.6rem;
  }
  .btn_influenza:is(:hover, :focus-visible) {
    opacity: 0.8 !important;
  }
}
.btn_flumist {
  display: block;
  background: var(--clr_dark_blue);
  width: 90%;
  border-radius: 100vh;
  margin: 1rem auto;
  padding: 0.5rem;
  text-decoration: none !important;
  color: #fff;
  line-height: 1.4;
}
.btn_flumist span {
  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;
  gap: 1rem;
  border: 1px solid #fff;
  border-radius: 100vh;
  padding: 1rem;
}
.btn_flumist span::after {
  content: "";
  width: 2rem;
  height: 2rem;
  background: url(../img/icon_arrow2.svg) no-repeat center/100% auto;
}

@media screen and (min-width: 48em), print {
  .btn_flumist {
    width: 100%;
    font-size: 2.4rem;
    margin: 1rem auto;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .btn_flumist span {
    padding: 3rem 0;
  }
  .btn_flumist span::after {
    width: 2.6rem;
    height: 2.6rem;
  }
  .btn_flumist:is(:hover, :focus-visible) {
    opacity: 0.8 !important;
  }
}
.fever_outpatient {
  display: block;
  background: var(--clr_pink);
  width: 90%;
  border-radius: 100vh;
  margin: 2rem auto;
  padding: 0.5rem;
  text-decoration: none !important;
  color: #fff;
  line-height: 1.4;
}
.fever_outpatient span {
  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;
  gap: 1rem;
  border: 1px solid #fff;
  border-radius: 100vh;
  padding: 1rem;
}
.fever_outpatient span::after {
  content: "";
  width: 2rem;
  height: 2rem;
  background: url(../img/icon_arrow.svg) no-repeat center/100% auto;
}

@media screen and (min-width: 48em), print {
  .fever_outpatient {
    width: 60rem;
    font-size: 2.4rem;
    margin: 10rem auto;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .fever_outpatient span {
    padding: 3rem 0;
  }
  .fever_outpatient span::after {
    width: 2.6rem;
    height: 2.6rem;
  }
  .fever_outpatient:is(:hover, :focus-visible) {
    opacity: 0.8 !important;
  }
}
.feature {
  overflow: hidden;
  padding: 0 1rem;
  background: url(../img/index_lower_bg02.png) no-repeat center top 11rem/700% auto;
}
.feature .feat_catch {
  text-align: center;
  color: var(--clr_txt_pink);
  font-size: 1.6rem;
  margin: 0;
  opacity: 0;
}
.feature .feat_catch.trigger {
  -webkit-animation: fade_right 1s forwards normal;
          animation: fade_right 1s forwards normal;
}
.feature .feat_catch span {
  color: #767676;
  font-size: 1.2rem;
}
.feature .feat_catch .feat_catch_sub {
  background: #FFE5ED;
  color: var(--clr_txt_pink);
  display: block;
  padding: 0.4rem 2rem 0.2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.4;
  margin: auto;
  border-radius: 100vh;
}
.feature ul {
  margin: 2rem auto 0;
}
.feature ul li {
  position: relative;
  z-index: 1;
}
.feature ul li::before {
  content: "";
  width: 40%;
  height: 24rem;
  display: block;
  margin: auto;
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 0;
}
.feature ul li.trigger::before {
  width: 100%;
  opacity: 1;
}
.feature ul li.feat1::before {
  background: url(../img/index_feature01.webp) no-repeat center top/80% auto;
}
.feature ul li.feat2::before {
  background: url(../img/index_feature02.webp) no-repeat center top/80% auto;
}
.feature ul li.feat3::before {
  background: url(../img/index_feature03.webp) no-repeat center top/80% auto;
}
.feature ul li.feat4::before {
  background: url(../img/index_feature04.webp) no-repeat right top/86% auto;
}
.feature ul li.feat5::before {
  background: url(../img/index_feature05.webp) no-repeat center top/88% auto;
}
.feature ul li.feat6::before {
  background: url(../img/index_feature06.webp) no-repeat center top/85% auto;
}
.feature ul li .tit {
  color: var(--clr_txt_blue);
  font-weight: normal;
  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;
  gap: 1rem;
  position: relative;
}
.feature ul li .tit::before {
  content: "";
  width: 70%;
  height: 18rem;
  background: url(../img/index_feature_bg_blue01.svg) no-repeat center top/100% auto;
  position: absolute;
  top: -10rem;
  left: 0;
  z-index: -1;
}
.feature ul li .tit::after {
  content: "";
  width: 5rem;
  height: 5rem;
  background: url(../img/icon_splash_blue.svg) no-repeat center/100% auto;
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 0;
  -webkit-transform: rotate(-30deg) translateX(-2rem);
          transform: rotate(-30deg) translateX(-2rem);
}
.feature ul li .tit.trigger::after {
  -webkit-transform: rotate(0) translateX(0);
          transform: rotate(0) translateX(0);
  opacity: 1;
}
.feature ul li p {
  opacity: 0;
}
.feature ul li p.trigger {
  -webkit-animation: fade_up 1s forwards normal;
          animation: fade_up 1s forwards normal;
}
.feature ul li p .btn_vpd {
  background: var(--clr_blue);
  color: #fff;
  border-radius: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 2rem;
  margin: 1rem 0 0;
  line-height: 1.8;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.feature ul li p .btn_vpd::after {
  font-family: "fontello";
  content: "\f08e";
}
.feature ul li:nth-of-type(2n)::after {
  left: 0;
  background: url(../img/icon_splash_pink.svg) no-repeat center top/100% auto;
}
.feature ul li:nth-of-type(2n) .tit {
  margin: 0 0 0 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  color: var(--clr_txt_pink);
}
.feature ul li:nth-of-type(2n) .tit::before {
  background: url(../img/index_feature_bg_white.svg) no-repeat center top/100% auto;
  left: auto;
  right: 0;
}
.feature ul li:nth-of-type(2n) .tit::after {
  background: url(../img/icon_splash_pink.svg) no-repeat center/100% auto;
  -webkit-transform: rotate(30deg) translateX(2rem);
          transform: rotate(30deg) translateX(2rem);
}
.feature ul li:nth-of-type(2n) .tit.trigger::after {
  -webkit-transform: rotate(0) translateX(0);
          transform: rotate(0) translateX(0);
  opacity: 1;
}

@media screen and (min-width: 48em), print {
  .feature {
    padding: 0 0 10rem;
    background: url(../img/index_lower_bg02.png) no-repeat center top 25rem/200rem auto;
  }
  .feature .feat_catch {
    font-size: 3.2rem;
  }
  .feature .feat_catch span {
    font-size: 2.6rem;
  }
  .feature .feat_catch .feat_catch_sub {
    font-size: 2rem;
  }
  .feature ul {
    padding: 0 2.5rem;
    margin: 10rem auto 0;
  }
  .feature ul li {
    position: relative;
  }
  .feature ul li::before {
    width: 20rem;
    height: 39rem;
    position: absolute;
    left: 0;
    top: -8rem;
  }
  .feature ul li.trigger:before {
    width: 39rem;
    background-size: 100%;
  }
  .feature ul li .tit {
    font-size: 2.8rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 0 1.1rem 42rem;
    line-height: 1.6;
  }
  .feature ul li .tit::before {
    width: 37rem;
    height: 31rem;
    top: -4rem;
    left: -11rem;
  }
  .feature ul li .tit::after {
    width: 8rem;
    height: 8rem;
  }
  .feature ul li p {
    margin: 0 0 0 42rem;
  }
  .feature ul li:nth-of-type(2n)::before {
    right: 0;
    top: -12rem;
    left: auto;
  }
  .feature ul li:nth-of-type(2n) .tit {
    margin: 0 0 1.1rem 36rem;
  }
  .feature ul li:nth-of-type(2n) .tit::before {
    right: auto;
    left: 12rem;
  }
  .feature ul li:nth-of-type(2n) .tit::after {
    position: absolute;
    left: -10rem;
    top: 0;
  }
  .feature ul li:nth-of-type(2n) p {
    margin: 0 0 0 36rem;
  }
  .feature ul li:nth-of-type(5) .tit::before {
    -webkit-transform: rotateZ(180deg) translateY(-3rem);
            transform: rotateZ(180deg) translateY(-3rem);
  }
  .feature ul li:not(:last-of-type) {
    margin: 0 0 15rem;
  }
}
.tre {
  padding: 0 0 20rem;
  background: url(../img/index_lower_bg03.svg) no-repeat center top/200% auto, -webkit-gradient(linear, left top, left bottom, color-stop(0.4rem, #fff), color-stop(0.4rem, #E4F5FD), color-stop(0.6rem, #E4F5FD)) repeat top 5rem center/auto 0.6rem;
  background: url(../img/index_lower_bg03.svg) no-repeat center top/200% auto, linear-gradient(to bottom, #fff 0.4rem, #E4F5FD 0.4rem, #E4F5FD 0.6rem) repeat top 5rem center/auto 0.6rem;
}
.tre .subnav {
  margin: 3rem 0;
  padding: 1rem;
  background: var(--clr_blue);
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3rem 2rem;
}
.tre .subnav::before {
  content: "";
  width: 100%;
  height: calc(100% + 6rem);
  position: absolute;
  top: -3rem;
  left: 0;
  right: 0;
  background: url(../img/index_tre_bg.svg) no-repeat top center/150% auto, url(../img/index_tre_bg.svg) no-repeat bottom 0.5rem center/150% auto;
  z-index: -1;
}
.tre .subnav.trigger li:nth-child(1) a {
  -webkit-animation: fade_down 1s forwards normal;
          animation: fade_down 1s forwards normal;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.tre .subnav.trigger li:nth-child(2) a {
  -webkit-animation: fade_down 1s forwards normal;
          animation: fade_down 1s forwards normal;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.tre .subnav.trigger li:nth-child(3) a {
  -webkit-animation: fade_down 1s forwards normal;
          animation: fade_down 1s forwards normal;
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.tre .subnav.trigger li:nth-child(4) a {
  -webkit-animation: fade_down 1s forwards normal;
          animation: fade_down 1s forwards normal;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.tre .subnav.trigger li:nth-child(5) a {
  -webkit-animation: fade_down 1s forwards normal;
          animation: fade_down 1s forwards normal;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.tre .subnav.trigger li:nth-child(6) a {
  -webkit-animation: fade_down 1s forwards normal;
          animation: fade_down 1s forwards normal;
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
.tre .subnav.trigger li:nth-child(7) a {
  -webkit-animation: fade_down 1s forwards normal;
          animation: fade_down 1s forwards normal;
  -webkit-animation-delay: 2.1s;
          animation-delay: 2.1s;
}
.tre .subnav li {
  width: 40%;
}
.tre .subnav li a {
  color: #fff;
  text-decoration: none;
  position: relative;
  line-height: 1.2;
  opacity: 0;
  visibility: hidden;
  display: block;
}
.tre .subnav li a::before {
  content: "";
  display: block;
  width: 90%;
  height: 17rem;
  margin: 0 auto 1rem;
  background: url(../img/index_tre_drop.svg) no-repeat center/100% auto;
  -webkit-filter: drop-shadow(0.4rem 0.4rem 0 #63D0F6);
          filter: drop-shadow(0.4rem 0.4rem 0 #63D0F6);
}
.tre .subnav li a::after {
  content: "";
  width: 90%;
  width: 8rem;
  height: 10rem;
  position: absolute;
  top: 6rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.tre .subnav li a span {
  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.5rem;
}
.tre .subnav li a span::before {
  font-family: "fontello";
  content: "\e817";
  background: #E56F93;
  border-radius: 50%;
  color: #fff;
  width: 2rem;
  height: 2rem;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.tre .subnav li a.pediatrics::after {
  background: url(../img/index_tre01.png) no-repeat center/100% auto;
}
.tre .subnav li a.dermatology::after {
  background: url(../img/index_tre02.png) no-repeat center/100% auto;
}
.tre .subnav li a.allergy::after {
  background: url(../img/index_tre03.png) no-repeat center/100% auto;
}
.tre .subnav li a.babycheckup::after {
  background: url(../img/index_tre04.png) no-repeat center/100% auto;
}
.tre .subnav li a.childvaccination::after {
  background: url(../img/index_tre05.png) no-repeat center/100% auto;
}
.tre .subnav li a.consultation::after {
  background: url(../img/index_tre06.png) no-repeat center/100% auto;
}
.tre .subnav li a.childvaccination_debut::after {
  background: url(../img/index_tre07.png) no-repeat center/100% auto;
}

@media screen and (min-width: 48em), print {
  .tre {
    padding: 5rem 0 10rem;
    background: url(../img/index_lower_bg03.svg) no-repeat center top/200rem auto, -webkit-gradient(linear, left top, left bottom, color-stop(0.4rem, #fff), color-stop(0.4rem, #E4F5FD), color-stop(0.6rem, #E4F5FD)) repeat-y top 5rem center/200rem 0.6rem;
    background: url(../img/index_lower_bg03.svg) no-repeat center top/200rem auto, linear-gradient(to bottom, #fff 0.4rem, #E4F5FD 0.4rem, #E4F5FD 0.6rem) repeat-y top 5rem center/200rem 0.6rem;
  }
  .tre .tit_02 {
    margin: 0 auto;
  }
  .tre .subnav {
    margin: 0 auto;
    padding: 10rem 0 13rem;
    background: url(../img/index_tre_bg.svg) no-repeat center/110rem auto;
  }
  .tre .subnav::before {
    display: none;
  }
  .tre .subnav li {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .tre .subnav li a {
    font-size: 1.25rem;
  }
  .tre .subnav li a::before {
    width: 11.6rem;
    -webkit-filter: drop-shadow(0.6rem 0.6rem 0 #63D0F6);
            filter: drop-shadow(0.6rem 0.6rem 0 #63D0F6);
  }
  .tre .subnav li a span::before {
    width: 2.6rem;
    height: 2.6rem;
    padding: 0 0 0 0.3rem;
  }
  .tre .subnav li a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .tre .subnav li a:is(:hover, :focus-visible, .current) {
    color: var(--clr_txt_pink);
  }
  .tre .subnav li a:is(:hover, :focus-visible, .current)::before {
    -webkit-animation: poyon 1s forwards normal;
            animation: poyon 1s forwards normal;
  }
  .tre .subnav li:nth-of-type(2n) {
    padding: 7rem 0 0;
  }
}
body:not(.index) {
  background: url(../img/index_lower_bg01.png) no-repeat center top 6.5rem/150% auto, url(../img/index_lower_bg02.png) no-repeat center top 46rem/150% auto, url(../img/index_lower_bg03.svg) no-repeat center top 96rem/150% auto, -webkit-gradient(linear, left top, left bottom, color-stop(0.4rem, #fff), color-stop(0.4rem, #E4F5FD), color-stop(0.6rem, #E4F5FD)) repeat top 5rem center/auto 0.6rem;
  background: url(../img/index_lower_bg01.png) no-repeat center top 6.5rem/150% auto, url(../img/index_lower_bg02.png) no-repeat center top 46rem/150% auto, url(../img/index_lower_bg03.svg) no-repeat center top 96rem/150% auto, linear-gradient(to bottom, #fff 0.4rem, #E4F5FD 0.4rem, #E4F5FD 0.6rem) repeat top 5rem center/auto 0.6rem;
}
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: 0 1rem;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2rem;
}
body:not(.index) .main .tel {
  font-size: 120%;
}
body:not(.index) .main a:not([class*=btn], .lst_anc > li > a, .js-tel > a) {
  color: var(--clr_txt_pink);
}
@media screen and (min-width: 48em), print {
  body:not(.index) {
    max-width: 200rem;
    margin: auto;
    background: url(../img/index_lower_bg01.png) no-repeat center top/200rem auto, url(../img/index_lower_bg02.png) no-repeat center top 166rem/200rem auto, url(../img/index_lower_bg03.svg) no-repeat center top 372rem/200rem auto, -webkit-gradient(linear, left top, left bottom, color-stop(0.4rem, #fff), color-stop(0.4rem, #E4F5FD), color-stop(0.6rem, #E4F5FD)) repeat-y top 5rem center/200rem 0.6rem;
    background: url(../img/index_lower_bg01.png) no-repeat center top/200rem auto, url(../img/index_lower_bg02.png) no-repeat center top 166rem/200rem auto, url(../img/index_lower_bg03.svg) no-repeat center top 372rem/200rem auto, linear-gradient(to bottom, #fff 0.4rem, #E4F5FD 0.4rem, #E4F5FD 0.6rem) repeat-y top 5rem center/200rem 0.6rem;
  }
  body:not(.index) .main {
    width: 110rem;
    margin: 0 auto 6rem;
    padding: 3rem 3rem 6rem;
    border-radius: 5rem;
  }
  body:not(.index) .main .cf .img_l, body:not(.index) .main .cf .img_r {
    max-width: 40%;
    height: auto;
  }
}

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

@media screen and (min-width: 48em), print {
  .breadnav {
    width: 110rem;
    max-width: 100%;
    margin: 2rem auto 0;
    overflow-x: inherit;
  }
  .breadnav .breadcrumb {
    font-size: 1.8rem;
  }
  .breadnav .breadcrumb li:not(:last-child)::after {
    margin: 0 1rem;
  }
  .breadnav .breadcrumb li a:hover {
    opacity: 1;
    text-decoration: none;
  }
}
.dr_name {
  text-align: right;
}
.dr_name span {
  font-size: 120%;
}

.gallery {
  width: 85%;
  margin: auto;
  visibility: hidden;
}
.gallery .gallery_slider div .cap {
  margin: 0.2rem 0 0;
  text-align: center;
  padding: 0.4rem;
  font-size: 1.2rem;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: #E4F5FD;
  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_blue);
}

@media screen and (min-width: 48em), print {
  .gallery {
    width: 75rem;
    margin: auto;
  }
  .gallery .gallery_slider {
    font-size: 1.6em;
  }
  .gallery .gallery_slider div .cap {
    font-size: 1.8rem;
    padding: 1rem;
  }
  .gallery .gallery_thum {
    width: calc(100% + 0.6rem);
  }
}
body.first .rsv_tel .tel_style,
body.first .rsv_tel .btn_rsv {
  font-size: 1.8rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
body.first .rsv_tel .btn_rsv {
  font-size: 1.6rem;
  margin: 0 0 2rem;
}
body.first .lst_flow {
  margin: 2rem 0 0;
}

@media screen and (min-width: 48em), print {
  body.first .rsv_tel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 4rem;
  }
  body.first .rsv_tel .tel_style,
  body.first .rsv_tel .btn_rsv {
    font-size: 2.4rem;
  }
  body.first .rsv_tel .btn_rsv {
    padding: 0.3rem 3rem;
    margin: 0;
    font-size: 2rem;
  }
  body.first .flex_col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  body.first .lst_flow {
    width: 80%;
    margin: 4rem auto;
  }
}
body.access .main .gmap {
  height: 100vw;
  margin: 2rem 0;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media screen and (min-width: 48em), print {
  body.access .main .tbl_time caption > dl > dt {
    width: 13%;
  }
  body.access .main .tbl_time caption > dl > dd {
    width: 37%;
  }
  body.access .main .tbl_time caption > dl > dd:first-of-type {
    width: 87%;
  }
  body.access .main .gmap {
    margin: 4rem 0 0;
    height: 50rem;
    border-radius: 3rem;
  }
}

body.childvaccination .tbl_pink {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1.2rem;
  line-height: 1.4;
  -webkit-text-size-adjust: none;
}
body.childvaccination .tbl_pink tbody tr th {
  font-weight: normal;
  padding: 0.5rem 0;
  width: 30%;
}
body.childvaccination .tbl_pink tbody tr th[scope=col] {
  background: var(--clr_pink);
  color: #fff;
  border-right: 1px solid #fff;
}
body.childvaccination .tbl_pink tbody tr th[scope=col].small {
  border-right: 1px solid var(--clr_pink);
  width: 12%;
}
body.childvaccination .tbl_pink tbody tr th[scope=col]:first-of-type {
  border-left: 1px solid var(--clr_pink);
  width: 28%;
}
body.childvaccination .tbl_pink tbody tr th[scope=row] {
  background: #FFF2F6;
  border: 1px solid var(--clr_pink);
}
body.childvaccination .tbl_pink tbody tr th[scope=row] span {
  font-size: 1rem;
  display: block;
}
body.childvaccination .tbl_pink tbody tr td {
  border: 1px solid var(--clr_pink);
  padding: 0.5rem;
  text-align: center;
}

@media screen and (min-width: 48em), print {
  body.childvaccination .tbl_pink {
    font-size: 1.6rem;
  }
  body.childvaccination .tbl_pink tbody tr th {
    padding: 0.5rem 1rem;
  }
  body.childvaccination .tbl_pink tbody tr th[scope=row] span {
    font-size: 1.2rem;
  }
  body.childvaccination .tbl_pink tbody tr td {
    padding: 0.5rem 1rem;
  }
}
/*# sourceMappingURL=style.css.map */