@charset "UTF-8";
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-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;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-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 {
  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]) {
  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;
  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;
  object-fit: contain;
}

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

:root {
  --clr_txt: #333;
  --rgb_txt: 51, 51, 51;
  --clr_blue_dark: #3E72B8;
  --rgb_blue_dark: 62, 114, 184;
  --clr_blue: #00A6E3;
  --rgb_blue: 0, 166, 227;
  --clr_blue_light: #F2FBFE;
  --rgb_blue_light: 242, 251, 254;
  --clr_blue_light2: #D7F2FB;
  --rgb_blue_light2: 215, 242, 251;
  --clr_gray: #CCCCCC;
  --rgb_gray: 204, 204, 204;
  --clr_gray_light: #F5F5F5;
  --rgb_gray_light: 245, 245, 245;
  --clr_yellow: #FFF67F;
  --rgb_yellow: 255, 246, 127;
}

@font-face {
  font-family: "fontello";
  src: url("fontello/font/fontello.woff2") format("woff2");
  font-display: fallback;
}
@keyframes bgzoom {
  100% {
    background-size: 120% auto;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade_down {
  0% {
    opacity: 0;
    transform: translateY(-3rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade_up {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade_right {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade_left {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cutin_right {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes cutin_left {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes balloon {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0.6rem);
  }
}
@keyframes airball {
  0% {
    transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(7deg);
  }
}
@keyframes poyon {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  15% {
    transform: scale(0.9, 0.9) translate(0%, 5%);
  }
  30% {
    transform: scale(1.3, 0.8) translate(0%, 10%);
  }
  50% {
    transform: scale(0.8, 1.3) translate(0%, -10%);
  }
  70% {
    transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  100% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}
@keyframes wave {
  0% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(8, 15) rotate(30deg);
  }
}
@keyframes wave_disappear {
  0% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(8, 25) rotate(30deg);
    opacity: 0;
  }
}
@keyframes wave_appear {
  0% {
    transform: translateY(2rem) rotate(30deg);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes blur {
  0% {
    filter: blur(10px);
    opacity: 0;
  }
  100% {
    filter: blur(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_strong {
  background: linear-gradient(to bottom, transparent 60%, var(--clr_txt) 60%);
}

.img_c {
  margin: 1rem auto;
}

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

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

.img_wrap img {
  width: auto;
  max-width: 90%;
  margin: auto;
}
.img_wrap img:not(:last-of-type) {
  margin: 0 auto 2rem;
}

@media screen and (min-width: 48em), print {
  .img_l {
    float: left;
    margin: 0 3rem 2rem 0;
  }
  .img_r {
    float: right;
    margin: 0 0 2rem 3rem;
  }
  img.tate {
    max-width: 25% !important;
  }
  .img_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4rem 0;
  }
  .img_wrap img {
    margin: 0;
    max-width: 48%;
  }
  .img_wrap img:not(:last-of-type) {
    margin: 0;
  }
}
.sp_n {
  display: none;
}

@media screen and (min-width: 48em), print {
  .sp_n {
    display: block;
  }
  .pc_n {
    display: none;
  }
}
.br_n br {
  display: none;
}

.mt40 {
  margin-top: 4rem;
}

.mt30 {
  margin-top: 3rem;
}

.mt20 {
  margin-top: 2rem;
}

.mt10 {
  margin-top: 1rem;
}

body:not(.index) .main > section ~ section, body:not(.index) .flex2 > section ~ section {
  margin-top: 4rem;
}
body:not(.index) .main > section section ~ section, body:not(.index) .flex2 > section section ~ section {
  margin-top: 3rem;
}
body:not(.index) .main > section > section section ~ section, body:not(.index) .flex2 > section > section section ~ section {
  margin-top: 2rem;
}
body:not(.index) .main > section > section > section section ~ section, body:not(.index) .flex2 > section > section > section section ~ section {
  margin-top: 2rem;
}

@media screen and (min-width: 48em), print {
  .mt40 {
    margin-top: 8rem;
  }
  .mt30 {
    margin-top: 6rem;
  }
  .mt20 {
    margin-top: 4rem;
  }
  .mt10 {
    margin-top: 2rem;
  }
  body:not(.index) .main > section ~ section, body:not(.index) .flex2 > section ~ section {
    margin-top: 8rem;
  }
  body:not(.index) .main > section section ~ section, body:not(.index) .flex2 > section section ~ section {
    margin-top: 6rem;
  }
  body:not(.index) .main > section > section section ~ section, body:not(.index) .flex2 > section > section section ~ section {
    margin-top: 4rem;
  }
  body:not(.index) .main > section > section > section section ~ section, body:not(.index) .flex2 > section > section > section section ~ section {
    margin-top: 2rem;
  }
}
.tbl_time {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.2rem;
}
.tbl_time caption {
  caption-side: bottom;
  text-align: left;
  margin-top: 1rem;
}
.tbl_time caption dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: first baseline;
}
.tbl_time caption dl dt {
  width: 22%;
  text-align: center;
  margin: 0 0 1rem;
  color: var(--clr_blue);
}
.tbl_time caption dl dt span {
  display: block;
  background: #fff;
  border-radius: 0.3rem;
  border: 1px solid var(--clr_blue);
}
.tbl_time caption dl dd {
  width: 76%;
  margin: 0 0 1rem;
}
.tbl_time tr th {
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: normal;
}
.tbl_time tr th[scope=col] {
  padding: 0.4rem 0;
  background: var(--clr_blue);
  color: #fff;
  text-align: center;
}
.tbl_time tr th[scope=col]:first-child {
  width: 30%;
  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=row] {
  border-bottom: 1px solid var(--clr_blue);
}
.tbl_time tr td {
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  padding: 1.4rem 0.4rem;
  border-bottom: 1px solid var(--clr_blue);
  color: var(--clr_blue);
  line-height: 1;
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    table-layout: fixed;
  }
  .tbl_time caption {
    font-size: 2rem;
    margin-top: 2rem;
  }
  .tbl_time caption dl dt {
    width: 21%;
  }
  .tbl_time caption dl dt span {
    border-radius: 0.5rem;
  }
  .tbl_time caption dl dd {
    width: 77%;
  }
  .tbl_time tr th {
    font-size: 2.2rem;
  }
  .tbl_time tr th[scope=col] {
    padding: 0.8rem 0;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 30%;
    border-radius: 1rem 0 0 0;
  }
  .tbl_time tr th[scope=col]:last-child {
    border-radius: 0 1rem 0 0;
    width: 13%;
    padding: 0.8rem 1rem 0.8rem 0;
  }
  .tbl_time tr td {
    font-size: 2.2rem;
    padding: 2.3rem 0;
  }
  .tbl_time tr td:last-child {
    padding: 2.3rem 1rem 2.3rem 0;
  }
}
.tbl {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.4;
  font-size: 1.2rem;
}
.tbl.sp_fixed {
  table-layout: fixed;
}
.tbl tr th {
  padding: 0.5rem;
  text-align: center;
}
.tbl tr th[scope=col] {
  background: var(--clr_blue);
  color: #fff;
  border: 1px solid var(--clr_gray);
  border-bottom: none;
  padding: 1rem 0.5rem;
}
.tbl tr th[scope=col]:not(:last-of-type) {
  border-right: 1px solid #fff;
}
.tbl tr th[scope=row] {
  font-weight: normal;
  background: var(--clr_gray_light);
  border: 1px solid var(--clr_gray);
  border-bottom: none;
}
.tbl tr td {
  padding: 0.5rem;
  border-right: 1px solid var(--clr_gray);
  border-top: 1px solid var(--clr_gray);
}
.tbl tr:last-of-type th[scope=row] {
  border-bottom: 1px solid var(--clr_gray);
}
.tbl tr:last-of-type td {
  border-bottom: 1px solid var(--clr_gray);
}

@media screen and (min-width: 48em), print {
  .tbl {
    font-size: inherit;
  }
  .tbl.fixed {
    table-layout: fixed;
  }
  .tbl tr th {
    padding: 1rem;
  }
  .tbl tr th[scope=col] {
    padding: 1.2rem 1rem;
  }
  .tbl tr td {
    padding: 1rem;
  }
}
.gmap {
  width: 100%;
}

.tit_01 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 10rem;
  background: var(--clr_blue_light) url(../img/tit_01.svg) no-repeat center bottom/auto 100%;
  font-size: 2.2rem;
  color: var(--clr_blue);
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  padding: 1rem;
  text-align: center;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.tit_02 {
  width: fit-content;
  font-size: 2rem;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0 auto 2rem;
  padding: 1.5rem 0 0;
  background: url(../img/tit_02.svg) no-repeat center top/2rem auto;
}

body:is(.index) .tit_02 {
  font-size: 1.2rem;
}
body:is(.index) .tit_02::first-letter {
  color: var(--clr_blue);
}
body:is(.index) .tit_02::before {
  content: attr(data-txt);
  font-size: 2.4rem;
  font-family: "Hind", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  display: block;
  line-height: 1.2;
}

.tit_03 {
  font-size: 1.8rem;
  line-height: 1.4;
  margin: 0 0 1.5rem;
  padding: 0.5rem 1rem;
  background: var(--clr_blue);
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.05em;
  color: #fff;
}

.tit_04 {
  font-size: 1.6rem;
  line-height: 1.4;
  margin: 0 0 1.5rem;
  padding: 0 1rem 0.5rem;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--clr_blue);
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--clr_gray);
  position: relative;
}
.tit_04::before {
  content: "";
  width: 2px;
  height: calc(100% - 0.2em);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100vw;
  background: var(--clr_blue);
}

.tit_05 {
  font-size: 1.6rem;
  line-height: 1.4;
  margin: 0 0 1rem;
  padding: 0 1rem;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.05em;
  color: var(--clr_blue_dark);
  border-bottom: 1px solid var(--clr_blue_dark);
}

.tit_06 {
  font-size: 1.5rem;
  line-height: 1.4;
  margin: 0 0 1rem;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.tit_06::before {
  font-family: "fontello";
  content: "\f1db";
  color: var(--clr_blue);
  font-size: 80%;
  font-weight: bold;
  margin: 0.2em 0 0;
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    min-height: 26rem;
    background: var(--clr_blue_light) url(../img/tit_01.svg) no-repeat center bottom/200rem auto;
    font-size: 4.8rem;
  }
  .tit_02 {
    font-size: 4rem;
    margin: 0 auto 4rem;
    padding: 2.5rem 0 0;
    background-size: 4rem auto;
  }
  body:is(.index) .tit_02 {
    font-size: 2rem;
  }
  body:is(.index) .tit_02::before {
    font-size: 4.8rem;
    line-height: 1;
  }
  .tit_03 {
    font-size: 3.2rem;
    padding: 1rem 2rem;
    margin: 0 0 3rem;
  }
  .tit_04 {
    font-size: 2.8rem;
    margin: 0 0 3rem;
    padding: 0 2rem 1rem;
  }
  .tit_05 {
    font-size: 2.4rem;
    margin: 0 0 3rem;
    padding: 0 1rem 0.5rem;
  }
  .tit_06 {
    font-size: 2rem;
    margin: 0 0 3rem;
    padding: 0 1rem 0.5rem;
  }
}
.lst_ul {
  line-height: 1.4;
  margin: 1rem 0;
}
.lst_ul > li {
  padding: 0 0 0 1em;
  position: relative;
}
.lst_ul > li:not(:last-child) {
  margin: 0 0 1rem;
}
.lst_ul > li::before {
  content: "●";
  color: var(--clr_blue);
  font-size: 50%;
  position: absolute;
  left: 0;
  top: 0.6em;
}
.lst_ul.kome > li {
  padding: 0 0 0 1.4em;
}
.lst_ul.kome > li::before {
  content: "※";
  top: 0;
  font-size: 100%;
}

.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 {
  line-height: 1.8;
}
.lst_dl01 dt {
  font-weight: bold;
  color: var(--clr_blue);
}
.lst_dl01 dd {
  margin: 0 0 1rem;
}
@media screen and (min-width: 48em), print {
  .lst_dl01 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    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_gray);
  border-top: none;
}
.lst_dl02 dt {
  padding: 0.5rem 1rem;
  text-align: center;
  font-weight: bold;
  background: var(--clr_blue_light);
  border-top: 1px solid var(--clr_gray);
  border-bottom: 1px solid var(--clr_gray);
}
.lst_dl02 dd {
  padding: 1rem;
}
@media screen and (min-width: 48em), print {
  .lst_dl02 {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid var(--clr_gray);
  }
  .lst_dl02 dt, .lst_dl02 dd {
    width: 50%;
    padding: 1rem 2rem;
  }
  .lst_dl02 dt {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: none;
    border-right: 1px solid var(--clr_gray);
  }
  .lst_dl02 dt:last-of-type {
    border-bottom: none;
  }
  .lst_dl02 dd:not(:last-of-type) {
    border-bottom: 1px solid var(--clr_gray);
  }
  .lst_dl02.dt_small dt {
    width: 30%;
  }
  .lst_dl02.dt_small dd {
    width: 70%;
  }
}

.lst_flow {
  counter-reset: number 0;
}
.lst_flow > li {
  padding: 1rem;
  border: 1px solid var(--clr_blue);
  position: relative;
}
.lst_flow > li::before {
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero);
  background: var(--clr_blue);
  border-radius: 50%;
  color: #fff;
  font-size: 1.6rem;
  width: 3rem;
  height: 3rem;
  margin: 0 1rem 0 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.lst_flow > li .tit {
  font-size: 1.8rem;
  display: inline-block;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.lst_flow > li:not(:last-of-type) {
  margin: 0 0 5rem;
}
.lst_flow > li:not(:last-of-type)::after {
  content: "";
  width: 6rem;
  height: 1.5rem;
  background: var(--clr_blue);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  bottom: -3.5rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 48em), print {
  .lst_flow > li {
    padding: 3rem;
  }
  .lst_flow > li::before {
    font-size: 2.8rem;
    width: 5rem;
    height: 5rem;
    top: 2rem;
    left: 2rem;
  }
  .lst_flow > li .tit {
    font-size: 2.6rem;
  }
  .lst_flow > li:not(:last-of-type) {
    margin: 0 0 8.5rem;
  }
  .lst_flow > li:not(:last-of-type)::after {
    width: 8rem;
    height: 2rem;
    bottom: -6rem;
  }
}

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

.flex3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flex3 > li {
  width: 46%;
}

@media screen and (min-width: 48em), print {
  .flex {
    gap: 1rem 5rem;
  }
  .flex2 {
    display: flex;
    justify-content: space-between;
    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;
  }
  .flex3 {
    justify-content: flex-start;
  }
  .flex3 li {
    width: 31%;
  }
  .flex3 li:not(:nth-child(3n)) {
    margin: 0 2rem 0 0;
  }
  .flex_col {
    display: flex;
    flex-direction: column;
  }
}
.tel_style {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0 0.5rem;
  color: #fff;
  background: var(--clr_blue);
  border-radius: 1rem;
  padding: 1rem 2rem;
  font-family: "Hind", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.03em;
}
.tel_style::before {
  font-family: "fontello";
  content: "\e80d";
  font-size: 70%;
}
@media screen and (min-width: 48em), print {
  .tel_style {
    border-radius: 2rem;
    gap: 0.8rem;
  }
}

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

.box_blue {
  background: var(--clr_blue_light);
}

.box_gray {
  background: var(--clr_gray_light);
}

.btn_rsv {
  background: var(--clr_blue_dark);
  color: #fff;
  line-height: 1.4;
  padding: 1rem 2rem;
  display: inline-flex;
  justify-content: center;
  align-items: baseline;
  gap: 0 0.4rem;
  border-radius: 1rem;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.btn_rsv::before {
  font-family: "fontello";
  content: "\eb5f";
}
@media screen and (min-width: 48em), print {
  .btn_rsv {
    border-radius: 2rem;
    padding: 1.5rem 4rem;
    gap: 1rem;
  }
  .btn_rsv:is(:hover, :focus-visible) {
    background: var(--clr_blue);
    opacity: 1;
  }
}

.btn_blue {
  display: inline-block;
  padding: 1rem 5rem;
  background: var(--clr_blue);
  color: #fff;
  border-radius: 1rem;
  text-align: center;
  text-decoration: none !important;
  position: relative;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  overflow: hidden;
  letter-spacing: 0.03em;
  text-indent: 0.03em;
  line-height: 1.4;
  z-index: 1;
}
.btn_blue::before {
  content: "";
  background: url(../img/btn_wave_darkblue.svg) no-repeat center bottom/100% auto;
  width: 5rem;
  height: 2.5rem;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.btn_blue::after {
  content: "";
  width: 1.8rem;
  height: 1rem;
  background: url(../img/icon_arrow.svg) no-repeat center/100% auto;
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
}
@media screen and (min-width: 48em), print {
  .btn_blue {
    padding: 1.7rem 7rem;
    border-radius: 2rem;
    transition: 0.5s ease;
  }
  .btn_blue::before {
    width: 7rem;
    height: 3rem;
  }
  .btn_blue::after {
    width: 2.5rem;
    height: 1.5rem;
    right: 1rem;
    bottom: 0.7rem;
  }
  .btn_blue:is(:hover, :focus-visible) {
    background: var(--clr_blue_dark);
    opacity: 1;
  }
}

.linkout {
  display: inline-block;
  color: var(--clr_blue);
}
.linkout::after {
  font-family: "fontello";
  content: "\f08e";
  margin-left: 0.3rem;
}
@media screen and (min-width: 48em), print {
  .linkout::after {
    margin-left: 0.5rem;
  }
  .linkout::after:hover {
    text-decoration: none;
  }
}
.linkout.pdf::after {
  font-family: "fontello";
  content: "\f1c1";
}

.lst_anc {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.lst_anc li a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.4;
  color: var(--clr_blue);
  padding: 0.8rem 2rem 0.8rem 1.5rem;
  text-decoration: none !important;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  border: 1px solid var(--clr_blue);
  border-radius: 1rem;
}
.lst_anc li a::before {
  content: "↓";
}
@media screen and (min-width: 48em), print {
  .lst_anc {
    gap: 2rem;
  }
  .lst_anc li a {
    padding: 1.5rem 4rem 1.5rem 3.5rem;
    border-radius: 2rem;
  }
  .lst_anc li a:is(:hover, :focus-visible) {
    background: var(--clr_blue_light);
  }
}

@media screen and (min-width: 48em), print {
  .slick-arrow {
    position: absolute;
    cursor: pointer;
    line-height: 0;
    font-size: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    width: 5rem;
    height: 5rem;
    top: 26rem;
  }
  .slick-arrow::before {
    font-size: 5rem;
    color: var(--clr_blue);
    transition: 0.3s;
  }
  .slick-arrow.slick-prev {
    left: -6rem;
  }
  .slick-arrow.slick-prev::before {
    font-family: "fontello";
    content: "\e805";
  }
  .slick-arrow.slick-next {
    right: -6rem;
  }
  .slick-arrow.slick-next::before {
    font-family: "fontello";
    content: "\e80a";
  }
}
.slick-dots {
  display: flex;
  justify-content: 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_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: #fff;
  color: var(--clr_txt);
  font-family: "Hiragino Sans", "Yu Gothic medium", "Yu Gothic", "游ゴシック Medium", Meiryo, sans-serif;
}
body::after {
  visibility: hidden;
  width: 100vw;
  height: 100vh;
  content: "";
  background: rgba(var(--rgb_blue), 0.2);
  position: fixed;
  top: 0;
  z-index: 90;
  opacity: 0;
  transition: all 0.4s ease-in-out 0s;
  -webkit-backdrop-filter: blur(0.6rem);
  backdrop-filter: blur(0.6rem);
}
body.spnav_modal {
  overflow: hidden !important;
}
body.spnav_modal::after {
  visibility: visible;
  opacity: 1;
}

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

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

@media screen and (min-width: 48em), print {
  html {
    font-size: 62.5%;
  }
  body {
    min-width: calc(1200px + 40px);
  }
  body::after {
    display: none;
  }
  a, button {
    transition: 0.2s;
  }
  a:hover, button:hover {
    opacity: 0.8;
  }
  .wrap {
    width: 1200px;
    margin: auto;
  }
  .main {
    font-size: 2rem;
    line-height: 2;
  }
  .main a:not([class*=btn]):hover {
    opacity: 1;
    text-decoration: none;
  }
}
.header {
  position: relative;
}
.header > .wrap {
  padding: 1rem;
}
.header > .wrap .logo {
  width: 100%;
  height: 4.6rem;
  top: 0;
  left: 0;
}
.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 {
  display: none;
}

@media screen and (min-width: 48em), print {
  .header > .wrap {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header > .wrap .logo {
    width: 37%;
    height: 7.5rem;
    padding: 0;
    position: relative;
    z-index: 101;
    background: none;
  }
  .header > .wrap .logo a {
    width: 100%;
  }
  .header > .wrap .headR {
    display: block;
    width: 63%;
  }
  .header > .wrap .headR ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
  }
  .header > .wrap .headR ul li {
    font-size: 1.6rem;
    color: var(--clr_blue_dark);
    font-family: "Kosugi Maru", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  .header > .wrap .headR ul li.add, .header > .wrap .headR ul li.acs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .header > .wrap .headR ul li.add::before, .header > .wrap .headR ul li.acs::before {
    font-size: 180%;
  }
  .header > .wrap .headR ul li.add::before {
    font-family: "fontello";
    content: "\e80c";
  }
  .header > .wrap .headR ul li.acs::before {
    font-family: "fontello";
    content: "\e80b";
  }
  .header > .wrap .headR ul li.acs span > span {
    font-size: 2rem;
    line-height: 1;
  }
  .header > .wrap .headR ul li .tel_style {
    font-size: 2.8rem;
  }
}
#nav {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
#nav #sp_menu {
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 1rem;
  background: var(--clr_blue);
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 105;
  transition: 0.5s;
}
#nav #sp_menu span {
  width: 2.5rem;
  height: 2px;
  background: #fff;
  position: absolute;
  transition: 0.5s;
  transform: translate(-50%, -50%);
}
#nav #sp_menu span:nth-of-type(1) {
  top: 33%;
  left: 50%;
}
#nav #sp_menu span:nth-of-type(2) {
  top: 50%;
  left: 50%;
}
#nav #sp_menu span:nth-of-type(3) {
  top: 67%;
  left: 50%;
}
#nav #sp_menu.close span {
  top: 50%;
}
#nav #sp_menu.close span:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(-405deg);
  transform-origin: center;
}
#nav #sp_menu.close span:nth-of-type(2) {
  opacity: 0;
}
#nav #sp_menu.close span:nth-of-type(3) {
  transform: translate(-50%, -50%) rotate(405deg);
  transform-origin: center;
}
#nav .gnav_subnav {
  width: 100%;
  max-height: 100dvh;
  overflow-y: auto;
  background: #fff;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding: 7rem 1.6rem 1.6rem 1.6rem;
  margin: auto;
  opacity: 0;
  transform: translateX(110%);
  transition: 0.5s;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
#nav .gnav_subnav.show {
  transform: translate(0);
  opacity: 1;
}
#nav .gnav_subnav .gnav > li > a, #nav .gnav_subnav .gnav > li .sub {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  padding: 1rem;
  font-size: 1.4rem;
  border-radius: 1rem;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
}
#nav .gnav_subnav .gnav > li > a.current, #nav .gnav_subnav .gnav > li .sub.current {
  color: var(--clr_blue);
  background: var(--clr_blue_light2);
}
#nav .gnav_subnav .gnav > li > a.btn_rsv, #nav .gnav_subnav .gnav > li .sub.btn_rsv {
  margin: 0.5rem 0 0;
}
#nav .gnav_subnav .gnav > li .sub {
  gap: 0.4rem;
}
#nav .gnav_subnav .gnav > li .sub::after {
  font-family: "fontello";
  content: "\f004";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 80%;
  color: var(--clr_blue);
}
#nav .gnav_subnav .gnav > li .sub.close::after {
  font-family: "fontello";
  content: "\f005";
}
#nav .gnav_subnav .gnav > li .subbox {
  display: none;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  margin: 0 0 0.5rem;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav {
  display: flex;
  flex-wrap: wrap;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li {
  width: 50%;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 1rem;
  text-align: left;
  font-size: 1.2rem;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a br {
  display: none;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a::before {
  font-family: "fontello";
  content: "\f1db";
  color: var(--clr_blue);
  font-size: 65%;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a.current {
  color: var(--clr_blue);
}
#nav .gnav_subnav #menu_close {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  color: #fff;
  border-radius: 1rem;
  background: var(--clr_blue);
  text-align: center;
  padding: 1rem 0;
  margin: 1rem 0 0;
}
#nav .gnav_subnav #menu_close::before {
  font-family: "fontello";
  content: "\e806";
  margin: 0 0.6rem 0 0;
}

@media screen and (min-width: 48em), print {
  #nav {
    width: auto;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: 0.8s;
  }
  #nav.hide {
    transform: translateY(-300%);
  }
  #nav #sp_menu {
    display: none;
  }
  #nav .gnav_subnav {
    opacity: 1;
    transform: translateX(0);
    width: 100%;
    overflow-y: visible;
    padding: 0;
    position: static;
  }
  #nav .gnav_subnav .gnav {
    width: 110rem;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #nav .gnav_subnav .gnav > li {
    flex: auto;
    position: relative;
  }
  #nav .gnav_subnav .gnav > li > a, #nav .gnav_subnav .gnav > li .sub {
    justify-content: center;
    text-align: center;
    font-size: 2rem;
    margin: 0;
    padding: 1.5rem 1rem;
    border-radius: 2rem 2rem 0 0;
    cursor: pointer;
  }
  #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_blue);
    background: var(--clr_blue_light2);
    opacity: 1;
  }
  #nav .gnav_subnav .gnav > li .subbox {
    display: none;
    width: 49rem;
    position: absolute;
    z-index: 100;
    border-radius: 0 2rem 2rem 2rem;
    background: #fff;
    padding: 1.5rem 2.5rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav {
    justify-content: space-between;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li {
    width: 48%;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a {
    padding: 1rem 0;
    font-size: 2rem;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a:is(:hover, :focus-visible, .current) {
    color: var(--clr_blue);
  }
  #nav .gnav_subnav #menu_close {
    display: none;
  }
}
.btn_side {
  display: none;
}

@media screen and (min-width: 48em), print {
  .btn_side {
    display: block;
    position: fixed;
    right: 0;
    top: 20%;
    z-index: 200;
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
  .btn_side li .btn_rsv {
    font-size: 2.4rem;
    padding: 3.5rem 1.2rem;
    border-radius: 2rem 0 0 2rem;
  }
  .btn_side li .btn_rsv::before {
    font-size: 80%;
  }
}
.overview {
  padding: 4rem 1rem;
  background: url(../img/overview_wave.svg) no-repeat center top/150% auto, linear-gradient(to bottom, transparent 2rem, var(--clr_blue_light) 2rem);
  font-size: 1.2rem;
  line-height: 1.6;
}
.overview .clinic_name {
  margin: 0 0 2rem;
}
.overview .clinic_name img {
  max-width: 80%;
  margin: auto;
}
.overview .rsv_wrap {
  text-align: center;
  margin: 0 0 2rem;
}
.overview .rsv_wrap .btn_rsv {
  font-size: 1.6rem;
  padding: 1rem 3rem;
}
.overview > .wrap .overviewL .gaiyo {
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.overview > .wrap .overviewL .gaiyo dt {
  width: 30%;
  padding: 0.4rem;
  margin: 0 0 1rem;
  color: var(--clr_blue);
  background: #fff;
  border-radius: 0.5rem;
  font-weight: bold;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.overview > .wrap .overviewL .gaiyo dt.two_letters {
  letter-spacing: 1em;
  text-indent: 1em;
}
.overview > .wrap .overviewL .gaiyo dd {
  width: 68%;
  padding: 0.4rem;
  margin: 0 0 1rem;
}
.overview > .wrap .overviewR {
  margin: 2rem 0 0;
}

.gmap {
  height: 100vw;
}

@media screen and (min-width: 48em), print {
  .overview {
    padding: 14rem 0 8rem;
    font-size: 2rem;
    background: url(../img/overview_wave.svg) no-repeat center top/200rem auto, linear-gradient(to bottom, transparent 5rem, var(--clr_blue_light) 5rem);
  }
  .overview .clinic_name {
    margin: 0 0 2rem;
  }
  .overview .clinic_name img {
    max-width: 52rem;
  }
  .overview .rsv_wrap {
    margin: 0 0 4rem;
  }
  .overview .rsv_wrap .btn_rsv {
    font-size: 2.2rem;
    padding: 1.5rem 5rem;
  }
  .overview > .wrap {
    display: flex;
    justify-content: space-between;
  }
  .overview > .wrap .overviewL, .overview > .wrap .overviewR {
    width: 47.5%;
  }
  .overview > .wrap .overviewL .gaiyo dt {
    padding: 0.5rem 0;
    margin: 0 0 1.5rem;
    border-radius: 1rem;
    width: 31%;
  }
  .overview > .wrap .overviewL .gaiyo dd {
    padding: 0.5rem 1rem 0.5rem 2rem;
    margin: 0 0 1.5rem;
    width: 69%;
  }
  .overview > .wrap .overviewR {
    margin: 0;
  }
  .gmap {
    height: 40rem;
  }
}
#tel_up {
  width: 100%;
  height: 4rem;
  background: #fff;
  visibility: hidden;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  font-size: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -0.2rem 0.2rem rgba(102, 102, 102, 0.2);
}
#tel_up ul {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
#tel_up ul li {
  flex: auto;
  height: 100%;
  text-align: center;
}
#tel_up ul li .tel_style {
  height: 100%;
  font-size: 1.8rem;
  display: flex;
  border-radius: 0;
}
#tel_up ul li .btn_rsv {
  height: 100%;
  display: flex;
  border-radius: 0;
}
#tel_up #pageup {
  position: absolute;
  bottom: 5rem;
  right: 1rem;
  width: 5rem;
  height: 6rem;
  font-size: 1rem;
  text-align: center;
  padding: 5rem 0 0;
  line-height: 1;
  overflow: hidden;
  z-index: 101;
  font-family: "Hind", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.03em;
  text-indent: 0.03em;
  color: var(--clr_blue);
  background: url(../img/logo_mark.svg) no-repeat center top/100% auto;
  text-shadow: 0.1rem 0.1rem 0 #fff, 0.1rem 0 0 #fff, 0.1rem -0.1rem 0 #fff, 0 -0.1rem 0 #fff, -0.1rem -0.1rem 0 #fff, -0.1rem 0 0 #fff, -0.1rem 0.1rem 0 #fff, 0 0.1rem 0 #fff;
  filter: drop-shadow(0 0 0.2rem #fff);
}

@media screen and (min-width: 48em), print {
  #tel_up {
    width: 6.7rem;
    height: 8rem;
    bottom: 8rem;
    right: 4rem;
    left: auto;
    background: none;
    padding: 0;
    box-shadow: none;
  }
  #tel_up ul {
    display: none;
  }
  #tel_up #pageup {
    position: static;
    height: 100%;
    width: 100%;
    font-size: 1.6rem;
    padding: 5.5rem 0 0;
    background-size: 92% auto;
  }
}
.footer {
  text-align: center;
  padding: 0 0 4rem;
}
.footer .copy {
  display: block;
  background: var(--clr_blue);
  color: #fff;
  padding: 1.5rem 1rem;
  font-size: 1.2rem;
}
.footer ul {
  display: none;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 5rem 0 0;
  }
  .footer .copy {
    margin: 4rem 0 0;
    padding: 1.5rem 0;
    font-size: 1.8rem;
  }
  .footer ul {
    display: block;
    text-align: center;
    max-width: 90rem;
    margin: auto;
  }
  .footer ul.gnav {
    margin: 0 auto 1.5rem;
  }
  .footer ul li {
    display: inline-block;
    font-size: 2rem;
    margin: 0 0 1rem;
    -webkit-text-size-adjust: none;
  }
  .footer ul li:not(:last-child, .ft_noline)::after {
    content: "|";
    margin: 0 0.5rem;
  }
  .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;
  }
}
.keyvsl {
  width: 100%;
  position: relative;
}
.keyvsl #keyvsl {
  max-width: 100%;
  height: 35rem;
  overflow: hidden;
  visibility: hidden;
}
.keyvsl #keyvsl .slick-list {
  position: relative;
}
.keyvsl #keyvsl .slick-list::after {
  content: "";
  width: 100%;
  height: 3rem;
  background: url(../img/index_kv_wave.svg) no-repeat right -11rem bottom/180% auto;
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
}
.keyvsl #keyvsl .slick-list div img {
  height: 26rem !important;
  object-fit: cover;
  margin: auto;
}
.keyvsl #keyvsl .slick-dots {
  margin: 0.6rem 0 0;
  position: relative;
  z-index: 2;
}
.keyvsl #keyvsl .slick-dots li {
  width: 1rem;
  height: 1rem;
  margin: 0 0.6rem;
}
.keyvsl > .wrap {
  padding: 0 1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  animation: fadein 1s forwards;
}
.keyvsl > .wrap .catch {
  font-size: 1.6rem;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  color: #fff;
  text-shadow: 0 0 0.4rem var(--clr_txt), 0 0 0.4rem var(--clr_txt);
  letter-spacing: 0.1em;
  line-height: 1.66;
}

@media screen and (min-width: 48em), print {
  .keyvsl #keyvsl {
    height: 70rem;
  }
  .keyvsl #keyvsl .slick-list::after {
    content: "";
    width: 100%;
    height: 10rem;
    bottom: 0;
    background: url(../img/index_kv_wave.svg) no-repeat center bottom/200rem auto;
  }
  .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 {
    padding: 0;
    bottom: 9rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .keyvsl > .wrap .catch {
    font-size: 3.6rem;
    text-shadow: 0 0 0.8rem var(--clr_txt), 0 0 0.8rem var(--clr_txt);
  }
}
.info {
  padding: 4rem 1rem;
}
.info dl {
  opacity: 0;
}
.info dl.trigger {
  animation: fadein 1s forwards;
}
.info dl dt {
  display: flex;
  align-items: flex-start;
  gap: 0 0.6rem;
  margin: 0 0 0.6rem;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  cursor: pointer;
}
.info dl dt::before {
  font-family: "fontello";
  content: "\e800";
  flex-shrink: 0;
  color: var(--clr_blue);
  padding: 0 0 0 1px;
  font-size: 90%;
}
.info dl dt.close::before {
  font-family: "fontello";
  content: "\e803";
}
.info dl dt:not(:first-of-type) {
  margin: 1.6rem 0 0.6rem;
  padding: 1.6rem 0 0;
  border-top: 1px solid var(--clr_gray);
}
.info dl dd {
  margin: 0 0 1.6rem 1.5em;
}
.info dl dd:not(:nth-of-type(-n+3)) {
  display: none;
}

@media screen and (min-width: 48em), print {
  .info {
    padding: 10rem calc((100% - 120rem) / 2);
    display: flex;
    align-items: flex-start;
  }
  .info .tit_02 {
    width: 35rem;
  }
  .info dl {
    flex: 1;
  }
  .info dl dt {
    font-size: 2.2rem;
    gap: 1rem;
    transition: 0.3s;
  }
  .info dl dt:not(:first-of-type) {
    margin: 1.6rem 0 0.6rem;
    padding: 1.6rem 0 0;
  }
  .info dl dt:hover {
    color: var(--clr_blue);
  }
  .info dl dd {
    margin: 0 0 1.6rem 1.5em;
  }
}
.greeting {
  background: var(--clr_blue_light) url(../img/index_greeting_wave.svg) no-repeat center bottom/200% auto;
  padding: 3rem 1rem;
}
.greeting .dr {
  margin: 0 0 2rem;
}
.greeting .dr.trigger img {
  animation: blur 1.5s forwards;
}
.greeting .dr.trigger p {
  animation: fadein 1s forwards;
}
.greeting .dr img {
  width: 60%;
  margin: auto;
  opacity: 0;
}
.greeting .dr p {
  text-align: center;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  opacity: 0;
}
.greeting .dr p span {
  font-size: 1.6rem;
}
.greeting p {
  opacity: 0;
}
.greeting p.trigger {
  animation: fade_up 1s forwards;
}

@media screen and (min-width: 48em), print {
  .greeting {
    padding: 9rem calc((100% - 120rem) / 2) 5rem;
    background: var(--clr_blue_light) url(../img/index_greeting_wave.svg) no-repeat center bottom/200rem auto;
  }
  .greeting .tit_02 {
    margin: 0 auto 5.5rem;
  }
  .greeting > div {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 0 6rem;
  }
  .greeting > div .dr {
    width: 40rem;
    flex-shrink: 0;
    margin: 0;
  }
  .greeting > div .dr img {
    margin: 0 0 3rem;
    width: 100%;
  }
  .greeting > div .dr p {
    font-size: 2rem;
  }
  .greeting > div .dr p span {
    font-size: 2.4rem;
  }
  .greeting > div > p {
    margin: 0;
  }
  .greeting .btn_blue:is(:hover, :focus-visible) {
    background: var(--clr_blue_dark);
    opacity: 1;
    transition: 0.3s ease 0.8s;
  }
  .greeting .btn_blue:is(:hover, :focus-visible)::before {
    animation: wave 1s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  }
}
.feature {
  padding: 3rem 1rem;
}
.feature ul {
  counter-reset: number 0;
}
.feature ul.trigger li:nth-child(1)::before {
  animation: blur 1.5s forwards normal;
  animation-delay: 0.3s;
}
.feature ul.trigger li:nth-child(1) .tit, .feature ul.trigger li:nth-child(1) p {
  animation: fadein 1s forwards;
  animation-delay: 0.3s;
}
.feature ul.trigger li:nth-child(2)::before {
  animation: blur 1.5s forwards normal;
  animation-delay: 0.6s;
}
.feature ul.trigger li:nth-child(2) .tit, .feature ul.trigger li:nth-child(2) p {
  animation: fadein 1s forwards;
  animation-delay: 0.6s;
}
.feature ul.trigger li:nth-child(3)::before {
  animation: blur 1.5s forwards normal;
  animation-delay: 0.9s;
}
.feature ul.trigger li:nth-child(3) .tit, .feature ul.trigger li:nth-child(3) p {
  animation: fadein 1s forwards;
  animation-delay: 0.9s;
}
.feature ul li {
  margin: 0 0 3rem;
  position: relative;
}
.feature ul li::before {
  content: "";
  width: 100%;
  height: 22rem;
  margin: 0 0 2rem;
  display: block;
  opacity: 0;
}
.feature ul li::after {
  content: counter(number, decimal-leading-zero);
  counter-increment: number 1;
  position: absolute;
  top: 0.5rem;
  left: 4.8rem;
  font-family: "Hind", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2.8rem;
  color: #fff;
  text-align: center;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
}
.feature ul li .tit {
  text-align: center;
  color: var(--clr_blue);
  position: relative;
  width: fit-content;
  margin: 0 auto 1rem;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.8rem;
  line-height: 1.8;
  opacity: 0;
}
.feature ul li .tit::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/index_feat_tit_icon.svg) no-repeat center/100% auto;
  position: absolute;
  left: -1.5rem;
  top: -0.8rem;
}
.feature ul li p {
  opacity: 0;
}
.feature ul li.feat1::before {
  background: url(../img/index_feat01.webp) no-repeat center/auto 100%;
}
.feature ul li.feat2::before {
  background: url(../img/index_feat02.webp) no-repeat center/auto 100%;
}
.feature ul li.feat3::before {
  background: url(../img/index_feat03.webp) no-repeat center/auto 100%;
}

@media screen and (min-width: 48em), print {
  .feature {
    padding: 10rem calc((100% - 120rem) / 2) 8rem;
  }
  .feature ul {
    display: flex;
    justify-content: space-between;
    margin: 5rem 0 0;
  }
  .feature ul li {
    width: 37rem;
    margin: 0;
  }
  .feature ul li::before {
    height: 29rem;
    margin: 0 0 4rem;
  }
  .feature ul li::after {
    font-size: 3.8rem;
    top: 0;
    left: 5.2rem;
  }
  .feature ul li .tit {
    font-size: 3.2rem;
  }
  .feature ul li .tit::before {
    width: 2.4rem;
    height: 2.4rem;
    left: -2.5rem;
    top: -0.6rem;
  }
}
.tre {
  background: url(../img/index_tre_bg.jpg) no-repeat center/auto 100%;
  padding: 3rem 0 5rem;
}
.tre .subnav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  width: 88%;
  margin: auto;
}
.tre .subnav.trigger li a {
  animation: blur 1s forwards;
}
.tre .subnav li {
  position: relative;
}
.tre .subnav li::after {
  content: "";
  width: 1.8rem;
  height: 1rem;
  background: url(../img/icon_arrow.svg) no-repeat center/100% auto;
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  z-index: 2;
}
.tre .subnav li a {
  display: block;
  border-radius: 1rem;
  border: 1px solid var(--clr_blue);
  text-align: center;
  text-decoration: none;
  width: 13rem;
  height: 13rem;
  background: #fff;
  padding: 2rem 1rem 1rem;
  line-height: 1.2;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  color: var(--clr_blue);
  position: relative;
  z-index: 1;
  overflow: hidden;
  opacity: 0;
}
.tre .subnav li a::before {
  width: 5rem;
  height: 5rem;
  content: "";
  display: block;
  margin: 0 auto 1rem;
}
.tre .subnav li a::after {
  content: "";
  background: url(../img/btn_wave_blue.svg) no-repeat center bottom/100% auto;
  width: 4.5rem;
  height: 2rem;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.tre .subnav li a span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
}
.tre .subnav li a.diabetes::before {
  background: url(../img/index_tre_diabetes.svg) no-repeat center/100% auto;
}
.tre .subnav li a.hypertension::before {
  background: url(../img/index_tre_hypertension.svg) no-repeat center/100% auto;
}
.tre .subnav li a.hyperlipidemia::before {
  background: url(../img/index_tre_hyperlipidemia.svg) no-repeat center/100% auto;
}
.tre .subnav li a.adiposity::before {
  background: url(../img/index_tre_adiposity.svg) no-repeat center/100% auto;
}
.tre .subnav li a.hyperuricemia::before {
  background: url(../img/index_tre_hyperuricemia.svg) no-repeat center/100% auto;
}
.tre .subnav li a.gout::before {
  background: url(../img/index_tre_gout.svg) no-repeat center/100% auto;
}
.tre .subnav li a.endocrinology::before {
  background: url(../img/index_tre_endocrinology.svg) no-repeat center/100% auto;
}
.tre .subnav li a.others::before {
  background: url(../img/index_tre_others.svg) no-repeat center/100% auto;
}
.tre .subnav li a.internal::before {
  background: url(../img/index_tre_internal.svg) no-repeat center/100% auto;
}
.tre .subnav li a.vaccination::before {
  background: url(../img/index_tre_vaccination.svg) no-repeat center/100% auto;
}
.tre .subnav li a.checkup::before {
  background: url(../img/index_tre_checkup.svg) no-repeat center/100% auto;
}

@media screen and (min-width: 48em), print {
  .tre {
    padding: 10rem calc((100% - 120rem) / 2) 5rem;
    background: url(../img/index_tre_bg.jpg) no-repeat center/200rem auto;
  }
  .tre .subnav {
    width: 100%;
    margin: 5rem 0 0;
    justify-content: flex-start;
    gap: 4rem;
  }
  .tre .subnav li::after {
    width: 2.5rem;
    height: 1.5rem;
    right: 1rem;
    bottom: 0.7rem;
  }
  .tre .subnav li a {
    width: 27rem;
    height: 27rem;
    border-radius: 2rem;
    font-size: 2.8rem;
    padding: 4rem 4rem 0;
    transition: 1s;
  }
  .tre .subnav li a::before {
    width: 10rem;
    height: 10rem;
    margin: 0 auto 3rem;
  }
  .tre .subnav li a::after {
    width: 7rem;
    height: 3rem;
    animation: wave_appear 1s forwards;
  }
  .tre .subnav li a span {
    min-height: 6.7rem;
  }
  .tre .subnav li a:is(:hover, :focus-visible, .current) {
    background: var(--clr_blue_light);
    opacity: 1;
  }
  .tre .subnav li a:is(:hover, :focus-visible, .current)::after {
    animation: wave_disappear 1s 0s forwards;
  }
}
.loopslider {
  margin: 4rem auto;
  width: 100%;
  height: 14rem;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.loopslider ul {
  height: 100%;
  float: left;
  display: inline;
  overflow: hidden;
}
.loopslider ul li {
  width: 20rem;
  height: 100%;
  float: left;
  display: inline-block;
  overflow: hidden;
}

@media screen and (min-width: 48em), print {
  .loopslider {
    margin: 10rem auto;
    height: 26rem;
  }
  .loopslider ul li {
    width: 39rem;
  }
}
body:not(.index) .sub_header {
  display: flex;
  flex-direction: column-reverse;
}
body:not(.index) .main {
  margin: 2rem 1rem 6rem;
}
body:not(.index) .main .tel_style {
  font-size: 120%;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main {
    width: 120rem;
    margin: 5rem auto 8rem;
  }
  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: flex;
  align-items: center;
  font-size: 1.2rem;
  white-space: nowrap;
}
.breadnav .breadcrumb li {
  display: flex;
  align-items: center;
}
.breadnav .breadcrumb li a {
  text-decoration: underline;
  color: var(--clr_blue);
}
.breadnav .breadcrumb li:not(:last-child)::after {
  display: inline-block;
  content: ">";
  margin: 0 0.6rem;
}

@media screen and (min-width: 48em), print {
  .breadnav {
    width: 1200px;
    max-width: 100%;
    margin: 2rem auto 0;
    overflow-x: inherit;
  }
  .breadnav .breadcrumb {
    font-size: 2rem;
  }
  .breadnav .breadcrumb li:not(:last-child)::after {
    margin: 0 1.5rem;
  }
  .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: 1rem;
  opacity: 0;
  transition: 0.3s ease;
  background: var(--clr_blue_light);
  line-height: 1.4;
}
.gallery .gallery_slider div .slick-current .cap {
  opacity: 1;
  transition-delay: 0.5s;
}
.gallery .gallery_slider div:first-child .cap {
  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 div .cap {
    padding: 1rem;
  }
  .gallery .gallery_thum {
    width: calc(100% + 0.6rem);
  }
  .gallery .gallery_thum#clinic_02_nav .slick-track {
    transform: translate3d(0px, 0px, 0px) !important;
  }
}
body.access .main .gmap {
  height: 100vw;
  margin: 2rem 0;
}
@media screen and (min-width: 48em), print {
  body.access .main .gmap {
    margin: 4rem 0 0;
    height: auto;
  }
}

.btn_wrap a {
  display: block;
}
.btn_wrap a:not(:last-of-type) {
  margin: 0 0 1rem;
}

@media screen and (min-width: 48em), print {
  .btn_wrap {
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
  }
  .btn_wrap a:not(:last-of-type) {
    margin: 0;
  }
}/*# sourceMappingURL=style.css.map */